UNPKG

@cognigy/rest-api-client

Version:

Cognigy REST-Client

19 lines 651 B
/* Custom modules */ import { createExtension } from "../../../createNodeDescriptor"; import { SEND_EMAIL } from "./sendEmail"; import { EMAIL_NOTIFICATION } from "./emailNotification"; import { SMTP_CONNECTION } from "./smtpConnection"; import { EMAIL_SERVICE_CONNECTION } from "./serviceConnection"; import { EMAIL_SERVICE_OAUTH2_CONNECTION } from "./oAuth2Connection"; export const cognigySMTPModule = createExtension({ nodes: [ SEND_EMAIL, EMAIL_NOTIFICATION ], connections: [ SMTP_CONNECTION, EMAIL_SERVICE_CONNECTION, EMAIL_SERVICE_OAUTH2_CONNECTION ] }); //# sourceMappingURL=index.js.map