credential.interface.d.ts 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. export interface ICredentials {
  2. apiKey?: string;
  3. user?: string;
  4. secretKey?: string;
  5. domain?: string;
  6. password?: string;
  7. host?: string;
  8. port?: string;
  9. secure?: boolean;
  10. region?: string;
  11. accountSid?: string;
  12. messageProfileId?: string;
  13. token?: string;
  14. from?: string;
  15. senderName?: string;
  16. contentType?: string;
  17. applicationId?: string;
  18. clientId?: string;
  19. projectName?: string;
  20. serviceAccount?: string;
  21. baseUrl?: string;
  22. webhookUrl?: string;
  23. requireTls?: boolean;
  24. ignoreTls?: boolean;
  25. tlsOptions?: Record<string, unknown>;
  26. redirectUrl?: string;
  27. hmac?: boolean;
  28. ipPoolName?: string;
  29. apiKeyRequestHeader?: string;
  30. secretKeyRequestHeader?: string;
  31. idPath?: string;
  32. datePath?: string;
  33. authenticateByToken?: boolean;
  34. authenticationTokenKey?: string;
  35. accessKey?: string;
  36. instanceId?: string;
  37. apiToken?: string;
  38. apiURL?: string;
  39. appID?: string;
  40. alertUid?: string;
  41. title?: string;
  42. imageUrl?: string;
  43. state?: string;
  44. externalLink?: string;
  45. }
  46. //# sourceMappingURL=credential.interface.d.ts.map