@trycourier/courier 6.6.0 → 6.7.0-alpha2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +57 -300
- package/LICENSE +201 -21
- package/README.md +302 -118
- package/api-promise.d.mts +2 -0
- package/api-promise.d.mts.map +1 -0
- package/api-promise.d.ts +2 -0
- package/api-promise.d.ts.map +1 -0
- package/api-promise.js +6 -0
- package/api-promise.js.map +1 -0
- package/api-promise.mjs +2 -0
- package/api-promise.mjs.map +1 -0
- package/client.d.mts +231 -0
- package/client.d.mts.map +1 -0
- package/client.d.ts +231 -0
- package/client.d.ts.map +1 -0
- package/client.js +493 -0
- package/client.js.map +1 -0
- package/client.mjs +489 -0
- package/client.mjs.map +1 -0
- package/core/api-promise.d.mts +46 -0
- package/core/api-promise.d.mts.map +1 -0
- package/core/api-promise.d.ts +46 -0
- package/core/api-promise.d.ts.map +1 -0
- package/core/api-promise.js +74 -0
- package/core/api-promise.js.map +1 -0
- package/core/api-promise.mjs +70 -0
- package/core/api-promise.mjs.map +1 -0
- package/core/error.d.mts +46 -0
- package/core/error.d.mts.map +1 -0
- package/core/error.d.ts +46 -0
- package/core/error.d.ts.map +1 -0
- package/core/error.js +113 -0
- package/core/error.js.map +1 -0
- package/core/error.mjs +97 -0
- package/core/error.mjs.map +1 -0
- package/core/resource.d.mts +6 -0
- package/core/resource.d.mts.map +1 -0
- package/core/resource.d.ts +6 -0
- package/core/resource.d.ts.map +1 -0
- package/core/resource.js +11 -0
- package/core/resource.js.map +1 -0
- package/core/resource.mjs +7 -0
- package/core/resource.mjs.map +1 -0
- package/core/uploads.d.mts +3 -0
- package/core/uploads.d.mts.map +1 -0
- package/core/uploads.d.ts +3 -0
- package/core/uploads.d.ts.map +1 -0
- package/core/uploads.js +6 -0
- package/core/uploads.js.map +1 -0
- package/core/uploads.mjs +2 -0
- package/core/uploads.mjs.map +1 -0
- package/error.d.mts +2 -0
- package/error.d.mts.map +1 -0
- package/error.d.ts +2 -0
- package/error.d.ts.map +1 -0
- package/error.js +6 -0
- package/error.js.map +1 -0
- package/error.mjs +2 -0
- package/error.mjs.map +1 -0
- package/index.d.mts +6 -0
- package/index.d.mts.map +1 -0
- package/index.d.ts +6 -4
- package/index.d.ts.map +1 -0
- package/index.js +28 -42
- package/index.js.map +1 -0
- package/index.mjs +7 -0
- package/index.mjs.map +1 -0
- package/internal/builtin-types.d.mts +73 -0
- package/internal/builtin-types.d.mts.map +1 -0
- package/internal/builtin-types.d.ts +73 -0
- package/internal/builtin-types.d.ts.map +1 -0
- package/internal/builtin-types.js +4 -0
- package/internal/builtin-types.js.map +1 -0
- package/internal/builtin-types.mjs +3 -0
- package/internal/builtin-types.mjs.map +1 -0
- package/internal/detect-platform.d.mts +15 -0
- package/internal/detect-platform.d.mts.map +1 -0
- package/internal/detect-platform.d.ts +15 -0
- package/internal/detect-platform.d.ts.map +1 -0
- package/internal/detect-platform.js +162 -0
- package/internal/detect-platform.js.map +1 -0
- package/internal/detect-platform.mjs +157 -0
- package/internal/detect-platform.mjs.map +1 -0
- package/internal/errors.d.mts +3 -0
- package/internal/errors.d.mts.map +1 -0
- package/internal/errors.d.ts +3 -0
- package/internal/errors.d.ts.map +1 -0
- package/internal/errors.js +41 -0
- package/internal/errors.js.map +1 -0
- package/internal/errors.mjs +36 -0
- package/internal/errors.mjs.map +1 -0
- package/internal/headers.d.mts +20 -0
- package/internal/headers.d.mts.map +1 -0
- package/internal/headers.d.ts +20 -0
- package/internal/headers.d.ts.map +1 -0
- package/internal/headers.js +79 -0
- package/internal/headers.js.map +1 -0
- package/internal/headers.mjs +74 -0
- package/internal/headers.mjs.map +1 -0
- package/internal/parse.d.mts +12 -0
- package/internal/parse.d.mts.map +1 -0
- package/internal/parse.d.ts +12 -0
- package/internal/parse.d.ts.map +1 -0
- package/internal/parse.js +35 -0
- package/internal/parse.js.map +1 -0
- package/internal/parse.mjs +32 -0
- package/internal/parse.mjs.map +1 -0
- package/internal/qs/formats.d.mts +7 -0
- package/internal/qs/formats.d.mts.map +1 -0
- package/internal/qs/formats.d.ts +7 -0
- package/internal/qs/formats.d.ts.map +1 -0
- package/internal/qs/formats.js +13 -0
- package/internal/qs/formats.js.map +1 -0
- package/internal/qs/formats.mjs +9 -0
- package/internal/qs/formats.mjs.map +1 -0
- package/internal/qs/index.d.mts +10 -0
- package/internal/qs/index.d.mts.map +1 -0
- package/internal/qs/index.d.ts +10 -0
- package/internal/qs/index.d.ts.map +1 -0
- package/internal/qs/index.js +14 -0
- package/internal/qs/index.js.map +1 -0
- package/internal/qs/index.mjs +10 -0
- package/internal/qs/index.mjs.map +1 -0
- package/internal/qs/stringify.d.mts +3 -0
- package/internal/qs/stringify.d.mts.map +1 -0
- package/internal/qs/stringify.d.ts +3 -0
- package/internal/qs/stringify.d.ts.map +1 -0
- package/internal/qs/stringify.js +277 -0
- package/internal/qs/stringify.js.map +1 -0
- package/internal/qs/stringify.mjs +274 -0
- package/internal/qs/stringify.mjs.map +1 -0
- package/internal/qs/types.d.mts +57 -0
- package/internal/qs/types.d.mts.map +1 -0
- package/internal/qs/types.d.ts +57 -0
- package/internal/qs/types.d.ts.map +1 -0
- package/internal/qs/types.js +3 -0
- package/internal/qs/types.js.map +1 -0
- package/internal/qs/types.mjs +2 -0
- package/internal/qs/types.mjs.map +1 -0
- package/internal/qs/utils.d.mts +15 -0
- package/internal/qs/utils.d.mts.map +1 -0
- package/internal/qs/utils.d.ts +15 -0
- package/internal/qs/utils.d.ts.map +1 -0
- package/internal/qs/utils.js +230 -0
- package/internal/qs/utils.js.map +1 -0
- package/internal/qs/utils.mjs +217 -0
- package/internal/qs/utils.mjs.map +1 -0
- package/internal/request-options.d.mts +75 -0
- package/internal/request-options.d.mts.map +1 -0
- package/internal/request-options.d.ts +75 -0
- package/internal/request-options.d.ts.map +1 -0
- package/internal/request-options.js +14 -0
- package/internal/request-options.js.map +1 -0
- package/internal/request-options.mjs +10 -0
- package/internal/request-options.mjs.map +1 -0
- package/internal/shim-types.d.mts +17 -0
- package/internal/shim-types.d.mts.map +1 -0
- package/internal/shim-types.d.ts +17 -0
- package/internal/shim-types.d.ts.map +1 -0
- package/internal/shim-types.js +4 -0
- package/internal/shim-types.js.map +1 -0
- package/internal/shim-types.mjs +3 -0
- package/internal/shim-types.mjs.map +1 -0
- package/internal/shims.d.mts +20 -0
- package/internal/shims.d.mts.map +1 -0
- package/internal/shims.d.ts +20 -0
- package/internal/shims.d.ts.map +1 -0
- package/internal/shims.js +92 -0
- package/internal/shims.js.map +1 -0
- package/internal/shims.mjs +85 -0
- package/internal/shims.mjs.map +1 -0
- package/internal/to-file.d.mts +45 -0
- package/internal/to-file.d.mts.map +1 -0
- package/internal/to-file.d.ts +45 -0
- package/internal/to-file.d.ts.map +1 -0
- package/internal/to-file.js +91 -0
- package/internal/to-file.js.map +1 -0
- package/internal/to-file.mjs +88 -0
- package/internal/to-file.mjs.map +1 -0
- package/internal/tslib.js +81 -0
- package/internal/tslib.mjs +17 -0
- package/internal/types.d.mts +69 -0
- package/internal/types.d.mts.map +1 -0
- package/internal/types.d.ts +69 -0
- package/internal/types.d.ts.map +1 -0
- package/internal/types.js +4 -0
- package/internal/types.js.map +1 -0
- package/internal/types.mjs +3 -0
- package/internal/types.mjs.map +1 -0
- package/internal/uploads.d.mts +42 -0
- package/internal/uploads.d.mts.map +1 -0
- package/internal/uploads.d.ts +42 -0
- package/internal/uploads.d.ts.map +1 -0
- package/internal/uploads.js +141 -0
- package/internal/uploads.js.map +1 -0
- package/internal/uploads.mjs +131 -0
- package/internal/uploads.mjs.map +1 -0
- package/internal/utils/base64.d.mts +3 -0
- package/internal/utils/base64.d.mts.map +1 -0
- package/internal/utils/base64.d.ts +3 -0
- package/internal/utils/base64.d.ts.map +1 -0
- package/internal/utils/base64.js +38 -0
- package/internal/utils/base64.js.map +1 -0
- package/internal/utils/base64.mjs +33 -0
- package/internal/utils/base64.mjs.map +1 -0
- package/internal/utils/bytes.d.mts +4 -0
- package/internal/utils/bytes.d.mts.map +1 -0
- package/internal/utils/bytes.d.ts +4 -0
- package/internal/utils/bytes.d.ts.map +1 -0
- package/internal/utils/bytes.js +31 -0
- package/internal/utils/bytes.js.map +1 -0
- package/internal/utils/bytes.mjs +26 -0
- package/internal/utils/bytes.mjs.map +1 -0
- package/internal/utils/env.d.mts +9 -0
- package/internal/utils/env.d.mts.map +1 -0
- package/internal/utils/env.d.ts +9 -0
- package/internal/utils/env.d.ts.map +1 -0
- package/internal/utils/env.js +22 -0
- package/internal/utils/env.js.map +1 -0
- package/internal/utils/env.mjs +18 -0
- package/internal/utils/env.mjs.map +1 -0
- package/internal/utils/log.d.mts +37 -0
- package/internal/utils/log.d.mts.map +1 -0
- package/internal/utils/log.d.ts +37 -0
- package/internal/utils/log.d.ts.map +1 -0
- package/internal/utils/log.js +85 -0
- package/internal/utils/log.js.map +1 -0
- package/internal/utils/log.mjs +79 -0
- package/internal/utils/log.mjs.map +1 -0
- package/internal/utils/path.d.mts +15 -0
- package/internal/utils/path.d.mts.map +1 -0
- package/internal/utils/path.d.ts +15 -0
- package/internal/utils/path.d.ts.map +1 -0
- package/internal/utils/path.js +79 -0
- package/internal/utils/path.js.map +1 -0
- package/internal/utils/path.mjs +74 -0
- package/internal/utils/path.mjs.map +1 -0
- package/internal/utils/sleep.d.mts +2 -0
- package/internal/utils/sleep.d.mts.map +1 -0
- package/internal/utils/sleep.d.ts +2 -0
- package/internal/utils/sleep.d.ts.map +1 -0
- package/internal/utils/sleep.js +7 -0
- package/internal/utils/sleep.js.map +1 -0
- package/internal/utils/sleep.mjs +3 -0
- package/internal/utils/sleep.mjs.map +1 -0
- package/internal/utils/uuid.d.mts +5 -0
- package/internal/utils/uuid.d.mts.map +1 -0
- package/internal/utils/uuid.d.ts +5 -0
- package/internal/utils/uuid.d.ts.map +1 -0
- package/internal/utils/uuid.js +19 -0
- package/internal/utils/uuid.js.map +1 -0
- package/internal/utils/uuid.mjs +15 -0
- package/internal/utils/uuid.mjs.map +1 -0
- package/internal/utils/values.d.mts +18 -0
- package/internal/utils/values.d.mts.map +1 -0
- package/internal/utils/values.d.ts +18 -0
- package/internal/utils/values.d.ts.map +1 -0
- package/internal/utils/values.js +112 -0
- package/internal/utils/values.js.map +1 -0
- package/internal/utils/values.mjs +94 -0
- package/internal/utils/values.mjs.map +1 -0
- package/internal/utils.d.mts +7 -0
- package/internal/utils.d.mts.map +1 -0
- package/internal/utils.d.ts +7 -0
- package/internal/utils.d.ts.map +1 -0
- package/internal/utils.js +11 -0
- package/internal/utils.js.map +1 -0
- package/internal/utils.mjs +8 -0
- package/internal/utils.mjs.map +1 -0
- package/package.json +137 -43
- package/resource.d.mts +2 -0
- package/resource.d.mts.map +1 -0
- package/resource.d.ts +2 -0
- package/resource.d.ts.map +1 -0
- package/resource.js +6 -0
- package/resource.js.map +1 -0
- package/resource.mjs +2 -0
- package/resource.mjs.map +1 -0
- package/resources/audiences.d.mts +129 -0
- package/resources/audiences.d.mts.map +1 -0
- package/resources/audiences.d.ts +129 -0
- package/resources/audiences.d.ts.map +1 -0
- package/resources/audiences.js +44 -0
- package/resources/audiences.js.map +1 -0
- package/resources/audiences.mjs +40 -0
- package/resources/audiences.mjs.map +1 -0
- package/resources/audit-events.d.mts +42 -0
- package/resources/audit-events.d.mts.map +1 -0
- package/resources/audit-events.d.ts +42 -0
- package/resources/audit-events.d.ts.map +1 -0
- package/resources/audit-events.js +22 -0
- package/resources/audit-events.js.map +1 -0
- package/resources/audit-events.mjs +18 -0
- package/resources/audit-events.mjs.map +1 -0
- package/resources/auth.d.mts +20 -0
- package/resources/auth.d.mts.map +1 -0
- package/resources/auth.d.ts +20 -0
- package/resources/auth.d.ts.map +1 -0
- package/resources/auth.js +15 -0
- package/resources/auth.js.map +1 -0
- package/resources/auth.mjs +11 -0
- package/resources/auth.mjs.map +1 -0
- package/resources/automations/automations.d.mts +10 -0
- package/resources/automations/automations.d.mts.map +1 -0
- package/resources/automations/automations.d.ts +10 -0
- package/resources/automations/automations.d.ts.map +1 -0
- package/resources/automations/automations.js +17 -0
- package/resources/automations/automations.js.map +1 -0
- package/resources/automations/automations.mjs +12 -0
- package/resources/automations/automations.mjs.map +1 -0
- package/resources/automations/index.d.mts +3 -0
- package/resources/automations/index.d.mts.map +1 -0
- package/resources/automations/index.d.ts +3 -0
- package/resources/automations/index.d.ts.map +1 -0
- package/resources/automations/index.js +9 -0
- package/resources/automations/index.js.map +1 -0
- package/resources/automations/index.mjs +4 -0
- package/resources/automations/index.mjs.map +1 -0
- package/resources/automations/invoke.d.mts +139 -0
- package/resources/automations/invoke.d.mts.map +1 -0
- package/resources/automations/invoke.d.ts +139 -0
- package/resources/automations/invoke.d.ts.map +1 -0
- package/resources/automations/invoke.js +54 -0
- package/resources/automations/invoke.js.map +1 -0
- package/resources/automations/invoke.mjs +50 -0
- package/resources/automations/invoke.mjs.map +1 -0
- package/resources/automations.d.mts +2 -0
- package/resources/automations.d.mts.map +1 -0
- package/resources/automations.d.ts +2 -0
- package/resources/automations.d.ts.map +1 -0
- package/resources/automations.js +6 -0
- package/resources/automations.js.map +1 -0
- package/resources/automations.mjs +3 -0
- package/resources/automations.mjs.map +1 -0
- package/resources/brands.d.mts +138 -0
- package/resources/brands.d.mts.map +1 -0
- package/resources/brands.d.ts +138 -0
- package/resources/brands.d.ts.map +1 -0
- package/resources/brands.js +44 -0
- package/resources/brands.js.map +1 -0
- package/resources/brands.mjs +40 -0
- package/resources/brands.mjs.map +1 -0
- package/resources/bulk.d.mts +154 -0
- package/resources/bulk.d.mts.map +1 -0
- package/resources/bulk.d.ts +154 -0
- package/resources/bulk.d.ts.map +1 -0
- package/resources/bulk.js +48 -0
- package/resources/bulk.js.map +1 -0
- package/resources/bulk.mjs +44 -0
- package/resources/bulk.mjs.map +1 -0
- package/resources/inbound.d.mts +55 -0
- package/resources/inbound.d.mts.map +1 -0
- package/resources/inbound.d.ts +55 -0
- package/resources/inbound.d.ts.map +1 -0
- package/resources/inbound.js +30 -0
- package/resources/inbound.js.map +1 -0
- package/resources/inbound.mjs +26 -0
- package/resources/inbound.mjs.map +1 -0
- package/resources/index.d.mts +18 -0
- package/resources/index.d.mts.map +1 -0
- package/resources/index.d.ts +18 -0
- package/resources/index.d.ts.map +1 -0
- package/resources/index.js +39 -0
- package/resources/index.js.map +1 -0
- package/resources/index.mjs +19 -0
- package/resources/index.mjs.map +1 -0
- package/resources/lists/index.d.mts +3 -0
- package/resources/lists/index.d.mts.map +1 -0
- package/resources/lists/index.d.ts +3 -0
- package/resources/lists/index.d.ts.map +1 -0
- package/resources/lists/index.js +9 -0
- package/resources/lists/index.js.map +1 -0
- package/resources/lists/index.mjs +4 -0
- package/resources/lists/index.mjs.map +1 -0
- package/resources/lists/lists.d.mts +63 -0
- package/resources/lists/lists.d.mts.map +1 -0
- package/resources/lists/lists.d.ts +63 -0
- package/resources/lists/lists.d.ts.map +1 -0
- package/resources/lists/lists.js +60 -0
- package/resources/lists/lists.js.map +1 -0
- package/resources/lists/lists.mjs +55 -0
- package/resources/lists/lists.mjs.map +1 -0
- package/resources/lists/subscriptions.d.mts +92 -0
- package/resources/lists/subscriptions.d.mts.map +1 -0
- package/resources/lists/subscriptions.d.ts +92 -0
- package/resources/lists/subscriptions.d.ts.map +1 -0
- package/resources/lists/subscriptions.js +61 -0
- package/resources/lists/subscriptions.js.map +1 -0
- package/resources/lists/subscriptions.mjs +57 -0
- package/resources/lists/subscriptions.mjs.map +1 -0
- package/resources/lists.d.mts +2 -0
- package/resources/lists.d.mts.map +1 -0
- package/resources/lists.d.ts +2 -0
- package/resources/lists.d.ts.map +1 -0
- package/resources/lists.js +6 -0
- package/resources/lists.js.map +1 -0
- package/resources/lists.mjs +3 -0
- package/resources/lists.mjs.map +1 -0
- package/resources/messages.d.mts +248 -0
- package/resources/messages.d.mts.map +1 -0
- package/resources/messages.d.ts +248 -0
- package/resources/messages.d.ts.map +1 -0
- package/resources/messages.js +44 -0
- package/resources/messages.js.map +1 -0
- package/resources/messages.mjs +40 -0
- package/resources/messages.mjs.map +1 -0
- package/resources/notifications/checks.d.mts +42 -0
- package/resources/notifications/checks.d.mts.map +1 -0
- package/resources/notifications/checks.d.ts +42 -0
- package/resources/notifications/checks.d.ts.map +1 -0
- package/resources/notifications/checks.js +26 -0
- package/resources/notifications/checks.js.map +1 -0
- package/resources/notifications/checks.mjs +22 -0
- package/resources/notifications/checks.mjs.map +1 -0
- package/resources/notifications/draft.d.mts +8 -0
- package/resources/notifications/draft.d.mts.map +1 -0
- package/resources/notifications/draft.d.ts +8 -0
- package/resources/notifications/draft.d.ts.map +1 -0
- package/resources/notifications/draft.js +13 -0
- package/resources/notifications/draft.js.map +1 -0
- package/resources/notifications/draft.mjs +9 -0
- package/resources/notifications/draft.mjs.map +1 -0
- package/resources/notifications/index.d.mts +4 -0
- package/resources/notifications/index.d.mts.map +1 -0
- package/resources/notifications/index.d.ts +4 -0
- package/resources/notifications/index.d.ts.map +1 -0
- package/resources/notifications/index.js +11 -0
- package/resources/notifications/index.js.map +1 -0
- package/resources/notifications/index.mjs +5 -0
- package/resources/notifications/index.mjs.map +1 -0
- package/resources/notifications/notifications.d.mts +102 -0
- package/resources/notifications/notifications.d.mts.map +1 -0
- package/resources/notifications/notifications.d.ts +102 -0
- package/resources/notifications/notifications.d.ts.map +1 -0
- package/resources/notifications/notifications.js +28 -0
- package/resources/notifications/notifications.js.map +1 -0
- package/resources/notifications/notifications.mjs +23 -0
- package/resources/notifications/notifications.mjs.map +1 -0
- package/resources/notifications.d.mts +2 -0
- package/resources/notifications.d.mts.map +1 -0
- package/resources/notifications.d.ts +2 -0
- package/resources/notifications.d.ts.map +1 -0
- package/resources/notifications.js +6 -0
- package/resources/notifications.js.map +1 -0
- package/resources/notifications.mjs +3 -0
- package/resources/notifications.mjs.map +1 -0
- package/resources/profiles/index.d.mts +3 -0
- package/resources/profiles/index.d.mts.map +1 -0
- package/resources/profiles/index.d.ts +3 -0
- package/resources/profiles/index.d.ts.map +1 -0
- package/resources/profiles/index.js +9 -0
- package/resources/profiles/index.js.map +1 -0
- package/resources/profiles/index.mjs +4 -0
- package/resources/profiles/index.mjs.map +1 -0
- package/resources/profiles/lists.d.mts +72 -0
- package/resources/profiles/lists.d.mts.map +1 -0
- package/resources/profiles/lists.d.ts +72 -0
- package/resources/profiles/lists.d.ts.map +1 -0
- package/resources/profiles/lists.js +29 -0
- package/resources/profiles/lists.js.map +1 -0
- package/resources/profiles/lists.mjs +25 -0
- package/resources/profiles/lists.mjs.map +1 -0
- package/resources/profiles/profiles.d.mts +83 -0
- package/resources/profiles/profiles.d.mts.map +1 -0
- package/resources/profiles/profiles.d.ts +83 -0
- package/resources/profiles/profiles.d.ts.map +1 -0
- package/resources/profiles/profiles.js +61 -0
- package/resources/profiles/profiles.js.map +1 -0
- package/resources/profiles/profiles.mjs +56 -0
- package/resources/profiles/profiles.mjs.map +1 -0
- package/resources/profiles.d.mts +2 -0
- package/resources/profiles.d.mts.map +1 -0
- package/resources/profiles.d.ts +2 -0
- package/resources/profiles.d.ts.map +1 -0
- package/resources/profiles.js +6 -0
- package/resources/profiles.js.map +1 -0
- package/resources/profiles.mjs +3 -0
- package/resources/profiles.mjs.map +1 -0
- package/resources/requests.d.mts +10 -0
- package/resources/requests.d.mts.map +1 -0
- package/resources/requests.d.ts +10 -0
- package/resources/requests.d.ts.map +1 -0
- package/resources/requests.js +20 -0
- package/resources/requests.js.map +1 -0
- package/resources/requests.mjs +16 -0
- package/resources/requests.mjs.map +1 -0
- package/resources/send.d.mts +354 -0
- package/resources/send.d.mts.map +1 -0
- package/resources/send.d.ts +354 -0
- package/resources/send.d.ts.map +1 -0
- package/resources/send.js +26 -0
- package/resources/send.js.map +1 -0
- package/resources/send.mjs +22 -0
- package/resources/send.mjs.map +1 -0
- package/resources/shared.d.mts +42 -0
- package/resources/shared.d.mts.map +1 -0
- package/resources/shared.d.ts +42 -0
- package/resources/shared.d.ts.map +1 -0
- package/resources/shared.js +4 -0
- package/resources/shared.js.map +1 -0
- package/resources/shared.mjs +3 -0
- package/resources/shared.mjs.map +1 -0
- package/resources/tenants/default-preferences/default-preferences.d.mts +10 -0
- package/resources/tenants/default-preferences/default-preferences.d.mts.map +1 -0
- package/resources/tenants/default-preferences/default-preferences.d.ts +10 -0
- package/resources/tenants/default-preferences/default-preferences.d.ts.map +1 -0
- package/resources/tenants/default-preferences/default-preferences.js +17 -0
- package/resources/tenants/default-preferences/default-preferences.js.map +1 -0
- package/resources/tenants/default-preferences/default-preferences.mjs +12 -0
- package/resources/tenants/default-preferences/default-preferences.mjs.map +1 -0
- package/resources/tenants/default-preferences/index.d.mts +3 -0
- package/resources/tenants/default-preferences/index.d.mts.map +1 -0
- package/resources/tenants/default-preferences/index.d.ts +3 -0
- package/resources/tenants/default-preferences/index.d.ts.map +1 -0
- package/resources/tenants/default-preferences/index.js +9 -0
- package/resources/tenants/default-preferences/index.js.map +1 -0
- package/resources/tenants/default-preferences/index.mjs +4 -0
- package/resources/tenants/default-preferences/index.mjs.map +1 -0
- package/resources/tenants/default-preferences/items.d.mts +79 -0
- package/resources/tenants/default-preferences/items.d.mts.map +1 -0
- package/resources/tenants/default-preferences/items.d.ts +79 -0
- package/resources/tenants/default-preferences/items.d.ts.map +1 -0
- package/resources/tenants/default-preferences/items.js +53 -0
- package/resources/tenants/default-preferences/items.js.map +1 -0
- package/resources/tenants/default-preferences/items.mjs +49 -0
- package/resources/tenants/default-preferences/items.mjs.map +1 -0
- package/resources/tenants/default-preferences.d.mts +2 -0
- package/resources/tenants/default-preferences.d.mts.map +1 -0
- package/resources/tenants/default-preferences.d.ts +2 -0
- package/resources/tenants/default-preferences.d.ts.map +1 -0
- package/resources/tenants/default-preferences.js +6 -0
- package/resources/tenants/default-preferences.js.map +1 -0
- package/resources/tenants/default-preferences.mjs +3 -0
- package/resources/tenants/default-preferences.mjs.map +1 -0
- package/resources/tenants/index.d.mts +3 -0
- package/resources/tenants/index.d.mts.map +1 -0
- package/resources/tenants/index.d.ts +3 -0
- package/resources/tenants/index.d.ts.map +1 -0
- package/resources/tenants/index.js +9 -0
- package/resources/tenants/index.js.map +1 -0
- package/resources/tenants/index.mjs +4 -0
- package/resources/tenants/index.mjs.map +1 -0
- package/resources/tenants/templates.d.mts +122 -0
- package/resources/tenants/templates.d.mts.map +1 -0
- package/resources/tenants/templates.d.ts +122 -0
- package/resources/tenants/templates.d.ts.map +1 -0
- package/resources/tenants/templates.js +38 -0
- package/resources/tenants/templates.js.map +1 -0
- package/resources/tenants/templates.mjs +34 -0
- package/resources/tenants/templates.mjs.map +1 -0
- package/resources/tenants/tenants.d.mts +220 -0
- package/resources/tenants/tenants.d.mts.map +1 -0
- package/resources/tenants/tenants.d.ts +220 -0
- package/resources/tenants/tenants.d.ts.map +1 -0
- package/resources/tenants/tenants.js +83 -0
- package/resources/tenants/tenants.js.map +1 -0
- package/resources/tenants/tenants.mjs +78 -0
- package/resources/tenants/tenants.mjs.map +1 -0
- package/resources/tenants.d.mts +2 -0
- package/resources/tenants.d.mts.map +1 -0
- package/resources/tenants.d.ts +2 -0
- package/resources/tenants.d.ts.map +1 -0
- package/resources/tenants.js +6 -0
- package/resources/tenants.js.map +1 -0
- package/resources/tenants.mjs +3 -0
- package/resources/tenants.mjs.map +1 -0
- package/resources/translations.d.mts +36 -0
- package/resources/translations.d.mts.map +1 -0
- package/resources/translations.d.ts +36 -0
- package/resources/translations.d.ts.map +1 -0
- package/resources/translations.js +29 -0
- package/resources/translations.js.map +1 -0
- package/resources/translations.mjs +25 -0
- package/resources/translations.mjs.map +1 -0
- package/resources/users/index.d.mts +5 -0
- package/resources/users/index.d.mts.map +1 -0
- package/resources/users/index.d.ts +5 -0
- package/resources/users/index.d.ts.map +1 -0
- package/resources/users/index.js +13 -0
- package/resources/users/index.js.map +1 -0
- package/resources/users/index.mjs +6 -0
- package/resources/users/index.mjs.map +1 -0
- package/resources/users/preferences.d.mts +125 -0
- package/resources/users/preferences.d.mts.map +1 -0
- package/resources/users/preferences.d.ts +125 -0
- package/resources/users/preferences.d.ts.map +1 -0
- package/resources/users/preferences.js +65 -0
- package/resources/users/preferences.js.map +1 -0
- package/resources/users/preferences.mjs +61 -0
- package/resources/users/preferences.mjs.map +1 -0
- package/resources/users/tenants.d.mts +139 -0
- package/resources/users/tenants.d.mts.map +1 -0
- package/resources/users/tenants.d.ts +139 -0
- package/resources/users/tenants.d.ts.map +1 -0
- package/resources/users/tenants.js +93 -0
- package/resources/users/tenants.js.map +1 -0
- package/resources/users/tenants.mjs +89 -0
- package/resources/users/tenants.mjs.map +1 -0
- package/resources/users/tokens.d.mts +283 -0
- package/resources/users/tokens.d.mts.map +1 -0
- package/resources/users/tokens.d.ts +283 -0
- package/resources/users/tokens.d.ts.map +1 -0
- package/resources/users/tokens.js +107 -0
- package/resources/users/tokens.js.map +1 -0
- package/resources/users/tokens.mjs +103 -0
- package/resources/users/tokens.mjs.map +1 -0
- package/resources/users/users.d.mts +18 -0
- package/resources/users/users.d.mts.map +1 -0
- package/resources/users/users.d.ts +18 -0
- package/resources/users/users.d.ts.map +1 -0
- package/resources/users/users.js +25 -0
- package/resources/users/users.js.map +1 -0
- package/resources/users/users.mjs +20 -0
- package/resources/users/users.mjs.map +1 -0
- package/resources/users.d.mts +2 -0
- package/resources/users.d.mts.map +1 -0
- package/resources/users.d.ts +2 -0
- package/resources/users.d.ts.map +1 -0
- package/resources/users.js +6 -0
- package/resources/users.js.map +1 -0
- package/resources/users.mjs +3 -0
- package/resources/users.mjs.map +1 -0
- package/resources.d.mts +2 -0
- package/resources.d.mts.map +1 -0
- package/resources.d.ts +2 -0
- package/resources.d.ts.map +1 -0
- package/resources.js +5 -0
- package/resources.js.map +1 -0
- package/resources.mjs +2 -0
- package/resources.mjs.map +1 -0
- package/src/api-promise.ts +2 -0
- package/src/client.ts +1004 -0
- package/src/core/README.md +3 -0
- package/src/core/api-promise.ts +92 -0
- package/src/core/error.ts +130 -0
- package/src/core/resource.ts +11 -0
- package/src/core/uploads.ts +2 -0
- package/src/error.ts +2 -0
- package/src/index.ts +22 -0
- package/src/internal/README.md +3 -0
- package/src/internal/builtin-types.ts +93 -0
- package/src/internal/detect-platform.ts +196 -0
- package/src/internal/errors.ts +33 -0
- package/src/internal/headers.ts +97 -0
- package/src/internal/parse.ts +50 -0
- package/src/internal/qs/LICENSE.md +13 -0
- package/src/internal/qs/README.md +3 -0
- package/src/internal/qs/formats.ts +10 -0
- package/src/internal/qs/index.ts +13 -0
- package/src/internal/qs/stringify.ts +385 -0
- package/src/internal/qs/types.ts +71 -0
- package/src/internal/qs/utils.ts +265 -0
- package/src/internal/request-options.ts +91 -0
- package/src/internal/shim-types.ts +26 -0
- package/src/internal/shims.ts +107 -0
- package/src/internal/to-file.ts +154 -0
- package/src/internal/types.ts +95 -0
- package/src/internal/uploads.ts +187 -0
- package/src/internal/utils/base64.ts +40 -0
- package/src/internal/utils/bytes.ts +32 -0
- package/src/internal/utils/env.ts +18 -0
- package/src/internal/utils/log.ts +126 -0
- package/src/internal/utils/path.ts +88 -0
- package/src/internal/utils/sleep.ts +3 -0
- package/src/internal/utils/uuid.ts +17 -0
- package/src/internal/utils/values.ts +105 -0
- package/src/internal/utils.ts +8 -0
- package/src/lib/.keep +4 -0
- package/src/resource.ts +2 -0
- package/src/resources/audiences.ts +232 -0
- package/src/resources/audit-events.ts +69 -0
- package/src/resources/auth.ts +31 -0
- package/src/resources/automations/automations.ts +25 -0
- package/src/resources/automations/index.ts +9 -0
- package/src/resources/automations/invoke.ts +188 -0
- package/src/resources/automations.ts +3 -0
- package/src/resources/brands.ts +243 -0
- package/src/resources/bulk.ts +218 -0
- package/src/resources/inbound.ts +67 -0
- package/src/resources/index.ts +119 -0
- package/src/resources/lists/index.ts +22 -0
- package/src/resources/lists/lists.ts +138 -0
- package/src/resources/lists/subscriptions.ts +164 -0
- package/src/resources/lists.ts +3 -0
- package/src/resources/messages.ts +345 -0
- package/src/resources/notifications/checks.ts +87 -0
- package/src/resources/notifications/draft.ts +13 -0
- package/src/resources/notifications/index.ts +19 -0
- package/src/resources/notifications/notifications.ts +176 -0
- package/src/resources/notifications.ts +3 -0
- package/src/resources/profiles/index.ts +19 -0
- package/src/resources/profiles/lists.ts +111 -0
- package/src/resources/profiles/profiles.ts +146 -0
- package/src/resources/profiles.ts +3 -0
- package/src/resources/requests.ts +19 -0
- package/src/resources/send.ts +432 -0
- package/src/resources/shared.ts +61 -0
- package/src/resources/tenants/default-preferences/default-preferences.ts +27 -0
- package/src/resources/tenants/default-preferences/index.ts +10 -0
- package/src/resources/tenants/default-preferences/items.ts +112 -0
- package/src/resources/tenants/default-preferences.ts +3 -0
- package/src/resources/tenants/index.ts +20 -0
- package/src/resources/tenants/templates.ts +165 -0
- package/src/resources/tenants/tenants.ts +301 -0
- package/src/resources/tenants.ts +3 -0
- package/src/resources/translations.ts +60 -0
- package/src/resources/users/index.ts +33 -0
- package/src/resources/users/preferences.ts +184 -0
- package/src/resources/users/tenants.ts +201 -0
- package/src/resources/users/tokens.ts +378 -0
- package/src/resources/users/users.ts +81 -0
- package/src/resources/users.ts +3 -0
- package/src/resources.ts +1 -0
- package/src/tsconfig.json +11 -0
- package/src/uploads.ts +2 -0
- package/src/version.ts +1 -0
- package/uploads.d.mts +2 -0
- package/uploads.d.mts.map +1 -0
- package/uploads.d.ts +2 -0
- package/uploads.d.ts.map +1 -0
- package/uploads.js +6 -0
- package/uploads.js.map +1 -0
- package/uploads.mjs +2 -0
- package/uploads.mjs.map +1 -0
- package/version.d.mts +2 -0
- package/version.d.mts.map +1 -0
- package/version.d.ts +2 -1
- package/version.d.ts.map +1 -0
- package/version.js +3 -2
- package/version.js.map +1 -0
- package/version.mjs +2 -0
- package/version.mjs.map +1 -0
- package/CONTRIBUTING.md +0 -30
- package/Client.d.ts +0 -107
- package/Client.js +0 -218
- package/api/client/index.d.ts +0 -1
- package/api/client/index.js +0 -17
- package/api/client/requests/SendMessageRequest.d.ts +0 -29
- package/api/client/requests/SendMessageRequest.js +0 -5
- package/api/client/requests/index.d.ts +0 -1
- package/api/client/requests/index.js +0 -2
- package/api/index.d.ts +0 -3
- package/api/index.js +0 -19
- package/api/resources/audiences/client/Client.d.ts +0 -95
- package/api/resources/audiences/client/Client.js +0 -367
- package/api/resources/audiences/client/index.d.ts +0 -1
- package/api/resources/audiences/client/index.js +0 -17
- package/api/resources/audiences/client/requests/AudienceMembersListParams.d.ts +0 -13
- package/api/resources/audiences/client/requests/AudienceMembersListParams.js +0 -5
- package/api/resources/audiences/client/requests/AudienceUpdateParams.d.ts +0 -19
- package/api/resources/audiences/client/requests/AudienceUpdateParams.js +0 -5
- package/api/resources/audiences/client/requests/AudiencesListParams.d.ts +0 -13
- package/api/resources/audiences/client/requests/AudiencesListParams.js +0 -5
- package/api/resources/audiences/client/requests/index.d.ts +0 -3
- package/api/resources/audiences/client/requests/index.js +0 -2
- package/api/resources/audiences/index.d.ts +0 -2
- package/api/resources/audiences/index.js +0 -18
- package/api/resources/audiences/types/Audience.d.ts +0 -15
- package/api/resources/audiences/types/Audience.js +0 -5
- package/api/resources/audiences/types/AudienceListResponse.d.ts +0 -8
- package/api/resources/audiences/types/AudienceListResponse.js +0 -5
- package/api/resources/audiences/types/AudienceMember.d.ts +0 -10
- package/api/resources/audiences/types/AudienceMember.js +0 -5
- package/api/resources/audiences/types/AudienceMemberGetResponse.d.ts +0 -7
- package/api/resources/audiences/types/AudienceMemberGetResponse.js +0 -5
- package/api/resources/audiences/types/AudienceMemberListResponse.d.ts +0 -8
- package/api/resources/audiences/types/AudienceMemberListResponse.js +0 -5
- package/api/resources/audiences/types/AudienceUpdateResponse.d.ts +0 -7
- package/api/resources/audiences/types/AudienceUpdateResponse.js +0 -5
- package/api/resources/audiences/types/BaseFilterConfig.d.ts +0 -8
- package/api/resources/audiences/types/BaseFilterConfig.js +0 -5
- package/api/resources/audiences/types/ComparisonOperator.d.ts +0 -19
- package/api/resources/audiences/types/ComparisonOperator.js +0 -21
- package/api/resources/audiences/types/Filter.d.ts +0 -5
- package/api/resources/audiences/types/Filter.js +0 -5
- package/api/resources/audiences/types/FilterConfig.d.ts +0 -5
- package/api/resources/audiences/types/FilterConfig.js +0 -5
- package/api/resources/audiences/types/LogicalOperator.d.ts +0 -8
- package/api/resources/audiences/types/LogicalOperator.js +0 -10
- package/api/resources/audiences/types/NestedFilterConfig.d.ts +0 -10
- package/api/resources/audiences/types/NestedFilterConfig.js +0 -5
- package/api/resources/audiences/types/Operator.d.ts +0 -5
- package/api/resources/audiences/types/Operator.js +0 -5
- package/api/resources/audiences/types/SingleFilterConfig.d.ts +0 -13
- package/api/resources/audiences/types/SingleFilterConfig.js +0 -5
- package/api/resources/audiences/types/index.d.ts +0 -14
- package/api/resources/audiences/types/index.js +0 -30
- package/api/resources/auditEvents/client/Client.d.ts +0 -52
- package/api/resources/auditEvents/client/Client.js +0 -183
- package/api/resources/auditEvents/client/index.d.ts +0 -1
- package/api/resources/auditEvents/client/index.js +0 -17
- package/api/resources/auditEvents/client/requests/ListAuditEventsRequest.d.ts +0 -13
- package/api/resources/auditEvents/client/requests/ListAuditEventsRequest.js +0 -5
- package/api/resources/auditEvents/client/requests/index.d.ts +0 -1
- package/api/resources/auditEvents/client/requests/index.js +0 -2
- package/api/resources/auditEvents/index.d.ts +0 -2
- package/api/resources/auditEvents/index.js +0 -18
- package/api/resources/auditEvents/types/Actor.d.ts +0 -7
- package/api/resources/auditEvents/types/Actor.js +0 -5
- package/api/resources/auditEvents/types/AuditEvent.d.ts +0 -12
- package/api/resources/auditEvents/types/AuditEvent.js +0 -5
- package/api/resources/auditEvents/types/GetAuditEventParams.d.ts +0 -6
- package/api/resources/auditEvents/types/GetAuditEventParams.js +0 -5
- package/api/resources/auditEvents/types/ListAuditEventsParams.d.ts +0 -6
- package/api/resources/auditEvents/types/ListAuditEventsParams.js +0 -5
- package/api/resources/auditEvents/types/ListAuditEventsResponse.d.ts +0 -8
- package/api/resources/auditEvents/types/ListAuditEventsResponse.js +0 -5
- package/api/resources/auditEvents/types/Target.d.ts +0 -7
- package/api/resources/auditEvents/types/Target.js +0 -5
- package/api/resources/auditEvents/types/index.d.ts +0 -6
- package/api/resources/auditEvents/types/index.js +0 -22
- package/api/resources/authTokens/client/Client.d.ts +0 -48
- package/api/resources/authTokens/client/Client.js +0 -129
- package/api/resources/authTokens/client/index.d.ts +0 -1
- package/api/resources/authTokens/client/index.js +0 -17
- package/api/resources/authTokens/client/requests/IssueTokenParams.d.ts +0 -14
- package/api/resources/authTokens/client/requests/IssueTokenParams.js +0 -5
- package/api/resources/authTokens/client/requests/index.d.ts +0 -1
- package/api/resources/authTokens/client/requests/index.js +0 -2
- package/api/resources/authTokens/index.d.ts +0 -2
- package/api/resources/authTokens/index.js +0 -18
- package/api/resources/authTokens/types/IssueTokenResponse.d.ts +0 -6
- package/api/resources/authTokens/types/IssueTokenResponse.js +0 -5
- package/api/resources/authTokens/types/index.d.ts +0 -1
- package/api/resources/authTokens/types/index.js +0 -17
- package/api/resources/automations/client/Client.d.ts +0 -81
- package/api/resources/automations/client/Client.js +0 -204
- package/api/resources/automations/client/index.d.ts +0 -1
- package/api/resources/automations/client/index.js +0 -2
- package/api/resources/automations/index.d.ts +0 -2
- package/api/resources/automations/index.js +0 -18
- package/api/resources/automations/types/AccessorType.d.ts +0 -6
- package/api/resources/automations/types/AccessorType.js +0 -5
- package/api/resources/automations/types/Automation.d.ts +0 -8
- package/api/resources/automations/types/Automation.js +0 -5
- package/api/resources/automations/types/AutomationAdHocInvokeParams.d.ts +0 -7
- package/api/resources/automations/types/AutomationAdHocInvokeParams.js +0 -5
- package/api/resources/automations/types/AutomationAddToBatchMaxItemsType.d.ts +0 -4
- package/api/resources/automations/types/AutomationAddToBatchMaxItemsType.js +0 -5
- package/api/resources/automations/types/AutomationAddToBatchRetain.d.ts +0 -34
- package/api/resources/automations/types/AutomationAddToBatchRetain.js +0 -5
- package/api/resources/automations/types/AutomationAddToBatchRetainType.d.ts +0 -10
- package/api/resources/automations/types/AutomationAddToBatchRetainType.js +0 -12
- package/api/resources/automations/types/AutomationAddToBatchScope.d.ts +0 -9
- package/api/resources/automations/types/AutomationAddToBatchScope.js +0 -11
- package/api/resources/automations/types/AutomationAddToBatchStep.d.ts +0 -39
- package/api/resources/automations/types/AutomationAddToBatchStep.js +0 -5
- package/api/resources/automations/types/AutomationAddToDigestStep.d.ts +0 -16
- package/api/resources/automations/types/AutomationAddToDigestStep.js +0 -5
- package/api/resources/automations/types/AutomationCancelStep.d.ts +0 -8
- package/api/resources/automations/types/AutomationCancelStep.js +0 -5
- package/api/resources/automations/types/AutomationDelayStep.d.ts +0 -11
- package/api/resources/automations/types/AutomationDelayStep.js +0 -5
- package/api/resources/automations/types/AutomationFetchDataStep.d.ts +0 -31
- package/api/resources/automations/types/AutomationFetchDataStep.js +0 -5
- package/api/resources/automations/types/AutomationFetchDataWebhook.d.ts +0 -11
- package/api/resources/automations/types/AutomationFetchDataWebhook.js +0 -5
- package/api/resources/automations/types/AutomationFetchDataWebhookMethod.d.ts +0 -8
- package/api/resources/automations/types/AutomationFetchDataWebhookMethod.js +0 -10
- package/api/resources/automations/types/AutomationInvokeParams.d.ts +0 -11
- package/api/resources/automations/types/AutomationInvokeParams.js +0 -5
- package/api/resources/automations/types/AutomationInvokeResponse.d.ts +0 -6
- package/api/resources/automations/types/AutomationInvokeResponse.js +0 -5
- package/api/resources/automations/types/AutomationInvokeStep.d.ts +0 -8
- package/api/resources/automations/types/AutomationInvokeStep.js +0 -5
- package/api/resources/automations/types/AutomationInvokeTemplateParams.d.ts +0 -7
- package/api/resources/automations/types/AutomationInvokeTemplateParams.js +0 -5
- package/api/resources/automations/types/AutomationRunContext.d.ts +0 -11
- package/api/resources/automations/types/AutomationRunContext.js +0 -5
- package/api/resources/automations/types/AutomationSendListStep.d.ts +0 -12
- package/api/resources/automations/types/AutomationSendListStep.js +0 -5
- package/api/resources/automations/types/AutomationSendStep.d.ts +0 -13
- package/api/resources/automations/types/AutomationSendStep.js +0 -5
- package/api/resources/automations/types/AutomationStep.d.ts +0 -7
- package/api/resources/automations/types/AutomationStep.js +0 -5
- package/api/resources/automations/types/AutomationStepOption.d.ts +0 -5
- package/api/resources/automations/types/AutomationStepOption.js +0 -5
- package/api/resources/automations/types/AutomationThrottleOnThrottle.d.ts +0 -7
- package/api/resources/automations/types/AutomationThrottleOnThrottle.js +0 -5
- package/api/resources/automations/types/AutomationThrottleScope.d.ts +0 -9
- package/api/resources/automations/types/AutomationThrottleScope.js +0 -11
- package/api/resources/automations/types/AutomationThrottleStep.d.ts +0 -31
- package/api/resources/automations/types/AutomationThrottleStep.js +0 -5
- package/api/resources/automations/types/AutomationUpdateProfileStep.d.ts +0 -10
- package/api/resources/automations/types/AutomationUpdateProfileStep.js +0 -5
- package/api/resources/automations/types/AutomationV2SendStep.d.ts +0 -8
- package/api/resources/automations/types/AutomationV2SendStep.js +0 -5
- package/api/resources/automations/types/MergeAlgorithm.d.ts +0 -10
- package/api/resources/automations/types/MergeAlgorithm.js +0 -12
- package/api/resources/automations/types/Profile.d.ts +0 -4
- package/api/resources/automations/types/Profile.js +0 -5
- package/api/resources/automations/types/index.d.ts +0 -30
- package/api/resources/automations/types/index.js +0 -46
- package/api/resources/brands/client/Client.d.ts +0 -107
- package/api/resources/brands/client/Client.js +0 -374
- package/api/resources/brands/client/index.d.ts +0 -1
- package/api/resources/brands/client/index.js +0 -17
- package/api/resources/brands/client/requests/BrandUpdateParameters.d.ts +0 -18
- package/api/resources/brands/client/requests/BrandUpdateParameters.js +0 -5
- package/api/resources/brands/client/requests/ListBrandsRequest.d.ts +0 -13
- package/api/resources/brands/client/requests/ListBrandsRequest.js +0 -5
- package/api/resources/brands/client/requests/index.d.ts +0 -2
- package/api/resources/brands/client/requests/index.js +0 -2
- package/api/resources/brands/index.d.ts +0 -2
- package/api/resources/brands/index.js +0 -18
- package/api/resources/brands/types/Brand.d.ts +0 -20
- package/api/resources/brands/types/Brand.js +0 -5
- package/api/resources/brands/types/BrandColors.d.ts +0 -8
- package/api/resources/brands/types/BrandColors.js +0 -5
- package/api/resources/brands/types/BrandGetAllResponse.d.ts +0 -8
- package/api/resources/brands/types/BrandGetAllResponse.js +0 -5
- package/api/resources/brands/types/BrandParameters.d.ts +0 -11
- package/api/resources/brands/types/BrandParameters.js +0 -5
- package/api/resources/brands/types/BrandSettings.d.ts +0 -9
- package/api/resources/brands/types/BrandSettings.js +0 -5
- package/api/resources/brands/types/BrandSnippet.d.ts +0 -8
- package/api/resources/brands/types/BrandSnippet.js +0 -5
- package/api/resources/brands/types/BrandSnippets.d.ts +0 -7
- package/api/resources/brands/types/BrandSnippets.js +0 -5
- package/api/resources/brands/types/BrandsResponse.d.ts +0 -8
- package/api/resources/brands/types/BrandsResponse.js +0 -5
- package/api/resources/brands/types/index.d.ts +0 -8
- package/api/resources/brands/types/index.js +0 -24
- package/api/resources/bulk/client/Client.d.ts +0 -120
- package/api/resources/bulk/client/Client.js +0 -393
- package/api/resources/bulk/client/index.d.ts +0 -1
- package/api/resources/bulk/client/index.js +0 -17
- package/api/resources/bulk/client/requests/BulkCreateJobParams.d.ts +0 -20
- package/api/resources/bulk/client/requests/BulkCreateJobParams.js +0 -5
- package/api/resources/bulk/client/requests/BulkGetUsersParams.d.ts +0 -13
- package/api/resources/bulk/client/requests/BulkGetUsersParams.js +0 -5
- package/api/resources/bulk/client/requests/index.d.ts +0 -2
- package/api/resources/bulk/client/requests/index.js +0 -2
- package/api/resources/bulk/index.d.ts +0 -2
- package/api/resources/bulk/index.js +0 -18
- package/api/resources/bulk/types/BulkCreateJobResponse.d.ts +0 -6
- package/api/resources/bulk/types/BulkCreateJobResponse.js +0 -5
- package/api/resources/bulk/types/BulkGetJobParams.d.ts +0 -6
- package/api/resources/bulk/types/BulkGetJobParams.js +0 -5
- package/api/resources/bulk/types/BulkGetJobResponse.d.ts +0 -7
- package/api/resources/bulk/types/BulkGetJobResponse.js +0 -5
- package/api/resources/bulk/types/BulkGetJobUsersParams.d.ts +0 -7
- package/api/resources/bulk/types/BulkGetJobUsersParams.js +0 -5
- package/api/resources/bulk/types/BulkGetJobUsersResponse.d.ts +0 -8
- package/api/resources/bulk/types/BulkGetJobUsersResponse.js +0 -5
- package/api/resources/bulk/types/BulkIngestError.d.ts +0 -7
- package/api/resources/bulk/types/BulkIngestError.js +0 -5
- package/api/resources/bulk/types/BulkIngestUsersParams.d.ts +0 -7
- package/api/resources/bulk/types/BulkIngestUsersParams.js +0 -5
- package/api/resources/bulk/types/BulkIngestUsersResponse.d.ts +0 -8
- package/api/resources/bulk/types/BulkIngestUsersResponse.js +0 -5
- package/api/resources/bulk/types/BulkJobStatus.d.ts +0 -10
- package/api/resources/bulk/types/BulkJobStatus.js +0 -12
- package/api/resources/bulk/types/BulkJobUserStatus.d.ts +0 -9
- package/api/resources/bulk/types/BulkJobUserStatus.js +0 -11
- package/api/resources/bulk/types/BulkMessageUserResponse.d.ts +0 -8
- package/api/resources/bulk/types/BulkMessageUserResponse.js +0 -5
- package/api/resources/bulk/types/InboundBulkContentMessage.d.ts +0 -15
- package/api/resources/bulk/types/InboundBulkContentMessage.js +0 -5
- package/api/resources/bulk/types/InboundBulkMessage.d.ts +0 -7
- package/api/resources/bulk/types/InboundBulkMessage.js +0 -5
- package/api/resources/bulk/types/InboundBulkMessageUser.d.ts +0 -11
- package/api/resources/bulk/types/InboundBulkMessageUser.js +0 -5
- package/api/resources/bulk/types/InboundBulkMessageV1.d.ts +0 -23
- package/api/resources/bulk/types/InboundBulkMessageV1.js +0 -5
- package/api/resources/bulk/types/InboundBulkMessageV2.d.ts +0 -14
- package/api/resources/bulk/types/InboundBulkMessageV2.js +0 -5
- package/api/resources/bulk/types/InboundBulkTemplateMessage.d.ts +0 -11
- package/api/resources/bulk/types/InboundBulkTemplateMessage.js +0 -5
- package/api/resources/bulk/types/JobDetails.d.ts +0 -11
- package/api/resources/bulk/types/JobDetails.js +0 -5
- package/api/resources/bulk/types/index.d.ts +0 -18
- package/api/resources/bulk/types/index.js +0 -34
- package/api/resources/commons/errors/AlreadyExistsError.d.ts +0 -9
- package/api/resources/commons/errors/AlreadyExistsError.js +0 -52
- package/api/resources/commons/errors/BadRequestError.d.ts +0 -9
- package/api/resources/commons/errors/BadRequestError.js +0 -52
- package/api/resources/commons/errors/ConflictError.d.ts +0 -9
- package/api/resources/commons/errors/ConflictError.js +0 -52
- package/api/resources/commons/errors/MessageNotFoundError.d.ts +0 -9
- package/api/resources/commons/errors/MessageNotFoundError.js +0 -52
- package/api/resources/commons/errors/NotFoundError.d.ts +0 -9
- package/api/resources/commons/errors/NotFoundError.js +0 -52
- package/api/resources/commons/errors/PaymentRequiredError.d.ts +0 -9
- package/api/resources/commons/errors/PaymentRequiredError.js +0 -52
- package/api/resources/commons/errors/index.d.ts +0 -6
- package/api/resources/commons/errors/index.js +0 -22
- package/api/resources/commons/index.d.ts +0 -2
- package/api/resources/commons/index.js +0 -18
- package/api/resources/commons/types/AlreadyExists.d.ts +0 -7
- package/api/resources/commons/types/AlreadyExists.js +0 -5
- package/api/resources/commons/types/BadRequest.d.ts +0 -7
- package/api/resources/commons/types/BadRequest.js +0 -5
- package/api/resources/commons/types/BaseError.d.ts +0 -7
- package/api/resources/commons/types/BaseError.js +0 -5
- package/api/resources/commons/types/BaseTemplateTenantAssociation.d.ts +0 -15
- package/api/resources/commons/types/BaseTemplateTenantAssociation.js +0 -5
- package/api/resources/commons/types/ChannelClassification.d.ts +0 -12
- package/api/resources/commons/types/ChannelClassification.js +0 -14
- package/api/resources/commons/types/ChannelPreference.d.ts +0 -7
- package/api/resources/commons/types/ChannelPreference.js +0 -5
- package/api/resources/commons/types/Conflict.d.ts +0 -7
- package/api/resources/commons/types/Conflict.js +0 -5
- package/api/resources/commons/types/Email.d.ts +0 -7
- package/api/resources/commons/types/Email.js +0 -5
- package/api/resources/commons/types/ListTemplateTenantAssociation.d.ts +0 -7
- package/api/resources/commons/types/ListTemplateTenantAssociation.js +0 -5
- package/api/resources/commons/types/MessageNotFound.d.ts +0 -7
- package/api/resources/commons/types/MessageNotFound.js +0 -5
- package/api/resources/commons/types/NotFound.d.ts +0 -7
- package/api/resources/commons/types/NotFound.js +0 -5
- package/api/resources/commons/types/NotificationPreferenceDetails.d.ts +0 -9
- package/api/resources/commons/types/NotificationPreferenceDetails.js +0 -5
- package/api/resources/commons/types/NotificationPreferences.d.ts +0 -5
- package/api/resources/commons/types/NotificationPreferences.js +0 -5
- package/api/resources/commons/types/Paging.d.ts +0 -7
- package/api/resources/commons/types/Paging.js +0 -5
- package/api/resources/commons/types/PaymentRequired.d.ts +0 -7
- package/api/resources/commons/types/PaymentRequired.js +0 -5
- package/api/resources/commons/types/PreferenceStatus.d.ts +0 -9
- package/api/resources/commons/types/PreferenceStatus.js +0 -11
- package/api/resources/commons/types/RecipientPreferences.d.ts +0 -8
- package/api/resources/commons/types/RecipientPreferences.js +0 -5
- package/api/resources/commons/types/Rule.d.ts +0 -7
- package/api/resources/commons/types/Rule.js +0 -5
- package/api/resources/commons/types/SingleTemplateTenantAssociation.d.ts +0 -7
- package/api/resources/commons/types/SingleTemplateTenantAssociation.js +0 -5
- package/api/resources/commons/types/TenantTemplateData.d.ts +0 -11
- package/api/resources/commons/types/TenantTemplateData.js +0 -5
- package/api/resources/commons/types/TenantTemplateDataNoContent.d.ts +0 -10
- package/api/resources/commons/types/TenantTemplateDataNoContent.js +0 -5
- package/api/resources/commons/types/UserTenantAssociation.d.ts +0 -12
- package/api/resources/commons/types/UserTenantAssociation.js +0 -5
- package/api/resources/commons/types/index.d.ts +0 -22
- package/api/resources/commons/types/index.js +0 -38
- package/api/resources/inbound/client/Client.d.ts +0 -52
- package/api/resources/inbound/client/Client.js +0 -145
- package/api/resources/inbound/client/index.d.ts +0 -1
- package/api/resources/inbound/client/index.js +0 -2
- package/api/resources/inbound/index.d.ts +0 -2
- package/api/resources/inbound/index.js +0 -18
- package/api/resources/inbound/types/InboundTrackEvent.d.ts +0 -13
- package/api/resources/inbound/types/InboundTrackEvent.js +0 -5
- package/api/resources/inbound/types/TrackAcceptedResponse.d.ts +0 -7
- package/api/resources/inbound/types/TrackAcceptedResponse.js +0 -5
- package/api/resources/inbound/types/index.d.ts +0 -2
- package/api/resources/inbound/types/index.js +0 -18
- package/api/resources/index.d.ts +0 -44
- package/api/resources/index.js +0 -83
- package/api/resources/lists/client/Client.d.ts +0 -185
- package/api/resources/lists/client/Client.js +0 -685
- package/api/resources/lists/client/index.d.ts +0 -1
- package/api/resources/lists/client/index.js +0 -17
- package/api/resources/lists/client/requests/AddSubscribersToList.d.ts +0 -19
- package/api/resources/lists/client/requests/AddSubscribersToList.js +0 -5
- package/api/resources/lists/client/requests/GetAllListsRequest.d.ts +0 -17
- package/api/resources/lists/client/requests/GetAllListsRequest.js +0 -5
- package/api/resources/lists/client/requests/GetSubscriptionForListRequest.d.ts +0 -13
- package/api/resources/lists/client/requests/GetSubscriptionForListRequest.js +0 -5
- package/api/resources/lists/client/requests/RestoreListRequest.d.ts +0 -9
- package/api/resources/lists/client/requests/RestoreListRequest.js +0 -5
- package/api/resources/lists/client/requests/SubscribeUserToListRequest.d.ts +0 -13
- package/api/resources/lists/client/requests/SubscribeUserToListRequest.js +0 -5
- package/api/resources/lists/client/requests/SubscribeUsersToListRequest.d.ts +0 -19
- package/api/resources/lists/client/requests/SubscribeUsersToListRequest.js +0 -5
- package/api/resources/lists/client/requests/index.d.ts +0 -6
- package/api/resources/lists/client/requests/index.js +0 -2
- package/api/resources/lists/index.d.ts +0 -2
- package/api/resources/lists/index.js +0 -18
- package/api/resources/lists/types/List.d.ts +0 -9
- package/api/resources/lists/types/List.js +0 -5
- package/api/resources/lists/types/ListGetAllResponse.d.ts +0 -8
- package/api/resources/lists/types/ListGetAllResponse.js +0 -5
- package/api/resources/lists/types/ListGetSubscriptionsResponse.d.ts +0 -8
- package/api/resources/lists/types/ListGetSubscriptionsResponse.js +0 -5
- package/api/resources/lists/types/ListPutParams.d.ts +0 -8
- package/api/resources/lists/types/ListPutParams.js +0 -5
- package/api/resources/lists/types/ListSubscriptionRecipient.d.ts +0 -9
- package/api/resources/lists/types/ListSubscriptionRecipient.js +0 -5
- package/api/resources/lists/types/PutSubscriptionsRecipient.d.ts +0 -8
- package/api/resources/lists/types/PutSubscriptionsRecipient.js +0 -5
- package/api/resources/lists/types/index.d.ts +0 -6
- package/api/resources/lists/types/index.js +0 -22
- package/api/resources/messages/client/Client.d.ts +0 -106
- package/api/resources/messages/client/Client.js +0 -479
- package/api/resources/messages/client/index.d.ts +0 -1
- package/api/resources/messages/client/index.js +0 -17
- package/api/resources/messages/client/requests/GetMessageHistoryRequest.d.ts +0 -13
- package/api/resources/messages/client/requests/GetMessageHistoryRequest.js +0 -5
- package/api/resources/messages/client/requests/ListMessagesRequest.d.ts +0 -65
- package/api/resources/messages/client/requests/ListMessagesRequest.js +0 -5
- package/api/resources/messages/client/requests/index.d.ts +0 -2
- package/api/resources/messages/client/requests/index.js +0 -2
- package/api/resources/messages/index.d.ts +0 -2
- package/api/resources/messages/index.js +0 -18
- package/api/resources/messages/types/ListMessagesResponse.d.ts +0 -10
- package/api/resources/messages/types/ListMessagesResponse.js +0 -5
- package/api/resources/messages/types/MessageDetails.d.ts +0 -30
- package/api/resources/messages/types/MessageDetails.js +0 -5
- package/api/resources/messages/types/MessageDetailsExtended.d.ts +0 -7
- package/api/resources/messages/types/MessageDetailsExtended.js +0 -5
- package/api/resources/messages/types/MessageHistoryResponse.d.ts +0 -6
- package/api/resources/messages/types/MessageHistoryResponse.js +0 -5
- package/api/resources/messages/types/MessageStatus.d.ts +0 -66
- package/api/resources/messages/types/MessageStatus.js +0 -23
- package/api/resources/messages/types/Reason.d.ts +0 -42
- package/api/resources/messages/types/Reason.js +0 -17
- package/api/resources/messages/types/RenderOutput.d.ts +0 -12
- package/api/resources/messages/types/RenderOutput.js +0 -5
- package/api/resources/messages/types/RenderOutputResponse.d.ts +0 -8
- package/api/resources/messages/types/RenderOutputResponse.js +0 -5
- package/api/resources/messages/types/RenderedMessageBlock.d.ts +0 -9
- package/api/resources/messages/types/RenderedMessageBlock.js +0 -5
- package/api/resources/messages/types/RenderedMessageContent.d.ts +0 -18
- package/api/resources/messages/types/RenderedMessageContent.js +0 -5
- package/api/resources/messages/types/index.d.ts +0 -10
- package/api/resources/messages/types/index.js +0 -26
- package/api/resources/notifications/client/Client.d.ts +0 -98
- package/api/resources/notifications/client/Client.js +0 -406
- package/api/resources/notifications/client/index.d.ts +0 -1
- package/api/resources/notifications/client/index.js +0 -17
- package/api/resources/notifications/client/requests/NotificationListParams.d.ts +0 -14
- package/api/resources/notifications/client/requests/NotificationListParams.js +0 -5
- package/api/resources/notifications/client/requests/SubmissionChecksReplaceParams.d.ts +0 -21
- package/api/resources/notifications/client/requests/SubmissionChecksReplaceParams.js +0 -5
- package/api/resources/notifications/client/requests/index.d.ts +0 -2
- package/api/resources/notifications/client/requests/index.js +0 -2
- package/api/resources/notifications/index.d.ts +0 -2
- package/api/resources/notifications/index.js +0 -18
- package/api/resources/notifications/types/BaseCheck.d.ts +0 -9
- package/api/resources/notifications/types/BaseCheck.js +0 -5
- package/api/resources/notifications/types/BlockType.d.ts +0 -15
- package/api/resources/notifications/types/BlockType.js +0 -17
- package/api/resources/notifications/types/Check.d.ts +0 -7
- package/api/resources/notifications/types/Check.js +0 -5
- package/api/resources/notifications/types/CheckStatus.d.ts +0 -9
- package/api/resources/notifications/types/CheckStatus.js +0 -11
- package/api/resources/notifications/types/MessageRouting.d.ts +0 -8
- package/api/resources/notifications/types/MessageRouting.js +0 -5
- package/api/resources/notifications/types/MessageRoutingChannel.d.ts +0 -5
- package/api/resources/notifications/types/MessageRoutingChannel.js +0 -5
- package/api/resources/notifications/types/MessageRoutingMethod.d.ts +0 -8
- package/api/resources/notifications/types/MessageRoutingMethod.js +0 -10
- package/api/resources/notifications/types/Notification.d.ts +0 -14
- package/api/resources/notifications/types/Notification.js +0 -5
- package/api/resources/notifications/types/NotificationBlock.d.ts +0 -13
- package/api/resources/notifications/types/NotificationBlock.js +0 -5
- package/api/resources/notifications/types/NotificationChannel.d.ts +0 -11
- package/api/resources/notifications/types/NotificationChannel.js +0 -5
- package/api/resources/notifications/types/NotificationChannelContent.d.ts +0 -7
- package/api/resources/notifications/types/NotificationChannelContent.js +0 -5
- package/api/resources/notifications/types/NotificationContent.d.ts +0 -5
- package/api/resources/notifications/types/NotificationContent.js +0 -5
- package/api/resources/notifications/types/NotificationContentHierarchy.d.ts +0 -7
- package/api/resources/notifications/types/NotificationContentHierarchy.js +0 -5
- package/api/resources/notifications/types/NotificationGetContentResponse.d.ts +0 -9
- package/api/resources/notifications/types/NotificationGetContentResponse.js +0 -5
- package/api/resources/notifications/types/NotificationListResponse.d.ts +0 -8
- package/api/resources/notifications/types/NotificationListResponse.js +0 -5
- package/api/resources/notifications/types/NotificationTag.d.ts +0 -7
- package/api/resources/notifications/types/NotificationTag.js +0 -5
- package/api/resources/notifications/types/NotificationTagData.d.ts +0 -7
- package/api/resources/notifications/types/NotificationTagData.js +0 -5
- package/api/resources/notifications/types/SubmissionChecksGetResponse.d.ts +0 -7
- package/api/resources/notifications/types/SubmissionChecksGetResponse.js +0 -5
- package/api/resources/notifications/types/SubmissionChecksReplaceResponse.d.ts +0 -7
- package/api/resources/notifications/types/SubmissionChecksReplaceResponse.js +0 -5
- package/api/resources/notifications/types/index.d.ts +0 -19
- package/api/resources/notifications/types/index.js +0 -35
- package/api/resources/profiles/client/Client.d.ts +0 -172
- package/api/resources/profiles/client/Client.js +0 -588
- package/api/resources/profiles/client/index.d.ts +0 -1
- package/api/resources/profiles/client/index.js +0 -17
- package/api/resources/profiles/client/requests/GetListSubscriptionsRequest.d.ts +0 -13
- package/api/resources/profiles/client/requests/GetListSubscriptionsRequest.js +0 -5
- package/api/resources/profiles/client/requests/MergeProfileRequest.d.ts +0 -16
- package/api/resources/profiles/client/requests/MergeProfileRequest.js +0 -5
- package/api/resources/profiles/client/requests/ReplaceProfileRequest.d.ts +0 -16
- package/api/resources/profiles/client/requests/ReplaceProfileRequest.js +0 -5
- package/api/resources/profiles/client/requests/index.d.ts +0 -3
- package/api/resources/profiles/client/requests/index.js +0 -2
- package/api/resources/profiles/index.d.ts +0 -2
- package/api/resources/profiles/index.js +0 -18
- package/api/resources/profiles/types/Address.d.ts +0 -11
- package/api/resources/profiles/types/Address.js +0 -5
- package/api/resources/profiles/types/AirshipProfile.d.ts +0 -8
- package/api/resources/profiles/types/AirshipProfile.js +0 -5
- package/api/resources/profiles/types/AirshipProfileAudience.d.ts +0 -6
- package/api/resources/profiles/types/AirshipProfileAudience.js +0 -5
- package/api/resources/profiles/types/DeleteListSubscriptionResponse.d.ts +0 -6
- package/api/resources/profiles/types/DeleteListSubscriptionResponse.js +0 -5
- package/api/resources/profiles/types/DeviceType.d.ts +0 -4
- package/api/resources/profiles/types/DeviceType.js +0 -5
- package/api/resources/profiles/types/Discord.d.ts +0 -5
- package/api/resources/profiles/types/Discord.js +0 -5
- package/api/resources/profiles/types/Expo.d.ts +0 -5
- package/api/resources/profiles/types/Expo.js +0 -5
- package/api/resources/profiles/types/GetListSubscriptionsList.d.ts +0 -14
- package/api/resources/profiles/types/GetListSubscriptionsList.js +0 -5
- package/api/resources/profiles/types/GetListSubscriptionsResponse.d.ts +0 -9
- package/api/resources/profiles/types/GetListSubscriptionsResponse.js +0 -5
- package/api/resources/profiles/types/Intercom.d.ts +0 -8
- package/api/resources/profiles/types/Intercom.js +0 -5
- package/api/resources/profiles/types/IntercomRecipient.d.ts +0 -6
- package/api/resources/profiles/types/IntercomRecipient.js +0 -5
- package/api/resources/profiles/types/MergeProfileResponse.d.ts +0 -6
- package/api/resources/profiles/types/MergeProfileResponse.js +0 -5
- package/api/resources/profiles/types/MsTeams.d.ts +0 -5
- package/api/resources/profiles/types/MsTeams.js +0 -5
- package/api/resources/profiles/types/MsTeamsBaseProperties.d.ts +0 -7
- package/api/resources/profiles/types/MsTeamsBaseProperties.js +0 -5
- package/api/resources/profiles/types/MultipleTokens.d.ts +0 -7
- package/api/resources/profiles/types/MultipleTokens.js +0 -5
- package/api/resources/profiles/types/Pagerduty.d.ts +0 -9
- package/api/resources/profiles/types/Pagerduty.js +0 -5
- package/api/resources/profiles/types/ProfileGetParameters.d.ts +0 -6
- package/api/resources/profiles/types/ProfileGetParameters.js +0 -5
- package/api/resources/profiles/types/ProfileGetResponse.d.ts +0 -8
- package/api/resources/profiles/types/ProfileGetResponse.js +0 -5
- package/api/resources/profiles/types/ProfileUpdateRequest.d.ts +0 -8
- package/api/resources/profiles/types/ProfileUpdateRequest.js +0 -5
- package/api/resources/profiles/types/ReplaceProfileResponse.d.ts +0 -6
- package/api/resources/profiles/types/ReplaceProfileResponse.js +0 -5
- package/api/resources/profiles/types/SendDirectMessage.d.ts +0 -6
- package/api/resources/profiles/types/SendDirectMessage.js +0 -5
- package/api/resources/profiles/types/SendToChannel.d.ts +0 -6
- package/api/resources/profiles/types/SendToChannel.js +0 -5
- package/api/resources/profiles/types/SendToMsTeamsChannelId.d.ts +0 -7
- package/api/resources/profiles/types/SendToMsTeamsChannelId.js +0 -5
- package/api/resources/profiles/types/SendToMsTeamsChannelName.d.ts +0 -8
- package/api/resources/profiles/types/SendToMsTeamsChannelName.js +0 -5
- package/api/resources/profiles/types/SendToMsTeamsConversationId.d.ts +0 -7
- package/api/resources/profiles/types/SendToMsTeamsConversationId.js +0 -5
- package/api/resources/profiles/types/SendToMsTeamsEmail.d.ts +0 -7
- package/api/resources/profiles/types/SendToMsTeamsEmail.js +0 -5
- package/api/resources/profiles/types/SendToMsTeamsUserId.d.ts +0 -7
- package/api/resources/profiles/types/SendToMsTeamsUserId.js +0 -5
- package/api/resources/profiles/types/SendToSlackChannel.d.ts +0 -7
- package/api/resources/profiles/types/SendToSlackChannel.js +0 -5
- package/api/resources/profiles/types/SendToSlackEmail.d.ts +0 -7
- package/api/resources/profiles/types/SendToSlackEmail.js +0 -5
- package/api/resources/profiles/types/SendToSlackUserId.d.ts +0 -7
- package/api/resources/profiles/types/SendToSlackUserId.js +0 -5
- package/api/resources/profiles/types/Slack.d.ts +0 -5
- package/api/resources/profiles/types/Slack.js +0 -5
- package/api/resources/profiles/types/SlackBaseProperties.d.ts +0 -6
- package/api/resources/profiles/types/SlackBaseProperties.js +0 -5
- package/api/resources/profiles/types/SnoozeRule.d.ts +0 -9
- package/api/resources/profiles/types/SnoozeRule.js +0 -5
- package/api/resources/profiles/types/SnoozeRuleType.d.ts +0 -7
- package/api/resources/profiles/types/SnoozeRuleType.js +0 -9
- package/api/resources/profiles/types/SubscribeToListsRequest.d.ts +0 -7
- package/api/resources/profiles/types/SubscribeToListsRequest.js +0 -5
- package/api/resources/profiles/types/SubscribeToListsRequestListObject.d.ts +0 -8
- package/api/resources/profiles/types/SubscribeToListsRequestListObject.js +0 -5
- package/api/resources/profiles/types/SubscribeToListsResponse.d.ts +0 -6
- package/api/resources/profiles/types/SubscribeToListsResponse.js +0 -5
- package/api/resources/profiles/types/Token.d.ts +0 -6
- package/api/resources/profiles/types/Token.js +0 -5
- package/api/resources/profiles/types/UserProfile.d.ts +0 -38
- package/api/resources/profiles/types/UserProfile.js +0 -5
- package/api/resources/profiles/types/UserProfileFirebaseToken.d.ts +0 -4
- package/api/resources/profiles/types/UserProfileFirebaseToken.js +0 -5
- package/api/resources/profiles/types/UserProfilePatch.d.ts +0 -11
- package/api/resources/profiles/types/UserProfilePatch.js +0 -5
- package/api/resources/profiles/types/WebhookAuthMode.d.ts +0 -9
- package/api/resources/profiles/types/WebhookAuthMode.js +0 -11
- package/api/resources/profiles/types/WebhookAuthentication.d.ts +0 -14
- package/api/resources/profiles/types/WebhookAuthentication.js +0 -5
- package/api/resources/profiles/types/WebhookMethod.d.ts +0 -8
- package/api/resources/profiles/types/WebhookMethod.js +0 -10
- package/api/resources/profiles/types/WebhookProfile.d.ts +0 -16
- package/api/resources/profiles/types/WebhookProfile.js +0 -5
- package/api/resources/profiles/types/WebhookProfileType.d.ts +0 -8
- package/api/resources/profiles/types/WebhookProfileType.js +0 -10
- package/api/resources/profiles/types/index.d.ts +0 -46
- package/api/resources/profiles/types/index.js +0 -62
- package/api/resources/send/index.d.ts +0 -1
- package/api/resources/send/index.js +0 -17
- package/api/resources/send/types/Attachment.d.ts +0 -4
- package/api/resources/send/types/Attachment.js +0 -5
- package/api/resources/send/types/AudienceFilter.d.ts +0 -9
- package/api/resources/send/types/AudienceFilter.js +0 -5
- package/api/resources/send/types/AudienceRecipient.d.ts +0 -10
- package/api/resources/send/types/AudienceRecipient.js +0 -5
- package/api/resources/send/types/BaseMessage.d.ts +0 -31
- package/api/resources/send/types/BaseMessage.js +0 -5
- package/api/resources/send/types/BaseMessageSendTo.d.ts +0 -8
- package/api/resources/send/types/BaseMessageSendTo.js +0 -5
- package/api/resources/send/types/BaseSocialPresence.d.ts +0 -6
- package/api/resources/send/types/BaseSocialPresence.js +0 -5
- package/api/resources/send/types/BrandSettingsEmail.d.ts +0 -10
- package/api/resources/send/types/BrandSettingsEmail.js +0 -5
- package/api/resources/send/types/BrandSettingsInApp.d.ts +0 -14
- package/api/resources/send/types/BrandSettingsInApp.js +0 -5
- package/api/resources/send/types/BrandSettingsSocialPresence.d.ts +0 -12
- package/api/resources/send/types/BrandSettingsSocialPresence.js +0 -5
- package/api/resources/send/types/BrandTemplate.d.ts +0 -12
- package/api/resources/send/types/BrandTemplate.js +0 -5
- package/api/resources/send/types/BrandTemplateOverride.d.ts +0 -9
- package/api/resources/send/types/BrandTemplateOverride.js +0 -5
- package/api/resources/send/types/Channel.d.ts +0 -33
- package/api/resources/send/types/Channel.js +0 -5
- package/api/resources/send/types/ChannelMetadata.d.ts +0 -7
- package/api/resources/send/types/ChannelMetadata.js +0 -5
- package/api/resources/send/types/ChannelSource.d.ts +0 -9
- package/api/resources/send/types/ChannelSource.js +0 -11
- package/api/resources/send/types/Content.d.ts +0 -5
- package/api/resources/send/types/Content.js +0 -5
- package/api/resources/send/types/ContentMessage.d.ts +0 -15
- package/api/resources/send/types/ContentMessage.js +0 -5
- package/api/resources/send/types/Criteria.d.ts +0 -10
- package/api/resources/send/types/Criteria.js +0 -12
- package/api/resources/send/types/Delay.d.ts +0 -9
- package/api/resources/send/types/Delay.js +0 -5
- package/api/resources/send/types/ElementalActionNode.d.ts +0 -23
- package/api/resources/send/types/ElementalActionNode.js +0 -5
- package/api/resources/send/types/ElementalBaseNode.d.ts +0 -9
- package/api/resources/send/types/ElementalBaseNode.js +0 -5
- package/api/resources/send/types/ElementalChannelNode.d.ts +0 -31
- package/api/resources/send/types/ElementalChannelNode.js +0 -5
- package/api/resources/send/types/ElementalContent.d.ts +0 -10
- package/api/resources/send/types/ElementalContent.js +0 -5
- package/api/resources/send/types/ElementalContentSugar.d.ts +0 -12
- package/api/resources/send/types/ElementalContentSugar.js +0 -5
- package/api/resources/send/types/ElementalDividerNode.d.ts +0 -11
- package/api/resources/send/types/ElementalDividerNode.js +0 -5
- package/api/resources/send/types/ElementalGroupNode.d.ts +0 -11
- package/api/resources/send/types/ElementalGroupNode.js +0 -5
- package/api/resources/send/types/ElementalImageNode.d.ts +0 -19
- package/api/resources/send/types/ElementalImageNode.js +0 -5
- package/api/resources/send/types/ElementalMetaNode.d.ts +0 -13
- package/api/resources/send/types/ElementalMetaNode.js +0 -5
- package/api/resources/send/types/ElementalNode.d.ts +0 -31
- package/api/resources/send/types/ElementalNode.js +0 -5
- package/api/resources/send/types/ElementalQuoteNode.d.ts +0 -18
- package/api/resources/send/types/ElementalQuoteNode.js +0 -5
- package/api/resources/send/types/ElementalTextNode.d.ts +0 -31
- package/api/resources/send/types/ElementalTextNode.js +0 -5
- package/api/resources/send/types/EmailFooter.d.ts +0 -7
- package/api/resources/send/types/EmailFooter.js +0 -5
- package/api/resources/send/types/EmailHead.d.ts +0 -7
- package/api/resources/send/types/EmailHead.js +0 -5
- package/api/resources/send/types/EmailHeader.d.ts +0 -9
- package/api/resources/send/types/EmailHeader.js +0 -5
- package/api/resources/send/types/ExpiresInType.d.ts +0 -4
- package/api/resources/send/types/ExpiresInType.js +0 -5
- package/api/resources/send/types/Expiry.d.ts +0 -10
- package/api/resources/send/types/Expiry.js +0 -5
- package/api/resources/send/types/IActionButtonStyle.d.ts +0 -8
- package/api/resources/send/types/IActionButtonStyle.js +0 -10
- package/api/resources/send/types/IAlignment.d.ts +0 -10
- package/api/resources/send/types/IAlignment.js +0 -12
- package/api/resources/send/types/IPreferences.d.ts +0 -5
- package/api/resources/send/types/IPreferences.js +0 -5
- package/api/resources/send/types/IProfilePreferences.d.ts +0 -9
- package/api/resources/send/types/IProfilePreferences.js +0 -5
- package/api/resources/send/types/Icons.d.ts +0 -7
- package/api/resources/send/types/Icons.js +0 -5
- package/api/resources/send/types/InAppPlacement.d.ts +0 -10
- package/api/resources/send/types/InAppPlacement.js +0 -12
- package/api/resources/send/types/InvalidListPatternRecipient.d.ts +0 -7
- package/api/resources/send/types/InvalidListPatternRecipient.js +0 -5
- package/api/resources/send/types/InvalidListRecipient.d.ts +0 -7
- package/api/resources/send/types/InvalidListRecipient.js +0 -5
- package/api/resources/send/types/InvalidUserRecipient.d.ts +0 -7
- package/api/resources/send/types/InvalidUserRecipient.js +0 -5
- package/api/resources/send/types/ListFilter.d.ts +0 -9
- package/api/resources/send/types/ListFilter.js +0 -5
- package/api/resources/send/types/ListPatternRecipient.d.ts +0 -8
- package/api/resources/send/types/ListPatternRecipient.js +0 -5
- package/api/resources/send/types/ListPatternRecipientType.d.ts +0 -5
- package/api/resources/send/types/ListPatternRecipientType.js +0 -5
- package/api/resources/send/types/ListRecipient.d.ts +0 -9
- package/api/resources/send/types/ListRecipient.js +0 -5
- package/api/resources/send/types/ListRecipientType.d.ts +0 -5
- package/api/resources/send/types/ListRecipientType.js +0 -5
- package/api/resources/send/types/Locale.d.ts +0 -6
- package/api/resources/send/types/Locale.js +0 -5
- package/api/resources/send/types/Locales.d.ts +0 -5
- package/api/resources/send/types/Locales.js +0 -5
- package/api/resources/send/types/Logo.d.ts +0 -7
- package/api/resources/send/types/Logo.js +0 -5
- package/api/resources/send/types/Message.d.ts +0 -11
- package/api/resources/send/types/Message.js +0 -5
- package/api/resources/send/types/MessageChannels.d.ts +0 -5
- package/api/resources/send/types/MessageChannels.js +0 -5
- package/api/resources/send/types/MessageContext.d.ts +0 -10
- package/api/resources/send/types/MessageContext.js +0 -5
- package/api/resources/send/types/MessageData.d.ts +0 -4
- package/api/resources/send/types/MessageData.js +0 -5
- package/api/resources/send/types/MessageMetadata.d.ts +0 -14
- package/api/resources/send/types/MessageMetadata.js +0 -5
- package/api/resources/send/types/MessagePreferences.d.ts +0 -7
- package/api/resources/send/types/MessagePreferences.js +0 -5
- package/api/resources/send/types/MessageProviders.d.ts +0 -5
- package/api/resources/send/types/MessageProviders.js +0 -5
- package/api/resources/send/types/MessageProvidersType.d.ts +0 -17
- package/api/resources/send/types/MessageProvidersType.js +0 -5
- package/api/resources/send/types/MessageRecipient.d.ts +0 -5
- package/api/resources/send/types/MessageRecipient.js +0 -5
- package/api/resources/send/types/Metadata.d.ts +0 -7
- package/api/resources/send/types/Metadata.js +0 -5
- package/api/resources/send/types/MsTeamsRecipient.d.ts +0 -7
- package/api/resources/send/types/MsTeamsRecipient.js +0 -5
- package/api/resources/send/types/PagerdutyRecipient.d.ts +0 -7
- package/api/resources/send/types/PagerdutyRecipient.js +0 -5
- package/api/resources/send/types/Preference.d.ts +0 -10
- package/api/resources/send/types/Preference.js +0 -5
- package/api/resources/send/types/Preferences.d.ts +0 -6
- package/api/resources/send/types/Preferences.js +0 -5
- package/api/resources/send/types/Recipient.d.ts +0 -5
- package/api/resources/send/types/Recipient.js +0 -5
- package/api/resources/send/types/RecipientData.d.ts +0 -4
- package/api/resources/send/types/RecipientData.js +0 -5
- package/api/resources/send/types/Routing.d.ts +0 -18
- package/api/resources/send/types/Routing.js +0 -5
- package/api/resources/send/types/RoutingMethod.d.ts +0 -8
- package/api/resources/send/types/RoutingMethod.js +0 -10
- package/api/resources/send/types/RuleType.d.ts +0 -9
- package/api/resources/send/types/RuleType.js +0 -11
- package/api/resources/send/types/SlackRecipient.d.ts +0 -7
- package/api/resources/send/types/SlackRecipient.js +0 -5
- package/api/resources/send/types/TemplateMessage.d.ts +0 -11
- package/api/resources/send/types/TemplateMessage.js +0 -5
- package/api/resources/send/types/TextAlign.d.ts +0 -9
- package/api/resources/send/types/TextAlign.js +0 -11
- package/api/resources/send/types/TextStyle.d.ts +0 -10
- package/api/resources/send/types/TextStyle.js +0 -12
- package/api/resources/send/types/Timeout.d.ts +0 -11
- package/api/resources/send/types/Timeout.js +0 -5
- package/api/resources/send/types/Timeouts.d.ts +0 -7
- package/api/resources/send/types/Timeouts.js +0 -5
- package/api/resources/send/types/TrackingOverride.d.ts +0 -6
- package/api/resources/send/types/TrackingOverride.js +0 -5
- package/api/resources/send/types/UserRecipient.d.ts +0 -22
- package/api/resources/send/types/UserRecipient.js +0 -5
- package/api/resources/send/types/UserRecipientType.d.ts +0 -5
- package/api/resources/send/types/UserRecipientType.js +0 -5
- package/api/resources/send/types/Utm.d.ts +0 -10
- package/api/resources/send/types/Utm.js +0 -5
- package/api/resources/send/types/WebhookRecipient.d.ts +0 -7
- package/api/resources/send/types/WebhookRecipient.js +0 -5
- package/api/resources/send/types/WidgetBackground.d.ts +0 -7
- package/api/resources/send/types/WidgetBackground.js +0 -5
- package/api/resources/send/types/index.d.ts +0 -83
- package/api/resources/send/types/index.js +0 -99
- package/api/resources/templates/client/Client.d.ts +0 -41
- package/api/resources/templates/client/Client.js +0 -131
- package/api/resources/templates/client/index.d.ts +0 -1
- package/api/resources/templates/client/index.js +0 -17
- package/api/resources/templates/client/requests/ListTemplatesRequest.d.ts +0 -13
- package/api/resources/templates/client/requests/ListTemplatesRequest.js +0 -5
- package/api/resources/templates/client/requests/index.d.ts +0 -1
- package/api/resources/templates/client/requests/index.js +0 -2
- package/api/resources/templates/index.d.ts +0 -2
- package/api/resources/templates/index.js +0 -18
- package/api/resources/templates/types/ChannelIdentifier.d.ts +0 -4
- package/api/resources/templates/types/ChannelIdentifier.js +0 -5
- package/api/resources/templates/types/ListTemplatesResponse.d.ts +0 -9
- package/api/resources/templates/types/ListTemplatesResponse.js +0 -5
- package/api/resources/templates/types/NotificationTemplates.d.ts +0 -18
- package/api/resources/templates/types/NotificationTemplates.js +0 -5
- package/api/resources/templates/types/RoutingStrategy.d.ts +0 -10
- package/api/resources/templates/types/RoutingStrategy.js +0 -5
- package/api/resources/templates/types/RoutingStrategyMethod.d.ts +0 -8
- package/api/resources/templates/types/RoutingStrategyMethod.js +0 -10
- package/api/resources/templates/types/Tag.d.ts +0 -7
- package/api/resources/templates/types/Tag.js +0 -5
- package/api/resources/templates/types/TagData.d.ts +0 -9
- package/api/resources/templates/types/TagData.js +0 -5
- package/api/resources/templates/types/index.d.ts +0 -7
- package/api/resources/templates/types/index.js +0 -23
- package/api/resources/tenants/client/Client.d.ts +0 -139
- package/api/resources/tenants/client/Client.js +0 -612
- package/api/resources/tenants/client/index.d.ts +0 -1
- package/api/resources/tenants/client/index.js +0 -17
- package/api/resources/tenants/client/requests/GetTemplateListByTenantParams.d.ts +0 -17
- package/api/resources/tenants/client/requests/GetTemplateListByTenantParams.js +0 -5
- package/api/resources/tenants/client/requests/ListTenantParams.d.ts +0 -22
- package/api/resources/tenants/client/requests/ListTenantParams.js +0 -5
- package/api/resources/tenants/client/requests/ListUsersForTenantParams.d.ts +0 -18
- package/api/resources/tenants/client/requests/ListUsersForTenantParams.js +0 -5
- package/api/resources/tenants/client/requests/TenantCreateOrReplaceParams.d.ts +0 -29
- package/api/resources/tenants/client/requests/TenantCreateOrReplaceParams.js +0 -5
- package/api/resources/tenants/client/requests/index.d.ts +0 -4
- package/api/resources/tenants/client/requests/index.js +0 -2
- package/api/resources/tenants/index.d.ts +0 -2
- package/api/resources/tenants/index.js +0 -18
- package/api/resources/tenants/types/DefaultPreferences.d.ts +0 -7
- package/api/resources/tenants/types/DefaultPreferences.js +0 -5
- package/api/resources/tenants/types/GetTemplateByTenantResponse.d.ts +0 -6
- package/api/resources/tenants/types/GetTemplateByTenantResponse.js +0 -5
- package/api/resources/tenants/types/ListTemplatesByTenantResponse.d.ts +0 -23
- package/api/resources/tenants/types/ListTemplatesByTenantResponse.js +0 -5
- package/api/resources/tenants/types/ListUsersForTenantResponse.d.ts +0 -23
- package/api/resources/tenants/types/ListUsersForTenantResponse.js +0 -5
- package/api/resources/tenants/types/SubscriptionTopic.d.ts +0 -8
- package/api/resources/tenants/types/SubscriptionTopic.js +0 -5
- package/api/resources/tenants/types/SubscriptionTopicNew.d.ts +0 -11
- package/api/resources/tenants/types/SubscriptionTopicNew.js +0 -5
- package/api/resources/tenants/types/SubscriptionTopicStatus.d.ts +0 -9
- package/api/resources/tenants/types/SubscriptionTopicStatus.js +0 -11
- package/api/resources/tenants/types/TemplateProperty.d.ts +0 -7
- package/api/resources/tenants/types/TemplateProperty.js +0 -5
- package/api/resources/tenants/types/Tenant.d.ts +0 -20
- package/api/resources/tenants/types/Tenant.js +0 -5
- package/api/resources/tenants/types/TenantListResponse.d.ts +0 -21
- package/api/resources/tenants/types/TenantListResponse.js +0 -5
- package/api/resources/tenants/types/index.d.ts +0 -10
- package/api/resources/tenants/types/index.js +0 -26
- package/api/resources/translations/client/Client.d.ts +0 -58
- package/api/resources/translations/client/Client.js +0 -196
- package/api/resources/translations/client/index.d.ts +0 -1
- package/api/resources/translations/client/index.js +0 -2
- package/api/resources/translations/index.d.ts +0 -1
- package/api/resources/translations/index.js +0 -17
- package/api/resources/users/client/Client.d.ts +0 -27
- package/api/resources/users/client/Client.js +0 -27
- package/api/resources/users/client/index.d.ts +0 -1
- package/api/resources/users/client/index.js +0 -2
- package/api/resources/users/index.d.ts +0 -2
- package/api/resources/users/index.js +0 -18
- package/api/resources/users/resources/index.d.ts +0 -8
- package/api/resources/users/resources/index.js +0 -47
- package/api/resources/users/resources/preferences/client/Client.d.ts +0 -80
- package/api/resources/users/resources/preferences/client/Client.js +0 -301
- package/api/resources/users/resources/preferences/client/index.d.ts +0 -1
- package/api/resources/users/resources/preferences/client/index.js +0 -17
- package/api/resources/users/resources/preferences/client/requests/UserPreferencesParams.d.ts +0 -13
- package/api/resources/users/resources/preferences/client/requests/UserPreferencesParams.js +0 -5
- package/api/resources/users/resources/preferences/client/requests/UserPreferencesTopicParams.d.ts +0 -13
- package/api/resources/users/resources/preferences/client/requests/UserPreferencesTopicParams.js +0 -5
- package/api/resources/users/resources/preferences/client/requests/UserPreferencesUpdateParams.d.ts +0 -21
- package/api/resources/users/resources/preferences/client/requests/UserPreferencesUpdateParams.js +0 -5
- package/api/resources/users/resources/preferences/client/requests/index.d.ts +0 -3
- package/api/resources/users/resources/preferences/client/requests/index.js +0 -2
- package/api/resources/users/resources/preferences/index.d.ts +0 -2
- package/api/resources/users/resources/preferences/index.js +0 -18
- package/api/resources/users/resources/preferences/types/TopicPreference.d.ts +0 -13
- package/api/resources/users/resources/preferences/types/TopicPreference.js +0 -5
- package/api/resources/users/resources/preferences/types/TopicPreferenceUpdate.d.ts +0 -10
- package/api/resources/users/resources/preferences/types/TopicPreferenceUpdate.js +0 -5
- package/api/resources/users/resources/preferences/types/UserPreferencesGetResponse.d.ts +0 -7
- package/api/resources/users/resources/preferences/types/UserPreferencesGetResponse.js +0 -5
- package/api/resources/users/resources/preferences/types/UserPreferencesListResponse.d.ts +0 -10
- package/api/resources/users/resources/preferences/types/UserPreferencesListResponse.js +0 -5
- package/api/resources/users/resources/preferences/types/UserPreferencesUpdateResponse.d.ts +0 -6
- package/api/resources/users/resources/preferences/types/UserPreferencesUpdateResponse.js +0 -5
- package/api/resources/users/resources/preferences/types/index.d.ts +0 -5
- package/api/resources/users/resources/preferences/types/index.js +0 -21
- package/api/resources/users/resources/tenants/client/Client.d.ts +0 -112
- package/api/resources/users/resources/tenants/client/Client.js +0 -374
- package/api/resources/users/resources/tenants/client/index.d.ts +0 -1
- package/api/resources/users/resources/tenants/client/index.js +0 -17
- package/api/resources/users/resources/tenants/client/requests/AddUserToMultipleTenantsParams.d.ts +0 -23
- package/api/resources/users/resources/tenants/client/requests/AddUserToMultipleTenantsParams.js +0 -5
- package/api/resources/users/resources/tenants/client/requests/AddUserToSingleTenantsParams.d.ts +0 -12
- package/api/resources/users/resources/tenants/client/requests/AddUserToSingleTenantsParams.js +0 -5
- package/api/resources/users/resources/tenants/client/requests/ListTenantsForUserParams.d.ts +0 -18
- package/api/resources/users/resources/tenants/client/requests/ListTenantsForUserParams.js +0 -5
- package/api/resources/users/resources/tenants/client/requests/index.d.ts +0 -3
- package/api/resources/users/resources/tenants/client/requests/index.js +0 -2
- package/api/resources/users/resources/tenants/index.d.ts +0 -2
- package/api/resources/users/resources/tenants/index.js +0 -18
- package/api/resources/users/resources/tenants/types/AddUserToSingleTenantsParamsProfile.d.ts +0 -17
- package/api/resources/users/resources/tenants/types/AddUserToSingleTenantsParamsProfile.js +0 -5
- package/api/resources/users/resources/tenants/types/ListTenantsForUserResponse.d.ts +0 -23
- package/api/resources/users/resources/tenants/types/ListTenantsForUserResponse.js +0 -5
- package/api/resources/users/resources/tenants/types/index.d.ts +0 -2
- package/api/resources/users/resources/tenants/types/index.js +0 -18
- package/api/resources/users/resources/tokens/client/Client.d.ts +0 -127
- package/api/resources/users/resources/tokens/client/Client.js +0 -444
- package/api/resources/users/resources/tokens/client/index.d.ts +0 -1
- package/api/resources/users/resources/tokens/client/index.js +0 -2
- package/api/resources/users/resources/tokens/index.d.ts +0 -2
- package/api/resources/users/resources/tokens/index.js +0 -18
- package/api/resources/users/resources/tokens/types/DeleteUserTokenOpts.d.ts +0 -7
- package/api/resources/users/resources/tokens/types/DeleteUserTokenOpts.js +0 -5
- package/api/resources/users/resources/tokens/types/Device.d.ts +0 -17
- package/api/resources/users/resources/tokens/types/Device.js +0 -5
- package/api/resources/users/resources/tokens/types/ExpiryDate.d.ts +0 -4
- package/api/resources/users/resources/tokens/types/ExpiryDate.js +0 -5
- package/api/resources/users/resources/tokens/types/GetAllTokensResponse.d.ts +0 -8
- package/api/resources/users/resources/tokens/types/GetAllTokensResponse.js +0 -5
- package/api/resources/users/resources/tokens/types/GetUserTokenOpts.d.ts +0 -7
- package/api/resources/users/resources/tokens/types/GetUserTokenOpts.js +0 -5
- package/api/resources/users/resources/tokens/types/GetUserTokenResponse.d.ts +0 -9
- package/api/resources/users/resources/tokens/types/GetUserTokenResponse.js +0 -5
- package/api/resources/users/resources/tokens/types/GetUserTokensOpts.d.ts +0 -6
- package/api/resources/users/resources/tokens/types/GetUserTokensOpts.js +0 -5
- package/api/resources/users/resources/tokens/types/PatchOp.d.ts +0 -12
- package/api/resources/users/resources/tokens/types/PatchOp.js +0 -14
- package/api/resources/users/resources/tokens/types/PatchOperation.d.ts +0 -11
- package/api/resources/users/resources/tokens/types/PatchOperation.js +0 -5
- package/api/resources/users/resources/tokens/types/PatchUserTokenOpts.d.ts +0 -7
- package/api/resources/users/resources/tokens/types/PatchUserTokenOpts.js +0 -5
- package/api/resources/users/resources/tokens/types/ProviderKey.d.ts +0 -10
- package/api/resources/users/resources/tokens/types/ProviderKey.js +0 -12
- package/api/resources/users/resources/tokens/types/PutUserTokenOpts.d.ts +0 -8
- package/api/resources/users/resources/tokens/types/PutUserTokenOpts.js +0 -5
- package/api/resources/users/resources/tokens/types/PutUserTokensOpts.d.ts +0 -8
- package/api/resources/users/resources/tokens/types/PutUserTokensOpts.js +0 -5
- package/api/resources/users/resources/tokens/types/TokenStatus.d.ts +0 -10
- package/api/resources/users/resources/tokens/types/TokenStatus.js +0 -12
- package/api/resources/users/resources/tokens/types/Tracking.d.ts +0 -13
- package/api/resources/users/resources/tokens/types/Tracking.js +0 -5
- package/api/resources/users/resources/tokens/types/UserToken.d.ts +0 -17
- package/api/resources/users/resources/tokens/types/UserToken.js +0 -5
- package/api/resources/users/resources/tokens/types/index.d.ts +0 -16
- package/api/resources/users/resources/tokens/types/index.js +0 -32
- package/api/types/SendMessageResponse.d.ts +0 -13
- package/api/types/SendMessageResponse.js +0 -5
- package/api/types/index.d.ts +0 -1
- package/api/types/index.js +0 -17
- package/core/auth/BasicAuth.d.ts +0 -8
- package/core/auth/BasicAuth.js +0 -26
- package/core/auth/BearerToken.d.ts +0 -5
- package/core/auth/BearerToken.js +0 -15
- package/core/auth/index.d.ts +0 -2
- package/core/auth/index.js +0 -7
- package/core/fetcher/APIResponse.d.ts +0 -20
- package/core/fetcher/APIResponse.js +0 -2
- package/core/fetcher/Fetcher.d.ts +0 -39
- package/core/fetcher/Fetcher.js +0 -107
- package/core/fetcher/Headers.d.ts +0 -2
- package/core/fetcher/Headers.js +0 -84
- package/core/fetcher/HttpResponsePromise.d.ts +0 -58
- package/core/fetcher/HttpResponsePromise.js +0 -103
- package/core/fetcher/RawResponse.d.ts +0 -29
- package/core/fetcher/RawResponse.js +0 -44
- package/core/fetcher/Supplier.d.ts +0 -4
- package/core/fetcher/Supplier.js +0 -22
- package/core/fetcher/createRequestUrl.d.ts +0 -1
- package/core/fetcher/createRequestUrl.js +0 -12
- package/core/fetcher/getFetchFn.d.ts +0 -4
- package/core/fetcher/getFetchFn.js +0 -68
- package/core/fetcher/getHeader.d.ts +0 -1
- package/core/fetcher/getHeader.js +0 -11
- package/core/fetcher/getRequestBody.d.ts +0 -7
- package/core/fetcher/getRequestBody.js +0 -23
- package/core/fetcher/getResponseBody.d.ts +0 -1
- package/core/fetcher/getResponseBody.js +0 -54
- package/core/fetcher/index.d.ts +0 -8
- package/core/fetcher/index.js +0 -15
- package/core/fetcher/makeRequest.d.ts +0 -1
- package/core/fetcher/makeRequest.js +0 -42
- package/core/fetcher/requestWithRetries.d.ts +0 -1
- package/core/fetcher/requestWithRetries.js +0 -40
- package/core/fetcher/signals.d.ts +0 -11
- package/core/fetcher/signals.js +0 -36
- package/core/fetcher/stream-wrappers/Node18UniversalStreamWrapper.d.ts +0 -30
- package/core/fetcher/stream-wrappers/Node18UniversalStreamWrapper.js +0 -247
- package/core/fetcher/stream-wrappers/NodePre18StreamWrapper.d.ts +0 -21
- package/core/fetcher/stream-wrappers/NodePre18StreamWrapper.js +0 -126
- package/core/fetcher/stream-wrappers/UndiciStreamWrapper.d.ts +0 -31
- package/core/fetcher/stream-wrappers/UndiciStreamWrapper.js +0 -229
- package/core/fetcher/stream-wrappers/chooseStreamWrapper.d.ts +0 -18
- package/core/fetcher/stream-wrappers/chooseStreamWrapper.js +0 -59
- package/core/index.d.ts +0 -3
- package/core/index.js +0 -19
- package/core/json.d.ts +0 -15
- package/core/json.js +0 -24
- package/core/runtime/index.d.ts +0 -1
- package/core/runtime/index.js +0 -5
- package/core/runtime/runtime.d.ts +0 -9
- package/core/runtime/runtime.js +0 -103
- package/dist/Client.d.ts +0 -107
- package/dist/Client.js +0 -218
- package/dist/api/client/index.d.ts +0 -1
- package/dist/api/client/index.js +0 -17
- package/dist/api/client/requests/SendMessageRequest.d.ts +0 -29
- package/dist/api/client/requests/SendMessageRequest.js +0 -5
- package/dist/api/client/requests/index.d.ts +0 -1
- package/dist/api/client/requests/index.js +0 -2
- package/dist/api/index.d.ts +0 -3
- package/dist/api/index.js +0 -19
- package/dist/api/resources/audiences/client/Client.d.ts +0 -95
- package/dist/api/resources/audiences/client/Client.js +0 -367
- package/dist/api/resources/audiences/client/index.d.ts +0 -1
- package/dist/api/resources/audiences/client/index.js +0 -17
- package/dist/api/resources/audiences/client/requests/AudienceMembersListParams.d.ts +0 -13
- package/dist/api/resources/audiences/client/requests/AudienceMembersListParams.js +0 -5
- package/dist/api/resources/audiences/client/requests/AudienceUpdateParams.d.ts +0 -19
- package/dist/api/resources/audiences/client/requests/AudienceUpdateParams.js +0 -5
- package/dist/api/resources/audiences/client/requests/AudiencesListParams.d.ts +0 -13
- package/dist/api/resources/audiences/client/requests/AudiencesListParams.js +0 -5
- package/dist/api/resources/audiences/client/requests/index.d.ts +0 -3
- package/dist/api/resources/audiences/client/requests/index.js +0 -2
- package/dist/api/resources/audiences/index.d.ts +0 -2
- package/dist/api/resources/audiences/index.js +0 -18
- package/dist/api/resources/audiences/types/Audience.d.ts +0 -15
- package/dist/api/resources/audiences/types/Audience.js +0 -5
- package/dist/api/resources/audiences/types/AudienceListResponse.d.ts +0 -8
- package/dist/api/resources/audiences/types/AudienceListResponse.js +0 -5
- package/dist/api/resources/audiences/types/AudienceMember.d.ts +0 -10
- package/dist/api/resources/audiences/types/AudienceMember.js +0 -5
- package/dist/api/resources/audiences/types/AudienceMemberGetResponse.d.ts +0 -7
- package/dist/api/resources/audiences/types/AudienceMemberGetResponse.js +0 -5
- package/dist/api/resources/audiences/types/AudienceMemberListResponse.d.ts +0 -8
- package/dist/api/resources/audiences/types/AudienceMemberListResponse.js +0 -5
- package/dist/api/resources/audiences/types/AudienceUpdateResponse.d.ts +0 -7
- package/dist/api/resources/audiences/types/AudienceUpdateResponse.js +0 -5
- package/dist/api/resources/audiences/types/BaseFilterConfig.d.ts +0 -8
- package/dist/api/resources/audiences/types/BaseFilterConfig.js +0 -5
- package/dist/api/resources/audiences/types/ComparisonOperator.d.ts +0 -19
- package/dist/api/resources/audiences/types/ComparisonOperator.js +0 -21
- package/dist/api/resources/audiences/types/Filter.d.ts +0 -5
- package/dist/api/resources/audiences/types/Filter.js +0 -5
- package/dist/api/resources/audiences/types/FilterConfig.d.ts +0 -5
- package/dist/api/resources/audiences/types/FilterConfig.js +0 -5
- package/dist/api/resources/audiences/types/LogicalOperator.d.ts +0 -8
- package/dist/api/resources/audiences/types/LogicalOperator.js +0 -10
- package/dist/api/resources/audiences/types/NestedFilterConfig.d.ts +0 -10
- package/dist/api/resources/audiences/types/NestedFilterConfig.js +0 -5
- package/dist/api/resources/audiences/types/Operator.d.ts +0 -5
- package/dist/api/resources/audiences/types/Operator.js +0 -5
- package/dist/api/resources/audiences/types/SingleFilterConfig.d.ts +0 -13
- package/dist/api/resources/audiences/types/SingleFilterConfig.js +0 -5
- package/dist/api/resources/audiences/types/index.d.ts +0 -14
- package/dist/api/resources/audiences/types/index.js +0 -30
- package/dist/api/resources/auditEvents/client/Client.d.ts +0 -52
- package/dist/api/resources/auditEvents/client/Client.js +0 -183
- package/dist/api/resources/auditEvents/client/index.d.ts +0 -1
- package/dist/api/resources/auditEvents/client/index.js +0 -17
- package/dist/api/resources/auditEvents/client/requests/ListAuditEventsRequest.d.ts +0 -13
- package/dist/api/resources/auditEvents/client/requests/ListAuditEventsRequest.js +0 -5
- package/dist/api/resources/auditEvents/client/requests/index.d.ts +0 -1
- package/dist/api/resources/auditEvents/client/requests/index.js +0 -2
- package/dist/api/resources/auditEvents/index.d.ts +0 -2
- package/dist/api/resources/auditEvents/index.js +0 -18
- package/dist/api/resources/auditEvents/types/Actor.d.ts +0 -7
- package/dist/api/resources/auditEvents/types/Actor.js +0 -5
- package/dist/api/resources/auditEvents/types/AuditEvent.d.ts +0 -12
- package/dist/api/resources/auditEvents/types/AuditEvent.js +0 -5
- package/dist/api/resources/auditEvents/types/GetAuditEventParams.d.ts +0 -6
- package/dist/api/resources/auditEvents/types/GetAuditEventParams.js +0 -5
- package/dist/api/resources/auditEvents/types/ListAuditEventsParams.d.ts +0 -6
- package/dist/api/resources/auditEvents/types/ListAuditEventsParams.js +0 -5
- package/dist/api/resources/auditEvents/types/ListAuditEventsResponse.d.ts +0 -8
- package/dist/api/resources/auditEvents/types/ListAuditEventsResponse.js +0 -5
- package/dist/api/resources/auditEvents/types/Target.d.ts +0 -7
- package/dist/api/resources/auditEvents/types/Target.js +0 -5
- package/dist/api/resources/auditEvents/types/index.d.ts +0 -6
- package/dist/api/resources/auditEvents/types/index.js +0 -22
- package/dist/api/resources/authTokens/client/Client.d.ts +0 -48
- package/dist/api/resources/authTokens/client/Client.js +0 -129
- package/dist/api/resources/authTokens/client/index.d.ts +0 -1
- package/dist/api/resources/authTokens/client/index.js +0 -17
- package/dist/api/resources/authTokens/client/requests/IssueTokenParams.d.ts +0 -14
- package/dist/api/resources/authTokens/client/requests/IssueTokenParams.js +0 -5
- package/dist/api/resources/authTokens/client/requests/index.d.ts +0 -1
- package/dist/api/resources/authTokens/client/requests/index.js +0 -2
- package/dist/api/resources/authTokens/index.d.ts +0 -2
- package/dist/api/resources/authTokens/index.js +0 -18
- package/dist/api/resources/authTokens/types/IssueTokenResponse.d.ts +0 -6
- package/dist/api/resources/authTokens/types/IssueTokenResponse.js +0 -5
- package/dist/api/resources/authTokens/types/index.d.ts +0 -1
- package/dist/api/resources/authTokens/types/index.js +0 -17
- package/dist/api/resources/automations/client/Client.d.ts +0 -81
- package/dist/api/resources/automations/client/Client.js +0 -204
- package/dist/api/resources/automations/client/index.d.ts +0 -1
- package/dist/api/resources/automations/client/index.js +0 -2
- package/dist/api/resources/automations/index.d.ts +0 -2
- package/dist/api/resources/automations/index.js +0 -18
- package/dist/api/resources/automations/types/AccessorType.d.ts +0 -6
- package/dist/api/resources/automations/types/AccessorType.js +0 -5
- package/dist/api/resources/automations/types/Automation.d.ts +0 -8
- package/dist/api/resources/automations/types/Automation.js +0 -5
- package/dist/api/resources/automations/types/AutomationAdHocInvokeParams.d.ts +0 -7
- package/dist/api/resources/automations/types/AutomationAdHocInvokeParams.js +0 -5
- package/dist/api/resources/automations/types/AutomationAddToBatchMaxItemsType.d.ts +0 -4
- package/dist/api/resources/automations/types/AutomationAddToBatchMaxItemsType.js +0 -5
- package/dist/api/resources/automations/types/AutomationAddToBatchRetain.d.ts +0 -34
- package/dist/api/resources/automations/types/AutomationAddToBatchRetain.js +0 -5
- package/dist/api/resources/automations/types/AutomationAddToBatchRetainType.d.ts +0 -10
- package/dist/api/resources/automations/types/AutomationAddToBatchRetainType.js +0 -12
- package/dist/api/resources/automations/types/AutomationAddToBatchScope.d.ts +0 -9
- package/dist/api/resources/automations/types/AutomationAddToBatchScope.js +0 -11
- package/dist/api/resources/automations/types/AutomationAddToBatchStep.d.ts +0 -39
- package/dist/api/resources/automations/types/AutomationAddToBatchStep.js +0 -5
- package/dist/api/resources/automations/types/AutomationAddToDigestStep.d.ts +0 -16
- package/dist/api/resources/automations/types/AutomationAddToDigestStep.js +0 -5
- package/dist/api/resources/automations/types/AutomationCancelStep.d.ts +0 -8
- package/dist/api/resources/automations/types/AutomationCancelStep.js +0 -5
- package/dist/api/resources/automations/types/AutomationDelayStep.d.ts +0 -11
- package/dist/api/resources/automations/types/AutomationDelayStep.js +0 -5
- package/dist/api/resources/automations/types/AutomationFetchDataStep.d.ts +0 -31
- package/dist/api/resources/automations/types/AutomationFetchDataStep.js +0 -5
- package/dist/api/resources/automations/types/AutomationFetchDataWebhook.d.ts +0 -11
- package/dist/api/resources/automations/types/AutomationFetchDataWebhook.js +0 -5
- package/dist/api/resources/automations/types/AutomationFetchDataWebhookMethod.d.ts +0 -8
- package/dist/api/resources/automations/types/AutomationFetchDataWebhookMethod.js +0 -10
- package/dist/api/resources/automations/types/AutomationInvokeParams.d.ts +0 -11
- package/dist/api/resources/automations/types/AutomationInvokeParams.js +0 -5
- package/dist/api/resources/automations/types/AutomationInvokeResponse.d.ts +0 -6
- package/dist/api/resources/automations/types/AutomationInvokeResponse.js +0 -5
- package/dist/api/resources/automations/types/AutomationInvokeStep.d.ts +0 -8
- package/dist/api/resources/automations/types/AutomationInvokeStep.js +0 -5
- package/dist/api/resources/automations/types/AutomationInvokeTemplateParams.d.ts +0 -7
- package/dist/api/resources/automations/types/AutomationInvokeTemplateParams.js +0 -5
- package/dist/api/resources/automations/types/AutomationRunContext.d.ts +0 -11
- package/dist/api/resources/automations/types/AutomationRunContext.js +0 -5
- package/dist/api/resources/automations/types/AutomationSendListStep.d.ts +0 -12
- package/dist/api/resources/automations/types/AutomationSendListStep.js +0 -5
- package/dist/api/resources/automations/types/AutomationSendStep.d.ts +0 -13
- package/dist/api/resources/automations/types/AutomationSendStep.js +0 -5
- package/dist/api/resources/automations/types/AutomationStep.d.ts +0 -7
- package/dist/api/resources/automations/types/AutomationStep.js +0 -5
- package/dist/api/resources/automations/types/AutomationStepOption.d.ts +0 -5
- package/dist/api/resources/automations/types/AutomationStepOption.js +0 -5
- package/dist/api/resources/automations/types/AutomationThrottleOnThrottle.d.ts +0 -7
- package/dist/api/resources/automations/types/AutomationThrottleOnThrottle.js +0 -5
- package/dist/api/resources/automations/types/AutomationThrottleScope.d.ts +0 -9
- package/dist/api/resources/automations/types/AutomationThrottleScope.js +0 -11
- package/dist/api/resources/automations/types/AutomationThrottleStep.d.ts +0 -31
- package/dist/api/resources/automations/types/AutomationThrottleStep.js +0 -5
- package/dist/api/resources/automations/types/AutomationUpdateProfileStep.d.ts +0 -10
- package/dist/api/resources/automations/types/AutomationUpdateProfileStep.js +0 -5
- package/dist/api/resources/automations/types/AutomationV2SendStep.d.ts +0 -8
- package/dist/api/resources/automations/types/AutomationV2SendStep.js +0 -5
- package/dist/api/resources/automations/types/MergeAlgorithm.d.ts +0 -10
- package/dist/api/resources/automations/types/MergeAlgorithm.js +0 -12
- package/dist/api/resources/automations/types/Profile.d.ts +0 -4
- package/dist/api/resources/automations/types/Profile.js +0 -5
- package/dist/api/resources/automations/types/index.d.ts +0 -30
- package/dist/api/resources/automations/types/index.js +0 -46
- package/dist/api/resources/brands/client/Client.d.ts +0 -107
- package/dist/api/resources/brands/client/Client.js +0 -374
- package/dist/api/resources/brands/client/index.d.ts +0 -1
- package/dist/api/resources/brands/client/index.js +0 -17
- package/dist/api/resources/brands/client/requests/BrandUpdateParameters.d.ts +0 -18
- package/dist/api/resources/brands/client/requests/BrandUpdateParameters.js +0 -5
- package/dist/api/resources/brands/client/requests/ListBrandsRequest.d.ts +0 -13
- package/dist/api/resources/brands/client/requests/ListBrandsRequest.js +0 -5
- package/dist/api/resources/brands/client/requests/index.d.ts +0 -2
- package/dist/api/resources/brands/client/requests/index.js +0 -2
- package/dist/api/resources/brands/index.d.ts +0 -2
- package/dist/api/resources/brands/index.js +0 -18
- package/dist/api/resources/brands/types/Brand.d.ts +0 -20
- package/dist/api/resources/brands/types/Brand.js +0 -5
- package/dist/api/resources/brands/types/BrandColors.d.ts +0 -8
- package/dist/api/resources/brands/types/BrandColors.js +0 -5
- package/dist/api/resources/brands/types/BrandGetAllResponse.d.ts +0 -8
- package/dist/api/resources/brands/types/BrandGetAllResponse.js +0 -5
- package/dist/api/resources/brands/types/BrandParameters.d.ts +0 -11
- package/dist/api/resources/brands/types/BrandParameters.js +0 -5
- package/dist/api/resources/brands/types/BrandSettings.d.ts +0 -9
- package/dist/api/resources/brands/types/BrandSettings.js +0 -5
- package/dist/api/resources/brands/types/BrandSnippet.d.ts +0 -8
- package/dist/api/resources/brands/types/BrandSnippet.js +0 -5
- package/dist/api/resources/brands/types/BrandSnippets.d.ts +0 -7
- package/dist/api/resources/brands/types/BrandSnippets.js +0 -5
- package/dist/api/resources/brands/types/BrandsResponse.d.ts +0 -8
- package/dist/api/resources/brands/types/BrandsResponse.js +0 -5
- package/dist/api/resources/brands/types/index.d.ts +0 -8
- package/dist/api/resources/brands/types/index.js +0 -24
- package/dist/api/resources/bulk/client/Client.d.ts +0 -120
- package/dist/api/resources/bulk/client/Client.js +0 -393
- package/dist/api/resources/bulk/client/index.d.ts +0 -1
- package/dist/api/resources/bulk/client/index.js +0 -17
- package/dist/api/resources/bulk/client/requests/BulkCreateJobParams.d.ts +0 -20
- package/dist/api/resources/bulk/client/requests/BulkCreateJobParams.js +0 -5
- package/dist/api/resources/bulk/client/requests/BulkGetUsersParams.d.ts +0 -13
- package/dist/api/resources/bulk/client/requests/BulkGetUsersParams.js +0 -5
- package/dist/api/resources/bulk/client/requests/index.d.ts +0 -2
- package/dist/api/resources/bulk/client/requests/index.js +0 -2
- package/dist/api/resources/bulk/index.d.ts +0 -2
- package/dist/api/resources/bulk/index.js +0 -18
- package/dist/api/resources/bulk/types/BulkCreateJobResponse.d.ts +0 -6
- package/dist/api/resources/bulk/types/BulkCreateJobResponse.js +0 -5
- package/dist/api/resources/bulk/types/BulkGetJobParams.d.ts +0 -6
- package/dist/api/resources/bulk/types/BulkGetJobParams.js +0 -5
- package/dist/api/resources/bulk/types/BulkGetJobResponse.d.ts +0 -7
- package/dist/api/resources/bulk/types/BulkGetJobResponse.js +0 -5
- package/dist/api/resources/bulk/types/BulkGetJobUsersParams.d.ts +0 -7
- package/dist/api/resources/bulk/types/BulkGetJobUsersParams.js +0 -5
- package/dist/api/resources/bulk/types/BulkGetJobUsersResponse.d.ts +0 -8
- package/dist/api/resources/bulk/types/BulkGetJobUsersResponse.js +0 -5
- package/dist/api/resources/bulk/types/BulkIngestError.d.ts +0 -7
- package/dist/api/resources/bulk/types/BulkIngestError.js +0 -5
- package/dist/api/resources/bulk/types/BulkIngestUsersParams.d.ts +0 -7
- package/dist/api/resources/bulk/types/BulkIngestUsersParams.js +0 -5
- package/dist/api/resources/bulk/types/BulkIngestUsersResponse.d.ts +0 -8
- package/dist/api/resources/bulk/types/BulkIngestUsersResponse.js +0 -5
- package/dist/api/resources/bulk/types/BulkJobStatus.d.ts +0 -10
- package/dist/api/resources/bulk/types/BulkJobStatus.js +0 -12
- package/dist/api/resources/bulk/types/BulkJobUserStatus.d.ts +0 -9
- package/dist/api/resources/bulk/types/BulkJobUserStatus.js +0 -11
- package/dist/api/resources/bulk/types/BulkMessageUserResponse.d.ts +0 -8
- package/dist/api/resources/bulk/types/BulkMessageUserResponse.js +0 -5
- package/dist/api/resources/bulk/types/InboundBulkContentMessage.d.ts +0 -15
- package/dist/api/resources/bulk/types/InboundBulkContentMessage.js +0 -5
- package/dist/api/resources/bulk/types/InboundBulkMessage.d.ts +0 -7
- package/dist/api/resources/bulk/types/InboundBulkMessage.js +0 -5
- package/dist/api/resources/bulk/types/InboundBulkMessageUser.d.ts +0 -11
- package/dist/api/resources/bulk/types/InboundBulkMessageUser.js +0 -5
- package/dist/api/resources/bulk/types/InboundBulkMessageV1.d.ts +0 -23
- package/dist/api/resources/bulk/types/InboundBulkMessageV1.js +0 -5
- package/dist/api/resources/bulk/types/InboundBulkMessageV2.d.ts +0 -14
- package/dist/api/resources/bulk/types/InboundBulkMessageV2.js +0 -5
- package/dist/api/resources/bulk/types/InboundBulkTemplateMessage.d.ts +0 -11
- package/dist/api/resources/bulk/types/InboundBulkTemplateMessage.js +0 -5
- package/dist/api/resources/bulk/types/JobDetails.d.ts +0 -11
- package/dist/api/resources/bulk/types/JobDetails.js +0 -5
- package/dist/api/resources/bulk/types/index.d.ts +0 -18
- package/dist/api/resources/bulk/types/index.js +0 -34
- package/dist/api/resources/commons/errors/AlreadyExistsError.d.ts +0 -9
- package/dist/api/resources/commons/errors/AlreadyExistsError.js +0 -52
- package/dist/api/resources/commons/errors/BadRequestError.d.ts +0 -9
- package/dist/api/resources/commons/errors/BadRequestError.js +0 -52
- package/dist/api/resources/commons/errors/ConflictError.d.ts +0 -9
- package/dist/api/resources/commons/errors/ConflictError.js +0 -52
- package/dist/api/resources/commons/errors/MessageNotFoundError.d.ts +0 -9
- package/dist/api/resources/commons/errors/MessageNotFoundError.js +0 -52
- package/dist/api/resources/commons/errors/NotFoundError.d.ts +0 -9
- package/dist/api/resources/commons/errors/NotFoundError.js +0 -52
- package/dist/api/resources/commons/errors/PaymentRequiredError.d.ts +0 -9
- package/dist/api/resources/commons/errors/PaymentRequiredError.js +0 -52
- package/dist/api/resources/commons/errors/index.d.ts +0 -6
- package/dist/api/resources/commons/errors/index.js +0 -22
- package/dist/api/resources/commons/index.d.ts +0 -2
- package/dist/api/resources/commons/index.js +0 -18
- package/dist/api/resources/commons/types/AlreadyExists.d.ts +0 -7
- package/dist/api/resources/commons/types/AlreadyExists.js +0 -5
- package/dist/api/resources/commons/types/BadRequest.d.ts +0 -7
- package/dist/api/resources/commons/types/BadRequest.js +0 -5
- package/dist/api/resources/commons/types/BaseError.d.ts +0 -7
- package/dist/api/resources/commons/types/BaseError.js +0 -5
- package/dist/api/resources/commons/types/BaseTemplateTenantAssociation.d.ts +0 -15
- package/dist/api/resources/commons/types/BaseTemplateTenantAssociation.js +0 -5
- package/dist/api/resources/commons/types/ChannelClassification.d.ts +0 -12
- package/dist/api/resources/commons/types/ChannelClassification.js +0 -14
- package/dist/api/resources/commons/types/ChannelPreference.d.ts +0 -7
- package/dist/api/resources/commons/types/ChannelPreference.js +0 -5
- package/dist/api/resources/commons/types/Conflict.d.ts +0 -7
- package/dist/api/resources/commons/types/Conflict.js +0 -5
- package/dist/api/resources/commons/types/Email.d.ts +0 -7
- package/dist/api/resources/commons/types/Email.js +0 -5
- package/dist/api/resources/commons/types/ListTemplateTenantAssociation.d.ts +0 -7
- package/dist/api/resources/commons/types/ListTemplateTenantAssociation.js +0 -5
- package/dist/api/resources/commons/types/MessageNotFound.d.ts +0 -7
- package/dist/api/resources/commons/types/MessageNotFound.js +0 -5
- package/dist/api/resources/commons/types/NotFound.d.ts +0 -7
- package/dist/api/resources/commons/types/NotFound.js +0 -5
- package/dist/api/resources/commons/types/NotificationPreferenceDetails.d.ts +0 -9
- package/dist/api/resources/commons/types/NotificationPreferenceDetails.js +0 -5
- package/dist/api/resources/commons/types/NotificationPreferences.d.ts +0 -5
- package/dist/api/resources/commons/types/NotificationPreferences.js +0 -5
- package/dist/api/resources/commons/types/Paging.d.ts +0 -7
- package/dist/api/resources/commons/types/Paging.js +0 -5
- package/dist/api/resources/commons/types/PaymentRequired.d.ts +0 -7
- package/dist/api/resources/commons/types/PaymentRequired.js +0 -5
- package/dist/api/resources/commons/types/PreferenceStatus.d.ts +0 -9
- package/dist/api/resources/commons/types/PreferenceStatus.js +0 -11
- package/dist/api/resources/commons/types/RecipientPreferences.d.ts +0 -8
- package/dist/api/resources/commons/types/RecipientPreferences.js +0 -5
- package/dist/api/resources/commons/types/Rule.d.ts +0 -7
- package/dist/api/resources/commons/types/Rule.js +0 -5
- package/dist/api/resources/commons/types/SingleTemplateTenantAssociation.d.ts +0 -7
- package/dist/api/resources/commons/types/SingleTemplateTenantAssociation.js +0 -5
- package/dist/api/resources/commons/types/TenantTemplateData.d.ts +0 -11
- package/dist/api/resources/commons/types/TenantTemplateData.js +0 -5
- package/dist/api/resources/commons/types/TenantTemplateDataNoContent.d.ts +0 -10
- package/dist/api/resources/commons/types/TenantTemplateDataNoContent.js +0 -5
- package/dist/api/resources/commons/types/UserTenantAssociation.d.ts +0 -12
- package/dist/api/resources/commons/types/UserTenantAssociation.js +0 -5
- package/dist/api/resources/commons/types/index.d.ts +0 -22
- package/dist/api/resources/commons/types/index.js +0 -38
- package/dist/api/resources/inbound/client/Client.d.ts +0 -52
- package/dist/api/resources/inbound/client/Client.js +0 -145
- package/dist/api/resources/inbound/client/index.d.ts +0 -1
- package/dist/api/resources/inbound/client/index.js +0 -2
- package/dist/api/resources/inbound/index.d.ts +0 -2
- package/dist/api/resources/inbound/index.js +0 -18
- package/dist/api/resources/inbound/types/InboundTrackEvent.d.ts +0 -13
- package/dist/api/resources/inbound/types/InboundTrackEvent.js +0 -5
- package/dist/api/resources/inbound/types/TrackAcceptedResponse.d.ts +0 -7
- package/dist/api/resources/inbound/types/TrackAcceptedResponse.js +0 -5
- package/dist/api/resources/inbound/types/index.d.ts +0 -2
- package/dist/api/resources/inbound/types/index.js +0 -18
- package/dist/api/resources/index.d.ts +0 -44
- package/dist/api/resources/index.js +0 -83
- package/dist/api/resources/lists/client/Client.d.ts +0 -185
- package/dist/api/resources/lists/client/Client.js +0 -685
- package/dist/api/resources/lists/client/index.d.ts +0 -1
- package/dist/api/resources/lists/client/index.js +0 -17
- package/dist/api/resources/lists/client/requests/AddSubscribersToList.d.ts +0 -19
- package/dist/api/resources/lists/client/requests/AddSubscribersToList.js +0 -5
- package/dist/api/resources/lists/client/requests/GetAllListsRequest.d.ts +0 -17
- package/dist/api/resources/lists/client/requests/GetAllListsRequest.js +0 -5
- package/dist/api/resources/lists/client/requests/GetSubscriptionForListRequest.d.ts +0 -13
- package/dist/api/resources/lists/client/requests/GetSubscriptionForListRequest.js +0 -5
- package/dist/api/resources/lists/client/requests/RestoreListRequest.d.ts +0 -9
- package/dist/api/resources/lists/client/requests/RestoreListRequest.js +0 -5
- package/dist/api/resources/lists/client/requests/SubscribeUserToListRequest.d.ts +0 -13
- package/dist/api/resources/lists/client/requests/SubscribeUserToListRequest.js +0 -5
- package/dist/api/resources/lists/client/requests/SubscribeUsersToListRequest.d.ts +0 -19
- package/dist/api/resources/lists/client/requests/SubscribeUsersToListRequest.js +0 -5
- package/dist/api/resources/lists/client/requests/index.d.ts +0 -6
- package/dist/api/resources/lists/client/requests/index.js +0 -2
- package/dist/api/resources/lists/index.d.ts +0 -2
- package/dist/api/resources/lists/index.js +0 -18
- package/dist/api/resources/lists/types/List.d.ts +0 -9
- package/dist/api/resources/lists/types/List.js +0 -5
- package/dist/api/resources/lists/types/ListGetAllResponse.d.ts +0 -8
- package/dist/api/resources/lists/types/ListGetAllResponse.js +0 -5
- package/dist/api/resources/lists/types/ListGetSubscriptionsResponse.d.ts +0 -8
- package/dist/api/resources/lists/types/ListGetSubscriptionsResponse.js +0 -5
- package/dist/api/resources/lists/types/ListPutParams.d.ts +0 -8
- package/dist/api/resources/lists/types/ListPutParams.js +0 -5
- package/dist/api/resources/lists/types/ListSubscriptionRecipient.d.ts +0 -9
- package/dist/api/resources/lists/types/ListSubscriptionRecipient.js +0 -5
- package/dist/api/resources/lists/types/PutSubscriptionsRecipient.d.ts +0 -8
- package/dist/api/resources/lists/types/PutSubscriptionsRecipient.js +0 -5
- package/dist/api/resources/lists/types/index.d.ts +0 -6
- package/dist/api/resources/lists/types/index.js +0 -22
- package/dist/api/resources/messages/client/Client.d.ts +0 -106
- package/dist/api/resources/messages/client/Client.js +0 -479
- package/dist/api/resources/messages/client/index.d.ts +0 -1
- package/dist/api/resources/messages/client/index.js +0 -17
- package/dist/api/resources/messages/client/requests/GetMessageHistoryRequest.d.ts +0 -13
- package/dist/api/resources/messages/client/requests/GetMessageHistoryRequest.js +0 -5
- package/dist/api/resources/messages/client/requests/ListMessagesRequest.d.ts +0 -65
- package/dist/api/resources/messages/client/requests/ListMessagesRequest.js +0 -5
- package/dist/api/resources/messages/client/requests/index.d.ts +0 -2
- package/dist/api/resources/messages/client/requests/index.js +0 -2
- package/dist/api/resources/messages/index.d.ts +0 -2
- package/dist/api/resources/messages/index.js +0 -18
- package/dist/api/resources/messages/types/ListMessagesResponse.d.ts +0 -10
- package/dist/api/resources/messages/types/ListMessagesResponse.js +0 -5
- package/dist/api/resources/messages/types/MessageDetails.d.ts +0 -30
- package/dist/api/resources/messages/types/MessageDetails.js +0 -5
- package/dist/api/resources/messages/types/MessageDetailsExtended.d.ts +0 -7
- package/dist/api/resources/messages/types/MessageDetailsExtended.js +0 -5
- package/dist/api/resources/messages/types/MessageHistoryResponse.d.ts +0 -6
- package/dist/api/resources/messages/types/MessageHistoryResponse.js +0 -5
- package/dist/api/resources/messages/types/MessageStatus.d.ts +0 -66
- package/dist/api/resources/messages/types/MessageStatus.js +0 -23
- package/dist/api/resources/messages/types/Reason.d.ts +0 -42
- package/dist/api/resources/messages/types/Reason.js +0 -17
- package/dist/api/resources/messages/types/RenderOutput.d.ts +0 -12
- package/dist/api/resources/messages/types/RenderOutput.js +0 -5
- package/dist/api/resources/messages/types/RenderOutputResponse.d.ts +0 -8
- package/dist/api/resources/messages/types/RenderOutputResponse.js +0 -5
- package/dist/api/resources/messages/types/RenderedMessageBlock.d.ts +0 -9
- package/dist/api/resources/messages/types/RenderedMessageBlock.js +0 -5
- package/dist/api/resources/messages/types/RenderedMessageContent.d.ts +0 -18
- package/dist/api/resources/messages/types/RenderedMessageContent.js +0 -5
- package/dist/api/resources/messages/types/index.d.ts +0 -10
- package/dist/api/resources/messages/types/index.js +0 -26
- package/dist/api/resources/notifications/client/Client.d.ts +0 -98
- package/dist/api/resources/notifications/client/Client.js +0 -406
- package/dist/api/resources/notifications/client/index.d.ts +0 -1
- package/dist/api/resources/notifications/client/index.js +0 -17
- package/dist/api/resources/notifications/client/requests/NotificationListParams.d.ts +0 -14
- package/dist/api/resources/notifications/client/requests/NotificationListParams.js +0 -5
- package/dist/api/resources/notifications/client/requests/SubmissionChecksReplaceParams.d.ts +0 -21
- package/dist/api/resources/notifications/client/requests/SubmissionChecksReplaceParams.js +0 -5
- package/dist/api/resources/notifications/client/requests/index.d.ts +0 -2
- package/dist/api/resources/notifications/client/requests/index.js +0 -2
- package/dist/api/resources/notifications/index.d.ts +0 -2
- package/dist/api/resources/notifications/index.js +0 -18
- package/dist/api/resources/notifications/types/BaseCheck.d.ts +0 -9
- package/dist/api/resources/notifications/types/BaseCheck.js +0 -5
- package/dist/api/resources/notifications/types/BlockType.d.ts +0 -15
- package/dist/api/resources/notifications/types/BlockType.js +0 -17
- package/dist/api/resources/notifications/types/Check.d.ts +0 -7
- package/dist/api/resources/notifications/types/Check.js +0 -5
- package/dist/api/resources/notifications/types/CheckStatus.d.ts +0 -9
- package/dist/api/resources/notifications/types/CheckStatus.js +0 -11
- package/dist/api/resources/notifications/types/MessageRouting.d.ts +0 -8
- package/dist/api/resources/notifications/types/MessageRouting.js +0 -5
- package/dist/api/resources/notifications/types/MessageRoutingChannel.d.ts +0 -5
- package/dist/api/resources/notifications/types/MessageRoutingChannel.js +0 -5
- package/dist/api/resources/notifications/types/MessageRoutingMethod.d.ts +0 -8
- package/dist/api/resources/notifications/types/MessageRoutingMethod.js +0 -10
- package/dist/api/resources/notifications/types/Notification.d.ts +0 -14
- package/dist/api/resources/notifications/types/Notification.js +0 -5
- package/dist/api/resources/notifications/types/NotificationBlock.d.ts +0 -13
- package/dist/api/resources/notifications/types/NotificationBlock.js +0 -5
- package/dist/api/resources/notifications/types/NotificationChannel.d.ts +0 -11
- package/dist/api/resources/notifications/types/NotificationChannel.js +0 -5
- package/dist/api/resources/notifications/types/NotificationChannelContent.d.ts +0 -7
- package/dist/api/resources/notifications/types/NotificationChannelContent.js +0 -5
- package/dist/api/resources/notifications/types/NotificationContent.d.ts +0 -5
- package/dist/api/resources/notifications/types/NotificationContent.js +0 -5
- package/dist/api/resources/notifications/types/NotificationContentHierarchy.d.ts +0 -7
- package/dist/api/resources/notifications/types/NotificationContentHierarchy.js +0 -5
- package/dist/api/resources/notifications/types/NotificationGetContentResponse.d.ts +0 -9
- package/dist/api/resources/notifications/types/NotificationGetContentResponse.js +0 -5
- package/dist/api/resources/notifications/types/NotificationListResponse.d.ts +0 -8
- package/dist/api/resources/notifications/types/NotificationListResponse.js +0 -5
- package/dist/api/resources/notifications/types/NotificationTag.d.ts +0 -7
- package/dist/api/resources/notifications/types/NotificationTag.js +0 -5
- package/dist/api/resources/notifications/types/NotificationTagData.d.ts +0 -7
- package/dist/api/resources/notifications/types/NotificationTagData.js +0 -5
- package/dist/api/resources/notifications/types/SubmissionChecksGetResponse.d.ts +0 -7
- package/dist/api/resources/notifications/types/SubmissionChecksGetResponse.js +0 -5
- package/dist/api/resources/notifications/types/SubmissionChecksReplaceResponse.d.ts +0 -7
- package/dist/api/resources/notifications/types/SubmissionChecksReplaceResponse.js +0 -5
- package/dist/api/resources/notifications/types/index.d.ts +0 -19
- package/dist/api/resources/notifications/types/index.js +0 -35
- package/dist/api/resources/profiles/client/Client.d.ts +0 -172
- package/dist/api/resources/profiles/client/Client.js +0 -588
- package/dist/api/resources/profiles/client/index.d.ts +0 -1
- package/dist/api/resources/profiles/client/index.js +0 -17
- package/dist/api/resources/profiles/client/requests/GetListSubscriptionsRequest.d.ts +0 -13
- package/dist/api/resources/profiles/client/requests/GetListSubscriptionsRequest.js +0 -5
- package/dist/api/resources/profiles/client/requests/MergeProfileRequest.d.ts +0 -16
- package/dist/api/resources/profiles/client/requests/MergeProfileRequest.js +0 -5
- package/dist/api/resources/profiles/client/requests/ReplaceProfileRequest.d.ts +0 -16
- package/dist/api/resources/profiles/client/requests/ReplaceProfileRequest.js +0 -5
- package/dist/api/resources/profiles/client/requests/index.d.ts +0 -3
- package/dist/api/resources/profiles/client/requests/index.js +0 -2
- package/dist/api/resources/profiles/index.d.ts +0 -2
- package/dist/api/resources/profiles/index.js +0 -18
- package/dist/api/resources/profiles/types/Address.d.ts +0 -11
- package/dist/api/resources/profiles/types/Address.js +0 -5
- package/dist/api/resources/profiles/types/AirshipProfile.d.ts +0 -8
- package/dist/api/resources/profiles/types/AirshipProfile.js +0 -5
- package/dist/api/resources/profiles/types/AirshipProfileAudience.d.ts +0 -6
- package/dist/api/resources/profiles/types/AirshipProfileAudience.js +0 -5
- package/dist/api/resources/profiles/types/DeleteListSubscriptionResponse.d.ts +0 -6
- package/dist/api/resources/profiles/types/DeleteListSubscriptionResponse.js +0 -5
- package/dist/api/resources/profiles/types/DeviceType.d.ts +0 -4
- package/dist/api/resources/profiles/types/DeviceType.js +0 -5
- package/dist/api/resources/profiles/types/Discord.d.ts +0 -5
- package/dist/api/resources/profiles/types/Discord.js +0 -5
- package/dist/api/resources/profiles/types/Expo.d.ts +0 -5
- package/dist/api/resources/profiles/types/Expo.js +0 -5
- package/dist/api/resources/profiles/types/GetListSubscriptionsList.d.ts +0 -14
- package/dist/api/resources/profiles/types/GetListSubscriptionsList.js +0 -5
- package/dist/api/resources/profiles/types/GetListSubscriptionsResponse.d.ts +0 -9
- package/dist/api/resources/profiles/types/GetListSubscriptionsResponse.js +0 -5
- package/dist/api/resources/profiles/types/Intercom.d.ts +0 -8
- package/dist/api/resources/profiles/types/Intercom.js +0 -5
- package/dist/api/resources/profiles/types/IntercomRecipient.d.ts +0 -6
- package/dist/api/resources/profiles/types/IntercomRecipient.js +0 -5
- package/dist/api/resources/profiles/types/MergeProfileResponse.d.ts +0 -6
- package/dist/api/resources/profiles/types/MergeProfileResponse.js +0 -5
- package/dist/api/resources/profiles/types/MsTeams.d.ts +0 -5
- package/dist/api/resources/profiles/types/MsTeams.js +0 -5
- package/dist/api/resources/profiles/types/MsTeamsBaseProperties.d.ts +0 -7
- package/dist/api/resources/profiles/types/MsTeamsBaseProperties.js +0 -5
- package/dist/api/resources/profiles/types/MultipleTokens.d.ts +0 -7
- package/dist/api/resources/profiles/types/MultipleTokens.js +0 -5
- package/dist/api/resources/profiles/types/Pagerduty.d.ts +0 -9
- package/dist/api/resources/profiles/types/Pagerduty.js +0 -5
- package/dist/api/resources/profiles/types/ProfileGetParameters.d.ts +0 -6
- package/dist/api/resources/profiles/types/ProfileGetParameters.js +0 -5
- package/dist/api/resources/profiles/types/ProfileGetResponse.d.ts +0 -8
- package/dist/api/resources/profiles/types/ProfileGetResponse.js +0 -5
- package/dist/api/resources/profiles/types/ProfileUpdateRequest.d.ts +0 -8
- package/dist/api/resources/profiles/types/ProfileUpdateRequest.js +0 -5
- package/dist/api/resources/profiles/types/ReplaceProfileResponse.d.ts +0 -6
- package/dist/api/resources/profiles/types/ReplaceProfileResponse.js +0 -5
- package/dist/api/resources/profiles/types/SendDirectMessage.d.ts +0 -6
- package/dist/api/resources/profiles/types/SendDirectMessage.js +0 -5
- package/dist/api/resources/profiles/types/SendToChannel.d.ts +0 -6
- package/dist/api/resources/profiles/types/SendToChannel.js +0 -5
- package/dist/api/resources/profiles/types/SendToMsTeamsChannelId.d.ts +0 -7
- package/dist/api/resources/profiles/types/SendToMsTeamsChannelId.js +0 -5
- package/dist/api/resources/profiles/types/SendToMsTeamsChannelName.d.ts +0 -8
- package/dist/api/resources/profiles/types/SendToMsTeamsChannelName.js +0 -5
- package/dist/api/resources/profiles/types/SendToMsTeamsConversationId.d.ts +0 -7
- package/dist/api/resources/profiles/types/SendToMsTeamsConversationId.js +0 -5
- package/dist/api/resources/profiles/types/SendToMsTeamsEmail.d.ts +0 -7
- package/dist/api/resources/profiles/types/SendToMsTeamsEmail.js +0 -5
- package/dist/api/resources/profiles/types/SendToMsTeamsUserId.d.ts +0 -7
- package/dist/api/resources/profiles/types/SendToMsTeamsUserId.js +0 -5
- package/dist/api/resources/profiles/types/SendToSlackChannel.d.ts +0 -7
- package/dist/api/resources/profiles/types/SendToSlackChannel.js +0 -5
- package/dist/api/resources/profiles/types/SendToSlackEmail.d.ts +0 -7
- package/dist/api/resources/profiles/types/SendToSlackEmail.js +0 -5
- package/dist/api/resources/profiles/types/SendToSlackUserId.d.ts +0 -7
- package/dist/api/resources/profiles/types/SendToSlackUserId.js +0 -5
- package/dist/api/resources/profiles/types/Slack.d.ts +0 -5
- package/dist/api/resources/profiles/types/Slack.js +0 -5
- package/dist/api/resources/profiles/types/SlackBaseProperties.d.ts +0 -6
- package/dist/api/resources/profiles/types/SlackBaseProperties.js +0 -5
- package/dist/api/resources/profiles/types/SnoozeRule.d.ts +0 -9
- package/dist/api/resources/profiles/types/SnoozeRule.js +0 -5
- package/dist/api/resources/profiles/types/SnoozeRuleType.d.ts +0 -7
- package/dist/api/resources/profiles/types/SnoozeRuleType.js +0 -9
- package/dist/api/resources/profiles/types/SubscribeToListsRequest.d.ts +0 -7
- package/dist/api/resources/profiles/types/SubscribeToListsRequest.js +0 -5
- package/dist/api/resources/profiles/types/SubscribeToListsRequestListObject.d.ts +0 -8
- package/dist/api/resources/profiles/types/SubscribeToListsRequestListObject.js +0 -5
- package/dist/api/resources/profiles/types/SubscribeToListsResponse.d.ts +0 -6
- package/dist/api/resources/profiles/types/SubscribeToListsResponse.js +0 -5
- package/dist/api/resources/profiles/types/Token.d.ts +0 -6
- package/dist/api/resources/profiles/types/Token.js +0 -5
- package/dist/api/resources/profiles/types/UserProfile.d.ts +0 -38
- package/dist/api/resources/profiles/types/UserProfile.js +0 -5
- package/dist/api/resources/profiles/types/UserProfileFirebaseToken.d.ts +0 -4
- package/dist/api/resources/profiles/types/UserProfileFirebaseToken.js +0 -5
- package/dist/api/resources/profiles/types/UserProfilePatch.d.ts +0 -11
- package/dist/api/resources/profiles/types/UserProfilePatch.js +0 -5
- package/dist/api/resources/profiles/types/WebhookAuthMode.d.ts +0 -9
- package/dist/api/resources/profiles/types/WebhookAuthMode.js +0 -11
- package/dist/api/resources/profiles/types/WebhookAuthentication.d.ts +0 -14
- package/dist/api/resources/profiles/types/WebhookAuthentication.js +0 -5
- package/dist/api/resources/profiles/types/WebhookMethod.d.ts +0 -8
- package/dist/api/resources/profiles/types/WebhookMethod.js +0 -10
- package/dist/api/resources/profiles/types/WebhookProfile.d.ts +0 -16
- package/dist/api/resources/profiles/types/WebhookProfile.js +0 -5
- package/dist/api/resources/profiles/types/WebhookProfileType.d.ts +0 -8
- package/dist/api/resources/profiles/types/WebhookProfileType.js +0 -10
- package/dist/api/resources/profiles/types/index.d.ts +0 -46
- package/dist/api/resources/profiles/types/index.js +0 -62
- package/dist/api/resources/send/index.d.ts +0 -1
- package/dist/api/resources/send/index.js +0 -17
- package/dist/api/resources/send/types/Attachment.d.ts +0 -4
- package/dist/api/resources/send/types/Attachment.js +0 -5
- package/dist/api/resources/send/types/AudienceFilter.d.ts +0 -9
- package/dist/api/resources/send/types/AudienceFilter.js +0 -5
- package/dist/api/resources/send/types/AudienceRecipient.d.ts +0 -10
- package/dist/api/resources/send/types/AudienceRecipient.js +0 -5
- package/dist/api/resources/send/types/BaseMessage.d.ts +0 -31
- package/dist/api/resources/send/types/BaseMessage.js +0 -5
- package/dist/api/resources/send/types/BaseMessageSendTo.d.ts +0 -8
- package/dist/api/resources/send/types/BaseMessageSendTo.js +0 -5
- package/dist/api/resources/send/types/BaseSocialPresence.d.ts +0 -6
- package/dist/api/resources/send/types/BaseSocialPresence.js +0 -5
- package/dist/api/resources/send/types/BrandSettingsEmail.d.ts +0 -10
- package/dist/api/resources/send/types/BrandSettingsEmail.js +0 -5
- package/dist/api/resources/send/types/BrandSettingsInApp.d.ts +0 -14
- package/dist/api/resources/send/types/BrandSettingsInApp.js +0 -5
- package/dist/api/resources/send/types/BrandSettingsSocialPresence.d.ts +0 -12
- package/dist/api/resources/send/types/BrandSettingsSocialPresence.js +0 -5
- package/dist/api/resources/send/types/BrandTemplate.d.ts +0 -12
- package/dist/api/resources/send/types/BrandTemplate.js +0 -5
- package/dist/api/resources/send/types/BrandTemplateOverride.d.ts +0 -9
- package/dist/api/resources/send/types/BrandTemplateOverride.js +0 -5
- package/dist/api/resources/send/types/Channel.d.ts +0 -33
- package/dist/api/resources/send/types/Channel.js +0 -5
- package/dist/api/resources/send/types/ChannelMetadata.d.ts +0 -7
- package/dist/api/resources/send/types/ChannelMetadata.js +0 -5
- package/dist/api/resources/send/types/ChannelSource.d.ts +0 -9
- package/dist/api/resources/send/types/ChannelSource.js +0 -11
- package/dist/api/resources/send/types/Content.d.ts +0 -5
- package/dist/api/resources/send/types/Content.js +0 -5
- package/dist/api/resources/send/types/ContentMessage.d.ts +0 -15
- package/dist/api/resources/send/types/ContentMessage.js +0 -5
- package/dist/api/resources/send/types/Criteria.d.ts +0 -10
- package/dist/api/resources/send/types/Criteria.js +0 -12
- package/dist/api/resources/send/types/Delay.d.ts +0 -9
- package/dist/api/resources/send/types/Delay.js +0 -5
- package/dist/api/resources/send/types/ElementalActionNode.d.ts +0 -23
- package/dist/api/resources/send/types/ElementalActionNode.js +0 -5
- package/dist/api/resources/send/types/ElementalBaseNode.d.ts +0 -9
- package/dist/api/resources/send/types/ElementalBaseNode.js +0 -5
- package/dist/api/resources/send/types/ElementalChannelNode.d.ts +0 -31
- package/dist/api/resources/send/types/ElementalChannelNode.js +0 -5
- package/dist/api/resources/send/types/ElementalContent.d.ts +0 -10
- package/dist/api/resources/send/types/ElementalContent.js +0 -5
- package/dist/api/resources/send/types/ElementalContentSugar.d.ts +0 -12
- package/dist/api/resources/send/types/ElementalContentSugar.js +0 -5
- package/dist/api/resources/send/types/ElementalDividerNode.d.ts +0 -11
- package/dist/api/resources/send/types/ElementalDividerNode.js +0 -5
- package/dist/api/resources/send/types/ElementalGroupNode.d.ts +0 -11
- package/dist/api/resources/send/types/ElementalGroupNode.js +0 -5
- package/dist/api/resources/send/types/ElementalImageNode.d.ts +0 -19
- package/dist/api/resources/send/types/ElementalImageNode.js +0 -5
- package/dist/api/resources/send/types/ElementalMetaNode.d.ts +0 -13
- package/dist/api/resources/send/types/ElementalMetaNode.js +0 -5
- package/dist/api/resources/send/types/ElementalNode.d.ts +0 -31
- package/dist/api/resources/send/types/ElementalNode.js +0 -5
- package/dist/api/resources/send/types/ElementalQuoteNode.d.ts +0 -18
- package/dist/api/resources/send/types/ElementalQuoteNode.js +0 -5
- package/dist/api/resources/send/types/ElementalTextNode.d.ts +0 -31
- package/dist/api/resources/send/types/ElementalTextNode.js +0 -5
- package/dist/api/resources/send/types/EmailFooter.d.ts +0 -7
- package/dist/api/resources/send/types/EmailFooter.js +0 -5
- package/dist/api/resources/send/types/EmailHead.d.ts +0 -7
- package/dist/api/resources/send/types/EmailHead.js +0 -5
- package/dist/api/resources/send/types/EmailHeader.d.ts +0 -9
- package/dist/api/resources/send/types/EmailHeader.js +0 -5
- package/dist/api/resources/send/types/ExpiresInType.d.ts +0 -4
- package/dist/api/resources/send/types/ExpiresInType.js +0 -5
- package/dist/api/resources/send/types/Expiry.d.ts +0 -10
- package/dist/api/resources/send/types/Expiry.js +0 -5
- package/dist/api/resources/send/types/IActionButtonStyle.d.ts +0 -8
- package/dist/api/resources/send/types/IActionButtonStyle.js +0 -10
- package/dist/api/resources/send/types/IAlignment.d.ts +0 -10
- package/dist/api/resources/send/types/IAlignment.js +0 -12
- package/dist/api/resources/send/types/IPreferences.d.ts +0 -5
- package/dist/api/resources/send/types/IPreferences.js +0 -5
- package/dist/api/resources/send/types/IProfilePreferences.d.ts +0 -9
- package/dist/api/resources/send/types/IProfilePreferences.js +0 -5
- package/dist/api/resources/send/types/Icons.d.ts +0 -7
- package/dist/api/resources/send/types/Icons.js +0 -5
- package/dist/api/resources/send/types/InAppPlacement.d.ts +0 -10
- package/dist/api/resources/send/types/InAppPlacement.js +0 -12
- package/dist/api/resources/send/types/InvalidListPatternRecipient.d.ts +0 -7
- package/dist/api/resources/send/types/InvalidListPatternRecipient.js +0 -5
- package/dist/api/resources/send/types/InvalidListRecipient.d.ts +0 -7
- package/dist/api/resources/send/types/InvalidListRecipient.js +0 -5
- package/dist/api/resources/send/types/InvalidUserRecipient.d.ts +0 -7
- package/dist/api/resources/send/types/InvalidUserRecipient.js +0 -5
- package/dist/api/resources/send/types/ListFilter.d.ts +0 -9
- package/dist/api/resources/send/types/ListFilter.js +0 -5
- package/dist/api/resources/send/types/ListPatternRecipient.d.ts +0 -8
- package/dist/api/resources/send/types/ListPatternRecipient.js +0 -5
- package/dist/api/resources/send/types/ListPatternRecipientType.d.ts +0 -5
- package/dist/api/resources/send/types/ListPatternRecipientType.js +0 -5
- package/dist/api/resources/send/types/ListRecipient.d.ts +0 -9
- package/dist/api/resources/send/types/ListRecipient.js +0 -5
- package/dist/api/resources/send/types/ListRecipientType.d.ts +0 -5
- package/dist/api/resources/send/types/ListRecipientType.js +0 -5
- package/dist/api/resources/send/types/Locale.d.ts +0 -6
- package/dist/api/resources/send/types/Locale.js +0 -5
- package/dist/api/resources/send/types/Locales.d.ts +0 -5
- package/dist/api/resources/send/types/Locales.js +0 -5
- package/dist/api/resources/send/types/Logo.d.ts +0 -7
- package/dist/api/resources/send/types/Logo.js +0 -5
- package/dist/api/resources/send/types/Message.d.ts +0 -11
- package/dist/api/resources/send/types/Message.js +0 -5
- package/dist/api/resources/send/types/MessageChannels.d.ts +0 -5
- package/dist/api/resources/send/types/MessageChannels.js +0 -5
- package/dist/api/resources/send/types/MessageContext.d.ts +0 -10
- package/dist/api/resources/send/types/MessageContext.js +0 -5
- package/dist/api/resources/send/types/MessageData.d.ts +0 -4
- package/dist/api/resources/send/types/MessageData.js +0 -5
- package/dist/api/resources/send/types/MessageMetadata.d.ts +0 -14
- package/dist/api/resources/send/types/MessageMetadata.js +0 -5
- package/dist/api/resources/send/types/MessagePreferences.d.ts +0 -7
- package/dist/api/resources/send/types/MessagePreferences.js +0 -5
- package/dist/api/resources/send/types/MessageProviders.d.ts +0 -5
- package/dist/api/resources/send/types/MessageProviders.js +0 -5
- package/dist/api/resources/send/types/MessageProvidersType.d.ts +0 -17
- package/dist/api/resources/send/types/MessageProvidersType.js +0 -5
- package/dist/api/resources/send/types/MessageRecipient.d.ts +0 -5
- package/dist/api/resources/send/types/MessageRecipient.js +0 -5
- package/dist/api/resources/send/types/Metadata.d.ts +0 -7
- package/dist/api/resources/send/types/Metadata.js +0 -5
- package/dist/api/resources/send/types/MsTeamsRecipient.d.ts +0 -7
- package/dist/api/resources/send/types/MsTeamsRecipient.js +0 -5
- package/dist/api/resources/send/types/PagerdutyRecipient.d.ts +0 -7
- package/dist/api/resources/send/types/PagerdutyRecipient.js +0 -5
- package/dist/api/resources/send/types/Preference.d.ts +0 -10
- package/dist/api/resources/send/types/Preference.js +0 -5
- package/dist/api/resources/send/types/Preferences.d.ts +0 -6
- package/dist/api/resources/send/types/Preferences.js +0 -5
- package/dist/api/resources/send/types/Recipient.d.ts +0 -5
- package/dist/api/resources/send/types/Recipient.js +0 -5
- package/dist/api/resources/send/types/RecipientData.d.ts +0 -4
- package/dist/api/resources/send/types/RecipientData.js +0 -5
- package/dist/api/resources/send/types/Routing.d.ts +0 -18
- package/dist/api/resources/send/types/Routing.js +0 -5
- package/dist/api/resources/send/types/RoutingMethod.d.ts +0 -8
- package/dist/api/resources/send/types/RoutingMethod.js +0 -10
- package/dist/api/resources/send/types/RuleType.d.ts +0 -9
- package/dist/api/resources/send/types/RuleType.js +0 -11
- package/dist/api/resources/send/types/SlackRecipient.d.ts +0 -7
- package/dist/api/resources/send/types/SlackRecipient.js +0 -5
- package/dist/api/resources/send/types/TemplateMessage.d.ts +0 -11
- package/dist/api/resources/send/types/TemplateMessage.js +0 -5
- package/dist/api/resources/send/types/TextAlign.d.ts +0 -9
- package/dist/api/resources/send/types/TextAlign.js +0 -11
- package/dist/api/resources/send/types/TextStyle.d.ts +0 -10
- package/dist/api/resources/send/types/TextStyle.js +0 -12
- package/dist/api/resources/send/types/Timeout.d.ts +0 -11
- package/dist/api/resources/send/types/Timeout.js +0 -5
- package/dist/api/resources/send/types/Timeouts.d.ts +0 -7
- package/dist/api/resources/send/types/Timeouts.js +0 -5
- package/dist/api/resources/send/types/TrackingOverride.d.ts +0 -6
- package/dist/api/resources/send/types/TrackingOverride.js +0 -5
- package/dist/api/resources/send/types/UserRecipient.d.ts +0 -22
- package/dist/api/resources/send/types/UserRecipient.js +0 -5
- package/dist/api/resources/send/types/UserRecipientType.d.ts +0 -5
- package/dist/api/resources/send/types/UserRecipientType.js +0 -5
- package/dist/api/resources/send/types/Utm.d.ts +0 -10
- package/dist/api/resources/send/types/Utm.js +0 -5
- package/dist/api/resources/send/types/WebhookRecipient.d.ts +0 -7
- package/dist/api/resources/send/types/WebhookRecipient.js +0 -5
- package/dist/api/resources/send/types/WidgetBackground.d.ts +0 -7
- package/dist/api/resources/send/types/WidgetBackground.js +0 -5
- package/dist/api/resources/send/types/index.d.ts +0 -83
- package/dist/api/resources/send/types/index.js +0 -99
- package/dist/api/resources/templates/client/Client.d.ts +0 -41
- package/dist/api/resources/templates/client/Client.js +0 -131
- package/dist/api/resources/templates/client/index.d.ts +0 -1
- package/dist/api/resources/templates/client/index.js +0 -17
- package/dist/api/resources/templates/client/requests/ListTemplatesRequest.d.ts +0 -13
- package/dist/api/resources/templates/client/requests/ListTemplatesRequest.js +0 -5
- package/dist/api/resources/templates/client/requests/index.d.ts +0 -1
- package/dist/api/resources/templates/client/requests/index.js +0 -2
- package/dist/api/resources/templates/index.d.ts +0 -2
- package/dist/api/resources/templates/index.js +0 -18
- package/dist/api/resources/templates/types/ChannelIdentifier.d.ts +0 -4
- package/dist/api/resources/templates/types/ChannelIdentifier.js +0 -5
- package/dist/api/resources/templates/types/ListTemplatesResponse.d.ts +0 -9
- package/dist/api/resources/templates/types/ListTemplatesResponse.js +0 -5
- package/dist/api/resources/templates/types/NotificationTemplates.d.ts +0 -18
- package/dist/api/resources/templates/types/NotificationTemplates.js +0 -5
- package/dist/api/resources/templates/types/RoutingStrategy.d.ts +0 -10
- package/dist/api/resources/templates/types/RoutingStrategy.js +0 -5
- package/dist/api/resources/templates/types/RoutingStrategyMethod.d.ts +0 -8
- package/dist/api/resources/templates/types/RoutingStrategyMethod.js +0 -10
- package/dist/api/resources/templates/types/Tag.d.ts +0 -7
- package/dist/api/resources/templates/types/Tag.js +0 -5
- package/dist/api/resources/templates/types/TagData.d.ts +0 -9
- package/dist/api/resources/templates/types/TagData.js +0 -5
- package/dist/api/resources/templates/types/index.d.ts +0 -7
- package/dist/api/resources/templates/types/index.js +0 -23
- package/dist/api/resources/tenants/client/Client.d.ts +0 -139
- package/dist/api/resources/tenants/client/Client.js +0 -612
- package/dist/api/resources/tenants/client/index.d.ts +0 -1
- package/dist/api/resources/tenants/client/index.js +0 -17
- package/dist/api/resources/tenants/client/requests/GetTemplateListByTenantParams.d.ts +0 -17
- package/dist/api/resources/tenants/client/requests/GetTemplateListByTenantParams.js +0 -5
- package/dist/api/resources/tenants/client/requests/ListTenantParams.d.ts +0 -22
- package/dist/api/resources/tenants/client/requests/ListTenantParams.js +0 -5
- package/dist/api/resources/tenants/client/requests/ListUsersForTenantParams.d.ts +0 -18
- package/dist/api/resources/tenants/client/requests/ListUsersForTenantParams.js +0 -5
- package/dist/api/resources/tenants/client/requests/TenantCreateOrReplaceParams.d.ts +0 -29
- package/dist/api/resources/tenants/client/requests/TenantCreateOrReplaceParams.js +0 -5
- package/dist/api/resources/tenants/client/requests/index.d.ts +0 -4
- package/dist/api/resources/tenants/client/requests/index.js +0 -2
- package/dist/api/resources/tenants/index.d.ts +0 -2
- package/dist/api/resources/tenants/index.js +0 -18
- package/dist/api/resources/tenants/types/DefaultPreferences.d.ts +0 -7
- package/dist/api/resources/tenants/types/DefaultPreferences.js +0 -5
- package/dist/api/resources/tenants/types/GetTemplateByTenantResponse.d.ts +0 -6
- package/dist/api/resources/tenants/types/GetTemplateByTenantResponse.js +0 -5
- package/dist/api/resources/tenants/types/ListTemplatesByTenantResponse.d.ts +0 -23
- package/dist/api/resources/tenants/types/ListTemplatesByTenantResponse.js +0 -5
- package/dist/api/resources/tenants/types/ListUsersForTenantResponse.d.ts +0 -23
- package/dist/api/resources/tenants/types/ListUsersForTenantResponse.js +0 -5
- package/dist/api/resources/tenants/types/SubscriptionTopic.d.ts +0 -8
- package/dist/api/resources/tenants/types/SubscriptionTopic.js +0 -5
- package/dist/api/resources/tenants/types/SubscriptionTopicNew.d.ts +0 -11
- package/dist/api/resources/tenants/types/SubscriptionTopicNew.js +0 -5
- package/dist/api/resources/tenants/types/SubscriptionTopicStatus.d.ts +0 -9
- package/dist/api/resources/tenants/types/SubscriptionTopicStatus.js +0 -11
- package/dist/api/resources/tenants/types/TemplateProperty.d.ts +0 -7
- package/dist/api/resources/tenants/types/TemplateProperty.js +0 -5
- package/dist/api/resources/tenants/types/Tenant.d.ts +0 -20
- package/dist/api/resources/tenants/types/Tenant.js +0 -5
- package/dist/api/resources/tenants/types/TenantListResponse.d.ts +0 -21
- package/dist/api/resources/tenants/types/TenantListResponse.js +0 -5
- package/dist/api/resources/tenants/types/index.d.ts +0 -10
- package/dist/api/resources/tenants/types/index.js +0 -26
- package/dist/api/resources/translations/client/Client.d.ts +0 -58
- package/dist/api/resources/translations/client/Client.js +0 -196
- package/dist/api/resources/translations/client/index.d.ts +0 -1
- package/dist/api/resources/translations/client/index.js +0 -2
- package/dist/api/resources/translations/index.d.ts +0 -1
- package/dist/api/resources/translations/index.js +0 -17
- package/dist/api/resources/users/client/Client.d.ts +0 -27
- package/dist/api/resources/users/client/Client.js +0 -27
- package/dist/api/resources/users/client/index.d.ts +0 -1
- package/dist/api/resources/users/client/index.js +0 -2
- package/dist/api/resources/users/index.d.ts +0 -2
- package/dist/api/resources/users/index.js +0 -18
- package/dist/api/resources/users/resources/index.d.ts +0 -8
- package/dist/api/resources/users/resources/index.js +0 -47
- package/dist/api/resources/users/resources/preferences/client/Client.d.ts +0 -80
- package/dist/api/resources/users/resources/preferences/client/Client.js +0 -301
- package/dist/api/resources/users/resources/preferences/client/index.d.ts +0 -1
- package/dist/api/resources/users/resources/preferences/client/index.js +0 -17
- package/dist/api/resources/users/resources/preferences/client/requests/UserPreferencesParams.d.ts +0 -13
- package/dist/api/resources/users/resources/preferences/client/requests/UserPreferencesParams.js +0 -5
- package/dist/api/resources/users/resources/preferences/client/requests/UserPreferencesTopicParams.d.ts +0 -13
- package/dist/api/resources/users/resources/preferences/client/requests/UserPreferencesTopicParams.js +0 -5
- package/dist/api/resources/users/resources/preferences/client/requests/UserPreferencesUpdateParams.d.ts +0 -21
- package/dist/api/resources/users/resources/preferences/client/requests/UserPreferencesUpdateParams.js +0 -5
- package/dist/api/resources/users/resources/preferences/client/requests/index.d.ts +0 -3
- package/dist/api/resources/users/resources/preferences/client/requests/index.js +0 -2
- package/dist/api/resources/users/resources/preferences/index.d.ts +0 -2
- package/dist/api/resources/users/resources/preferences/index.js +0 -18
- package/dist/api/resources/users/resources/preferences/types/TopicPreference.d.ts +0 -13
- package/dist/api/resources/users/resources/preferences/types/TopicPreference.js +0 -5
- package/dist/api/resources/users/resources/preferences/types/TopicPreferenceUpdate.d.ts +0 -10
- package/dist/api/resources/users/resources/preferences/types/TopicPreferenceUpdate.js +0 -5
- package/dist/api/resources/users/resources/preferences/types/UserPreferencesGetResponse.d.ts +0 -7
- package/dist/api/resources/users/resources/preferences/types/UserPreferencesGetResponse.js +0 -5
- package/dist/api/resources/users/resources/preferences/types/UserPreferencesListResponse.d.ts +0 -10
- package/dist/api/resources/users/resources/preferences/types/UserPreferencesListResponse.js +0 -5
- package/dist/api/resources/users/resources/preferences/types/UserPreferencesUpdateResponse.d.ts +0 -6
- package/dist/api/resources/users/resources/preferences/types/UserPreferencesUpdateResponse.js +0 -5
- package/dist/api/resources/users/resources/preferences/types/index.d.ts +0 -5
- package/dist/api/resources/users/resources/preferences/types/index.js +0 -21
- package/dist/api/resources/users/resources/tenants/client/Client.d.ts +0 -112
- package/dist/api/resources/users/resources/tenants/client/Client.js +0 -374
- package/dist/api/resources/users/resources/tenants/client/index.d.ts +0 -1
- package/dist/api/resources/users/resources/tenants/client/index.js +0 -17
- package/dist/api/resources/users/resources/tenants/client/requests/AddUserToMultipleTenantsParams.d.ts +0 -23
- package/dist/api/resources/users/resources/tenants/client/requests/AddUserToMultipleTenantsParams.js +0 -5
- package/dist/api/resources/users/resources/tenants/client/requests/AddUserToSingleTenantsParams.d.ts +0 -12
- package/dist/api/resources/users/resources/tenants/client/requests/AddUserToSingleTenantsParams.js +0 -5
- package/dist/api/resources/users/resources/tenants/client/requests/ListTenantsForUserParams.d.ts +0 -18
- package/dist/api/resources/users/resources/tenants/client/requests/ListTenantsForUserParams.js +0 -5
- package/dist/api/resources/users/resources/tenants/client/requests/index.d.ts +0 -3
- package/dist/api/resources/users/resources/tenants/client/requests/index.js +0 -2
- package/dist/api/resources/users/resources/tenants/index.d.ts +0 -2
- package/dist/api/resources/users/resources/tenants/index.js +0 -18
- package/dist/api/resources/users/resources/tenants/types/AddUserToSingleTenantsParamsProfile.d.ts +0 -17
- package/dist/api/resources/users/resources/tenants/types/AddUserToSingleTenantsParamsProfile.js +0 -5
- package/dist/api/resources/users/resources/tenants/types/ListTenantsForUserResponse.d.ts +0 -23
- package/dist/api/resources/users/resources/tenants/types/ListTenantsForUserResponse.js +0 -5
- package/dist/api/resources/users/resources/tenants/types/index.d.ts +0 -2
- package/dist/api/resources/users/resources/tenants/types/index.js +0 -18
- package/dist/api/resources/users/resources/tokens/client/Client.d.ts +0 -127
- package/dist/api/resources/users/resources/tokens/client/Client.js +0 -444
- package/dist/api/resources/users/resources/tokens/client/index.d.ts +0 -1
- package/dist/api/resources/users/resources/tokens/client/index.js +0 -2
- package/dist/api/resources/users/resources/tokens/index.d.ts +0 -2
- package/dist/api/resources/users/resources/tokens/index.js +0 -18
- package/dist/api/resources/users/resources/tokens/types/DeleteUserTokenOpts.d.ts +0 -7
- package/dist/api/resources/users/resources/tokens/types/DeleteUserTokenOpts.js +0 -5
- package/dist/api/resources/users/resources/tokens/types/Device.d.ts +0 -17
- package/dist/api/resources/users/resources/tokens/types/Device.js +0 -5
- package/dist/api/resources/users/resources/tokens/types/ExpiryDate.d.ts +0 -4
- package/dist/api/resources/users/resources/tokens/types/ExpiryDate.js +0 -5
- package/dist/api/resources/users/resources/tokens/types/GetAllTokensResponse.d.ts +0 -8
- package/dist/api/resources/users/resources/tokens/types/GetAllTokensResponse.js +0 -5
- package/dist/api/resources/users/resources/tokens/types/GetUserTokenOpts.d.ts +0 -7
- package/dist/api/resources/users/resources/tokens/types/GetUserTokenOpts.js +0 -5
- package/dist/api/resources/users/resources/tokens/types/GetUserTokenResponse.d.ts +0 -9
- package/dist/api/resources/users/resources/tokens/types/GetUserTokenResponse.js +0 -5
- package/dist/api/resources/users/resources/tokens/types/GetUserTokensOpts.d.ts +0 -6
- package/dist/api/resources/users/resources/tokens/types/GetUserTokensOpts.js +0 -5
- package/dist/api/resources/users/resources/tokens/types/PatchOp.d.ts +0 -12
- package/dist/api/resources/users/resources/tokens/types/PatchOp.js +0 -14
- package/dist/api/resources/users/resources/tokens/types/PatchOperation.d.ts +0 -11
- package/dist/api/resources/users/resources/tokens/types/PatchOperation.js +0 -5
- package/dist/api/resources/users/resources/tokens/types/PatchUserTokenOpts.d.ts +0 -7
- package/dist/api/resources/users/resources/tokens/types/PatchUserTokenOpts.js +0 -5
- package/dist/api/resources/users/resources/tokens/types/ProviderKey.d.ts +0 -10
- package/dist/api/resources/users/resources/tokens/types/ProviderKey.js +0 -12
- package/dist/api/resources/users/resources/tokens/types/PutUserTokenOpts.d.ts +0 -8
- package/dist/api/resources/users/resources/tokens/types/PutUserTokenOpts.js +0 -5
- package/dist/api/resources/users/resources/tokens/types/PutUserTokensOpts.d.ts +0 -8
- package/dist/api/resources/users/resources/tokens/types/PutUserTokensOpts.js +0 -5
- package/dist/api/resources/users/resources/tokens/types/TokenStatus.d.ts +0 -10
- package/dist/api/resources/users/resources/tokens/types/TokenStatus.js +0 -12
- package/dist/api/resources/users/resources/tokens/types/Tracking.d.ts +0 -13
- package/dist/api/resources/users/resources/tokens/types/Tracking.js +0 -5
- package/dist/api/resources/users/resources/tokens/types/UserToken.d.ts +0 -17
- package/dist/api/resources/users/resources/tokens/types/UserToken.js +0 -5
- package/dist/api/resources/users/resources/tokens/types/index.d.ts +0 -16
- package/dist/api/resources/users/resources/tokens/types/index.js +0 -32
- package/dist/api/types/SendMessageResponse.d.ts +0 -13
- package/dist/api/types/SendMessageResponse.js +0 -5
- package/dist/api/types/index.d.ts +0 -1
- package/dist/api/types/index.js +0 -17
- package/dist/core/auth/BasicAuth.d.ts +0 -8
- package/dist/core/auth/BasicAuth.js +0 -26
- package/dist/core/auth/BearerToken.d.ts +0 -5
- package/dist/core/auth/BearerToken.js +0 -15
- package/dist/core/auth/index.d.ts +0 -2
- package/dist/core/auth/index.js +0 -7
- package/dist/core/fetcher/APIResponse.d.ts +0 -20
- package/dist/core/fetcher/APIResponse.js +0 -2
- package/dist/core/fetcher/Fetcher.d.ts +0 -39
- package/dist/core/fetcher/Fetcher.js +0 -107
- package/dist/core/fetcher/Headers.d.ts +0 -2
- package/dist/core/fetcher/Headers.js +0 -84
- package/dist/core/fetcher/HttpResponsePromise.d.ts +0 -58
- package/dist/core/fetcher/HttpResponsePromise.js +0 -103
- package/dist/core/fetcher/RawResponse.d.ts +0 -29
- package/dist/core/fetcher/RawResponse.js +0 -44
- package/dist/core/fetcher/Supplier.d.ts +0 -4
- package/dist/core/fetcher/Supplier.js +0 -22
- package/dist/core/fetcher/createRequestUrl.d.ts +0 -1
- package/dist/core/fetcher/createRequestUrl.js +0 -12
- package/dist/core/fetcher/getFetchFn.d.ts +0 -4
- package/dist/core/fetcher/getFetchFn.js +0 -68
- package/dist/core/fetcher/getHeader.d.ts +0 -1
- package/dist/core/fetcher/getHeader.js +0 -11
- package/dist/core/fetcher/getRequestBody.d.ts +0 -7
- package/dist/core/fetcher/getRequestBody.js +0 -23
- package/dist/core/fetcher/getResponseBody.d.ts +0 -1
- package/dist/core/fetcher/getResponseBody.js +0 -54
- package/dist/core/fetcher/index.d.ts +0 -8
- package/dist/core/fetcher/index.js +0 -15
- package/dist/core/fetcher/makeRequest.d.ts +0 -1
- package/dist/core/fetcher/makeRequest.js +0 -42
- package/dist/core/fetcher/requestWithRetries.d.ts +0 -1
- package/dist/core/fetcher/requestWithRetries.js +0 -40
- package/dist/core/fetcher/signals.d.ts +0 -11
- package/dist/core/fetcher/signals.js +0 -36
- package/dist/core/fetcher/stream-wrappers/Node18UniversalStreamWrapper.d.ts +0 -30
- package/dist/core/fetcher/stream-wrappers/Node18UniversalStreamWrapper.js +0 -247
- package/dist/core/fetcher/stream-wrappers/NodePre18StreamWrapper.d.ts +0 -21
- package/dist/core/fetcher/stream-wrappers/NodePre18StreamWrapper.js +0 -126
- package/dist/core/fetcher/stream-wrappers/UndiciStreamWrapper.d.ts +0 -31
- package/dist/core/fetcher/stream-wrappers/UndiciStreamWrapper.js +0 -229
- package/dist/core/fetcher/stream-wrappers/chooseStreamWrapper.d.ts +0 -18
- package/dist/core/fetcher/stream-wrappers/chooseStreamWrapper.js +0 -59
- package/dist/core/index.d.ts +0 -3
- package/dist/core/index.js +0 -19
- package/dist/core/json.d.ts +0 -15
- package/dist/core/json.js +0 -24
- package/dist/core/runtime/index.d.ts +0 -1
- package/dist/core/runtime/index.js +0 -5
- package/dist/core/runtime/runtime.d.ts +0 -9
- package/dist/core/runtime/runtime.js +0 -103
- package/dist/environments.d.ts +0 -7
- package/dist/environments.js +0 -9
- package/dist/errors/CourierError.d.ts +0 -15
- package/dist/errors/CourierError.js +0 -30
- package/dist/errors/CourierTimeoutError.d.ts +0 -6
- package/dist/errors/CourierTimeoutError.js +0 -13
- package/dist/errors/index.d.ts +0 -2
- package/dist/errors/index.js +0 -7
- package/dist/index.d.ts +0 -4
- package/dist/index.js +0 -44
- package/dist/version.d.ts +0 -1
- package/dist/version.js +0 -4
- package/environments.d.ts +0 -7
- package/environments.js +0 -9
- package/errors/CourierError.d.ts +0 -15
- package/errors/CourierError.js +0 -30
- package/errors/CourierTimeoutError.d.ts +0 -6
- package/errors/CourierTimeoutError.js +0 -13
- package/errors/index.d.ts +0 -2
- package/errors/index.js +0 -7
- package/jest.config.mjs +0 -8
- package/reference.md +0 -5262
- package/scripts/rename-to-esm-files.js +0 -115
package/CHANGELOG.md
CHANGED
|
@@ -1,321 +1,78 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Changelog
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
This project adheres to [Semantic Versioning](http://semver.org/).
|
|
3
|
+
## 6.7.0-alpha2 (2025-10-07)
|
|
5
4
|
|
|
6
|
-
|
|
5
|
+
Full Changelog: [v6.7.0-alpha1...v6.7.0-alpha2](https://github.com/trycourier/courier-node/compare/v6.7.0-alpha1...v6.7.0-alpha2)
|
|
7
6
|
|
|
8
|
-
|
|
7
|
+
### Chores
|
|
9
8
|
|
|
10
|
-
|
|
9
|
+
* update SDK settings ([ed8785b](https://github.com/trycourier/courier-node/commit/ed8785b6c6e3478320d603c918cd8317a812c250))
|
|
11
10
|
|
|
12
|
-
##
|
|
11
|
+
## 6.7.0-alpha1 (2025-10-07)
|
|
13
12
|
|
|
14
|
-
|
|
13
|
+
Full Changelog: [v6.6.1-alpha0...v6.7.0-alpha1](https://github.com/trycourier/courier-node/compare/v6.6.1-alpha0...v6.7.0-alpha1)
|
|
15
14
|
|
|
16
|
-
|
|
15
|
+
### Features
|
|
17
16
|
|
|
18
|
-
|
|
19
|
-
|
|
17
|
+
* **api:** manual updates ([e02e62a](https://github.com/trycourier/courier-node/commit/e02e62a089b1a8e5274adb4bfdde8019bbd1f2c7))
|
|
18
|
+
* **api:** manual updates ([1aaa7ac](https://github.com/trycourier/courier-node/commit/1aaa7acdf5c31042ebada47380446f309a9c2b81))
|
|
19
|
+
* **api:** manual updates ([2fb74d6](https://github.com/trycourier/courier-node/commit/2fb74d6e51bf884d451990c8cf300e27fdec8023))
|
|
20
|
+
* **api:** manual updates ([ac55f5f](https://github.com/trycourier/courier-node/commit/ac55f5f3d6f155eb9e419e756a4d5781cfc62d0c))
|
|
21
|
+
* **api:** manual updates ([7e57c98](https://github.com/trycourier/courier-node/commit/7e57c98785f0bfb35879e670a286bae7571faf30))
|
|
22
|
+
* **api:** manual updates ([951f1c8](https://github.com/trycourier/courier-node/commit/951f1c8a7e1c04b90816ef76aa04be903fc37348))
|
|
23
|
+
* **api:** manual updates ([4f2884a](https://github.com/trycourier/courier-node/commit/4f2884a44ffff0919beaf864ee9780139216a851))
|
|
24
|
+
* **api:** manual updates ([69749b3](https://github.com/trycourier/courier-node/commit/69749b370052d0d94008b10d5d675b8a3efc26c0))
|
|
25
|
+
* **api:** manual updates ([1c6c779](https://github.com/trycourier/courier-node/commit/1c6c77995d137c0350152c90d379c6aa8f38c02e))
|
|
26
|
+
* **api:** manual updates ([d34383e](https://github.com/trycourier/courier-node/commit/d34383edcdc2f9d87c1cfc411865c39d5c061d59))
|
|
27
|
+
* **api:** manual updates ([0291b2c](https://github.com/trycourier/courier-node/commit/0291b2c4518c1ba14191e6b905e9c8fa5d34a6da))
|
|
28
|
+
* **api:** manual updates ([89ddc36](https://github.com/trycourier/courier-node/commit/89ddc36ae5f8531cc621beb27cbc475e1972f178))
|
|
29
|
+
* **api:** manual updates ([9f508fb](https://github.com/trycourier/courier-node/commit/9f508fb5cd0d7e5519110f4d70b9133b2780cb40))
|
|
30
|
+
* **api:** manual updates ([43c6aa3](https://github.com/trycourier/courier-node/commit/43c6aa3698462b549236718dd920ff733aa8ca90))
|
|
31
|
+
* **api:** manual updates ([73a3de4](https://github.com/trycourier/courier-node/commit/73a3de41aad159b4105931971ce0864d8cba91d2))
|
|
32
|
+
* **api:** manual updates ([6be37a8](https://github.com/trycourier/courier-node/commit/6be37a85b5105f6e3477b5333a15eda5a0b0c4b6))
|
|
33
|
+
* **api:** manual updates ([60035d6](https://github.com/trycourier/courier-node/commit/60035d6cac1b599e2d6d5d45cc77d120063cdb0d))
|
|
34
|
+
* **api:** manual updates ([252f56f](https://github.com/trycourier/courier-node/commit/252f56f49adb8a39b00fadddabc69159be6da627))
|
|
35
|
+
* **api:** manual updates ([cce8bd5](https://github.com/trycourier/courier-node/commit/cce8bd5741c59b4682113223e105534a86629dd7))
|
|
36
|
+
* **api:** manual updates ([60d1a06](https://github.com/trycourier/courier-node/commit/60d1a0669bbc66fc3d1e447aa5f1939cedb61a9f))
|
|
37
|
+
* **api:** manual updates ([df1dd2b](https://github.com/trycourier/courier-node/commit/df1dd2b21eb80517dadbba8cf1085da04e65f0a8))
|
|
38
|
+
* **api:** manual updates ([366dd66](https://github.com/trycourier/courier-node/commit/366dd66a42fd31469f11e43603a41a0887c9bc76))
|
|
39
|
+
* **api:** manual updates ([1b7c8d5](https://github.com/trycourier/courier-node/commit/1b7c8d502e1a11125dbd5bb087543a46c6770cc8))
|
|
40
|
+
* **api:** manual updates ([5830280](https://github.com/trycourier/courier-node/commit/5830280ec5dc225a9f047d4e93ebf626170edb1f))
|
|
41
|
+
* **api:** manual updates ([d028295](https://github.com/trycourier/courier-node/commit/d02829584be4e04a8fa691c0b09f27b15918a486))
|
|
42
|
+
* **api:** manual updates ([464de12](https://github.com/trycourier/courier-node/commit/464de12d2ecc8eac48e05d3feacd71b8b18fd8e1))
|
|
43
|
+
* **api:** manual updates ([683868e](https://github.com/trycourier/courier-node/commit/683868e931d3fd74f82e623cf53635dcd92a05c3))
|
|
44
|
+
* **api:** manual updates ([0308dd6](https://github.com/trycourier/courier-node/commit/0308dd6a0b2601a0094ea6e00918bd2588dd02cf))
|
|
20
45
|
|
|
21
|
-
## [v4.0.1] - 2022-10-13
|
|
22
46
|
|
|
23
|
-
|
|
47
|
+
### Chores
|
|
24
48
|
|
|
25
|
-
|
|
49
|
+
* **internal:** use npm pack for build uploads ([843bca4](https://github.com/trycourier/courier-node/commit/843bca44157f906c81d1a3f81d0b9f992b522620))
|
|
50
|
+
* **jsdoc:** fix [@link](https://github.com/link) annotations to refer only to parts of the package‘s public interface ([c71601d](https://github.com/trycourier/courier-node/commit/c71601d31394b72672c573fa0c2e12146e3c5a13))
|
|
51
|
+
* update SDK settings ([1ee64cb](https://github.com/trycourier/courier-node/commit/1ee64cb8eb748ad440dbee2d359c30ed21c407c9))
|
|
26
52
|
|
|
27
|
-
-
|
|
53
|
+
## 6.6.1-alpha0 (2025-10-01)
|
|
28
54
|
|
|
29
|
-
|
|
55
|
+
Full Changelog: [v0.0.1...v6.6.1-alpha0](https://github.com/trycourier/courier-node/compare/v0.0.1...v6.6.1-alpha0)
|
|
30
56
|
|
|
31
|
-
|
|
57
|
+
### Features
|
|
32
58
|
|
|
33
|
-
|
|
59
|
+
* **api:** manual updates ([4c5fdd7](https://github.com/trycourier/courier-node/commit/4c5fdd78807bca7b83143688338fb4ade8ef1b90))
|
|
60
|
+
* **api:** manual updates ([241891d](https://github.com/trycourier/courier-node/commit/241891d442d8373a903cf352fc247a9778cd5dce))
|
|
34
61
|
|
|
35
|
-
- adds support for audit events
|
|
36
62
|
|
|
37
|
-
|
|
63
|
+
### Performance Improvements
|
|
38
64
|
|
|
39
|
-
|
|
65
|
+
* faster formatting ([2b0c24f](https://github.com/trycourier/courier-node/commit/2b0c24f766a8d20e6696cb74c1b23e367c9f34f4))
|
|
40
66
|
|
|
41
|
-
## [3.13.1] - 2022-06-03
|
|
42
67
|
|
|
43
|
-
|
|
68
|
+
### Chores
|
|
44
69
|
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
- adds support for messages timeout (`message.timeout`)
|
|
56
|
-
|
|
57
|
-
## [3.10.0] - 2020-03-24
|
|
58
|
-
|
|
59
|
-
- adds support for messages brand_id (`message.brand_id`)
|
|
60
|
-
|
|
61
|
-
## [3.9.0] - 2022-03-17
|
|
62
|
-
|
|
63
|
-
- adds support for bulk messaging API v2 support
|
|
64
|
-
|
|
65
|
-
## [3.8.0] - 2022-03-14
|
|
66
|
-
|
|
67
|
-
- adds additional types for utm property (`message.metadata.utm`)
|
|
68
|
-
|
|
69
|
-
## [v3.7.0] - 2022-03-11
|
|
70
|
-
|
|
71
|
-
- adds additional types for the tags property (`message.metadata.tags`)
|
|
72
|
-
- adds support for searching message by tags
|
|
73
|
-
|
|
74
|
-
## [v3.6.0] - 2022-02-10
|
|
75
|
-
|
|
76
|
-
- adds additional types for the recipient property (`message.to`)
|
|
77
|
-
|
|
78
|
-
## [v3.5.0] - 2022-02-10
|
|
79
|
-
|
|
80
|
-
- adds type for unroutable status
|
|
81
|
-
|
|
82
|
-
## [v3.4.0] - 2022-01-25
|
|
83
|
-
|
|
84
|
-
- adds support for the send message object in the request body of a `/send` call
|
|
85
|
-
|
|
86
|
-
## [v3.3.0] - 2022-01-25
|
|
87
|
-
|
|
88
|
-
- adds support for bulk processing endpoints
|
|
89
|
-
|
|
90
|
-
## [v3.2.1] - 2022-01-13
|
|
91
|
-
|
|
92
|
-
- Fixes `getMessages` query params
|
|
93
|
-
|
|
94
|
-
## [v3.2.0] - 2021-11-18
|
|
95
|
-
|
|
96
|
-
- adds idempotency expiration support for send and send list endpoints
|
|
97
|
-
|
|
98
|
-
## [v3.1.0] - 2021-11-16
|
|
99
|
-
|
|
100
|
-
- Expose additional type definitions for `getMessage`
|
|
101
|
-
|
|
102
|
-
## [v3.0.0] - 2021-11-02
|
|
103
|
-
|
|
104
|
-
- fixes type definition for `getRecipientSubscriptions`
|
|
105
|
-
|
|
106
|
-
## [v2.8.0] - 2021-10-29
|
|
107
|
-
|
|
108
|
-
- adds GET /messages/{messageId}/output API
|
|
109
|
-
|
|
110
|
-
## [v2.7.0] - 2021-10-21
|
|
111
|
-
|
|
112
|
-
- adds GET /messages/{messageId}/history API
|
|
113
|
-
|
|
114
|
-
## [v2.6.0] - 2021-10-07
|
|
115
|
-
|
|
116
|
-
- Add support for DELETE /profiles/{recipient_id} (#58)
|
|
117
|
-
- adds GET /messages API
|
|
118
|
-
- adds idempotencyKey support in automations client
|
|
119
|
-
|
|
120
|
-
## [v2.4.0] - 2021-08-23
|
|
121
|
-
|
|
122
|
-
- adds notifications API
|
|
123
|
-
- type fix `put` method of `ICourierClientLists`
|
|
124
|
-
|
|
125
|
-
## [v2.3.0] - 2021-04-28
|
|
126
|
-
|
|
127
|
-
- adds support for update-profile step via `client.automations.invokeAdHocAutomation({...})`
|
|
128
|
-
|
|
129
|
-
## [v2.2.0] - 2021-04-07
|
|
130
|
-
|
|
131
|
-
- adds automations API
|
|
132
|
-
|
|
133
|
-
## [v2.1.0] - 2021-03-15
|
|
134
|
-
|
|
135
|
-
- adds support to add more recipients to a list subscription (#40)
|
|
136
|
-
- adds support to delete all the lists subscriptions for a recipient (#39)
|
|
137
|
-
- adds support to add recipient to multiple lists (#38)
|
|
138
|
-
- updates preference interface to accept new preference options (#37)
|
|
139
|
-
|
|
140
|
-
## [v2.0.0] - 2021-03-03
|
|
141
|
-
|
|
142
|
-
- supports adding subscription preferences (#35)
|
|
143
|
-
|
|
144
|
-
## [v1.7.3] - 2021-03-03
|
|
145
|
-
|
|
146
|
-
### Added
|
|
147
|
-
|
|
148
|
-
- ICourierClient exported as a type [#33](https://github.com/trycourier/courier-node/pull/33)
|
|
149
|
-
|
|
150
|
-
## [v1.7.2] - 2021-02-16
|
|
151
|
-
|
|
152
|
-
### Fixed
|
|
153
|
-
|
|
154
|
-
- Update PUT list subscription request params with appropriate type [#32](https://github.com/trycourier/courier-node/pull/32)
|
|
155
|
-
|
|
156
|
-
## [v1.7.1] - 2021-02-01
|
|
157
|
-
|
|
158
|
-
### Fixed
|
|
159
|
-
|
|
160
|
-
- Fix the notification(s) typo [#28](https://github.com/trycourier/courier-node/pull/28)
|
|
161
|
-
|
|
162
|
-
## [v1.7.0] - 2021-01-25
|
|
163
|
-
|
|
164
|
-
### Added
|
|
165
|
-
|
|
166
|
-
- Support for [Preferences API]() by @helenamerk and @aydrian
|
|
167
|
-
- `GET /preferences` via `client.preferences.list()`
|
|
168
|
-
- `GET /preferences/{recipient_id}` via `client.preferences.get(recipientId)`
|
|
169
|
-
- `PUT /preferences/{recipient_id}` via `client.preferences.put(recipientId, {...})`
|
|
170
|
-
|
|
171
|
-
## [v1.6.2] - 2021-01-19
|
|
172
|
-
|
|
173
|
-
### Fixed
|
|
174
|
-
|
|
175
|
-
- Bumped [axios](https://www.npmjs.com/package/axios) to version 0.21.1
|
|
176
|
-
- Updated types for Send to List Parameters by @rileylnapier
|
|
177
|
-
|
|
178
|
-
## [v1.6.1] - 2020-09-23
|
|
179
|
-
|
|
180
|
-
### Fixed
|
|
181
|
-
|
|
182
|
-
- Fixed return types for `PUT` methods that return 204
|
|
183
|
-
- Fixed param types for `client.lists.send()`
|
|
184
|
-
- Fixed return type for `client.lists.findByRecipientId()`
|
|
185
|
-
- Fixed param types for `client.lists.put()`
|
|
186
|
-
|
|
187
|
-
## [v1.6.0] - 2020-09-22
|
|
188
|
-
|
|
189
|
-
### Added
|
|
190
|
-
|
|
191
|
-
- Support for `idempotencyKey` for `POST` methods by @aydrian & @rileylnapier
|
|
192
|
-
- Support for [Lists API](https://docs.courier.com/reference/lists-api) by @aydrian
|
|
193
|
-
- `POST /send/list` via `client.lists.send(params, config)`
|
|
194
|
-
- `GET /profiles/{recipient_id}/lists` via `client.lists.findByRecipientId(recipientId, params)`
|
|
195
|
-
- `GET /lists` via `client.lists.list(params)`
|
|
196
|
-
- `GET /lists/{list_id}` via `client.lists.get(listId)`
|
|
197
|
-
- `PUT /lists/{list_id}` via `client.lists.put(listId, {...})`
|
|
198
|
-
- `DELETE /lists/{list_id}` via `client.lists.delete(listId)`
|
|
199
|
-
- `PUT /lists/{list_id}/restore` via `client.lists.restore(listId)`
|
|
200
|
-
- `GET /lists/{list_id}/subscriptions` via `client.lists.getSubscriptions(listId)`
|
|
201
|
-
- `PUT /lists/{list_id}/subscriptions` via `client.lists.putSubscriptions(listId, [recipientId], config)`
|
|
202
|
-
- `PUT /lists/{list_id}/subscriptions/{recipient_id}` via `client.lists.subscribe(listId, recipientId)`
|
|
203
|
-
- `DELETE /lists/{list_id}/subscriptions/{recipient_id}` via `client.lists.unsubscribe(listId, recipientId)`
|
|
204
|
-
|
|
205
|
-
### Changed
|
|
206
|
-
|
|
207
|
-
- Default `base_url` is now `api.courier.com`
|
|
208
|
-
|
|
209
|
-
## [v1.5.0] - 2020-07-08
|
|
210
|
-
|
|
211
|
-
### Added
|
|
212
|
-
|
|
213
|
-
- Support for [Brands API](https://docs.courier.com/reference/brands-api) by @aydrian
|
|
214
|
-
- `GET /brands` via `client.getBrands(params)`
|
|
215
|
-
- `GET /brands/:brand_id` via `client.getBrand(brandId)`
|
|
216
|
-
- `POST /brands` via `client.createBrand({…})`
|
|
217
|
-
- `PUT /brands/:brand_id` via `client.replaceBrand({…})`
|
|
218
|
-
- `DELETE /brands/:brand_id` via `client.deleteBrand(brandId)`
|
|
219
|
-
- Support for specifying notification brand during [send](https://docs.courier.com/reference/send-api#sendmessage) by @aydrian
|
|
220
|
-
|
|
221
|
-
## [v1.4.0] - 2020-06-29
|
|
222
|
-
|
|
223
|
-
### Added
|
|
224
|
-
|
|
225
|
-
- Support `GET /messages/:messageId` via `client.getMessage(messageId)` @rileylnapier
|
|
226
|
-
|
|
227
|
-
## [v1.3.0] - 2020-03-10
|
|
228
|
-
|
|
229
|
-
### Added
|
|
230
|
-
|
|
231
|
-
- Support credential storage using `COURIER_AUTH_TOKEN` environment variable by @aydrian
|
|
232
|
-
- Support setting base url using `COURIER_BASE_URL` environment variable by @aydrian
|
|
233
|
-
- Support preferences and override in send method by @aydrian
|
|
234
|
-
- Create GitHub Issue and Pull Request templates by @rileylnapier
|
|
235
|
-
|
|
236
|
-
### Changed
|
|
237
|
-
|
|
238
|
-
- Updated user agent string to match new standard by @aydrian
|
|
239
|
-
|
|
240
|
-
## [v1.2.1] - 2019-12-30
|
|
241
|
-
|
|
242
|
-
### Fixed
|
|
243
|
-
|
|
244
|
-
- Convert package.json import to a require by @@scarney81
|
|
245
|
-
|
|
246
|
-
## [v1.2.0] - 2019-12-20
|
|
247
|
-
|
|
248
|
-
## Added
|
|
249
|
-
|
|
250
|
-
- Custom user agent string by @aydrian
|
|
251
|
-
|
|
252
|
-
## [v1.1.6] - 2019-07-12
|
|
253
|
-
|
|
254
|
-
## [v1.1.5] - 2019-07-12
|
|
255
|
-
|
|
256
|
-
## [v1.1.4] - 2019-07-12
|
|
257
|
-
|
|
258
|
-
## [v1.1.3] - 2019-07-12
|
|
259
|
-
|
|
260
|
-
## [v1.1.2] - 2019-07-12
|
|
261
|
-
|
|
262
|
-
## [v1.1.1] - 2019-07-12
|
|
263
|
-
|
|
264
|
-
## [v1.1.0] - 2019-07-12
|
|
265
|
-
|
|
266
|
-
## [v1.0.4] - 2019-07-12
|
|
267
|
-
|
|
268
|
-
## [v1.0.3] - 2019-07-12
|
|
269
|
-
|
|
270
|
-
## [v1.0.2] - 2019-07-12
|
|
271
|
-
|
|
272
|
-
## v1.0.1 - 2019-07-12
|
|
273
|
-
|
|
274
|
-
[unreleased]: https://github.com/trycourier/courier-node/compare/v4.1.1...HEAD
|
|
275
|
-
[v4.1.1]: https://github.com/trycourier/courier-node/compare/v4.1.1...v4.1.0
|
|
276
|
-
[v4.0.2]: https://github.com/trycourier/courier-node/compare/v4.0.1...v4.0.2
|
|
277
|
-
[v4.0.1]: https://github.com/trycourier/courier-node/compare/v4.0.0...v4.0.1
|
|
278
|
-
[v4.0.0]: https://github.com/trycourier/courier-node/compare/v3.16.0...v4.0.0
|
|
279
|
-
[v3.11.0]: https://github.com/trycourier/courier-node/compare/v3.10.0...v3.11.0
|
|
280
|
-
[v3.10.0]: https://github.com/trycourier/courier-node/compare/v3.9.0...v3.10.0
|
|
281
|
-
[v3.9.0]: https://github.com/trycourier/courier-node/compare/v3.8.0...v3.9.0
|
|
282
|
-
[v3.8.0]: https://github.com/trycourier/courier-node/compare/v3.7.0...v3.8.0
|
|
283
|
-
[v3.7.0]: https://github.com/trycourier/courier-node/compare/v3.6.0...v3.7.0
|
|
284
|
-
[v3.6.0]: https://github.com/trycourier/courier-node/compare/v3.5.0...v3.6.0
|
|
285
|
-
[v3.5.0]: https://github.com/trycourier/courier-node/compare/v3.4.0...v3.5.0
|
|
286
|
-
[v3.4.0]: https://github.com/trycourier/courier-node/compare/v3.3.0...v3.4.0
|
|
287
|
-
[v3.3.0]: https://github.com/trycourier/courier-node/compare/v3.2.1...v3.3.0
|
|
288
|
-
[v3.2.1]: https://github.com/trycourier/courier-node/compare/v3.2.0...v3.2.1
|
|
289
|
-
[v3.2.0]: https://github.com/trycourier/courier-node/compare/v3.1.0...v3.2.0
|
|
290
|
-
[v3.1.0]: https://github.com/trycourier/courier-node/compare/v3.0.0...v3.1.0
|
|
291
|
-
[v3.0.0]: https://github.com/trycourier/courier-node/compare/v2.8.0...v3.0.0
|
|
292
|
-
[v2.8.0]: https://github.com/trycourier/courier-node/compare/v2.7.0...v2.8.0
|
|
293
|
-
[v2.7.0]: https://github.com/trycourier/courier-node/compare/v2.6.0...v2.7.0
|
|
294
|
-
[v2.6.0]: https://github.com/trycourier/courier-node/compare/v2.4.0...v2.6.0
|
|
295
|
-
[v2.4.0]: https://github.com/trycourier/courier-node/compare/v2.3.0...v2.4.0
|
|
296
|
-
[v2.3.0]: https://github.com/trycourier/courier-node/compare/v2.2.0...v2.3.0
|
|
297
|
-
[v2.2.0]: https://github.com/trycourier/courier-node/compare/v2.1.0...v2.2.0
|
|
298
|
-
[v2.1.0]: https://github.com/trycourier/courier-node/compare/v2.0.0...v2.1.0
|
|
299
|
-
[v2.0.0]: https://github.com/trycourier/courier-node/compare/v1.7.3...v2.0.0
|
|
300
|
-
[v1.7.3]: https://github.com/trycourier/courier-node/compare/v1.7.2...v1.7.3
|
|
301
|
-
[v1.7.2]: https://github.com/trycourier/courier-node/compare/v1.7.1...v1.7.2
|
|
302
|
-
[v1.7.1]: https://github.com/trycourier/courier-node/compare/v1.7.0...v1.7.1
|
|
303
|
-
[v1.7.0]: https://github.com/trycourier/courier-node/compare/v1.6.2...v1.7.0
|
|
304
|
-
[v1.6.2]: https://github.com/trycourier/courier-node/compare/v1.6.1...v1.6.2
|
|
305
|
-
[v1.6.1]: https://github.com/trycourier/courier-node/compare/v1.6.0...v1.6.1
|
|
306
|
-
[v1.6.0]: https://github.com/trycourier/courier-node/compare/v1.5.0...v1.6.0
|
|
307
|
-
[v1.5.0]: https://github.com/trycourier/courier-node/compare/v1.4.0...v1.5.0
|
|
308
|
-
[v1.4.0]: https://github.com/trycourier/courier-node/compare/v1.3.0...v1.4.0
|
|
309
|
-
[v1.3.0]: https://github.com/trycourier/courier-node/compare/v1.2.1...v1.3.0
|
|
310
|
-
[v1.2.1]: https://github.com/trycourier/courier-node/compare/v1.2.0...v1.2.1
|
|
311
|
-
[v1.2.0]: https://github.com/trycourier/courier-node/compare/v1.1.6...v1.2.0
|
|
312
|
-
[v1.1.6]: https://github.com/trycourier/courier-node/compare/v1.1.5...v1.1.6
|
|
313
|
-
[v1.1.5]: https://github.com/trycourier/courier-node/compare/v1.1.4...v1.1.5
|
|
314
|
-
[v1.1.4]: https://github.com/trycourier/courier-node/compare/v1.1.3...v1.1.4
|
|
315
|
-
[v1.1.3]: https://github.com/trycourier/courier-node/compare/v1.1.2...v1.1.3
|
|
316
|
-
[v1.1.2]: https://github.com/trycourier/courier-node/compare/v1.1.1...v1.1.2
|
|
317
|
-
[v1.1.1]: https://github.com/trycourier/courier-node/compare/v1.1.0...v1.1.1
|
|
318
|
-
[v1.1.0]: https://github.com/trycourier/courier-node/compare/v1.0.4...v1.1.0
|
|
319
|
-
[v1.0.4]: https://github.com/trycourier/courier-node/compare/v1.0.3...v1.0.4
|
|
320
|
-
[v1.0.3]: https://github.com/trycourier/courier-node/compare/v1.0.2...v1.0.3
|
|
321
|
-
[v1.0.2]: https://github.com/trycourier/courier-node/compare/v1.0.1...v1.0.2
|
|
70
|
+
* do not install brew dependencies in ./scripts/bootstrap by default ([e650eb4](https://github.com/trycourier/courier-node/commit/e650eb427a5f01566c7237bdfc90ef5719951e63))
|
|
71
|
+
* **internal:** codegen related update ([5f99283](https://github.com/trycourier/courier-node/commit/5f9928367815efd4bb3e48d28f6548a67c623da1))
|
|
72
|
+
* **internal:** codegen related update ([46a0f07](https://github.com/trycourier/courier-node/commit/46a0f0729ab79994cfab403cf224c0782b17aa53))
|
|
73
|
+
* **internal:** fix incremental formatting in some cases ([051e283](https://github.com/trycourier/courier-node/commit/051e283756ac00d2dd223f0b5c65f1a96ed454b8))
|
|
74
|
+
* **internal:** ignore .eslintcache ([444019d](https://github.com/trycourier/courier-node/commit/444019dae3c4cbc301d780477dff473e0b592dd0))
|
|
75
|
+
* **internal:** remove .eslintcache ([5737d28](https://github.com/trycourier/courier-node/commit/5737d282f58611aa0985454eb84c4cdf31cc7f4a))
|
|
76
|
+
* **internal:** remove deprecated `compilerOptions.baseUrl` from tsconfig.json ([77e2775](https://github.com/trycourier/courier-node/commit/77e27758f6ab272a9351e3ae4fd26d35046da588))
|
|
77
|
+
* update SDK settings ([9364adc](https://github.com/trycourier/courier-node/commit/9364adc8807a5485af7a21e1e52046daaf7f07e2))
|
|
78
|
+
* update SDK settings ([98acf77](https://github.com/trycourier/courier-node/commit/98acf7762fcd7c8a968dd8dfb9c1d3ab30fc6bb0))
|
package/LICENSE
CHANGED
|
@@ -1,21 +1,201 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
+
the copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
+
other entities that control, are controlled by, or are under common
|
|
17
|
+
control with that entity. For the purposes of this definition,
|
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
+
direction or management of such entity, whether by contract or
|
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
+
|
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
+
exercising permissions granted by this License.
|
|
25
|
+
|
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
+
including but not limited to software source code, documentation
|
|
28
|
+
source, and configuration files.
|
|
29
|
+
|
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
|
31
|
+
transformation or translation of a Source form, including but
|
|
32
|
+
not limited to compiled object code, generated documentation,
|
|
33
|
+
and conversions to other media types.
|
|
34
|
+
|
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
+
Object form, made available under the License, as indicated by a
|
|
37
|
+
copyright notice that is included in or attached to the work
|
|
38
|
+
(an example is provided in the Appendix below).
|
|
39
|
+
|
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
46
|
+
the Work and Derivative Works thereof.
|
|
47
|
+
|
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
|
49
|
+
the original version of the Work and any modifications or additions
|
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
61
|
+
|
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
64
|
+
subsequently incorporated within the Work.
|
|
65
|
+
|
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
|
72
|
+
|
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
+
where such license applies only to those patent claims licensable
|
|
79
|
+
by such Contributor that are necessarily infringed by their
|
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
82
|
+
institute patent litigation against any entity (including a
|
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
85
|
+
or contributory patent infringement, then any patent licenses
|
|
86
|
+
granted to You under this License for that Work shall terminate
|
|
87
|
+
as of the date such litigation is filed.
|
|
88
|
+
|
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
+
modifications, and in Source or Object form, provided that You
|
|
92
|
+
meet the following conditions:
|
|
93
|
+
|
|
94
|
+
(a) You must give any other recipients of the Work or
|
|
95
|
+
Derivative Works a copy of this License; and
|
|
96
|
+
|
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
|
98
|
+
stating that You changed the files; and
|
|
99
|
+
|
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
|
102
|
+
attribution notices from the Source form of the Work,
|
|
103
|
+
excluding those notices that do not pertain to any part of
|
|
104
|
+
the Derivative Works; and
|
|
105
|
+
|
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
|
108
|
+
include a readable copy of the attribution notices contained
|
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
|
111
|
+
of the following places: within a NOTICE text file distributed
|
|
112
|
+
as part of the Derivative Works; within the Source form or
|
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
|
114
|
+
within a display generated by the Derivative Works, if and
|
|
115
|
+
wherever such third-party notices normally appear. The contents
|
|
116
|
+
of the NOTICE file are for informational purposes only and
|
|
117
|
+
do not modify the License. You may add Your own attribution
|
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
120
|
+
that such additional attribution notices cannot be construed
|
|
121
|
+
as modifying the License.
|
|
122
|
+
|
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
|
124
|
+
may provide additional or different license terms and conditions
|
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
128
|
+
the conditions stated in this License.
|
|
129
|
+
|
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
133
|
+
this License, without any additional terms or conditions.
|
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
+
the terms of any separate license agreement you may have executed
|
|
136
|
+
with Licensor regarding such Contributions.
|
|
137
|
+
|
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
+
except as required for reasonable and customary use in describing the
|
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
142
|
+
|
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
|
152
|
+
|
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
|
158
|
+
incidental, or consequential damages of any character arising as a
|
|
159
|
+
result of this License or out of the use or inability to use the
|
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
+
other commercial damages or losses), even if such Contributor
|
|
163
|
+
has been advised of the possibility of such damages.
|
|
164
|
+
|
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
168
|
+
or other liability obligations and/or rights consistent with this
|
|
169
|
+
License. However, in accepting such obligations, You may act only
|
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
+
of your accepting any such warranty or additional liability.
|
|
175
|
+
|
|
176
|
+
END OF TERMS AND CONDITIONS
|
|
177
|
+
|
|
178
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
179
|
+
|
|
180
|
+
To apply the Apache License to your work, attach the following
|
|
181
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
182
|
+
replaced with your own identifying information. (Don't include
|
|
183
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
184
|
+
comment syntax for the file format. We also recommend that a
|
|
185
|
+
file or class name and description of purpose be included on the
|
|
186
|
+
same "printed page" as the copyright notice for easier
|
|
187
|
+
identification within third-party archives.
|
|
188
|
+
|
|
189
|
+
Copyright 2025 Courier
|
|
190
|
+
|
|
191
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
|
+
you may not use this file except in compliance with the License.
|
|
193
|
+
You may obtain a copy of the License at
|
|
194
|
+
|
|
195
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
196
|
+
|
|
197
|
+
Unless required by applicable law or agreed to in writing, software
|
|
198
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
199
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
200
|
+
See the License for the specific language governing permissions and
|
|
201
|
+
limitations under the License.
|