@zyphr-dev/node-sdk 0.1.18 → 0.1.19
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.cjs +548 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +622 -1
- package/dist/index.d.ts +622 -1
- package/dist/index.js +497 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/.openapi-generator/FILES +10 -0
- package/src/src/apis/ExecutionsApi.ts +225 -0
- package/src/src/apis/index.ts +1 -0
- package/src/src/models/ExecutionCancelResponse.ts +88 -0
- package/src/src/models/ExecutionCancelResponseData.ts +83 -0
- package/src/src/models/ExecutionResponse.ts +88 -0
- package/src/src/models/ExecutionRetryResponse.ts +88 -0
- package/src/src/models/ExecutionRetryResponseData.ts +94 -0
- package/src/src/models/WorkflowExecution.ts +201 -0
- package/src/src/models/WorkflowExecutionStatus.ts +56 -0
- package/src/src/models/WorkflowStepExecution.ts +184 -0
- package/src/src/models/WorkflowStepExecutionStatus.ts +57 -0
- package/src/src/models/index.ts +9 -0
package/dist/index.d.cts
CHANGED
|
@@ -3797,6 +3797,520 @@ declare function EndUserDeleteResponseFromJSONTyped(json: any, ignoreDiscriminat
|
|
|
3797
3797
|
declare function EndUserDeleteResponseToJSON(json: any): EndUserDeleteResponse;
|
|
3798
3798
|
declare function EndUserDeleteResponseToJSONTyped(value?: EndUserDeleteResponse | null, ignoreDiscriminator?: boolean): any;
|
|
3799
3799
|
|
|
3800
|
+
/**
|
|
3801
|
+
* Zyphr API
|
|
3802
|
+
* Zyphr is a multi-channel notification platform that enables developers to send emails, push notifications, SMS, and in-app messages through a unified API. ## Authentication All API requests require authentication using an API key. Include your API key in the `X-API-Key` header: ``` X-API-Key: zy_live_xxxxxxxxxxxx ``` API keys can be created in the Zyphr Dashboard. Use `zy_test_*` keys for testing and `zy_live_*` keys for production. ## Rate Limiting The API implements rate limiting to ensure fair usage. Rate limit information is included in response headers: - `X-RateLimit-Limit`: Maximum requests per window - `X-RateLimit-Remaining`: Remaining requests in current window - `X-RateLimit-Reset`: Unix timestamp when the window resets ## Errors All errors follow a consistent format: ```json { \"error\": { \"code\": \"error_code\", \"message\": \"Human readable message\", \"details\": {} }, \"meta\": { \"request_id\": \"req_xxxx\" } } ```
|
|
3803
|
+
*
|
|
3804
|
+
* The version of the OpenAPI document: 1.0.0
|
|
3805
|
+
* Contact: support@zyphr.dev
|
|
3806
|
+
*
|
|
3807
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
3808
|
+
* https://openapi-generator.tech
|
|
3809
|
+
* Do not edit the class manually.
|
|
3810
|
+
*/
|
|
3811
|
+
/**
|
|
3812
|
+
*
|
|
3813
|
+
* @export
|
|
3814
|
+
* @interface ExecutionCancelResponseData
|
|
3815
|
+
*/
|
|
3816
|
+
interface ExecutionCancelResponseData {
|
|
3817
|
+
/**
|
|
3818
|
+
*
|
|
3819
|
+
* @type {string}
|
|
3820
|
+
* @memberof ExecutionCancelResponseData
|
|
3821
|
+
*/
|
|
3822
|
+
id?: string;
|
|
3823
|
+
/**
|
|
3824
|
+
*
|
|
3825
|
+
* @type {string}
|
|
3826
|
+
* @memberof ExecutionCancelResponseData
|
|
3827
|
+
*/
|
|
3828
|
+
status?: ExecutionCancelResponseDataStatusEnum;
|
|
3829
|
+
}
|
|
3830
|
+
/**
|
|
3831
|
+
* @export
|
|
3832
|
+
*/
|
|
3833
|
+
declare const ExecutionCancelResponseDataStatusEnum: {
|
|
3834
|
+
readonly CANCELLED: "cancelled";
|
|
3835
|
+
};
|
|
3836
|
+
type ExecutionCancelResponseDataStatusEnum = typeof ExecutionCancelResponseDataStatusEnum[keyof typeof ExecutionCancelResponseDataStatusEnum];
|
|
3837
|
+
/**
|
|
3838
|
+
* Check if a given object implements the ExecutionCancelResponseData interface.
|
|
3839
|
+
*/
|
|
3840
|
+
declare function instanceOfExecutionCancelResponseData(value: object): value is ExecutionCancelResponseData;
|
|
3841
|
+
declare function ExecutionCancelResponseDataFromJSON(json: any): ExecutionCancelResponseData;
|
|
3842
|
+
declare function ExecutionCancelResponseDataFromJSONTyped(json: any, ignoreDiscriminator: boolean): ExecutionCancelResponseData;
|
|
3843
|
+
declare function ExecutionCancelResponseDataToJSON(json: any): ExecutionCancelResponseData;
|
|
3844
|
+
declare function ExecutionCancelResponseDataToJSONTyped(value?: ExecutionCancelResponseData | null, ignoreDiscriminator?: boolean): any;
|
|
3845
|
+
|
|
3846
|
+
/**
|
|
3847
|
+
* Zyphr API
|
|
3848
|
+
* Zyphr is a multi-channel notification platform that enables developers to send emails, push notifications, SMS, and in-app messages through a unified API. ## Authentication All API requests require authentication using an API key. Include your API key in the `X-API-Key` header: ``` X-API-Key: zy_live_xxxxxxxxxxxx ``` API keys can be created in the Zyphr Dashboard. Use `zy_test_*` keys for testing and `zy_live_*` keys for production. ## Rate Limiting The API implements rate limiting to ensure fair usage. Rate limit information is included in response headers: - `X-RateLimit-Limit`: Maximum requests per window - `X-RateLimit-Remaining`: Remaining requests in current window - `X-RateLimit-Reset`: Unix timestamp when the window resets ## Errors All errors follow a consistent format: ```json { \"error\": { \"code\": \"error_code\", \"message\": \"Human readable message\", \"details\": {} }, \"meta\": { \"request_id\": \"req_xxxx\" } } ```
|
|
3849
|
+
*
|
|
3850
|
+
* The version of the OpenAPI document: 1.0.0
|
|
3851
|
+
* Contact: support@zyphr.dev
|
|
3852
|
+
*
|
|
3853
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
3854
|
+
* https://openapi-generator.tech
|
|
3855
|
+
* Do not edit the class manually.
|
|
3856
|
+
*/
|
|
3857
|
+
|
|
3858
|
+
/**
|
|
3859
|
+
*
|
|
3860
|
+
* @export
|
|
3861
|
+
* @interface ExecutionCancelResponse
|
|
3862
|
+
*/
|
|
3863
|
+
interface ExecutionCancelResponse {
|
|
3864
|
+
/**
|
|
3865
|
+
*
|
|
3866
|
+
* @type {ExecutionCancelResponseData}
|
|
3867
|
+
* @memberof ExecutionCancelResponse
|
|
3868
|
+
*/
|
|
3869
|
+
data?: ExecutionCancelResponseData;
|
|
3870
|
+
/**
|
|
3871
|
+
*
|
|
3872
|
+
* @type {RequestMeta}
|
|
3873
|
+
* @memberof ExecutionCancelResponse
|
|
3874
|
+
*/
|
|
3875
|
+
meta?: RequestMeta;
|
|
3876
|
+
}
|
|
3877
|
+
/**
|
|
3878
|
+
* Check if a given object implements the ExecutionCancelResponse interface.
|
|
3879
|
+
*/
|
|
3880
|
+
declare function instanceOfExecutionCancelResponse(value: object): value is ExecutionCancelResponse;
|
|
3881
|
+
declare function ExecutionCancelResponseFromJSON(json: any): ExecutionCancelResponse;
|
|
3882
|
+
declare function ExecutionCancelResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ExecutionCancelResponse;
|
|
3883
|
+
declare function ExecutionCancelResponseToJSON(json: any): ExecutionCancelResponse;
|
|
3884
|
+
declare function ExecutionCancelResponseToJSONTyped(value?: ExecutionCancelResponse | null, ignoreDiscriminator?: boolean): any;
|
|
3885
|
+
|
|
3886
|
+
/**
|
|
3887
|
+
* Zyphr API
|
|
3888
|
+
* Zyphr is a multi-channel notification platform that enables developers to send emails, push notifications, SMS, and in-app messages through a unified API. ## Authentication All API requests require authentication using an API key. Include your API key in the `X-API-Key` header: ``` X-API-Key: zy_live_xxxxxxxxxxxx ``` API keys can be created in the Zyphr Dashboard. Use `zy_test_*` keys for testing and `zy_live_*` keys for production. ## Rate Limiting The API implements rate limiting to ensure fair usage. Rate limit information is included in response headers: - `X-RateLimit-Limit`: Maximum requests per window - `X-RateLimit-Remaining`: Remaining requests in current window - `X-RateLimit-Reset`: Unix timestamp when the window resets ## Errors All errors follow a consistent format: ```json { \"error\": { \"code\": \"error_code\", \"message\": \"Human readable message\", \"details\": {} }, \"meta\": { \"request_id\": \"req_xxxx\" } } ```
|
|
3889
|
+
*
|
|
3890
|
+
* The version of the OpenAPI document: 1.0.0
|
|
3891
|
+
* Contact: support@zyphr.dev
|
|
3892
|
+
*
|
|
3893
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
3894
|
+
* https://openapi-generator.tech
|
|
3895
|
+
* Do not edit the class manually.
|
|
3896
|
+
*/
|
|
3897
|
+
/**
|
|
3898
|
+
* Status of a workflow execution
|
|
3899
|
+
* @export
|
|
3900
|
+
*/
|
|
3901
|
+
declare const WorkflowExecutionStatus: {
|
|
3902
|
+
readonly PENDING: "pending";
|
|
3903
|
+
readonly RUNNING: "running";
|
|
3904
|
+
readonly COMPLETED: "completed";
|
|
3905
|
+
readonly FAILED: "failed";
|
|
3906
|
+
readonly CANCELLED: "cancelled";
|
|
3907
|
+
};
|
|
3908
|
+
type WorkflowExecutionStatus = typeof WorkflowExecutionStatus[keyof typeof WorkflowExecutionStatus];
|
|
3909
|
+
declare function instanceOfWorkflowExecutionStatus(value: any): boolean;
|
|
3910
|
+
declare function WorkflowExecutionStatusFromJSON(json: any): WorkflowExecutionStatus;
|
|
3911
|
+
declare function WorkflowExecutionStatusFromJSONTyped(json: any, ignoreDiscriminator: boolean): WorkflowExecutionStatus;
|
|
3912
|
+
declare function WorkflowExecutionStatusToJSON(value?: WorkflowExecutionStatus | null): any;
|
|
3913
|
+
declare function WorkflowExecutionStatusToJSONTyped(value: any, ignoreDiscriminator: boolean): WorkflowExecutionStatus;
|
|
3914
|
+
|
|
3915
|
+
/**
|
|
3916
|
+
* Zyphr API
|
|
3917
|
+
* Zyphr is a multi-channel notification platform that enables developers to send emails, push notifications, SMS, and in-app messages through a unified API. ## Authentication All API requests require authentication using an API key. Include your API key in the `X-API-Key` header: ``` X-API-Key: zy_live_xxxxxxxxxxxx ``` API keys can be created in the Zyphr Dashboard. Use `zy_test_*` keys for testing and `zy_live_*` keys for production. ## Rate Limiting The API implements rate limiting to ensure fair usage. Rate limit information is included in response headers: - `X-RateLimit-Limit`: Maximum requests per window - `X-RateLimit-Remaining`: Remaining requests in current window - `X-RateLimit-Reset`: Unix timestamp when the window resets ## Errors All errors follow a consistent format: ```json { \"error\": { \"code\": \"error_code\", \"message\": \"Human readable message\", \"details\": {} }, \"meta\": { \"request_id\": \"req_xxxx\" } } ```
|
|
3918
|
+
*
|
|
3919
|
+
* The version of the OpenAPI document: 1.0.0
|
|
3920
|
+
* Contact: support@zyphr.dev
|
|
3921
|
+
*
|
|
3922
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
3923
|
+
* https://openapi-generator.tech
|
|
3924
|
+
* Do not edit the class manually.
|
|
3925
|
+
*/
|
|
3926
|
+
/**
|
|
3927
|
+
* Status of an individual step within a workflow execution
|
|
3928
|
+
* @export
|
|
3929
|
+
*/
|
|
3930
|
+
declare const WorkflowStepExecutionStatus: {
|
|
3931
|
+
readonly PENDING: "pending";
|
|
3932
|
+
readonly RUNNING: "running";
|
|
3933
|
+
readonly COMPLETED: "completed";
|
|
3934
|
+
readonly SKIPPED: "skipped";
|
|
3935
|
+
readonly FAILED: "failed";
|
|
3936
|
+
readonly WAITING: "waiting";
|
|
3937
|
+
};
|
|
3938
|
+
type WorkflowStepExecutionStatus = typeof WorkflowStepExecutionStatus[keyof typeof WorkflowStepExecutionStatus];
|
|
3939
|
+
declare function instanceOfWorkflowStepExecutionStatus(value: any): boolean;
|
|
3940
|
+
declare function WorkflowStepExecutionStatusFromJSON(json: any): WorkflowStepExecutionStatus;
|
|
3941
|
+
declare function WorkflowStepExecutionStatusFromJSONTyped(json: any, ignoreDiscriminator: boolean): WorkflowStepExecutionStatus;
|
|
3942
|
+
declare function WorkflowStepExecutionStatusToJSON(value?: WorkflowStepExecutionStatus | null): any;
|
|
3943
|
+
declare function WorkflowStepExecutionStatusToJSONTyped(value: any, ignoreDiscriminator: boolean): WorkflowStepExecutionStatus;
|
|
3944
|
+
|
|
3945
|
+
/**
|
|
3946
|
+
* Zyphr API
|
|
3947
|
+
* Zyphr is a multi-channel notification platform that enables developers to send emails, push notifications, SMS, and in-app messages through a unified API. ## Authentication All API requests require authentication using an API key. Include your API key in the `X-API-Key` header: ``` X-API-Key: zy_live_xxxxxxxxxxxx ``` API keys can be created in the Zyphr Dashboard. Use `zy_test_*` keys for testing and `zy_live_*` keys for production. ## Rate Limiting The API implements rate limiting to ensure fair usage. Rate limit information is included in response headers: - `X-RateLimit-Limit`: Maximum requests per window - `X-RateLimit-Remaining`: Remaining requests in current window - `X-RateLimit-Reset`: Unix timestamp when the window resets ## Errors All errors follow a consistent format: ```json { \"error\": { \"code\": \"error_code\", \"message\": \"Human readable message\", \"details\": {} }, \"meta\": { \"request_id\": \"req_xxxx\" } } ```
|
|
3948
|
+
*
|
|
3949
|
+
* The version of the OpenAPI document: 1.0.0
|
|
3950
|
+
* Contact: support@zyphr.dev
|
|
3951
|
+
*
|
|
3952
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
3953
|
+
* https://openapi-generator.tech
|
|
3954
|
+
* Do not edit the class manually.
|
|
3955
|
+
*/
|
|
3956
|
+
|
|
3957
|
+
/**
|
|
3958
|
+
*
|
|
3959
|
+
* @export
|
|
3960
|
+
* @interface WorkflowStepExecution
|
|
3961
|
+
*/
|
|
3962
|
+
interface WorkflowStepExecution {
|
|
3963
|
+
/**
|
|
3964
|
+
*
|
|
3965
|
+
* @type {string}
|
|
3966
|
+
* @memberof WorkflowStepExecution
|
|
3967
|
+
*/
|
|
3968
|
+
id: string;
|
|
3969
|
+
/**
|
|
3970
|
+
*
|
|
3971
|
+
* @type {string}
|
|
3972
|
+
* @memberof WorkflowStepExecution
|
|
3973
|
+
*/
|
|
3974
|
+
executionId: string;
|
|
3975
|
+
/**
|
|
3976
|
+
*
|
|
3977
|
+
* @type {string}
|
|
3978
|
+
* @memberof WorkflowStepExecution
|
|
3979
|
+
*/
|
|
3980
|
+
stepId: string;
|
|
3981
|
+
/**
|
|
3982
|
+
*
|
|
3983
|
+
* @type {WorkflowStepExecutionStatus}
|
|
3984
|
+
* @memberof WorkflowStepExecution
|
|
3985
|
+
*/
|
|
3986
|
+
status: WorkflowStepExecutionStatus;
|
|
3987
|
+
/**
|
|
3988
|
+
*
|
|
3989
|
+
* @type {{ [key: string]: any; }}
|
|
3990
|
+
* @memberof WorkflowStepExecution
|
|
3991
|
+
*/
|
|
3992
|
+
result?: {
|
|
3993
|
+
[key: string]: any;
|
|
3994
|
+
};
|
|
3995
|
+
/**
|
|
3996
|
+
*
|
|
3997
|
+
* @type {Date}
|
|
3998
|
+
* @memberof WorkflowStepExecution
|
|
3999
|
+
*/
|
|
4000
|
+
startedAt?: Date | null;
|
|
4001
|
+
/**
|
|
4002
|
+
*
|
|
4003
|
+
* @type {Date}
|
|
4004
|
+
* @memberof WorkflowStepExecution
|
|
4005
|
+
*/
|
|
4006
|
+
completedAt?: Date | null;
|
|
4007
|
+
/**
|
|
4008
|
+
*
|
|
4009
|
+
* @type {string}
|
|
4010
|
+
* @memberof WorkflowStepExecution
|
|
4011
|
+
*/
|
|
4012
|
+
error?: string | null;
|
|
4013
|
+
/**
|
|
4014
|
+
*
|
|
4015
|
+
* @type {Date}
|
|
4016
|
+
* @memberof WorkflowStepExecution
|
|
4017
|
+
*/
|
|
4018
|
+
createdAt: Date;
|
|
4019
|
+
/**
|
|
4020
|
+
* Step key from the workflow definition
|
|
4021
|
+
* @type {string}
|
|
4022
|
+
* @memberof WorkflowStepExecution
|
|
4023
|
+
*/
|
|
4024
|
+
stepKey?: string;
|
|
4025
|
+
/**
|
|
4026
|
+
* Human-readable step name
|
|
4027
|
+
* @type {string}
|
|
4028
|
+
* @memberof WorkflowStepExecution
|
|
4029
|
+
*/
|
|
4030
|
+
stepName?: string;
|
|
4031
|
+
/**
|
|
4032
|
+
*
|
|
4033
|
+
* @type {string}
|
|
4034
|
+
* @memberof WorkflowStepExecution
|
|
4035
|
+
*/
|
|
4036
|
+
stepType?: WorkflowStepExecutionStepTypeEnum;
|
|
4037
|
+
}
|
|
4038
|
+
/**
|
|
4039
|
+
* @export
|
|
4040
|
+
*/
|
|
4041
|
+
declare const WorkflowStepExecutionStepTypeEnum: {
|
|
4042
|
+
readonly EMAIL: "email";
|
|
4043
|
+
readonly PUSH: "push";
|
|
4044
|
+
readonly SMS: "sms";
|
|
4045
|
+
readonly IN_APP: "in_app";
|
|
4046
|
+
readonly SLACK: "slack";
|
|
4047
|
+
readonly DISCORD: "discord";
|
|
4048
|
+
readonly TEAMS: "teams";
|
|
4049
|
+
readonly DELAY: "delay";
|
|
4050
|
+
readonly BRANCH: "branch";
|
|
4051
|
+
};
|
|
4052
|
+
type WorkflowStepExecutionStepTypeEnum = typeof WorkflowStepExecutionStepTypeEnum[keyof typeof WorkflowStepExecutionStepTypeEnum];
|
|
4053
|
+
/**
|
|
4054
|
+
* Check if a given object implements the WorkflowStepExecution interface.
|
|
4055
|
+
*/
|
|
4056
|
+
declare function instanceOfWorkflowStepExecution(value: object): value is WorkflowStepExecution;
|
|
4057
|
+
declare function WorkflowStepExecutionFromJSON(json: any): WorkflowStepExecution;
|
|
4058
|
+
declare function WorkflowStepExecutionFromJSONTyped(json: any, ignoreDiscriminator: boolean): WorkflowStepExecution;
|
|
4059
|
+
declare function WorkflowStepExecutionToJSON(json: any): WorkflowStepExecution;
|
|
4060
|
+
declare function WorkflowStepExecutionToJSONTyped(value?: WorkflowStepExecution | null, ignoreDiscriminator?: boolean): any;
|
|
4061
|
+
|
|
4062
|
+
/**
|
|
4063
|
+
* Zyphr API
|
|
4064
|
+
* Zyphr is a multi-channel notification platform that enables developers to send emails, push notifications, SMS, and in-app messages through a unified API. ## Authentication All API requests require authentication using an API key. Include your API key in the `X-API-Key` header: ``` X-API-Key: zy_live_xxxxxxxxxxxx ``` API keys can be created in the Zyphr Dashboard. Use `zy_test_*` keys for testing and `zy_live_*` keys for production. ## Rate Limiting The API implements rate limiting to ensure fair usage. Rate limit information is included in response headers: - `X-RateLimit-Limit`: Maximum requests per window - `X-RateLimit-Remaining`: Remaining requests in current window - `X-RateLimit-Reset`: Unix timestamp when the window resets ## Errors All errors follow a consistent format: ```json { \"error\": { \"code\": \"error_code\", \"message\": \"Human readable message\", \"details\": {} }, \"meta\": { \"request_id\": \"req_xxxx\" } } ```
|
|
4065
|
+
*
|
|
4066
|
+
* The version of the OpenAPI document: 1.0.0
|
|
4067
|
+
* Contact: support@zyphr.dev
|
|
4068
|
+
*
|
|
4069
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
4070
|
+
* https://openapi-generator.tech
|
|
4071
|
+
* Do not edit the class manually.
|
|
4072
|
+
*/
|
|
4073
|
+
|
|
4074
|
+
/**
|
|
4075
|
+
*
|
|
4076
|
+
* @export
|
|
4077
|
+
* @interface WorkflowExecution
|
|
4078
|
+
*/
|
|
4079
|
+
interface WorkflowExecution {
|
|
4080
|
+
/**
|
|
4081
|
+
*
|
|
4082
|
+
* @type {string}
|
|
4083
|
+
* @memberof WorkflowExecution
|
|
4084
|
+
*/
|
|
4085
|
+
id: string;
|
|
4086
|
+
/**
|
|
4087
|
+
*
|
|
4088
|
+
* @type {string}
|
|
4089
|
+
* @memberof WorkflowExecution
|
|
4090
|
+
*/
|
|
4091
|
+
workflowId: string;
|
|
4092
|
+
/**
|
|
4093
|
+
*
|
|
4094
|
+
* @type {string}
|
|
4095
|
+
* @memberof WorkflowExecution
|
|
4096
|
+
*/
|
|
4097
|
+
accountId: string;
|
|
4098
|
+
/**
|
|
4099
|
+
*
|
|
4100
|
+
* @type {string}
|
|
4101
|
+
* @memberof WorkflowExecution
|
|
4102
|
+
*/
|
|
4103
|
+
projectId: string;
|
|
4104
|
+
/**
|
|
4105
|
+
*
|
|
4106
|
+
* @type {string}
|
|
4107
|
+
* @memberof WorkflowExecution
|
|
4108
|
+
*/
|
|
4109
|
+
subscriberId: string;
|
|
4110
|
+
/**
|
|
4111
|
+
*
|
|
4112
|
+
* @type {string}
|
|
4113
|
+
* @memberof WorkflowExecution
|
|
4114
|
+
*/
|
|
4115
|
+
topicKey?: string | null;
|
|
4116
|
+
/**
|
|
4117
|
+
*
|
|
4118
|
+
* @type {{ [key: string]: any; }}
|
|
4119
|
+
* @memberof WorkflowExecution
|
|
4120
|
+
*/
|
|
4121
|
+
triggerPayload?: {
|
|
4122
|
+
[key: string]: any;
|
|
4123
|
+
};
|
|
4124
|
+
/**
|
|
4125
|
+
*
|
|
4126
|
+
* @type {string}
|
|
4127
|
+
* @memberof WorkflowExecution
|
|
4128
|
+
*/
|
|
4129
|
+
transactionId?: string | null;
|
|
4130
|
+
/**
|
|
4131
|
+
*
|
|
4132
|
+
* @type {string}
|
|
4133
|
+
* @memberof WorkflowExecution
|
|
4134
|
+
*/
|
|
4135
|
+
senderFrom?: string | null;
|
|
4136
|
+
/**
|
|
4137
|
+
*
|
|
4138
|
+
* @type {WorkflowExecutionStatus}
|
|
4139
|
+
* @memberof WorkflowExecution
|
|
4140
|
+
*/
|
|
4141
|
+
status: WorkflowExecutionStatus;
|
|
4142
|
+
/**
|
|
4143
|
+
*
|
|
4144
|
+
* @type {string}
|
|
4145
|
+
* @memberof WorkflowExecution
|
|
4146
|
+
*/
|
|
4147
|
+
currentStepId?: string | null;
|
|
4148
|
+
/**
|
|
4149
|
+
*
|
|
4150
|
+
* @type {Array<WorkflowStepExecution>}
|
|
4151
|
+
* @memberof WorkflowExecution
|
|
4152
|
+
*/
|
|
4153
|
+
stepExecutions?: Array<WorkflowStepExecution>;
|
|
4154
|
+
/**
|
|
4155
|
+
*
|
|
4156
|
+
* @type {Date}
|
|
4157
|
+
* @memberof WorkflowExecution
|
|
4158
|
+
*/
|
|
4159
|
+
startedAt?: Date | null;
|
|
4160
|
+
/**
|
|
4161
|
+
*
|
|
4162
|
+
* @type {Date}
|
|
4163
|
+
* @memberof WorkflowExecution
|
|
4164
|
+
*/
|
|
4165
|
+
completedAt?: Date | null;
|
|
4166
|
+
/**
|
|
4167
|
+
*
|
|
4168
|
+
* @type {Date}
|
|
4169
|
+
* @memberof WorkflowExecution
|
|
4170
|
+
*/
|
|
4171
|
+
createdAt: Date;
|
|
4172
|
+
}
|
|
4173
|
+
/**
|
|
4174
|
+
* Check if a given object implements the WorkflowExecution interface.
|
|
4175
|
+
*/
|
|
4176
|
+
declare function instanceOfWorkflowExecution(value: object): value is WorkflowExecution;
|
|
4177
|
+
declare function WorkflowExecutionFromJSON(json: any): WorkflowExecution;
|
|
4178
|
+
declare function WorkflowExecutionFromJSONTyped(json: any, ignoreDiscriminator: boolean): WorkflowExecution;
|
|
4179
|
+
declare function WorkflowExecutionToJSON(json: any): WorkflowExecution;
|
|
4180
|
+
declare function WorkflowExecutionToJSONTyped(value?: WorkflowExecution | null, ignoreDiscriminator?: boolean): any;
|
|
4181
|
+
|
|
4182
|
+
/**
|
|
4183
|
+
* Zyphr API
|
|
4184
|
+
* Zyphr is a multi-channel notification platform that enables developers to send emails, push notifications, SMS, and in-app messages through a unified API. ## Authentication All API requests require authentication using an API key. Include your API key in the `X-API-Key` header: ``` X-API-Key: zy_live_xxxxxxxxxxxx ``` API keys can be created in the Zyphr Dashboard. Use `zy_test_*` keys for testing and `zy_live_*` keys for production. ## Rate Limiting The API implements rate limiting to ensure fair usage. Rate limit information is included in response headers: - `X-RateLimit-Limit`: Maximum requests per window - `X-RateLimit-Remaining`: Remaining requests in current window - `X-RateLimit-Reset`: Unix timestamp when the window resets ## Errors All errors follow a consistent format: ```json { \"error\": { \"code\": \"error_code\", \"message\": \"Human readable message\", \"details\": {} }, \"meta\": { \"request_id\": \"req_xxxx\" } } ```
|
|
4185
|
+
*
|
|
4186
|
+
* The version of the OpenAPI document: 1.0.0
|
|
4187
|
+
* Contact: support@zyphr.dev
|
|
4188
|
+
*
|
|
4189
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
4190
|
+
* https://openapi-generator.tech
|
|
4191
|
+
* Do not edit the class manually.
|
|
4192
|
+
*/
|
|
4193
|
+
|
|
4194
|
+
/**
|
|
4195
|
+
*
|
|
4196
|
+
* @export
|
|
4197
|
+
* @interface ExecutionResponse
|
|
4198
|
+
*/
|
|
4199
|
+
interface ExecutionResponse {
|
|
4200
|
+
/**
|
|
4201
|
+
*
|
|
4202
|
+
* @type {WorkflowExecution}
|
|
4203
|
+
* @memberof ExecutionResponse
|
|
4204
|
+
*/
|
|
4205
|
+
data?: WorkflowExecution;
|
|
4206
|
+
/**
|
|
4207
|
+
*
|
|
4208
|
+
* @type {RequestMeta}
|
|
4209
|
+
* @memberof ExecutionResponse
|
|
4210
|
+
*/
|
|
4211
|
+
meta?: RequestMeta;
|
|
4212
|
+
}
|
|
4213
|
+
/**
|
|
4214
|
+
* Check if a given object implements the ExecutionResponse interface.
|
|
4215
|
+
*/
|
|
4216
|
+
declare function instanceOfExecutionResponse(value: object): value is ExecutionResponse;
|
|
4217
|
+
declare function ExecutionResponseFromJSON(json: any): ExecutionResponse;
|
|
4218
|
+
declare function ExecutionResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ExecutionResponse;
|
|
4219
|
+
declare function ExecutionResponseToJSON(json: any): ExecutionResponse;
|
|
4220
|
+
declare function ExecutionResponseToJSONTyped(value?: ExecutionResponse | null, ignoreDiscriminator?: boolean): any;
|
|
4221
|
+
|
|
4222
|
+
/**
|
|
4223
|
+
* Zyphr API
|
|
4224
|
+
* Zyphr is a multi-channel notification platform that enables developers to send emails, push notifications, SMS, and in-app messages through a unified API. ## Authentication All API requests require authentication using an API key. Include your API key in the `X-API-Key` header: ``` X-API-Key: zy_live_xxxxxxxxxxxx ``` API keys can be created in the Zyphr Dashboard. Use `zy_test_*` keys for testing and `zy_live_*` keys for production. ## Rate Limiting The API implements rate limiting to ensure fair usage. Rate limit information is included in response headers: - `X-RateLimit-Limit`: Maximum requests per window - `X-RateLimit-Remaining`: Remaining requests in current window - `X-RateLimit-Reset`: Unix timestamp when the window resets ## Errors All errors follow a consistent format: ```json { \"error\": { \"code\": \"error_code\", \"message\": \"Human readable message\", \"details\": {} }, \"meta\": { \"request_id\": \"req_xxxx\" } } ```
|
|
4225
|
+
*
|
|
4226
|
+
* The version of the OpenAPI document: 1.0.0
|
|
4227
|
+
* Contact: support@zyphr.dev
|
|
4228
|
+
*
|
|
4229
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
4230
|
+
* https://openapi-generator.tech
|
|
4231
|
+
* Do not edit the class manually.
|
|
4232
|
+
*/
|
|
4233
|
+
/**
|
|
4234
|
+
*
|
|
4235
|
+
* @export
|
|
4236
|
+
* @interface ExecutionRetryResponseData
|
|
4237
|
+
*/
|
|
4238
|
+
interface ExecutionRetryResponseData {
|
|
4239
|
+
/**
|
|
4240
|
+
* The new execution created by the retry
|
|
4241
|
+
* @type {string}
|
|
4242
|
+
* @memberof ExecutionRetryResponseData
|
|
4243
|
+
*/
|
|
4244
|
+
id: string;
|
|
4245
|
+
/**
|
|
4246
|
+
* The execution that was retried
|
|
4247
|
+
* @type {string}
|
|
4248
|
+
* @memberof ExecutionRetryResponseData
|
|
4249
|
+
*/
|
|
4250
|
+
originalExecutionId: string;
|
|
4251
|
+
/**
|
|
4252
|
+
*
|
|
4253
|
+
* @type {string}
|
|
4254
|
+
* @memberof ExecutionRetryResponseData
|
|
4255
|
+
*/
|
|
4256
|
+
status: ExecutionRetryResponseDataStatusEnum;
|
|
4257
|
+
}
|
|
4258
|
+
/**
|
|
4259
|
+
* @export
|
|
4260
|
+
*/
|
|
4261
|
+
declare const ExecutionRetryResponseDataStatusEnum: {
|
|
4262
|
+
readonly PENDING: "pending";
|
|
4263
|
+
};
|
|
4264
|
+
type ExecutionRetryResponseDataStatusEnum = typeof ExecutionRetryResponseDataStatusEnum[keyof typeof ExecutionRetryResponseDataStatusEnum];
|
|
4265
|
+
/**
|
|
4266
|
+
* Check if a given object implements the ExecutionRetryResponseData interface.
|
|
4267
|
+
*/
|
|
4268
|
+
declare function instanceOfExecutionRetryResponseData(value: object): value is ExecutionRetryResponseData;
|
|
4269
|
+
declare function ExecutionRetryResponseDataFromJSON(json: any): ExecutionRetryResponseData;
|
|
4270
|
+
declare function ExecutionRetryResponseDataFromJSONTyped(json: any, ignoreDiscriminator: boolean): ExecutionRetryResponseData;
|
|
4271
|
+
declare function ExecutionRetryResponseDataToJSON(json: any): ExecutionRetryResponseData;
|
|
4272
|
+
declare function ExecutionRetryResponseDataToJSONTyped(value?: ExecutionRetryResponseData | null, ignoreDiscriminator?: boolean): any;
|
|
4273
|
+
|
|
4274
|
+
/**
|
|
4275
|
+
* Zyphr API
|
|
4276
|
+
* Zyphr is a multi-channel notification platform that enables developers to send emails, push notifications, SMS, and in-app messages through a unified API. ## Authentication All API requests require authentication using an API key. Include your API key in the `X-API-Key` header: ``` X-API-Key: zy_live_xxxxxxxxxxxx ``` API keys can be created in the Zyphr Dashboard. Use `zy_test_*` keys for testing and `zy_live_*` keys for production. ## Rate Limiting The API implements rate limiting to ensure fair usage. Rate limit information is included in response headers: - `X-RateLimit-Limit`: Maximum requests per window - `X-RateLimit-Remaining`: Remaining requests in current window - `X-RateLimit-Reset`: Unix timestamp when the window resets ## Errors All errors follow a consistent format: ```json { \"error\": { \"code\": \"error_code\", \"message\": \"Human readable message\", \"details\": {} }, \"meta\": { \"request_id\": \"req_xxxx\" } } ```
|
|
4277
|
+
*
|
|
4278
|
+
* The version of the OpenAPI document: 1.0.0
|
|
4279
|
+
* Contact: support@zyphr.dev
|
|
4280
|
+
*
|
|
4281
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
4282
|
+
* https://openapi-generator.tech
|
|
4283
|
+
* Do not edit the class manually.
|
|
4284
|
+
*/
|
|
4285
|
+
|
|
4286
|
+
/**
|
|
4287
|
+
*
|
|
4288
|
+
* @export
|
|
4289
|
+
* @interface ExecutionRetryResponse
|
|
4290
|
+
*/
|
|
4291
|
+
interface ExecutionRetryResponse {
|
|
4292
|
+
/**
|
|
4293
|
+
*
|
|
4294
|
+
* @type {ExecutionRetryResponseData}
|
|
4295
|
+
* @memberof ExecutionRetryResponse
|
|
4296
|
+
*/
|
|
4297
|
+
data?: ExecutionRetryResponseData;
|
|
4298
|
+
/**
|
|
4299
|
+
*
|
|
4300
|
+
* @type {RequestMeta}
|
|
4301
|
+
* @memberof ExecutionRetryResponse
|
|
4302
|
+
*/
|
|
4303
|
+
meta?: RequestMeta;
|
|
4304
|
+
}
|
|
4305
|
+
/**
|
|
4306
|
+
* Check if a given object implements the ExecutionRetryResponse interface.
|
|
4307
|
+
*/
|
|
4308
|
+
declare function instanceOfExecutionRetryResponse(value: object): value is ExecutionRetryResponse;
|
|
4309
|
+
declare function ExecutionRetryResponseFromJSON(json: any): ExecutionRetryResponse;
|
|
4310
|
+
declare function ExecutionRetryResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ExecutionRetryResponse;
|
|
4311
|
+
declare function ExecutionRetryResponseToJSON(json: any): ExecutionRetryResponse;
|
|
4312
|
+
declare function ExecutionRetryResponseToJSONTyped(value?: ExecutionRetryResponse | null, ignoreDiscriminator?: boolean): any;
|
|
4313
|
+
|
|
3800
4314
|
/**
|
|
3801
4315
|
* Zyphr API
|
|
3802
4316
|
* Zyphr is a multi-channel notification platform that enables developers to send emails, push notifications, SMS, and in-app messages through a unified API. ## Authentication All API requests require authentication using an API key. Include your API key in the `X-API-Key` header: ``` X-API-Key: zy_live_xxxxxxxxxxxx ``` API keys can be created in the Zyphr Dashboard. Use `zy_test_*` keys for testing and `zy_live_*` keys for production. ## Rate Limiting The API implements rate limiting to ensure fair usage. Rate limit information is included in response headers: - `X-RateLimit-Limit`: Maximum requests per window - `X-RateLimit-Remaining`: Remaining requests in current window - `X-RateLimit-Reset`: Unix timestamp when the window resets ## Errors All errors follow a consistent format: ```json { \"error\": { \"code\": \"error_code\", \"message\": \"Human readable message\", \"details\": {} }, \"meta\": { \"request_id\": \"req_xxxx\" } } ```
|
|
@@ -18511,6 +19025,113 @@ declare const ListEmailsStatusEnum: {
|
|
|
18511
19025
|
};
|
|
18512
19026
|
type ListEmailsStatusEnum = typeof ListEmailsStatusEnum[keyof typeof ListEmailsStatusEnum];
|
|
18513
19027
|
|
|
19028
|
+
/**
|
|
19029
|
+
* Zyphr API
|
|
19030
|
+
* Zyphr is a multi-channel notification platform that enables developers to send emails, push notifications, SMS, and in-app messages through a unified API. ## Authentication All API requests require authentication using an API key. Include your API key in the `X-API-Key` header: ``` X-API-Key: zy_live_xxxxxxxxxxxx ``` API keys can be created in the Zyphr Dashboard. Use `zy_test_*` keys for testing and `zy_live_*` keys for production. ## Rate Limiting The API implements rate limiting to ensure fair usage. Rate limit information is included in response headers: - `X-RateLimit-Limit`: Maximum requests per window - `X-RateLimit-Remaining`: Remaining requests in current window - `X-RateLimit-Reset`: Unix timestamp when the window resets ## Errors All errors follow a consistent format: ```json { \"error\": { \"code\": \"error_code\", \"message\": \"Human readable message\", \"details\": {} }, \"meta\": { \"request_id\": \"req_xxxx\" } } ```
|
|
19031
|
+
*
|
|
19032
|
+
* The version of the OpenAPI document: 1.0.0
|
|
19033
|
+
* Contact: support@zyphr.dev
|
|
19034
|
+
*
|
|
19035
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
19036
|
+
* https://openapi-generator.tech
|
|
19037
|
+
* Do not edit the class manually.
|
|
19038
|
+
*/
|
|
19039
|
+
|
|
19040
|
+
interface ExecutionsApiCancelExecutionRequest {
|
|
19041
|
+
id: string;
|
|
19042
|
+
}
|
|
19043
|
+
interface ExecutionsApiGetExecutionRequest {
|
|
19044
|
+
id: string;
|
|
19045
|
+
}
|
|
19046
|
+
interface ExecutionsApiRetryExecutionRequest {
|
|
19047
|
+
id: string;
|
|
19048
|
+
}
|
|
19049
|
+
/**
|
|
19050
|
+
* ExecutionsApi - interface
|
|
19051
|
+
*
|
|
19052
|
+
* @export
|
|
19053
|
+
* @interface ExecutionsApiInterface
|
|
19054
|
+
*/
|
|
19055
|
+
interface ExecutionsApiInterface {
|
|
19056
|
+
/**
|
|
19057
|
+
* Cancel a workflow execution that is still pending or running. Already-terminal executions cannot be cancelled.
|
|
19058
|
+
* @summary Cancel a running execution
|
|
19059
|
+
* @param {string} id Execution ID
|
|
19060
|
+
* @param {*} [options] Override http request option.
|
|
19061
|
+
* @throws {RequiredError}
|
|
19062
|
+
* @memberof ExecutionsApiInterface
|
|
19063
|
+
*/
|
|
19064
|
+
cancelExecutionRaw(requestParameters: ExecutionsApiCancelExecutionRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<ExecutionCancelResponse>>;
|
|
19065
|
+
/**
|
|
19066
|
+
* Cancel a workflow execution that is still pending or running. Already-terminal executions cannot be cancelled.
|
|
19067
|
+
* Cancel a running execution
|
|
19068
|
+
*/
|
|
19069
|
+
cancelExecution(id: string, initOverrides?: RequestInit | InitOverrideFunction): Promise<ExecutionCancelResponse>;
|
|
19070
|
+
/**
|
|
19071
|
+
* Retrieve a workflow execution by ID, including its step execution details.
|
|
19072
|
+
* @summary Get a workflow execution
|
|
19073
|
+
* @param {string} id Execution ID
|
|
19074
|
+
* @param {*} [options] Override http request option.
|
|
19075
|
+
* @throws {RequiredError}
|
|
19076
|
+
* @memberof ExecutionsApiInterface
|
|
19077
|
+
*/
|
|
19078
|
+
getExecutionRaw(requestParameters: ExecutionsApiGetExecutionRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<ExecutionResponse>>;
|
|
19079
|
+
/**
|
|
19080
|
+
* Retrieve a workflow execution by ID, including its step execution details.
|
|
19081
|
+
* Get a workflow execution
|
|
19082
|
+
*/
|
|
19083
|
+
getExecution(id: string, initOverrides?: RequestInit | InitOverrideFunction): Promise<ExecutionResponse>;
|
|
19084
|
+
/**
|
|
19085
|
+
* Create a new workflow execution that re-runs the same workflow with the original subscriber, payload, and sender. Only `failed` or `cancelled` executions can be retried.
|
|
19086
|
+
* @summary Retry a failed or cancelled execution
|
|
19087
|
+
* @param {string} id ID of the execution to retry
|
|
19088
|
+
* @param {*} [options] Override http request option.
|
|
19089
|
+
* @throws {RequiredError}
|
|
19090
|
+
* @memberof ExecutionsApiInterface
|
|
19091
|
+
*/
|
|
19092
|
+
retryExecutionRaw(requestParameters: ExecutionsApiRetryExecutionRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<ExecutionRetryResponse>>;
|
|
19093
|
+
/**
|
|
19094
|
+
* Create a new workflow execution that re-runs the same workflow with the original subscriber, payload, and sender. Only `failed` or `cancelled` executions can be retried.
|
|
19095
|
+
* Retry a failed or cancelled execution
|
|
19096
|
+
*/
|
|
19097
|
+
retryExecution(id: string, initOverrides?: RequestInit | InitOverrideFunction): Promise<ExecutionRetryResponse>;
|
|
19098
|
+
}
|
|
19099
|
+
/**
|
|
19100
|
+
*
|
|
19101
|
+
*/
|
|
19102
|
+
declare class ExecutionsApi extends BaseAPI implements ExecutionsApiInterface {
|
|
19103
|
+
/**
|
|
19104
|
+
* Cancel a workflow execution that is still pending or running. Already-terminal executions cannot be cancelled.
|
|
19105
|
+
* Cancel a running execution
|
|
19106
|
+
*/
|
|
19107
|
+
cancelExecutionRaw(requestParameters: ExecutionsApiCancelExecutionRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<ExecutionCancelResponse>>;
|
|
19108
|
+
/**
|
|
19109
|
+
* Cancel a workflow execution that is still pending or running. Already-terminal executions cannot be cancelled.
|
|
19110
|
+
* Cancel a running execution
|
|
19111
|
+
*/
|
|
19112
|
+
cancelExecution(id: string, initOverrides?: RequestInit | InitOverrideFunction): Promise<ExecutionCancelResponse>;
|
|
19113
|
+
/**
|
|
19114
|
+
* Retrieve a workflow execution by ID, including its step execution details.
|
|
19115
|
+
* Get a workflow execution
|
|
19116
|
+
*/
|
|
19117
|
+
getExecutionRaw(requestParameters: ExecutionsApiGetExecutionRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<ExecutionResponse>>;
|
|
19118
|
+
/**
|
|
19119
|
+
* Retrieve a workflow execution by ID, including its step execution details.
|
|
19120
|
+
* Get a workflow execution
|
|
19121
|
+
*/
|
|
19122
|
+
getExecution(id: string, initOverrides?: RequestInit | InitOverrideFunction): Promise<ExecutionResponse>;
|
|
19123
|
+
/**
|
|
19124
|
+
* Create a new workflow execution that re-runs the same workflow with the original subscriber, payload, and sender. Only `failed` or `cancelled` executions can be retried.
|
|
19125
|
+
* Retry a failed or cancelled execution
|
|
19126
|
+
*/
|
|
19127
|
+
retryExecutionRaw(requestParameters: ExecutionsApiRetryExecutionRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<ExecutionRetryResponse>>;
|
|
19128
|
+
/**
|
|
19129
|
+
* Create a new workflow execution that re-runs the same workflow with the original subscriber, payload, and sender. Only `failed` or `cancelled` executions can be retried.
|
|
19130
|
+
* Retry a failed or cancelled execution
|
|
19131
|
+
*/
|
|
19132
|
+
retryExecution(id: string, initOverrides?: RequestInit | InitOverrideFunction): Promise<ExecutionRetryResponse>;
|
|
19133
|
+
}
|
|
19134
|
+
|
|
18514
19135
|
/**
|
|
18515
19136
|
* Zyphr API
|
|
18516
19137
|
* Zyphr is a multi-channel notification platform that enables developers to send emails, push notifications, SMS, and in-app messages through a unified API. ## Authentication All API requests require authentication using an API key. Include your API key in the `X-API-Key` header: ``` X-API-Key: zy_live_xxxxxxxxxxxx ``` API keys can be created in the Zyphr Dashboard. Use `zy_test_*` keys for testing and `zy_live_*` keys for production. ## Rate Limiting The API implements rate limiting to ensure fair usage. Rate limit information is included in response headers: - `X-RateLimit-Limit`: Maximum requests per window - `X-RateLimit-Remaining`: Remaining requests in current window - `X-RateLimit-Reset`: Unix timestamp when the window resets ## Errors All errors follow a consistent format: ```json { \"error\": { \"code\": \"error_code\", \"message\": \"Human readable message\", \"details\": {} }, \"meta\": { \"request_id\": \"req_xxxx\" } } ```
|
|
@@ -22584,4 +23205,4 @@ declare class Zyphr {
|
|
|
22584
23205
|
*/
|
|
22585
23206
|
declare const SDK_VERSION = "0.1.0";
|
|
22586
23207
|
|
|
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 };
|
|
23208
|
+
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 ExecutionCancelResponse, type ExecutionCancelResponseData, ExecutionCancelResponseDataFromJSON, ExecutionCancelResponseDataFromJSONTyped, ExecutionCancelResponseDataStatusEnum, ExecutionCancelResponseDataToJSON, ExecutionCancelResponseDataToJSONTyped, ExecutionCancelResponseFromJSON, ExecutionCancelResponseFromJSONTyped, ExecutionCancelResponseToJSON, ExecutionCancelResponseToJSONTyped, type ExecutionResponse, ExecutionResponseFromJSON, ExecutionResponseFromJSONTyped, ExecutionResponseToJSON, ExecutionResponseToJSONTyped, type ExecutionRetryResponse, type ExecutionRetryResponseData, ExecutionRetryResponseDataFromJSON, ExecutionRetryResponseDataFromJSONTyped, ExecutionRetryResponseDataStatusEnum, ExecutionRetryResponseDataToJSON, ExecutionRetryResponseDataToJSONTyped, ExecutionRetryResponseFromJSON, ExecutionRetryResponseFromJSONTyped, ExecutionRetryResponseToJSON, ExecutionRetryResponseToJSONTyped, ExecutionsApi, type ExecutionsApiCancelExecutionRequest, type ExecutionsApiGetExecutionRequest, type ExecutionsApiInterface, type ExecutionsApiRetryExecutionRequest, type FetchAPI, FetchError, type FetchParams, type ForgotPasswordRequest, ForgotPasswordRequestFromJSON, ForgotPasswordRequestFromJSONTyped, ForgotPasswordRequestToJSON, ForgotPasswordRequestToJSONTyped, type GenerateSubscriberToken200Response, type GenerateSubscriberToken200ResponseData, GenerateSubscriberToken200ResponseDataFromJSON, GenerateSubscriberToken200ResponseDataFromJSONTyped, GenerateSubscriberToken200ResponseDataToJSON, GenerateSubscriberToken200ResponseDataToJSONTyped, GenerateSubscriberToken200ResponseFromJSON, GenerateSubscriberToken200ResponseFromJSONTyped, GenerateSubscriberToken200ResponseToJSON, GenerateSubscriberToken200ResponseToJSONTyped, type GenerateSubscriberTokenRequest, GenerateSubscriberTokenRequestFromJSON, GenerateSubscriberTokenRequestFromJSONTyped, GenerateSubscriberTokenRequestToJSON, GenerateSubscriberTokenRequestToJSONTyped, type GenerateWaaSPortalToken201Response, GenerateWaaSPortalToken201ResponseFromJSON, GenerateWaaSPortalToken201ResponseFromJSONTyped, GenerateWaaSPortalToken201ResponseToJSON, GenerateWaaSPortalToken201ResponseToJSONTyped, type GetWaaSEndpoint200Response, GetWaaSEndpoint200ResponseFromJSON, GetWaaSEndpoint200ResponseFromJSONTyped, GetWaaSEndpoint200ResponseToJSON, GetWaaSEndpoint200ResponseToJSONTyped, type GetWaaSUsage200Response, GetWaaSUsage200ResponseFromJSON, GetWaaSUsage200ResponseFromJSONTyped, GetWaaSUsage200ResponseToJSON, GetWaaSUsage200ResponseToJSONTyped, type HTTPBody, type HTTPHeaders, type HTTPMethod, type HTTPQuery, type HTTPRequestInit, type InAppNotification, InAppNotificationFromJSON, InAppNotificationFromJSONTyped, InAppNotificationPriorityEnum, InAppNotificationToJSON, InAppNotificationToJSONTyped, InboxApi, type InboxApiArchiveInboxNotificationRequest, type InboxApiArchiveSubscriberNotificationRequest, type InboxApiDeleteInboxNotificationRequest, type InboxApiDeleteSubscriberNotificationRequest, type InboxApiGenerateSubscriberTokenOperationRequest, type InboxApiGetInboxNotificationRequest, type InboxApiGetSubscriberNotificationRequest, type InboxApiGetUnreadCountRequest, type InboxApiInterface, type InboxApiListAllInboxRequest, type InboxApiListInboxRequest, type InboxApiListSubscriberNotificationsRequest, type InboxApiMarkAllInboxReadOperationRequest, type InboxApiMarkAllSubscriberNotificationsReadOperationRequest, type InboxApiMarkInboxReadOperationRequest, type InboxApiMarkSubscriberNotificationReadRequest, type InboxApiSendBatchInAppOperationRequest, type InboxApiSendInAppOperationRequest, type InboxApiUpdateSubscriberPreferencesOperationRequest, type InboxListMeta, InboxListMetaFromJSON, InboxListMetaFromJSONTyped, InboxListMetaToJSON, InboxListMetaToJSONTyped, type InboxListResponse, InboxListResponseFromJSON, InboxListResponseFromJSONTyped, InboxListResponseToJSON, InboxListResponseToJSONTyped, type InboxNotificationResponse, InboxNotificationResponseFromJSON, InboxNotificationResponseFromJSONTyped, InboxNotificationResponseToJSON, InboxNotificationResponseToJSONTyped, type InitOverrideFunction, JSONApiResponse, type Json, ListAllInboxStatusEnum, ListDevicesPlatformEnum, ListEmailsStatusEnum, ListPushStatusEnum, 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, type WorkflowExecution, WorkflowExecutionFromJSON, WorkflowExecutionFromJSONTyped, WorkflowExecutionStatus, WorkflowExecutionStatusFromJSON, WorkflowExecutionStatusFromJSONTyped, WorkflowExecutionStatusToJSON, WorkflowExecutionStatusToJSONTyped, WorkflowExecutionToJSON, WorkflowExecutionToJSONTyped, type WorkflowStepExecution, WorkflowStepExecutionFromJSON, WorkflowStepExecutionFromJSONTyped, WorkflowStepExecutionStatus, WorkflowStepExecutionStatusFromJSON, WorkflowStepExecutionStatusFromJSONTyped, WorkflowStepExecutionStatusToJSON, WorkflowStepExecutionStatusToJSONTyped, WorkflowStepExecutionStepTypeEnum, WorkflowStepExecutionToJSON, WorkflowStepExecutionToJSONTyped, Zyphr, ZyphrAuthenticationError, ZyphrError, type ZyphrErrorOptions, ZyphrNotFoundError, type ZyphrOptions, ZyphrRateLimitError, ZyphrValidationError, canConsumeForm, exists, instanceOfAddTopicSubscribersRequest, instanceOfApiError, instanceOfApiErrorError, instanceOfApiErrorMeta, 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, instanceOfExecutionCancelResponse, instanceOfExecutionCancelResponseData, instanceOfExecutionResponse, instanceOfExecutionRetryResponse, instanceOfExecutionRetryResponseData, instanceOfForgotPasswordRequest, instanceOfGenerateSubscriberToken200Response, instanceOfGenerateSubscriberToken200ResponseData, instanceOfGenerateSubscriberTokenRequest, instanceOfGenerateWaaSPortalToken201Response, instanceOfGetWaaSEndpoint200Response, instanceOfGetWaaSUsage200Response, instanceOfInAppNotification, instanceOfInboxListMeta, instanceOfInboxListResponse, instanceOfInboxNotificationResponse, instanceOfListWaaSApplications200Response, instanceOfListWaaSEndpointDeliveries200Response, instanceOfListWaaSEndpoints200Response, instanceOfListWaaSEventTypes200Response, instanceOfLoginRequest, instanceOfMagicLinkSendRequest, instanceOfMagicLinkVerifyRequest, instanceOfMagicLinkVerifyResponse, instanceOfMagicLinkVerifyResponseData, instanceOfMarkAllInboxReadRequest, instanceOfMarkAllReadData, instanceOfMarkAllReadResponse, instanceOfMarkAllSubscriberNotificationsReadRequest, instanceOfMarkInboxReadRequest, instanceOfMfaBackupCodesResponse, instanceOfMfaBackupCodesResponseData, instanceOfMfaDisableRequest, instanceOfMfaDisableResponse, instanceOfMfaDisableResponseData, instanceOfMfaEnrollRequest, instanceOfMfaEnrollmentResponse, instanceOfMfaEnrollmentResponseData, instanceOfMfaRegenerateBackupCodesRequest, instanceOfMfaStatusResponse, instanceOfMfaStatusResponseData, instanceOfMfaVerifyBackupRequest, instanceOfMfaVerifyBackupResponse, instanceOfMfaVerifyBackupResponseData, instanceOfMfaVerifyEnrollmentRequest, instanceOfMfaVerifyEnrollmentResponse, instanceOfMfaVerifyEnrollmentResponseData, instanceOfMfaVerifyRequest, instanceOfOAuthAuthorizationUrlResponse, instanceOfOAuthAuthorizationUrlResponseData, instanceOfOAuthCallbackRequest, instanceOfOAuthCallbackResponse, instanceOfOAuthCallbackResponseData, instanceOfOAuthConnection, instanceOfOAuthConnectionInfoResponse, instanceOfOAuthConnectionInfoResponseData, instanceOfOAuthConnectionsResponse, instanceOfOAuthConnectionsResponseData, instanceOfOAuthProvider, instanceOfOAuthProviderInfo, instanceOfOAuthProvidersResponse, instanceOfOAuthProvidersResponseData, instanceOfOAuthTokensRefreshResponse, instanceOfOAuthTokensRefreshResponseData, instanceOfOAuthTokensResponse, instanceOfOAuthTokensResponseData, instanceOfPaginationMeta, instanceOfPasswordRequirements, instanceOfPasswordRequirementsResponse, instanceOfPasswordRequirementsResponseData, instanceOfPhoneAuthAvailabilityResponse, instanceOfPhoneAuthAvailabilityResponseData, instanceOfPhoneLoginVerifyRequest, instanceOfPhoneOtpSendRequest, instanceOfPhoneOtpSentResponse, instanceOfPhoneOtpSentResponseData, instanceOfPhoneRegisterVerifyRequest, instanceOfPreferenceListResponse, instanceOfPublishWaaSEvent201Response, instanceOfPushDetailResponse, instanceOfPushEvent, instanceOfPushListResponse, instanceOfPushMessage, instanceOfPushMessageDetail, instanceOfPushMessageDetailAllOfActionButtons, instanceOfPushStatsData, instanceOfPushStatsResponse, instanceOfPushTopicDevice, instanceOfPushTopicDeviceListResponse, instanceOfPushTopicSubscribeData, instanceOfPushTopicSubscribeResponse, instanceOfPushTopicUnsubscribeData, instanceOfPushTopicUnsubscribeResponse, instanceOfRefreshOAuthTokensRequest, instanceOfRefreshSessionRequest, instanceOfRefreshTokenResponse, instanceOfRefreshTokenResponseData, instanceOfRegisterDeviceRequest, instanceOfRegisterRequest, instanceOfRemoveTopicSubscribersRequest, instanceOfRenameWebAuthnCredentialRequest, instanceOfRenderTemplateRequest, instanceOfReplayWebhookEventsRequest, instanceOfRequestMeta, instanceOfResetPasswordRequest, instanceOfResetPasswordResponse, instanceOfResubscribeRequest, instanceOfResubscribeResponse, instanceOfRevokeAllSessionsResponse, instanceOfRevokeAllSessionsResponseData, instanceOfRevokeSessionRequest, instanceOfSendBatchEmailRequest, instanceOfSendBatchEmailResponse, instanceOfSendBatchEmailResult, instanceOfSendBatchEmailResultItem, instanceOfSendBatchInAppMeta, instanceOfSendBatchInAppRequest, instanceOfSendBatchInAppResponse, instanceOfSendBatchSmsData, instanceOfSendBatchSmsRequest, instanceOfSendBatchSmsResponse, instanceOfSendEmailRequest, instanceOfSendEmailResponse, instanceOfSendEmailResponseData, instanceOfSendEmailResponseMeta, instanceOfSendEmailVerificationRequest, instanceOfSendInAppMeta, instanceOfSendInAppRequest, instanceOfSendInAppResponse, instanceOfSendPushRequest, instanceOfSendPushRequestActionButtonsInner, instanceOfSendPushResponse, instanceOfSendPushResponseData, instanceOfSendPushToTopicData, instanceOfSendPushToTopicRequest, instanceOfSendPushToTopicResponse, 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, instanceOfWorkflowExecution, instanceOfWorkflowExecutionStatus, instanceOfWorkflowStepExecution, instanceOfWorkflowStepExecutionStatus, mapValues, parseErrorResponse, querystring };
|