@zyphr-dev/node-sdk 0.1.20 → 0.1.22

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/dist/index.d.cts CHANGED
@@ -739,6 +739,73 @@ declare function AuthEmailTemplateListResponseToJSONTyped(value?: AuthEmailTempl
739
739
  * https://openapi-generator.tech
740
740
  * Do not edit the class manually.
741
741
  */
742
+ /**
743
+ * In-flight editor values. When provided, the preview is rendered against
744
+ * these instead of the persisted template. Useful for live-preview while
745
+ * editing.
746
+ *
747
+ * @export
748
+ * @interface AuthEmailTemplatePreviewDraft
749
+ */
750
+ interface AuthEmailTemplatePreviewDraft {
751
+ /**
752
+ *
753
+ * @type {string}
754
+ * @memberof AuthEmailTemplatePreviewDraft
755
+ */
756
+ subject?: string | null;
757
+ /**
758
+ *
759
+ * @type {string}
760
+ * @memberof AuthEmailTemplatePreviewDraft
761
+ */
762
+ html?: string | null;
763
+ /**
764
+ *
765
+ * @type {string}
766
+ * @memberof AuthEmailTemplatePreviewDraft
767
+ */
768
+ text?: string | null;
769
+ /**
770
+ *
771
+ * @type {string}
772
+ * @memberof AuthEmailTemplatePreviewDraft
773
+ */
774
+ mjmlSource?: string | null;
775
+ /**
776
+ *
777
+ * @type {string}
778
+ * @memberof AuthEmailTemplatePreviewDraft
779
+ */
780
+ fromName?: string | null;
781
+ /**
782
+ *
783
+ * @type {string}
784
+ * @memberof AuthEmailTemplatePreviewDraft
785
+ */
786
+ replyTo?: string | null;
787
+ }
788
+ /**
789
+ * Check if a given object implements the AuthEmailTemplatePreviewDraft interface.
790
+ */
791
+ declare function instanceOfAuthEmailTemplatePreviewDraft(value: object): value is AuthEmailTemplatePreviewDraft;
792
+ declare function AuthEmailTemplatePreviewDraftFromJSON(json: any): AuthEmailTemplatePreviewDraft;
793
+ declare function AuthEmailTemplatePreviewDraftFromJSONTyped(json: any, ignoreDiscriminator: boolean): AuthEmailTemplatePreviewDraft;
794
+ declare function AuthEmailTemplatePreviewDraftToJSON(json: any): AuthEmailTemplatePreviewDraft;
795
+ declare function AuthEmailTemplatePreviewDraftToJSONTyped(value?: AuthEmailTemplatePreviewDraft | null, ignoreDiscriminator?: boolean): any;
796
+
797
+ /**
798
+ * Zyphr API
799
+ * Zyphr is a multi-channel notification platform that enables developers to send emails, push notifications, SMS, and in-app messages through a unified API. ## Authentication All API requests require authentication using an API key. Include your API key in the `X-API-Key` header: ``` X-API-Key: zy_live_xxxxxxxxxxxx ``` API keys can be created in the Zyphr Dashboard. Use `zy_test_*` keys for testing and `zy_live_*` keys for production. ## Rate Limiting The API implements rate limiting to ensure fair usage. Rate limit information is included in response headers: - `X-RateLimit-Limit`: Maximum requests per window - `X-RateLimit-Remaining`: Remaining requests in current window - `X-RateLimit-Reset`: Unix timestamp when the window resets ## Errors All errors follow a consistent format: ```json { \"error\": { \"code\": \"error_code\", \"message\": \"Human readable message\", \"details\": {} }, \"meta\": { \"request_id\": \"req_xxxx\" } } ```
800
+ *
801
+ * The version of the OpenAPI document: 1.0.0
802
+ * Contact: support@zyphr.dev
803
+ *
804
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
805
+ * https://openapi-generator.tech
806
+ * Do not edit the class manually.
807
+ */
808
+
742
809
  /**
743
810
  *
744
811
  * @export
@@ -753,6 +820,12 @@ interface AuthEmailTemplatePreviewRequest {
753
820
  variables?: {
754
821
  [key: string]: any;
755
822
  };
823
+ /**
824
+ *
825
+ * @type {AuthEmailTemplatePreviewDraft}
826
+ * @memberof AuthEmailTemplatePreviewRequest
827
+ */
828
+ draft?: AuthEmailTemplatePreviewDraft;
756
829
  }
757
830
  /**
758
831
  * Check if a given object implements the AuthEmailTemplatePreviewRequest interface.
@@ -797,7 +870,7 @@ interface AuthEmailTemplatePreviewResult {
797
870
  * @type {string}
798
871
  * @memberof AuthEmailTemplatePreviewResult
799
872
  */
800
- text?: string | null;
873
+ text?: string;
801
874
  /**
802
875
  *
803
876
  * @type {string}
@@ -25173,4 +25246,4 @@ declare class Zyphr {
25173
25246
  */
25174
25247
  declare const SDK_VERSION = "0.1.0";
25175
25248
 
25176
- 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 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, 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 };
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 };