@zyphr-dev/node-sdk 0.1.16 → 0.1.17

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.ts CHANGED
@@ -18553,6 +18553,14 @@ interface InboxApiGetUnreadCountRequest {
18553
18553
  subscriberId?: string;
18554
18554
  externalId?: string;
18555
18555
  }
18556
+ interface InboxApiListAllInboxRequest {
18557
+ subscriberId?: string;
18558
+ status?: ListAllInboxStatusEnum;
18559
+ category?: string;
18560
+ search?: string;
18561
+ limit?: number;
18562
+ offset?: number;
18563
+ }
18556
18564
  interface InboxApiListInboxRequest {
18557
18565
  subscriberId?: string;
18558
18566
  externalId?: string;
@@ -18741,6 +18749,25 @@ interface InboxApiInterface {
18741
18749
  * Get unread notification count
18742
18750
  */
18743
18751
  getUnreadCount(subscriberId?: string, externalId?: string, initOverrides?: RequestInit | InitOverrideFunction): Promise<UnreadCountResponse>;
18752
+ /**
18753
+ * List all in-app notifications for the current project. Used by the dashboard to display all notifications without requiring a subscriber selection.
18754
+ * @summary List all project notifications
18755
+ * @param {string} [subscriberId] Optional subscriber filter
18756
+ * @param {'unread' | 'read' | 'archived'} [status] Filter by notification status
18757
+ * @param {string} [category] Filter by category
18758
+ * @param {string} [search] Search by title or body
18759
+ * @param {number} [limit]
18760
+ * @param {number} [offset]
18761
+ * @param {*} [options] Override http request option.
18762
+ * @throws {RequiredError}
18763
+ * @memberof InboxApiInterface
18764
+ */
18765
+ listAllInboxRaw(requestParameters: InboxApiListAllInboxRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<void>>;
18766
+ /**
18767
+ * List all in-app notifications for the current project. Used by the dashboard to display all notifications without requiring a subscriber selection.
18768
+ * List all project notifications
18769
+ */
18770
+ listAllInbox(subscriberId?: string, status?: ListAllInboxStatusEnum, category?: string, search?: string, limit?: number, offset?: number, initOverrides?: RequestInit | InitOverrideFunction): Promise<void>;
18744
18771
  /**
18745
18772
  * Retrieve in-app notifications for a subscriber. Requires subscriber_id or external_id.
18746
18773
  * @summary List inbox notifications
@@ -18978,6 +19005,16 @@ declare class InboxApi extends BaseAPI implements InboxApiInterface {
18978
19005
  * Get unread notification count
18979
19006
  */
18980
19007
  getUnreadCount(subscriberId?: string, externalId?: string, initOverrides?: RequestInit | InitOverrideFunction): Promise<UnreadCountResponse>;
19008
+ /**
19009
+ * List all in-app notifications for the current project. Used by the dashboard to display all notifications without requiring a subscriber selection.
19010
+ * List all project notifications
19011
+ */
19012
+ listAllInboxRaw(requestParameters: InboxApiListAllInboxRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<void>>;
19013
+ /**
19014
+ * List all in-app notifications for the current project. Used by the dashboard to display all notifications without requiring a subscriber selection.
19015
+ * List all project notifications
19016
+ */
19017
+ listAllInbox(subscriberId?: string, status?: ListAllInboxStatusEnum, category?: string, search?: string, limit?: number, offset?: number, initOverrides?: RequestInit | InitOverrideFunction): Promise<void>;
18981
19018
  /**
18982
19019
  * Retrieve in-app notifications for a subscriber. Requires subscriber_id or external_id.
18983
19020
  * List inbox notifications
@@ -19065,6 +19102,15 @@ declare class InboxApi extends BaseAPI implements InboxApiInterface {
19065
19102
  */
19066
19103
  updateSubscriberPreferences(updateSubscriberPreferencesRequest: UpdateSubscriberPreferencesRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<void>;
19067
19104
  }
19105
+ /**
19106
+ * @export
19107
+ */
19108
+ declare const ListAllInboxStatusEnum: {
19109
+ readonly UNREAD: "unread";
19110
+ readonly READ: "read";
19111
+ readonly ARCHIVED: "archived";
19112
+ };
19113
+ type ListAllInboxStatusEnum = typeof ListAllInboxStatusEnum[keyof typeof ListAllInboxStatusEnum];
19068
19114
 
19069
19115
  /**
19070
19116
  * Zyphr API
@@ -22538,4 +22584,4 @@ declare class Zyphr {
22538
22584
  */
22539
22585
  declare const SDK_VERSION = "0.1.0";
22540
22586
 
22541
- 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, 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, 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 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 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, ListDevicesPlatformEnum, ListEmailsStatusEnum, ListPushStatusEnum, 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 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, 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, type SuccessResultData, SuccessResultDataFromJSON, SuccessResultDataFromJSONTyped, SuccessResultDataToJSON, SuccessResultDataToJSONTyped, 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 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, Zyphr, ZyphrAuthenticationError, ZyphrError, type ZyphrErrorOptions, ZyphrNotFoundError, type ZyphrOptions, ZyphrRateLimitError, ZyphrValidationError, canConsumeForm, exists, instanceOfAddTopicSubscribersRequest, instanceOfApiError, instanceOfApiErrorError, instanceOfApiErrorMeta, instanceOfAuthLoginResponse, instanceOfAuthLoginResult, instanceOfAuthLoginResultMfaChallenge, instanceOfAuthResult, instanceOfAuthResultResponse, instanceOfAuthSession, instanceOfAuthTokens, instanceOfAuthUser, instanceOfAuthUserResponse, instanceOfAuthUserResponseData, instanceOfBatchPublishWaaSEvents201Response, instanceOfBulkRetryWebhookDeliveriesRequest, 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, 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, instanceOfSendSmsData, instanceOfSendSmsRequest, instanceOfSendSmsResponse, instanceOfSendTestSmsData, instanceOfSendTestSmsRequest, instanceOfSendTestSmsResponse, instanceOfSendWebhookTestEventRequest, instanceOfSessionListResponse, instanceOfSessionListResponseData, instanceOfSessionListResponseDataSessionInfo, instanceOfSetPreferencesRequest, instanceOfSetPreferencesRequestPreferencesInner, instanceOfSmsBatchResultMessage, instanceOfSmsBatchResultSummary, instanceOfSmsConfig, instanceOfSmsConfigDeleteResponse, instanceOfSmsConfigDeleteResponseData, instanceOfSmsConfigResponse, instanceOfSmsDetailResponse, instanceOfSmsListResponse, instanceOfSmsListResponseMeta, instanceOfSmsMessage, instanceOfSmsMessageDetail, instanceOfSubscribePushTopicRequest, instanceOfSubscriber, instanceOfSubscriberListResponse, instanceOfSubscriberPreference, instanceOfSubscriberResponse, instanceOfSuccessResult, instanceOfSuccessResultData, 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, 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, mapValues, parseErrorResponse, querystring };
22587
+ 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, 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, 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 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, 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 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, 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, type SuccessResultData, SuccessResultDataFromJSON, SuccessResultDataFromJSONTyped, SuccessResultDataToJSON, SuccessResultDataToJSONTyped, 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 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, Zyphr, ZyphrAuthenticationError, ZyphrError, type ZyphrErrorOptions, ZyphrNotFoundError, type ZyphrOptions, ZyphrRateLimitError, ZyphrValidationError, canConsumeForm, exists, instanceOfAddTopicSubscribersRequest, instanceOfApiError, instanceOfApiErrorError, instanceOfApiErrorMeta, instanceOfAuthLoginResponse, instanceOfAuthLoginResult, instanceOfAuthLoginResultMfaChallenge, instanceOfAuthResult, instanceOfAuthResultResponse, instanceOfAuthSession, instanceOfAuthTokens, instanceOfAuthUser, instanceOfAuthUserResponse, instanceOfAuthUserResponseData, instanceOfBatchPublishWaaSEvents201Response, instanceOfBulkRetryWebhookDeliveriesRequest, 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, 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, instanceOfSendSmsData, instanceOfSendSmsRequest, instanceOfSendSmsResponse, instanceOfSendTestSmsData, instanceOfSendTestSmsRequest, instanceOfSendTestSmsResponse, instanceOfSendWebhookTestEventRequest, instanceOfSessionListResponse, instanceOfSessionListResponseData, instanceOfSessionListResponseDataSessionInfo, instanceOfSetPreferencesRequest, instanceOfSetPreferencesRequestPreferencesInner, instanceOfSmsBatchResultMessage, instanceOfSmsBatchResultSummary, instanceOfSmsConfig, instanceOfSmsConfigDeleteResponse, instanceOfSmsConfigDeleteResponseData, instanceOfSmsConfigResponse, instanceOfSmsDetailResponse, instanceOfSmsListResponse, instanceOfSmsListResponseMeta, instanceOfSmsMessage, instanceOfSmsMessageDetail, instanceOfSubscribePushTopicRequest, instanceOfSubscriber, instanceOfSubscriberListResponse, instanceOfSubscriberPreference, instanceOfSubscriberResponse, instanceOfSuccessResult, instanceOfSuccessResultData, 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, 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, mapValues, parseErrorResponse, querystring };
package/dist/index.js CHANGED
@@ -13690,6 +13690,49 @@ var InboxApi = class extends BaseAPI {
13690
13690
  const response = await this.getUnreadCountRaw({ subscriberId, externalId }, initOverrides);
13691
13691
  return await response.value();
13692
13692
  }
13693
+ /**
13694
+ * List all in-app notifications for the current project. Used by the dashboard to display all notifications without requiring a subscriber selection.
13695
+ * List all project notifications
13696
+ */
13697
+ async listAllInboxRaw(requestParameters, initOverrides) {
13698
+ const queryParameters = {};
13699
+ if (requestParameters["subscriberId"] != null) {
13700
+ queryParameters["subscriber_id"] = requestParameters["subscriberId"];
13701
+ }
13702
+ if (requestParameters["status"] != null) {
13703
+ queryParameters["status"] = requestParameters["status"];
13704
+ }
13705
+ if (requestParameters["category"] != null) {
13706
+ queryParameters["category"] = requestParameters["category"];
13707
+ }
13708
+ if (requestParameters["search"] != null) {
13709
+ queryParameters["search"] = requestParameters["search"];
13710
+ }
13711
+ if (requestParameters["limit"] != null) {
13712
+ queryParameters["limit"] = requestParameters["limit"];
13713
+ }
13714
+ if (requestParameters["offset"] != null) {
13715
+ queryParameters["offset"] = requestParameters["offset"];
13716
+ }
13717
+ const headerParameters = {};
13718
+ if (this.configuration && this.configuration.apiKey) {
13719
+ headerParameters["X-API-Key"] = await this.configuration.apiKey("X-API-Key");
13720
+ }
13721
+ const response = await this.request({
13722
+ path: `/inbox/all`,
13723
+ method: "GET",
13724
+ headers: headerParameters,
13725
+ query: queryParameters
13726
+ }, initOverrides);
13727
+ return new VoidApiResponse(response);
13728
+ }
13729
+ /**
13730
+ * List all in-app notifications for the current project. Used by the dashboard to display all notifications without requiring a subscriber selection.
13731
+ * List all project notifications
13732
+ */
13733
+ async listAllInbox(subscriberId, status, category, search, limit, offset, initOverrides) {
13734
+ await this.listAllInboxRaw({ subscriberId, status, category, search, limit, offset }, initOverrides);
13735
+ }
13693
13736
  /**
13694
13737
  * Retrieve in-app notifications for a subscriber. Requires subscriber_id or external_id.
13695
13738
  * List inbox notifications
@@ -14020,6 +14063,11 @@ var InboxApi = class extends BaseAPI {
14020
14063
  await this.updateSubscriberPreferencesRaw({ updateSubscriberPreferencesRequest }, initOverrides);
14021
14064
  }
14022
14065
  };
14066
+ var ListAllInboxStatusEnum = {
14067
+ UNREAD: "unread",
14068
+ READ: "read",
14069
+ ARCHIVED: "archived"
14070
+ };
14023
14071
 
14024
14072
  // src/src/apis/PushApi.ts
14025
14073
  var PushApi = class extends BaseAPI {
@@ -18285,6 +18333,7 @@ export {
18285
18333
  InboxNotificationResponseToJSON,
18286
18334
  InboxNotificationResponseToJSONTyped,
18287
18335
  JSONApiResponse,
18336
+ ListAllInboxStatusEnum,
18288
18337
  ListDevicesPlatformEnum,
18289
18338
  ListEmailsStatusEnum,
18290
18339
  ListPushStatusEnum,