add strict typing to api embeds
This commit is contained in:
parent
05174aecd9
commit
c8af87e407
|
@ -1,8 +1,10 @@
|
||||||
|
import { CreateMessage } from '@discordeno';
|
||||||
|
|
||||||
import config from '~config';
|
import config from '~config';
|
||||||
|
|
||||||
import { failColor, infoColor1, successColor } from 'embeds/colors.ts';
|
import { failColor, infoColor1, successColor } from 'embeds/colors.ts';
|
||||||
|
|
||||||
export const generateApiFailed = (args: string) => ({
|
export const generateApiFailed = (args: string): CreateMessage => ({
|
||||||
embeds: [
|
embeds: [
|
||||||
{
|
{
|
||||||
color: failColor,
|
color: failColor,
|
||||||
|
@ -12,7 +14,7 @@ export const generateApiFailed = (args: string) => ({
|
||||||
],
|
],
|
||||||
});
|
});
|
||||||
|
|
||||||
export const generateApiStatus = (banned: boolean, active: boolean) => {
|
export const generateApiStatus = (banned: boolean, active: boolean): CreateMessage => {
|
||||||
const apiStatus = active ? 'allowed' : 'blocked from being used';
|
const apiStatus = active ? 'allowed' : 'blocked from being used';
|
||||||
return {
|
return {
|
||||||
embeds: [
|
embeds: [
|
||||||
|
@ -25,7 +27,7 @@ export const generateApiStatus = (banned: boolean, active: boolean) => {
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
export const generateApiSuccess = (args: string) => ({
|
export const generateApiSuccess = (args: string): CreateMessage => ({
|
||||||
embeds: [
|
embeds: [
|
||||||
{
|
{
|
||||||
color: successColor,
|
color: successColor,
|
||||||
|
@ -34,7 +36,7 @@ export const generateApiSuccess = (args: string) => ({
|
||||||
],
|
],
|
||||||
});
|
});
|
||||||
|
|
||||||
export const generateApiKeyEmail = (email: string, key: string) => ({
|
export const generateApiKeyEmail = (email: string, key: string): CreateMessage => ({
|
||||||
content: `<@${config.api.admin}> A USER HAS REQUESTED AN API KEY`,
|
content: `<@${config.api.admin}> A USER HAS REQUESTED AN API KEY`,
|
||||||
embeds: [
|
embeds: [
|
||||||
{
|
{
|
||||||
|
@ -66,7 +68,7 @@ ${config.name} Developer - Ean Milligan`,
|
||||||
],
|
],
|
||||||
});
|
});
|
||||||
|
|
||||||
export const generateApiDeleteEmail = (email: string, deleteCode: string) => ({
|
export const generateApiDeleteEmail = (email: string, deleteCode: string): CreateMessage => ({
|
||||||
content: `<@${config.api.admin}> A USER HAS REQUESTED A DELETE CODE`,
|
content: `<@${config.api.admin}> A USER HAS REQUESTED A DELETE CODE`,
|
||||||
embeds: [
|
embeds: [
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue