@zyphr-dev/node-sdk 0.1.22 → 0.1.23
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/README.md +47 -35
- package/dist/index.cjs +15 -9
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +21 -20
- package/dist/index.d.ts +21 -20
- package/dist/index.js +13 -9
- package/dist/index.js.map +1 -1
- package/package.json +4 -1
- package/src/errors.ts +20 -0
- package/src/src/models/CreateTemplateRequest.ts +0 -8
- package/src/src/models/Template.ts +5 -4
- package/src/src/models/UpdateTemplateRequest.ts +0 -8
package/dist/index.d.ts
CHANGED
|
@@ -3025,14 +3025,6 @@ interface CreateTemplateRequest {
|
|
|
3025
3025
|
* @memberof CreateTemplateRequest
|
|
3026
3026
|
*/
|
|
3027
3027
|
text?: string;
|
|
3028
|
-
/**
|
|
3029
|
-
* Default variable values
|
|
3030
|
-
* @type {{ [key: string]: any; }}
|
|
3031
|
-
* @memberof CreateTemplateRequest
|
|
3032
|
-
*/
|
|
3033
|
-
variables?: {
|
|
3034
|
-
[key: string]: any;
|
|
3035
|
-
};
|
|
3036
3028
|
}
|
|
3037
3029
|
/**
|
|
3038
3030
|
* Check if a given object implements the CreateTemplateRequest interface.
|
|
@@ -13938,11 +13930,13 @@ interface Template {
|
|
|
13938
13930
|
*/
|
|
13939
13931
|
text?: string | null;
|
|
13940
13932
|
/**
|
|
13933
|
+
* Variable names auto-detected from `{{var}}` placeholders in subject,
|
|
13934
|
+
* html, and text. Server-derived; ignored if supplied on create/update.
|
|
13941
13935
|
*
|
|
13942
|
-
* @type {
|
|
13936
|
+
* @type {Array<string>}
|
|
13943
13937
|
* @memberof Template
|
|
13944
13938
|
*/
|
|
13945
|
-
variables?:
|
|
13939
|
+
readonly variables?: Array<string> | null;
|
|
13946
13940
|
/**
|
|
13947
13941
|
*
|
|
13948
13942
|
* @type {number}
|
|
@@ -13969,7 +13963,7 @@ declare function instanceOfTemplate(value: object): value is Template;
|
|
|
13969
13963
|
declare function TemplateFromJSON(json: any): Template;
|
|
13970
13964
|
declare function TemplateFromJSONTyped(json: any, ignoreDiscriminator: boolean): Template;
|
|
13971
13965
|
declare function TemplateToJSON(json: any): Template;
|
|
13972
|
-
declare function TemplateToJSONTyped(value?: Template | null, ignoreDiscriminator?: boolean): any;
|
|
13966
|
+
declare function TemplateToJSONTyped(value?: Omit<Template, 'variables'> | null, ignoreDiscriminator?: boolean): any;
|
|
13973
13967
|
|
|
13974
13968
|
/**
|
|
13975
13969
|
* Zyphr API
|
|
@@ -15375,14 +15369,6 @@ interface UpdateTemplateRequest {
|
|
|
15375
15369
|
* @memberof UpdateTemplateRequest
|
|
15376
15370
|
*/
|
|
15377
15371
|
text?: string;
|
|
15378
|
-
/**
|
|
15379
|
-
*
|
|
15380
|
-
* @type {{ [key: string]: any; }}
|
|
15381
|
-
* @memberof UpdateTemplateRequest
|
|
15382
|
-
*/
|
|
15383
|
-
variables?: {
|
|
15384
|
-
[key: string]: any;
|
|
15385
|
-
};
|
|
15386
15372
|
}
|
|
15387
15373
|
/**
|
|
15388
15374
|
* Check if a given object implements the UpdateTemplateRequest interface.
|
|
@@ -25151,6 +25137,21 @@ declare class ZyphrRateLimitError extends ZyphrError {
|
|
|
25151
25137
|
declare class ZyphrNotFoundError extends ZyphrError {
|
|
25152
25138
|
constructor(message: string);
|
|
25153
25139
|
}
|
|
25140
|
+
/**
|
|
25141
|
+
* Thrown when a Zyphr webhook signature fails verification.
|
|
25142
|
+
*
|
|
25143
|
+
* Use the verification helper shown in `examples/14-webhook-handler.ts`
|
|
25144
|
+
* (or write your own) to detect tampered or replayed webhook deliveries.
|
|
25145
|
+
*/
|
|
25146
|
+
declare class ZyphrWebhookVerificationError extends ZyphrError {
|
|
25147
|
+
constructor(message: string);
|
|
25148
|
+
}
|
|
25149
|
+
/**
|
|
25150
|
+
* Alias for {@link ZyphrWebhookVerificationError}. Provided for symmetry with
|
|
25151
|
+
* `Zyphr*Error` naming and shorter import statements in webhook handlers.
|
|
25152
|
+
*/
|
|
25153
|
+
declare const WebhookVerificationError: typeof ZyphrWebhookVerificationError;
|
|
25154
|
+
type WebhookVerificationError = ZyphrWebhookVerificationError;
|
|
25154
25155
|
/**
|
|
25155
25156
|
* Parse an API error response and throw the appropriate ZyphrError subclass.
|
|
25156
25157
|
*/
|
|
@@ -25246,4 +25247,4 @@ declare class Zyphr {
|
|
|
25246
25247
|
*/
|
|
25247
25248
|
declare const SDK_VERSION = "0.1.0";
|
|
25248
25249
|
|
|
25249
|
-
export { type AddTopicSubscribersRequest, AddTopicSubscribersRequestFromJSON, AddTopicSubscribersRequestFromJSONTyped, AddTopicSubscribersRequestToJSON, AddTopicSubscribersRequestToJSONTyped, type ApiError, type ApiErrorError, ApiErrorErrorFromJSON, ApiErrorErrorFromJSONTyped, ApiErrorErrorToJSON, ApiErrorErrorToJSONTyped, ApiErrorFromJSON, ApiErrorFromJSONTyped, type ApiErrorMeta, ApiErrorMetaFromJSON, ApiErrorMetaFromJSONTyped, ApiErrorMetaToJSON, ApiErrorMetaToJSONTyped, ApiErrorToJSON, ApiErrorToJSONTyped, type ApiResponse, type AuthEmailTemplate, type AuthEmailTemplateDefault, AuthEmailTemplateDefaultFromJSON, AuthEmailTemplateDefaultFromJSONTyped, type AuthEmailTemplateDefaultResponse, AuthEmailTemplateDefaultResponseFromJSON, AuthEmailTemplateDefaultResponseFromJSONTyped, AuthEmailTemplateDefaultResponseToJSON, AuthEmailTemplateDefaultResponseToJSONTyped, AuthEmailTemplateDefaultToJSON, AuthEmailTemplateDefaultToJSONTyped, type AuthEmailTemplateDeleteResponse, type AuthEmailTemplateDeleteResponseData, AuthEmailTemplateDeleteResponseDataFromJSON, AuthEmailTemplateDeleteResponseDataFromJSONTyped, AuthEmailTemplateDeleteResponseDataToJSON, AuthEmailTemplateDeleteResponseDataToJSONTyped, AuthEmailTemplateDeleteResponseFromJSON, AuthEmailTemplateDeleteResponseFromJSONTyped, AuthEmailTemplateDeleteResponseToJSON, AuthEmailTemplateDeleteResponseToJSONTyped, AuthEmailTemplateEditorTypeEnum, AuthEmailTemplateFromJSON, AuthEmailTemplateFromJSONTyped, type AuthEmailTemplateListResponse, AuthEmailTemplateListResponseFromJSON, AuthEmailTemplateListResponseFromJSONTyped, AuthEmailTemplateListResponseToJSON, AuthEmailTemplateListResponseToJSONTyped, type AuthEmailTemplatePreviewDraft, AuthEmailTemplatePreviewDraftFromJSON, AuthEmailTemplatePreviewDraftFromJSONTyped, AuthEmailTemplatePreviewDraftToJSON, AuthEmailTemplatePreviewDraftToJSONTyped, type AuthEmailTemplatePreviewRequest, AuthEmailTemplatePreviewRequestFromJSON, AuthEmailTemplatePreviewRequestFromJSONTyped, AuthEmailTemplatePreviewRequestToJSON, AuthEmailTemplatePreviewRequestToJSONTyped, type AuthEmailTemplatePreviewResponse, AuthEmailTemplatePreviewResponseFromJSON, AuthEmailTemplatePreviewResponseFromJSONTyped, AuthEmailTemplatePreviewResponseToJSON, AuthEmailTemplatePreviewResponseToJSONTyped, type AuthEmailTemplatePreviewResult, AuthEmailTemplatePreviewResultFromJSON, AuthEmailTemplatePreviewResultFromJSONTyped, AuthEmailTemplatePreviewResultToJSON, AuthEmailTemplatePreviewResultToJSONTyped, type AuthEmailTemplateResponse, AuthEmailTemplateResponseFromJSON, AuthEmailTemplateResponseFromJSONTyped, AuthEmailTemplateResponseToJSON, AuthEmailTemplateResponseToJSONTyped, type AuthEmailTemplateTestRequest, AuthEmailTemplateTestRequestFromJSON, AuthEmailTemplateTestRequestFromJSONTyped, AuthEmailTemplateTestRequestToJSON, AuthEmailTemplateTestRequestToJSONTyped, type AuthEmailTemplateTestResponse, AuthEmailTemplateTestResponseFromJSON, AuthEmailTemplateTestResponseFromJSONTyped, AuthEmailTemplateTestResponseToJSON, AuthEmailTemplateTestResponseToJSONTyped, type AuthEmailTemplateTestResult, AuthEmailTemplateTestResultFromJSON, AuthEmailTemplateTestResultFromJSONTyped, AuthEmailTemplateTestResultToJSON, AuthEmailTemplateTestResultToJSONTyped, AuthEmailTemplateToJSON, AuthEmailTemplateToJSONTyped, type AuthEmailTemplateVersion, AuthEmailTemplateVersionEditorTypeEnum, AuthEmailTemplateVersionFromJSON, AuthEmailTemplateVersionFromJSONTyped, AuthEmailTemplateVersionToJSON, AuthEmailTemplateVersionToJSONTyped, type AuthEmailTemplateVersionsResponse, AuthEmailTemplateVersionsResponseFromJSON, AuthEmailTemplateVersionsResponseFromJSONTyped, AuthEmailTemplateVersionsResponseToJSON, AuthEmailTemplateVersionsResponseToJSONTyped, AuthEmailTemplatesApi, type AuthEmailTemplatesApiBulkUpsertAuthEmailTemplatesOperationRequest, type AuthEmailTemplatesApiDeleteAuthEmailTemplateRequest, type AuthEmailTemplatesApiGetAuthEmailTemplateDefaultRequest, type AuthEmailTemplatesApiGetAuthEmailTemplateRequest, type AuthEmailTemplatesApiInterface, type AuthEmailTemplatesApiListAuthEmailTemplateVersionsRequest, type AuthEmailTemplatesApiPreviewAuthEmailTemplateRequest, type AuthEmailTemplatesApiRestoreAuthEmailTemplateVersionRequest, type AuthEmailTemplatesApiSendAuthEmailTemplateTestRequest, type AuthEmailTemplatesApiUpsertAuthEmailTemplateOperationRequest, AuthEmailType, AuthEmailTypeFromJSON, AuthEmailTypeFromJSONTyped, AuthEmailTypeToJSON, AuthEmailTypeToJSONTyped, AuthEmailVerificationApi, type AuthEmailVerificationApiConfirmEmailVerificationOperationRequest, type AuthEmailVerificationApiInterface, type AuthEmailVerificationApiResendEmailVerificationRequest, type AuthEmailVerificationApiSendEmailVerificationOperationRequest, AuthLoginApi, type AuthLoginApiInterface, type AuthLoginApiLoginEndUserRequest, type AuthLoginResponse, AuthLoginResponseFromJSON, AuthLoginResponseFromJSONTyped, AuthLoginResponseToJSON, AuthLoginResponseToJSONTyped, type AuthLoginResult, AuthLoginResultFromJSON, AuthLoginResultFromJSONTyped, type AuthLoginResultMfaChallenge, AuthLoginResultMfaChallengeFromJSON, AuthLoginResultMfaChallengeFromJSONTyped, AuthLoginResultMfaChallengeToJSON, AuthLoginResultMfaChallengeToJSONTyped, AuthLoginResultToJSON, AuthLoginResultToJSONTyped, AuthMFAApi, type AuthMFAApiDisableMfaRequest, type AuthMFAApiGetMfaStatusRequest, type AuthMFAApiInterface, type AuthMFAApiRegenerateBackupCodesRequest, type AuthMFAApiStartMfaEnrollmentRequest, type AuthMFAApiVerifyMfaChallengeRequest, type AuthMFAApiVerifyMfaChallengeWithBackupCodeRequest, type AuthMFAApiVerifyMfaEnrollmentRequest, AuthMagicLinksApi, type AuthMagicLinksApiInterface, type AuthMagicLinksApiSendMagicLinkRequest, type AuthMagicLinksApiVerifyMagicLinkRequest, AuthOAuthApi, type AuthOAuthApiDisconnectOAuthProviderRequest, type AuthOAuthApiGetOAuthAuthorizationUrlRequest, type AuthOAuthApiGetOAuthConnectionInfoRequest, type AuthOAuthApiGetOAuthTokensRequest, type AuthOAuthApiHandleOAuthCallbackRequest, type AuthOAuthApiInterface, type AuthOAuthApiRefreshOAuthTokensOperationRequest, AuthPasswordResetApi, type AuthPasswordResetApiForgotPasswordOperationRequest, type AuthPasswordResetApiInterface, type AuthPasswordResetApiResetEndUserPasswordRequest, type AuthPasswordResetApiValidateResetTokenOperationRequest, AuthPhoneApi, type AuthPhoneApiInterface, type AuthPhoneApiSendPhoneLoginOtpRequest, type AuthPhoneApiSendPhoneRegistrationOtpRequest, type AuthPhoneApiVerifyPhoneLoginRequest, type AuthPhoneApiVerifyPhoneRegistrationRequest, AuthRegistrationApi, type AuthRegistrationApiInterface, type AuthRegistrationApiRegisterEndUserRequest, type AuthResult, AuthResultFromJSON, AuthResultFromJSONTyped, type AuthResultResponse, AuthResultResponseFromJSON, AuthResultResponseFromJSONTyped, AuthResultResponseToJSON, AuthResultResponseToJSONTyped, AuthResultToJSON, AuthResultToJSONTyped, type AuthSession, AuthSessionFromJSON, AuthSessionFromJSONTyped, AuthSessionToJSON, AuthSessionToJSONTyped, AuthSessionsApi, type AuthSessionsApiInterface, type AuthSessionsApiRefreshEndUserTokenRequest, type AuthSessionsApiRevokeEndUserSessionRequest, type AuthTokens, AuthTokensFromJSON, AuthTokensFromJSONTyped, AuthTokensToJSON, AuthTokensToJSONTyped, type AuthUser, AuthUserFromJSON, AuthUserFromJSONTyped, AuthUserProfileApi, type AuthUserProfileApiInterface, type AuthUserProfileApiUpdateEndUserOperationRequest, type AuthUserResponse, type AuthUserResponseData, AuthUserResponseDataFromJSON, AuthUserResponseDataFromJSONTyped, AuthUserResponseDataToJSON, AuthUserResponseDataToJSONTyped, AuthUserResponseFromJSON, AuthUserResponseFromJSONTyped, AuthUserResponseToJSON, AuthUserResponseToJSONTyped, AuthUserStatusEnum, AuthUserToJSON, AuthUserToJSONTyped, AuthWebAuthnApi, type AuthWebAuthnApiDeleteWebAuthnCredentialRequest, type AuthWebAuthnApiInterface, type AuthWebAuthnApiRenameWebAuthnCredentialOperationRequest, type AuthWebAuthnApiStartWebAuthnAuthenticationRequest, type AuthWebAuthnApiStartWebAuthnRegistrationRequest, type AuthWebAuthnApiVerifyWebAuthnAuthenticationRequest, type AuthWebAuthnApiVerifyWebAuthnRegistrationRequest, BASE_PATH, BaseAPI, type BatchPublishWaaSEvents201Response, BatchPublishWaaSEvents201ResponseFromJSON, BatchPublishWaaSEvents201ResponseFromJSONTyped, BatchPublishWaaSEvents201ResponseToJSON, BatchPublishWaaSEvents201ResponseToJSONTyped, BlobApiResponse, type BulkRetryWebhookDeliveriesRequest, BulkRetryWebhookDeliveriesRequestFromJSON, BulkRetryWebhookDeliveriesRequestFromJSONTyped, BulkRetryWebhookDeliveriesRequestStatusEnum, BulkRetryWebhookDeliveriesRequestToJSON, BulkRetryWebhookDeliveriesRequestToJSONTyped, type BulkUpsertAuthEmailTemplatesRequest, BulkUpsertAuthEmailTemplatesRequestFromJSON, BulkUpsertAuthEmailTemplatesRequestFromJSONTyped, BulkUpsertAuthEmailTemplatesRequestToJSON, BulkUpsertAuthEmailTemplatesRequestToJSONTyped, type BulkUpsertAuthEmailTemplatesResponse, BulkUpsertAuthEmailTemplatesResponseFromJSON, BulkUpsertAuthEmailTemplatesResponseFromJSONTyped, BulkUpsertAuthEmailTemplatesResponseToJSON, BulkUpsertAuthEmailTemplatesResponseToJSONTyped, COLLECTION_FORMATS, type Category, CategoryFromJSON, CategoryFromJSONTyped, type CategoryListResponse, CategoryListResponseFromJSON, CategoryListResponseFromJSONTyped, CategoryListResponseToJSON, CategoryListResponseToJSONTyped, type CategoryResponse, CategoryResponseFromJSON, CategoryResponseFromJSONTyped, CategoryResponseToJSON, CategoryResponseToJSONTyped, CategoryToJSON, CategoryToJSONTyped, Configuration, type ConfigurationParameters, type ConfirmEmailVerificationRequest, ConfirmEmailVerificationRequestFromJSON, ConfirmEmailVerificationRequestFromJSONTyped, ConfirmEmailVerificationRequestToJSON, ConfirmEmailVerificationRequestToJSONTyped, type ConfirmEmailVerificationResponse, type ConfirmEmailVerificationResponseData, ConfirmEmailVerificationResponseDataFromJSON, ConfirmEmailVerificationResponseDataFromJSONTyped, ConfirmEmailVerificationResponseDataToJSON, ConfirmEmailVerificationResponseDataToJSONTyped, ConfirmEmailVerificationResponseFromJSON, ConfirmEmailVerificationResponseFromJSONTyped, ConfirmEmailVerificationResponseToJSON, ConfirmEmailVerificationResponseToJSONTyped, type ConsentHistoryEntry, ConsentHistoryEntryFromJSON, ConsentHistoryEntryFromJSONTyped, ConsentHistoryEntryToJSON, ConsentHistoryEntryToJSONTyped, type ConsentHistoryResponse, ConsentHistoryResponseFromJSON, ConsentHistoryResponseFromJSONTyped, ConsentHistoryResponseToJSON, ConsentHistoryResponseToJSONTyped, type ConsentRecordResponse, type ConsentRecordResponseData, ConsentRecordResponseDataFromJSON, ConsentRecordResponseDataFromJSONTyped, ConsentRecordResponseDataToJSON, ConsentRecordResponseDataToJSONTyped, ConsentRecordResponseFromJSON, ConsentRecordResponseFromJSONTyped, ConsentRecordResponseToJSON, ConsentRecordResponseToJSONTyped, type ConsentStatus, ConsentStatusFromJSON, ConsentStatusFromJSONTyped, type ConsentStatusResponse, ConsentStatusResponseFromJSON, ConsentStatusResponseFromJSONTyped, ConsentStatusResponseToJSON, ConsentStatusResponseToJSONTyped, ConsentStatusToJSON, ConsentStatusToJSONTyped, type ConsentWithdrawResponse, ConsentWithdrawResponseFromJSON, ConsentWithdrawResponseFromJSONTyped, ConsentWithdrawResponseToJSON, ConsentWithdrawResponseToJSONTyped, type Consume, type CreateCategoryRequest, CreateCategoryRequestFromJSON, CreateCategoryRequestFromJSONTyped, CreateCategoryRequestToJSON, CreateCategoryRequestToJSONTyped, type CreateSubscriberRequest, CreateSubscriberRequestFromJSON, CreateSubscriberRequestFromJSONTyped, CreateSubscriberRequestToJSON, CreateSubscriberRequestToJSONTyped, type CreateTemplateRequest, CreateTemplateRequestFromJSON, CreateTemplateRequestFromJSONTyped, CreateTemplateRequestToJSON, CreateTemplateRequestToJSONTyped, type CreateTopicRequest, CreateTopicRequestFromJSON, CreateTopicRequestFromJSONTyped, CreateTopicRequestToJSON, CreateTopicRequestToJSONTyped, type CreateWaaSApplication201Response, CreateWaaSApplication201ResponseFromJSON, CreateWaaSApplication201ResponseFromJSONTyped, CreateWaaSApplication201ResponseToJSON, CreateWaaSApplication201ResponseToJSONTyped, type CreateWaaSApplicationRequest, CreateWaaSApplicationRequestFromJSON, CreateWaaSApplicationRequestFromJSONTyped, CreateWaaSApplicationRequestToJSON, CreateWaaSApplicationRequestToJSONTyped, type CreateWaaSEndpoint201Response, CreateWaaSEndpoint201ResponseFromJSON, CreateWaaSEndpoint201ResponseFromJSONTyped, CreateWaaSEndpoint201ResponseToJSON, CreateWaaSEndpoint201ResponseToJSONTyped, type CreateWaaSEndpointRequest, CreateWaaSEndpointRequestFromJSON, CreateWaaSEndpointRequestFromJSONTyped, CreateWaaSEndpointRequestToJSON, CreateWaaSEndpointRequestToJSONTyped, type CreateWaaSEndpointResponse, CreateWaaSEndpointResponseFromJSON, CreateWaaSEndpointResponseFromJSONTyped, CreateWaaSEndpointResponseToJSON, CreateWaaSEndpointResponseToJSONTyped, type CreateWaaSEventType201Response, CreateWaaSEventType201ResponseFromJSON, CreateWaaSEventType201ResponseFromJSONTyped, CreateWaaSEventType201ResponseToJSON, CreateWaaSEventType201ResponseToJSONTyped, type CreateWaaSEventTypeRequest, CreateWaaSEventTypeRequestFromJSON, CreateWaaSEventTypeRequestFromJSONTyped, CreateWaaSEventTypeRequestToJSON, CreateWaaSEventTypeRequestToJSONTyped, type CreateWebhookRequest, CreateWebhookRequestFromJSON, CreateWebhookRequestFromJSONTyped, CreateWebhookRequestToJSON, CreateWebhookRequestToJSONTyped, DefaultConfig, type DeleteResult, type DeleteResultData, DeleteResultDataFromJSON, DeleteResultDataFromJSONTyped, DeleteResultDataToJSON, DeleteResultDataToJSONTyped, DeleteResultFromJSON, DeleteResultFromJSONTyped, DeleteResultToJSON, DeleteResultToJSONTyped, type Device, DeviceFromJSON, DeviceFromJSONTyped, type DeviceListResponse, DeviceListResponseFromJSON, DeviceListResponseFromJSONTyped, DeviceListResponseToJSON, DeviceListResponseToJSONTyped, DevicePlatformEnum, type DevicePushTopic, DevicePushTopicFromJSON, DevicePushTopicFromJSONTyped, type DevicePushTopicListResponse, DevicePushTopicListResponseFromJSON, DevicePushTopicListResponseFromJSONTyped, type DevicePushTopicListResponseMeta, DevicePushTopicListResponseMetaFromJSON, DevicePushTopicListResponseMetaFromJSONTyped, DevicePushTopicListResponseMetaToJSON, DevicePushTopicListResponseMetaToJSONTyped, DevicePushTopicListResponseToJSON, DevicePushTopicListResponseToJSONTyped, DevicePushTopicToJSON, DevicePushTopicToJSONTyped, type DeviceResponse, DeviceResponseFromJSON, DeviceResponseFromJSONTyped, DeviceResponseToJSON, DeviceResponseToJSONTyped, type DeviceStats, DeviceStatsFromJSON, DeviceStatsFromJSONTyped, type DeviceStatsResponse, DeviceStatsResponseFromJSON, DeviceStatsResponseFromJSONTyped, DeviceStatsResponseToJSON, DeviceStatsResponseToJSONTyped, DeviceStatsToJSON, DeviceStatsToJSONTyped, DeviceToJSON, DeviceToJSONTyped, DevicesApi, type DevicesApiDeleteDeviceRequest, type DevicesApiDeleteUserDevicesRequest, type DevicesApiGetDeviceRequest, type DevicesApiInterface, type DevicesApiListDevicesRequest, type DevicesApiRegisterDeviceOperationRequest, type EmailAddress, EmailAddressFromJSON, EmailAddressFromJSONTyped, EmailAddressToJSON, EmailAddressToJSONTyped, type EmailAttachment, EmailAttachmentDispositionEnum, EmailAttachmentFromJSON, EmailAttachmentFromJSONTyped, EmailAttachmentToJSON, EmailAttachmentToJSONTyped, type EmailEvent, EmailEventFromJSON, EmailEventFromJSONTyped, EmailEventToJSON, EmailEventToJSONTyped, type EmailEventsResponse, EmailEventsResponseFromJSON, EmailEventsResponseFromJSONTyped, EmailEventsResponseToJSON, EmailEventsResponseToJSONTyped, type EmailListResponse, EmailListResponseFromJSON, EmailListResponseFromJSONTyped, EmailListResponseToJSON, EmailListResponseToJSONTyped, type EmailMessage, EmailMessageFromJSON, EmailMessageFromJSONTyped, EmailMessageStatusEnum, EmailMessageToJSON, EmailMessageToJSONTyped, type EmailResponse, EmailResponseFromJSON, EmailResponseFromJSONTyped, EmailResponseToJSON, EmailResponseToJSONTyped, type EmailTrackingClickLink, EmailTrackingClickLinkFromJSON, EmailTrackingClickLinkFromJSONTyped, EmailTrackingClickLinkToJSON, EmailTrackingClickLinkToJSONTyped, type EmailTrackingClicks, EmailTrackingClicksFromJSON, EmailTrackingClicksFromJSONTyped, EmailTrackingClicksToJSON, EmailTrackingClicksToJSONTyped, type EmailTrackingData, EmailTrackingDataFromJSON, EmailTrackingDataFromJSONTyped, EmailTrackingDataToJSON, EmailTrackingDataToJSONTyped, type EmailTrackingOpens, EmailTrackingOpensFromJSON, EmailTrackingOpensFromJSONTyped, EmailTrackingOpensToJSON, EmailTrackingOpensToJSONTyped, type EmailTrackingResponse, EmailTrackingResponseFromJSON, EmailTrackingResponseFromJSONTyped, EmailTrackingResponseToJSON, EmailTrackingResponseToJSONTyped, EmailsApi, type EmailsApiGetEmailEventsRequest, type EmailsApiGetEmailRequest, type EmailsApiGetEmailTrackingRequest, type EmailsApiInterface, type EmailsApiListEmailsRequest, type EmailsApiSendBatchEmailOperationRequest, type EmailsApiSendEmailOperationRequest, type EndUserDeleteResponse, type EndUserDeleteResponseData, EndUserDeleteResponseDataFromJSON, EndUserDeleteResponseDataFromJSONTyped, EndUserDeleteResponseDataToJSON, EndUserDeleteResponseDataToJSONTyped, EndUserDeleteResponseFromJSON, EndUserDeleteResponseFromJSONTyped, EndUserDeleteResponseToJSON, EndUserDeleteResponseToJSONTyped, type ErrorContext, type ExecutionCancelResponse, type ExecutionCancelResponseData, ExecutionCancelResponseDataFromJSON, ExecutionCancelResponseDataFromJSONTyped, ExecutionCancelResponseDataStatusEnum, ExecutionCancelResponseDataToJSON, ExecutionCancelResponseDataToJSONTyped, ExecutionCancelResponseFromJSON, ExecutionCancelResponseFromJSONTyped, ExecutionCancelResponseToJSON, ExecutionCancelResponseToJSONTyped, type ExecutionResponse, ExecutionResponseFromJSON, ExecutionResponseFromJSONTyped, ExecutionResponseToJSON, ExecutionResponseToJSONTyped, type ExecutionRetryResponse, type ExecutionRetryResponseData, ExecutionRetryResponseDataFromJSON, ExecutionRetryResponseDataFromJSONTyped, ExecutionRetryResponseDataStatusEnum, ExecutionRetryResponseDataToJSON, ExecutionRetryResponseDataToJSONTyped, ExecutionRetryResponseFromJSON, ExecutionRetryResponseFromJSONTyped, ExecutionRetryResponseToJSON, ExecutionRetryResponseToJSONTyped, ExecutionsApi, type ExecutionsApiCancelExecutionRequest, type ExecutionsApiGetExecutionRequest, type ExecutionsApiInterface, type ExecutionsApiRetryExecutionRequest, type FetchAPI, FetchError, type FetchParams, type ForgotPasswordRequest, ForgotPasswordRequestFromJSON, ForgotPasswordRequestFromJSONTyped, ForgotPasswordRequestToJSON, ForgotPasswordRequestToJSONTyped, type GenerateSubscriberToken200Response, type GenerateSubscriberToken200ResponseData, GenerateSubscriberToken200ResponseDataFromJSON, GenerateSubscriberToken200ResponseDataFromJSONTyped, GenerateSubscriberToken200ResponseDataToJSON, GenerateSubscriberToken200ResponseDataToJSONTyped, GenerateSubscriberToken200ResponseFromJSON, GenerateSubscriberToken200ResponseFromJSONTyped, GenerateSubscriberToken200ResponseToJSON, GenerateSubscriberToken200ResponseToJSONTyped, type GenerateSubscriberTokenRequest, GenerateSubscriberTokenRequestFromJSON, GenerateSubscriberTokenRequestFromJSONTyped, GenerateSubscriberTokenRequestToJSON, GenerateSubscriberTokenRequestToJSONTyped, type GenerateWaaSPortalToken201Response, GenerateWaaSPortalToken201ResponseFromJSON, GenerateWaaSPortalToken201ResponseFromJSONTyped, GenerateWaaSPortalToken201ResponseToJSON, GenerateWaaSPortalToken201ResponseToJSONTyped, type GetWaaSEndpoint200Response, GetWaaSEndpoint200ResponseFromJSON, GetWaaSEndpoint200ResponseFromJSONTyped, GetWaaSEndpoint200ResponseToJSON, GetWaaSEndpoint200ResponseToJSONTyped, type GetWaaSUsage200Response, GetWaaSUsage200ResponseFromJSON, GetWaaSUsage200ResponseFromJSONTyped, GetWaaSUsage200ResponseToJSON, GetWaaSUsage200ResponseToJSONTyped, type HTTPBody, type HTTPHeaders, type HTTPMethod, type HTTPQuery, type HTTPRequestInit, type InAppNotification, InAppNotificationFromJSON, InAppNotificationFromJSONTyped, InAppNotificationPriorityEnum, InAppNotificationToJSON, InAppNotificationToJSONTyped, InboxApi, type InboxApiArchiveInboxNotificationRequest, type InboxApiArchiveSubscriberNotificationRequest, type InboxApiDeleteInboxNotificationRequest, type InboxApiDeleteSubscriberNotificationRequest, type InboxApiGenerateSubscriberTokenOperationRequest, type InboxApiGetInboxNotificationRequest, type InboxApiGetSubscriberNotificationRequest, type InboxApiGetUnreadCountRequest, type InboxApiInterface, type InboxApiListAllInboxRequest, type InboxApiListInboxRequest, type InboxApiListSubscriberNotificationsRequest, type InboxApiMarkAllInboxReadOperationRequest, type InboxApiMarkAllSubscriberNotificationsReadOperationRequest, type InboxApiMarkInboxReadOperationRequest, type InboxApiMarkSubscriberNotificationReadRequest, type InboxApiSendBatchInAppOperationRequest, type InboxApiSendInAppOperationRequest, type InboxApiUpdateSubscriberPreferencesOperationRequest, type InboxListMeta, InboxListMetaFromJSON, InboxListMetaFromJSONTyped, InboxListMetaToJSON, InboxListMetaToJSONTyped, type InboxListResponse, InboxListResponseFromJSON, InboxListResponseFromJSONTyped, InboxListResponseToJSON, InboxListResponseToJSONTyped, type InboxNotificationResponse, InboxNotificationResponseFromJSON, InboxNotificationResponseFromJSONTyped, InboxNotificationResponseToJSON, InboxNotificationResponseToJSONTyped, type InitOverrideFunction, JSONApiResponse, type Json, ListAllInboxStatusEnum, ListDevicesPlatformEnum, ListEmailsStatusEnum, ListPushStatusEnum, ListSlackMessagesStatusEnum, ListSmsStatusEnum, ListSubscribersStatusEnum, type ListWaaSApplications200Response, ListWaaSApplications200ResponseFromJSON, ListWaaSApplications200ResponseFromJSONTyped, ListWaaSApplications200ResponseToJSON, ListWaaSApplications200ResponseToJSONTyped, ListWaaSApplicationsStatusEnum, ListWaaSDeliveriesStatusEnum, type ListWaaSEndpointDeliveries200Response, ListWaaSEndpointDeliveries200ResponseFromJSON, ListWaaSEndpointDeliveries200ResponseFromJSONTyped, ListWaaSEndpointDeliveries200ResponseToJSON, ListWaaSEndpointDeliveries200ResponseToJSONTyped, type ListWaaSEndpoints200Response, ListWaaSEndpoints200ResponseFromJSON, ListWaaSEndpoints200ResponseFromJSONTyped, ListWaaSEndpoints200ResponseToJSON, ListWaaSEndpoints200ResponseToJSONTyped, ListWaaSEndpointsStatusEnum, type ListWaaSEventTypes200Response, ListWaaSEventTypes200ResponseFromJSON, ListWaaSEventTypes200ResponseFromJSONTyped, ListWaaSEventTypes200ResponseToJSON, ListWaaSEventTypes200ResponseToJSONTyped, ListWaaSEventTypesStatusEnum, ListWebhookDeliveriesStatusEnum, type LoginRequest, LoginRequestFromJSON, LoginRequestFromJSONTyped, LoginRequestToJSON, LoginRequestToJSONTyped, type MagicLinkSendRequest, MagicLinkSendRequestFromJSON, MagicLinkSendRequestFromJSONTyped, MagicLinkSendRequestToJSON, MagicLinkSendRequestToJSONTyped, type MagicLinkVerifyRequest, MagicLinkVerifyRequestFromJSON, MagicLinkVerifyRequestFromJSONTyped, MagicLinkVerifyRequestToJSON, MagicLinkVerifyRequestToJSONTyped, type MagicLinkVerifyResponse, type MagicLinkVerifyResponseData, MagicLinkVerifyResponseDataFromJSON, MagicLinkVerifyResponseDataFromJSONTyped, MagicLinkVerifyResponseDataToJSON, MagicLinkVerifyResponseDataToJSONTyped, MagicLinkVerifyResponseFromJSON, MagicLinkVerifyResponseFromJSONTyped, MagicLinkVerifyResponseToJSON, MagicLinkVerifyResponseToJSONTyped, type MarkAllInboxReadRequest, MarkAllInboxReadRequestFromJSON, MarkAllInboxReadRequestFromJSONTyped, MarkAllInboxReadRequestToJSON, MarkAllInboxReadRequestToJSONTyped, type MarkAllReadData, MarkAllReadDataFromJSON, MarkAllReadDataFromJSONTyped, MarkAllReadDataToJSON, MarkAllReadDataToJSONTyped, type MarkAllReadResponse, MarkAllReadResponseFromJSON, MarkAllReadResponseFromJSONTyped, MarkAllReadResponseToJSON, MarkAllReadResponseToJSONTyped, type MarkAllSubscriberNotificationsReadRequest, MarkAllSubscriberNotificationsReadRequestFromJSON, MarkAllSubscriberNotificationsReadRequestFromJSONTyped, MarkAllSubscriberNotificationsReadRequestToJSON, MarkAllSubscriberNotificationsReadRequestToJSONTyped, type MarkInboxReadRequest, MarkInboxReadRequestFromJSON, MarkInboxReadRequestFromJSONTyped, MarkInboxReadRequestToJSON, MarkInboxReadRequestToJSONTyped, type MfaBackupCodesResponse, type MfaBackupCodesResponseData, MfaBackupCodesResponseDataFromJSON, MfaBackupCodesResponseDataFromJSONTyped, MfaBackupCodesResponseDataToJSON, MfaBackupCodesResponseDataToJSONTyped, MfaBackupCodesResponseFromJSON, MfaBackupCodesResponseFromJSONTyped, MfaBackupCodesResponseToJSON, MfaBackupCodesResponseToJSONTyped, type MfaDisableRequest, MfaDisableRequestFromJSON, MfaDisableRequestFromJSONTyped, MfaDisableRequestToJSON, MfaDisableRequestToJSONTyped, type MfaDisableResponse, type MfaDisableResponseData, MfaDisableResponseDataFromJSON, MfaDisableResponseDataFromJSONTyped, MfaDisableResponseDataToJSON, MfaDisableResponseDataToJSONTyped, MfaDisableResponseFromJSON, MfaDisableResponseFromJSONTyped, MfaDisableResponseToJSON, MfaDisableResponseToJSONTyped, type MfaEnrollRequest, MfaEnrollRequestFromJSON, MfaEnrollRequestFromJSONTyped, MfaEnrollRequestToJSON, MfaEnrollRequestToJSONTyped, type MfaEnrollmentResponse, type MfaEnrollmentResponseData, MfaEnrollmentResponseDataFromJSON, MfaEnrollmentResponseDataFromJSONTyped, MfaEnrollmentResponseDataToJSON, MfaEnrollmentResponseDataToJSONTyped, MfaEnrollmentResponseFromJSON, MfaEnrollmentResponseFromJSONTyped, MfaEnrollmentResponseToJSON, MfaEnrollmentResponseToJSONTyped, type MfaRegenerateBackupCodesRequest, MfaRegenerateBackupCodesRequestFromJSON, MfaRegenerateBackupCodesRequestFromJSONTyped, MfaRegenerateBackupCodesRequestToJSON, MfaRegenerateBackupCodesRequestToJSONTyped, type MfaStatusResponse, type MfaStatusResponseData, MfaStatusResponseDataFromJSON, MfaStatusResponseDataFromJSONTyped, MfaStatusResponseDataStatusEnum, MfaStatusResponseDataToJSON, MfaStatusResponseDataToJSONTyped, MfaStatusResponseFromJSON, MfaStatusResponseFromJSONTyped, MfaStatusResponseToJSON, MfaStatusResponseToJSONTyped, type MfaVerifyBackupRequest, MfaVerifyBackupRequestFromJSON, MfaVerifyBackupRequestFromJSONTyped, MfaVerifyBackupRequestToJSON, MfaVerifyBackupRequestToJSONTyped, type MfaVerifyBackupResponse, type MfaVerifyBackupResponseData, MfaVerifyBackupResponseDataFromJSON, MfaVerifyBackupResponseDataFromJSONTyped, MfaVerifyBackupResponseDataToJSON, MfaVerifyBackupResponseDataToJSONTyped, MfaVerifyBackupResponseFromJSON, MfaVerifyBackupResponseFromJSONTyped, MfaVerifyBackupResponseToJSON, MfaVerifyBackupResponseToJSONTyped, type MfaVerifyEnrollmentRequest, MfaVerifyEnrollmentRequestFromJSON, MfaVerifyEnrollmentRequestFromJSONTyped, MfaVerifyEnrollmentRequestToJSON, MfaVerifyEnrollmentRequestToJSONTyped, type MfaVerifyEnrollmentResponse, type MfaVerifyEnrollmentResponseData, MfaVerifyEnrollmentResponseDataFromJSON, MfaVerifyEnrollmentResponseDataFromJSONTyped, MfaVerifyEnrollmentResponseDataToJSON, MfaVerifyEnrollmentResponseDataToJSONTyped, MfaVerifyEnrollmentResponseFromJSON, MfaVerifyEnrollmentResponseFromJSONTyped, MfaVerifyEnrollmentResponseToJSON, MfaVerifyEnrollmentResponseToJSONTyped, type MfaVerifyRequest, MfaVerifyRequestFromJSON, MfaVerifyRequestFromJSONTyped, MfaVerifyRequestToJSON, MfaVerifyRequestToJSONTyped, type Middleware, type ModelPropertyNaming, type OAuthAuthorizationUrlResponse, type OAuthAuthorizationUrlResponseData, OAuthAuthorizationUrlResponseDataFromJSON, OAuthAuthorizationUrlResponseDataFromJSONTyped, OAuthAuthorizationUrlResponseDataToJSON, OAuthAuthorizationUrlResponseDataToJSONTyped, OAuthAuthorizationUrlResponseFromJSON, OAuthAuthorizationUrlResponseFromJSONTyped, OAuthAuthorizationUrlResponseToJSON, OAuthAuthorizationUrlResponseToJSONTyped, type OAuthCallbackRequest, OAuthCallbackRequestFromJSON, OAuthCallbackRequestFromJSONTyped, OAuthCallbackRequestToJSON, OAuthCallbackRequestToJSONTyped, type OAuthCallbackResponse, type OAuthCallbackResponseData, OAuthCallbackResponseDataFromJSON, OAuthCallbackResponseDataFromJSONTyped, OAuthCallbackResponseDataToJSON, OAuthCallbackResponseDataToJSONTyped, OAuthCallbackResponseFromJSON, OAuthCallbackResponseFromJSONTyped, OAuthCallbackResponseToJSON, OAuthCallbackResponseToJSONTyped, type OAuthConnection, OAuthConnectionFromJSON, OAuthConnectionFromJSONTyped, type OAuthConnectionInfoResponse, type OAuthConnectionInfoResponseData, OAuthConnectionInfoResponseDataFromJSON, OAuthConnectionInfoResponseDataFromJSONTyped, OAuthConnectionInfoResponseDataToJSON, OAuthConnectionInfoResponseDataToJSONTyped, OAuthConnectionInfoResponseFromJSON, OAuthConnectionInfoResponseFromJSONTyped, OAuthConnectionInfoResponseToJSON, OAuthConnectionInfoResponseToJSONTyped, OAuthConnectionToJSON, OAuthConnectionToJSONTyped, type OAuthConnectionsResponse, type OAuthConnectionsResponseData, OAuthConnectionsResponseDataFromJSON, OAuthConnectionsResponseDataFromJSONTyped, OAuthConnectionsResponseDataToJSON, OAuthConnectionsResponseDataToJSONTyped, OAuthConnectionsResponseFromJSON, OAuthConnectionsResponseFromJSONTyped, OAuthConnectionsResponseToJSON, OAuthConnectionsResponseToJSONTyped, type OAuthProvider, OAuthProviderFromJSON, OAuthProviderFromJSONTyped, type OAuthProviderInfo, OAuthProviderInfoFromJSON, OAuthProviderInfoFromJSONTyped, OAuthProviderInfoToJSON, OAuthProviderInfoToJSONTyped, OAuthProviderToJSON, OAuthProviderToJSONTyped, type OAuthProvidersResponse, type OAuthProvidersResponseData, OAuthProvidersResponseDataFromJSON, OAuthProvidersResponseDataFromJSONTyped, OAuthProvidersResponseDataToJSON, OAuthProvidersResponseDataToJSONTyped, OAuthProvidersResponseFromJSON, OAuthProvidersResponseFromJSONTyped, OAuthProvidersResponseToJSON, OAuthProvidersResponseToJSONTyped, type OAuthTokensRefreshResponse, type OAuthTokensRefreshResponseData, OAuthTokensRefreshResponseDataFromJSON, OAuthTokensRefreshResponseDataFromJSONTyped, OAuthTokensRefreshResponseDataToJSON, OAuthTokensRefreshResponseDataToJSONTyped, OAuthTokensRefreshResponseFromJSON, OAuthTokensRefreshResponseFromJSONTyped, OAuthTokensRefreshResponseToJSON, OAuthTokensRefreshResponseToJSONTyped, type OAuthTokensResponse, type OAuthTokensResponseData, OAuthTokensResponseDataFromJSON, OAuthTokensResponseDataFromJSONTyped, OAuthTokensResponseDataToJSON, OAuthTokensResponseDataToJSONTyped, OAuthTokensResponseFromJSON, OAuthTokensResponseFromJSONTyped, OAuthTokensResponseToJSON, OAuthTokensResponseToJSONTyped, type PaginationMeta, PaginationMetaFromJSON, PaginationMetaFromJSONTyped, PaginationMetaToJSON, PaginationMetaToJSONTyped, type PasswordRequirements, PasswordRequirementsFromJSON, PasswordRequirementsFromJSONTyped, type PasswordRequirementsResponse, type PasswordRequirementsResponseData, PasswordRequirementsResponseDataFromJSON, PasswordRequirementsResponseDataFromJSONTyped, PasswordRequirementsResponseDataToJSON, PasswordRequirementsResponseDataToJSONTyped, PasswordRequirementsResponseFromJSON, PasswordRequirementsResponseFromJSONTyped, PasswordRequirementsResponseToJSON, PasswordRequirementsResponseToJSONTyped, PasswordRequirementsToJSON, PasswordRequirementsToJSONTyped, type PhoneAuthAvailabilityResponse, type PhoneAuthAvailabilityResponseData, PhoneAuthAvailabilityResponseDataFromJSON, PhoneAuthAvailabilityResponseDataFromJSONTyped, PhoneAuthAvailabilityResponseDataToJSON, PhoneAuthAvailabilityResponseDataToJSONTyped, PhoneAuthAvailabilityResponseFromJSON, PhoneAuthAvailabilityResponseFromJSONTyped, PhoneAuthAvailabilityResponseToJSON, PhoneAuthAvailabilityResponseToJSONTyped, type PhoneLoginVerifyRequest, PhoneLoginVerifyRequestFromJSON, PhoneLoginVerifyRequestFromJSONTyped, PhoneLoginVerifyRequestToJSON, PhoneLoginVerifyRequestToJSONTyped, type PhoneOtpSendRequest, PhoneOtpSendRequestFromJSON, PhoneOtpSendRequestFromJSONTyped, PhoneOtpSendRequestToJSON, PhoneOtpSendRequestToJSONTyped, type PhoneOtpSentResponse, type PhoneOtpSentResponseData, PhoneOtpSentResponseDataFromJSON, PhoneOtpSentResponseDataFromJSONTyped, PhoneOtpSentResponseDataToJSON, PhoneOtpSentResponseDataToJSONTyped, PhoneOtpSentResponseFromJSON, PhoneOtpSentResponseFromJSONTyped, PhoneOtpSentResponseToJSON, PhoneOtpSentResponseToJSONTyped, type PhoneRegisterVerifyRequest, PhoneRegisterVerifyRequestFromJSON, PhoneRegisterVerifyRequestFromJSONTyped, PhoneRegisterVerifyRequestToJSON, PhoneRegisterVerifyRequestToJSONTyped, type PreferenceListResponse, PreferenceListResponseFromJSON, PreferenceListResponseFromJSONTyped, PreferenceListResponseToJSON, PreferenceListResponseToJSONTyped, type PublishWaaSEvent201Response, PublishWaaSEvent201ResponseFromJSON, PublishWaaSEvent201ResponseFromJSONTyped, PublishWaaSEvent201ResponseToJSON, PublishWaaSEvent201ResponseToJSONTyped, PushApi, type PushApiGetPushRequest, type PushApiInterface, type PushApiListDevicePushTopicsRequest, type PushApiListPushRequest, type PushApiListPushTopicDevicesRequest, type PushApiSendPushOperationRequest, type PushApiSendPushToTopicOperationRequest, type PushApiSubscribePushTopicOperationRequest, type PushApiUnsubscribePushTopicRequest, type PushDetailResponse, PushDetailResponseFromJSON, PushDetailResponseFromJSONTyped, PushDetailResponseToJSON, PushDetailResponseToJSONTyped, type PushEvent, PushEventFromJSON, PushEventFromJSONTyped, PushEventToJSON, PushEventToJSONTyped, type PushListResponse, PushListResponseFromJSON, PushListResponseFromJSONTyped, PushListResponseToJSON, PushListResponseToJSONTyped, type PushMessage, type PushMessageDetail, type PushMessageDetailAllOfActionButtons, PushMessageDetailAllOfActionButtonsFromJSON, PushMessageDetailAllOfActionButtonsFromJSONTyped, PushMessageDetailAllOfActionButtonsToJSON, PushMessageDetailAllOfActionButtonsToJSONTyped, PushMessageDetailFromJSON, PushMessageDetailFromJSONTyped, PushMessageDetailPlatformEnum, PushMessageDetailStatusEnum, PushMessageDetailToJSON, PushMessageDetailToJSONTyped, PushMessageFromJSON, PushMessageFromJSONTyped, PushMessagePlatformEnum, PushMessageStatusEnum, PushMessageToJSON, PushMessageToJSONTyped, type PushStatsData, PushStatsDataFromJSON, PushStatsDataFromJSONTyped, PushStatsDataToJSON, PushStatsDataToJSONTyped, type PushStatsResponse, PushStatsResponseFromJSON, PushStatsResponseFromJSONTyped, PushStatsResponseToJSON, PushStatsResponseToJSONTyped, type PushTopicDevice, PushTopicDeviceFromJSON, PushTopicDeviceFromJSONTyped, type PushTopicDeviceListResponse, PushTopicDeviceListResponseFromJSON, PushTopicDeviceListResponseFromJSONTyped, PushTopicDeviceListResponseToJSON, PushTopicDeviceListResponseToJSONTyped, PushTopicDevicePlatformEnum, PushTopicDeviceToJSON, PushTopicDeviceToJSONTyped, type PushTopicSubscribeData, PushTopicSubscribeDataFromJSON, PushTopicSubscribeDataFromJSONTyped, PushTopicSubscribeDataToJSON, PushTopicSubscribeDataToJSONTyped, type PushTopicSubscribeResponse, PushTopicSubscribeResponseFromJSON, PushTopicSubscribeResponseFromJSONTyped, PushTopicSubscribeResponseToJSON, PushTopicSubscribeResponseToJSONTyped, type PushTopicUnsubscribeData, PushTopicUnsubscribeDataFromJSON, PushTopicUnsubscribeDataFromJSONTyped, PushTopicUnsubscribeDataToJSON, PushTopicUnsubscribeDataToJSONTyped, type PushTopicUnsubscribeResponse, PushTopicUnsubscribeResponseFromJSON, PushTopicUnsubscribeResponseFromJSONTyped, PushTopicUnsubscribeResponseToJSON, PushTopicUnsubscribeResponseToJSONTyped, type RefreshOAuthTokensRequest, RefreshOAuthTokensRequestFromJSON, RefreshOAuthTokensRequestFromJSONTyped, RefreshOAuthTokensRequestToJSON, RefreshOAuthTokensRequestToJSONTyped, type RefreshSessionRequest, RefreshSessionRequestFromJSON, RefreshSessionRequestFromJSONTyped, RefreshSessionRequestToJSON, RefreshSessionRequestToJSONTyped, type RefreshTokenResponse, type RefreshTokenResponseData, RefreshTokenResponseDataFromJSON, RefreshTokenResponseDataFromJSONTyped, RefreshTokenResponseDataToJSON, RefreshTokenResponseDataToJSONTyped, RefreshTokenResponseFromJSON, RefreshTokenResponseFromJSONTyped, RefreshTokenResponseToJSON, RefreshTokenResponseToJSONTyped, type RegisterDeviceRequest, RegisterDeviceRequestFromJSON, RegisterDeviceRequestFromJSONTyped, RegisterDeviceRequestPlatformEnum, RegisterDeviceRequestToJSON, RegisterDeviceRequestToJSONTyped, type RegisterRequest, RegisterRequestFromJSON, RegisterRequestFromJSONTyped, RegisterRequestToJSON, RegisterRequestToJSONTyped, type RemoveTopicSubscribersRequest, RemoveTopicSubscribersRequestFromJSON, RemoveTopicSubscribersRequestFromJSONTyped, RemoveTopicSubscribersRequestToJSON, RemoveTopicSubscribersRequestToJSONTyped, type RenameWebAuthnCredentialRequest, RenameWebAuthnCredentialRequestFromJSON, RenameWebAuthnCredentialRequestFromJSONTyped, RenameWebAuthnCredentialRequestToJSON, RenameWebAuthnCredentialRequestToJSONTyped, type RenderTemplateRequest, RenderTemplateRequestFromJSON, RenderTemplateRequestFromJSONTyped, RenderTemplateRequestToJSON, RenderTemplateRequestToJSONTyped, type ReplayWebhookEventsRequest, ReplayWebhookEventsRequestFromJSON, ReplayWebhookEventsRequestFromJSONTyped, ReplayWebhookEventsRequestToJSON, ReplayWebhookEventsRequestToJSONTyped, type RequestContext, type RequestMeta, RequestMetaFromJSON, RequestMetaFromJSONTyped, RequestMetaToJSON, RequestMetaToJSONTyped, type RequestOpts, RequiredError, type ResetPasswordRequest, ResetPasswordRequestFromJSON, ResetPasswordRequestFromJSONTyped, ResetPasswordRequestToJSON, ResetPasswordRequestToJSONTyped, type ResetPasswordResponse, ResetPasswordResponseFromJSON, ResetPasswordResponseFromJSONTyped, ResetPasswordResponseToJSON, ResetPasswordResponseToJSONTyped, type ResponseContext, ResponseError, type ResponseTransformer, type ResubscribeRequest, ResubscribeRequestChannelEnum, ResubscribeRequestFromJSON, ResubscribeRequestFromJSONTyped, ResubscribeRequestToJSON, ResubscribeRequestToJSONTyped, type ResubscribeResponse, ResubscribeResponseFromJSON, ResubscribeResponseFromJSONTyped, ResubscribeResponseToJSON, ResubscribeResponseToJSONTyped, type RevokeAllSessionsResponse, type RevokeAllSessionsResponseData, RevokeAllSessionsResponseDataFromJSON, RevokeAllSessionsResponseDataFromJSONTyped, RevokeAllSessionsResponseDataToJSON, RevokeAllSessionsResponseDataToJSONTyped, RevokeAllSessionsResponseFromJSON, RevokeAllSessionsResponseFromJSONTyped, RevokeAllSessionsResponseToJSON, RevokeAllSessionsResponseToJSONTyped, type RevokeSessionRequest, RevokeSessionRequestFromJSON, RevokeSessionRequestFromJSONTyped, RevokeSessionRequestToJSON, RevokeSessionRequestToJSONTyped, SDK_VERSION, SMSApi, type SMSApiGetSmsRequest, type SMSApiInterface, type SMSApiListSmsRequest, type SMSApiSendBatchSmsOperationRequest, type SMSApiSendSmsOperationRequest, type SMSApiSendTestSmsOperationRequest, type SMSApiUpsertSmsConfigOperationRequest, type SendBatchEmailRequest, SendBatchEmailRequestFromJSON, SendBatchEmailRequestFromJSONTyped, SendBatchEmailRequestToJSON, SendBatchEmailRequestToJSONTyped, type SendBatchEmailResponse, SendBatchEmailResponseFromJSON, SendBatchEmailResponseFromJSONTyped, SendBatchEmailResponseToJSON, SendBatchEmailResponseToJSONTyped, type SendBatchEmailResult, SendBatchEmailResultFromJSON, SendBatchEmailResultFromJSONTyped, type SendBatchEmailResultItem, SendBatchEmailResultItemFromJSON, SendBatchEmailResultItemFromJSONTyped, SendBatchEmailResultItemToJSON, SendBatchEmailResultItemToJSONTyped, SendBatchEmailResultToJSON, SendBatchEmailResultToJSONTyped, type SendBatchInAppMeta, SendBatchInAppMetaFromJSON, SendBatchInAppMetaFromJSONTyped, SendBatchInAppMetaToJSON, SendBatchInAppMetaToJSONTyped, type SendBatchInAppRequest, SendBatchInAppRequestFromJSON, SendBatchInAppRequestFromJSONTyped, SendBatchInAppRequestToJSON, SendBatchInAppRequestToJSONTyped, type SendBatchInAppResponse, SendBatchInAppResponseFromJSON, SendBatchInAppResponseFromJSONTyped, SendBatchInAppResponseToJSON, SendBatchInAppResponseToJSONTyped, type SendBatchSmsData, SendBatchSmsDataFromJSON, SendBatchSmsDataFromJSONTyped, SendBatchSmsDataToJSON, SendBatchSmsDataToJSONTyped, type SendBatchSmsRequest, SendBatchSmsRequestFromJSON, SendBatchSmsRequestFromJSONTyped, SendBatchSmsRequestToJSON, SendBatchSmsRequestToJSONTyped, type SendBatchSmsResponse, SendBatchSmsResponseFromJSON, SendBatchSmsResponseFromJSONTyped, SendBatchSmsResponseToJSON, SendBatchSmsResponseToJSONTyped, type SendEmailRequest, SendEmailRequestFromJSON, SendEmailRequestFromJSONTyped, SendEmailRequestToJSON, SendEmailRequestToJSONTyped, type SendEmailResponse, type SendEmailResponseData, SendEmailResponseDataFromJSON, SendEmailResponseDataFromJSONTyped, SendEmailResponseDataStatusEnum, SendEmailResponseDataToJSON, SendEmailResponseDataToJSONTyped, SendEmailResponseFromJSON, SendEmailResponseFromJSONTyped, type SendEmailResponseMeta, SendEmailResponseMetaFromJSON, SendEmailResponseMetaFromJSONTyped, SendEmailResponseMetaToJSON, SendEmailResponseMetaToJSONTyped, SendEmailResponseToJSON, SendEmailResponseToJSONTyped, type SendEmailVerificationRequest, SendEmailVerificationRequestFromJSON, SendEmailVerificationRequestFromJSONTyped, SendEmailVerificationRequestToJSON, SendEmailVerificationRequestToJSONTyped, type SendInAppMeta, SendInAppMetaFromJSON, SendInAppMetaFromJSONTyped, SendInAppMetaToJSON, SendInAppMetaToJSONTyped, type SendInAppRequest, SendInAppRequestFromJSON, SendInAppRequestFromJSONTyped, SendInAppRequestPriorityEnum, SendInAppRequestToJSON, SendInAppRequestToJSONTyped, type SendInAppResponse, SendInAppResponseFromJSON, SendInAppResponseFromJSONTyped, SendInAppResponseToJSON, SendInAppResponseToJSONTyped, type SendPushRequest, type SendPushRequestActionButtonsInner, SendPushRequestActionButtonsInnerFromJSON, SendPushRequestActionButtonsInnerFromJSONTyped, SendPushRequestActionButtonsInnerToJSON, SendPushRequestActionButtonsInnerToJSONTyped, SendPushRequestFromJSON, SendPushRequestFromJSONTyped, SendPushRequestToJSON, SendPushRequestToJSONTyped, type SendPushResponse, type SendPushResponseData, SendPushResponseDataFromJSON, SendPushResponseDataFromJSONTyped, SendPushResponseDataToJSON, SendPushResponseDataToJSONTyped, SendPushResponseFromJSON, SendPushResponseFromJSONTyped, SendPushResponseToJSON, SendPushResponseToJSONTyped, type SendPushToTopicData, SendPushToTopicDataFromJSON, SendPushToTopicDataFromJSONTyped, SendPushToTopicDataToJSON, SendPushToTopicDataToJSONTyped, type SendPushToTopicRequest, SendPushToTopicRequestFromJSON, SendPushToTopicRequestFromJSONTyped, SendPushToTopicRequestToJSON, SendPushToTopicRequestToJSONTyped, type SendPushToTopicResponse, SendPushToTopicResponseFromJSON, SendPushToTopicResponseFromJSONTyped, SendPushToTopicResponseToJSON, SendPushToTopicResponseToJSONTyped, type SendSlackMessageRequest, SendSlackMessageRequestFromJSON, SendSlackMessageRequestFromJSONTyped, SendSlackMessageRequestToJSON, SendSlackMessageRequestToJSONTyped, type SendSlackMessageResponse, SendSlackMessageResponseFromJSON, SendSlackMessageResponseFromJSONTyped, SendSlackMessageResponseToJSON, SendSlackMessageResponseToJSONTyped, type SendSlackMessageResult, SendSlackMessageResultFromJSON, SendSlackMessageResultFromJSONTyped, SendSlackMessageResultToJSON, SendSlackMessageResultToJSONTyped, type SendSmsData, SendSmsDataFromJSON, SendSmsDataFromJSONTyped, SendSmsDataToJSON, SendSmsDataToJSONTyped, type SendSmsRequest, SendSmsRequestFromJSON, SendSmsRequestFromJSONTyped, SendSmsRequestToJSON, SendSmsRequestToJSONTyped, type SendSmsResponse, SendSmsResponseFromJSON, SendSmsResponseFromJSONTyped, SendSmsResponseToJSON, SendSmsResponseToJSONTyped, type SendTestSmsData, SendTestSmsDataFromJSON, SendTestSmsDataFromJSONTyped, SendTestSmsDataToJSON, SendTestSmsDataToJSONTyped, type SendTestSmsRequest, SendTestSmsRequestFromJSON, SendTestSmsRequestFromJSONTyped, SendTestSmsRequestToJSON, SendTestSmsRequestToJSONTyped, type SendTestSmsResponse, SendTestSmsResponseFromJSON, SendTestSmsResponseFromJSONTyped, SendTestSmsResponseToJSON, SendTestSmsResponseToJSONTyped, type SendWebhookTestEventRequest, SendWebhookTestEventRequestFromJSON, SendWebhookTestEventRequestFromJSONTyped, SendWebhookTestEventRequestToJSON, SendWebhookTestEventRequestToJSONTyped, type SessionListResponse, type SessionListResponseData, SessionListResponseDataFromJSON, SessionListResponseDataFromJSONTyped, type SessionListResponseDataSessionInfo, SessionListResponseDataSessionInfoFromJSON, SessionListResponseDataSessionInfoFromJSONTyped, SessionListResponseDataSessionInfoToJSON, SessionListResponseDataSessionInfoToJSONTyped, SessionListResponseDataToJSON, SessionListResponseDataToJSONTyped, SessionListResponseFromJSON, SessionListResponseFromJSONTyped, SessionListResponseToJSON, SessionListResponseToJSONTyped, type SetPreferencesRequest, SetPreferencesRequestFromJSON, SetPreferencesRequestFromJSONTyped, type SetPreferencesRequestPreferencesInner, SetPreferencesRequestPreferencesInnerFromJSON, SetPreferencesRequestPreferencesInnerFromJSONTyped, SetPreferencesRequestPreferencesInnerToJSON, SetPreferencesRequestPreferencesInnerToJSONTyped, SetPreferencesRequestToJSON, SetPreferencesRequestToJSONTyped, SlackApi, type SlackApiGetSlackMessageRequest, type SlackApiInterface, type SlackApiListSlackMessagesRequest, type SlackApiSendSlackMessageOperationRequest, type SlackMessage, SlackMessageFromJSON, SlackMessageFromJSONTyped, type SlackMessageListResponse, SlackMessageListResponseFromJSON, SlackMessageListResponseFromJSONTyped, type SlackMessageListResponseMeta, SlackMessageListResponseMetaFromJSON, SlackMessageListResponseMetaFromJSONTyped, SlackMessageListResponseMetaToJSON, SlackMessageListResponseMetaToJSONTyped, SlackMessageListResponseToJSON, SlackMessageListResponseToJSONTyped, type SlackMessageResponse, SlackMessageResponseFromJSON, SlackMessageResponseFromJSONTyped, SlackMessageResponseToJSON, SlackMessageResponseToJSONTyped, SlackMessageStatus, SlackMessageStatusFromJSON, SlackMessageStatusFromJSONTyped, SlackMessageStatusToJSON, SlackMessageStatusToJSONTyped, type SlackMessageSummary, SlackMessageSummaryFromJSON, SlackMessageSummaryFromJSONTyped, SlackMessageSummaryToJSON, SlackMessageSummaryToJSONTyped, SlackMessageToJSON, SlackMessageToJSONTyped, type SmsBatchResultMessage, SmsBatchResultMessageFromJSON, SmsBatchResultMessageFromJSONTyped, SmsBatchResultMessageToJSON, SmsBatchResultMessageToJSONTyped, type SmsBatchResultSummary, SmsBatchResultSummaryFromJSON, SmsBatchResultSummaryFromJSONTyped, SmsBatchResultSummaryToJSON, SmsBatchResultSummaryToJSONTyped, type SmsConfig, type SmsConfigDeleteResponse, type SmsConfigDeleteResponseData, SmsConfigDeleteResponseDataFromJSON, SmsConfigDeleteResponseDataFromJSONTyped, SmsConfigDeleteResponseDataToJSON, SmsConfigDeleteResponseDataToJSONTyped, SmsConfigDeleteResponseFromJSON, SmsConfigDeleteResponseFromJSONTyped, SmsConfigDeleteResponseToJSON, SmsConfigDeleteResponseToJSONTyped, SmsConfigFromJSON, SmsConfigFromJSONTyped, type SmsConfigResponse, SmsConfigResponseFromJSON, SmsConfigResponseFromJSONTyped, SmsConfigResponseToJSON, SmsConfigResponseToJSONTyped, SmsConfigToJSON, SmsConfigToJSONTyped, type SmsDetailResponse, SmsDetailResponseFromJSON, SmsDetailResponseFromJSONTyped, SmsDetailResponseToJSON, SmsDetailResponseToJSONTyped, type SmsListResponse, SmsListResponseFromJSON, SmsListResponseFromJSONTyped, type SmsListResponseMeta, SmsListResponseMetaFromJSON, SmsListResponseMetaFromJSONTyped, SmsListResponseMetaToJSON, SmsListResponseMetaToJSONTyped, SmsListResponseToJSON, SmsListResponseToJSONTyped, type SmsMessage, type SmsMessageDetail, SmsMessageDetailFromJSON, SmsMessageDetailFromJSONTyped, SmsMessageDetailStatusEnum, SmsMessageDetailToJSON, SmsMessageDetailToJSONTyped, SmsMessageFromJSON, SmsMessageFromJSONTyped, SmsMessageStatusEnum, SmsMessageToJSON, SmsMessageToJSONTyped, type SubscribePushTopicRequest, SubscribePushTopicRequestFromJSON, SubscribePushTopicRequestFromJSONTyped, SubscribePushTopicRequestToJSON, SubscribePushTopicRequestToJSONTyped, type Subscriber, SubscriberFromJSON, SubscriberFromJSONTyped, type SubscriberListResponse, SubscriberListResponseFromJSON, SubscriberListResponseFromJSONTyped, SubscriberListResponseToJSON, SubscriberListResponseToJSONTyped, type SubscriberPreference, SubscriberPreferenceChannelEnum, SubscriberPreferenceFromJSON, SubscriberPreferenceFromJSONTyped, SubscriberPreferenceToJSON, SubscriberPreferenceToJSONTyped, type SubscriberResponse, SubscriberResponseFromJSON, SubscriberResponseFromJSONTyped, SubscriberResponseToJSON, SubscriberResponseToJSONTyped, SubscriberStatusEnum, SubscriberToJSON, SubscriberToJSONTyped, SubscribersApi, type SubscribersApiCreateCategoryOperationRequest, type SubscribersApiCreateSubscriberOperationRequest, type SubscribersApiDeleteCategoryRequest, type SubscribersApiDeleteSubscriberRequest, type SubscribersApiGetCategoryRequest, type SubscribersApiGetSubscriberByExternalIdRequest, type SubscribersApiGetSubscriberConsentHistoryRequest, type SubscribersApiGetSubscriberConsentRequest, type SubscribersApiGetSubscriberPreferencesRequest, type SubscribersApiGetSubscriberRequest, type SubscribersApiGetSubscriberUnsubscribesRequest, type SubscribersApiInterface, type SubscribersApiListSubscribersRequest, type SubscribersApiRecordSubscriberConsentRequest, type SubscribersApiResubscribeSubscriberRequest, type SubscribersApiSetSubscriberPreferencesRequest, type SubscribersApiUnsubscribeSubscriberRequest, type SubscribersApiUpdateCategoryOperationRequest, type SubscribersApiUpdateSubscriberOperationRequest, type SubscribersApiWithdrawSubscriberConsentOperationRequest, type SuccessResult, SuccessResultFromJSON, SuccessResultFromJSONTyped, SuccessResultToJSON, SuccessResultToJSONTyped, type Template, TemplateFromJSON, TemplateFromJSONTyped, type TemplateListResponse, TemplateListResponseFromJSON, TemplateListResponseFromJSONTyped, TemplateListResponseToJSON, TemplateListResponseToJSONTyped, type TemplateRenderResponse, TemplateRenderResponseFromJSON, TemplateRenderResponseFromJSONTyped, TemplateRenderResponseToJSON, TemplateRenderResponseToJSONTyped, type TemplateRenderedContent, TemplateRenderedContentFromJSON, TemplateRenderedContentFromJSONTyped, TemplateRenderedContentToJSON, TemplateRenderedContentToJSONTyped, type TemplateResponse, TemplateResponseFromJSON, TemplateResponseFromJSONTyped, TemplateResponseToJSON, TemplateResponseToJSONTyped, TemplateToJSON, TemplateToJSONTyped, TemplatesApi, type TemplatesApiCreateTemplateOperationRequest, type TemplatesApiDeleteTemplateRequest, type TemplatesApiGetTemplateRequest, type TemplatesApiInterface, type TemplatesApiListTemplatesRequest, type TemplatesApiRenderTemplateOperationRequest, type TemplatesApiUpdateTemplateOperationRequest, type TestWebhookTransformRequest, TestWebhookTransformRequestFromJSON, TestWebhookTransformRequestFromJSONTyped, TestWebhookTransformRequestToJSON, TestWebhookTransformRequestToJSONTyped, TextApiResponse, type Topic, type TopicDeleteResponse, type TopicDeleteResponseData, TopicDeleteResponseDataFromJSON, TopicDeleteResponseDataFromJSONTyped, TopicDeleteResponseDataToJSON, TopicDeleteResponseDataToJSONTyped, TopicDeleteResponseFromJSON, TopicDeleteResponseFromJSONTyped, TopicDeleteResponseToJSON, TopicDeleteResponseToJSONTyped, TopicFromJSON, TopicFromJSONTyped, type TopicListResponse, TopicListResponseFromJSON, TopicListResponseFromJSONTyped, TopicListResponseToJSON, TopicListResponseToJSONTyped, type TopicResponse, TopicResponseFromJSON, TopicResponseFromJSONTyped, TopicResponseToJSON, TopicResponseToJSONTyped, type TopicStatsData, TopicStatsDataFromJSON, TopicStatsDataFromJSONTyped, TopicStatsDataToJSON, TopicStatsDataToJSONTyped, type TopicStatsDataTopicsBySubscriberCountInner, TopicStatsDataTopicsBySubscriberCountInnerFromJSON, TopicStatsDataTopicsBySubscriberCountInnerFromJSONTyped, TopicStatsDataTopicsBySubscriberCountInnerToJSON, TopicStatsDataTopicsBySubscriberCountInnerToJSONTyped, type TopicStatsResponse, TopicStatsResponseFromJSON, TopicStatsResponseFromJSONTyped, TopicStatsResponseToJSON, TopicStatsResponseToJSONTyped, type TopicSubscriber, TopicSubscriberFromJSON, TopicSubscriberFromJSONTyped, type TopicSubscriberListResponse, TopicSubscriberListResponseFromJSON, TopicSubscriberListResponseFromJSONTyped, TopicSubscriberListResponseToJSON, TopicSubscriberListResponseToJSONTyped, TopicSubscriberToJSON, TopicSubscriberToJSONTyped, type TopicSubscribersAddResponse, TopicSubscribersAddResponseFromJSON, TopicSubscribersAddResponseFromJSONTyped, TopicSubscribersAddResponseToJSON, TopicSubscribersAddResponseToJSONTyped, type TopicSubscribersAddResult, TopicSubscribersAddResultFromJSON, TopicSubscribersAddResultFromJSONTyped, TopicSubscribersAddResultToJSON, TopicSubscribersAddResultToJSONTyped, type TopicSubscribersRemoveResponse, TopicSubscribersRemoveResponseFromJSON, TopicSubscribersRemoveResponseFromJSONTyped, TopicSubscribersRemoveResponseToJSON, TopicSubscribersRemoveResponseToJSONTyped, type TopicSubscribersRemoveResult, TopicSubscribersRemoveResultFromJSON, TopicSubscribersRemoveResultFromJSONTyped, TopicSubscribersRemoveResultToJSON, TopicSubscribersRemoveResultToJSONTyped, TopicToJSON, TopicToJSONTyped, TopicsApi, type TopicsApiAddTopicSubscribersOperationRequest, type TopicsApiCreateTopicOperationRequest, type TopicsApiDeleteTopicRequest, type TopicsApiGetTopicRequest, type TopicsApiInterface, type TopicsApiListTopicSubscribersRequest, type TopicsApiListTopicsRequest, type TopicsApiRemoveTopicSubscribersOperationRequest, type TopicsApiUpdateTopicOperationRequest, type UnreadCountData, UnreadCountDataFromJSON, UnreadCountDataFromJSONTyped, UnreadCountDataToJSON, UnreadCountDataToJSONTyped, type UnreadCountResponse, UnreadCountResponseFromJSON, UnreadCountResponseFromJSONTyped, UnreadCountResponseToJSON, UnreadCountResponseToJSONTyped, type Unsubscribe, UnsubscribeChannelEnum, UnsubscribeFromJSON, UnsubscribeFromJSONTyped, type UnsubscribeListResponse, UnsubscribeListResponseFromJSON, UnsubscribeListResponseFromJSONTyped, UnsubscribeListResponseToJSON, UnsubscribeListResponseToJSONTyped, type UnsubscribeRequest, UnsubscribeRequestChannelEnum, UnsubscribeRequestFromJSON, UnsubscribeRequestFromJSONTyped, UnsubscribeRequestToJSON, UnsubscribeRequestToJSONTyped, type UnsubscribeResponse, UnsubscribeResponseFromJSON, UnsubscribeResponseFromJSONTyped, UnsubscribeResponseToJSON, UnsubscribeResponseToJSONTyped, UnsubscribeToJSON, UnsubscribeToJSONTyped, type UpdateCategoryRequest, UpdateCategoryRequestFromJSON, UpdateCategoryRequestFromJSONTyped, UpdateCategoryRequestToJSON, UpdateCategoryRequestToJSONTyped, type UpdateEndUserRequest, UpdateEndUserRequestFromJSON, UpdateEndUserRequestFromJSONTyped, UpdateEndUserRequestToJSON, UpdateEndUserRequestToJSONTyped, type UpdateSubscriberPreferencesRequest, UpdateSubscriberPreferencesRequestFromJSON, UpdateSubscriberPreferencesRequestFromJSONTyped, type UpdateSubscriberPreferencesRequestPreferencesInner, UpdateSubscriberPreferencesRequestPreferencesInnerChannelEnum, UpdateSubscriberPreferencesRequestPreferencesInnerFromJSON, UpdateSubscriberPreferencesRequestPreferencesInnerFromJSONTyped, UpdateSubscriberPreferencesRequestPreferencesInnerToJSON, UpdateSubscriberPreferencesRequestPreferencesInnerToJSONTyped, UpdateSubscriberPreferencesRequestToJSON, UpdateSubscriberPreferencesRequestToJSONTyped, type UpdateSubscriberRequest, UpdateSubscriberRequestFromJSON, UpdateSubscriberRequestFromJSONTyped, UpdateSubscriberRequestStatusEnum, UpdateSubscriberRequestToJSON, UpdateSubscriberRequestToJSONTyped, type UpdateTemplateRequest, UpdateTemplateRequestFromJSON, UpdateTemplateRequestFromJSONTyped, UpdateTemplateRequestToJSON, UpdateTemplateRequestToJSONTyped, type UpdateTopicRequest, UpdateTopicRequestFromJSON, UpdateTopicRequestFromJSONTyped, UpdateTopicRequestToJSON, UpdateTopicRequestToJSONTyped, type UpdateWaaSApplicationRequest, UpdateWaaSApplicationRequestFromJSON, UpdateWaaSApplicationRequestFromJSONTyped, UpdateWaaSApplicationRequestStatusEnum, UpdateWaaSApplicationRequestToJSON, UpdateWaaSApplicationRequestToJSONTyped, type UpdateWaaSEndpointRequest, UpdateWaaSEndpointRequestFromJSON, UpdateWaaSEndpointRequestFromJSONTyped, UpdateWaaSEndpointRequestStatusEnum, UpdateWaaSEndpointRequestToJSON, UpdateWaaSEndpointRequestToJSONTyped, type UpdateWaaSEventTypeRequest, UpdateWaaSEventTypeRequestFromJSON, UpdateWaaSEventTypeRequestFromJSONTyped, UpdateWaaSEventTypeRequestToJSON, UpdateWaaSEventTypeRequestToJSONTyped, type UpdateWebhookRequest, UpdateWebhookRequestFromJSON, UpdateWebhookRequestFromJSONTyped, UpdateWebhookRequestToJSON, UpdateWebhookRequestToJSONTyped, type UpsertAuthEmailTemplateRequest, UpsertAuthEmailTemplateRequestEditorTypeEnum, UpsertAuthEmailTemplateRequestFromJSON, UpsertAuthEmailTemplateRequestFromJSONTyped, UpsertAuthEmailTemplateRequestToJSON, UpsertAuthEmailTemplateRequestToJSONTyped, type UpsertSmsConfigRequest, UpsertSmsConfigRequestFromJSON, UpsertSmsConfigRequestFromJSONTyped, UpsertSmsConfigRequestToJSON, UpsertSmsConfigRequestToJSONTyped, type UserDevicesDeleteResponse, type UserDevicesDeleteResponseData, UserDevicesDeleteResponseDataFromJSON, UserDevicesDeleteResponseDataFromJSONTyped, UserDevicesDeleteResponseDataToJSON, UserDevicesDeleteResponseDataToJSONTyped, UserDevicesDeleteResponseFromJSON, UserDevicesDeleteResponseFromJSONTyped, UserDevicesDeleteResponseToJSON, UserDevicesDeleteResponseToJSONTyped, UtilityApi, type UtilityApiInterface, type ValidateResetTokenRequest, ValidateResetTokenRequestFromJSON, ValidateResetTokenRequestFromJSONTyped, ValidateResetTokenRequestToJSON, ValidateResetTokenRequestToJSONTyped, type ValidateResetTokenResponse, type ValidateResetTokenResponseData, ValidateResetTokenResponseDataFromJSON, ValidateResetTokenResponseDataFromJSONTyped, ValidateResetTokenResponseDataToJSON, ValidateResetTokenResponseDataToJSONTyped, ValidateResetTokenResponseFromJSON, ValidateResetTokenResponseFromJSONTyped, ValidateResetTokenResponseToJSON, ValidateResetTokenResponseToJSONTyped, type VerifySmsConfigData, VerifySmsConfigDataFromJSON, VerifySmsConfigDataFromJSONTyped, VerifySmsConfigDataToJSON, VerifySmsConfigDataToJSONTyped, type VerifySmsConfigResponse, VerifySmsConfigResponseFromJSON, VerifySmsConfigResponseFromJSONTyped, VerifySmsConfigResponseToJSON, VerifySmsConfigResponseToJSONTyped, VoidApiResponse, type WaaSApplication, WaaSApplicationFromJSON, WaaSApplicationFromJSONTyped, WaaSApplicationStatusEnum, WaaSApplicationToJSON, WaaSApplicationToJSONTyped, WaaSApplicationsApi, type WaaSApplicationsApiCreateWaaSApplicationOperationRequest, type WaaSApplicationsApiDeleteWaaSApplicationRequest, type WaaSApplicationsApiGetWaaSApplicationRequest, type WaaSApplicationsApiGetWaaSUsageRequest, type WaaSApplicationsApiInterface, type WaaSApplicationsApiListWaaSApplicationsRequest, type WaaSApplicationsApiUpdateWaaSApplicationOperationRequest, type WaaSBatchPublishRequest, WaaSBatchPublishRequestFromJSON, WaaSBatchPublishRequestFromJSONTyped, WaaSBatchPublishRequestToJSON, WaaSBatchPublishRequestToJSONTyped, type WaaSBatchPublishResponse, WaaSBatchPublishResponseFromJSON, WaaSBatchPublishResponseFromJSONTyped, WaaSBatchPublishResponseToJSON, WaaSBatchPublishResponseToJSONTyped, WaaSDeliveriesApi, type WaaSDeliveriesApiGetWaaSDeliveryRequest, type WaaSDeliveriesApiInterface, type WaaSDeliveriesApiListWaaSDeliveriesRequest, type WaaSDeliveriesApiListWaaSEndpointDeliveriesRequest, type WaaSDeliveriesApiRetryWaaSDeliveryRequest, type WaaSDelivery, WaaSDeliveryFromJSON, WaaSDeliveryFromJSONTyped, WaaSDeliveryStatusEnum, WaaSDeliveryToJSON, WaaSDeliveryToJSONTyped, type WaaSEndpoint, WaaSEndpointFromJSON, WaaSEndpointFromJSONTyped, WaaSEndpointStatusEnum, WaaSEndpointToJSON, WaaSEndpointToJSONTyped, WaaSEndpointsApi, type WaaSEndpointsApiCloseWaaSEndpointCircuitRequest, type WaaSEndpointsApiCreateWaaSEndpointOperationRequest, type WaaSEndpointsApiDeleteWaaSEndpointRequest, type WaaSEndpointsApiGetWaaSEndpointCircuitRequest, type WaaSEndpointsApiGetWaaSEndpointMetricsRequest, type WaaSEndpointsApiGetWaaSEndpointRequest, type WaaSEndpointsApiInterface, type WaaSEndpointsApiListWaaSEndpointsRequest, type WaaSEndpointsApiRotateWaaSEndpointSecretRequest, type WaaSEndpointsApiUpdateWaaSEndpointOperationRequest, type WaaSEventType, WaaSEventTypeFromJSON, WaaSEventTypeFromJSONTyped, WaaSEventTypeStatusEnum, WaaSEventTypeToJSON, WaaSEventTypeToJSONTyped, WaaSEventTypesApi, type WaaSEventTypesApiCreateWaaSEventTypeOperationRequest, type WaaSEventTypesApiDeleteWaaSEventTypeRequest, type WaaSEventTypesApiDeprecateWaaSEventTypeRequest, type WaaSEventTypesApiGetWaaSEventTypeRequest, type WaaSEventTypesApiInterface, type WaaSEventTypesApiListWaaSEventTypesRequest, type WaaSEventTypesApiUpdateWaaSEventTypeOperationRequest, WaaSEventsApi, type WaaSEventsApiBatchPublishWaaSEventsRequest, type WaaSEventsApiInterface, type WaaSEventsApiPublishWaaSEventRequest, WaaSPortalApi, type WaaSPortalApiGenerateWaaSPortalTokenRequest, type WaaSPortalApiInterface, type WaaSPortalTokenRequest, WaaSPortalTokenRequestFromJSON, WaaSPortalTokenRequestFromJSONTyped, type WaaSPortalTokenRequestTheme, WaaSPortalTokenRequestThemeFromJSON, WaaSPortalTokenRequestThemeFromJSONTyped, WaaSPortalTokenRequestThemeModeEnum, WaaSPortalTokenRequestThemeToJSON, WaaSPortalTokenRequestThemeToJSONTyped, WaaSPortalTokenRequestToJSON, WaaSPortalTokenRequestToJSONTyped, type WaaSPortalTokenResponse, WaaSPortalTokenResponseFromJSON, WaaSPortalTokenResponseFromJSONTyped, WaaSPortalTokenResponseToJSON, WaaSPortalTokenResponseToJSONTyped, type WaaSPublishEventRequest, WaaSPublishEventRequestFromJSON, WaaSPublishEventRequestFromJSONTyped, WaaSPublishEventRequestToJSON, WaaSPublishEventRequestToJSONTyped, type WaaSPublishEventResponse, WaaSPublishEventResponseFromJSON, WaaSPublishEventResponseFromJSONTyped, WaaSPublishEventResponseToJSON, WaaSPublishEventResponseToJSONTyped, type WaaSUsageResponse, WaaSUsageResponseFromJSON, WaaSUsageResponseFromJSONTyped, WaaSUsageResponseToJSON, WaaSUsageResponseToJSONTyped, type WebAuthnChallengeOptions, WebAuthnChallengeOptionsFromJSON, WebAuthnChallengeOptionsFromJSONTyped, WebAuthnChallengeOptionsToJSON, WebAuthnChallengeOptionsToJSONTyped, type WebAuthnCredential, WebAuthnCredentialFromJSON, WebAuthnCredentialFromJSONTyped, type WebAuthnCredentialListResponse, type WebAuthnCredentialListResponseData, WebAuthnCredentialListResponseDataFromJSON, WebAuthnCredentialListResponseDataFromJSONTyped, WebAuthnCredentialListResponseDataToJSON, WebAuthnCredentialListResponseDataToJSONTyped, WebAuthnCredentialListResponseFromJSON, WebAuthnCredentialListResponseFromJSONTyped, WebAuthnCredentialListResponseToJSON, WebAuthnCredentialListResponseToJSONTyped, type WebAuthnCredentialResponse, WebAuthnCredentialResponseFromJSON, WebAuthnCredentialResponseFromJSONTyped, WebAuthnCredentialResponseToJSON, WebAuthnCredentialResponseToJSONTyped, WebAuthnCredentialToJSON, WebAuthnCredentialToJSONTyped, type WebAuthnStartAuthRequest, WebAuthnStartAuthRequestFromJSON, WebAuthnStartAuthRequestFromJSONTyped, WebAuthnStartAuthRequestToJSON, WebAuthnStartAuthRequestToJSONTyped, type WebAuthnStartAuthResponse, WebAuthnStartAuthResponseFromJSON, WebAuthnStartAuthResponseFromJSONTyped, WebAuthnStartAuthResponseToJSON, WebAuthnStartAuthResponseToJSONTyped, type WebAuthnStartRegistrationRequest, WebAuthnStartRegistrationRequestFromJSON, WebAuthnStartRegistrationRequestFromJSONTyped, WebAuthnStartRegistrationRequestToJSON, WebAuthnStartRegistrationRequestToJSONTyped, type WebAuthnStartRegistrationResponse, WebAuthnStartRegistrationResponseFromJSON, WebAuthnStartRegistrationResponseFromJSONTyped, WebAuthnStartRegistrationResponseToJSON, WebAuthnStartRegistrationResponseToJSONTyped, type WebAuthnStatusResponse, type WebAuthnStatusResponseData, WebAuthnStatusResponseDataFromJSON, WebAuthnStatusResponseDataFromJSONTyped, WebAuthnStatusResponseDataToJSON, WebAuthnStatusResponseDataToJSONTyped, WebAuthnStatusResponseFromJSON, WebAuthnStatusResponseFromJSONTyped, WebAuthnStatusResponseToJSON, WebAuthnStatusResponseToJSONTyped, type WebAuthnVerifyAuthRequest, WebAuthnVerifyAuthRequestFromJSON, WebAuthnVerifyAuthRequestFromJSONTyped, WebAuthnVerifyAuthRequestToJSON, WebAuthnVerifyAuthRequestToJSONTyped, type WebAuthnVerifyRegistrationRequest, WebAuthnVerifyRegistrationRequestFromJSON, WebAuthnVerifyRegistrationRequestFromJSONTyped, WebAuthnVerifyRegistrationRequestToJSON, WebAuthnVerifyRegistrationRequestToJSONTyped, type WebAuthnVerifyRegistrationResponse, type WebAuthnVerifyRegistrationResponseData, WebAuthnVerifyRegistrationResponseDataFromJSON, WebAuthnVerifyRegistrationResponseDataFromJSONTyped, WebAuthnVerifyRegistrationResponseDataToJSON, WebAuthnVerifyRegistrationResponseDataToJSONTyped, WebAuthnVerifyRegistrationResponseFromJSON, WebAuthnVerifyRegistrationResponseFromJSONTyped, WebAuthnVerifyRegistrationResponseToJSON, WebAuthnVerifyRegistrationResponseToJSONTyped, type Webhook, type WebhookAccountMetricsResponse, WebhookAccountMetricsResponseFromJSON, WebhookAccountMetricsResponseFromJSONTyped, WebhookAccountMetricsResponseToJSON, WebhookAccountMetricsResponseToJSONTyped, type WebhookBulkRetryResponse, WebhookBulkRetryResponseFromJSON, WebhookBulkRetryResponseFromJSONTyped, WebhookBulkRetryResponseToJSON, WebhookBulkRetryResponseToJSONTyped, type WebhookCircuitState, WebhookCircuitStateFromJSON, WebhookCircuitStateFromJSONTyped, type WebhookCircuitStateResponse, WebhookCircuitStateResponseFromJSON, WebhookCircuitStateResponseFromJSONTyped, WebhookCircuitStateResponseToJSON, WebhookCircuitStateResponseToJSONTyped, WebhookCircuitStateStateEnum, WebhookCircuitStateToJSON, WebhookCircuitStateToJSONTyped, type WebhookCreateResponse, type WebhookCreateResponseData, WebhookCreateResponseDataFromJSON, WebhookCreateResponseDataFromJSONTyped, WebhookCreateResponseDataStatusEnum, WebhookCreateResponseDataToJSON, WebhookCreateResponseDataToJSONTyped, WebhookCreateResponseFromJSON, WebhookCreateResponseFromJSONTyped, WebhookCreateResponseToJSON, WebhookCreateResponseToJSONTyped, type WebhookDeleteResponse, type WebhookDeleteResponseData, WebhookDeleteResponseDataFromJSON, WebhookDeleteResponseDataFromJSONTyped, WebhookDeleteResponseDataToJSON, WebhookDeleteResponseDataToJSONTyped, WebhookDeleteResponseFromJSON, WebhookDeleteResponseFromJSONTyped, WebhookDeleteResponseToJSON, WebhookDeleteResponseToJSONTyped, type WebhookDelivery, type WebhookDeliveryDetail, WebhookDeliveryDetailFromJSON, WebhookDeliveryDetailFromJSONTyped, WebhookDeliveryDetailStatusEnum, WebhookDeliveryDetailToJSON, WebhookDeliveryDetailToJSONTyped, WebhookDeliveryFromJSON, WebhookDeliveryFromJSONTyped, type WebhookDeliveryListResponse, WebhookDeliveryListResponseFromJSON, WebhookDeliveryListResponseFromJSONTyped, WebhookDeliveryListResponseToJSON, WebhookDeliveryListResponseToJSONTyped, type WebhookDeliveryResponse, WebhookDeliveryResponseFromJSON, WebhookDeliveryResponseFromJSONTyped, WebhookDeliveryResponseToJSON, WebhookDeliveryResponseToJSONTyped, type WebhookDeliveryRetryResponse, type WebhookDeliveryRetryResponseData, WebhookDeliveryRetryResponseDataFromJSON, WebhookDeliveryRetryResponseDataFromJSONTyped, WebhookDeliveryRetryResponseDataToJSON, WebhookDeliveryRetryResponseDataToJSONTyped, WebhookDeliveryRetryResponseFromJSON, WebhookDeliveryRetryResponseFromJSONTyped, WebhookDeliveryRetryResponseToJSON, WebhookDeliveryRetryResponseToJSONTyped, WebhookDeliveryStatusEnum, WebhookDeliveryToJSON, WebhookDeliveryToJSONTyped, type WebhookEventTypesResponse, type WebhookEventTypesResponseData, WebhookEventTypesResponseDataFromJSON, WebhookEventTypesResponseDataFromJSONTyped, WebhookEventTypesResponseDataToJSON, WebhookEventTypesResponseDataToJSONTyped, WebhookEventTypesResponseFromJSON, WebhookEventTypesResponseFromJSONTyped, WebhookEventTypesResponseToJSON, WebhookEventTypesResponseToJSONTyped, WebhookFromJSON, WebhookFromJSONTyped, type WebhookIpsResponse, type WebhookIpsResponseData, WebhookIpsResponseDataFromJSON, WebhookIpsResponseDataFromJSONTyped, WebhookIpsResponseDataToJSON, WebhookIpsResponseDataToJSONTyped, WebhookIpsResponseFromJSON, WebhookIpsResponseFromJSONTyped, WebhookIpsResponseToJSON, WebhookIpsResponseToJSONTyped, type WebhookJobResponse, WebhookJobResponseFromJSON, WebhookJobResponseFromJSONTyped, WebhookJobResponseToJSON, WebhookJobResponseToJSONTyped, type WebhookListResponse, WebhookListResponseFromJSON, WebhookListResponseFromJSONTyped, WebhookListResponseToJSON, WebhookListResponseToJSONTyped, type WebhookMetricsResponse, WebhookMetricsResponseFromJSON, WebhookMetricsResponseFromJSONTyped, WebhookMetricsResponseToJSON, WebhookMetricsResponseToJSONTyped, type WebhookRegion, WebhookRegionFromJSON, WebhookRegionFromJSONTyped, WebhookRegionToJSON, WebhookRegionToJSONTyped, type WebhookRegionsResponse, type WebhookRegionsResponseData, WebhookRegionsResponseDataFromJSON, WebhookRegionsResponseDataFromJSONTyped, WebhookRegionsResponseDataToJSON, WebhookRegionsResponseDataToJSONTyped, WebhookRegionsResponseFromJSON, WebhookRegionsResponseFromJSONTyped, WebhookRegionsResponseToJSON, WebhookRegionsResponseToJSONTyped, type WebhookReplayResponse, WebhookReplayResponseFromJSON, WebhookReplayResponseFromJSONTyped, WebhookReplayResponseToJSON, WebhookReplayResponseToJSONTyped, type WebhookResponse, WebhookResponseFromJSON, WebhookResponseFromJSONTyped, WebhookResponseToJSON, WebhookResponseToJSONTyped, type WebhookSecretRotateResponse, type WebhookSecretRotateResponseData, WebhookSecretRotateResponseDataFromJSON, WebhookSecretRotateResponseDataFromJSONTyped, WebhookSecretRotateResponseDataToJSON, WebhookSecretRotateResponseDataToJSONTyped, WebhookSecretRotateResponseFromJSON, WebhookSecretRotateResponseFromJSONTyped, WebhookSecretRotateResponseToJSON, WebhookSecretRotateResponseToJSONTyped, WebhookStatusEnum, type WebhookTestEventResponse, type WebhookTestEventResponseData, WebhookTestEventResponseDataFromJSON, WebhookTestEventResponseDataFromJSONTyped, WebhookTestEventResponseDataToJSON, WebhookTestEventResponseDataToJSONTyped, WebhookTestEventResponseFromJSON, WebhookTestEventResponseFromJSONTyped, WebhookTestEventResponseToJSON, WebhookTestEventResponseToJSONTyped, WebhookToJSON, WebhookToJSONTyped, type WebhookTransformTestResponse, WebhookTransformTestResponseFromJSON, WebhookTransformTestResponseFromJSONTyped, WebhookTransformTestResponseToJSON, WebhookTransformTestResponseToJSONTyped, type WebhookUsageResponse, WebhookUsageResponseFromJSON, WebhookUsageResponseFromJSONTyped, WebhookUsageResponseToJSON, WebhookUsageResponseToJSONTyped, type WebhookVersion, WebhookVersionFromJSON, WebhookVersionFromJSONTyped, WebhookVersionToJSON, WebhookVersionToJSONTyped, type WebhookVersionsResponse, type WebhookVersionsResponseData, WebhookVersionsResponseDataFromJSON, WebhookVersionsResponseDataFromJSONTyped, WebhookVersionsResponseDataToJSON, WebhookVersionsResponseDataToJSONTyped, WebhookVersionsResponseFromJSON, WebhookVersionsResponseFromJSONTyped, WebhookVersionsResponseToJSON, WebhookVersionsResponseToJSONTyped, WebhooksApi, type WebhooksApiBulkRetryWebhookDeliveriesOperationRequest, type WebhooksApiCloseWebhookCircuitRequest, type WebhooksApiCreateWebhookOperationRequest, type WebhooksApiDeleteWebhookRequest, type WebhooksApiGetWebhookCircuitStateRequest, type WebhooksApiGetWebhookDeliveryRequest, type WebhooksApiGetWebhookJobRequest, type WebhooksApiGetWebhookMetricsRequest, type WebhooksApiGetWebhookRequest, type WebhooksApiInterface, type WebhooksApiListWebhookDeliveriesRequest, type WebhooksApiListWebhookEventTypesRequest, type WebhooksApiListWebhooksRequest, type WebhooksApiReplayWebhookEventsOperationRequest, type WebhooksApiRetryWebhookDeliveryRequest, type WebhooksApiRotateWebhookSecretRequest, type WebhooksApiSendWebhookTestEventOperationRequest, type WebhooksApiTestWebhookTransformOperationRequest, type WebhooksApiUpdateWebhookOperationRequest, type WithdrawSubscriberConsentRequest, WithdrawSubscriberConsentRequestFromJSON, WithdrawSubscriberConsentRequestFromJSONTyped, WithdrawSubscriberConsentRequestToJSON, WithdrawSubscriberConsentRequestToJSONTyped, type WorkflowExecution, WorkflowExecutionFromJSON, WorkflowExecutionFromJSONTyped, WorkflowExecutionStatus, WorkflowExecutionStatusFromJSON, WorkflowExecutionStatusFromJSONTyped, WorkflowExecutionStatusToJSON, WorkflowExecutionStatusToJSONTyped, WorkflowExecutionToJSON, WorkflowExecutionToJSONTyped, type WorkflowStepExecution, WorkflowStepExecutionFromJSON, WorkflowStepExecutionFromJSONTyped, WorkflowStepExecutionStatus, WorkflowStepExecutionStatusFromJSON, WorkflowStepExecutionStatusFromJSONTyped, WorkflowStepExecutionStatusToJSON, WorkflowStepExecutionStatusToJSONTyped, WorkflowStepExecutionStepTypeEnum, WorkflowStepExecutionToJSON, WorkflowStepExecutionToJSONTyped, Zyphr, ZyphrAuthenticationError, ZyphrError, type ZyphrErrorOptions, ZyphrNotFoundError, type ZyphrOptions, ZyphrRateLimitError, ZyphrValidationError, canConsumeForm, exists, instanceOfAddTopicSubscribersRequest, instanceOfApiError, instanceOfApiErrorError, instanceOfApiErrorMeta, instanceOfAuthEmailTemplate, instanceOfAuthEmailTemplateDefault, instanceOfAuthEmailTemplateDefaultResponse, instanceOfAuthEmailTemplateDeleteResponse, instanceOfAuthEmailTemplateDeleteResponseData, instanceOfAuthEmailTemplateListResponse, instanceOfAuthEmailTemplatePreviewDraft, instanceOfAuthEmailTemplatePreviewRequest, instanceOfAuthEmailTemplatePreviewResponse, instanceOfAuthEmailTemplatePreviewResult, instanceOfAuthEmailTemplateResponse, instanceOfAuthEmailTemplateTestRequest, instanceOfAuthEmailTemplateTestResponse, instanceOfAuthEmailTemplateTestResult, instanceOfAuthEmailTemplateVersion, instanceOfAuthEmailTemplateVersionsResponse, instanceOfAuthEmailType, instanceOfAuthLoginResponse, instanceOfAuthLoginResult, instanceOfAuthLoginResultMfaChallenge, instanceOfAuthResult, instanceOfAuthResultResponse, instanceOfAuthSession, instanceOfAuthTokens, instanceOfAuthUser, instanceOfAuthUserResponse, instanceOfAuthUserResponseData, instanceOfBatchPublishWaaSEvents201Response, instanceOfBulkRetryWebhookDeliveriesRequest, instanceOfBulkUpsertAuthEmailTemplatesRequest, instanceOfBulkUpsertAuthEmailTemplatesResponse, instanceOfCategory, instanceOfCategoryListResponse, instanceOfCategoryResponse, instanceOfConfirmEmailVerificationRequest, instanceOfConfirmEmailVerificationResponse, instanceOfConfirmEmailVerificationResponseData, instanceOfConsentHistoryEntry, instanceOfConsentHistoryResponse, instanceOfConsentRecordResponse, instanceOfConsentRecordResponseData, instanceOfConsentStatus, instanceOfConsentStatusResponse, instanceOfConsentWithdrawResponse, instanceOfCreateCategoryRequest, instanceOfCreateSubscriberRequest, instanceOfCreateTemplateRequest, instanceOfCreateTopicRequest, instanceOfCreateWaaSApplication201Response, instanceOfCreateWaaSApplicationRequest, instanceOfCreateWaaSEndpoint201Response, instanceOfCreateWaaSEndpointRequest, instanceOfCreateWaaSEndpointResponse, instanceOfCreateWaaSEventType201Response, instanceOfCreateWaaSEventTypeRequest, instanceOfCreateWebhookRequest, instanceOfDeleteResult, instanceOfDeleteResultData, instanceOfDevice, instanceOfDeviceListResponse, instanceOfDevicePushTopic, instanceOfDevicePushTopicListResponse, instanceOfDevicePushTopicListResponseMeta, instanceOfDeviceResponse, instanceOfDeviceStats, instanceOfDeviceStatsResponse, instanceOfEmailAddress, instanceOfEmailAttachment, instanceOfEmailEvent, instanceOfEmailEventsResponse, instanceOfEmailListResponse, instanceOfEmailMessage, instanceOfEmailResponse, instanceOfEmailTrackingClickLink, instanceOfEmailTrackingClicks, instanceOfEmailTrackingData, instanceOfEmailTrackingOpens, instanceOfEmailTrackingResponse, instanceOfEndUserDeleteResponse, instanceOfEndUserDeleteResponseData, instanceOfExecutionCancelResponse, instanceOfExecutionCancelResponseData, instanceOfExecutionResponse, instanceOfExecutionRetryResponse, instanceOfExecutionRetryResponseData, instanceOfForgotPasswordRequest, instanceOfGenerateSubscriberToken200Response, instanceOfGenerateSubscriberToken200ResponseData, instanceOfGenerateSubscriberTokenRequest, instanceOfGenerateWaaSPortalToken201Response, instanceOfGetWaaSEndpoint200Response, instanceOfGetWaaSUsage200Response, instanceOfInAppNotification, instanceOfInboxListMeta, instanceOfInboxListResponse, instanceOfInboxNotificationResponse, instanceOfListWaaSApplications200Response, instanceOfListWaaSEndpointDeliveries200Response, instanceOfListWaaSEndpoints200Response, instanceOfListWaaSEventTypes200Response, instanceOfLoginRequest, instanceOfMagicLinkSendRequest, instanceOfMagicLinkVerifyRequest, instanceOfMagicLinkVerifyResponse, instanceOfMagicLinkVerifyResponseData, instanceOfMarkAllInboxReadRequest, instanceOfMarkAllReadData, instanceOfMarkAllReadResponse, instanceOfMarkAllSubscriberNotificationsReadRequest, instanceOfMarkInboxReadRequest, instanceOfMfaBackupCodesResponse, instanceOfMfaBackupCodesResponseData, instanceOfMfaDisableRequest, instanceOfMfaDisableResponse, instanceOfMfaDisableResponseData, instanceOfMfaEnrollRequest, instanceOfMfaEnrollmentResponse, instanceOfMfaEnrollmentResponseData, instanceOfMfaRegenerateBackupCodesRequest, instanceOfMfaStatusResponse, instanceOfMfaStatusResponseData, instanceOfMfaVerifyBackupRequest, instanceOfMfaVerifyBackupResponse, instanceOfMfaVerifyBackupResponseData, instanceOfMfaVerifyEnrollmentRequest, instanceOfMfaVerifyEnrollmentResponse, instanceOfMfaVerifyEnrollmentResponseData, instanceOfMfaVerifyRequest, instanceOfOAuthAuthorizationUrlResponse, instanceOfOAuthAuthorizationUrlResponseData, instanceOfOAuthCallbackRequest, instanceOfOAuthCallbackResponse, instanceOfOAuthCallbackResponseData, instanceOfOAuthConnection, instanceOfOAuthConnectionInfoResponse, instanceOfOAuthConnectionInfoResponseData, instanceOfOAuthConnectionsResponse, instanceOfOAuthConnectionsResponseData, instanceOfOAuthProvider, instanceOfOAuthProviderInfo, instanceOfOAuthProvidersResponse, instanceOfOAuthProvidersResponseData, instanceOfOAuthTokensRefreshResponse, instanceOfOAuthTokensRefreshResponseData, instanceOfOAuthTokensResponse, instanceOfOAuthTokensResponseData, instanceOfPaginationMeta, instanceOfPasswordRequirements, instanceOfPasswordRequirementsResponse, instanceOfPasswordRequirementsResponseData, instanceOfPhoneAuthAvailabilityResponse, instanceOfPhoneAuthAvailabilityResponseData, instanceOfPhoneLoginVerifyRequest, instanceOfPhoneOtpSendRequest, instanceOfPhoneOtpSentResponse, instanceOfPhoneOtpSentResponseData, instanceOfPhoneRegisterVerifyRequest, instanceOfPreferenceListResponse, instanceOfPublishWaaSEvent201Response, instanceOfPushDetailResponse, instanceOfPushEvent, instanceOfPushListResponse, instanceOfPushMessage, instanceOfPushMessageDetail, instanceOfPushMessageDetailAllOfActionButtons, instanceOfPushStatsData, instanceOfPushStatsResponse, instanceOfPushTopicDevice, instanceOfPushTopicDeviceListResponse, instanceOfPushTopicSubscribeData, instanceOfPushTopicSubscribeResponse, instanceOfPushTopicUnsubscribeData, instanceOfPushTopicUnsubscribeResponse, instanceOfRefreshOAuthTokensRequest, instanceOfRefreshSessionRequest, instanceOfRefreshTokenResponse, instanceOfRefreshTokenResponseData, instanceOfRegisterDeviceRequest, instanceOfRegisterRequest, instanceOfRemoveTopicSubscribersRequest, instanceOfRenameWebAuthnCredentialRequest, instanceOfRenderTemplateRequest, instanceOfReplayWebhookEventsRequest, instanceOfRequestMeta, instanceOfResetPasswordRequest, instanceOfResetPasswordResponse, instanceOfResubscribeRequest, instanceOfResubscribeResponse, instanceOfRevokeAllSessionsResponse, instanceOfRevokeAllSessionsResponseData, instanceOfRevokeSessionRequest, instanceOfSendBatchEmailRequest, instanceOfSendBatchEmailResponse, instanceOfSendBatchEmailResult, instanceOfSendBatchEmailResultItem, instanceOfSendBatchInAppMeta, instanceOfSendBatchInAppRequest, instanceOfSendBatchInAppResponse, instanceOfSendBatchSmsData, instanceOfSendBatchSmsRequest, instanceOfSendBatchSmsResponse, instanceOfSendEmailRequest, instanceOfSendEmailResponse, instanceOfSendEmailResponseData, instanceOfSendEmailResponseMeta, instanceOfSendEmailVerificationRequest, instanceOfSendInAppMeta, instanceOfSendInAppRequest, instanceOfSendInAppResponse, instanceOfSendPushRequest, instanceOfSendPushRequestActionButtonsInner, instanceOfSendPushResponse, instanceOfSendPushResponseData, instanceOfSendPushToTopicData, instanceOfSendPushToTopicRequest, instanceOfSendPushToTopicResponse, instanceOfSendSlackMessageRequest, instanceOfSendSlackMessageResponse, instanceOfSendSlackMessageResult, instanceOfSendSmsData, instanceOfSendSmsRequest, instanceOfSendSmsResponse, instanceOfSendTestSmsData, instanceOfSendTestSmsRequest, instanceOfSendTestSmsResponse, instanceOfSendWebhookTestEventRequest, instanceOfSessionListResponse, instanceOfSessionListResponseData, instanceOfSessionListResponseDataSessionInfo, instanceOfSetPreferencesRequest, instanceOfSetPreferencesRequestPreferencesInner, instanceOfSlackMessage, instanceOfSlackMessageListResponse, instanceOfSlackMessageListResponseMeta, instanceOfSlackMessageResponse, instanceOfSlackMessageStatus, instanceOfSlackMessageSummary, instanceOfSmsBatchResultMessage, instanceOfSmsBatchResultSummary, instanceOfSmsConfig, instanceOfSmsConfigDeleteResponse, instanceOfSmsConfigDeleteResponseData, instanceOfSmsConfigResponse, instanceOfSmsDetailResponse, instanceOfSmsListResponse, instanceOfSmsListResponseMeta, instanceOfSmsMessage, instanceOfSmsMessageDetail, instanceOfSubscribePushTopicRequest, instanceOfSubscriber, instanceOfSubscriberListResponse, instanceOfSubscriberPreference, instanceOfSubscriberResponse, instanceOfSuccessResult, instanceOfTemplate, instanceOfTemplateListResponse, instanceOfTemplateRenderResponse, instanceOfTemplateRenderedContent, instanceOfTemplateResponse, instanceOfTestWebhookTransformRequest, instanceOfTopic, instanceOfTopicDeleteResponse, instanceOfTopicDeleteResponseData, instanceOfTopicListResponse, instanceOfTopicResponse, instanceOfTopicStatsData, instanceOfTopicStatsDataTopicsBySubscriberCountInner, instanceOfTopicStatsResponse, instanceOfTopicSubscriber, instanceOfTopicSubscriberListResponse, instanceOfTopicSubscribersAddResponse, instanceOfTopicSubscribersAddResult, instanceOfTopicSubscribersRemoveResponse, instanceOfTopicSubscribersRemoveResult, instanceOfUnreadCountData, instanceOfUnreadCountResponse, instanceOfUnsubscribe, instanceOfUnsubscribeListResponse, instanceOfUnsubscribeRequest, instanceOfUnsubscribeResponse, instanceOfUpdateCategoryRequest, instanceOfUpdateEndUserRequest, instanceOfUpdateSubscriberPreferencesRequest, instanceOfUpdateSubscriberPreferencesRequestPreferencesInner, instanceOfUpdateSubscriberRequest, instanceOfUpdateTemplateRequest, instanceOfUpdateTopicRequest, instanceOfUpdateWaaSApplicationRequest, instanceOfUpdateWaaSEndpointRequest, instanceOfUpdateWaaSEventTypeRequest, instanceOfUpdateWebhookRequest, instanceOfUpsertAuthEmailTemplateRequest, instanceOfUpsertSmsConfigRequest, instanceOfUserDevicesDeleteResponse, instanceOfUserDevicesDeleteResponseData, instanceOfValidateResetTokenRequest, instanceOfValidateResetTokenResponse, instanceOfValidateResetTokenResponseData, instanceOfVerifySmsConfigData, instanceOfVerifySmsConfigResponse, instanceOfWaaSApplication, instanceOfWaaSBatchPublishRequest, instanceOfWaaSBatchPublishResponse, instanceOfWaaSDelivery, instanceOfWaaSEndpoint, instanceOfWaaSEventType, instanceOfWaaSPortalTokenRequest, instanceOfWaaSPortalTokenRequestTheme, instanceOfWaaSPortalTokenResponse, instanceOfWaaSPublishEventRequest, instanceOfWaaSPublishEventResponse, instanceOfWaaSUsageResponse, instanceOfWebAuthnChallengeOptions, instanceOfWebAuthnCredential, instanceOfWebAuthnCredentialListResponse, instanceOfWebAuthnCredentialListResponseData, instanceOfWebAuthnCredentialResponse, instanceOfWebAuthnStartAuthRequest, instanceOfWebAuthnStartAuthResponse, instanceOfWebAuthnStartRegistrationRequest, instanceOfWebAuthnStartRegistrationResponse, instanceOfWebAuthnStatusResponse, instanceOfWebAuthnStatusResponseData, instanceOfWebAuthnVerifyAuthRequest, instanceOfWebAuthnVerifyRegistrationRequest, instanceOfWebAuthnVerifyRegistrationResponse, instanceOfWebAuthnVerifyRegistrationResponseData, instanceOfWebhook, instanceOfWebhookAccountMetricsResponse, instanceOfWebhookBulkRetryResponse, instanceOfWebhookCircuitState, instanceOfWebhookCircuitStateResponse, instanceOfWebhookCreateResponse, instanceOfWebhookCreateResponseData, instanceOfWebhookDeleteResponse, instanceOfWebhookDeleteResponseData, instanceOfWebhookDelivery, instanceOfWebhookDeliveryDetail, instanceOfWebhookDeliveryListResponse, instanceOfWebhookDeliveryResponse, instanceOfWebhookDeliveryRetryResponse, instanceOfWebhookDeliveryRetryResponseData, instanceOfWebhookEventTypesResponse, instanceOfWebhookEventTypesResponseData, instanceOfWebhookIpsResponse, instanceOfWebhookIpsResponseData, instanceOfWebhookJobResponse, instanceOfWebhookListResponse, instanceOfWebhookMetricsResponse, instanceOfWebhookRegion, instanceOfWebhookRegionsResponse, instanceOfWebhookRegionsResponseData, instanceOfWebhookReplayResponse, instanceOfWebhookResponse, instanceOfWebhookSecretRotateResponse, instanceOfWebhookSecretRotateResponseData, instanceOfWebhookTestEventResponse, instanceOfWebhookTestEventResponseData, instanceOfWebhookTransformTestResponse, instanceOfWebhookUsageResponse, instanceOfWebhookVersion, instanceOfWebhookVersionsResponse, instanceOfWebhookVersionsResponseData, instanceOfWithdrawSubscriberConsentRequest, instanceOfWorkflowExecution, instanceOfWorkflowExecutionStatus, instanceOfWorkflowStepExecution, instanceOfWorkflowStepExecutionStatus, mapValues, parseErrorResponse, querystring };
|
|
25250
|
+
export { type AddTopicSubscribersRequest, AddTopicSubscribersRequestFromJSON, AddTopicSubscribersRequestFromJSONTyped, AddTopicSubscribersRequestToJSON, AddTopicSubscribersRequestToJSONTyped, type ApiError, type ApiErrorError, ApiErrorErrorFromJSON, ApiErrorErrorFromJSONTyped, ApiErrorErrorToJSON, ApiErrorErrorToJSONTyped, ApiErrorFromJSON, ApiErrorFromJSONTyped, type ApiErrorMeta, ApiErrorMetaFromJSON, ApiErrorMetaFromJSONTyped, ApiErrorMetaToJSON, ApiErrorMetaToJSONTyped, ApiErrorToJSON, ApiErrorToJSONTyped, type ApiResponse, type AuthEmailTemplate, type AuthEmailTemplateDefault, AuthEmailTemplateDefaultFromJSON, AuthEmailTemplateDefaultFromJSONTyped, type AuthEmailTemplateDefaultResponse, AuthEmailTemplateDefaultResponseFromJSON, AuthEmailTemplateDefaultResponseFromJSONTyped, AuthEmailTemplateDefaultResponseToJSON, AuthEmailTemplateDefaultResponseToJSONTyped, AuthEmailTemplateDefaultToJSON, AuthEmailTemplateDefaultToJSONTyped, type AuthEmailTemplateDeleteResponse, type AuthEmailTemplateDeleteResponseData, AuthEmailTemplateDeleteResponseDataFromJSON, AuthEmailTemplateDeleteResponseDataFromJSONTyped, AuthEmailTemplateDeleteResponseDataToJSON, AuthEmailTemplateDeleteResponseDataToJSONTyped, AuthEmailTemplateDeleteResponseFromJSON, AuthEmailTemplateDeleteResponseFromJSONTyped, AuthEmailTemplateDeleteResponseToJSON, AuthEmailTemplateDeleteResponseToJSONTyped, AuthEmailTemplateEditorTypeEnum, AuthEmailTemplateFromJSON, AuthEmailTemplateFromJSONTyped, type AuthEmailTemplateListResponse, AuthEmailTemplateListResponseFromJSON, AuthEmailTemplateListResponseFromJSONTyped, AuthEmailTemplateListResponseToJSON, AuthEmailTemplateListResponseToJSONTyped, type AuthEmailTemplatePreviewDraft, AuthEmailTemplatePreviewDraftFromJSON, AuthEmailTemplatePreviewDraftFromJSONTyped, AuthEmailTemplatePreviewDraftToJSON, AuthEmailTemplatePreviewDraftToJSONTyped, type AuthEmailTemplatePreviewRequest, AuthEmailTemplatePreviewRequestFromJSON, AuthEmailTemplatePreviewRequestFromJSONTyped, AuthEmailTemplatePreviewRequestToJSON, AuthEmailTemplatePreviewRequestToJSONTyped, type AuthEmailTemplatePreviewResponse, AuthEmailTemplatePreviewResponseFromJSON, AuthEmailTemplatePreviewResponseFromJSONTyped, AuthEmailTemplatePreviewResponseToJSON, AuthEmailTemplatePreviewResponseToJSONTyped, type AuthEmailTemplatePreviewResult, AuthEmailTemplatePreviewResultFromJSON, AuthEmailTemplatePreviewResultFromJSONTyped, AuthEmailTemplatePreviewResultToJSON, AuthEmailTemplatePreviewResultToJSONTyped, type AuthEmailTemplateResponse, AuthEmailTemplateResponseFromJSON, AuthEmailTemplateResponseFromJSONTyped, AuthEmailTemplateResponseToJSON, AuthEmailTemplateResponseToJSONTyped, type AuthEmailTemplateTestRequest, AuthEmailTemplateTestRequestFromJSON, AuthEmailTemplateTestRequestFromJSONTyped, AuthEmailTemplateTestRequestToJSON, AuthEmailTemplateTestRequestToJSONTyped, type AuthEmailTemplateTestResponse, AuthEmailTemplateTestResponseFromJSON, AuthEmailTemplateTestResponseFromJSONTyped, AuthEmailTemplateTestResponseToJSON, AuthEmailTemplateTestResponseToJSONTyped, type AuthEmailTemplateTestResult, AuthEmailTemplateTestResultFromJSON, AuthEmailTemplateTestResultFromJSONTyped, AuthEmailTemplateTestResultToJSON, AuthEmailTemplateTestResultToJSONTyped, AuthEmailTemplateToJSON, AuthEmailTemplateToJSONTyped, type AuthEmailTemplateVersion, AuthEmailTemplateVersionEditorTypeEnum, AuthEmailTemplateVersionFromJSON, AuthEmailTemplateVersionFromJSONTyped, AuthEmailTemplateVersionToJSON, AuthEmailTemplateVersionToJSONTyped, type AuthEmailTemplateVersionsResponse, AuthEmailTemplateVersionsResponseFromJSON, AuthEmailTemplateVersionsResponseFromJSONTyped, AuthEmailTemplateVersionsResponseToJSON, AuthEmailTemplateVersionsResponseToJSONTyped, AuthEmailTemplatesApi, type AuthEmailTemplatesApiBulkUpsertAuthEmailTemplatesOperationRequest, type AuthEmailTemplatesApiDeleteAuthEmailTemplateRequest, type AuthEmailTemplatesApiGetAuthEmailTemplateDefaultRequest, type AuthEmailTemplatesApiGetAuthEmailTemplateRequest, type AuthEmailTemplatesApiInterface, type AuthEmailTemplatesApiListAuthEmailTemplateVersionsRequest, type AuthEmailTemplatesApiPreviewAuthEmailTemplateRequest, type AuthEmailTemplatesApiRestoreAuthEmailTemplateVersionRequest, type AuthEmailTemplatesApiSendAuthEmailTemplateTestRequest, type AuthEmailTemplatesApiUpsertAuthEmailTemplateOperationRequest, AuthEmailType, AuthEmailTypeFromJSON, AuthEmailTypeFromJSONTyped, AuthEmailTypeToJSON, AuthEmailTypeToJSONTyped, AuthEmailVerificationApi, type AuthEmailVerificationApiConfirmEmailVerificationOperationRequest, type AuthEmailVerificationApiInterface, type AuthEmailVerificationApiResendEmailVerificationRequest, type AuthEmailVerificationApiSendEmailVerificationOperationRequest, AuthLoginApi, type AuthLoginApiInterface, type AuthLoginApiLoginEndUserRequest, type AuthLoginResponse, AuthLoginResponseFromJSON, AuthLoginResponseFromJSONTyped, AuthLoginResponseToJSON, AuthLoginResponseToJSONTyped, type AuthLoginResult, AuthLoginResultFromJSON, AuthLoginResultFromJSONTyped, type AuthLoginResultMfaChallenge, AuthLoginResultMfaChallengeFromJSON, AuthLoginResultMfaChallengeFromJSONTyped, AuthLoginResultMfaChallengeToJSON, AuthLoginResultMfaChallengeToJSONTyped, AuthLoginResultToJSON, AuthLoginResultToJSONTyped, AuthMFAApi, type AuthMFAApiDisableMfaRequest, type AuthMFAApiGetMfaStatusRequest, type AuthMFAApiInterface, type AuthMFAApiRegenerateBackupCodesRequest, type AuthMFAApiStartMfaEnrollmentRequest, type AuthMFAApiVerifyMfaChallengeRequest, type AuthMFAApiVerifyMfaChallengeWithBackupCodeRequest, type AuthMFAApiVerifyMfaEnrollmentRequest, AuthMagicLinksApi, type AuthMagicLinksApiInterface, type AuthMagicLinksApiSendMagicLinkRequest, type AuthMagicLinksApiVerifyMagicLinkRequest, AuthOAuthApi, type AuthOAuthApiDisconnectOAuthProviderRequest, type AuthOAuthApiGetOAuthAuthorizationUrlRequest, type AuthOAuthApiGetOAuthConnectionInfoRequest, type AuthOAuthApiGetOAuthTokensRequest, type AuthOAuthApiHandleOAuthCallbackRequest, type AuthOAuthApiInterface, type AuthOAuthApiRefreshOAuthTokensOperationRequest, AuthPasswordResetApi, type AuthPasswordResetApiForgotPasswordOperationRequest, type AuthPasswordResetApiInterface, type AuthPasswordResetApiResetEndUserPasswordRequest, type AuthPasswordResetApiValidateResetTokenOperationRequest, AuthPhoneApi, type AuthPhoneApiInterface, type AuthPhoneApiSendPhoneLoginOtpRequest, type AuthPhoneApiSendPhoneRegistrationOtpRequest, type AuthPhoneApiVerifyPhoneLoginRequest, type AuthPhoneApiVerifyPhoneRegistrationRequest, AuthRegistrationApi, type AuthRegistrationApiInterface, type AuthRegistrationApiRegisterEndUserRequest, type AuthResult, AuthResultFromJSON, AuthResultFromJSONTyped, type AuthResultResponse, AuthResultResponseFromJSON, AuthResultResponseFromJSONTyped, AuthResultResponseToJSON, AuthResultResponseToJSONTyped, AuthResultToJSON, AuthResultToJSONTyped, type AuthSession, AuthSessionFromJSON, AuthSessionFromJSONTyped, AuthSessionToJSON, AuthSessionToJSONTyped, AuthSessionsApi, type AuthSessionsApiInterface, type AuthSessionsApiRefreshEndUserTokenRequest, type AuthSessionsApiRevokeEndUserSessionRequest, type AuthTokens, AuthTokensFromJSON, AuthTokensFromJSONTyped, AuthTokensToJSON, AuthTokensToJSONTyped, type AuthUser, AuthUserFromJSON, AuthUserFromJSONTyped, AuthUserProfileApi, type AuthUserProfileApiInterface, type AuthUserProfileApiUpdateEndUserOperationRequest, type AuthUserResponse, type AuthUserResponseData, AuthUserResponseDataFromJSON, AuthUserResponseDataFromJSONTyped, AuthUserResponseDataToJSON, AuthUserResponseDataToJSONTyped, AuthUserResponseFromJSON, AuthUserResponseFromJSONTyped, AuthUserResponseToJSON, AuthUserResponseToJSONTyped, AuthUserStatusEnum, AuthUserToJSON, AuthUserToJSONTyped, AuthWebAuthnApi, type AuthWebAuthnApiDeleteWebAuthnCredentialRequest, type AuthWebAuthnApiInterface, type AuthWebAuthnApiRenameWebAuthnCredentialOperationRequest, type AuthWebAuthnApiStartWebAuthnAuthenticationRequest, type AuthWebAuthnApiStartWebAuthnRegistrationRequest, type AuthWebAuthnApiVerifyWebAuthnAuthenticationRequest, type AuthWebAuthnApiVerifyWebAuthnRegistrationRequest, BASE_PATH, BaseAPI, type BatchPublishWaaSEvents201Response, BatchPublishWaaSEvents201ResponseFromJSON, BatchPublishWaaSEvents201ResponseFromJSONTyped, BatchPublishWaaSEvents201ResponseToJSON, BatchPublishWaaSEvents201ResponseToJSONTyped, BlobApiResponse, type BulkRetryWebhookDeliveriesRequest, BulkRetryWebhookDeliveriesRequestFromJSON, BulkRetryWebhookDeliveriesRequestFromJSONTyped, BulkRetryWebhookDeliveriesRequestStatusEnum, BulkRetryWebhookDeliveriesRequestToJSON, BulkRetryWebhookDeliveriesRequestToJSONTyped, type BulkUpsertAuthEmailTemplatesRequest, BulkUpsertAuthEmailTemplatesRequestFromJSON, BulkUpsertAuthEmailTemplatesRequestFromJSONTyped, BulkUpsertAuthEmailTemplatesRequestToJSON, BulkUpsertAuthEmailTemplatesRequestToJSONTyped, type BulkUpsertAuthEmailTemplatesResponse, BulkUpsertAuthEmailTemplatesResponseFromJSON, BulkUpsertAuthEmailTemplatesResponseFromJSONTyped, BulkUpsertAuthEmailTemplatesResponseToJSON, BulkUpsertAuthEmailTemplatesResponseToJSONTyped, COLLECTION_FORMATS, type Category, CategoryFromJSON, CategoryFromJSONTyped, type CategoryListResponse, CategoryListResponseFromJSON, CategoryListResponseFromJSONTyped, CategoryListResponseToJSON, CategoryListResponseToJSONTyped, type CategoryResponse, CategoryResponseFromJSON, CategoryResponseFromJSONTyped, CategoryResponseToJSON, CategoryResponseToJSONTyped, CategoryToJSON, CategoryToJSONTyped, Configuration, type ConfigurationParameters, type ConfirmEmailVerificationRequest, ConfirmEmailVerificationRequestFromJSON, ConfirmEmailVerificationRequestFromJSONTyped, ConfirmEmailVerificationRequestToJSON, ConfirmEmailVerificationRequestToJSONTyped, type ConfirmEmailVerificationResponse, type ConfirmEmailVerificationResponseData, ConfirmEmailVerificationResponseDataFromJSON, ConfirmEmailVerificationResponseDataFromJSONTyped, ConfirmEmailVerificationResponseDataToJSON, ConfirmEmailVerificationResponseDataToJSONTyped, ConfirmEmailVerificationResponseFromJSON, ConfirmEmailVerificationResponseFromJSONTyped, ConfirmEmailVerificationResponseToJSON, ConfirmEmailVerificationResponseToJSONTyped, type ConsentHistoryEntry, ConsentHistoryEntryFromJSON, ConsentHistoryEntryFromJSONTyped, ConsentHistoryEntryToJSON, ConsentHistoryEntryToJSONTyped, type ConsentHistoryResponse, ConsentHistoryResponseFromJSON, ConsentHistoryResponseFromJSONTyped, ConsentHistoryResponseToJSON, ConsentHistoryResponseToJSONTyped, type ConsentRecordResponse, type ConsentRecordResponseData, ConsentRecordResponseDataFromJSON, ConsentRecordResponseDataFromJSONTyped, ConsentRecordResponseDataToJSON, ConsentRecordResponseDataToJSONTyped, ConsentRecordResponseFromJSON, ConsentRecordResponseFromJSONTyped, ConsentRecordResponseToJSON, ConsentRecordResponseToJSONTyped, type ConsentStatus, ConsentStatusFromJSON, ConsentStatusFromJSONTyped, type ConsentStatusResponse, ConsentStatusResponseFromJSON, ConsentStatusResponseFromJSONTyped, ConsentStatusResponseToJSON, ConsentStatusResponseToJSONTyped, ConsentStatusToJSON, ConsentStatusToJSONTyped, type ConsentWithdrawResponse, ConsentWithdrawResponseFromJSON, ConsentWithdrawResponseFromJSONTyped, ConsentWithdrawResponseToJSON, ConsentWithdrawResponseToJSONTyped, type Consume, type CreateCategoryRequest, CreateCategoryRequestFromJSON, CreateCategoryRequestFromJSONTyped, CreateCategoryRequestToJSON, CreateCategoryRequestToJSONTyped, type CreateSubscriberRequest, CreateSubscriberRequestFromJSON, CreateSubscriberRequestFromJSONTyped, CreateSubscriberRequestToJSON, CreateSubscriberRequestToJSONTyped, type CreateTemplateRequest, CreateTemplateRequestFromJSON, CreateTemplateRequestFromJSONTyped, CreateTemplateRequestToJSON, CreateTemplateRequestToJSONTyped, type CreateTopicRequest, CreateTopicRequestFromJSON, CreateTopicRequestFromJSONTyped, CreateTopicRequestToJSON, CreateTopicRequestToJSONTyped, type CreateWaaSApplication201Response, CreateWaaSApplication201ResponseFromJSON, CreateWaaSApplication201ResponseFromJSONTyped, CreateWaaSApplication201ResponseToJSON, CreateWaaSApplication201ResponseToJSONTyped, type CreateWaaSApplicationRequest, CreateWaaSApplicationRequestFromJSON, CreateWaaSApplicationRequestFromJSONTyped, CreateWaaSApplicationRequestToJSON, CreateWaaSApplicationRequestToJSONTyped, type CreateWaaSEndpoint201Response, CreateWaaSEndpoint201ResponseFromJSON, CreateWaaSEndpoint201ResponseFromJSONTyped, CreateWaaSEndpoint201ResponseToJSON, CreateWaaSEndpoint201ResponseToJSONTyped, type CreateWaaSEndpointRequest, CreateWaaSEndpointRequestFromJSON, CreateWaaSEndpointRequestFromJSONTyped, CreateWaaSEndpointRequestToJSON, CreateWaaSEndpointRequestToJSONTyped, type CreateWaaSEndpointResponse, CreateWaaSEndpointResponseFromJSON, CreateWaaSEndpointResponseFromJSONTyped, CreateWaaSEndpointResponseToJSON, CreateWaaSEndpointResponseToJSONTyped, type CreateWaaSEventType201Response, CreateWaaSEventType201ResponseFromJSON, CreateWaaSEventType201ResponseFromJSONTyped, CreateWaaSEventType201ResponseToJSON, CreateWaaSEventType201ResponseToJSONTyped, type CreateWaaSEventTypeRequest, CreateWaaSEventTypeRequestFromJSON, CreateWaaSEventTypeRequestFromJSONTyped, CreateWaaSEventTypeRequestToJSON, CreateWaaSEventTypeRequestToJSONTyped, type CreateWebhookRequest, CreateWebhookRequestFromJSON, CreateWebhookRequestFromJSONTyped, CreateWebhookRequestToJSON, CreateWebhookRequestToJSONTyped, DefaultConfig, type DeleteResult, type DeleteResultData, DeleteResultDataFromJSON, DeleteResultDataFromJSONTyped, DeleteResultDataToJSON, DeleteResultDataToJSONTyped, DeleteResultFromJSON, DeleteResultFromJSONTyped, DeleteResultToJSON, DeleteResultToJSONTyped, type Device, DeviceFromJSON, DeviceFromJSONTyped, type DeviceListResponse, DeviceListResponseFromJSON, DeviceListResponseFromJSONTyped, DeviceListResponseToJSON, DeviceListResponseToJSONTyped, DevicePlatformEnum, type DevicePushTopic, DevicePushTopicFromJSON, DevicePushTopicFromJSONTyped, type DevicePushTopicListResponse, DevicePushTopicListResponseFromJSON, DevicePushTopicListResponseFromJSONTyped, type DevicePushTopicListResponseMeta, DevicePushTopicListResponseMetaFromJSON, DevicePushTopicListResponseMetaFromJSONTyped, DevicePushTopicListResponseMetaToJSON, DevicePushTopicListResponseMetaToJSONTyped, DevicePushTopicListResponseToJSON, DevicePushTopicListResponseToJSONTyped, DevicePushTopicToJSON, DevicePushTopicToJSONTyped, type DeviceResponse, DeviceResponseFromJSON, DeviceResponseFromJSONTyped, DeviceResponseToJSON, DeviceResponseToJSONTyped, type DeviceStats, DeviceStatsFromJSON, DeviceStatsFromJSONTyped, type DeviceStatsResponse, DeviceStatsResponseFromJSON, DeviceStatsResponseFromJSONTyped, DeviceStatsResponseToJSON, DeviceStatsResponseToJSONTyped, DeviceStatsToJSON, DeviceStatsToJSONTyped, DeviceToJSON, DeviceToJSONTyped, DevicesApi, type DevicesApiDeleteDeviceRequest, type DevicesApiDeleteUserDevicesRequest, type DevicesApiGetDeviceRequest, type DevicesApiInterface, type DevicesApiListDevicesRequest, type DevicesApiRegisterDeviceOperationRequest, type EmailAddress, EmailAddressFromJSON, EmailAddressFromJSONTyped, EmailAddressToJSON, EmailAddressToJSONTyped, type EmailAttachment, EmailAttachmentDispositionEnum, EmailAttachmentFromJSON, EmailAttachmentFromJSONTyped, EmailAttachmentToJSON, EmailAttachmentToJSONTyped, type EmailEvent, EmailEventFromJSON, EmailEventFromJSONTyped, EmailEventToJSON, EmailEventToJSONTyped, type EmailEventsResponse, EmailEventsResponseFromJSON, EmailEventsResponseFromJSONTyped, EmailEventsResponseToJSON, EmailEventsResponseToJSONTyped, type EmailListResponse, EmailListResponseFromJSON, EmailListResponseFromJSONTyped, EmailListResponseToJSON, EmailListResponseToJSONTyped, type EmailMessage, EmailMessageFromJSON, EmailMessageFromJSONTyped, EmailMessageStatusEnum, EmailMessageToJSON, EmailMessageToJSONTyped, type EmailResponse, EmailResponseFromJSON, EmailResponseFromJSONTyped, EmailResponseToJSON, EmailResponseToJSONTyped, type EmailTrackingClickLink, EmailTrackingClickLinkFromJSON, EmailTrackingClickLinkFromJSONTyped, EmailTrackingClickLinkToJSON, EmailTrackingClickLinkToJSONTyped, type EmailTrackingClicks, EmailTrackingClicksFromJSON, EmailTrackingClicksFromJSONTyped, EmailTrackingClicksToJSON, EmailTrackingClicksToJSONTyped, type EmailTrackingData, EmailTrackingDataFromJSON, EmailTrackingDataFromJSONTyped, EmailTrackingDataToJSON, EmailTrackingDataToJSONTyped, type EmailTrackingOpens, EmailTrackingOpensFromJSON, EmailTrackingOpensFromJSONTyped, EmailTrackingOpensToJSON, EmailTrackingOpensToJSONTyped, type EmailTrackingResponse, EmailTrackingResponseFromJSON, EmailTrackingResponseFromJSONTyped, EmailTrackingResponseToJSON, EmailTrackingResponseToJSONTyped, EmailsApi, type EmailsApiGetEmailEventsRequest, type EmailsApiGetEmailRequest, type EmailsApiGetEmailTrackingRequest, type EmailsApiInterface, type EmailsApiListEmailsRequest, type EmailsApiSendBatchEmailOperationRequest, type EmailsApiSendEmailOperationRequest, type EndUserDeleteResponse, type EndUserDeleteResponseData, EndUserDeleteResponseDataFromJSON, EndUserDeleteResponseDataFromJSONTyped, EndUserDeleteResponseDataToJSON, EndUserDeleteResponseDataToJSONTyped, EndUserDeleteResponseFromJSON, EndUserDeleteResponseFromJSONTyped, EndUserDeleteResponseToJSON, EndUserDeleteResponseToJSONTyped, type ErrorContext, type ExecutionCancelResponse, type ExecutionCancelResponseData, ExecutionCancelResponseDataFromJSON, ExecutionCancelResponseDataFromJSONTyped, ExecutionCancelResponseDataStatusEnum, ExecutionCancelResponseDataToJSON, ExecutionCancelResponseDataToJSONTyped, ExecutionCancelResponseFromJSON, ExecutionCancelResponseFromJSONTyped, ExecutionCancelResponseToJSON, ExecutionCancelResponseToJSONTyped, type ExecutionResponse, ExecutionResponseFromJSON, ExecutionResponseFromJSONTyped, ExecutionResponseToJSON, ExecutionResponseToJSONTyped, type ExecutionRetryResponse, type ExecutionRetryResponseData, ExecutionRetryResponseDataFromJSON, ExecutionRetryResponseDataFromJSONTyped, ExecutionRetryResponseDataStatusEnum, ExecutionRetryResponseDataToJSON, ExecutionRetryResponseDataToJSONTyped, ExecutionRetryResponseFromJSON, ExecutionRetryResponseFromJSONTyped, ExecutionRetryResponseToJSON, ExecutionRetryResponseToJSONTyped, ExecutionsApi, type ExecutionsApiCancelExecutionRequest, type ExecutionsApiGetExecutionRequest, type ExecutionsApiInterface, type ExecutionsApiRetryExecutionRequest, type FetchAPI, FetchError, type FetchParams, type ForgotPasswordRequest, ForgotPasswordRequestFromJSON, ForgotPasswordRequestFromJSONTyped, ForgotPasswordRequestToJSON, ForgotPasswordRequestToJSONTyped, type GenerateSubscriberToken200Response, type GenerateSubscriberToken200ResponseData, GenerateSubscriberToken200ResponseDataFromJSON, GenerateSubscriberToken200ResponseDataFromJSONTyped, GenerateSubscriberToken200ResponseDataToJSON, GenerateSubscriberToken200ResponseDataToJSONTyped, GenerateSubscriberToken200ResponseFromJSON, GenerateSubscriberToken200ResponseFromJSONTyped, GenerateSubscriberToken200ResponseToJSON, GenerateSubscriberToken200ResponseToJSONTyped, type GenerateSubscriberTokenRequest, GenerateSubscriberTokenRequestFromJSON, GenerateSubscriberTokenRequestFromJSONTyped, GenerateSubscriberTokenRequestToJSON, GenerateSubscriberTokenRequestToJSONTyped, type GenerateWaaSPortalToken201Response, GenerateWaaSPortalToken201ResponseFromJSON, GenerateWaaSPortalToken201ResponseFromJSONTyped, GenerateWaaSPortalToken201ResponseToJSON, GenerateWaaSPortalToken201ResponseToJSONTyped, type GetWaaSEndpoint200Response, GetWaaSEndpoint200ResponseFromJSON, GetWaaSEndpoint200ResponseFromJSONTyped, GetWaaSEndpoint200ResponseToJSON, GetWaaSEndpoint200ResponseToJSONTyped, type GetWaaSUsage200Response, GetWaaSUsage200ResponseFromJSON, GetWaaSUsage200ResponseFromJSONTyped, GetWaaSUsage200ResponseToJSON, GetWaaSUsage200ResponseToJSONTyped, type HTTPBody, type HTTPHeaders, type HTTPMethod, type HTTPQuery, type HTTPRequestInit, type InAppNotification, InAppNotificationFromJSON, InAppNotificationFromJSONTyped, InAppNotificationPriorityEnum, InAppNotificationToJSON, InAppNotificationToJSONTyped, InboxApi, type InboxApiArchiveInboxNotificationRequest, type InboxApiArchiveSubscriberNotificationRequest, type InboxApiDeleteInboxNotificationRequest, type InboxApiDeleteSubscriberNotificationRequest, type InboxApiGenerateSubscriberTokenOperationRequest, type InboxApiGetInboxNotificationRequest, type InboxApiGetSubscriberNotificationRequest, type InboxApiGetUnreadCountRequest, type InboxApiInterface, type InboxApiListAllInboxRequest, type InboxApiListInboxRequest, type InboxApiListSubscriberNotificationsRequest, type InboxApiMarkAllInboxReadOperationRequest, type InboxApiMarkAllSubscriberNotificationsReadOperationRequest, type InboxApiMarkInboxReadOperationRequest, type InboxApiMarkSubscriberNotificationReadRequest, type InboxApiSendBatchInAppOperationRequest, type InboxApiSendInAppOperationRequest, type InboxApiUpdateSubscriberPreferencesOperationRequest, type InboxListMeta, InboxListMetaFromJSON, InboxListMetaFromJSONTyped, InboxListMetaToJSON, InboxListMetaToJSONTyped, type InboxListResponse, InboxListResponseFromJSON, InboxListResponseFromJSONTyped, InboxListResponseToJSON, InboxListResponseToJSONTyped, type InboxNotificationResponse, InboxNotificationResponseFromJSON, InboxNotificationResponseFromJSONTyped, InboxNotificationResponseToJSON, InboxNotificationResponseToJSONTyped, type InitOverrideFunction, JSONApiResponse, type Json, ListAllInboxStatusEnum, ListDevicesPlatformEnum, ListEmailsStatusEnum, ListPushStatusEnum, ListSlackMessagesStatusEnum, ListSmsStatusEnum, ListSubscribersStatusEnum, type ListWaaSApplications200Response, ListWaaSApplications200ResponseFromJSON, ListWaaSApplications200ResponseFromJSONTyped, ListWaaSApplications200ResponseToJSON, ListWaaSApplications200ResponseToJSONTyped, ListWaaSApplicationsStatusEnum, ListWaaSDeliveriesStatusEnum, type ListWaaSEndpointDeliveries200Response, ListWaaSEndpointDeliveries200ResponseFromJSON, ListWaaSEndpointDeliveries200ResponseFromJSONTyped, ListWaaSEndpointDeliveries200ResponseToJSON, ListWaaSEndpointDeliveries200ResponseToJSONTyped, type ListWaaSEndpoints200Response, ListWaaSEndpoints200ResponseFromJSON, ListWaaSEndpoints200ResponseFromJSONTyped, ListWaaSEndpoints200ResponseToJSON, ListWaaSEndpoints200ResponseToJSONTyped, ListWaaSEndpointsStatusEnum, type ListWaaSEventTypes200Response, ListWaaSEventTypes200ResponseFromJSON, ListWaaSEventTypes200ResponseFromJSONTyped, ListWaaSEventTypes200ResponseToJSON, ListWaaSEventTypes200ResponseToJSONTyped, ListWaaSEventTypesStatusEnum, ListWebhookDeliveriesStatusEnum, type LoginRequest, LoginRequestFromJSON, LoginRequestFromJSONTyped, LoginRequestToJSON, LoginRequestToJSONTyped, type MagicLinkSendRequest, MagicLinkSendRequestFromJSON, MagicLinkSendRequestFromJSONTyped, MagicLinkSendRequestToJSON, MagicLinkSendRequestToJSONTyped, type MagicLinkVerifyRequest, MagicLinkVerifyRequestFromJSON, MagicLinkVerifyRequestFromJSONTyped, MagicLinkVerifyRequestToJSON, MagicLinkVerifyRequestToJSONTyped, type MagicLinkVerifyResponse, type MagicLinkVerifyResponseData, MagicLinkVerifyResponseDataFromJSON, MagicLinkVerifyResponseDataFromJSONTyped, MagicLinkVerifyResponseDataToJSON, MagicLinkVerifyResponseDataToJSONTyped, MagicLinkVerifyResponseFromJSON, MagicLinkVerifyResponseFromJSONTyped, MagicLinkVerifyResponseToJSON, MagicLinkVerifyResponseToJSONTyped, type MarkAllInboxReadRequest, MarkAllInboxReadRequestFromJSON, MarkAllInboxReadRequestFromJSONTyped, MarkAllInboxReadRequestToJSON, MarkAllInboxReadRequestToJSONTyped, type MarkAllReadData, MarkAllReadDataFromJSON, MarkAllReadDataFromJSONTyped, MarkAllReadDataToJSON, MarkAllReadDataToJSONTyped, type MarkAllReadResponse, MarkAllReadResponseFromJSON, MarkAllReadResponseFromJSONTyped, MarkAllReadResponseToJSON, MarkAllReadResponseToJSONTyped, type MarkAllSubscriberNotificationsReadRequest, MarkAllSubscriberNotificationsReadRequestFromJSON, MarkAllSubscriberNotificationsReadRequestFromJSONTyped, MarkAllSubscriberNotificationsReadRequestToJSON, MarkAllSubscriberNotificationsReadRequestToJSONTyped, type MarkInboxReadRequest, MarkInboxReadRequestFromJSON, MarkInboxReadRequestFromJSONTyped, MarkInboxReadRequestToJSON, MarkInboxReadRequestToJSONTyped, type MfaBackupCodesResponse, type MfaBackupCodesResponseData, MfaBackupCodesResponseDataFromJSON, MfaBackupCodesResponseDataFromJSONTyped, MfaBackupCodesResponseDataToJSON, MfaBackupCodesResponseDataToJSONTyped, MfaBackupCodesResponseFromJSON, MfaBackupCodesResponseFromJSONTyped, MfaBackupCodesResponseToJSON, MfaBackupCodesResponseToJSONTyped, type MfaDisableRequest, MfaDisableRequestFromJSON, MfaDisableRequestFromJSONTyped, MfaDisableRequestToJSON, MfaDisableRequestToJSONTyped, type MfaDisableResponse, type MfaDisableResponseData, MfaDisableResponseDataFromJSON, MfaDisableResponseDataFromJSONTyped, MfaDisableResponseDataToJSON, MfaDisableResponseDataToJSONTyped, MfaDisableResponseFromJSON, MfaDisableResponseFromJSONTyped, MfaDisableResponseToJSON, MfaDisableResponseToJSONTyped, type MfaEnrollRequest, MfaEnrollRequestFromJSON, MfaEnrollRequestFromJSONTyped, MfaEnrollRequestToJSON, MfaEnrollRequestToJSONTyped, type MfaEnrollmentResponse, type MfaEnrollmentResponseData, MfaEnrollmentResponseDataFromJSON, MfaEnrollmentResponseDataFromJSONTyped, MfaEnrollmentResponseDataToJSON, MfaEnrollmentResponseDataToJSONTyped, MfaEnrollmentResponseFromJSON, MfaEnrollmentResponseFromJSONTyped, MfaEnrollmentResponseToJSON, MfaEnrollmentResponseToJSONTyped, type MfaRegenerateBackupCodesRequest, MfaRegenerateBackupCodesRequestFromJSON, MfaRegenerateBackupCodesRequestFromJSONTyped, MfaRegenerateBackupCodesRequestToJSON, MfaRegenerateBackupCodesRequestToJSONTyped, type MfaStatusResponse, type MfaStatusResponseData, MfaStatusResponseDataFromJSON, MfaStatusResponseDataFromJSONTyped, MfaStatusResponseDataStatusEnum, MfaStatusResponseDataToJSON, MfaStatusResponseDataToJSONTyped, MfaStatusResponseFromJSON, MfaStatusResponseFromJSONTyped, MfaStatusResponseToJSON, MfaStatusResponseToJSONTyped, type MfaVerifyBackupRequest, MfaVerifyBackupRequestFromJSON, MfaVerifyBackupRequestFromJSONTyped, MfaVerifyBackupRequestToJSON, MfaVerifyBackupRequestToJSONTyped, type MfaVerifyBackupResponse, type MfaVerifyBackupResponseData, MfaVerifyBackupResponseDataFromJSON, MfaVerifyBackupResponseDataFromJSONTyped, MfaVerifyBackupResponseDataToJSON, MfaVerifyBackupResponseDataToJSONTyped, MfaVerifyBackupResponseFromJSON, MfaVerifyBackupResponseFromJSONTyped, MfaVerifyBackupResponseToJSON, MfaVerifyBackupResponseToJSONTyped, type MfaVerifyEnrollmentRequest, MfaVerifyEnrollmentRequestFromJSON, MfaVerifyEnrollmentRequestFromJSONTyped, MfaVerifyEnrollmentRequestToJSON, MfaVerifyEnrollmentRequestToJSONTyped, type MfaVerifyEnrollmentResponse, type MfaVerifyEnrollmentResponseData, MfaVerifyEnrollmentResponseDataFromJSON, MfaVerifyEnrollmentResponseDataFromJSONTyped, MfaVerifyEnrollmentResponseDataToJSON, MfaVerifyEnrollmentResponseDataToJSONTyped, MfaVerifyEnrollmentResponseFromJSON, MfaVerifyEnrollmentResponseFromJSONTyped, MfaVerifyEnrollmentResponseToJSON, MfaVerifyEnrollmentResponseToJSONTyped, type MfaVerifyRequest, MfaVerifyRequestFromJSON, MfaVerifyRequestFromJSONTyped, MfaVerifyRequestToJSON, MfaVerifyRequestToJSONTyped, type Middleware, type ModelPropertyNaming, type OAuthAuthorizationUrlResponse, type OAuthAuthorizationUrlResponseData, OAuthAuthorizationUrlResponseDataFromJSON, OAuthAuthorizationUrlResponseDataFromJSONTyped, OAuthAuthorizationUrlResponseDataToJSON, OAuthAuthorizationUrlResponseDataToJSONTyped, OAuthAuthorizationUrlResponseFromJSON, OAuthAuthorizationUrlResponseFromJSONTyped, OAuthAuthorizationUrlResponseToJSON, OAuthAuthorizationUrlResponseToJSONTyped, type OAuthCallbackRequest, OAuthCallbackRequestFromJSON, OAuthCallbackRequestFromJSONTyped, OAuthCallbackRequestToJSON, OAuthCallbackRequestToJSONTyped, type OAuthCallbackResponse, type OAuthCallbackResponseData, OAuthCallbackResponseDataFromJSON, OAuthCallbackResponseDataFromJSONTyped, OAuthCallbackResponseDataToJSON, OAuthCallbackResponseDataToJSONTyped, OAuthCallbackResponseFromJSON, OAuthCallbackResponseFromJSONTyped, OAuthCallbackResponseToJSON, OAuthCallbackResponseToJSONTyped, type OAuthConnection, OAuthConnectionFromJSON, OAuthConnectionFromJSONTyped, type OAuthConnectionInfoResponse, type OAuthConnectionInfoResponseData, OAuthConnectionInfoResponseDataFromJSON, OAuthConnectionInfoResponseDataFromJSONTyped, OAuthConnectionInfoResponseDataToJSON, OAuthConnectionInfoResponseDataToJSONTyped, OAuthConnectionInfoResponseFromJSON, OAuthConnectionInfoResponseFromJSONTyped, OAuthConnectionInfoResponseToJSON, OAuthConnectionInfoResponseToJSONTyped, OAuthConnectionToJSON, OAuthConnectionToJSONTyped, type OAuthConnectionsResponse, type OAuthConnectionsResponseData, OAuthConnectionsResponseDataFromJSON, OAuthConnectionsResponseDataFromJSONTyped, OAuthConnectionsResponseDataToJSON, OAuthConnectionsResponseDataToJSONTyped, OAuthConnectionsResponseFromJSON, OAuthConnectionsResponseFromJSONTyped, OAuthConnectionsResponseToJSON, OAuthConnectionsResponseToJSONTyped, type OAuthProvider, OAuthProviderFromJSON, OAuthProviderFromJSONTyped, type OAuthProviderInfo, OAuthProviderInfoFromJSON, OAuthProviderInfoFromJSONTyped, OAuthProviderInfoToJSON, OAuthProviderInfoToJSONTyped, OAuthProviderToJSON, OAuthProviderToJSONTyped, type OAuthProvidersResponse, type OAuthProvidersResponseData, OAuthProvidersResponseDataFromJSON, OAuthProvidersResponseDataFromJSONTyped, OAuthProvidersResponseDataToJSON, OAuthProvidersResponseDataToJSONTyped, OAuthProvidersResponseFromJSON, OAuthProvidersResponseFromJSONTyped, OAuthProvidersResponseToJSON, OAuthProvidersResponseToJSONTyped, type OAuthTokensRefreshResponse, type OAuthTokensRefreshResponseData, OAuthTokensRefreshResponseDataFromJSON, OAuthTokensRefreshResponseDataFromJSONTyped, OAuthTokensRefreshResponseDataToJSON, OAuthTokensRefreshResponseDataToJSONTyped, OAuthTokensRefreshResponseFromJSON, OAuthTokensRefreshResponseFromJSONTyped, OAuthTokensRefreshResponseToJSON, OAuthTokensRefreshResponseToJSONTyped, type OAuthTokensResponse, type OAuthTokensResponseData, OAuthTokensResponseDataFromJSON, OAuthTokensResponseDataFromJSONTyped, OAuthTokensResponseDataToJSON, OAuthTokensResponseDataToJSONTyped, OAuthTokensResponseFromJSON, OAuthTokensResponseFromJSONTyped, OAuthTokensResponseToJSON, OAuthTokensResponseToJSONTyped, type PaginationMeta, PaginationMetaFromJSON, PaginationMetaFromJSONTyped, PaginationMetaToJSON, PaginationMetaToJSONTyped, type PasswordRequirements, PasswordRequirementsFromJSON, PasswordRequirementsFromJSONTyped, type PasswordRequirementsResponse, type PasswordRequirementsResponseData, PasswordRequirementsResponseDataFromJSON, PasswordRequirementsResponseDataFromJSONTyped, PasswordRequirementsResponseDataToJSON, PasswordRequirementsResponseDataToJSONTyped, PasswordRequirementsResponseFromJSON, PasswordRequirementsResponseFromJSONTyped, PasswordRequirementsResponseToJSON, PasswordRequirementsResponseToJSONTyped, PasswordRequirementsToJSON, PasswordRequirementsToJSONTyped, type PhoneAuthAvailabilityResponse, type PhoneAuthAvailabilityResponseData, PhoneAuthAvailabilityResponseDataFromJSON, PhoneAuthAvailabilityResponseDataFromJSONTyped, PhoneAuthAvailabilityResponseDataToJSON, PhoneAuthAvailabilityResponseDataToJSONTyped, PhoneAuthAvailabilityResponseFromJSON, PhoneAuthAvailabilityResponseFromJSONTyped, PhoneAuthAvailabilityResponseToJSON, PhoneAuthAvailabilityResponseToJSONTyped, type PhoneLoginVerifyRequest, PhoneLoginVerifyRequestFromJSON, PhoneLoginVerifyRequestFromJSONTyped, PhoneLoginVerifyRequestToJSON, PhoneLoginVerifyRequestToJSONTyped, type PhoneOtpSendRequest, PhoneOtpSendRequestFromJSON, PhoneOtpSendRequestFromJSONTyped, PhoneOtpSendRequestToJSON, PhoneOtpSendRequestToJSONTyped, type PhoneOtpSentResponse, type PhoneOtpSentResponseData, PhoneOtpSentResponseDataFromJSON, PhoneOtpSentResponseDataFromJSONTyped, PhoneOtpSentResponseDataToJSON, PhoneOtpSentResponseDataToJSONTyped, PhoneOtpSentResponseFromJSON, PhoneOtpSentResponseFromJSONTyped, PhoneOtpSentResponseToJSON, PhoneOtpSentResponseToJSONTyped, type PhoneRegisterVerifyRequest, PhoneRegisterVerifyRequestFromJSON, PhoneRegisterVerifyRequestFromJSONTyped, PhoneRegisterVerifyRequestToJSON, PhoneRegisterVerifyRequestToJSONTyped, type PreferenceListResponse, PreferenceListResponseFromJSON, PreferenceListResponseFromJSONTyped, PreferenceListResponseToJSON, PreferenceListResponseToJSONTyped, type PublishWaaSEvent201Response, PublishWaaSEvent201ResponseFromJSON, PublishWaaSEvent201ResponseFromJSONTyped, PublishWaaSEvent201ResponseToJSON, PublishWaaSEvent201ResponseToJSONTyped, PushApi, type PushApiGetPushRequest, type PushApiInterface, type PushApiListDevicePushTopicsRequest, type PushApiListPushRequest, type PushApiListPushTopicDevicesRequest, type PushApiSendPushOperationRequest, type PushApiSendPushToTopicOperationRequest, type PushApiSubscribePushTopicOperationRequest, type PushApiUnsubscribePushTopicRequest, type PushDetailResponse, PushDetailResponseFromJSON, PushDetailResponseFromJSONTyped, PushDetailResponseToJSON, PushDetailResponseToJSONTyped, type PushEvent, PushEventFromJSON, PushEventFromJSONTyped, PushEventToJSON, PushEventToJSONTyped, type PushListResponse, PushListResponseFromJSON, PushListResponseFromJSONTyped, PushListResponseToJSON, PushListResponseToJSONTyped, type PushMessage, type PushMessageDetail, type PushMessageDetailAllOfActionButtons, PushMessageDetailAllOfActionButtonsFromJSON, PushMessageDetailAllOfActionButtonsFromJSONTyped, PushMessageDetailAllOfActionButtonsToJSON, PushMessageDetailAllOfActionButtonsToJSONTyped, PushMessageDetailFromJSON, PushMessageDetailFromJSONTyped, PushMessageDetailPlatformEnum, PushMessageDetailStatusEnum, PushMessageDetailToJSON, PushMessageDetailToJSONTyped, PushMessageFromJSON, PushMessageFromJSONTyped, PushMessagePlatformEnum, PushMessageStatusEnum, PushMessageToJSON, PushMessageToJSONTyped, type PushStatsData, PushStatsDataFromJSON, PushStatsDataFromJSONTyped, PushStatsDataToJSON, PushStatsDataToJSONTyped, type PushStatsResponse, PushStatsResponseFromJSON, PushStatsResponseFromJSONTyped, PushStatsResponseToJSON, PushStatsResponseToJSONTyped, type PushTopicDevice, PushTopicDeviceFromJSON, PushTopicDeviceFromJSONTyped, type PushTopicDeviceListResponse, PushTopicDeviceListResponseFromJSON, PushTopicDeviceListResponseFromJSONTyped, PushTopicDeviceListResponseToJSON, PushTopicDeviceListResponseToJSONTyped, PushTopicDevicePlatformEnum, PushTopicDeviceToJSON, PushTopicDeviceToJSONTyped, type PushTopicSubscribeData, PushTopicSubscribeDataFromJSON, PushTopicSubscribeDataFromJSONTyped, PushTopicSubscribeDataToJSON, PushTopicSubscribeDataToJSONTyped, type PushTopicSubscribeResponse, PushTopicSubscribeResponseFromJSON, PushTopicSubscribeResponseFromJSONTyped, PushTopicSubscribeResponseToJSON, PushTopicSubscribeResponseToJSONTyped, type PushTopicUnsubscribeData, PushTopicUnsubscribeDataFromJSON, PushTopicUnsubscribeDataFromJSONTyped, PushTopicUnsubscribeDataToJSON, PushTopicUnsubscribeDataToJSONTyped, type PushTopicUnsubscribeResponse, PushTopicUnsubscribeResponseFromJSON, PushTopicUnsubscribeResponseFromJSONTyped, PushTopicUnsubscribeResponseToJSON, PushTopicUnsubscribeResponseToJSONTyped, type RefreshOAuthTokensRequest, RefreshOAuthTokensRequestFromJSON, RefreshOAuthTokensRequestFromJSONTyped, RefreshOAuthTokensRequestToJSON, RefreshOAuthTokensRequestToJSONTyped, type RefreshSessionRequest, RefreshSessionRequestFromJSON, RefreshSessionRequestFromJSONTyped, RefreshSessionRequestToJSON, RefreshSessionRequestToJSONTyped, type RefreshTokenResponse, type RefreshTokenResponseData, RefreshTokenResponseDataFromJSON, RefreshTokenResponseDataFromJSONTyped, RefreshTokenResponseDataToJSON, RefreshTokenResponseDataToJSONTyped, RefreshTokenResponseFromJSON, RefreshTokenResponseFromJSONTyped, RefreshTokenResponseToJSON, RefreshTokenResponseToJSONTyped, type RegisterDeviceRequest, RegisterDeviceRequestFromJSON, RegisterDeviceRequestFromJSONTyped, RegisterDeviceRequestPlatformEnum, RegisterDeviceRequestToJSON, RegisterDeviceRequestToJSONTyped, type RegisterRequest, RegisterRequestFromJSON, RegisterRequestFromJSONTyped, RegisterRequestToJSON, RegisterRequestToJSONTyped, type RemoveTopicSubscribersRequest, RemoveTopicSubscribersRequestFromJSON, RemoveTopicSubscribersRequestFromJSONTyped, RemoveTopicSubscribersRequestToJSON, RemoveTopicSubscribersRequestToJSONTyped, type RenameWebAuthnCredentialRequest, RenameWebAuthnCredentialRequestFromJSON, RenameWebAuthnCredentialRequestFromJSONTyped, RenameWebAuthnCredentialRequestToJSON, RenameWebAuthnCredentialRequestToJSONTyped, type RenderTemplateRequest, RenderTemplateRequestFromJSON, RenderTemplateRequestFromJSONTyped, RenderTemplateRequestToJSON, RenderTemplateRequestToJSONTyped, type ReplayWebhookEventsRequest, ReplayWebhookEventsRequestFromJSON, ReplayWebhookEventsRequestFromJSONTyped, ReplayWebhookEventsRequestToJSON, ReplayWebhookEventsRequestToJSONTyped, type RequestContext, type RequestMeta, RequestMetaFromJSON, RequestMetaFromJSONTyped, RequestMetaToJSON, RequestMetaToJSONTyped, type RequestOpts, RequiredError, type ResetPasswordRequest, ResetPasswordRequestFromJSON, ResetPasswordRequestFromJSONTyped, ResetPasswordRequestToJSON, ResetPasswordRequestToJSONTyped, type ResetPasswordResponse, ResetPasswordResponseFromJSON, ResetPasswordResponseFromJSONTyped, ResetPasswordResponseToJSON, ResetPasswordResponseToJSONTyped, type ResponseContext, ResponseError, type ResponseTransformer, type ResubscribeRequest, ResubscribeRequestChannelEnum, ResubscribeRequestFromJSON, ResubscribeRequestFromJSONTyped, ResubscribeRequestToJSON, ResubscribeRequestToJSONTyped, type ResubscribeResponse, ResubscribeResponseFromJSON, ResubscribeResponseFromJSONTyped, ResubscribeResponseToJSON, ResubscribeResponseToJSONTyped, type RevokeAllSessionsResponse, type RevokeAllSessionsResponseData, RevokeAllSessionsResponseDataFromJSON, RevokeAllSessionsResponseDataFromJSONTyped, RevokeAllSessionsResponseDataToJSON, RevokeAllSessionsResponseDataToJSONTyped, RevokeAllSessionsResponseFromJSON, RevokeAllSessionsResponseFromJSONTyped, RevokeAllSessionsResponseToJSON, RevokeAllSessionsResponseToJSONTyped, type RevokeSessionRequest, RevokeSessionRequestFromJSON, RevokeSessionRequestFromJSONTyped, RevokeSessionRequestToJSON, RevokeSessionRequestToJSONTyped, SDK_VERSION, SMSApi, type SMSApiGetSmsRequest, type SMSApiInterface, type SMSApiListSmsRequest, type SMSApiSendBatchSmsOperationRequest, type SMSApiSendSmsOperationRequest, type SMSApiSendTestSmsOperationRequest, type SMSApiUpsertSmsConfigOperationRequest, type SendBatchEmailRequest, SendBatchEmailRequestFromJSON, SendBatchEmailRequestFromJSONTyped, SendBatchEmailRequestToJSON, SendBatchEmailRequestToJSONTyped, type SendBatchEmailResponse, SendBatchEmailResponseFromJSON, SendBatchEmailResponseFromJSONTyped, SendBatchEmailResponseToJSON, SendBatchEmailResponseToJSONTyped, type SendBatchEmailResult, SendBatchEmailResultFromJSON, SendBatchEmailResultFromJSONTyped, type SendBatchEmailResultItem, SendBatchEmailResultItemFromJSON, SendBatchEmailResultItemFromJSONTyped, SendBatchEmailResultItemToJSON, SendBatchEmailResultItemToJSONTyped, SendBatchEmailResultToJSON, SendBatchEmailResultToJSONTyped, type SendBatchInAppMeta, SendBatchInAppMetaFromJSON, SendBatchInAppMetaFromJSONTyped, SendBatchInAppMetaToJSON, SendBatchInAppMetaToJSONTyped, type SendBatchInAppRequest, SendBatchInAppRequestFromJSON, SendBatchInAppRequestFromJSONTyped, SendBatchInAppRequestToJSON, SendBatchInAppRequestToJSONTyped, type SendBatchInAppResponse, SendBatchInAppResponseFromJSON, SendBatchInAppResponseFromJSONTyped, SendBatchInAppResponseToJSON, SendBatchInAppResponseToJSONTyped, type SendBatchSmsData, SendBatchSmsDataFromJSON, SendBatchSmsDataFromJSONTyped, SendBatchSmsDataToJSON, SendBatchSmsDataToJSONTyped, type SendBatchSmsRequest, SendBatchSmsRequestFromJSON, SendBatchSmsRequestFromJSONTyped, SendBatchSmsRequestToJSON, SendBatchSmsRequestToJSONTyped, type SendBatchSmsResponse, SendBatchSmsResponseFromJSON, SendBatchSmsResponseFromJSONTyped, SendBatchSmsResponseToJSON, SendBatchSmsResponseToJSONTyped, type SendEmailRequest, SendEmailRequestFromJSON, SendEmailRequestFromJSONTyped, SendEmailRequestToJSON, SendEmailRequestToJSONTyped, type SendEmailResponse, type SendEmailResponseData, SendEmailResponseDataFromJSON, SendEmailResponseDataFromJSONTyped, SendEmailResponseDataStatusEnum, SendEmailResponseDataToJSON, SendEmailResponseDataToJSONTyped, SendEmailResponseFromJSON, SendEmailResponseFromJSONTyped, type SendEmailResponseMeta, SendEmailResponseMetaFromJSON, SendEmailResponseMetaFromJSONTyped, SendEmailResponseMetaToJSON, SendEmailResponseMetaToJSONTyped, SendEmailResponseToJSON, SendEmailResponseToJSONTyped, type SendEmailVerificationRequest, SendEmailVerificationRequestFromJSON, SendEmailVerificationRequestFromJSONTyped, SendEmailVerificationRequestToJSON, SendEmailVerificationRequestToJSONTyped, type SendInAppMeta, SendInAppMetaFromJSON, SendInAppMetaFromJSONTyped, SendInAppMetaToJSON, SendInAppMetaToJSONTyped, type SendInAppRequest, SendInAppRequestFromJSON, SendInAppRequestFromJSONTyped, SendInAppRequestPriorityEnum, SendInAppRequestToJSON, SendInAppRequestToJSONTyped, type SendInAppResponse, SendInAppResponseFromJSON, SendInAppResponseFromJSONTyped, SendInAppResponseToJSON, SendInAppResponseToJSONTyped, type SendPushRequest, type SendPushRequestActionButtonsInner, SendPushRequestActionButtonsInnerFromJSON, SendPushRequestActionButtonsInnerFromJSONTyped, SendPushRequestActionButtonsInnerToJSON, SendPushRequestActionButtonsInnerToJSONTyped, SendPushRequestFromJSON, SendPushRequestFromJSONTyped, SendPushRequestToJSON, SendPushRequestToJSONTyped, type SendPushResponse, type SendPushResponseData, SendPushResponseDataFromJSON, SendPushResponseDataFromJSONTyped, SendPushResponseDataToJSON, SendPushResponseDataToJSONTyped, SendPushResponseFromJSON, SendPushResponseFromJSONTyped, SendPushResponseToJSON, SendPushResponseToJSONTyped, type SendPushToTopicData, SendPushToTopicDataFromJSON, SendPushToTopicDataFromJSONTyped, SendPushToTopicDataToJSON, SendPushToTopicDataToJSONTyped, type SendPushToTopicRequest, SendPushToTopicRequestFromJSON, SendPushToTopicRequestFromJSONTyped, SendPushToTopicRequestToJSON, SendPushToTopicRequestToJSONTyped, type SendPushToTopicResponse, SendPushToTopicResponseFromJSON, SendPushToTopicResponseFromJSONTyped, SendPushToTopicResponseToJSON, SendPushToTopicResponseToJSONTyped, type SendSlackMessageRequest, SendSlackMessageRequestFromJSON, SendSlackMessageRequestFromJSONTyped, SendSlackMessageRequestToJSON, SendSlackMessageRequestToJSONTyped, type SendSlackMessageResponse, SendSlackMessageResponseFromJSON, SendSlackMessageResponseFromJSONTyped, SendSlackMessageResponseToJSON, SendSlackMessageResponseToJSONTyped, type SendSlackMessageResult, SendSlackMessageResultFromJSON, SendSlackMessageResultFromJSONTyped, SendSlackMessageResultToJSON, SendSlackMessageResultToJSONTyped, type SendSmsData, SendSmsDataFromJSON, SendSmsDataFromJSONTyped, SendSmsDataToJSON, SendSmsDataToJSONTyped, type SendSmsRequest, SendSmsRequestFromJSON, SendSmsRequestFromJSONTyped, SendSmsRequestToJSON, SendSmsRequestToJSONTyped, type SendSmsResponse, SendSmsResponseFromJSON, SendSmsResponseFromJSONTyped, SendSmsResponseToJSON, SendSmsResponseToJSONTyped, type SendTestSmsData, SendTestSmsDataFromJSON, SendTestSmsDataFromJSONTyped, SendTestSmsDataToJSON, SendTestSmsDataToJSONTyped, type SendTestSmsRequest, SendTestSmsRequestFromJSON, SendTestSmsRequestFromJSONTyped, SendTestSmsRequestToJSON, SendTestSmsRequestToJSONTyped, type SendTestSmsResponse, SendTestSmsResponseFromJSON, SendTestSmsResponseFromJSONTyped, SendTestSmsResponseToJSON, SendTestSmsResponseToJSONTyped, type SendWebhookTestEventRequest, SendWebhookTestEventRequestFromJSON, SendWebhookTestEventRequestFromJSONTyped, SendWebhookTestEventRequestToJSON, SendWebhookTestEventRequestToJSONTyped, type SessionListResponse, type SessionListResponseData, SessionListResponseDataFromJSON, SessionListResponseDataFromJSONTyped, type SessionListResponseDataSessionInfo, SessionListResponseDataSessionInfoFromJSON, SessionListResponseDataSessionInfoFromJSONTyped, SessionListResponseDataSessionInfoToJSON, SessionListResponseDataSessionInfoToJSONTyped, SessionListResponseDataToJSON, SessionListResponseDataToJSONTyped, SessionListResponseFromJSON, SessionListResponseFromJSONTyped, SessionListResponseToJSON, SessionListResponseToJSONTyped, type SetPreferencesRequest, SetPreferencesRequestFromJSON, SetPreferencesRequestFromJSONTyped, type SetPreferencesRequestPreferencesInner, SetPreferencesRequestPreferencesInnerFromJSON, SetPreferencesRequestPreferencesInnerFromJSONTyped, SetPreferencesRequestPreferencesInnerToJSON, SetPreferencesRequestPreferencesInnerToJSONTyped, SetPreferencesRequestToJSON, SetPreferencesRequestToJSONTyped, SlackApi, type SlackApiGetSlackMessageRequest, type SlackApiInterface, type SlackApiListSlackMessagesRequest, type SlackApiSendSlackMessageOperationRequest, type SlackMessage, SlackMessageFromJSON, SlackMessageFromJSONTyped, type SlackMessageListResponse, SlackMessageListResponseFromJSON, SlackMessageListResponseFromJSONTyped, type SlackMessageListResponseMeta, SlackMessageListResponseMetaFromJSON, SlackMessageListResponseMetaFromJSONTyped, SlackMessageListResponseMetaToJSON, SlackMessageListResponseMetaToJSONTyped, SlackMessageListResponseToJSON, SlackMessageListResponseToJSONTyped, type SlackMessageResponse, SlackMessageResponseFromJSON, SlackMessageResponseFromJSONTyped, SlackMessageResponseToJSON, SlackMessageResponseToJSONTyped, SlackMessageStatus, SlackMessageStatusFromJSON, SlackMessageStatusFromJSONTyped, SlackMessageStatusToJSON, SlackMessageStatusToJSONTyped, type SlackMessageSummary, SlackMessageSummaryFromJSON, SlackMessageSummaryFromJSONTyped, SlackMessageSummaryToJSON, SlackMessageSummaryToJSONTyped, SlackMessageToJSON, SlackMessageToJSONTyped, type SmsBatchResultMessage, SmsBatchResultMessageFromJSON, SmsBatchResultMessageFromJSONTyped, SmsBatchResultMessageToJSON, SmsBatchResultMessageToJSONTyped, type SmsBatchResultSummary, SmsBatchResultSummaryFromJSON, SmsBatchResultSummaryFromJSONTyped, SmsBatchResultSummaryToJSON, SmsBatchResultSummaryToJSONTyped, type SmsConfig, type SmsConfigDeleteResponse, type SmsConfigDeleteResponseData, SmsConfigDeleteResponseDataFromJSON, SmsConfigDeleteResponseDataFromJSONTyped, SmsConfigDeleteResponseDataToJSON, SmsConfigDeleteResponseDataToJSONTyped, SmsConfigDeleteResponseFromJSON, SmsConfigDeleteResponseFromJSONTyped, SmsConfigDeleteResponseToJSON, SmsConfigDeleteResponseToJSONTyped, SmsConfigFromJSON, SmsConfigFromJSONTyped, type SmsConfigResponse, SmsConfigResponseFromJSON, SmsConfigResponseFromJSONTyped, SmsConfigResponseToJSON, SmsConfigResponseToJSONTyped, SmsConfigToJSON, SmsConfigToJSONTyped, type SmsDetailResponse, SmsDetailResponseFromJSON, SmsDetailResponseFromJSONTyped, SmsDetailResponseToJSON, SmsDetailResponseToJSONTyped, type SmsListResponse, SmsListResponseFromJSON, SmsListResponseFromJSONTyped, type SmsListResponseMeta, SmsListResponseMetaFromJSON, SmsListResponseMetaFromJSONTyped, SmsListResponseMetaToJSON, SmsListResponseMetaToJSONTyped, SmsListResponseToJSON, SmsListResponseToJSONTyped, type SmsMessage, type SmsMessageDetail, SmsMessageDetailFromJSON, SmsMessageDetailFromJSONTyped, SmsMessageDetailStatusEnum, SmsMessageDetailToJSON, SmsMessageDetailToJSONTyped, SmsMessageFromJSON, SmsMessageFromJSONTyped, SmsMessageStatusEnum, SmsMessageToJSON, SmsMessageToJSONTyped, type SubscribePushTopicRequest, SubscribePushTopicRequestFromJSON, SubscribePushTopicRequestFromJSONTyped, SubscribePushTopicRequestToJSON, SubscribePushTopicRequestToJSONTyped, type Subscriber, SubscriberFromJSON, SubscriberFromJSONTyped, type SubscriberListResponse, SubscriberListResponseFromJSON, SubscriberListResponseFromJSONTyped, SubscriberListResponseToJSON, SubscriberListResponseToJSONTyped, type SubscriberPreference, SubscriberPreferenceChannelEnum, SubscriberPreferenceFromJSON, SubscriberPreferenceFromJSONTyped, SubscriberPreferenceToJSON, SubscriberPreferenceToJSONTyped, type SubscriberResponse, SubscriberResponseFromJSON, SubscriberResponseFromJSONTyped, SubscriberResponseToJSON, SubscriberResponseToJSONTyped, SubscriberStatusEnum, SubscriberToJSON, SubscriberToJSONTyped, SubscribersApi, type SubscribersApiCreateCategoryOperationRequest, type SubscribersApiCreateSubscriberOperationRequest, type SubscribersApiDeleteCategoryRequest, type SubscribersApiDeleteSubscriberRequest, type SubscribersApiGetCategoryRequest, type SubscribersApiGetSubscriberByExternalIdRequest, type SubscribersApiGetSubscriberConsentHistoryRequest, type SubscribersApiGetSubscriberConsentRequest, type SubscribersApiGetSubscriberPreferencesRequest, type SubscribersApiGetSubscriberRequest, type SubscribersApiGetSubscriberUnsubscribesRequest, type SubscribersApiInterface, type SubscribersApiListSubscribersRequest, type SubscribersApiRecordSubscriberConsentRequest, type SubscribersApiResubscribeSubscriberRequest, type SubscribersApiSetSubscriberPreferencesRequest, type SubscribersApiUnsubscribeSubscriberRequest, type SubscribersApiUpdateCategoryOperationRequest, type SubscribersApiUpdateSubscriberOperationRequest, type SubscribersApiWithdrawSubscriberConsentOperationRequest, type SuccessResult, SuccessResultFromJSON, SuccessResultFromJSONTyped, SuccessResultToJSON, SuccessResultToJSONTyped, type Template, TemplateFromJSON, TemplateFromJSONTyped, type TemplateListResponse, TemplateListResponseFromJSON, TemplateListResponseFromJSONTyped, TemplateListResponseToJSON, TemplateListResponseToJSONTyped, type TemplateRenderResponse, TemplateRenderResponseFromJSON, TemplateRenderResponseFromJSONTyped, TemplateRenderResponseToJSON, TemplateRenderResponseToJSONTyped, type TemplateRenderedContent, TemplateRenderedContentFromJSON, TemplateRenderedContentFromJSONTyped, TemplateRenderedContentToJSON, TemplateRenderedContentToJSONTyped, type TemplateResponse, TemplateResponseFromJSON, TemplateResponseFromJSONTyped, TemplateResponseToJSON, TemplateResponseToJSONTyped, TemplateToJSON, TemplateToJSONTyped, TemplatesApi, type TemplatesApiCreateTemplateOperationRequest, type TemplatesApiDeleteTemplateRequest, type TemplatesApiGetTemplateRequest, type TemplatesApiInterface, type TemplatesApiListTemplatesRequest, type TemplatesApiRenderTemplateOperationRequest, type TemplatesApiUpdateTemplateOperationRequest, type TestWebhookTransformRequest, TestWebhookTransformRequestFromJSON, TestWebhookTransformRequestFromJSONTyped, TestWebhookTransformRequestToJSON, TestWebhookTransformRequestToJSONTyped, TextApiResponse, type Topic, type TopicDeleteResponse, type TopicDeleteResponseData, TopicDeleteResponseDataFromJSON, TopicDeleteResponseDataFromJSONTyped, TopicDeleteResponseDataToJSON, TopicDeleteResponseDataToJSONTyped, TopicDeleteResponseFromJSON, TopicDeleteResponseFromJSONTyped, TopicDeleteResponseToJSON, TopicDeleteResponseToJSONTyped, TopicFromJSON, TopicFromJSONTyped, type TopicListResponse, TopicListResponseFromJSON, TopicListResponseFromJSONTyped, TopicListResponseToJSON, TopicListResponseToJSONTyped, type TopicResponse, TopicResponseFromJSON, TopicResponseFromJSONTyped, TopicResponseToJSON, TopicResponseToJSONTyped, type TopicStatsData, TopicStatsDataFromJSON, TopicStatsDataFromJSONTyped, TopicStatsDataToJSON, TopicStatsDataToJSONTyped, type TopicStatsDataTopicsBySubscriberCountInner, TopicStatsDataTopicsBySubscriberCountInnerFromJSON, TopicStatsDataTopicsBySubscriberCountInnerFromJSONTyped, TopicStatsDataTopicsBySubscriberCountInnerToJSON, TopicStatsDataTopicsBySubscriberCountInnerToJSONTyped, type TopicStatsResponse, TopicStatsResponseFromJSON, TopicStatsResponseFromJSONTyped, TopicStatsResponseToJSON, TopicStatsResponseToJSONTyped, type TopicSubscriber, TopicSubscriberFromJSON, TopicSubscriberFromJSONTyped, type TopicSubscriberListResponse, TopicSubscriberListResponseFromJSON, TopicSubscriberListResponseFromJSONTyped, TopicSubscriberListResponseToJSON, TopicSubscriberListResponseToJSONTyped, TopicSubscriberToJSON, TopicSubscriberToJSONTyped, type TopicSubscribersAddResponse, TopicSubscribersAddResponseFromJSON, TopicSubscribersAddResponseFromJSONTyped, TopicSubscribersAddResponseToJSON, TopicSubscribersAddResponseToJSONTyped, type TopicSubscribersAddResult, TopicSubscribersAddResultFromJSON, TopicSubscribersAddResultFromJSONTyped, TopicSubscribersAddResultToJSON, TopicSubscribersAddResultToJSONTyped, type TopicSubscribersRemoveResponse, TopicSubscribersRemoveResponseFromJSON, TopicSubscribersRemoveResponseFromJSONTyped, TopicSubscribersRemoveResponseToJSON, TopicSubscribersRemoveResponseToJSONTyped, type TopicSubscribersRemoveResult, TopicSubscribersRemoveResultFromJSON, TopicSubscribersRemoveResultFromJSONTyped, TopicSubscribersRemoveResultToJSON, TopicSubscribersRemoveResultToJSONTyped, TopicToJSON, TopicToJSONTyped, TopicsApi, type TopicsApiAddTopicSubscribersOperationRequest, type TopicsApiCreateTopicOperationRequest, type TopicsApiDeleteTopicRequest, type TopicsApiGetTopicRequest, type TopicsApiInterface, type TopicsApiListTopicSubscribersRequest, type TopicsApiListTopicsRequest, type TopicsApiRemoveTopicSubscribersOperationRequest, type TopicsApiUpdateTopicOperationRequest, type UnreadCountData, UnreadCountDataFromJSON, UnreadCountDataFromJSONTyped, UnreadCountDataToJSON, UnreadCountDataToJSONTyped, type UnreadCountResponse, UnreadCountResponseFromJSON, UnreadCountResponseFromJSONTyped, UnreadCountResponseToJSON, UnreadCountResponseToJSONTyped, type Unsubscribe, UnsubscribeChannelEnum, UnsubscribeFromJSON, UnsubscribeFromJSONTyped, type UnsubscribeListResponse, UnsubscribeListResponseFromJSON, UnsubscribeListResponseFromJSONTyped, UnsubscribeListResponseToJSON, UnsubscribeListResponseToJSONTyped, type UnsubscribeRequest, UnsubscribeRequestChannelEnum, UnsubscribeRequestFromJSON, UnsubscribeRequestFromJSONTyped, UnsubscribeRequestToJSON, UnsubscribeRequestToJSONTyped, type UnsubscribeResponse, UnsubscribeResponseFromJSON, UnsubscribeResponseFromJSONTyped, UnsubscribeResponseToJSON, UnsubscribeResponseToJSONTyped, UnsubscribeToJSON, UnsubscribeToJSONTyped, type UpdateCategoryRequest, UpdateCategoryRequestFromJSON, UpdateCategoryRequestFromJSONTyped, UpdateCategoryRequestToJSON, UpdateCategoryRequestToJSONTyped, type UpdateEndUserRequest, UpdateEndUserRequestFromJSON, UpdateEndUserRequestFromJSONTyped, UpdateEndUserRequestToJSON, UpdateEndUserRequestToJSONTyped, type UpdateSubscriberPreferencesRequest, UpdateSubscriberPreferencesRequestFromJSON, UpdateSubscriberPreferencesRequestFromJSONTyped, type UpdateSubscriberPreferencesRequestPreferencesInner, UpdateSubscriberPreferencesRequestPreferencesInnerChannelEnum, UpdateSubscriberPreferencesRequestPreferencesInnerFromJSON, UpdateSubscriberPreferencesRequestPreferencesInnerFromJSONTyped, UpdateSubscriberPreferencesRequestPreferencesInnerToJSON, UpdateSubscriberPreferencesRequestPreferencesInnerToJSONTyped, UpdateSubscriberPreferencesRequestToJSON, UpdateSubscriberPreferencesRequestToJSONTyped, type UpdateSubscriberRequest, UpdateSubscriberRequestFromJSON, UpdateSubscriberRequestFromJSONTyped, UpdateSubscriberRequestStatusEnum, UpdateSubscriberRequestToJSON, UpdateSubscriberRequestToJSONTyped, type UpdateTemplateRequest, UpdateTemplateRequestFromJSON, UpdateTemplateRequestFromJSONTyped, UpdateTemplateRequestToJSON, UpdateTemplateRequestToJSONTyped, type UpdateTopicRequest, UpdateTopicRequestFromJSON, UpdateTopicRequestFromJSONTyped, UpdateTopicRequestToJSON, UpdateTopicRequestToJSONTyped, type UpdateWaaSApplicationRequest, UpdateWaaSApplicationRequestFromJSON, UpdateWaaSApplicationRequestFromJSONTyped, UpdateWaaSApplicationRequestStatusEnum, UpdateWaaSApplicationRequestToJSON, UpdateWaaSApplicationRequestToJSONTyped, type UpdateWaaSEndpointRequest, UpdateWaaSEndpointRequestFromJSON, UpdateWaaSEndpointRequestFromJSONTyped, UpdateWaaSEndpointRequestStatusEnum, UpdateWaaSEndpointRequestToJSON, UpdateWaaSEndpointRequestToJSONTyped, type UpdateWaaSEventTypeRequest, UpdateWaaSEventTypeRequestFromJSON, UpdateWaaSEventTypeRequestFromJSONTyped, UpdateWaaSEventTypeRequestToJSON, UpdateWaaSEventTypeRequestToJSONTyped, type UpdateWebhookRequest, UpdateWebhookRequestFromJSON, UpdateWebhookRequestFromJSONTyped, UpdateWebhookRequestToJSON, UpdateWebhookRequestToJSONTyped, type UpsertAuthEmailTemplateRequest, UpsertAuthEmailTemplateRequestEditorTypeEnum, UpsertAuthEmailTemplateRequestFromJSON, UpsertAuthEmailTemplateRequestFromJSONTyped, UpsertAuthEmailTemplateRequestToJSON, UpsertAuthEmailTemplateRequestToJSONTyped, type UpsertSmsConfigRequest, UpsertSmsConfigRequestFromJSON, UpsertSmsConfigRequestFromJSONTyped, UpsertSmsConfigRequestToJSON, UpsertSmsConfigRequestToJSONTyped, type UserDevicesDeleteResponse, type UserDevicesDeleteResponseData, UserDevicesDeleteResponseDataFromJSON, UserDevicesDeleteResponseDataFromJSONTyped, UserDevicesDeleteResponseDataToJSON, UserDevicesDeleteResponseDataToJSONTyped, UserDevicesDeleteResponseFromJSON, UserDevicesDeleteResponseFromJSONTyped, UserDevicesDeleteResponseToJSON, UserDevicesDeleteResponseToJSONTyped, UtilityApi, type UtilityApiInterface, type ValidateResetTokenRequest, ValidateResetTokenRequestFromJSON, ValidateResetTokenRequestFromJSONTyped, ValidateResetTokenRequestToJSON, ValidateResetTokenRequestToJSONTyped, type ValidateResetTokenResponse, type ValidateResetTokenResponseData, ValidateResetTokenResponseDataFromJSON, ValidateResetTokenResponseDataFromJSONTyped, ValidateResetTokenResponseDataToJSON, ValidateResetTokenResponseDataToJSONTyped, ValidateResetTokenResponseFromJSON, ValidateResetTokenResponseFromJSONTyped, ValidateResetTokenResponseToJSON, ValidateResetTokenResponseToJSONTyped, type VerifySmsConfigData, VerifySmsConfigDataFromJSON, VerifySmsConfigDataFromJSONTyped, VerifySmsConfigDataToJSON, VerifySmsConfigDataToJSONTyped, type VerifySmsConfigResponse, VerifySmsConfigResponseFromJSON, VerifySmsConfigResponseFromJSONTyped, VerifySmsConfigResponseToJSON, VerifySmsConfigResponseToJSONTyped, VoidApiResponse, type WaaSApplication, WaaSApplicationFromJSON, WaaSApplicationFromJSONTyped, WaaSApplicationStatusEnum, WaaSApplicationToJSON, WaaSApplicationToJSONTyped, WaaSApplicationsApi, type WaaSApplicationsApiCreateWaaSApplicationOperationRequest, type WaaSApplicationsApiDeleteWaaSApplicationRequest, type WaaSApplicationsApiGetWaaSApplicationRequest, type WaaSApplicationsApiGetWaaSUsageRequest, type WaaSApplicationsApiInterface, type WaaSApplicationsApiListWaaSApplicationsRequest, type WaaSApplicationsApiUpdateWaaSApplicationOperationRequest, type WaaSBatchPublishRequest, WaaSBatchPublishRequestFromJSON, WaaSBatchPublishRequestFromJSONTyped, WaaSBatchPublishRequestToJSON, WaaSBatchPublishRequestToJSONTyped, type WaaSBatchPublishResponse, WaaSBatchPublishResponseFromJSON, WaaSBatchPublishResponseFromJSONTyped, WaaSBatchPublishResponseToJSON, WaaSBatchPublishResponseToJSONTyped, WaaSDeliveriesApi, type WaaSDeliveriesApiGetWaaSDeliveryRequest, type WaaSDeliveriesApiInterface, type WaaSDeliveriesApiListWaaSDeliveriesRequest, type WaaSDeliveriesApiListWaaSEndpointDeliveriesRequest, type WaaSDeliveriesApiRetryWaaSDeliveryRequest, type WaaSDelivery, WaaSDeliveryFromJSON, WaaSDeliveryFromJSONTyped, WaaSDeliveryStatusEnum, WaaSDeliveryToJSON, WaaSDeliveryToJSONTyped, type WaaSEndpoint, WaaSEndpointFromJSON, WaaSEndpointFromJSONTyped, WaaSEndpointStatusEnum, WaaSEndpointToJSON, WaaSEndpointToJSONTyped, WaaSEndpointsApi, type WaaSEndpointsApiCloseWaaSEndpointCircuitRequest, type WaaSEndpointsApiCreateWaaSEndpointOperationRequest, type WaaSEndpointsApiDeleteWaaSEndpointRequest, type WaaSEndpointsApiGetWaaSEndpointCircuitRequest, type WaaSEndpointsApiGetWaaSEndpointMetricsRequest, type WaaSEndpointsApiGetWaaSEndpointRequest, type WaaSEndpointsApiInterface, type WaaSEndpointsApiListWaaSEndpointsRequest, type WaaSEndpointsApiRotateWaaSEndpointSecretRequest, type WaaSEndpointsApiUpdateWaaSEndpointOperationRequest, type WaaSEventType, WaaSEventTypeFromJSON, WaaSEventTypeFromJSONTyped, WaaSEventTypeStatusEnum, WaaSEventTypeToJSON, WaaSEventTypeToJSONTyped, WaaSEventTypesApi, type WaaSEventTypesApiCreateWaaSEventTypeOperationRequest, type WaaSEventTypesApiDeleteWaaSEventTypeRequest, type WaaSEventTypesApiDeprecateWaaSEventTypeRequest, type WaaSEventTypesApiGetWaaSEventTypeRequest, type WaaSEventTypesApiInterface, type WaaSEventTypesApiListWaaSEventTypesRequest, type WaaSEventTypesApiUpdateWaaSEventTypeOperationRequest, WaaSEventsApi, type WaaSEventsApiBatchPublishWaaSEventsRequest, type WaaSEventsApiInterface, type WaaSEventsApiPublishWaaSEventRequest, WaaSPortalApi, type WaaSPortalApiGenerateWaaSPortalTokenRequest, type WaaSPortalApiInterface, type WaaSPortalTokenRequest, WaaSPortalTokenRequestFromJSON, WaaSPortalTokenRequestFromJSONTyped, type WaaSPortalTokenRequestTheme, WaaSPortalTokenRequestThemeFromJSON, WaaSPortalTokenRequestThemeFromJSONTyped, WaaSPortalTokenRequestThemeModeEnum, WaaSPortalTokenRequestThemeToJSON, WaaSPortalTokenRequestThemeToJSONTyped, WaaSPortalTokenRequestToJSON, WaaSPortalTokenRequestToJSONTyped, type WaaSPortalTokenResponse, WaaSPortalTokenResponseFromJSON, WaaSPortalTokenResponseFromJSONTyped, WaaSPortalTokenResponseToJSON, WaaSPortalTokenResponseToJSONTyped, type WaaSPublishEventRequest, WaaSPublishEventRequestFromJSON, WaaSPublishEventRequestFromJSONTyped, WaaSPublishEventRequestToJSON, WaaSPublishEventRequestToJSONTyped, type WaaSPublishEventResponse, WaaSPublishEventResponseFromJSON, WaaSPublishEventResponseFromJSONTyped, WaaSPublishEventResponseToJSON, WaaSPublishEventResponseToJSONTyped, type WaaSUsageResponse, WaaSUsageResponseFromJSON, WaaSUsageResponseFromJSONTyped, WaaSUsageResponseToJSON, WaaSUsageResponseToJSONTyped, type WebAuthnChallengeOptions, WebAuthnChallengeOptionsFromJSON, WebAuthnChallengeOptionsFromJSONTyped, WebAuthnChallengeOptionsToJSON, WebAuthnChallengeOptionsToJSONTyped, type WebAuthnCredential, WebAuthnCredentialFromJSON, WebAuthnCredentialFromJSONTyped, type WebAuthnCredentialListResponse, type WebAuthnCredentialListResponseData, WebAuthnCredentialListResponseDataFromJSON, WebAuthnCredentialListResponseDataFromJSONTyped, WebAuthnCredentialListResponseDataToJSON, WebAuthnCredentialListResponseDataToJSONTyped, WebAuthnCredentialListResponseFromJSON, WebAuthnCredentialListResponseFromJSONTyped, WebAuthnCredentialListResponseToJSON, WebAuthnCredentialListResponseToJSONTyped, type WebAuthnCredentialResponse, WebAuthnCredentialResponseFromJSON, WebAuthnCredentialResponseFromJSONTyped, WebAuthnCredentialResponseToJSON, WebAuthnCredentialResponseToJSONTyped, WebAuthnCredentialToJSON, WebAuthnCredentialToJSONTyped, type WebAuthnStartAuthRequest, WebAuthnStartAuthRequestFromJSON, WebAuthnStartAuthRequestFromJSONTyped, WebAuthnStartAuthRequestToJSON, WebAuthnStartAuthRequestToJSONTyped, type WebAuthnStartAuthResponse, WebAuthnStartAuthResponseFromJSON, WebAuthnStartAuthResponseFromJSONTyped, WebAuthnStartAuthResponseToJSON, WebAuthnStartAuthResponseToJSONTyped, type WebAuthnStartRegistrationRequest, WebAuthnStartRegistrationRequestFromJSON, WebAuthnStartRegistrationRequestFromJSONTyped, WebAuthnStartRegistrationRequestToJSON, WebAuthnStartRegistrationRequestToJSONTyped, type WebAuthnStartRegistrationResponse, WebAuthnStartRegistrationResponseFromJSON, WebAuthnStartRegistrationResponseFromJSONTyped, WebAuthnStartRegistrationResponseToJSON, WebAuthnStartRegistrationResponseToJSONTyped, type WebAuthnStatusResponse, type WebAuthnStatusResponseData, WebAuthnStatusResponseDataFromJSON, WebAuthnStatusResponseDataFromJSONTyped, WebAuthnStatusResponseDataToJSON, WebAuthnStatusResponseDataToJSONTyped, WebAuthnStatusResponseFromJSON, WebAuthnStatusResponseFromJSONTyped, WebAuthnStatusResponseToJSON, WebAuthnStatusResponseToJSONTyped, type WebAuthnVerifyAuthRequest, WebAuthnVerifyAuthRequestFromJSON, WebAuthnVerifyAuthRequestFromJSONTyped, WebAuthnVerifyAuthRequestToJSON, WebAuthnVerifyAuthRequestToJSONTyped, type WebAuthnVerifyRegistrationRequest, WebAuthnVerifyRegistrationRequestFromJSON, WebAuthnVerifyRegistrationRequestFromJSONTyped, WebAuthnVerifyRegistrationRequestToJSON, WebAuthnVerifyRegistrationRequestToJSONTyped, type WebAuthnVerifyRegistrationResponse, type WebAuthnVerifyRegistrationResponseData, WebAuthnVerifyRegistrationResponseDataFromJSON, WebAuthnVerifyRegistrationResponseDataFromJSONTyped, WebAuthnVerifyRegistrationResponseDataToJSON, WebAuthnVerifyRegistrationResponseDataToJSONTyped, WebAuthnVerifyRegistrationResponseFromJSON, WebAuthnVerifyRegistrationResponseFromJSONTyped, WebAuthnVerifyRegistrationResponseToJSON, WebAuthnVerifyRegistrationResponseToJSONTyped, type Webhook, type WebhookAccountMetricsResponse, WebhookAccountMetricsResponseFromJSON, WebhookAccountMetricsResponseFromJSONTyped, WebhookAccountMetricsResponseToJSON, WebhookAccountMetricsResponseToJSONTyped, type WebhookBulkRetryResponse, WebhookBulkRetryResponseFromJSON, WebhookBulkRetryResponseFromJSONTyped, WebhookBulkRetryResponseToJSON, WebhookBulkRetryResponseToJSONTyped, type WebhookCircuitState, WebhookCircuitStateFromJSON, WebhookCircuitStateFromJSONTyped, type WebhookCircuitStateResponse, WebhookCircuitStateResponseFromJSON, WebhookCircuitStateResponseFromJSONTyped, WebhookCircuitStateResponseToJSON, WebhookCircuitStateResponseToJSONTyped, WebhookCircuitStateStateEnum, WebhookCircuitStateToJSON, WebhookCircuitStateToJSONTyped, type WebhookCreateResponse, type WebhookCreateResponseData, WebhookCreateResponseDataFromJSON, WebhookCreateResponseDataFromJSONTyped, WebhookCreateResponseDataStatusEnum, WebhookCreateResponseDataToJSON, WebhookCreateResponseDataToJSONTyped, WebhookCreateResponseFromJSON, WebhookCreateResponseFromJSONTyped, WebhookCreateResponseToJSON, WebhookCreateResponseToJSONTyped, type WebhookDeleteResponse, type WebhookDeleteResponseData, WebhookDeleteResponseDataFromJSON, WebhookDeleteResponseDataFromJSONTyped, WebhookDeleteResponseDataToJSON, WebhookDeleteResponseDataToJSONTyped, WebhookDeleteResponseFromJSON, WebhookDeleteResponseFromJSONTyped, WebhookDeleteResponseToJSON, WebhookDeleteResponseToJSONTyped, type WebhookDelivery, type WebhookDeliveryDetail, WebhookDeliveryDetailFromJSON, WebhookDeliveryDetailFromJSONTyped, WebhookDeliveryDetailStatusEnum, WebhookDeliveryDetailToJSON, WebhookDeliveryDetailToJSONTyped, WebhookDeliveryFromJSON, WebhookDeliveryFromJSONTyped, type WebhookDeliveryListResponse, WebhookDeliveryListResponseFromJSON, WebhookDeliveryListResponseFromJSONTyped, WebhookDeliveryListResponseToJSON, WebhookDeliveryListResponseToJSONTyped, type WebhookDeliveryResponse, WebhookDeliveryResponseFromJSON, WebhookDeliveryResponseFromJSONTyped, WebhookDeliveryResponseToJSON, WebhookDeliveryResponseToJSONTyped, type WebhookDeliveryRetryResponse, type WebhookDeliveryRetryResponseData, WebhookDeliveryRetryResponseDataFromJSON, WebhookDeliveryRetryResponseDataFromJSONTyped, WebhookDeliveryRetryResponseDataToJSON, WebhookDeliveryRetryResponseDataToJSONTyped, WebhookDeliveryRetryResponseFromJSON, WebhookDeliveryRetryResponseFromJSONTyped, WebhookDeliveryRetryResponseToJSON, WebhookDeliveryRetryResponseToJSONTyped, WebhookDeliveryStatusEnum, WebhookDeliveryToJSON, WebhookDeliveryToJSONTyped, type WebhookEventTypesResponse, type WebhookEventTypesResponseData, WebhookEventTypesResponseDataFromJSON, WebhookEventTypesResponseDataFromJSONTyped, WebhookEventTypesResponseDataToJSON, WebhookEventTypesResponseDataToJSONTyped, WebhookEventTypesResponseFromJSON, WebhookEventTypesResponseFromJSONTyped, WebhookEventTypesResponseToJSON, WebhookEventTypesResponseToJSONTyped, WebhookFromJSON, WebhookFromJSONTyped, type WebhookIpsResponse, type WebhookIpsResponseData, WebhookIpsResponseDataFromJSON, WebhookIpsResponseDataFromJSONTyped, WebhookIpsResponseDataToJSON, WebhookIpsResponseDataToJSONTyped, WebhookIpsResponseFromJSON, WebhookIpsResponseFromJSONTyped, WebhookIpsResponseToJSON, WebhookIpsResponseToJSONTyped, type WebhookJobResponse, WebhookJobResponseFromJSON, WebhookJobResponseFromJSONTyped, WebhookJobResponseToJSON, WebhookJobResponseToJSONTyped, type WebhookListResponse, WebhookListResponseFromJSON, WebhookListResponseFromJSONTyped, WebhookListResponseToJSON, WebhookListResponseToJSONTyped, type WebhookMetricsResponse, WebhookMetricsResponseFromJSON, WebhookMetricsResponseFromJSONTyped, WebhookMetricsResponseToJSON, WebhookMetricsResponseToJSONTyped, type WebhookRegion, WebhookRegionFromJSON, WebhookRegionFromJSONTyped, WebhookRegionToJSON, WebhookRegionToJSONTyped, type WebhookRegionsResponse, type WebhookRegionsResponseData, WebhookRegionsResponseDataFromJSON, WebhookRegionsResponseDataFromJSONTyped, WebhookRegionsResponseDataToJSON, WebhookRegionsResponseDataToJSONTyped, WebhookRegionsResponseFromJSON, WebhookRegionsResponseFromJSONTyped, WebhookRegionsResponseToJSON, WebhookRegionsResponseToJSONTyped, type WebhookReplayResponse, WebhookReplayResponseFromJSON, WebhookReplayResponseFromJSONTyped, WebhookReplayResponseToJSON, WebhookReplayResponseToJSONTyped, type WebhookResponse, WebhookResponseFromJSON, WebhookResponseFromJSONTyped, WebhookResponseToJSON, WebhookResponseToJSONTyped, type WebhookSecretRotateResponse, type WebhookSecretRotateResponseData, WebhookSecretRotateResponseDataFromJSON, WebhookSecretRotateResponseDataFromJSONTyped, WebhookSecretRotateResponseDataToJSON, WebhookSecretRotateResponseDataToJSONTyped, WebhookSecretRotateResponseFromJSON, WebhookSecretRotateResponseFromJSONTyped, WebhookSecretRotateResponseToJSON, WebhookSecretRotateResponseToJSONTyped, WebhookStatusEnum, type WebhookTestEventResponse, type WebhookTestEventResponseData, WebhookTestEventResponseDataFromJSON, WebhookTestEventResponseDataFromJSONTyped, WebhookTestEventResponseDataToJSON, WebhookTestEventResponseDataToJSONTyped, WebhookTestEventResponseFromJSON, WebhookTestEventResponseFromJSONTyped, WebhookTestEventResponseToJSON, WebhookTestEventResponseToJSONTyped, WebhookToJSON, WebhookToJSONTyped, type WebhookTransformTestResponse, WebhookTransformTestResponseFromJSON, WebhookTransformTestResponseFromJSONTyped, WebhookTransformTestResponseToJSON, WebhookTransformTestResponseToJSONTyped, type WebhookUsageResponse, WebhookUsageResponseFromJSON, WebhookUsageResponseFromJSONTyped, WebhookUsageResponseToJSON, WebhookUsageResponseToJSONTyped, WebhookVerificationError, type WebhookVersion, WebhookVersionFromJSON, WebhookVersionFromJSONTyped, WebhookVersionToJSON, WebhookVersionToJSONTyped, type WebhookVersionsResponse, type WebhookVersionsResponseData, WebhookVersionsResponseDataFromJSON, WebhookVersionsResponseDataFromJSONTyped, WebhookVersionsResponseDataToJSON, WebhookVersionsResponseDataToJSONTyped, WebhookVersionsResponseFromJSON, WebhookVersionsResponseFromJSONTyped, WebhookVersionsResponseToJSON, WebhookVersionsResponseToJSONTyped, WebhooksApi, type WebhooksApiBulkRetryWebhookDeliveriesOperationRequest, type WebhooksApiCloseWebhookCircuitRequest, type WebhooksApiCreateWebhookOperationRequest, type WebhooksApiDeleteWebhookRequest, type WebhooksApiGetWebhookCircuitStateRequest, type WebhooksApiGetWebhookDeliveryRequest, type WebhooksApiGetWebhookJobRequest, type WebhooksApiGetWebhookMetricsRequest, type WebhooksApiGetWebhookRequest, type WebhooksApiInterface, type WebhooksApiListWebhookDeliveriesRequest, type WebhooksApiListWebhookEventTypesRequest, type WebhooksApiListWebhooksRequest, type WebhooksApiReplayWebhookEventsOperationRequest, type WebhooksApiRetryWebhookDeliveryRequest, type WebhooksApiRotateWebhookSecretRequest, type WebhooksApiSendWebhookTestEventOperationRequest, type WebhooksApiTestWebhookTransformOperationRequest, type WebhooksApiUpdateWebhookOperationRequest, type WithdrawSubscriberConsentRequest, WithdrawSubscriberConsentRequestFromJSON, WithdrawSubscriberConsentRequestFromJSONTyped, WithdrawSubscriberConsentRequestToJSON, WithdrawSubscriberConsentRequestToJSONTyped, type WorkflowExecution, WorkflowExecutionFromJSON, WorkflowExecutionFromJSONTyped, WorkflowExecutionStatus, WorkflowExecutionStatusFromJSON, WorkflowExecutionStatusFromJSONTyped, WorkflowExecutionStatusToJSON, WorkflowExecutionStatusToJSONTyped, WorkflowExecutionToJSON, WorkflowExecutionToJSONTyped, type WorkflowStepExecution, WorkflowStepExecutionFromJSON, WorkflowStepExecutionFromJSONTyped, WorkflowStepExecutionStatus, WorkflowStepExecutionStatusFromJSON, WorkflowStepExecutionStatusFromJSONTyped, WorkflowStepExecutionStatusToJSON, WorkflowStepExecutionStatusToJSONTyped, WorkflowStepExecutionStepTypeEnum, WorkflowStepExecutionToJSON, WorkflowStepExecutionToJSONTyped, Zyphr, ZyphrAuthenticationError, ZyphrError, type ZyphrErrorOptions, ZyphrNotFoundError, type ZyphrOptions, ZyphrRateLimitError, ZyphrValidationError, ZyphrWebhookVerificationError, canConsumeForm, exists, instanceOfAddTopicSubscribersRequest, instanceOfApiError, instanceOfApiErrorError, instanceOfApiErrorMeta, instanceOfAuthEmailTemplate, instanceOfAuthEmailTemplateDefault, instanceOfAuthEmailTemplateDefaultResponse, instanceOfAuthEmailTemplateDeleteResponse, instanceOfAuthEmailTemplateDeleteResponseData, instanceOfAuthEmailTemplateListResponse, instanceOfAuthEmailTemplatePreviewDraft, instanceOfAuthEmailTemplatePreviewRequest, instanceOfAuthEmailTemplatePreviewResponse, instanceOfAuthEmailTemplatePreviewResult, instanceOfAuthEmailTemplateResponse, instanceOfAuthEmailTemplateTestRequest, instanceOfAuthEmailTemplateTestResponse, instanceOfAuthEmailTemplateTestResult, instanceOfAuthEmailTemplateVersion, instanceOfAuthEmailTemplateVersionsResponse, instanceOfAuthEmailType, instanceOfAuthLoginResponse, instanceOfAuthLoginResult, instanceOfAuthLoginResultMfaChallenge, instanceOfAuthResult, instanceOfAuthResultResponse, instanceOfAuthSession, instanceOfAuthTokens, instanceOfAuthUser, instanceOfAuthUserResponse, instanceOfAuthUserResponseData, instanceOfBatchPublishWaaSEvents201Response, instanceOfBulkRetryWebhookDeliveriesRequest, instanceOfBulkUpsertAuthEmailTemplatesRequest, instanceOfBulkUpsertAuthEmailTemplatesResponse, instanceOfCategory, instanceOfCategoryListResponse, instanceOfCategoryResponse, instanceOfConfirmEmailVerificationRequest, instanceOfConfirmEmailVerificationResponse, instanceOfConfirmEmailVerificationResponseData, instanceOfConsentHistoryEntry, instanceOfConsentHistoryResponse, instanceOfConsentRecordResponse, instanceOfConsentRecordResponseData, instanceOfConsentStatus, instanceOfConsentStatusResponse, instanceOfConsentWithdrawResponse, instanceOfCreateCategoryRequest, instanceOfCreateSubscriberRequest, instanceOfCreateTemplateRequest, instanceOfCreateTopicRequest, instanceOfCreateWaaSApplication201Response, instanceOfCreateWaaSApplicationRequest, instanceOfCreateWaaSEndpoint201Response, instanceOfCreateWaaSEndpointRequest, instanceOfCreateWaaSEndpointResponse, instanceOfCreateWaaSEventType201Response, instanceOfCreateWaaSEventTypeRequest, instanceOfCreateWebhookRequest, instanceOfDeleteResult, instanceOfDeleteResultData, instanceOfDevice, instanceOfDeviceListResponse, instanceOfDevicePushTopic, instanceOfDevicePushTopicListResponse, instanceOfDevicePushTopicListResponseMeta, instanceOfDeviceResponse, instanceOfDeviceStats, instanceOfDeviceStatsResponse, instanceOfEmailAddress, instanceOfEmailAttachment, instanceOfEmailEvent, instanceOfEmailEventsResponse, instanceOfEmailListResponse, instanceOfEmailMessage, instanceOfEmailResponse, instanceOfEmailTrackingClickLink, instanceOfEmailTrackingClicks, instanceOfEmailTrackingData, instanceOfEmailTrackingOpens, instanceOfEmailTrackingResponse, instanceOfEndUserDeleteResponse, instanceOfEndUserDeleteResponseData, instanceOfExecutionCancelResponse, instanceOfExecutionCancelResponseData, instanceOfExecutionResponse, instanceOfExecutionRetryResponse, instanceOfExecutionRetryResponseData, instanceOfForgotPasswordRequest, instanceOfGenerateSubscriberToken200Response, instanceOfGenerateSubscriberToken200ResponseData, instanceOfGenerateSubscriberTokenRequest, instanceOfGenerateWaaSPortalToken201Response, instanceOfGetWaaSEndpoint200Response, instanceOfGetWaaSUsage200Response, instanceOfInAppNotification, instanceOfInboxListMeta, instanceOfInboxListResponse, instanceOfInboxNotificationResponse, instanceOfListWaaSApplications200Response, instanceOfListWaaSEndpointDeliveries200Response, instanceOfListWaaSEndpoints200Response, instanceOfListWaaSEventTypes200Response, instanceOfLoginRequest, instanceOfMagicLinkSendRequest, instanceOfMagicLinkVerifyRequest, instanceOfMagicLinkVerifyResponse, instanceOfMagicLinkVerifyResponseData, instanceOfMarkAllInboxReadRequest, instanceOfMarkAllReadData, instanceOfMarkAllReadResponse, instanceOfMarkAllSubscriberNotificationsReadRequest, instanceOfMarkInboxReadRequest, instanceOfMfaBackupCodesResponse, instanceOfMfaBackupCodesResponseData, instanceOfMfaDisableRequest, instanceOfMfaDisableResponse, instanceOfMfaDisableResponseData, instanceOfMfaEnrollRequest, instanceOfMfaEnrollmentResponse, instanceOfMfaEnrollmentResponseData, instanceOfMfaRegenerateBackupCodesRequest, instanceOfMfaStatusResponse, instanceOfMfaStatusResponseData, instanceOfMfaVerifyBackupRequest, instanceOfMfaVerifyBackupResponse, instanceOfMfaVerifyBackupResponseData, instanceOfMfaVerifyEnrollmentRequest, instanceOfMfaVerifyEnrollmentResponse, instanceOfMfaVerifyEnrollmentResponseData, instanceOfMfaVerifyRequest, instanceOfOAuthAuthorizationUrlResponse, instanceOfOAuthAuthorizationUrlResponseData, instanceOfOAuthCallbackRequest, instanceOfOAuthCallbackResponse, instanceOfOAuthCallbackResponseData, instanceOfOAuthConnection, instanceOfOAuthConnectionInfoResponse, instanceOfOAuthConnectionInfoResponseData, instanceOfOAuthConnectionsResponse, instanceOfOAuthConnectionsResponseData, instanceOfOAuthProvider, instanceOfOAuthProviderInfo, instanceOfOAuthProvidersResponse, instanceOfOAuthProvidersResponseData, instanceOfOAuthTokensRefreshResponse, instanceOfOAuthTokensRefreshResponseData, instanceOfOAuthTokensResponse, instanceOfOAuthTokensResponseData, instanceOfPaginationMeta, instanceOfPasswordRequirements, instanceOfPasswordRequirementsResponse, instanceOfPasswordRequirementsResponseData, instanceOfPhoneAuthAvailabilityResponse, instanceOfPhoneAuthAvailabilityResponseData, instanceOfPhoneLoginVerifyRequest, instanceOfPhoneOtpSendRequest, instanceOfPhoneOtpSentResponse, instanceOfPhoneOtpSentResponseData, instanceOfPhoneRegisterVerifyRequest, instanceOfPreferenceListResponse, instanceOfPublishWaaSEvent201Response, instanceOfPushDetailResponse, instanceOfPushEvent, instanceOfPushListResponse, instanceOfPushMessage, instanceOfPushMessageDetail, instanceOfPushMessageDetailAllOfActionButtons, instanceOfPushStatsData, instanceOfPushStatsResponse, instanceOfPushTopicDevice, instanceOfPushTopicDeviceListResponse, instanceOfPushTopicSubscribeData, instanceOfPushTopicSubscribeResponse, instanceOfPushTopicUnsubscribeData, instanceOfPushTopicUnsubscribeResponse, instanceOfRefreshOAuthTokensRequest, instanceOfRefreshSessionRequest, instanceOfRefreshTokenResponse, instanceOfRefreshTokenResponseData, instanceOfRegisterDeviceRequest, instanceOfRegisterRequest, instanceOfRemoveTopicSubscribersRequest, instanceOfRenameWebAuthnCredentialRequest, instanceOfRenderTemplateRequest, instanceOfReplayWebhookEventsRequest, instanceOfRequestMeta, instanceOfResetPasswordRequest, instanceOfResetPasswordResponse, instanceOfResubscribeRequest, instanceOfResubscribeResponse, instanceOfRevokeAllSessionsResponse, instanceOfRevokeAllSessionsResponseData, instanceOfRevokeSessionRequest, instanceOfSendBatchEmailRequest, instanceOfSendBatchEmailResponse, instanceOfSendBatchEmailResult, instanceOfSendBatchEmailResultItem, instanceOfSendBatchInAppMeta, instanceOfSendBatchInAppRequest, instanceOfSendBatchInAppResponse, instanceOfSendBatchSmsData, instanceOfSendBatchSmsRequest, instanceOfSendBatchSmsResponse, instanceOfSendEmailRequest, instanceOfSendEmailResponse, instanceOfSendEmailResponseData, instanceOfSendEmailResponseMeta, instanceOfSendEmailVerificationRequest, instanceOfSendInAppMeta, instanceOfSendInAppRequest, instanceOfSendInAppResponse, instanceOfSendPushRequest, instanceOfSendPushRequestActionButtonsInner, instanceOfSendPushResponse, instanceOfSendPushResponseData, instanceOfSendPushToTopicData, instanceOfSendPushToTopicRequest, instanceOfSendPushToTopicResponse, instanceOfSendSlackMessageRequest, instanceOfSendSlackMessageResponse, instanceOfSendSlackMessageResult, instanceOfSendSmsData, instanceOfSendSmsRequest, instanceOfSendSmsResponse, instanceOfSendTestSmsData, instanceOfSendTestSmsRequest, instanceOfSendTestSmsResponse, instanceOfSendWebhookTestEventRequest, instanceOfSessionListResponse, instanceOfSessionListResponseData, instanceOfSessionListResponseDataSessionInfo, instanceOfSetPreferencesRequest, instanceOfSetPreferencesRequestPreferencesInner, instanceOfSlackMessage, instanceOfSlackMessageListResponse, instanceOfSlackMessageListResponseMeta, instanceOfSlackMessageResponse, instanceOfSlackMessageStatus, instanceOfSlackMessageSummary, instanceOfSmsBatchResultMessage, instanceOfSmsBatchResultSummary, instanceOfSmsConfig, instanceOfSmsConfigDeleteResponse, instanceOfSmsConfigDeleteResponseData, instanceOfSmsConfigResponse, instanceOfSmsDetailResponse, instanceOfSmsListResponse, instanceOfSmsListResponseMeta, instanceOfSmsMessage, instanceOfSmsMessageDetail, instanceOfSubscribePushTopicRequest, instanceOfSubscriber, instanceOfSubscriberListResponse, instanceOfSubscriberPreference, instanceOfSubscriberResponse, instanceOfSuccessResult, instanceOfTemplate, instanceOfTemplateListResponse, instanceOfTemplateRenderResponse, instanceOfTemplateRenderedContent, instanceOfTemplateResponse, instanceOfTestWebhookTransformRequest, instanceOfTopic, instanceOfTopicDeleteResponse, instanceOfTopicDeleteResponseData, instanceOfTopicListResponse, instanceOfTopicResponse, instanceOfTopicStatsData, instanceOfTopicStatsDataTopicsBySubscriberCountInner, instanceOfTopicStatsResponse, instanceOfTopicSubscriber, instanceOfTopicSubscriberListResponse, instanceOfTopicSubscribersAddResponse, instanceOfTopicSubscribersAddResult, instanceOfTopicSubscribersRemoveResponse, instanceOfTopicSubscribersRemoveResult, instanceOfUnreadCountData, instanceOfUnreadCountResponse, instanceOfUnsubscribe, instanceOfUnsubscribeListResponse, instanceOfUnsubscribeRequest, instanceOfUnsubscribeResponse, instanceOfUpdateCategoryRequest, instanceOfUpdateEndUserRequest, instanceOfUpdateSubscriberPreferencesRequest, instanceOfUpdateSubscriberPreferencesRequestPreferencesInner, instanceOfUpdateSubscriberRequest, instanceOfUpdateTemplateRequest, instanceOfUpdateTopicRequest, instanceOfUpdateWaaSApplicationRequest, instanceOfUpdateWaaSEndpointRequest, instanceOfUpdateWaaSEventTypeRequest, instanceOfUpdateWebhookRequest, instanceOfUpsertAuthEmailTemplateRequest, instanceOfUpsertSmsConfigRequest, instanceOfUserDevicesDeleteResponse, instanceOfUserDevicesDeleteResponseData, instanceOfValidateResetTokenRequest, instanceOfValidateResetTokenResponse, instanceOfValidateResetTokenResponseData, instanceOfVerifySmsConfigData, instanceOfVerifySmsConfigResponse, instanceOfWaaSApplication, instanceOfWaaSBatchPublishRequest, instanceOfWaaSBatchPublishResponse, instanceOfWaaSDelivery, instanceOfWaaSEndpoint, instanceOfWaaSEventType, instanceOfWaaSPortalTokenRequest, instanceOfWaaSPortalTokenRequestTheme, instanceOfWaaSPortalTokenResponse, instanceOfWaaSPublishEventRequest, instanceOfWaaSPublishEventResponse, instanceOfWaaSUsageResponse, instanceOfWebAuthnChallengeOptions, instanceOfWebAuthnCredential, instanceOfWebAuthnCredentialListResponse, instanceOfWebAuthnCredentialListResponseData, instanceOfWebAuthnCredentialResponse, instanceOfWebAuthnStartAuthRequest, instanceOfWebAuthnStartAuthResponse, instanceOfWebAuthnStartRegistrationRequest, instanceOfWebAuthnStartRegistrationResponse, instanceOfWebAuthnStatusResponse, instanceOfWebAuthnStatusResponseData, instanceOfWebAuthnVerifyAuthRequest, instanceOfWebAuthnVerifyRegistrationRequest, instanceOfWebAuthnVerifyRegistrationResponse, instanceOfWebAuthnVerifyRegistrationResponseData, instanceOfWebhook, instanceOfWebhookAccountMetricsResponse, instanceOfWebhookBulkRetryResponse, instanceOfWebhookCircuitState, instanceOfWebhookCircuitStateResponse, instanceOfWebhookCreateResponse, instanceOfWebhookCreateResponseData, instanceOfWebhookDeleteResponse, instanceOfWebhookDeleteResponseData, instanceOfWebhookDelivery, instanceOfWebhookDeliveryDetail, instanceOfWebhookDeliveryListResponse, instanceOfWebhookDeliveryResponse, instanceOfWebhookDeliveryRetryResponse, instanceOfWebhookDeliveryRetryResponseData, instanceOfWebhookEventTypesResponse, instanceOfWebhookEventTypesResponseData, instanceOfWebhookIpsResponse, instanceOfWebhookIpsResponseData, instanceOfWebhookJobResponse, instanceOfWebhookListResponse, instanceOfWebhookMetricsResponse, instanceOfWebhookRegion, instanceOfWebhookRegionsResponse, instanceOfWebhookRegionsResponseData, instanceOfWebhookReplayResponse, instanceOfWebhookResponse, instanceOfWebhookSecretRotateResponse, instanceOfWebhookSecretRotateResponseData, instanceOfWebhookTestEventResponse, instanceOfWebhookTestEventResponseData, instanceOfWebhookTransformTestResponse, instanceOfWebhookUsageResponse, instanceOfWebhookVersion, instanceOfWebhookVersionsResponse, instanceOfWebhookVersionsResponseData, instanceOfWithdrawSubscriberConsentRequest, instanceOfWorkflowExecution, instanceOfWorkflowExecutionStatus, instanceOfWorkflowStepExecution, instanceOfWorkflowStepExecutionStatus, mapValues, parseErrorResponse, querystring };
|
package/dist/index.js
CHANGED
|
@@ -2125,8 +2125,7 @@ function CreateTemplateRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
2125
2125
|
"description": json["description"] == null ? void 0 : json["description"],
|
|
2126
2126
|
"subject": json["subject"] == null ? void 0 : json["subject"],
|
|
2127
2127
|
"html": json["html"] == null ? void 0 : json["html"],
|
|
2128
|
-
"text": json["text"] == null ? void 0 : json["text"]
|
|
2129
|
-
"variables": json["variables"] == null ? void 0 : json["variables"]
|
|
2128
|
+
"text": json["text"] == null ? void 0 : json["text"]
|
|
2130
2129
|
};
|
|
2131
2130
|
}
|
|
2132
2131
|
function CreateTemplateRequestToJSON(json) {
|
|
@@ -2141,8 +2140,7 @@ function CreateTemplateRequestToJSONTyped(value, ignoreDiscriminator = false) {
|
|
|
2141
2140
|
"description": value["description"],
|
|
2142
2141
|
"subject": value["subject"],
|
|
2143
2142
|
"html": value["html"],
|
|
2144
|
-
"text": value["text"]
|
|
2145
|
-
"variables": value["variables"]
|
|
2143
|
+
"text": value["text"]
|
|
2146
2144
|
};
|
|
2147
2145
|
}
|
|
2148
2146
|
|
|
@@ -9340,7 +9338,6 @@ function TemplateToJSONTyped(value, ignoreDiscriminator = false) {
|
|
|
9340
9338
|
"subject": value["subject"],
|
|
9341
9339
|
"html": value["html"],
|
|
9342
9340
|
"text": value["text"],
|
|
9343
|
-
"variables": value["variables"],
|
|
9344
9341
|
"version": value["version"],
|
|
9345
9342
|
"created_at": value["createdAt"] == null ? void 0 : value["createdAt"].toISOString(),
|
|
9346
9343
|
"updated_at": value["updatedAt"] == null ? void 0 : value["updatedAt"].toISOString()
|
|
@@ -10303,8 +10300,7 @@ function UpdateTemplateRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
10303
10300
|
"description": json["description"] == null ? void 0 : json["description"],
|
|
10304
10301
|
"subject": json["subject"] == null ? void 0 : json["subject"],
|
|
10305
10302
|
"html": json["html"] == null ? void 0 : json["html"],
|
|
10306
|
-
"text": json["text"] == null ? void 0 : json["text"]
|
|
10307
|
-
"variables": json["variables"] == null ? void 0 : json["variables"]
|
|
10303
|
+
"text": json["text"] == null ? void 0 : json["text"]
|
|
10308
10304
|
};
|
|
10309
10305
|
}
|
|
10310
10306
|
function UpdateTemplateRequestToJSON(json) {
|
|
@@ -10319,8 +10315,7 @@ function UpdateTemplateRequestToJSONTyped(value, ignoreDiscriminator = false) {
|
|
|
10319
10315
|
"description": value["description"],
|
|
10320
10316
|
"subject": value["subject"],
|
|
10321
10317
|
"html": value["html"],
|
|
10322
|
-
"text": value["text"]
|
|
10323
|
-
"variables": value["variables"]
|
|
10318
|
+
"text": value["text"]
|
|
10324
10319
|
};
|
|
10325
10320
|
}
|
|
10326
10321
|
|
|
@@ -19796,6 +19791,13 @@ var ZyphrNotFoundError = class extends ZyphrError {
|
|
|
19796
19791
|
this.name = "ZyphrNotFoundError";
|
|
19797
19792
|
}
|
|
19798
19793
|
};
|
|
19794
|
+
var ZyphrWebhookVerificationError = class extends ZyphrError {
|
|
19795
|
+
constructor(message) {
|
|
19796
|
+
super({ message, status: 401, code: "webhook_verification_failed" });
|
|
19797
|
+
this.name = "ZyphrWebhookVerificationError";
|
|
19798
|
+
}
|
|
19799
|
+
};
|
|
19800
|
+
var WebhookVerificationError = ZyphrWebhookVerificationError;
|
|
19799
19801
|
async function parseErrorResponse(response) {
|
|
19800
19802
|
let body = {};
|
|
19801
19803
|
try {
|
|
@@ -21478,6 +21480,7 @@ export {
|
|
|
21478
21480
|
WebhookUsageResponseFromJSONTyped,
|
|
21479
21481
|
WebhookUsageResponseToJSON,
|
|
21480
21482
|
WebhookUsageResponseToJSONTyped,
|
|
21483
|
+
WebhookVerificationError,
|
|
21481
21484
|
WebhookVersionFromJSON,
|
|
21482
21485
|
WebhookVersionFromJSONTyped,
|
|
21483
21486
|
WebhookVersionToJSON,
|
|
@@ -21520,6 +21523,7 @@ export {
|
|
|
21520
21523
|
ZyphrNotFoundError,
|
|
21521
21524
|
ZyphrRateLimitError,
|
|
21522
21525
|
ZyphrValidationError,
|
|
21526
|
+
ZyphrWebhookVerificationError,
|
|
21523
21527
|
canConsumeForm,
|
|
21524
21528
|
exists,
|
|
21525
21529
|
instanceOfAddTopicSubscribersRequest,
|