provider.enum.d.ts 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. export declare enum CredentialsKeyEnum {
  2. ApiKey = "apiKey",
  3. User = "user",
  4. SecretKey = "secretKey",
  5. Domain = "domain",
  6. Password = "password",
  7. Host = "host",
  8. Port = "port",
  9. Secure = "secure",
  10. Region = "region",
  11. AccountSid = "accountSid",
  12. MessageProfileId = "messageProfileId",
  13. Token = "token",
  14. From = "from",
  15. SenderName = "senderName",
  16. ContentType = "contentType",
  17. ApplicationId = "applicationId",
  18. ClientId = "clientId",
  19. ProjectName = "projectName",
  20. ServiceAccount = "serviceAccount",
  21. BaseUrl = "baseUrl",
  22. WebhookUrl = "webhookUrl",
  23. RequireTls = "requireTls",
  24. IgnoreTls = "ignoreTls",
  25. TlsOptions = "tlsOptions",
  26. RedirectUrl = "redirectUrl",
  27. Hmac = "hmac",
  28. IpPoolName = "ipPoolName",
  29. ApiKeyRequestHeader = "apiKeyRequestHeader",
  30. SecretKeyRequestHeader = "secretKeyRequestHeader",
  31. IdPath = "idPath",
  32. DatePath = "datePath",
  33. AuthenticateByToken = "authenticateByToken",
  34. AuthenticationTokenKey = "authenticationTokenKey",
  35. AccessKey = "accessKey",
  36. InstanceId = "instanceId",
  37. ApiToken = "apiToken",
  38. ApiURL = "apiURL",
  39. AppID = "appID",
  40. alertUid = "alertUid",
  41. title = "title",
  42. imageUrl = "imageUrl",
  43. state = "state",
  44. externalLink = "externalLink"
  45. }
  46. export declare enum EmailProviderIdEnum {
  47. EmailJS = "emailjs",
  48. Mailgun = "mailgun",
  49. Mailjet = "mailjet",
  50. Mandrill = "mandrill",
  51. CustomSMTP = "nodemailer",
  52. Postmark = "postmark",
  53. SendGrid = "sendgrid",
  54. Sendinblue = "sendinblue",
  55. SES = "ses",
  56. NetCore = "netcore",
  57. Infobip = "infobip-email",
  58. Resend = "resend",
  59. Plunk = "plunk",
  60. MailerSend = "mailersend",
  61. Mailtrap = "mailtrap",
  62. Clickatell = "clickatell",
  63. Outlook365 = "outlook365",
  64. Novu = "novu-email",
  65. SparkPost = "sparkpost",
  66. EmailWebhook = "email-webhook",
  67. Braze = "braze"
  68. }
  69. export declare enum SmsProviderIdEnum {
  70. Nexmo = "nexmo",
  71. Plivo = "plivo",
  72. Sms77 = "sms77",
  73. SmsCentral = "sms-central",
  74. SNS = "sns",
  75. Telnyx = "telnyx",
  76. Twilio = "twilio",
  77. Gupshup = "gupshup",
  78. Firetext = "firetext",
  79. Infobip = "infobip-sms",
  80. BurstSms = "burst-sms",
  81. BulkSms = "bulk-sms",
  82. ISendSms = "isend-sms",
  83. Clickatell = "clickatell",
  84. FortySixElks = "forty-six-elks",
  85. Kannel = "kannel",
  86. Maqsam = "maqsam",
  87. Termii = "termii",
  88. AfricasTalking = "africas-talking",
  89. Novu = "novu-sms",
  90. Sendchamp = "sendchamp",
  91. GenericSms = "generic-sms",
  92. Clicksend = "clicksend",
  93. Bandwidth = "bandwidth",
  94. MessageBird = "messagebird",
  95. Simpletexting = "simpletexting",
  96. AzureSms = "azure-sms",
  97. RingCentral = "ring-central",
  98. BrevoSms = "brevo-sms"
  99. }
  100. export declare enum ChatProviderIdEnum {
  101. Slack = "slack",
  102. Discord = "discord",
  103. MsTeams = "msteams",
  104. Mattermost = "mattermost",
  105. Ryver = "ryver",
  106. Zulip = "zulip",
  107. GrafanaOnCall = "grafana-on-call",
  108. GetStream = "getstream",
  109. RocketChat = "rocket-chat"
  110. }
  111. export declare enum PushProviderIdEnum {
  112. FCM = "fcm",
  113. APNS = "apns",
  114. EXPO = "expo",
  115. OneSignal = "one-signal",
  116. Pushpad = "pushpad",
  117. PushWebhook = "push-webhook",
  118. PusherBeams = "pusher-beams"
  119. }
  120. export declare enum InAppProviderIdEnum {
  121. Novu = "novu"
  122. }
  123. export type ProvidersIdEnum = EmailProviderIdEnum | SmsProviderIdEnum | PushProviderIdEnum | InAppProviderIdEnum | ChatProviderIdEnum;
  124. //# sourceMappingURL=provider.enum.d.ts.map