@zyphr-dev/node-sdk 0.1.22 → 0.1.24
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +47 -35
- package/dist/index.cjs +139 -70
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +275 -129
- package/dist/index.d.ts +275 -129
- package/dist/index.js +132 -70
- package/dist/index.js.map +1 -1
- package/package.json +4 -1
- package/src/.openapi-generator/FILES +1 -0
- package/src/errors.ts +20 -0
- package/src/src/apis/EmailsApi.ts +4 -4
- package/src/src/models/BatchRecipient.ts +83 -0
- package/src/src/models/CreateTemplateRequest.ts +18 -11
- package/src/src/models/SendBatchEmailRequest.ts +95 -11
- package/src/src/models/Template.ts +5 -4
- package/src/src/models/TemplateResponse.ts +13 -0
- package/src/src/models/UpdateTemplateRequest.ts +9 -8
- package/src/src/models/index.ts +1 -0
package/dist/index.d.cts
CHANGED
|
@@ -1831,6 +1831,54 @@ declare function BatchPublishWaaSEvents201ResponseFromJSONTyped(json: any, ignor
|
|
|
1831
1831
|
declare function BatchPublishWaaSEvents201ResponseToJSON(json: any): BatchPublishWaaSEvents201Response;
|
|
1832
1832
|
declare function BatchPublishWaaSEvents201ResponseToJSONTyped(value?: BatchPublishWaaSEvents201Response | null, ignoreDiscriminator?: boolean): any;
|
|
1833
1833
|
|
|
1834
|
+
/**
|
|
1835
|
+
* Zyphr API
|
|
1836
|
+
* 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\" } } ```
|
|
1837
|
+
*
|
|
1838
|
+
* The version of the OpenAPI document: 1.0.0
|
|
1839
|
+
* Contact: support@zyphr.dev
|
|
1840
|
+
*
|
|
1841
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1842
|
+
* https://openapi-generator.tech
|
|
1843
|
+
* Do not edit the class manually.
|
|
1844
|
+
*/
|
|
1845
|
+
/**
|
|
1846
|
+
*
|
|
1847
|
+
* @export
|
|
1848
|
+
* @interface BatchRecipient
|
|
1849
|
+
*/
|
|
1850
|
+
interface BatchRecipient {
|
|
1851
|
+
/**
|
|
1852
|
+
*
|
|
1853
|
+
* @type {string}
|
|
1854
|
+
* @memberof BatchRecipient
|
|
1855
|
+
*/
|
|
1856
|
+
email: string;
|
|
1857
|
+
/**
|
|
1858
|
+
*
|
|
1859
|
+
* @type {string}
|
|
1860
|
+
* @memberof BatchRecipient
|
|
1861
|
+
*/
|
|
1862
|
+
name?: string;
|
|
1863
|
+
/**
|
|
1864
|
+
* Per-recipient template variables. Merged on top of the batch-level `template_data`, so per-recipient values win on key collisions.
|
|
1865
|
+
*
|
|
1866
|
+
* @type {{ [key: string]: any; }}
|
|
1867
|
+
* @memberof BatchRecipient
|
|
1868
|
+
*/
|
|
1869
|
+
variables?: {
|
|
1870
|
+
[key: string]: any;
|
|
1871
|
+
};
|
|
1872
|
+
}
|
|
1873
|
+
/**
|
|
1874
|
+
* Check if a given object implements the BatchRecipient interface.
|
|
1875
|
+
*/
|
|
1876
|
+
declare function instanceOfBatchRecipient(value: object): value is BatchRecipient;
|
|
1877
|
+
declare function BatchRecipientFromJSON(json: any): BatchRecipient;
|
|
1878
|
+
declare function BatchRecipientFromJSONTyped(json: any, ignoreDiscriminator: boolean): BatchRecipient;
|
|
1879
|
+
declare function BatchRecipientToJSON(json: any): BatchRecipient;
|
|
1880
|
+
declare function BatchRecipientToJSONTyped(value?: BatchRecipient | null, ignoreDiscriminator?: boolean): any;
|
|
1881
|
+
|
|
1834
1882
|
/**
|
|
1835
1883
|
* Zyphr API
|
|
1836
1884
|
* 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\" } } ```
|
|
@@ -3008,31 +3056,38 @@ interface CreateTemplateRequest {
|
|
|
3008
3056
|
*/
|
|
3009
3057
|
description?: string;
|
|
3010
3058
|
/**
|
|
3011
|
-
* Email subject line
|
|
3059
|
+
* Email subject line. Supports Handlebars `{{var}}` interpolation;
|
|
3060
|
+
* values are HTML-escaped on render (see `html` field for the full
|
|
3061
|
+
* escape policy).
|
|
3062
|
+
*
|
|
3012
3063
|
* @type {string}
|
|
3013
3064
|
* @memberof CreateTemplateRequest
|
|
3014
3065
|
*/
|
|
3015
3066
|
subject?: string;
|
|
3016
3067
|
/**
|
|
3017
|
-
* HTML body
|
|
3068
|
+
* HTML body. Supports Handlebars `{{var}}` interpolation; values are
|
|
3069
|
+
* always HTML-escaped on render.
|
|
3070
|
+
*
|
|
3071
|
+
* **Triple-brace `{{{var}}}` (raw HTML output) is not supported** for
|
|
3072
|
+
* XSS-prevention reasons — input containing `{{{var}}}` is rewritten
|
|
3073
|
+
* to `{{var}}` on save and the response includes a top-level
|
|
3074
|
+
* `warnings` array describing what changed. To inject pre-rendered
|
|
3075
|
+
* HTML, render the entire `html` field outside Zyphr and POST it to
|
|
3076
|
+
* `/v1/email/send` directly without `template_id`.
|
|
3077
|
+
*
|
|
3018
3078
|
* @type {string}
|
|
3019
3079
|
* @memberof CreateTemplateRequest
|
|
3020
3080
|
*/
|
|
3021
3081
|
html?: string;
|
|
3022
3082
|
/**
|
|
3023
|
-
* Plain text body
|
|
3083
|
+
* Plain text body. Supports Handlebars `{{var}}` interpolation;
|
|
3084
|
+
* triple-brace syntax is rewritten to double-brace on save (same
|
|
3085
|
+
* policy as the `html` field).
|
|
3086
|
+
*
|
|
3024
3087
|
* @type {string}
|
|
3025
3088
|
* @memberof CreateTemplateRequest
|
|
3026
3089
|
*/
|
|
3027
3090
|
text?: string;
|
|
3028
|
-
/**
|
|
3029
|
-
* Default variable values
|
|
3030
|
-
* @type {{ [key: string]: any; }}
|
|
3031
|
-
* @memberof CreateTemplateRequest
|
|
3032
|
-
*/
|
|
3033
|
-
variables?: {
|
|
3034
|
-
[key: string]: any;
|
|
3035
|
-
};
|
|
3036
3091
|
}
|
|
3037
3092
|
/**
|
|
3038
3093
|
* Check if a given object implements the CreateTemplateRequest interface.
|
|
@@ -10530,156 +10585,79 @@ declare function RevokeSessionRequestToJSONTyped(value?: RevokeSessionRequest |
|
|
|
10530
10585
|
*/
|
|
10531
10586
|
|
|
10532
10587
|
/**
|
|
10588
|
+
* Send a single email to up to 100 recipients in one request. Each recipient gets their own message record. Provide either raw content (`subject` plus `html` and/or `text`) or a `template_id` with `template_data`.
|
|
10533
10589
|
*
|
|
10534
10590
|
* @export
|
|
10535
|
-
* @interface
|
|
10591
|
+
* @interface SendBatchEmailRequest
|
|
10536
10592
|
*/
|
|
10537
|
-
interface
|
|
10593
|
+
interface SendBatchEmailRequest {
|
|
10538
10594
|
/**
|
|
10539
|
-
*
|
|
10595
|
+
* Sender address. The API also accepts a plain email string for convenience.
|
|
10540
10596
|
*
|
|
10541
|
-
* @type {
|
|
10542
|
-
* @memberof
|
|
10597
|
+
* @type {EmailAddress}
|
|
10598
|
+
* @memberof SendBatchEmailRequest
|
|
10543
10599
|
*/
|
|
10544
|
-
|
|
10600
|
+
from: EmailAddress;
|
|
10545
10601
|
/**
|
|
10546
|
-
* Sender address. The API also accepts a plain email string for convenience.
|
|
10547
10602
|
*
|
|
10548
|
-
* @type {
|
|
10549
|
-
* @memberof
|
|
10603
|
+
* @type {Array<BatchRecipient>}
|
|
10604
|
+
* @memberof SendBatchEmailRequest
|
|
10550
10605
|
*/
|
|
10551
|
-
|
|
10606
|
+
to: Array<BatchRecipient>;
|
|
10552
10607
|
/**
|
|
10553
10608
|
* Reply-to address. The API also accepts a plain email string for convenience.
|
|
10554
10609
|
*
|
|
10555
10610
|
* @type {EmailAddress}
|
|
10556
|
-
* @memberof
|
|
10611
|
+
* @memberof SendBatchEmailRequest
|
|
10557
10612
|
*/
|
|
10558
10613
|
replyTo?: EmailAddress;
|
|
10559
10614
|
/**
|
|
10560
|
-
*
|
|
10561
|
-
* @type {Array<string>}
|
|
10562
|
-
* @memberof SendEmailRequest
|
|
10563
|
-
*/
|
|
10564
|
-
cc?: Array<string>;
|
|
10565
|
-
/**
|
|
10566
|
-
* BCC recipient email address(es).
|
|
10567
|
-
* @type {Array<string>}
|
|
10568
|
-
* @memberof SendEmailRequest
|
|
10569
|
-
*/
|
|
10570
|
-
bcc?: Array<string>;
|
|
10571
|
-
/**
|
|
10572
|
-
*
|
|
10615
|
+
* Required when sending raw content (no `template_id`).
|
|
10573
10616
|
* @type {string}
|
|
10574
|
-
* @memberof
|
|
10617
|
+
* @memberof SendBatchEmailRequest
|
|
10575
10618
|
*/
|
|
10576
|
-
subject
|
|
10619
|
+
subject?: string;
|
|
10577
10620
|
/**
|
|
10578
|
-
*
|
|
10621
|
+
* Provide either `html` or `text` (or both) when sending raw content.
|
|
10579
10622
|
* @type {string}
|
|
10580
|
-
* @memberof
|
|
10623
|
+
* @memberof SendBatchEmailRequest
|
|
10581
10624
|
*/
|
|
10582
10625
|
html?: string;
|
|
10583
10626
|
/**
|
|
10584
|
-
*
|
|
10627
|
+
* Provide either `html` or `text` (or both) when sending raw content.
|
|
10585
10628
|
* @type {string}
|
|
10586
|
-
* @memberof
|
|
10629
|
+
* @memberof SendBatchEmailRequest
|
|
10587
10630
|
*/
|
|
10588
10631
|
text?: string;
|
|
10589
10632
|
/**
|
|
10590
|
-
* Template ID to use instead of html
|
|
10633
|
+
* Template ID to use instead of raw `subject`/`html`/`text`.
|
|
10591
10634
|
* @type {string}
|
|
10592
|
-
* @memberof
|
|
10635
|
+
* @memberof SendBatchEmailRequest
|
|
10593
10636
|
*/
|
|
10594
10637
|
templateId?: string;
|
|
10595
10638
|
/**
|
|
10596
|
-
*
|
|
10639
|
+
* Default variables to pass to the template. Merged with each recipient's per-recipient `variables` (per-recipient values win on key collisions).
|
|
10640
|
+
*
|
|
10597
10641
|
* @type {{ [key: string]: any; }}
|
|
10598
|
-
* @memberof
|
|
10642
|
+
* @memberof SendBatchEmailRequest
|
|
10599
10643
|
*/
|
|
10600
10644
|
templateData?: {
|
|
10601
10645
|
[key: string]: any;
|
|
10602
10646
|
};
|
|
10603
|
-
/**
|
|
10604
|
-
*
|
|
10605
|
-
* @type {Array<EmailAttachment>}
|
|
10606
|
-
* @memberof SendEmailRequest
|
|
10607
|
-
*/
|
|
10608
|
-
attachments?: Array<EmailAttachment>;
|
|
10609
|
-
/**
|
|
10610
|
-
*
|
|
10611
|
-
* @type {{ [key: string]: string; }}
|
|
10612
|
-
* @memberof SendEmailRequest
|
|
10613
|
-
*/
|
|
10614
|
-
headers?: {
|
|
10615
|
-
[key: string]: string;
|
|
10616
|
-
};
|
|
10617
10647
|
/**
|
|
10618
10648
|
*
|
|
10619
10649
|
* @type {Array<string>}
|
|
10620
|
-
* @memberof
|
|
10650
|
+
* @memberof SendBatchEmailRequest
|
|
10621
10651
|
*/
|
|
10622
10652
|
tags?: Array<string>;
|
|
10623
10653
|
/**
|
|
10624
10654
|
*
|
|
10625
10655
|
* @type {{ [key: string]: any; }}
|
|
10626
|
-
* @memberof
|
|
10656
|
+
* @memberof SendBatchEmailRequest
|
|
10627
10657
|
*/
|
|
10628
10658
|
metadata?: {
|
|
10629
10659
|
[key: string]: any;
|
|
10630
10660
|
};
|
|
10631
|
-
/**
|
|
10632
|
-
* Schedule email for future delivery
|
|
10633
|
-
* @type {Date}
|
|
10634
|
-
* @memberof SendEmailRequest
|
|
10635
|
-
*/
|
|
10636
|
-
scheduledAt?: Date;
|
|
10637
|
-
/**
|
|
10638
|
-
* Associate with a subscriber for preference checking
|
|
10639
|
-
* @type {string}
|
|
10640
|
-
* @memberof SendEmailRequest
|
|
10641
|
-
*/
|
|
10642
|
-
subscriberId?: string;
|
|
10643
|
-
/**
|
|
10644
|
-
* Notification category for preference filtering
|
|
10645
|
-
* @type {string}
|
|
10646
|
-
* @memberof SendEmailRequest
|
|
10647
|
-
*/
|
|
10648
|
-
category?: string;
|
|
10649
|
-
}
|
|
10650
|
-
/**
|
|
10651
|
-
* Check if a given object implements the SendEmailRequest interface.
|
|
10652
|
-
*/
|
|
10653
|
-
declare function instanceOfSendEmailRequest(value: object): value is SendEmailRequest;
|
|
10654
|
-
declare function SendEmailRequestFromJSON(json: any): SendEmailRequest;
|
|
10655
|
-
declare function SendEmailRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): SendEmailRequest;
|
|
10656
|
-
declare function SendEmailRequestToJSON(json: any): SendEmailRequest;
|
|
10657
|
-
declare function SendEmailRequestToJSONTyped(value?: SendEmailRequest | null, ignoreDiscriminator?: boolean): any;
|
|
10658
|
-
|
|
10659
|
-
/**
|
|
10660
|
-
* Zyphr API
|
|
10661
|
-
* 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\" } } ```
|
|
10662
|
-
*
|
|
10663
|
-
* The version of the OpenAPI document: 1.0.0
|
|
10664
|
-
* Contact: support@zyphr.dev
|
|
10665
|
-
*
|
|
10666
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
10667
|
-
* https://openapi-generator.tech
|
|
10668
|
-
* Do not edit the class manually.
|
|
10669
|
-
*/
|
|
10670
|
-
|
|
10671
|
-
/**
|
|
10672
|
-
*
|
|
10673
|
-
* @export
|
|
10674
|
-
* @interface SendBatchEmailRequest
|
|
10675
|
-
*/
|
|
10676
|
-
interface SendBatchEmailRequest {
|
|
10677
|
-
/**
|
|
10678
|
-
*
|
|
10679
|
-
* @type {Array<SendEmailRequest>}
|
|
10680
|
-
* @memberof SendBatchEmailRequest
|
|
10681
|
-
*/
|
|
10682
|
-
messages: Array<SendEmailRequest>;
|
|
10683
10661
|
}
|
|
10684
10662
|
/**
|
|
10685
10663
|
* Check if a given object implements the SendBatchEmailRequest interface.
|
|
@@ -11308,6 +11286,145 @@ declare function SendBatchSmsResponseFromJSONTyped(json: any, ignoreDiscriminato
|
|
|
11308
11286
|
declare function SendBatchSmsResponseToJSON(json: any): SendBatchSmsResponse;
|
|
11309
11287
|
declare function SendBatchSmsResponseToJSONTyped(value?: SendBatchSmsResponse | null, ignoreDiscriminator?: boolean): any;
|
|
11310
11288
|
|
|
11289
|
+
/**
|
|
11290
|
+
* Zyphr API
|
|
11291
|
+
* 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\" } } ```
|
|
11292
|
+
*
|
|
11293
|
+
* The version of the OpenAPI document: 1.0.0
|
|
11294
|
+
* Contact: support@zyphr.dev
|
|
11295
|
+
*
|
|
11296
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11297
|
+
* https://openapi-generator.tech
|
|
11298
|
+
* Do not edit the class manually.
|
|
11299
|
+
*/
|
|
11300
|
+
|
|
11301
|
+
/**
|
|
11302
|
+
*
|
|
11303
|
+
* @export
|
|
11304
|
+
* @interface SendEmailRequest
|
|
11305
|
+
*/
|
|
11306
|
+
interface SendEmailRequest {
|
|
11307
|
+
/**
|
|
11308
|
+
* Recipient(s). An array of EmailAddress objects. The API also accepts a single email string or an array of email strings for convenience.
|
|
11309
|
+
*
|
|
11310
|
+
* @type {Array<EmailAddress>}
|
|
11311
|
+
* @memberof SendEmailRequest
|
|
11312
|
+
*/
|
|
11313
|
+
to: Array<EmailAddress>;
|
|
11314
|
+
/**
|
|
11315
|
+
* Sender address. The API also accepts a plain email string for convenience.
|
|
11316
|
+
*
|
|
11317
|
+
* @type {EmailAddress}
|
|
11318
|
+
* @memberof SendEmailRequest
|
|
11319
|
+
*/
|
|
11320
|
+
from?: EmailAddress;
|
|
11321
|
+
/**
|
|
11322
|
+
* Reply-to address. The API also accepts a plain email string for convenience.
|
|
11323
|
+
*
|
|
11324
|
+
* @type {EmailAddress}
|
|
11325
|
+
* @memberof SendEmailRequest
|
|
11326
|
+
*/
|
|
11327
|
+
replyTo?: EmailAddress;
|
|
11328
|
+
/**
|
|
11329
|
+
* CC recipient email address(es).
|
|
11330
|
+
* @type {Array<string>}
|
|
11331
|
+
* @memberof SendEmailRequest
|
|
11332
|
+
*/
|
|
11333
|
+
cc?: Array<string>;
|
|
11334
|
+
/**
|
|
11335
|
+
* BCC recipient email address(es).
|
|
11336
|
+
* @type {Array<string>}
|
|
11337
|
+
* @memberof SendEmailRequest
|
|
11338
|
+
*/
|
|
11339
|
+
bcc?: Array<string>;
|
|
11340
|
+
/**
|
|
11341
|
+
*
|
|
11342
|
+
* @type {string}
|
|
11343
|
+
* @memberof SendEmailRequest
|
|
11344
|
+
*/
|
|
11345
|
+
subject: string;
|
|
11346
|
+
/**
|
|
11347
|
+
*
|
|
11348
|
+
* @type {string}
|
|
11349
|
+
* @memberof SendEmailRequest
|
|
11350
|
+
*/
|
|
11351
|
+
html?: string;
|
|
11352
|
+
/**
|
|
11353
|
+
*
|
|
11354
|
+
* @type {string}
|
|
11355
|
+
* @memberof SendEmailRequest
|
|
11356
|
+
*/
|
|
11357
|
+
text?: string;
|
|
11358
|
+
/**
|
|
11359
|
+
* Template ID to use instead of html/text
|
|
11360
|
+
* @type {string}
|
|
11361
|
+
* @memberof SendEmailRequest
|
|
11362
|
+
*/
|
|
11363
|
+
templateId?: string;
|
|
11364
|
+
/**
|
|
11365
|
+
* Variables to pass to the template
|
|
11366
|
+
* @type {{ [key: string]: any; }}
|
|
11367
|
+
* @memberof SendEmailRequest
|
|
11368
|
+
*/
|
|
11369
|
+
templateData?: {
|
|
11370
|
+
[key: string]: any;
|
|
11371
|
+
};
|
|
11372
|
+
/**
|
|
11373
|
+
*
|
|
11374
|
+
* @type {Array<EmailAttachment>}
|
|
11375
|
+
* @memberof SendEmailRequest
|
|
11376
|
+
*/
|
|
11377
|
+
attachments?: Array<EmailAttachment>;
|
|
11378
|
+
/**
|
|
11379
|
+
*
|
|
11380
|
+
* @type {{ [key: string]: string; }}
|
|
11381
|
+
* @memberof SendEmailRequest
|
|
11382
|
+
*/
|
|
11383
|
+
headers?: {
|
|
11384
|
+
[key: string]: string;
|
|
11385
|
+
};
|
|
11386
|
+
/**
|
|
11387
|
+
*
|
|
11388
|
+
* @type {Array<string>}
|
|
11389
|
+
* @memberof SendEmailRequest
|
|
11390
|
+
*/
|
|
11391
|
+
tags?: Array<string>;
|
|
11392
|
+
/**
|
|
11393
|
+
*
|
|
11394
|
+
* @type {{ [key: string]: any; }}
|
|
11395
|
+
* @memberof SendEmailRequest
|
|
11396
|
+
*/
|
|
11397
|
+
metadata?: {
|
|
11398
|
+
[key: string]: any;
|
|
11399
|
+
};
|
|
11400
|
+
/**
|
|
11401
|
+
* Schedule email for future delivery
|
|
11402
|
+
* @type {Date}
|
|
11403
|
+
* @memberof SendEmailRequest
|
|
11404
|
+
*/
|
|
11405
|
+
scheduledAt?: Date;
|
|
11406
|
+
/**
|
|
11407
|
+
* Associate with a subscriber for preference checking
|
|
11408
|
+
* @type {string}
|
|
11409
|
+
* @memberof SendEmailRequest
|
|
11410
|
+
*/
|
|
11411
|
+
subscriberId?: string;
|
|
11412
|
+
/**
|
|
11413
|
+
* Notification category for preference filtering
|
|
11414
|
+
* @type {string}
|
|
11415
|
+
* @memberof SendEmailRequest
|
|
11416
|
+
*/
|
|
11417
|
+
category?: string;
|
|
11418
|
+
}
|
|
11419
|
+
/**
|
|
11420
|
+
* Check if a given object implements the SendEmailRequest interface.
|
|
11421
|
+
*/
|
|
11422
|
+
declare function instanceOfSendEmailRequest(value: object): value is SendEmailRequest;
|
|
11423
|
+
declare function SendEmailRequestFromJSON(json: any): SendEmailRequest;
|
|
11424
|
+
declare function SendEmailRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): SendEmailRequest;
|
|
11425
|
+
declare function SendEmailRequestToJSON(json: any): SendEmailRequest;
|
|
11426
|
+
declare function SendEmailRequestToJSONTyped(value?: SendEmailRequest | null, ignoreDiscriminator?: boolean): any;
|
|
11427
|
+
|
|
11311
11428
|
/**
|
|
11312
11429
|
* Zyphr API
|
|
11313
11430
|
* 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\" } } ```
|
|
@@ -13938,11 +14055,13 @@ interface Template {
|
|
|
13938
14055
|
*/
|
|
13939
14056
|
text?: string | null;
|
|
13940
14057
|
/**
|
|
14058
|
+
* Variable names auto-detected from `{{var}}` placeholders in subject,
|
|
14059
|
+
* html, and text. Server-derived; ignored if supplied on create/update.
|
|
13941
14060
|
*
|
|
13942
|
-
* @type {
|
|
14061
|
+
* @type {Array<string>}
|
|
13943
14062
|
* @memberof Template
|
|
13944
14063
|
*/
|
|
13945
|
-
variables?:
|
|
14064
|
+
readonly variables?: Array<string> | null;
|
|
13946
14065
|
/**
|
|
13947
14066
|
*
|
|
13948
14067
|
* @type {number}
|
|
@@ -13969,7 +14088,7 @@ declare function instanceOfTemplate(value: object): value is Template;
|
|
|
13969
14088
|
declare function TemplateFromJSON(json: any): Template;
|
|
13970
14089
|
declare function TemplateFromJSONTyped(json: any, ignoreDiscriminator: boolean): Template;
|
|
13971
14090
|
declare function TemplateToJSON(json: any): Template;
|
|
13972
|
-
declare function TemplateToJSONTyped(value?: Template | null, ignoreDiscriminator?: boolean): any;
|
|
14091
|
+
declare function TemplateToJSONTyped(value?: Omit<Template, 'variables'> | null, ignoreDiscriminator?: boolean): any;
|
|
13973
14092
|
|
|
13974
14093
|
/**
|
|
13975
14094
|
* Zyphr API
|
|
@@ -14126,6 +14245,17 @@ interface TemplateResponse {
|
|
|
14126
14245
|
* @memberof TemplateResponse
|
|
14127
14246
|
*/
|
|
14128
14247
|
meta?: RequestMeta;
|
|
14248
|
+
/**
|
|
14249
|
+
* Non-fatal advisories about the request. Currently emitted only when
|
|
14250
|
+
* the server rewrites template content for security (see the `html`
|
|
14251
|
+
* field on `CreateTemplateRequest` for the triple-brace policy).
|
|
14252
|
+
* Omitted entirely when no warnings apply — clients should treat its
|
|
14253
|
+
* absence as equivalent to an empty array.
|
|
14254
|
+
*
|
|
14255
|
+
* @type {Array<string>}
|
|
14256
|
+
* @memberof TemplateResponse
|
|
14257
|
+
*/
|
|
14258
|
+
warnings?: Array<string>;
|
|
14129
14259
|
}
|
|
14130
14260
|
/**
|
|
14131
14261
|
* Check if a given object implements the TemplateResponse interface.
|
|
@@ -15358,31 +15488,32 @@ interface UpdateTemplateRequest {
|
|
|
15358
15488
|
*/
|
|
15359
15489
|
description?: string;
|
|
15360
15490
|
/**
|
|
15491
|
+
* Email subject line. Supports Handlebars `{{var}}` interpolation
|
|
15492
|
+
* (HTML-escaped on render).
|
|
15361
15493
|
*
|
|
15362
15494
|
* @type {string}
|
|
15363
15495
|
* @memberof UpdateTemplateRequest
|
|
15364
15496
|
*/
|
|
15365
15497
|
subject?: string;
|
|
15366
15498
|
/**
|
|
15499
|
+
* HTML body. Supports Handlebars `{{var}}` interpolation; values are
|
|
15500
|
+
* always HTML-escaped on render. Triple-brace `{{{var}}}` is not
|
|
15501
|
+
* supported — input is rewritten to `{{var}}` on save and the
|
|
15502
|
+
* response includes a top-level `warnings` array describing the
|
|
15503
|
+
* rewrite. See `CreateTemplateRequest.html` for full rationale.
|
|
15367
15504
|
*
|
|
15368
15505
|
* @type {string}
|
|
15369
15506
|
* @memberof UpdateTemplateRequest
|
|
15370
15507
|
*/
|
|
15371
15508
|
html?: string;
|
|
15372
15509
|
/**
|
|
15510
|
+
* Plain text body. Supports Handlebars `{{var}}` interpolation; same
|
|
15511
|
+
* triple-brace rewrite policy as `html`.
|
|
15373
15512
|
*
|
|
15374
15513
|
* @type {string}
|
|
15375
15514
|
* @memberof UpdateTemplateRequest
|
|
15376
15515
|
*/
|
|
15377
15516
|
text?: string;
|
|
15378
|
-
/**
|
|
15379
|
-
*
|
|
15380
|
-
* @type {{ [key: string]: any; }}
|
|
15381
|
-
* @memberof UpdateTemplateRequest
|
|
15382
|
-
*/
|
|
15383
|
-
variables?: {
|
|
15384
|
-
[key: string]: any;
|
|
15385
|
-
};
|
|
15386
15517
|
}
|
|
15387
15518
|
/**
|
|
15388
15519
|
* Check if a given object implements the UpdateTemplateRequest interface.
|
|
@@ -20832,7 +20963,7 @@ interface EmailsApiInterface {
|
|
|
20832
20963
|
*/
|
|
20833
20964
|
listEmails(status?: ListEmailsStatusEnum, tag?: string, limit?: number, offset?: number, initOverrides?: RequestInit | InitOverrideFunction): Promise<EmailListResponse>;
|
|
20834
20965
|
/**
|
|
20835
|
-
* Send up to 100
|
|
20966
|
+
* Send a single email to up to 100 recipients in one request. Each recipient gets their own message record. Provide either raw content (`subject` plus `html` and/or `text`) or a `template_id` with `template_data`. Per-recipient `variables` are merged on top of the batch-level `template_data`.
|
|
20836
20967
|
* @summary Send batch emails
|
|
20837
20968
|
* @param {SendBatchEmailRequest} sendBatchEmailRequest
|
|
20838
20969
|
* @param {*} [options] Override http request option.
|
|
@@ -20841,7 +20972,7 @@ interface EmailsApiInterface {
|
|
|
20841
20972
|
*/
|
|
20842
20973
|
sendBatchEmailRaw(requestParameters: EmailsApiSendBatchEmailOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<SendBatchEmailResponse>>;
|
|
20843
20974
|
/**
|
|
20844
|
-
* Send up to 100
|
|
20975
|
+
* Send a single email to up to 100 recipients in one request. Each recipient gets their own message record. Provide either raw content (`subject` plus `html` and/or `text`) or a `template_id` with `template_data`. Per-recipient `variables` are merged on top of the batch-level `template_data`.
|
|
20845
20976
|
* Send batch emails
|
|
20846
20977
|
*/
|
|
20847
20978
|
sendBatchEmail(sendBatchEmailRequest: SendBatchEmailRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<SendBatchEmailResponse>;
|
|
@@ -20905,12 +21036,12 @@ declare class EmailsApi extends BaseAPI implements EmailsApiInterface {
|
|
|
20905
21036
|
*/
|
|
20906
21037
|
listEmails(status?: ListEmailsStatusEnum, tag?: string, limit?: number, offset?: number, initOverrides?: RequestInit | InitOverrideFunction): Promise<EmailListResponse>;
|
|
20907
21038
|
/**
|
|
20908
|
-
* Send up to 100
|
|
21039
|
+
* Send a single email to up to 100 recipients in one request. Each recipient gets their own message record. Provide either raw content (`subject` plus `html` and/or `text`) or a `template_id` with `template_data`. Per-recipient `variables` are merged on top of the batch-level `template_data`.
|
|
20909
21040
|
* Send batch emails
|
|
20910
21041
|
*/
|
|
20911
21042
|
sendBatchEmailRaw(requestParameters: EmailsApiSendBatchEmailOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<SendBatchEmailResponse>>;
|
|
20912
21043
|
/**
|
|
20913
|
-
* Send up to 100
|
|
21044
|
+
* Send a single email to up to 100 recipients in one request. Each recipient gets their own message record. Provide either raw content (`subject` plus `html` and/or `text`) or a `template_id` with `template_data`. Per-recipient `variables` are merged on top of the batch-level `template_data`.
|
|
20914
21045
|
* Send batch emails
|
|
20915
21046
|
*/
|
|
20916
21047
|
sendBatchEmail(sendBatchEmailRequest: SendBatchEmailRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<SendBatchEmailResponse>;
|
|
@@ -25151,6 +25282,21 @@ declare class ZyphrRateLimitError extends ZyphrError {
|
|
|
25151
25282
|
declare class ZyphrNotFoundError extends ZyphrError {
|
|
25152
25283
|
constructor(message: string);
|
|
25153
25284
|
}
|
|
25285
|
+
/**
|
|
25286
|
+
* Thrown when a Zyphr webhook signature fails verification.
|
|
25287
|
+
*
|
|
25288
|
+
* Use the verification helper shown in `examples/14-webhook-handler.ts`
|
|
25289
|
+
* (or write your own) to detect tampered or replayed webhook deliveries.
|
|
25290
|
+
*/
|
|
25291
|
+
declare class ZyphrWebhookVerificationError extends ZyphrError {
|
|
25292
|
+
constructor(message: string);
|
|
25293
|
+
}
|
|
25294
|
+
/**
|
|
25295
|
+
* Alias for {@link ZyphrWebhookVerificationError}. Provided for symmetry with
|
|
25296
|
+
* `Zyphr*Error` naming and shorter import statements in webhook handlers.
|
|
25297
|
+
*/
|
|
25298
|
+
declare const WebhookVerificationError: typeof ZyphrWebhookVerificationError;
|
|
25299
|
+
type WebhookVerificationError = ZyphrWebhookVerificationError;
|
|
25154
25300
|
/**
|
|
25155
25301
|
* Parse an API error response and throw the appropriate ZyphrError subclass.
|
|
25156
25302
|
*/
|
|
@@ -25246,4 +25392,4 @@ declare class Zyphr {
|
|
|
25246
25392
|
*/
|
|
25247
25393
|
declare const SDK_VERSION = "0.1.0";
|
|
25248
25394
|
|
|
25249
|
-
export { type AddTopicSubscribersRequest, AddTopicSubscribersRequestFromJSON, AddTopicSubscribersRequestFromJSONTyped, AddTopicSubscribersRequestToJSON, AddTopicSubscribersRequestToJSONTyped, type ApiError, type ApiErrorError, ApiErrorErrorFromJSON, ApiErrorErrorFromJSONTyped, ApiErrorErrorToJSON, ApiErrorErrorToJSONTyped, ApiErrorFromJSON, ApiErrorFromJSONTyped, type ApiErrorMeta, ApiErrorMetaFromJSON, ApiErrorMetaFromJSONTyped, ApiErrorMetaToJSON, ApiErrorMetaToJSONTyped, ApiErrorToJSON, ApiErrorToJSONTyped, type ApiResponse, type AuthEmailTemplate, type AuthEmailTemplateDefault, AuthEmailTemplateDefaultFromJSON, AuthEmailTemplateDefaultFromJSONTyped, type AuthEmailTemplateDefaultResponse, AuthEmailTemplateDefaultResponseFromJSON, AuthEmailTemplateDefaultResponseFromJSONTyped, AuthEmailTemplateDefaultResponseToJSON, AuthEmailTemplateDefaultResponseToJSONTyped, AuthEmailTemplateDefaultToJSON, AuthEmailTemplateDefaultToJSONTyped, type AuthEmailTemplateDeleteResponse, type AuthEmailTemplateDeleteResponseData, AuthEmailTemplateDeleteResponseDataFromJSON, AuthEmailTemplateDeleteResponseDataFromJSONTyped, AuthEmailTemplateDeleteResponseDataToJSON, AuthEmailTemplateDeleteResponseDataToJSONTyped, AuthEmailTemplateDeleteResponseFromJSON, AuthEmailTemplateDeleteResponseFromJSONTyped, AuthEmailTemplateDeleteResponseToJSON, AuthEmailTemplateDeleteResponseToJSONTyped, AuthEmailTemplateEditorTypeEnum, AuthEmailTemplateFromJSON, AuthEmailTemplateFromJSONTyped, type AuthEmailTemplateListResponse, AuthEmailTemplateListResponseFromJSON, AuthEmailTemplateListResponseFromJSONTyped, AuthEmailTemplateListResponseToJSON, AuthEmailTemplateListResponseToJSONTyped, type AuthEmailTemplatePreviewDraft, AuthEmailTemplatePreviewDraftFromJSON, AuthEmailTemplatePreviewDraftFromJSONTyped, AuthEmailTemplatePreviewDraftToJSON, AuthEmailTemplatePreviewDraftToJSONTyped, type AuthEmailTemplatePreviewRequest, AuthEmailTemplatePreviewRequestFromJSON, AuthEmailTemplatePreviewRequestFromJSONTyped, AuthEmailTemplatePreviewRequestToJSON, AuthEmailTemplatePreviewRequestToJSONTyped, type AuthEmailTemplatePreviewResponse, AuthEmailTemplatePreviewResponseFromJSON, AuthEmailTemplatePreviewResponseFromJSONTyped, AuthEmailTemplatePreviewResponseToJSON, AuthEmailTemplatePreviewResponseToJSONTyped, type AuthEmailTemplatePreviewResult, AuthEmailTemplatePreviewResultFromJSON, AuthEmailTemplatePreviewResultFromJSONTyped, AuthEmailTemplatePreviewResultToJSON, AuthEmailTemplatePreviewResultToJSONTyped, type AuthEmailTemplateResponse, AuthEmailTemplateResponseFromJSON, AuthEmailTemplateResponseFromJSONTyped, AuthEmailTemplateResponseToJSON, AuthEmailTemplateResponseToJSONTyped, type AuthEmailTemplateTestRequest, AuthEmailTemplateTestRequestFromJSON, AuthEmailTemplateTestRequestFromJSONTyped, AuthEmailTemplateTestRequestToJSON, AuthEmailTemplateTestRequestToJSONTyped, type AuthEmailTemplateTestResponse, AuthEmailTemplateTestResponseFromJSON, AuthEmailTemplateTestResponseFromJSONTyped, AuthEmailTemplateTestResponseToJSON, AuthEmailTemplateTestResponseToJSONTyped, type AuthEmailTemplateTestResult, AuthEmailTemplateTestResultFromJSON, AuthEmailTemplateTestResultFromJSONTyped, AuthEmailTemplateTestResultToJSON, AuthEmailTemplateTestResultToJSONTyped, AuthEmailTemplateToJSON, AuthEmailTemplateToJSONTyped, type AuthEmailTemplateVersion, AuthEmailTemplateVersionEditorTypeEnum, AuthEmailTemplateVersionFromJSON, AuthEmailTemplateVersionFromJSONTyped, AuthEmailTemplateVersionToJSON, AuthEmailTemplateVersionToJSONTyped, type AuthEmailTemplateVersionsResponse, AuthEmailTemplateVersionsResponseFromJSON, AuthEmailTemplateVersionsResponseFromJSONTyped, AuthEmailTemplateVersionsResponseToJSON, AuthEmailTemplateVersionsResponseToJSONTyped, AuthEmailTemplatesApi, type AuthEmailTemplatesApiBulkUpsertAuthEmailTemplatesOperationRequest, type AuthEmailTemplatesApiDeleteAuthEmailTemplateRequest, type AuthEmailTemplatesApiGetAuthEmailTemplateDefaultRequest, type AuthEmailTemplatesApiGetAuthEmailTemplateRequest, type AuthEmailTemplatesApiInterface, type AuthEmailTemplatesApiListAuthEmailTemplateVersionsRequest, type AuthEmailTemplatesApiPreviewAuthEmailTemplateRequest, type AuthEmailTemplatesApiRestoreAuthEmailTemplateVersionRequest, type AuthEmailTemplatesApiSendAuthEmailTemplateTestRequest, type AuthEmailTemplatesApiUpsertAuthEmailTemplateOperationRequest, AuthEmailType, AuthEmailTypeFromJSON, AuthEmailTypeFromJSONTyped, AuthEmailTypeToJSON, AuthEmailTypeToJSONTyped, AuthEmailVerificationApi, type AuthEmailVerificationApiConfirmEmailVerificationOperationRequest, type AuthEmailVerificationApiInterface, type AuthEmailVerificationApiResendEmailVerificationRequest, type AuthEmailVerificationApiSendEmailVerificationOperationRequest, AuthLoginApi, type AuthLoginApiInterface, type AuthLoginApiLoginEndUserRequest, type AuthLoginResponse, AuthLoginResponseFromJSON, AuthLoginResponseFromJSONTyped, AuthLoginResponseToJSON, AuthLoginResponseToJSONTyped, type AuthLoginResult, AuthLoginResultFromJSON, AuthLoginResultFromJSONTyped, type AuthLoginResultMfaChallenge, AuthLoginResultMfaChallengeFromJSON, AuthLoginResultMfaChallengeFromJSONTyped, AuthLoginResultMfaChallengeToJSON, AuthLoginResultMfaChallengeToJSONTyped, AuthLoginResultToJSON, AuthLoginResultToJSONTyped, AuthMFAApi, type AuthMFAApiDisableMfaRequest, type AuthMFAApiGetMfaStatusRequest, type AuthMFAApiInterface, type AuthMFAApiRegenerateBackupCodesRequest, type AuthMFAApiStartMfaEnrollmentRequest, type AuthMFAApiVerifyMfaChallengeRequest, type AuthMFAApiVerifyMfaChallengeWithBackupCodeRequest, type AuthMFAApiVerifyMfaEnrollmentRequest, AuthMagicLinksApi, type AuthMagicLinksApiInterface, type AuthMagicLinksApiSendMagicLinkRequest, type AuthMagicLinksApiVerifyMagicLinkRequest, AuthOAuthApi, type AuthOAuthApiDisconnectOAuthProviderRequest, type AuthOAuthApiGetOAuthAuthorizationUrlRequest, type AuthOAuthApiGetOAuthConnectionInfoRequest, type AuthOAuthApiGetOAuthTokensRequest, type AuthOAuthApiHandleOAuthCallbackRequest, type AuthOAuthApiInterface, type AuthOAuthApiRefreshOAuthTokensOperationRequest, AuthPasswordResetApi, type AuthPasswordResetApiForgotPasswordOperationRequest, type AuthPasswordResetApiInterface, type AuthPasswordResetApiResetEndUserPasswordRequest, type AuthPasswordResetApiValidateResetTokenOperationRequest, AuthPhoneApi, type AuthPhoneApiInterface, type AuthPhoneApiSendPhoneLoginOtpRequest, type AuthPhoneApiSendPhoneRegistrationOtpRequest, type AuthPhoneApiVerifyPhoneLoginRequest, type AuthPhoneApiVerifyPhoneRegistrationRequest, AuthRegistrationApi, type AuthRegistrationApiInterface, type AuthRegistrationApiRegisterEndUserRequest, type AuthResult, AuthResultFromJSON, AuthResultFromJSONTyped, type AuthResultResponse, AuthResultResponseFromJSON, AuthResultResponseFromJSONTyped, AuthResultResponseToJSON, AuthResultResponseToJSONTyped, AuthResultToJSON, AuthResultToJSONTyped, type AuthSession, AuthSessionFromJSON, AuthSessionFromJSONTyped, AuthSessionToJSON, AuthSessionToJSONTyped, AuthSessionsApi, type AuthSessionsApiInterface, type AuthSessionsApiRefreshEndUserTokenRequest, type AuthSessionsApiRevokeEndUserSessionRequest, type AuthTokens, AuthTokensFromJSON, AuthTokensFromJSONTyped, AuthTokensToJSON, AuthTokensToJSONTyped, type AuthUser, AuthUserFromJSON, AuthUserFromJSONTyped, AuthUserProfileApi, type AuthUserProfileApiInterface, type AuthUserProfileApiUpdateEndUserOperationRequest, type AuthUserResponse, type AuthUserResponseData, AuthUserResponseDataFromJSON, AuthUserResponseDataFromJSONTyped, AuthUserResponseDataToJSON, AuthUserResponseDataToJSONTyped, AuthUserResponseFromJSON, AuthUserResponseFromJSONTyped, AuthUserResponseToJSON, AuthUserResponseToJSONTyped, AuthUserStatusEnum, AuthUserToJSON, AuthUserToJSONTyped, AuthWebAuthnApi, type AuthWebAuthnApiDeleteWebAuthnCredentialRequest, type AuthWebAuthnApiInterface, type AuthWebAuthnApiRenameWebAuthnCredentialOperationRequest, type AuthWebAuthnApiStartWebAuthnAuthenticationRequest, type AuthWebAuthnApiStartWebAuthnRegistrationRequest, type AuthWebAuthnApiVerifyWebAuthnAuthenticationRequest, type AuthWebAuthnApiVerifyWebAuthnRegistrationRequest, BASE_PATH, BaseAPI, type BatchPublishWaaSEvents201Response, BatchPublishWaaSEvents201ResponseFromJSON, BatchPublishWaaSEvents201ResponseFromJSONTyped, BatchPublishWaaSEvents201ResponseToJSON, BatchPublishWaaSEvents201ResponseToJSONTyped, BlobApiResponse, type BulkRetryWebhookDeliveriesRequest, BulkRetryWebhookDeliveriesRequestFromJSON, BulkRetryWebhookDeliveriesRequestFromJSONTyped, BulkRetryWebhookDeliveriesRequestStatusEnum, BulkRetryWebhookDeliveriesRequestToJSON, BulkRetryWebhookDeliveriesRequestToJSONTyped, type BulkUpsertAuthEmailTemplatesRequest, BulkUpsertAuthEmailTemplatesRequestFromJSON, BulkUpsertAuthEmailTemplatesRequestFromJSONTyped, BulkUpsertAuthEmailTemplatesRequestToJSON, BulkUpsertAuthEmailTemplatesRequestToJSONTyped, type BulkUpsertAuthEmailTemplatesResponse, BulkUpsertAuthEmailTemplatesResponseFromJSON, BulkUpsertAuthEmailTemplatesResponseFromJSONTyped, BulkUpsertAuthEmailTemplatesResponseToJSON, BulkUpsertAuthEmailTemplatesResponseToJSONTyped, COLLECTION_FORMATS, type Category, CategoryFromJSON, CategoryFromJSONTyped, type CategoryListResponse, CategoryListResponseFromJSON, CategoryListResponseFromJSONTyped, CategoryListResponseToJSON, CategoryListResponseToJSONTyped, type CategoryResponse, CategoryResponseFromJSON, CategoryResponseFromJSONTyped, CategoryResponseToJSON, CategoryResponseToJSONTyped, CategoryToJSON, CategoryToJSONTyped, Configuration, type ConfigurationParameters, type ConfirmEmailVerificationRequest, ConfirmEmailVerificationRequestFromJSON, ConfirmEmailVerificationRequestFromJSONTyped, ConfirmEmailVerificationRequestToJSON, ConfirmEmailVerificationRequestToJSONTyped, type ConfirmEmailVerificationResponse, type ConfirmEmailVerificationResponseData, ConfirmEmailVerificationResponseDataFromJSON, ConfirmEmailVerificationResponseDataFromJSONTyped, ConfirmEmailVerificationResponseDataToJSON, ConfirmEmailVerificationResponseDataToJSONTyped, ConfirmEmailVerificationResponseFromJSON, ConfirmEmailVerificationResponseFromJSONTyped, ConfirmEmailVerificationResponseToJSON, ConfirmEmailVerificationResponseToJSONTyped, type ConsentHistoryEntry, ConsentHistoryEntryFromJSON, ConsentHistoryEntryFromJSONTyped, ConsentHistoryEntryToJSON, ConsentHistoryEntryToJSONTyped, type ConsentHistoryResponse, ConsentHistoryResponseFromJSON, ConsentHistoryResponseFromJSONTyped, ConsentHistoryResponseToJSON, ConsentHistoryResponseToJSONTyped, type ConsentRecordResponse, type ConsentRecordResponseData, ConsentRecordResponseDataFromJSON, ConsentRecordResponseDataFromJSONTyped, ConsentRecordResponseDataToJSON, ConsentRecordResponseDataToJSONTyped, ConsentRecordResponseFromJSON, ConsentRecordResponseFromJSONTyped, ConsentRecordResponseToJSON, ConsentRecordResponseToJSONTyped, type ConsentStatus, ConsentStatusFromJSON, ConsentStatusFromJSONTyped, type ConsentStatusResponse, ConsentStatusResponseFromJSON, ConsentStatusResponseFromJSONTyped, ConsentStatusResponseToJSON, ConsentStatusResponseToJSONTyped, ConsentStatusToJSON, ConsentStatusToJSONTyped, type ConsentWithdrawResponse, ConsentWithdrawResponseFromJSON, ConsentWithdrawResponseFromJSONTyped, ConsentWithdrawResponseToJSON, ConsentWithdrawResponseToJSONTyped, type Consume, type CreateCategoryRequest, CreateCategoryRequestFromJSON, CreateCategoryRequestFromJSONTyped, CreateCategoryRequestToJSON, CreateCategoryRequestToJSONTyped, type CreateSubscriberRequest, CreateSubscriberRequestFromJSON, CreateSubscriberRequestFromJSONTyped, CreateSubscriberRequestToJSON, CreateSubscriberRequestToJSONTyped, type CreateTemplateRequest, CreateTemplateRequestFromJSON, CreateTemplateRequestFromJSONTyped, CreateTemplateRequestToJSON, CreateTemplateRequestToJSONTyped, type CreateTopicRequest, CreateTopicRequestFromJSON, CreateTopicRequestFromJSONTyped, CreateTopicRequestToJSON, CreateTopicRequestToJSONTyped, type CreateWaaSApplication201Response, CreateWaaSApplication201ResponseFromJSON, CreateWaaSApplication201ResponseFromJSONTyped, CreateWaaSApplication201ResponseToJSON, CreateWaaSApplication201ResponseToJSONTyped, type CreateWaaSApplicationRequest, CreateWaaSApplicationRequestFromJSON, CreateWaaSApplicationRequestFromJSONTyped, CreateWaaSApplicationRequestToJSON, CreateWaaSApplicationRequestToJSONTyped, type CreateWaaSEndpoint201Response, CreateWaaSEndpoint201ResponseFromJSON, CreateWaaSEndpoint201ResponseFromJSONTyped, CreateWaaSEndpoint201ResponseToJSON, CreateWaaSEndpoint201ResponseToJSONTyped, type CreateWaaSEndpointRequest, CreateWaaSEndpointRequestFromJSON, CreateWaaSEndpointRequestFromJSONTyped, CreateWaaSEndpointRequestToJSON, CreateWaaSEndpointRequestToJSONTyped, type CreateWaaSEndpointResponse, CreateWaaSEndpointResponseFromJSON, CreateWaaSEndpointResponseFromJSONTyped, CreateWaaSEndpointResponseToJSON, CreateWaaSEndpointResponseToJSONTyped, type CreateWaaSEventType201Response, CreateWaaSEventType201ResponseFromJSON, CreateWaaSEventType201ResponseFromJSONTyped, CreateWaaSEventType201ResponseToJSON, CreateWaaSEventType201ResponseToJSONTyped, type CreateWaaSEventTypeRequest, CreateWaaSEventTypeRequestFromJSON, CreateWaaSEventTypeRequestFromJSONTyped, CreateWaaSEventTypeRequestToJSON, CreateWaaSEventTypeRequestToJSONTyped, type CreateWebhookRequest, CreateWebhookRequestFromJSON, CreateWebhookRequestFromJSONTyped, CreateWebhookRequestToJSON, CreateWebhookRequestToJSONTyped, DefaultConfig, type DeleteResult, type DeleteResultData, DeleteResultDataFromJSON, DeleteResultDataFromJSONTyped, DeleteResultDataToJSON, DeleteResultDataToJSONTyped, DeleteResultFromJSON, DeleteResultFromJSONTyped, DeleteResultToJSON, DeleteResultToJSONTyped, type Device, DeviceFromJSON, DeviceFromJSONTyped, type DeviceListResponse, DeviceListResponseFromJSON, DeviceListResponseFromJSONTyped, DeviceListResponseToJSON, DeviceListResponseToJSONTyped, DevicePlatformEnum, type DevicePushTopic, DevicePushTopicFromJSON, DevicePushTopicFromJSONTyped, type DevicePushTopicListResponse, DevicePushTopicListResponseFromJSON, DevicePushTopicListResponseFromJSONTyped, type DevicePushTopicListResponseMeta, DevicePushTopicListResponseMetaFromJSON, DevicePushTopicListResponseMetaFromJSONTyped, DevicePushTopicListResponseMetaToJSON, DevicePushTopicListResponseMetaToJSONTyped, DevicePushTopicListResponseToJSON, DevicePushTopicListResponseToJSONTyped, DevicePushTopicToJSON, DevicePushTopicToJSONTyped, type DeviceResponse, DeviceResponseFromJSON, DeviceResponseFromJSONTyped, DeviceResponseToJSON, DeviceResponseToJSONTyped, type DeviceStats, DeviceStatsFromJSON, DeviceStatsFromJSONTyped, type DeviceStatsResponse, DeviceStatsResponseFromJSON, DeviceStatsResponseFromJSONTyped, DeviceStatsResponseToJSON, DeviceStatsResponseToJSONTyped, DeviceStatsToJSON, DeviceStatsToJSONTyped, DeviceToJSON, DeviceToJSONTyped, DevicesApi, type DevicesApiDeleteDeviceRequest, type DevicesApiDeleteUserDevicesRequest, type DevicesApiGetDeviceRequest, type DevicesApiInterface, type DevicesApiListDevicesRequest, type DevicesApiRegisterDeviceOperationRequest, type EmailAddress, EmailAddressFromJSON, EmailAddressFromJSONTyped, EmailAddressToJSON, EmailAddressToJSONTyped, type EmailAttachment, EmailAttachmentDispositionEnum, EmailAttachmentFromJSON, EmailAttachmentFromJSONTyped, EmailAttachmentToJSON, EmailAttachmentToJSONTyped, type EmailEvent, EmailEventFromJSON, EmailEventFromJSONTyped, EmailEventToJSON, EmailEventToJSONTyped, type EmailEventsResponse, EmailEventsResponseFromJSON, EmailEventsResponseFromJSONTyped, EmailEventsResponseToJSON, EmailEventsResponseToJSONTyped, type EmailListResponse, EmailListResponseFromJSON, EmailListResponseFromJSONTyped, EmailListResponseToJSON, EmailListResponseToJSONTyped, type EmailMessage, EmailMessageFromJSON, EmailMessageFromJSONTyped, EmailMessageStatusEnum, EmailMessageToJSON, EmailMessageToJSONTyped, type EmailResponse, EmailResponseFromJSON, EmailResponseFromJSONTyped, EmailResponseToJSON, EmailResponseToJSONTyped, type EmailTrackingClickLink, EmailTrackingClickLinkFromJSON, EmailTrackingClickLinkFromJSONTyped, EmailTrackingClickLinkToJSON, EmailTrackingClickLinkToJSONTyped, type EmailTrackingClicks, EmailTrackingClicksFromJSON, EmailTrackingClicksFromJSONTyped, EmailTrackingClicksToJSON, EmailTrackingClicksToJSONTyped, type EmailTrackingData, EmailTrackingDataFromJSON, EmailTrackingDataFromJSONTyped, EmailTrackingDataToJSON, EmailTrackingDataToJSONTyped, type EmailTrackingOpens, EmailTrackingOpensFromJSON, EmailTrackingOpensFromJSONTyped, EmailTrackingOpensToJSON, EmailTrackingOpensToJSONTyped, type EmailTrackingResponse, EmailTrackingResponseFromJSON, EmailTrackingResponseFromJSONTyped, EmailTrackingResponseToJSON, EmailTrackingResponseToJSONTyped, EmailsApi, type EmailsApiGetEmailEventsRequest, type EmailsApiGetEmailRequest, type EmailsApiGetEmailTrackingRequest, type EmailsApiInterface, type EmailsApiListEmailsRequest, type EmailsApiSendBatchEmailOperationRequest, type EmailsApiSendEmailOperationRequest, type EndUserDeleteResponse, type EndUserDeleteResponseData, EndUserDeleteResponseDataFromJSON, EndUserDeleteResponseDataFromJSONTyped, EndUserDeleteResponseDataToJSON, EndUserDeleteResponseDataToJSONTyped, EndUserDeleteResponseFromJSON, EndUserDeleteResponseFromJSONTyped, EndUserDeleteResponseToJSON, EndUserDeleteResponseToJSONTyped, type ErrorContext, type ExecutionCancelResponse, type ExecutionCancelResponseData, ExecutionCancelResponseDataFromJSON, ExecutionCancelResponseDataFromJSONTyped, ExecutionCancelResponseDataStatusEnum, ExecutionCancelResponseDataToJSON, ExecutionCancelResponseDataToJSONTyped, ExecutionCancelResponseFromJSON, ExecutionCancelResponseFromJSONTyped, ExecutionCancelResponseToJSON, ExecutionCancelResponseToJSONTyped, type ExecutionResponse, ExecutionResponseFromJSON, ExecutionResponseFromJSONTyped, ExecutionResponseToJSON, ExecutionResponseToJSONTyped, type ExecutionRetryResponse, type ExecutionRetryResponseData, ExecutionRetryResponseDataFromJSON, ExecutionRetryResponseDataFromJSONTyped, ExecutionRetryResponseDataStatusEnum, ExecutionRetryResponseDataToJSON, ExecutionRetryResponseDataToJSONTyped, ExecutionRetryResponseFromJSON, ExecutionRetryResponseFromJSONTyped, ExecutionRetryResponseToJSON, ExecutionRetryResponseToJSONTyped, ExecutionsApi, type ExecutionsApiCancelExecutionRequest, type ExecutionsApiGetExecutionRequest, type ExecutionsApiInterface, type ExecutionsApiRetryExecutionRequest, type FetchAPI, FetchError, type FetchParams, type ForgotPasswordRequest, ForgotPasswordRequestFromJSON, ForgotPasswordRequestFromJSONTyped, ForgotPasswordRequestToJSON, ForgotPasswordRequestToJSONTyped, type GenerateSubscriberToken200Response, type GenerateSubscriberToken200ResponseData, GenerateSubscriberToken200ResponseDataFromJSON, GenerateSubscriberToken200ResponseDataFromJSONTyped, GenerateSubscriberToken200ResponseDataToJSON, GenerateSubscriberToken200ResponseDataToJSONTyped, GenerateSubscriberToken200ResponseFromJSON, GenerateSubscriberToken200ResponseFromJSONTyped, GenerateSubscriberToken200ResponseToJSON, GenerateSubscriberToken200ResponseToJSONTyped, type GenerateSubscriberTokenRequest, GenerateSubscriberTokenRequestFromJSON, GenerateSubscriberTokenRequestFromJSONTyped, GenerateSubscriberTokenRequestToJSON, GenerateSubscriberTokenRequestToJSONTyped, type GenerateWaaSPortalToken201Response, GenerateWaaSPortalToken201ResponseFromJSON, GenerateWaaSPortalToken201ResponseFromJSONTyped, GenerateWaaSPortalToken201ResponseToJSON, GenerateWaaSPortalToken201ResponseToJSONTyped, type GetWaaSEndpoint200Response, GetWaaSEndpoint200ResponseFromJSON, GetWaaSEndpoint200ResponseFromJSONTyped, GetWaaSEndpoint200ResponseToJSON, GetWaaSEndpoint200ResponseToJSONTyped, type GetWaaSUsage200Response, GetWaaSUsage200ResponseFromJSON, GetWaaSUsage200ResponseFromJSONTyped, GetWaaSUsage200ResponseToJSON, GetWaaSUsage200ResponseToJSONTyped, type HTTPBody, type HTTPHeaders, type HTTPMethod, type HTTPQuery, type HTTPRequestInit, type InAppNotification, InAppNotificationFromJSON, InAppNotificationFromJSONTyped, InAppNotificationPriorityEnum, InAppNotificationToJSON, InAppNotificationToJSONTyped, InboxApi, type InboxApiArchiveInboxNotificationRequest, type InboxApiArchiveSubscriberNotificationRequest, type InboxApiDeleteInboxNotificationRequest, type InboxApiDeleteSubscriberNotificationRequest, type InboxApiGenerateSubscriberTokenOperationRequest, type InboxApiGetInboxNotificationRequest, type InboxApiGetSubscriberNotificationRequest, type InboxApiGetUnreadCountRequest, type InboxApiInterface, type InboxApiListAllInboxRequest, type InboxApiListInboxRequest, type InboxApiListSubscriberNotificationsRequest, type InboxApiMarkAllInboxReadOperationRequest, type InboxApiMarkAllSubscriberNotificationsReadOperationRequest, type InboxApiMarkInboxReadOperationRequest, type InboxApiMarkSubscriberNotificationReadRequest, type InboxApiSendBatchInAppOperationRequest, type InboxApiSendInAppOperationRequest, type InboxApiUpdateSubscriberPreferencesOperationRequest, type InboxListMeta, InboxListMetaFromJSON, InboxListMetaFromJSONTyped, InboxListMetaToJSON, InboxListMetaToJSONTyped, type InboxListResponse, InboxListResponseFromJSON, InboxListResponseFromJSONTyped, InboxListResponseToJSON, InboxListResponseToJSONTyped, type InboxNotificationResponse, InboxNotificationResponseFromJSON, InboxNotificationResponseFromJSONTyped, InboxNotificationResponseToJSON, InboxNotificationResponseToJSONTyped, type InitOverrideFunction, JSONApiResponse, type Json, ListAllInboxStatusEnum, ListDevicesPlatformEnum, ListEmailsStatusEnum, ListPushStatusEnum, ListSlackMessagesStatusEnum, ListSmsStatusEnum, ListSubscribersStatusEnum, type ListWaaSApplications200Response, ListWaaSApplications200ResponseFromJSON, ListWaaSApplications200ResponseFromJSONTyped, ListWaaSApplications200ResponseToJSON, ListWaaSApplications200ResponseToJSONTyped, ListWaaSApplicationsStatusEnum, ListWaaSDeliveriesStatusEnum, type ListWaaSEndpointDeliveries200Response, ListWaaSEndpointDeliveries200ResponseFromJSON, ListWaaSEndpointDeliveries200ResponseFromJSONTyped, ListWaaSEndpointDeliveries200ResponseToJSON, ListWaaSEndpointDeliveries200ResponseToJSONTyped, type ListWaaSEndpoints200Response, ListWaaSEndpoints200ResponseFromJSON, ListWaaSEndpoints200ResponseFromJSONTyped, ListWaaSEndpoints200ResponseToJSON, ListWaaSEndpoints200ResponseToJSONTyped, ListWaaSEndpointsStatusEnum, type ListWaaSEventTypes200Response, ListWaaSEventTypes200ResponseFromJSON, ListWaaSEventTypes200ResponseFromJSONTyped, ListWaaSEventTypes200ResponseToJSON, ListWaaSEventTypes200ResponseToJSONTyped, ListWaaSEventTypesStatusEnum, ListWebhookDeliveriesStatusEnum, type LoginRequest, LoginRequestFromJSON, LoginRequestFromJSONTyped, LoginRequestToJSON, LoginRequestToJSONTyped, type MagicLinkSendRequest, MagicLinkSendRequestFromJSON, MagicLinkSendRequestFromJSONTyped, MagicLinkSendRequestToJSON, MagicLinkSendRequestToJSONTyped, type MagicLinkVerifyRequest, MagicLinkVerifyRequestFromJSON, MagicLinkVerifyRequestFromJSONTyped, MagicLinkVerifyRequestToJSON, MagicLinkVerifyRequestToJSONTyped, type MagicLinkVerifyResponse, type MagicLinkVerifyResponseData, MagicLinkVerifyResponseDataFromJSON, MagicLinkVerifyResponseDataFromJSONTyped, MagicLinkVerifyResponseDataToJSON, MagicLinkVerifyResponseDataToJSONTyped, MagicLinkVerifyResponseFromJSON, MagicLinkVerifyResponseFromJSONTyped, MagicLinkVerifyResponseToJSON, MagicLinkVerifyResponseToJSONTyped, type MarkAllInboxReadRequest, MarkAllInboxReadRequestFromJSON, MarkAllInboxReadRequestFromJSONTyped, MarkAllInboxReadRequestToJSON, MarkAllInboxReadRequestToJSONTyped, type MarkAllReadData, MarkAllReadDataFromJSON, MarkAllReadDataFromJSONTyped, MarkAllReadDataToJSON, MarkAllReadDataToJSONTyped, type MarkAllReadResponse, MarkAllReadResponseFromJSON, MarkAllReadResponseFromJSONTyped, MarkAllReadResponseToJSON, MarkAllReadResponseToJSONTyped, type MarkAllSubscriberNotificationsReadRequest, MarkAllSubscriberNotificationsReadRequestFromJSON, MarkAllSubscriberNotificationsReadRequestFromJSONTyped, MarkAllSubscriberNotificationsReadRequestToJSON, MarkAllSubscriberNotificationsReadRequestToJSONTyped, type MarkInboxReadRequest, MarkInboxReadRequestFromJSON, MarkInboxReadRequestFromJSONTyped, MarkInboxReadRequestToJSON, MarkInboxReadRequestToJSONTyped, type MfaBackupCodesResponse, type MfaBackupCodesResponseData, MfaBackupCodesResponseDataFromJSON, MfaBackupCodesResponseDataFromJSONTyped, MfaBackupCodesResponseDataToJSON, MfaBackupCodesResponseDataToJSONTyped, MfaBackupCodesResponseFromJSON, MfaBackupCodesResponseFromJSONTyped, MfaBackupCodesResponseToJSON, MfaBackupCodesResponseToJSONTyped, type MfaDisableRequest, MfaDisableRequestFromJSON, MfaDisableRequestFromJSONTyped, MfaDisableRequestToJSON, MfaDisableRequestToJSONTyped, type MfaDisableResponse, type MfaDisableResponseData, MfaDisableResponseDataFromJSON, MfaDisableResponseDataFromJSONTyped, MfaDisableResponseDataToJSON, MfaDisableResponseDataToJSONTyped, MfaDisableResponseFromJSON, MfaDisableResponseFromJSONTyped, MfaDisableResponseToJSON, MfaDisableResponseToJSONTyped, type MfaEnrollRequest, MfaEnrollRequestFromJSON, MfaEnrollRequestFromJSONTyped, MfaEnrollRequestToJSON, MfaEnrollRequestToJSONTyped, type MfaEnrollmentResponse, type MfaEnrollmentResponseData, MfaEnrollmentResponseDataFromJSON, MfaEnrollmentResponseDataFromJSONTyped, MfaEnrollmentResponseDataToJSON, MfaEnrollmentResponseDataToJSONTyped, MfaEnrollmentResponseFromJSON, MfaEnrollmentResponseFromJSONTyped, MfaEnrollmentResponseToJSON, MfaEnrollmentResponseToJSONTyped, type MfaRegenerateBackupCodesRequest, MfaRegenerateBackupCodesRequestFromJSON, MfaRegenerateBackupCodesRequestFromJSONTyped, MfaRegenerateBackupCodesRequestToJSON, MfaRegenerateBackupCodesRequestToJSONTyped, type MfaStatusResponse, type MfaStatusResponseData, MfaStatusResponseDataFromJSON, MfaStatusResponseDataFromJSONTyped, MfaStatusResponseDataStatusEnum, MfaStatusResponseDataToJSON, MfaStatusResponseDataToJSONTyped, MfaStatusResponseFromJSON, MfaStatusResponseFromJSONTyped, MfaStatusResponseToJSON, MfaStatusResponseToJSONTyped, type MfaVerifyBackupRequest, MfaVerifyBackupRequestFromJSON, MfaVerifyBackupRequestFromJSONTyped, MfaVerifyBackupRequestToJSON, MfaVerifyBackupRequestToJSONTyped, type MfaVerifyBackupResponse, type MfaVerifyBackupResponseData, MfaVerifyBackupResponseDataFromJSON, MfaVerifyBackupResponseDataFromJSONTyped, MfaVerifyBackupResponseDataToJSON, MfaVerifyBackupResponseDataToJSONTyped, MfaVerifyBackupResponseFromJSON, MfaVerifyBackupResponseFromJSONTyped, MfaVerifyBackupResponseToJSON, MfaVerifyBackupResponseToJSONTyped, type MfaVerifyEnrollmentRequest, MfaVerifyEnrollmentRequestFromJSON, MfaVerifyEnrollmentRequestFromJSONTyped, MfaVerifyEnrollmentRequestToJSON, MfaVerifyEnrollmentRequestToJSONTyped, type MfaVerifyEnrollmentResponse, type MfaVerifyEnrollmentResponseData, MfaVerifyEnrollmentResponseDataFromJSON, MfaVerifyEnrollmentResponseDataFromJSONTyped, MfaVerifyEnrollmentResponseDataToJSON, MfaVerifyEnrollmentResponseDataToJSONTyped, MfaVerifyEnrollmentResponseFromJSON, MfaVerifyEnrollmentResponseFromJSONTyped, MfaVerifyEnrollmentResponseToJSON, MfaVerifyEnrollmentResponseToJSONTyped, type MfaVerifyRequest, MfaVerifyRequestFromJSON, MfaVerifyRequestFromJSONTyped, MfaVerifyRequestToJSON, MfaVerifyRequestToJSONTyped, type Middleware, type ModelPropertyNaming, type OAuthAuthorizationUrlResponse, type OAuthAuthorizationUrlResponseData, OAuthAuthorizationUrlResponseDataFromJSON, OAuthAuthorizationUrlResponseDataFromJSONTyped, OAuthAuthorizationUrlResponseDataToJSON, OAuthAuthorizationUrlResponseDataToJSONTyped, OAuthAuthorizationUrlResponseFromJSON, OAuthAuthorizationUrlResponseFromJSONTyped, OAuthAuthorizationUrlResponseToJSON, OAuthAuthorizationUrlResponseToJSONTyped, type OAuthCallbackRequest, OAuthCallbackRequestFromJSON, OAuthCallbackRequestFromJSONTyped, OAuthCallbackRequestToJSON, OAuthCallbackRequestToJSONTyped, type OAuthCallbackResponse, type OAuthCallbackResponseData, OAuthCallbackResponseDataFromJSON, OAuthCallbackResponseDataFromJSONTyped, OAuthCallbackResponseDataToJSON, OAuthCallbackResponseDataToJSONTyped, OAuthCallbackResponseFromJSON, OAuthCallbackResponseFromJSONTyped, OAuthCallbackResponseToJSON, OAuthCallbackResponseToJSONTyped, type OAuthConnection, OAuthConnectionFromJSON, OAuthConnectionFromJSONTyped, type OAuthConnectionInfoResponse, type OAuthConnectionInfoResponseData, OAuthConnectionInfoResponseDataFromJSON, OAuthConnectionInfoResponseDataFromJSONTyped, OAuthConnectionInfoResponseDataToJSON, OAuthConnectionInfoResponseDataToJSONTyped, OAuthConnectionInfoResponseFromJSON, OAuthConnectionInfoResponseFromJSONTyped, OAuthConnectionInfoResponseToJSON, OAuthConnectionInfoResponseToJSONTyped, OAuthConnectionToJSON, OAuthConnectionToJSONTyped, type OAuthConnectionsResponse, type OAuthConnectionsResponseData, OAuthConnectionsResponseDataFromJSON, OAuthConnectionsResponseDataFromJSONTyped, OAuthConnectionsResponseDataToJSON, OAuthConnectionsResponseDataToJSONTyped, OAuthConnectionsResponseFromJSON, OAuthConnectionsResponseFromJSONTyped, OAuthConnectionsResponseToJSON, OAuthConnectionsResponseToJSONTyped, type OAuthProvider, OAuthProviderFromJSON, OAuthProviderFromJSONTyped, type OAuthProviderInfo, OAuthProviderInfoFromJSON, OAuthProviderInfoFromJSONTyped, OAuthProviderInfoToJSON, OAuthProviderInfoToJSONTyped, OAuthProviderToJSON, OAuthProviderToJSONTyped, type OAuthProvidersResponse, type OAuthProvidersResponseData, OAuthProvidersResponseDataFromJSON, OAuthProvidersResponseDataFromJSONTyped, OAuthProvidersResponseDataToJSON, OAuthProvidersResponseDataToJSONTyped, OAuthProvidersResponseFromJSON, OAuthProvidersResponseFromJSONTyped, OAuthProvidersResponseToJSON, OAuthProvidersResponseToJSONTyped, type OAuthTokensRefreshResponse, type OAuthTokensRefreshResponseData, OAuthTokensRefreshResponseDataFromJSON, OAuthTokensRefreshResponseDataFromJSONTyped, OAuthTokensRefreshResponseDataToJSON, OAuthTokensRefreshResponseDataToJSONTyped, OAuthTokensRefreshResponseFromJSON, OAuthTokensRefreshResponseFromJSONTyped, OAuthTokensRefreshResponseToJSON, OAuthTokensRefreshResponseToJSONTyped, type OAuthTokensResponse, type OAuthTokensResponseData, OAuthTokensResponseDataFromJSON, OAuthTokensResponseDataFromJSONTyped, OAuthTokensResponseDataToJSON, OAuthTokensResponseDataToJSONTyped, OAuthTokensResponseFromJSON, OAuthTokensResponseFromJSONTyped, OAuthTokensResponseToJSON, OAuthTokensResponseToJSONTyped, type PaginationMeta, PaginationMetaFromJSON, PaginationMetaFromJSONTyped, PaginationMetaToJSON, PaginationMetaToJSONTyped, type PasswordRequirements, PasswordRequirementsFromJSON, PasswordRequirementsFromJSONTyped, type PasswordRequirementsResponse, type PasswordRequirementsResponseData, PasswordRequirementsResponseDataFromJSON, PasswordRequirementsResponseDataFromJSONTyped, PasswordRequirementsResponseDataToJSON, PasswordRequirementsResponseDataToJSONTyped, PasswordRequirementsResponseFromJSON, PasswordRequirementsResponseFromJSONTyped, PasswordRequirementsResponseToJSON, PasswordRequirementsResponseToJSONTyped, PasswordRequirementsToJSON, PasswordRequirementsToJSONTyped, type PhoneAuthAvailabilityResponse, type PhoneAuthAvailabilityResponseData, PhoneAuthAvailabilityResponseDataFromJSON, PhoneAuthAvailabilityResponseDataFromJSONTyped, PhoneAuthAvailabilityResponseDataToJSON, PhoneAuthAvailabilityResponseDataToJSONTyped, PhoneAuthAvailabilityResponseFromJSON, PhoneAuthAvailabilityResponseFromJSONTyped, PhoneAuthAvailabilityResponseToJSON, PhoneAuthAvailabilityResponseToJSONTyped, type PhoneLoginVerifyRequest, PhoneLoginVerifyRequestFromJSON, PhoneLoginVerifyRequestFromJSONTyped, PhoneLoginVerifyRequestToJSON, PhoneLoginVerifyRequestToJSONTyped, type PhoneOtpSendRequest, PhoneOtpSendRequestFromJSON, PhoneOtpSendRequestFromJSONTyped, PhoneOtpSendRequestToJSON, PhoneOtpSendRequestToJSONTyped, type PhoneOtpSentResponse, type PhoneOtpSentResponseData, PhoneOtpSentResponseDataFromJSON, PhoneOtpSentResponseDataFromJSONTyped, PhoneOtpSentResponseDataToJSON, PhoneOtpSentResponseDataToJSONTyped, PhoneOtpSentResponseFromJSON, PhoneOtpSentResponseFromJSONTyped, PhoneOtpSentResponseToJSON, PhoneOtpSentResponseToJSONTyped, type PhoneRegisterVerifyRequest, PhoneRegisterVerifyRequestFromJSON, PhoneRegisterVerifyRequestFromJSONTyped, PhoneRegisterVerifyRequestToJSON, PhoneRegisterVerifyRequestToJSONTyped, type PreferenceListResponse, PreferenceListResponseFromJSON, PreferenceListResponseFromJSONTyped, PreferenceListResponseToJSON, PreferenceListResponseToJSONTyped, type PublishWaaSEvent201Response, PublishWaaSEvent201ResponseFromJSON, PublishWaaSEvent201ResponseFromJSONTyped, PublishWaaSEvent201ResponseToJSON, PublishWaaSEvent201ResponseToJSONTyped, PushApi, type PushApiGetPushRequest, type PushApiInterface, type PushApiListDevicePushTopicsRequest, type PushApiListPushRequest, type PushApiListPushTopicDevicesRequest, type PushApiSendPushOperationRequest, type PushApiSendPushToTopicOperationRequest, type PushApiSubscribePushTopicOperationRequest, type PushApiUnsubscribePushTopicRequest, type PushDetailResponse, PushDetailResponseFromJSON, PushDetailResponseFromJSONTyped, PushDetailResponseToJSON, PushDetailResponseToJSONTyped, type PushEvent, PushEventFromJSON, PushEventFromJSONTyped, PushEventToJSON, PushEventToJSONTyped, type PushListResponse, PushListResponseFromJSON, PushListResponseFromJSONTyped, PushListResponseToJSON, PushListResponseToJSONTyped, type PushMessage, type PushMessageDetail, type PushMessageDetailAllOfActionButtons, PushMessageDetailAllOfActionButtonsFromJSON, PushMessageDetailAllOfActionButtonsFromJSONTyped, PushMessageDetailAllOfActionButtonsToJSON, PushMessageDetailAllOfActionButtonsToJSONTyped, PushMessageDetailFromJSON, PushMessageDetailFromJSONTyped, PushMessageDetailPlatformEnum, PushMessageDetailStatusEnum, PushMessageDetailToJSON, PushMessageDetailToJSONTyped, PushMessageFromJSON, PushMessageFromJSONTyped, PushMessagePlatformEnum, PushMessageStatusEnum, PushMessageToJSON, PushMessageToJSONTyped, type PushStatsData, PushStatsDataFromJSON, PushStatsDataFromJSONTyped, PushStatsDataToJSON, PushStatsDataToJSONTyped, type PushStatsResponse, PushStatsResponseFromJSON, PushStatsResponseFromJSONTyped, PushStatsResponseToJSON, PushStatsResponseToJSONTyped, type PushTopicDevice, PushTopicDeviceFromJSON, PushTopicDeviceFromJSONTyped, type PushTopicDeviceListResponse, PushTopicDeviceListResponseFromJSON, PushTopicDeviceListResponseFromJSONTyped, PushTopicDeviceListResponseToJSON, PushTopicDeviceListResponseToJSONTyped, PushTopicDevicePlatformEnum, PushTopicDeviceToJSON, PushTopicDeviceToJSONTyped, type PushTopicSubscribeData, PushTopicSubscribeDataFromJSON, PushTopicSubscribeDataFromJSONTyped, PushTopicSubscribeDataToJSON, PushTopicSubscribeDataToJSONTyped, type PushTopicSubscribeResponse, PushTopicSubscribeResponseFromJSON, PushTopicSubscribeResponseFromJSONTyped, PushTopicSubscribeResponseToJSON, PushTopicSubscribeResponseToJSONTyped, type PushTopicUnsubscribeData, PushTopicUnsubscribeDataFromJSON, PushTopicUnsubscribeDataFromJSONTyped, PushTopicUnsubscribeDataToJSON, PushTopicUnsubscribeDataToJSONTyped, type PushTopicUnsubscribeResponse, PushTopicUnsubscribeResponseFromJSON, PushTopicUnsubscribeResponseFromJSONTyped, PushTopicUnsubscribeResponseToJSON, PushTopicUnsubscribeResponseToJSONTyped, type RefreshOAuthTokensRequest, RefreshOAuthTokensRequestFromJSON, RefreshOAuthTokensRequestFromJSONTyped, RefreshOAuthTokensRequestToJSON, RefreshOAuthTokensRequestToJSONTyped, type RefreshSessionRequest, RefreshSessionRequestFromJSON, RefreshSessionRequestFromJSONTyped, RefreshSessionRequestToJSON, RefreshSessionRequestToJSONTyped, type RefreshTokenResponse, type RefreshTokenResponseData, RefreshTokenResponseDataFromJSON, RefreshTokenResponseDataFromJSONTyped, RefreshTokenResponseDataToJSON, RefreshTokenResponseDataToJSONTyped, RefreshTokenResponseFromJSON, RefreshTokenResponseFromJSONTyped, RefreshTokenResponseToJSON, RefreshTokenResponseToJSONTyped, type RegisterDeviceRequest, RegisterDeviceRequestFromJSON, RegisterDeviceRequestFromJSONTyped, RegisterDeviceRequestPlatformEnum, RegisterDeviceRequestToJSON, RegisterDeviceRequestToJSONTyped, type RegisterRequest, RegisterRequestFromJSON, RegisterRequestFromJSONTyped, RegisterRequestToJSON, RegisterRequestToJSONTyped, type RemoveTopicSubscribersRequest, RemoveTopicSubscribersRequestFromJSON, RemoveTopicSubscribersRequestFromJSONTyped, RemoveTopicSubscribersRequestToJSON, RemoveTopicSubscribersRequestToJSONTyped, type RenameWebAuthnCredentialRequest, RenameWebAuthnCredentialRequestFromJSON, RenameWebAuthnCredentialRequestFromJSONTyped, RenameWebAuthnCredentialRequestToJSON, RenameWebAuthnCredentialRequestToJSONTyped, type RenderTemplateRequest, RenderTemplateRequestFromJSON, RenderTemplateRequestFromJSONTyped, RenderTemplateRequestToJSON, RenderTemplateRequestToJSONTyped, type ReplayWebhookEventsRequest, ReplayWebhookEventsRequestFromJSON, ReplayWebhookEventsRequestFromJSONTyped, ReplayWebhookEventsRequestToJSON, ReplayWebhookEventsRequestToJSONTyped, type RequestContext, type RequestMeta, RequestMetaFromJSON, RequestMetaFromJSONTyped, RequestMetaToJSON, RequestMetaToJSONTyped, type RequestOpts, RequiredError, type ResetPasswordRequest, ResetPasswordRequestFromJSON, ResetPasswordRequestFromJSONTyped, ResetPasswordRequestToJSON, ResetPasswordRequestToJSONTyped, type ResetPasswordResponse, ResetPasswordResponseFromJSON, ResetPasswordResponseFromJSONTyped, ResetPasswordResponseToJSON, ResetPasswordResponseToJSONTyped, type ResponseContext, ResponseError, type ResponseTransformer, type ResubscribeRequest, ResubscribeRequestChannelEnum, ResubscribeRequestFromJSON, ResubscribeRequestFromJSONTyped, ResubscribeRequestToJSON, ResubscribeRequestToJSONTyped, type ResubscribeResponse, ResubscribeResponseFromJSON, ResubscribeResponseFromJSONTyped, ResubscribeResponseToJSON, ResubscribeResponseToJSONTyped, type RevokeAllSessionsResponse, type RevokeAllSessionsResponseData, RevokeAllSessionsResponseDataFromJSON, RevokeAllSessionsResponseDataFromJSONTyped, RevokeAllSessionsResponseDataToJSON, RevokeAllSessionsResponseDataToJSONTyped, RevokeAllSessionsResponseFromJSON, RevokeAllSessionsResponseFromJSONTyped, RevokeAllSessionsResponseToJSON, RevokeAllSessionsResponseToJSONTyped, type RevokeSessionRequest, RevokeSessionRequestFromJSON, RevokeSessionRequestFromJSONTyped, RevokeSessionRequestToJSON, RevokeSessionRequestToJSONTyped, SDK_VERSION, SMSApi, type SMSApiGetSmsRequest, type SMSApiInterface, type SMSApiListSmsRequest, type SMSApiSendBatchSmsOperationRequest, type SMSApiSendSmsOperationRequest, type SMSApiSendTestSmsOperationRequest, type SMSApiUpsertSmsConfigOperationRequest, type SendBatchEmailRequest, SendBatchEmailRequestFromJSON, SendBatchEmailRequestFromJSONTyped, SendBatchEmailRequestToJSON, SendBatchEmailRequestToJSONTyped, type SendBatchEmailResponse, SendBatchEmailResponseFromJSON, SendBatchEmailResponseFromJSONTyped, SendBatchEmailResponseToJSON, SendBatchEmailResponseToJSONTyped, type SendBatchEmailResult, SendBatchEmailResultFromJSON, SendBatchEmailResultFromJSONTyped, type SendBatchEmailResultItem, SendBatchEmailResultItemFromJSON, SendBatchEmailResultItemFromJSONTyped, SendBatchEmailResultItemToJSON, SendBatchEmailResultItemToJSONTyped, SendBatchEmailResultToJSON, SendBatchEmailResultToJSONTyped, type SendBatchInAppMeta, SendBatchInAppMetaFromJSON, SendBatchInAppMetaFromJSONTyped, SendBatchInAppMetaToJSON, SendBatchInAppMetaToJSONTyped, type SendBatchInAppRequest, SendBatchInAppRequestFromJSON, SendBatchInAppRequestFromJSONTyped, SendBatchInAppRequestToJSON, SendBatchInAppRequestToJSONTyped, type SendBatchInAppResponse, SendBatchInAppResponseFromJSON, SendBatchInAppResponseFromJSONTyped, SendBatchInAppResponseToJSON, SendBatchInAppResponseToJSONTyped, type SendBatchSmsData, SendBatchSmsDataFromJSON, SendBatchSmsDataFromJSONTyped, SendBatchSmsDataToJSON, SendBatchSmsDataToJSONTyped, type SendBatchSmsRequest, SendBatchSmsRequestFromJSON, SendBatchSmsRequestFromJSONTyped, SendBatchSmsRequestToJSON, SendBatchSmsRequestToJSONTyped, type SendBatchSmsResponse, SendBatchSmsResponseFromJSON, SendBatchSmsResponseFromJSONTyped, SendBatchSmsResponseToJSON, SendBatchSmsResponseToJSONTyped, type SendEmailRequest, SendEmailRequestFromJSON, SendEmailRequestFromJSONTyped, SendEmailRequestToJSON, SendEmailRequestToJSONTyped, type SendEmailResponse, type SendEmailResponseData, SendEmailResponseDataFromJSON, SendEmailResponseDataFromJSONTyped, SendEmailResponseDataStatusEnum, SendEmailResponseDataToJSON, SendEmailResponseDataToJSONTyped, SendEmailResponseFromJSON, SendEmailResponseFromJSONTyped, type SendEmailResponseMeta, SendEmailResponseMetaFromJSON, SendEmailResponseMetaFromJSONTyped, SendEmailResponseMetaToJSON, SendEmailResponseMetaToJSONTyped, SendEmailResponseToJSON, SendEmailResponseToJSONTyped, type SendEmailVerificationRequest, SendEmailVerificationRequestFromJSON, SendEmailVerificationRequestFromJSONTyped, SendEmailVerificationRequestToJSON, SendEmailVerificationRequestToJSONTyped, type SendInAppMeta, SendInAppMetaFromJSON, SendInAppMetaFromJSONTyped, SendInAppMetaToJSON, SendInAppMetaToJSONTyped, type SendInAppRequest, SendInAppRequestFromJSON, SendInAppRequestFromJSONTyped, SendInAppRequestPriorityEnum, SendInAppRequestToJSON, SendInAppRequestToJSONTyped, type SendInAppResponse, SendInAppResponseFromJSON, SendInAppResponseFromJSONTyped, SendInAppResponseToJSON, SendInAppResponseToJSONTyped, type SendPushRequest, type SendPushRequestActionButtonsInner, SendPushRequestActionButtonsInnerFromJSON, SendPushRequestActionButtonsInnerFromJSONTyped, SendPushRequestActionButtonsInnerToJSON, SendPushRequestActionButtonsInnerToJSONTyped, SendPushRequestFromJSON, SendPushRequestFromJSONTyped, SendPushRequestToJSON, SendPushRequestToJSONTyped, type SendPushResponse, type SendPushResponseData, SendPushResponseDataFromJSON, SendPushResponseDataFromJSONTyped, SendPushResponseDataToJSON, SendPushResponseDataToJSONTyped, SendPushResponseFromJSON, SendPushResponseFromJSONTyped, SendPushResponseToJSON, SendPushResponseToJSONTyped, type SendPushToTopicData, SendPushToTopicDataFromJSON, SendPushToTopicDataFromJSONTyped, SendPushToTopicDataToJSON, SendPushToTopicDataToJSONTyped, type SendPushToTopicRequest, SendPushToTopicRequestFromJSON, SendPushToTopicRequestFromJSONTyped, SendPushToTopicRequestToJSON, SendPushToTopicRequestToJSONTyped, type SendPushToTopicResponse, SendPushToTopicResponseFromJSON, SendPushToTopicResponseFromJSONTyped, SendPushToTopicResponseToJSON, SendPushToTopicResponseToJSONTyped, type SendSlackMessageRequest, SendSlackMessageRequestFromJSON, SendSlackMessageRequestFromJSONTyped, SendSlackMessageRequestToJSON, SendSlackMessageRequestToJSONTyped, type SendSlackMessageResponse, SendSlackMessageResponseFromJSON, SendSlackMessageResponseFromJSONTyped, SendSlackMessageResponseToJSON, SendSlackMessageResponseToJSONTyped, type SendSlackMessageResult, SendSlackMessageResultFromJSON, SendSlackMessageResultFromJSONTyped, SendSlackMessageResultToJSON, SendSlackMessageResultToJSONTyped, type SendSmsData, SendSmsDataFromJSON, SendSmsDataFromJSONTyped, SendSmsDataToJSON, SendSmsDataToJSONTyped, type SendSmsRequest, SendSmsRequestFromJSON, SendSmsRequestFromJSONTyped, SendSmsRequestToJSON, SendSmsRequestToJSONTyped, type SendSmsResponse, SendSmsResponseFromJSON, SendSmsResponseFromJSONTyped, SendSmsResponseToJSON, SendSmsResponseToJSONTyped, type SendTestSmsData, SendTestSmsDataFromJSON, SendTestSmsDataFromJSONTyped, SendTestSmsDataToJSON, SendTestSmsDataToJSONTyped, type SendTestSmsRequest, SendTestSmsRequestFromJSON, SendTestSmsRequestFromJSONTyped, SendTestSmsRequestToJSON, SendTestSmsRequestToJSONTyped, type SendTestSmsResponse, SendTestSmsResponseFromJSON, SendTestSmsResponseFromJSONTyped, SendTestSmsResponseToJSON, SendTestSmsResponseToJSONTyped, type SendWebhookTestEventRequest, SendWebhookTestEventRequestFromJSON, SendWebhookTestEventRequestFromJSONTyped, SendWebhookTestEventRequestToJSON, SendWebhookTestEventRequestToJSONTyped, type SessionListResponse, type SessionListResponseData, SessionListResponseDataFromJSON, SessionListResponseDataFromJSONTyped, type SessionListResponseDataSessionInfo, SessionListResponseDataSessionInfoFromJSON, SessionListResponseDataSessionInfoFromJSONTyped, SessionListResponseDataSessionInfoToJSON, SessionListResponseDataSessionInfoToJSONTyped, SessionListResponseDataToJSON, SessionListResponseDataToJSONTyped, SessionListResponseFromJSON, SessionListResponseFromJSONTyped, SessionListResponseToJSON, SessionListResponseToJSONTyped, type SetPreferencesRequest, SetPreferencesRequestFromJSON, SetPreferencesRequestFromJSONTyped, type SetPreferencesRequestPreferencesInner, SetPreferencesRequestPreferencesInnerFromJSON, SetPreferencesRequestPreferencesInnerFromJSONTyped, SetPreferencesRequestPreferencesInnerToJSON, SetPreferencesRequestPreferencesInnerToJSONTyped, SetPreferencesRequestToJSON, SetPreferencesRequestToJSONTyped, SlackApi, type SlackApiGetSlackMessageRequest, type SlackApiInterface, type SlackApiListSlackMessagesRequest, type SlackApiSendSlackMessageOperationRequest, type SlackMessage, SlackMessageFromJSON, SlackMessageFromJSONTyped, type SlackMessageListResponse, SlackMessageListResponseFromJSON, SlackMessageListResponseFromJSONTyped, type SlackMessageListResponseMeta, SlackMessageListResponseMetaFromJSON, SlackMessageListResponseMetaFromJSONTyped, SlackMessageListResponseMetaToJSON, SlackMessageListResponseMetaToJSONTyped, SlackMessageListResponseToJSON, SlackMessageListResponseToJSONTyped, type SlackMessageResponse, SlackMessageResponseFromJSON, SlackMessageResponseFromJSONTyped, SlackMessageResponseToJSON, SlackMessageResponseToJSONTyped, SlackMessageStatus, SlackMessageStatusFromJSON, SlackMessageStatusFromJSONTyped, SlackMessageStatusToJSON, SlackMessageStatusToJSONTyped, type SlackMessageSummary, SlackMessageSummaryFromJSON, SlackMessageSummaryFromJSONTyped, SlackMessageSummaryToJSON, SlackMessageSummaryToJSONTyped, SlackMessageToJSON, SlackMessageToJSONTyped, type SmsBatchResultMessage, SmsBatchResultMessageFromJSON, SmsBatchResultMessageFromJSONTyped, SmsBatchResultMessageToJSON, SmsBatchResultMessageToJSONTyped, type SmsBatchResultSummary, SmsBatchResultSummaryFromJSON, SmsBatchResultSummaryFromJSONTyped, SmsBatchResultSummaryToJSON, SmsBatchResultSummaryToJSONTyped, type SmsConfig, type SmsConfigDeleteResponse, type SmsConfigDeleteResponseData, SmsConfigDeleteResponseDataFromJSON, SmsConfigDeleteResponseDataFromJSONTyped, SmsConfigDeleteResponseDataToJSON, SmsConfigDeleteResponseDataToJSONTyped, SmsConfigDeleteResponseFromJSON, SmsConfigDeleteResponseFromJSONTyped, SmsConfigDeleteResponseToJSON, SmsConfigDeleteResponseToJSONTyped, SmsConfigFromJSON, SmsConfigFromJSONTyped, type SmsConfigResponse, SmsConfigResponseFromJSON, SmsConfigResponseFromJSONTyped, SmsConfigResponseToJSON, SmsConfigResponseToJSONTyped, SmsConfigToJSON, SmsConfigToJSONTyped, type SmsDetailResponse, SmsDetailResponseFromJSON, SmsDetailResponseFromJSONTyped, SmsDetailResponseToJSON, SmsDetailResponseToJSONTyped, type SmsListResponse, SmsListResponseFromJSON, SmsListResponseFromJSONTyped, type SmsListResponseMeta, SmsListResponseMetaFromJSON, SmsListResponseMetaFromJSONTyped, SmsListResponseMetaToJSON, SmsListResponseMetaToJSONTyped, SmsListResponseToJSON, SmsListResponseToJSONTyped, type SmsMessage, type SmsMessageDetail, SmsMessageDetailFromJSON, SmsMessageDetailFromJSONTyped, SmsMessageDetailStatusEnum, SmsMessageDetailToJSON, SmsMessageDetailToJSONTyped, SmsMessageFromJSON, SmsMessageFromJSONTyped, SmsMessageStatusEnum, SmsMessageToJSON, SmsMessageToJSONTyped, type SubscribePushTopicRequest, SubscribePushTopicRequestFromJSON, SubscribePushTopicRequestFromJSONTyped, SubscribePushTopicRequestToJSON, SubscribePushTopicRequestToJSONTyped, type Subscriber, SubscriberFromJSON, SubscriberFromJSONTyped, type SubscriberListResponse, SubscriberListResponseFromJSON, SubscriberListResponseFromJSONTyped, SubscriberListResponseToJSON, SubscriberListResponseToJSONTyped, type SubscriberPreference, SubscriberPreferenceChannelEnum, SubscriberPreferenceFromJSON, SubscriberPreferenceFromJSONTyped, SubscriberPreferenceToJSON, SubscriberPreferenceToJSONTyped, type SubscriberResponse, SubscriberResponseFromJSON, SubscriberResponseFromJSONTyped, SubscriberResponseToJSON, SubscriberResponseToJSONTyped, SubscriberStatusEnum, SubscriberToJSON, SubscriberToJSONTyped, SubscribersApi, type SubscribersApiCreateCategoryOperationRequest, type SubscribersApiCreateSubscriberOperationRequest, type SubscribersApiDeleteCategoryRequest, type SubscribersApiDeleteSubscriberRequest, type SubscribersApiGetCategoryRequest, type SubscribersApiGetSubscriberByExternalIdRequest, type SubscribersApiGetSubscriberConsentHistoryRequest, type SubscribersApiGetSubscriberConsentRequest, type SubscribersApiGetSubscriberPreferencesRequest, type SubscribersApiGetSubscriberRequest, type SubscribersApiGetSubscriberUnsubscribesRequest, type SubscribersApiInterface, type SubscribersApiListSubscribersRequest, type SubscribersApiRecordSubscriberConsentRequest, type SubscribersApiResubscribeSubscriberRequest, type SubscribersApiSetSubscriberPreferencesRequest, type SubscribersApiUnsubscribeSubscriberRequest, type SubscribersApiUpdateCategoryOperationRequest, type SubscribersApiUpdateSubscriberOperationRequest, type SubscribersApiWithdrawSubscriberConsentOperationRequest, type SuccessResult, SuccessResultFromJSON, SuccessResultFromJSONTyped, SuccessResultToJSON, SuccessResultToJSONTyped, type Template, TemplateFromJSON, TemplateFromJSONTyped, type TemplateListResponse, TemplateListResponseFromJSON, TemplateListResponseFromJSONTyped, TemplateListResponseToJSON, TemplateListResponseToJSONTyped, type TemplateRenderResponse, TemplateRenderResponseFromJSON, TemplateRenderResponseFromJSONTyped, TemplateRenderResponseToJSON, TemplateRenderResponseToJSONTyped, type TemplateRenderedContent, TemplateRenderedContentFromJSON, TemplateRenderedContentFromJSONTyped, TemplateRenderedContentToJSON, TemplateRenderedContentToJSONTyped, type TemplateResponse, TemplateResponseFromJSON, TemplateResponseFromJSONTyped, TemplateResponseToJSON, TemplateResponseToJSONTyped, TemplateToJSON, TemplateToJSONTyped, TemplatesApi, type TemplatesApiCreateTemplateOperationRequest, type TemplatesApiDeleteTemplateRequest, type TemplatesApiGetTemplateRequest, type TemplatesApiInterface, type TemplatesApiListTemplatesRequest, type TemplatesApiRenderTemplateOperationRequest, type TemplatesApiUpdateTemplateOperationRequest, type TestWebhookTransformRequest, TestWebhookTransformRequestFromJSON, TestWebhookTransformRequestFromJSONTyped, TestWebhookTransformRequestToJSON, TestWebhookTransformRequestToJSONTyped, TextApiResponse, type Topic, type TopicDeleteResponse, type TopicDeleteResponseData, TopicDeleteResponseDataFromJSON, TopicDeleteResponseDataFromJSONTyped, TopicDeleteResponseDataToJSON, TopicDeleteResponseDataToJSONTyped, TopicDeleteResponseFromJSON, TopicDeleteResponseFromJSONTyped, TopicDeleteResponseToJSON, TopicDeleteResponseToJSONTyped, TopicFromJSON, TopicFromJSONTyped, type TopicListResponse, TopicListResponseFromJSON, TopicListResponseFromJSONTyped, TopicListResponseToJSON, TopicListResponseToJSONTyped, type TopicResponse, TopicResponseFromJSON, TopicResponseFromJSONTyped, TopicResponseToJSON, TopicResponseToJSONTyped, type TopicStatsData, TopicStatsDataFromJSON, TopicStatsDataFromJSONTyped, TopicStatsDataToJSON, TopicStatsDataToJSONTyped, type TopicStatsDataTopicsBySubscriberCountInner, TopicStatsDataTopicsBySubscriberCountInnerFromJSON, TopicStatsDataTopicsBySubscriberCountInnerFromJSONTyped, TopicStatsDataTopicsBySubscriberCountInnerToJSON, TopicStatsDataTopicsBySubscriberCountInnerToJSONTyped, type TopicStatsResponse, TopicStatsResponseFromJSON, TopicStatsResponseFromJSONTyped, TopicStatsResponseToJSON, TopicStatsResponseToJSONTyped, type TopicSubscriber, TopicSubscriberFromJSON, TopicSubscriberFromJSONTyped, type TopicSubscriberListResponse, TopicSubscriberListResponseFromJSON, TopicSubscriberListResponseFromJSONTyped, TopicSubscriberListResponseToJSON, TopicSubscriberListResponseToJSONTyped, TopicSubscriberToJSON, TopicSubscriberToJSONTyped, type TopicSubscribersAddResponse, TopicSubscribersAddResponseFromJSON, TopicSubscribersAddResponseFromJSONTyped, TopicSubscribersAddResponseToJSON, TopicSubscribersAddResponseToJSONTyped, type TopicSubscribersAddResult, TopicSubscribersAddResultFromJSON, TopicSubscribersAddResultFromJSONTyped, TopicSubscribersAddResultToJSON, TopicSubscribersAddResultToJSONTyped, type TopicSubscribersRemoveResponse, TopicSubscribersRemoveResponseFromJSON, TopicSubscribersRemoveResponseFromJSONTyped, TopicSubscribersRemoveResponseToJSON, TopicSubscribersRemoveResponseToJSONTyped, type TopicSubscribersRemoveResult, TopicSubscribersRemoveResultFromJSON, TopicSubscribersRemoveResultFromJSONTyped, TopicSubscribersRemoveResultToJSON, TopicSubscribersRemoveResultToJSONTyped, TopicToJSON, TopicToJSONTyped, TopicsApi, type TopicsApiAddTopicSubscribersOperationRequest, type TopicsApiCreateTopicOperationRequest, type TopicsApiDeleteTopicRequest, type TopicsApiGetTopicRequest, type TopicsApiInterface, type TopicsApiListTopicSubscribersRequest, type TopicsApiListTopicsRequest, type TopicsApiRemoveTopicSubscribersOperationRequest, type TopicsApiUpdateTopicOperationRequest, type UnreadCountData, UnreadCountDataFromJSON, UnreadCountDataFromJSONTyped, UnreadCountDataToJSON, UnreadCountDataToJSONTyped, type UnreadCountResponse, UnreadCountResponseFromJSON, UnreadCountResponseFromJSONTyped, UnreadCountResponseToJSON, UnreadCountResponseToJSONTyped, type Unsubscribe, UnsubscribeChannelEnum, UnsubscribeFromJSON, UnsubscribeFromJSONTyped, type UnsubscribeListResponse, UnsubscribeListResponseFromJSON, UnsubscribeListResponseFromJSONTyped, UnsubscribeListResponseToJSON, UnsubscribeListResponseToJSONTyped, type UnsubscribeRequest, UnsubscribeRequestChannelEnum, UnsubscribeRequestFromJSON, UnsubscribeRequestFromJSONTyped, UnsubscribeRequestToJSON, UnsubscribeRequestToJSONTyped, type UnsubscribeResponse, UnsubscribeResponseFromJSON, UnsubscribeResponseFromJSONTyped, UnsubscribeResponseToJSON, UnsubscribeResponseToJSONTyped, UnsubscribeToJSON, UnsubscribeToJSONTyped, type UpdateCategoryRequest, UpdateCategoryRequestFromJSON, UpdateCategoryRequestFromJSONTyped, UpdateCategoryRequestToJSON, UpdateCategoryRequestToJSONTyped, type UpdateEndUserRequest, UpdateEndUserRequestFromJSON, UpdateEndUserRequestFromJSONTyped, UpdateEndUserRequestToJSON, UpdateEndUserRequestToJSONTyped, type UpdateSubscriberPreferencesRequest, UpdateSubscriberPreferencesRequestFromJSON, UpdateSubscriberPreferencesRequestFromJSONTyped, type UpdateSubscriberPreferencesRequestPreferencesInner, UpdateSubscriberPreferencesRequestPreferencesInnerChannelEnum, UpdateSubscriberPreferencesRequestPreferencesInnerFromJSON, UpdateSubscriberPreferencesRequestPreferencesInnerFromJSONTyped, UpdateSubscriberPreferencesRequestPreferencesInnerToJSON, UpdateSubscriberPreferencesRequestPreferencesInnerToJSONTyped, UpdateSubscriberPreferencesRequestToJSON, UpdateSubscriberPreferencesRequestToJSONTyped, type UpdateSubscriberRequest, UpdateSubscriberRequestFromJSON, UpdateSubscriberRequestFromJSONTyped, UpdateSubscriberRequestStatusEnum, UpdateSubscriberRequestToJSON, UpdateSubscriberRequestToJSONTyped, type UpdateTemplateRequest, UpdateTemplateRequestFromJSON, UpdateTemplateRequestFromJSONTyped, UpdateTemplateRequestToJSON, UpdateTemplateRequestToJSONTyped, type UpdateTopicRequest, UpdateTopicRequestFromJSON, UpdateTopicRequestFromJSONTyped, UpdateTopicRequestToJSON, UpdateTopicRequestToJSONTyped, type UpdateWaaSApplicationRequest, UpdateWaaSApplicationRequestFromJSON, UpdateWaaSApplicationRequestFromJSONTyped, UpdateWaaSApplicationRequestStatusEnum, UpdateWaaSApplicationRequestToJSON, UpdateWaaSApplicationRequestToJSONTyped, type UpdateWaaSEndpointRequest, UpdateWaaSEndpointRequestFromJSON, UpdateWaaSEndpointRequestFromJSONTyped, UpdateWaaSEndpointRequestStatusEnum, UpdateWaaSEndpointRequestToJSON, UpdateWaaSEndpointRequestToJSONTyped, type UpdateWaaSEventTypeRequest, UpdateWaaSEventTypeRequestFromJSON, UpdateWaaSEventTypeRequestFromJSONTyped, UpdateWaaSEventTypeRequestToJSON, UpdateWaaSEventTypeRequestToJSONTyped, type UpdateWebhookRequest, UpdateWebhookRequestFromJSON, UpdateWebhookRequestFromJSONTyped, UpdateWebhookRequestToJSON, UpdateWebhookRequestToJSONTyped, type UpsertAuthEmailTemplateRequest, UpsertAuthEmailTemplateRequestEditorTypeEnum, UpsertAuthEmailTemplateRequestFromJSON, UpsertAuthEmailTemplateRequestFromJSONTyped, UpsertAuthEmailTemplateRequestToJSON, UpsertAuthEmailTemplateRequestToJSONTyped, type UpsertSmsConfigRequest, UpsertSmsConfigRequestFromJSON, UpsertSmsConfigRequestFromJSONTyped, UpsertSmsConfigRequestToJSON, UpsertSmsConfigRequestToJSONTyped, type UserDevicesDeleteResponse, type UserDevicesDeleteResponseData, UserDevicesDeleteResponseDataFromJSON, UserDevicesDeleteResponseDataFromJSONTyped, UserDevicesDeleteResponseDataToJSON, UserDevicesDeleteResponseDataToJSONTyped, UserDevicesDeleteResponseFromJSON, UserDevicesDeleteResponseFromJSONTyped, UserDevicesDeleteResponseToJSON, UserDevicesDeleteResponseToJSONTyped, UtilityApi, type UtilityApiInterface, type ValidateResetTokenRequest, ValidateResetTokenRequestFromJSON, ValidateResetTokenRequestFromJSONTyped, ValidateResetTokenRequestToJSON, ValidateResetTokenRequestToJSONTyped, type ValidateResetTokenResponse, type ValidateResetTokenResponseData, ValidateResetTokenResponseDataFromJSON, ValidateResetTokenResponseDataFromJSONTyped, ValidateResetTokenResponseDataToJSON, ValidateResetTokenResponseDataToJSONTyped, ValidateResetTokenResponseFromJSON, ValidateResetTokenResponseFromJSONTyped, ValidateResetTokenResponseToJSON, ValidateResetTokenResponseToJSONTyped, type VerifySmsConfigData, VerifySmsConfigDataFromJSON, VerifySmsConfigDataFromJSONTyped, VerifySmsConfigDataToJSON, VerifySmsConfigDataToJSONTyped, type VerifySmsConfigResponse, VerifySmsConfigResponseFromJSON, VerifySmsConfigResponseFromJSONTyped, VerifySmsConfigResponseToJSON, VerifySmsConfigResponseToJSONTyped, VoidApiResponse, type WaaSApplication, WaaSApplicationFromJSON, WaaSApplicationFromJSONTyped, WaaSApplicationStatusEnum, WaaSApplicationToJSON, WaaSApplicationToJSONTyped, WaaSApplicationsApi, type WaaSApplicationsApiCreateWaaSApplicationOperationRequest, type WaaSApplicationsApiDeleteWaaSApplicationRequest, type WaaSApplicationsApiGetWaaSApplicationRequest, type WaaSApplicationsApiGetWaaSUsageRequest, type WaaSApplicationsApiInterface, type WaaSApplicationsApiListWaaSApplicationsRequest, type WaaSApplicationsApiUpdateWaaSApplicationOperationRequest, type WaaSBatchPublishRequest, WaaSBatchPublishRequestFromJSON, WaaSBatchPublishRequestFromJSONTyped, WaaSBatchPublishRequestToJSON, WaaSBatchPublishRequestToJSONTyped, type WaaSBatchPublishResponse, WaaSBatchPublishResponseFromJSON, WaaSBatchPublishResponseFromJSONTyped, WaaSBatchPublishResponseToJSON, WaaSBatchPublishResponseToJSONTyped, WaaSDeliveriesApi, type WaaSDeliveriesApiGetWaaSDeliveryRequest, type WaaSDeliveriesApiInterface, type WaaSDeliveriesApiListWaaSDeliveriesRequest, type WaaSDeliveriesApiListWaaSEndpointDeliveriesRequest, type WaaSDeliveriesApiRetryWaaSDeliveryRequest, type WaaSDelivery, WaaSDeliveryFromJSON, WaaSDeliveryFromJSONTyped, WaaSDeliveryStatusEnum, WaaSDeliveryToJSON, WaaSDeliveryToJSONTyped, type WaaSEndpoint, WaaSEndpointFromJSON, WaaSEndpointFromJSONTyped, WaaSEndpointStatusEnum, WaaSEndpointToJSON, WaaSEndpointToJSONTyped, WaaSEndpointsApi, type WaaSEndpointsApiCloseWaaSEndpointCircuitRequest, type WaaSEndpointsApiCreateWaaSEndpointOperationRequest, type WaaSEndpointsApiDeleteWaaSEndpointRequest, type WaaSEndpointsApiGetWaaSEndpointCircuitRequest, type WaaSEndpointsApiGetWaaSEndpointMetricsRequest, type WaaSEndpointsApiGetWaaSEndpointRequest, type WaaSEndpointsApiInterface, type WaaSEndpointsApiListWaaSEndpointsRequest, type WaaSEndpointsApiRotateWaaSEndpointSecretRequest, type WaaSEndpointsApiUpdateWaaSEndpointOperationRequest, type WaaSEventType, WaaSEventTypeFromJSON, WaaSEventTypeFromJSONTyped, WaaSEventTypeStatusEnum, WaaSEventTypeToJSON, WaaSEventTypeToJSONTyped, WaaSEventTypesApi, type WaaSEventTypesApiCreateWaaSEventTypeOperationRequest, type WaaSEventTypesApiDeleteWaaSEventTypeRequest, type WaaSEventTypesApiDeprecateWaaSEventTypeRequest, type WaaSEventTypesApiGetWaaSEventTypeRequest, type WaaSEventTypesApiInterface, type WaaSEventTypesApiListWaaSEventTypesRequest, type WaaSEventTypesApiUpdateWaaSEventTypeOperationRequest, WaaSEventsApi, type WaaSEventsApiBatchPublishWaaSEventsRequest, type WaaSEventsApiInterface, type WaaSEventsApiPublishWaaSEventRequest, WaaSPortalApi, type WaaSPortalApiGenerateWaaSPortalTokenRequest, type WaaSPortalApiInterface, type WaaSPortalTokenRequest, WaaSPortalTokenRequestFromJSON, WaaSPortalTokenRequestFromJSONTyped, type WaaSPortalTokenRequestTheme, WaaSPortalTokenRequestThemeFromJSON, WaaSPortalTokenRequestThemeFromJSONTyped, WaaSPortalTokenRequestThemeModeEnum, WaaSPortalTokenRequestThemeToJSON, WaaSPortalTokenRequestThemeToJSONTyped, WaaSPortalTokenRequestToJSON, WaaSPortalTokenRequestToJSONTyped, type WaaSPortalTokenResponse, WaaSPortalTokenResponseFromJSON, WaaSPortalTokenResponseFromJSONTyped, WaaSPortalTokenResponseToJSON, WaaSPortalTokenResponseToJSONTyped, type WaaSPublishEventRequest, WaaSPublishEventRequestFromJSON, WaaSPublishEventRequestFromJSONTyped, WaaSPublishEventRequestToJSON, WaaSPublishEventRequestToJSONTyped, type WaaSPublishEventResponse, WaaSPublishEventResponseFromJSON, WaaSPublishEventResponseFromJSONTyped, WaaSPublishEventResponseToJSON, WaaSPublishEventResponseToJSONTyped, type WaaSUsageResponse, WaaSUsageResponseFromJSON, WaaSUsageResponseFromJSONTyped, WaaSUsageResponseToJSON, WaaSUsageResponseToJSONTyped, type WebAuthnChallengeOptions, WebAuthnChallengeOptionsFromJSON, WebAuthnChallengeOptionsFromJSONTyped, WebAuthnChallengeOptionsToJSON, WebAuthnChallengeOptionsToJSONTyped, type WebAuthnCredential, WebAuthnCredentialFromJSON, WebAuthnCredentialFromJSONTyped, type WebAuthnCredentialListResponse, type WebAuthnCredentialListResponseData, WebAuthnCredentialListResponseDataFromJSON, WebAuthnCredentialListResponseDataFromJSONTyped, WebAuthnCredentialListResponseDataToJSON, WebAuthnCredentialListResponseDataToJSONTyped, WebAuthnCredentialListResponseFromJSON, WebAuthnCredentialListResponseFromJSONTyped, WebAuthnCredentialListResponseToJSON, WebAuthnCredentialListResponseToJSONTyped, type WebAuthnCredentialResponse, WebAuthnCredentialResponseFromJSON, WebAuthnCredentialResponseFromJSONTyped, WebAuthnCredentialResponseToJSON, WebAuthnCredentialResponseToJSONTyped, WebAuthnCredentialToJSON, WebAuthnCredentialToJSONTyped, type WebAuthnStartAuthRequest, WebAuthnStartAuthRequestFromJSON, WebAuthnStartAuthRequestFromJSONTyped, WebAuthnStartAuthRequestToJSON, WebAuthnStartAuthRequestToJSONTyped, type WebAuthnStartAuthResponse, WebAuthnStartAuthResponseFromJSON, WebAuthnStartAuthResponseFromJSONTyped, WebAuthnStartAuthResponseToJSON, WebAuthnStartAuthResponseToJSONTyped, type WebAuthnStartRegistrationRequest, WebAuthnStartRegistrationRequestFromJSON, WebAuthnStartRegistrationRequestFromJSONTyped, WebAuthnStartRegistrationRequestToJSON, WebAuthnStartRegistrationRequestToJSONTyped, type WebAuthnStartRegistrationResponse, WebAuthnStartRegistrationResponseFromJSON, WebAuthnStartRegistrationResponseFromJSONTyped, WebAuthnStartRegistrationResponseToJSON, WebAuthnStartRegistrationResponseToJSONTyped, type WebAuthnStatusResponse, type WebAuthnStatusResponseData, WebAuthnStatusResponseDataFromJSON, WebAuthnStatusResponseDataFromJSONTyped, WebAuthnStatusResponseDataToJSON, WebAuthnStatusResponseDataToJSONTyped, WebAuthnStatusResponseFromJSON, WebAuthnStatusResponseFromJSONTyped, WebAuthnStatusResponseToJSON, WebAuthnStatusResponseToJSONTyped, type WebAuthnVerifyAuthRequest, WebAuthnVerifyAuthRequestFromJSON, WebAuthnVerifyAuthRequestFromJSONTyped, WebAuthnVerifyAuthRequestToJSON, WebAuthnVerifyAuthRequestToJSONTyped, type WebAuthnVerifyRegistrationRequest, WebAuthnVerifyRegistrationRequestFromJSON, WebAuthnVerifyRegistrationRequestFromJSONTyped, WebAuthnVerifyRegistrationRequestToJSON, WebAuthnVerifyRegistrationRequestToJSONTyped, type WebAuthnVerifyRegistrationResponse, type WebAuthnVerifyRegistrationResponseData, WebAuthnVerifyRegistrationResponseDataFromJSON, WebAuthnVerifyRegistrationResponseDataFromJSONTyped, WebAuthnVerifyRegistrationResponseDataToJSON, WebAuthnVerifyRegistrationResponseDataToJSONTyped, WebAuthnVerifyRegistrationResponseFromJSON, WebAuthnVerifyRegistrationResponseFromJSONTyped, WebAuthnVerifyRegistrationResponseToJSON, WebAuthnVerifyRegistrationResponseToJSONTyped, type Webhook, type WebhookAccountMetricsResponse, WebhookAccountMetricsResponseFromJSON, WebhookAccountMetricsResponseFromJSONTyped, WebhookAccountMetricsResponseToJSON, WebhookAccountMetricsResponseToJSONTyped, type WebhookBulkRetryResponse, WebhookBulkRetryResponseFromJSON, WebhookBulkRetryResponseFromJSONTyped, WebhookBulkRetryResponseToJSON, WebhookBulkRetryResponseToJSONTyped, type WebhookCircuitState, WebhookCircuitStateFromJSON, WebhookCircuitStateFromJSONTyped, type WebhookCircuitStateResponse, WebhookCircuitStateResponseFromJSON, WebhookCircuitStateResponseFromJSONTyped, WebhookCircuitStateResponseToJSON, WebhookCircuitStateResponseToJSONTyped, WebhookCircuitStateStateEnum, WebhookCircuitStateToJSON, WebhookCircuitStateToJSONTyped, type WebhookCreateResponse, type WebhookCreateResponseData, WebhookCreateResponseDataFromJSON, WebhookCreateResponseDataFromJSONTyped, WebhookCreateResponseDataStatusEnum, WebhookCreateResponseDataToJSON, WebhookCreateResponseDataToJSONTyped, WebhookCreateResponseFromJSON, WebhookCreateResponseFromJSONTyped, WebhookCreateResponseToJSON, WebhookCreateResponseToJSONTyped, type WebhookDeleteResponse, type WebhookDeleteResponseData, WebhookDeleteResponseDataFromJSON, WebhookDeleteResponseDataFromJSONTyped, WebhookDeleteResponseDataToJSON, WebhookDeleteResponseDataToJSONTyped, WebhookDeleteResponseFromJSON, WebhookDeleteResponseFromJSONTyped, WebhookDeleteResponseToJSON, WebhookDeleteResponseToJSONTyped, type WebhookDelivery, type WebhookDeliveryDetail, WebhookDeliveryDetailFromJSON, WebhookDeliveryDetailFromJSONTyped, WebhookDeliveryDetailStatusEnum, WebhookDeliveryDetailToJSON, WebhookDeliveryDetailToJSONTyped, WebhookDeliveryFromJSON, WebhookDeliveryFromJSONTyped, type WebhookDeliveryListResponse, WebhookDeliveryListResponseFromJSON, WebhookDeliveryListResponseFromJSONTyped, WebhookDeliveryListResponseToJSON, WebhookDeliveryListResponseToJSONTyped, type WebhookDeliveryResponse, WebhookDeliveryResponseFromJSON, WebhookDeliveryResponseFromJSONTyped, WebhookDeliveryResponseToJSON, WebhookDeliveryResponseToJSONTyped, type WebhookDeliveryRetryResponse, type WebhookDeliveryRetryResponseData, WebhookDeliveryRetryResponseDataFromJSON, WebhookDeliveryRetryResponseDataFromJSONTyped, WebhookDeliveryRetryResponseDataToJSON, WebhookDeliveryRetryResponseDataToJSONTyped, WebhookDeliveryRetryResponseFromJSON, WebhookDeliveryRetryResponseFromJSONTyped, WebhookDeliveryRetryResponseToJSON, WebhookDeliveryRetryResponseToJSONTyped, WebhookDeliveryStatusEnum, WebhookDeliveryToJSON, WebhookDeliveryToJSONTyped, type WebhookEventTypesResponse, type WebhookEventTypesResponseData, WebhookEventTypesResponseDataFromJSON, WebhookEventTypesResponseDataFromJSONTyped, WebhookEventTypesResponseDataToJSON, WebhookEventTypesResponseDataToJSONTyped, WebhookEventTypesResponseFromJSON, WebhookEventTypesResponseFromJSONTyped, WebhookEventTypesResponseToJSON, WebhookEventTypesResponseToJSONTyped, WebhookFromJSON, WebhookFromJSONTyped, type WebhookIpsResponse, type WebhookIpsResponseData, WebhookIpsResponseDataFromJSON, WebhookIpsResponseDataFromJSONTyped, WebhookIpsResponseDataToJSON, WebhookIpsResponseDataToJSONTyped, WebhookIpsResponseFromJSON, WebhookIpsResponseFromJSONTyped, WebhookIpsResponseToJSON, WebhookIpsResponseToJSONTyped, type WebhookJobResponse, WebhookJobResponseFromJSON, WebhookJobResponseFromJSONTyped, WebhookJobResponseToJSON, WebhookJobResponseToJSONTyped, type WebhookListResponse, WebhookListResponseFromJSON, WebhookListResponseFromJSONTyped, WebhookListResponseToJSON, WebhookListResponseToJSONTyped, type WebhookMetricsResponse, WebhookMetricsResponseFromJSON, WebhookMetricsResponseFromJSONTyped, WebhookMetricsResponseToJSON, WebhookMetricsResponseToJSONTyped, type WebhookRegion, WebhookRegionFromJSON, WebhookRegionFromJSONTyped, WebhookRegionToJSON, WebhookRegionToJSONTyped, type WebhookRegionsResponse, type WebhookRegionsResponseData, WebhookRegionsResponseDataFromJSON, WebhookRegionsResponseDataFromJSONTyped, WebhookRegionsResponseDataToJSON, WebhookRegionsResponseDataToJSONTyped, WebhookRegionsResponseFromJSON, WebhookRegionsResponseFromJSONTyped, WebhookRegionsResponseToJSON, WebhookRegionsResponseToJSONTyped, type WebhookReplayResponse, WebhookReplayResponseFromJSON, WebhookReplayResponseFromJSONTyped, WebhookReplayResponseToJSON, WebhookReplayResponseToJSONTyped, type WebhookResponse, WebhookResponseFromJSON, WebhookResponseFromJSONTyped, WebhookResponseToJSON, WebhookResponseToJSONTyped, type WebhookSecretRotateResponse, type WebhookSecretRotateResponseData, WebhookSecretRotateResponseDataFromJSON, WebhookSecretRotateResponseDataFromJSONTyped, WebhookSecretRotateResponseDataToJSON, WebhookSecretRotateResponseDataToJSONTyped, WebhookSecretRotateResponseFromJSON, WebhookSecretRotateResponseFromJSONTyped, WebhookSecretRotateResponseToJSON, WebhookSecretRotateResponseToJSONTyped, WebhookStatusEnum, type WebhookTestEventResponse, type WebhookTestEventResponseData, WebhookTestEventResponseDataFromJSON, WebhookTestEventResponseDataFromJSONTyped, WebhookTestEventResponseDataToJSON, WebhookTestEventResponseDataToJSONTyped, WebhookTestEventResponseFromJSON, WebhookTestEventResponseFromJSONTyped, WebhookTestEventResponseToJSON, WebhookTestEventResponseToJSONTyped, WebhookToJSON, WebhookToJSONTyped, type WebhookTransformTestResponse, WebhookTransformTestResponseFromJSON, WebhookTransformTestResponseFromJSONTyped, WebhookTransformTestResponseToJSON, WebhookTransformTestResponseToJSONTyped, type WebhookUsageResponse, WebhookUsageResponseFromJSON, WebhookUsageResponseFromJSONTyped, WebhookUsageResponseToJSON, WebhookUsageResponseToJSONTyped, type WebhookVersion, WebhookVersionFromJSON, WebhookVersionFromJSONTyped, WebhookVersionToJSON, WebhookVersionToJSONTyped, type WebhookVersionsResponse, type WebhookVersionsResponseData, WebhookVersionsResponseDataFromJSON, WebhookVersionsResponseDataFromJSONTyped, WebhookVersionsResponseDataToJSON, WebhookVersionsResponseDataToJSONTyped, WebhookVersionsResponseFromJSON, WebhookVersionsResponseFromJSONTyped, WebhookVersionsResponseToJSON, WebhookVersionsResponseToJSONTyped, WebhooksApi, type WebhooksApiBulkRetryWebhookDeliveriesOperationRequest, type WebhooksApiCloseWebhookCircuitRequest, type WebhooksApiCreateWebhookOperationRequest, type WebhooksApiDeleteWebhookRequest, type WebhooksApiGetWebhookCircuitStateRequest, type WebhooksApiGetWebhookDeliveryRequest, type WebhooksApiGetWebhookJobRequest, type WebhooksApiGetWebhookMetricsRequest, type WebhooksApiGetWebhookRequest, type WebhooksApiInterface, type WebhooksApiListWebhookDeliveriesRequest, type WebhooksApiListWebhookEventTypesRequest, type WebhooksApiListWebhooksRequest, type WebhooksApiReplayWebhookEventsOperationRequest, type WebhooksApiRetryWebhookDeliveryRequest, type WebhooksApiRotateWebhookSecretRequest, type WebhooksApiSendWebhookTestEventOperationRequest, type WebhooksApiTestWebhookTransformOperationRequest, type WebhooksApiUpdateWebhookOperationRequest, type WithdrawSubscriberConsentRequest, WithdrawSubscriberConsentRequestFromJSON, WithdrawSubscriberConsentRequestFromJSONTyped, WithdrawSubscriberConsentRequestToJSON, WithdrawSubscriberConsentRequestToJSONTyped, type WorkflowExecution, WorkflowExecutionFromJSON, WorkflowExecutionFromJSONTyped, WorkflowExecutionStatus, WorkflowExecutionStatusFromJSON, WorkflowExecutionStatusFromJSONTyped, WorkflowExecutionStatusToJSON, WorkflowExecutionStatusToJSONTyped, WorkflowExecutionToJSON, WorkflowExecutionToJSONTyped, type WorkflowStepExecution, WorkflowStepExecutionFromJSON, WorkflowStepExecutionFromJSONTyped, WorkflowStepExecutionStatus, WorkflowStepExecutionStatusFromJSON, WorkflowStepExecutionStatusFromJSONTyped, WorkflowStepExecutionStatusToJSON, WorkflowStepExecutionStatusToJSONTyped, WorkflowStepExecutionStepTypeEnum, WorkflowStepExecutionToJSON, WorkflowStepExecutionToJSONTyped, Zyphr, ZyphrAuthenticationError, ZyphrError, type ZyphrErrorOptions, ZyphrNotFoundError, type ZyphrOptions, ZyphrRateLimitError, ZyphrValidationError, canConsumeForm, exists, instanceOfAddTopicSubscribersRequest, instanceOfApiError, instanceOfApiErrorError, instanceOfApiErrorMeta, instanceOfAuthEmailTemplate, instanceOfAuthEmailTemplateDefault, instanceOfAuthEmailTemplateDefaultResponse, instanceOfAuthEmailTemplateDeleteResponse, instanceOfAuthEmailTemplateDeleteResponseData, instanceOfAuthEmailTemplateListResponse, instanceOfAuthEmailTemplatePreviewDraft, instanceOfAuthEmailTemplatePreviewRequest, instanceOfAuthEmailTemplatePreviewResponse, instanceOfAuthEmailTemplatePreviewResult, instanceOfAuthEmailTemplateResponse, instanceOfAuthEmailTemplateTestRequest, instanceOfAuthEmailTemplateTestResponse, instanceOfAuthEmailTemplateTestResult, instanceOfAuthEmailTemplateVersion, instanceOfAuthEmailTemplateVersionsResponse, instanceOfAuthEmailType, instanceOfAuthLoginResponse, instanceOfAuthLoginResult, instanceOfAuthLoginResultMfaChallenge, instanceOfAuthResult, instanceOfAuthResultResponse, instanceOfAuthSession, instanceOfAuthTokens, instanceOfAuthUser, instanceOfAuthUserResponse, instanceOfAuthUserResponseData, instanceOfBatchPublishWaaSEvents201Response, instanceOfBulkRetryWebhookDeliveriesRequest, instanceOfBulkUpsertAuthEmailTemplatesRequest, instanceOfBulkUpsertAuthEmailTemplatesResponse, instanceOfCategory, instanceOfCategoryListResponse, instanceOfCategoryResponse, instanceOfConfirmEmailVerificationRequest, instanceOfConfirmEmailVerificationResponse, instanceOfConfirmEmailVerificationResponseData, instanceOfConsentHistoryEntry, instanceOfConsentHistoryResponse, instanceOfConsentRecordResponse, instanceOfConsentRecordResponseData, instanceOfConsentStatus, instanceOfConsentStatusResponse, instanceOfConsentWithdrawResponse, instanceOfCreateCategoryRequest, instanceOfCreateSubscriberRequest, instanceOfCreateTemplateRequest, instanceOfCreateTopicRequest, instanceOfCreateWaaSApplication201Response, instanceOfCreateWaaSApplicationRequest, instanceOfCreateWaaSEndpoint201Response, instanceOfCreateWaaSEndpointRequest, instanceOfCreateWaaSEndpointResponse, instanceOfCreateWaaSEventType201Response, instanceOfCreateWaaSEventTypeRequest, instanceOfCreateWebhookRequest, instanceOfDeleteResult, instanceOfDeleteResultData, instanceOfDevice, instanceOfDeviceListResponse, instanceOfDevicePushTopic, instanceOfDevicePushTopicListResponse, instanceOfDevicePushTopicListResponseMeta, instanceOfDeviceResponse, instanceOfDeviceStats, instanceOfDeviceStatsResponse, instanceOfEmailAddress, instanceOfEmailAttachment, instanceOfEmailEvent, instanceOfEmailEventsResponse, instanceOfEmailListResponse, instanceOfEmailMessage, instanceOfEmailResponse, instanceOfEmailTrackingClickLink, instanceOfEmailTrackingClicks, instanceOfEmailTrackingData, instanceOfEmailTrackingOpens, instanceOfEmailTrackingResponse, instanceOfEndUserDeleteResponse, instanceOfEndUserDeleteResponseData, instanceOfExecutionCancelResponse, instanceOfExecutionCancelResponseData, instanceOfExecutionResponse, instanceOfExecutionRetryResponse, instanceOfExecutionRetryResponseData, instanceOfForgotPasswordRequest, instanceOfGenerateSubscriberToken200Response, instanceOfGenerateSubscriberToken200ResponseData, instanceOfGenerateSubscriberTokenRequest, instanceOfGenerateWaaSPortalToken201Response, instanceOfGetWaaSEndpoint200Response, instanceOfGetWaaSUsage200Response, instanceOfInAppNotification, instanceOfInboxListMeta, instanceOfInboxListResponse, instanceOfInboxNotificationResponse, instanceOfListWaaSApplications200Response, instanceOfListWaaSEndpointDeliveries200Response, instanceOfListWaaSEndpoints200Response, instanceOfListWaaSEventTypes200Response, instanceOfLoginRequest, instanceOfMagicLinkSendRequest, instanceOfMagicLinkVerifyRequest, instanceOfMagicLinkVerifyResponse, instanceOfMagicLinkVerifyResponseData, instanceOfMarkAllInboxReadRequest, instanceOfMarkAllReadData, instanceOfMarkAllReadResponse, instanceOfMarkAllSubscriberNotificationsReadRequest, instanceOfMarkInboxReadRequest, instanceOfMfaBackupCodesResponse, instanceOfMfaBackupCodesResponseData, instanceOfMfaDisableRequest, instanceOfMfaDisableResponse, instanceOfMfaDisableResponseData, instanceOfMfaEnrollRequest, instanceOfMfaEnrollmentResponse, instanceOfMfaEnrollmentResponseData, instanceOfMfaRegenerateBackupCodesRequest, instanceOfMfaStatusResponse, instanceOfMfaStatusResponseData, instanceOfMfaVerifyBackupRequest, instanceOfMfaVerifyBackupResponse, instanceOfMfaVerifyBackupResponseData, instanceOfMfaVerifyEnrollmentRequest, instanceOfMfaVerifyEnrollmentResponse, instanceOfMfaVerifyEnrollmentResponseData, instanceOfMfaVerifyRequest, instanceOfOAuthAuthorizationUrlResponse, instanceOfOAuthAuthorizationUrlResponseData, instanceOfOAuthCallbackRequest, instanceOfOAuthCallbackResponse, instanceOfOAuthCallbackResponseData, instanceOfOAuthConnection, instanceOfOAuthConnectionInfoResponse, instanceOfOAuthConnectionInfoResponseData, instanceOfOAuthConnectionsResponse, instanceOfOAuthConnectionsResponseData, instanceOfOAuthProvider, instanceOfOAuthProviderInfo, instanceOfOAuthProvidersResponse, instanceOfOAuthProvidersResponseData, instanceOfOAuthTokensRefreshResponse, instanceOfOAuthTokensRefreshResponseData, instanceOfOAuthTokensResponse, instanceOfOAuthTokensResponseData, instanceOfPaginationMeta, instanceOfPasswordRequirements, instanceOfPasswordRequirementsResponse, instanceOfPasswordRequirementsResponseData, instanceOfPhoneAuthAvailabilityResponse, instanceOfPhoneAuthAvailabilityResponseData, instanceOfPhoneLoginVerifyRequest, instanceOfPhoneOtpSendRequest, instanceOfPhoneOtpSentResponse, instanceOfPhoneOtpSentResponseData, instanceOfPhoneRegisterVerifyRequest, instanceOfPreferenceListResponse, instanceOfPublishWaaSEvent201Response, instanceOfPushDetailResponse, instanceOfPushEvent, instanceOfPushListResponse, instanceOfPushMessage, instanceOfPushMessageDetail, instanceOfPushMessageDetailAllOfActionButtons, instanceOfPushStatsData, instanceOfPushStatsResponse, instanceOfPushTopicDevice, instanceOfPushTopicDeviceListResponse, instanceOfPushTopicSubscribeData, instanceOfPushTopicSubscribeResponse, instanceOfPushTopicUnsubscribeData, instanceOfPushTopicUnsubscribeResponse, instanceOfRefreshOAuthTokensRequest, instanceOfRefreshSessionRequest, instanceOfRefreshTokenResponse, instanceOfRefreshTokenResponseData, instanceOfRegisterDeviceRequest, instanceOfRegisterRequest, instanceOfRemoveTopicSubscribersRequest, instanceOfRenameWebAuthnCredentialRequest, instanceOfRenderTemplateRequest, instanceOfReplayWebhookEventsRequest, instanceOfRequestMeta, instanceOfResetPasswordRequest, instanceOfResetPasswordResponse, instanceOfResubscribeRequest, instanceOfResubscribeResponse, instanceOfRevokeAllSessionsResponse, instanceOfRevokeAllSessionsResponseData, instanceOfRevokeSessionRequest, instanceOfSendBatchEmailRequest, instanceOfSendBatchEmailResponse, instanceOfSendBatchEmailResult, instanceOfSendBatchEmailResultItem, instanceOfSendBatchInAppMeta, instanceOfSendBatchInAppRequest, instanceOfSendBatchInAppResponse, instanceOfSendBatchSmsData, instanceOfSendBatchSmsRequest, instanceOfSendBatchSmsResponse, instanceOfSendEmailRequest, instanceOfSendEmailResponse, instanceOfSendEmailResponseData, instanceOfSendEmailResponseMeta, instanceOfSendEmailVerificationRequest, instanceOfSendInAppMeta, instanceOfSendInAppRequest, instanceOfSendInAppResponse, instanceOfSendPushRequest, instanceOfSendPushRequestActionButtonsInner, instanceOfSendPushResponse, instanceOfSendPushResponseData, instanceOfSendPushToTopicData, instanceOfSendPushToTopicRequest, instanceOfSendPushToTopicResponse, instanceOfSendSlackMessageRequest, instanceOfSendSlackMessageResponse, instanceOfSendSlackMessageResult, instanceOfSendSmsData, instanceOfSendSmsRequest, instanceOfSendSmsResponse, instanceOfSendTestSmsData, instanceOfSendTestSmsRequest, instanceOfSendTestSmsResponse, instanceOfSendWebhookTestEventRequest, instanceOfSessionListResponse, instanceOfSessionListResponseData, instanceOfSessionListResponseDataSessionInfo, instanceOfSetPreferencesRequest, instanceOfSetPreferencesRequestPreferencesInner, instanceOfSlackMessage, instanceOfSlackMessageListResponse, instanceOfSlackMessageListResponseMeta, instanceOfSlackMessageResponse, instanceOfSlackMessageStatus, instanceOfSlackMessageSummary, instanceOfSmsBatchResultMessage, instanceOfSmsBatchResultSummary, instanceOfSmsConfig, instanceOfSmsConfigDeleteResponse, instanceOfSmsConfigDeleteResponseData, instanceOfSmsConfigResponse, instanceOfSmsDetailResponse, instanceOfSmsListResponse, instanceOfSmsListResponseMeta, instanceOfSmsMessage, instanceOfSmsMessageDetail, instanceOfSubscribePushTopicRequest, instanceOfSubscriber, instanceOfSubscriberListResponse, instanceOfSubscriberPreference, instanceOfSubscriberResponse, instanceOfSuccessResult, instanceOfTemplate, instanceOfTemplateListResponse, instanceOfTemplateRenderResponse, instanceOfTemplateRenderedContent, instanceOfTemplateResponse, instanceOfTestWebhookTransformRequest, instanceOfTopic, instanceOfTopicDeleteResponse, instanceOfTopicDeleteResponseData, instanceOfTopicListResponse, instanceOfTopicResponse, instanceOfTopicStatsData, instanceOfTopicStatsDataTopicsBySubscriberCountInner, instanceOfTopicStatsResponse, instanceOfTopicSubscriber, instanceOfTopicSubscriberListResponse, instanceOfTopicSubscribersAddResponse, instanceOfTopicSubscribersAddResult, instanceOfTopicSubscribersRemoveResponse, instanceOfTopicSubscribersRemoveResult, instanceOfUnreadCountData, instanceOfUnreadCountResponse, instanceOfUnsubscribe, instanceOfUnsubscribeListResponse, instanceOfUnsubscribeRequest, instanceOfUnsubscribeResponse, instanceOfUpdateCategoryRequest, instanceOfUpdateEndUserRequest, instanceOfUpdateSubscriberPreferencesRequest, instanceOfUpdateSubscriberPreferencesRequestPreferencesInner, instanceOfUpdateSubscriberRequest, instanceOfUpdateTemplateRequest, instanceOfUpdateTopicRequest, instanceOfUpdateWaaSApplicationRequest, instanceOfUpdateWaaSEndpointRequest, instanceOfUpdateWaaSEventTypeRequest, instanceOfUpdateWebhookRequest, instanceOfUpsertAuthEmailTemplateRequest, instanceOfUpsertSmsConfigRequest, instanceOfUserDevicesDeleteResponse, instanceOfUserDevicesDeleteResponseData, instanceOfValidateResetTokenRequest, instanceOfValidateResetTokenResponse, instanceOfValidateResetTokenResponseData, instanceOfVerifySmsConfigData, instanceOfVerifySmsConfigResponse, instanceOfWaaSApplication, instanceOfWaaSBatchPublishRequest, instanceOfWaaSBatchPublishResponse, instanceOfWaaSDelivery, instanceOfWaaSEndpoint, instanceOfWaaSEventType, instanceOfWaaSPortalTokenRequest, instanceOfWaaSPortalTokenRequestTheme, instanceOfWaaSPortalTokenResponse, instanceOfWaaSPublishEventRequest, instanceOfWaaSPublishEventResponse, instanceOfWaaSUsageResponse, instanceOfWebAuthnChallengeOptions, instanceOfWebAuthnCredential, instanceOfWebAuthnCredentialListResponse, instanceOfWebAuthnCredentialListResponseData, instanceOfWebAuthnCredentialResponse, instanceOfWebAuthnStartAuthRequest, instanceOfWebAuthnStartAuthResponse, instanceOfWebAuthnStartRegistrationRequest, instanceOfWebAuthnStartRegistrationResponse, instanceOfWebAuthnStatusResponse, instanceOfWebAuthnStatusResponseData, instanceOfWebAuthnVerifyAuthRequest, instanceOfWebAuthnVerifyRegistrationRequest, instanceOfWebAuthnVerifyRegistrationResponse, instanceOfWebAuthnVerifyRegistrationResponseData, instanceOfWebhook, instanceOfWebhookAccountMetricsResponse, instanceOfWebhookBulkRetryResponse, instanceOfWebhookCircuitState, instanceOfWebhookCircuitStateResponse, instanceOfWebhookCreateResponse, instanceOfWebhookCreateResponseData, instanceOfWebhookDeleteResponse, instanceOfWebhookDeleteResponseData, instanceOfWebhookDelivery, instanceOfWebhookDeliveryDetail, instanceOfWebhookDeliveryListResponse, instanceOfWebhookDeliveryResponse, instanceOfWebhookDeliveryRetryResponse, instanceOfWebhookDeliveryRetryResponseData, instanceOfWebhookEventTypesResponse, instanceOfWebhookEventTypesResponseData, instanceOfWebhookIpsResponse, instanceOfWebhookIpsResponseData, instanceOfWebhookJobResponse, instanceOfWebhookListResponse, instanceOfWebhookMetricsResponse, instanceOfWebhookRegion, instanceOfWebhookRegionsResponse, instanceOfWebhookRegionsResponseData, instanceOfWebhookReplayResponse, instanceOfWebhookResponse, instanceOfWebhookSecretRotateResponse, instanceOfWebhookSecretRotateResponseData, instanceOfWebhookTestEventResponse, instanceOfWebhookTestEventResponseData, instanceOfWebhookTransformTestResponse, instanceOfWebhookUsageResponse, instanceOfWebhookVersion, instanceOfWebhookVersionsResponse, instanceOfWebhookVersionsResponseData, instanceOfWithdrawSubscriberConsentRequest, instanceOfWorkflowExecution, instanceOfWorkflowExecutionStatus, instanceOfWorkflowStepExecution, instanceOfWorkflowStepExecutionStatus, mapValues, parseErrorResponse, querystring };
|
|
25395
|
+
export { type AddTopicSubscribersRequest, AddTopicSubscribersRequestFromJSON, AddTopicSubscribersRequestFromJSONTyped, AddTopicSubscribersRequestToJSON, AddTopicSubscribersRequestToJSONTyped, type ApiError, type ApiErrorError, ApiErrorErrorFromJSON, ApiErrorErrorFromJSONTyped, ApiErrorErrorToJSON, ApiErrorErrorToJSONTyped, ApiErrorFromJSON, ApiErrorFromJSONTyped, type ApiErrorMeta, ApiErrorMetaFromJSON, ApiErrorMetaFromJSONTyped, ApiErrorMetaToJSON, ApiErrorMetaToJSONTyped, ApiErrorToJSON, ApiErrorToJSONTyped, type ApiResponse, type AuthEmailTemplate, type AuthEmailTemplateDefault, AuthEmailTemplateDefaultFromJSON, AuthEmailTemplateDefaultFromJSONTyped, type AuthEmailTemplateDefaultResponse, AuthEmailTemplateDefaultResponseFromJSON, AuthEmailTemplateDefaultResponseFromJSONTyped, AuthEmailTemplateDefaultResponseToJSON, AuthEmailTemplateDefaultResponseToJSONTyped, AuthEmailTemplateDefaultToJSON, AuthEmailTemplateDefaultToJSONTyped, type AuthEmailTemplateDeleteResponse, type AuthEmailTemplateDeleteResponseData, AuthEmailTemplateDeleteResponseDataFromJSON, AuthEmailTemplateDeleteResponseDataFromJSONTyped, AuthEmailTemplateDeleteResponseDataToJSON, AuthEmailTemplateDeleteResponseDataToJSONTyped, AuthEmailTemplateDeleteResponseFromJSON, AuthEmailTemplateDeleteResponseFromJSONTyped, AuthEmailTemplateDeleteResponseToJSON, AuthEmailTemplateDeleteResponseToJSONTyped, AuthEmailTemplateEditorTypeEnum, AuthEmailTemplateFromJSON, AuthEmailTemplateFromJSONTyped, type AuthEmailTemplateListResponse, AuthEmailTemplateListResponseFromJSON, AuthEmailTemplateListResponseFromJSONTyped, AuthEmailTemplateListResponseToJSON, AuthEmailTemplateListResponseToJSONTyped, type AuthEmailTemplatePreviewDraft, AuthEmailTemplatePreviewDraftFromJSON, AuthEmailTemplatePreviewDraftFromJSONTyped, AuthEmailTemplatePreviewDraftToJSON, AuthEmailTemplatePreviewDraftToJSONTyped, type AuthEmailTemplatePreviewRequest, AuthEmailTemplatePreviewRequestFromJSON, AuthEmailTemplatePreviewRequestFromJSONTyped, AuthEmailTemplatePreviewRequestToJSON, AuthEmailTemplatePreviewRequestToJSONTyped, type AuthEmailTemplatePreviewResponse, AuthEmailTemplatePreviewResponseFromJSON, AuthEmailTemplatePreviewResponseFromJSONTyped, AuthEmailTemplatePreviewResponseToJSON, AuthEmailTemplatePreviewResponseToJSONTyped, type AuthEmailTemplatePreviewResult, AuthEmailTemplatePreviewResultFromJSON, AuthEmailTemplatePreviewResultFromJSONTyped, AuthEmailTemplatePreviewResultToJSON, AuthEmailTemplatePreviewResultToJSONTyped, type AuthEmailTemplateResponse, AuthEmailTemplateResponseFromJSON, AuthEmailTemplateResponseFromJSONTyped, AuthEmailTemplateResponseToJSON, AuthEmailTemplateResponseToJSONTyped, type AuthEmailTemplateTestRequest, AuthEmailTemplateTestRequestFromJSON, AuthEmailTemplateTestRequestFromJSONTyped, AuthEmailTemplateTestRequestToJSON, AuthEmailTemplateTestRequestToJSONTyped, type AuthEmailTemplateTestResponse, AuthEmailTemplateTestResponseFromJSON, AuthEmailTemplateTestResponseFromJSONTyped, AuthEmailTemplateTestResponseToJSON, AuthEmailTemplateTestResponseToJSONTyped, type AuthEmailTemplateTestResult, AuthEmailTemplateTestResultFromJSON, AuthEmailTemplateTestResultFromJSONTyped, AuthEmailTemplateTestResultToJSON, AuthEmailTemplateTestResultToJSONTyped, AuthEmailTemplateToJSON, AuthEmailTemplateToJSONTyped, type AuthEmailTemplateVersion, AuthEmailTemplateVersionEditorTypeEnum, AuthEmailTemplateVersionFromJSON, AuthEmailTemplateVersionFromJSONTyped, AuthEmailTemplateVersionToJSON, AuthEmailTemplateVersionToJSONTyped, type AuthEmailTemplateVersionsResponse, AuthEmailTemplateVersionsResponseFromJSON, AuthEmailTemplateVersionsResponseFromJSONTyped, AuthEmailTemplateVersionsResponseToJSON, AuthEmailTemplateVersionsResponseToJSONTyped, AuthEmailTemplatesApi, type AuthEmailTemplatesApiBulkUpsertAuthEmailTemplatesOperationRequest, type AuthEmailTemplatesApiDeleteAuthEmailTemplateRequest, type AuthEmailTemplatesApiGetAuthEmailTemplateDefaultRequest, type AuthEmailTemplatesApiGetAuthEmailTemplateRequest, type AuthEmailTemplatesApiInterface, type AuthEmailTemplatesApiListAuthEmailTemplateVersionsRequest, type AuthEmailTemplatesApiPreviewAuthEmailTemplateRequest, type AuthEmailTemplatesApiRestoreAuthEmailTemplateVersionRequest, type AuthEmailTemplatesApiSendAuthEmailTemplateTestRequest, type AuthEmailTemplatesApiUpsertAuthEmailTemplateOperationRequest, AuthEmailType, AuthEmailTypeFromJSON, AuthEmailTypeFromJSONTyped, AuthEmailTypeToJSON, AuthEmailTypeToJSONTyped, AuthEmailVerificationApi, type AuthEmailVerificationApiConfirmEmailVerificationOperationRequest, type AuthEmailVerificationApiInterface, type AuthEmailVerificationApiResendEmailVerificationRequest, type AuthEmailVerificationApiSendEmailVerificationOperationRequest, AuthLoginApi, type AuthLoginApiInterface, type AuthLoginApiLoginEndUserRequest, type AuthLoginResponse, AuthLoginResponseFromJSON, AuthLoginResponseFromJSONTyped, AuthLoginResponseToJSON, AuthLoginResponseToJSONTyped, type AuthLoginResult, AuthLoginResultFromJSON, AuthLoginResultFromJSONTyped, type AuthLoginResultMfaChallenge, AuthLoginResultMfaChallengeFromJSON, AuthLoginResultMfaChallengeFromJSONTyped, AuthLoginResultMfaChallengeToJSON, AuthLoginResultMfaChallengeToJSONTyped, AuthLoginResultToJSON, AuthLoginResultToJSONTyped, AuthMFAApi, type AuthMFAApiDisableMfaRequest, type AuthMFAApiGetMfaStatusRequest, type AuthMFAApiInterface, type AuthMFAApiRegenerateBackupCodesRequest, type AuthMFAApiStartMfaEnrollmentRequest, type AuthMFAApiVerifyMfaChallengeRequest, type AuthMFAApiVerifyMfaChallengeWithBackupCodeRequest, type AuthMFAApiVerifyMfaEnrollmentRequest, AuthMagicLinksApi, type AuthMagicLinksApiInterface, type AuthMagicLinksApiSendMagicLinkRequest, type AuthMagicLinksApiVerifyMagicLinkRequest, AuthOAuthApi, type AuthOAuthApiDisconnectOAuthProviderRequest, type AuthOAuthApiGetOAuthAuthorizationUrlRequest, type AuthOAuthApiGetOAuthConnectionInfoRequest, type AuthOAuthApiGetOAuthTokensRequest, type AuthOAuthApiHandleOAuthCallbackRequest, type AuthOAuthApiInterface, type AuthOAuthApiRefreshOAuthTokensOperationRequest, AuthPasswordResetApi, type AuthPasswordResetApiForgotPasswordOperationRequest, type AuthPasswordResetApiInterface, type AuthPasswordResetApiResetEndUserPasswordRequest, type AuthPasswordResetApiValidateResetTokenOperationRequest, AuthPhoneApi, type AuthPhoneApiInterface, type AuthPhoneApiSendPhoneLoginOtpRequest, type AuthPhoneApiSendPhoneRegistrationOtpRequest, type AuthPhoneApiVerifyPhoneLoginRequest, type AuthPhoneApiVerifyPhoneRegistrationRequest, AuthRegistrationApi, type AuthRegistrationApiInterface, type AuthRegistrationApiRegisterEndUserRequest, type AuthResult, AuthResultFromJSON, AuthResultFromJSONTyped, type AuthResultResponse, AuthResultResponseFromJSON, AuthResultResponseFromJSONTyped, AuthResultResponseToJSON, AuthResultResponseToJSONTyped, AuthResultToJSON, AuthResultToJSONTyped, type AuthSession, AuthSessionFromJSON, AuthSessionFromJSONTyped, AuthSessionToJSON, AuthSessionToJSONTyped, AuthSessionsApi, type AuthSessionsApiInterface, type AuthSessionsApiRefreshEndUserTokenRequest, type AuthSessionsApiRevokeEndUserSessionRequest, type AuthTokens, AuthTokensFromJSON, AuthTokensFromJSONTyped, AuthTokensToJSON, AuthTokensToJSONTyped, type AuthUser, AuthUserFromJSON, AuthUserFromJSONTyped, AuthUserProfileApi, type AuthUserProfileApiInterface, type AuthUserProfileApiUpdateEndUserOperationRequest, type AuthUserResponse, type AuthUserResponseData, AuthUserResponseDataFromJSON, AuthUserResponseDataFromJSONTyped, AuthUserResponseDataToJSON, AuthUserResponseDataToJSONTyped, AuthUserResponseFromJSON, AuthUserResponseFromJSONTyped, AuthUserResponseToJSON, AuthUserResponseToJSONTyped, AuthUserStatusEnum, AuthUserToJSON, AuthUserToJSONTyped, AuthWebAuthnApi, type AuthWebAuthnApiDeleteWebAuthnCredentialRequest, type AuthWebAuthnApiInterface, type AuthWebAuthnApiRenameWebAuthnCredentialOperationRequest, type AuthWebAuthnApiStartWebAuthnAuthenticationRequest, type AuthWebAuthnApiStartWebAuthnRegistrationRequest, type AuthWebAuthnApiVerifyWebAuthnAuthenticationRequest, type AuthWebAuthnApiVerifyWebAuthnRegistrationRequest, BASE_PATH, BaseAPI, type BatchPublishWaaSEvents201Response, BatchPublishWaaSEvents201ResponseFromJSON, BatchPublishWaaSEvents201ResponseFromJSONTyped, BatchPublishWaaSEvents201ResponseToJSON, BatchPublishWaaSEvents201ResponseToJSONTyped, type BatchRecipient, BatchRecipientFromJSON, BatchRecipientFromJSONTyped, BatchRecipientToJSON, BatchRecipientToJSONTyped, BlobApiResponse, type BulkRetryWebhookDeliveriesRequest, BulkRetryWebhookDeliveriesRequestFromJSON, BulkRetryWebhookDeliveriesRequestFromJSONTyped, BulkRetryWebhookDeliveriesRequestStatusEnum, BulkRetryWebhookDeliveriesRequestToJSON, BulkRetryWebhookDeliveriesRequestToJSONTyped, type BulkUpsertAuthEmailTemplatesRequest, BulkUpsertAuthEmailTemplatesRequestFromJSON, BulkUpsertAuthEmailTemplatesRequestFromJSONTyped, BulkUpsertAuthEmailTemplatesRequestToJSON, BulkUpsertAuthEmailTemplatesRequestToJSONTyped, type BulkUpsertAuthEmailTemplatesResponse, BulkUpsertAuthEmailTemplatesResponseFromJSON, BulkUpsertAuthEmailTemplatesResponseFromJSONTyped, BulkUpsertAuthEmailTemplatesResponseToJSON, BulkUpsertAuthEmailTemplatesResponseToJSONTyped, COLLECTION_FORMATS, type Category, CategoryFromJSON, CategoryFromJSONTyped, type CategoryListResponse, CategoryListResponseFromJSON, CategoryListResponseFromJSONTyped, CategoryListResponseToJSON, CategoryListResponseToJSONTyped, type CategoryResponse, CategoryResponseFromJSON, CategoryResponseFromJSONTyped, CategoryResponseToJSON, CategoryResponseToJSONTyped, CategoryToJSON, CategoryToJSONTyped, Configuration, type ConfigurationParameters, type ConfirmEmailVerificationRequest, ConfirmEmailVerificationRequestFromJSON, ConfirmEmailVerificationRequestFromJSONTyped, ConfirmEmailVerificationRequestToJSON, ConfirmEmailVerificationRequestToJSONTyped, type ConfirmEmailVerificationResponse, type ConfirmEmailVerificationResponseData, ConfirmEmailVerificationResponseDataFromJSON, ConfirmEmailVerificationResponseDataFromJSONTyped, ConfirmEmailVerificationResponseDataToJSON, ConfirmEmailVerificationResponseDataToJSONTyped, ConfirmEmailVerificationResponseFromJSON, ConfirmEmailVerificationResponseFromJSONTyped, ConfirmEmailVerificationResponseToJSON, ConfirmEmailVerificationResponseToJSONTyped, type ConsentHistoryEntry, ConsentHistoryEntryFromJSON, ConsentHistoryEntryFromJSONTyped, ConsentHistoryEntryToJSON, ConsentHistoryEntryToJSONTyped, type ConsentHistoryResponse, ConsentHistoryResponseFromJSON, ConsentHistoryResponseFromJSONTyped, ConsentHistoryResponseToJSON, ConsentHistoryResponseToJSONTyped, type ConsentRecordResponse, type ConsentRecordResponseData, ConsentRecordResponseDataFromJSON, ConsentRecordResponseDataFromJSONTyped, ConsentRecordResponseDataToJSON, ConsentRecordResponseDataToJSONTyped, ConsentRecordResponseFromJSON, ConsentRecordResponseFromJSONTyped, ConsentRecordResponseToJSON, ConsentRecordResponseToJSONTyped, type ConsentStatus, ConsentStatusFromJSON, ConsentStatusFromJSONTyped, type ConsentStatusResponse, ConsentStatusResponseFromJSON, ConsentStatusResponseFromJSONTyped, ConsentStatusResponseToJSON, ConsentStatusResponseToJSONTyped, ConsentStatusToJSON, ConsentStatusToJSONTyped, type ConsentWithdrawResponse, ConsentWithdrawResponseFromJSON, ConsentWithdrawResponseFromJSONTyped, ConsentWithdrawResponseToJSON, ConsentWithdrawResponseToJSONTyped, type Consume, type CreateCategoryRequest, CreateCategoryRequestFromJSON, CreateCategoryRequestFromJSONTyped, CreateCategoryRequestToJSON, CreateCategoryRequestToJSONTyped, type CreateSubscriberRequest, CreateSubscriberRequestFromJSON, CreateSubscriberRequestFromJSONTyped, CreateSubscriberRequestToJSON, CreateSubscriberRequestToJSONTyped, type CreateTemplateRequest, CreateTemplateRequestFromJSON, CreateTemplateRequestFromJSONTyped, CreateTemplateRequestToJSON, CreateTemplateRequestToJSONTyped, type CreateTopicRequest, CreateTopicRequestFromJSON, CreateTopicRequestFromJSONTyped, CreateTopicRequestToJSON, CreateTopicRequestToJSONTyped, type CreateWaaSApplication201Response, CreateWaaSApplication201ResponseFromJSON, CreateWaaSApplication201ResponseFromJSONTyped, CreateWaaSApplication201ResponseToJSON, CreateWaaSApplication201ResponseToJSONTyped, type CreateWaaSApplicationRequest, CreateWaaSApplicationRequestFromJSON, CreateWaaSApplicationRequestFromJSONTyped, CreateWaaSApplicationRequestToJSON, CreateWaaSApplicationRequestToJSONTyped, type CreateWaaSEndpoint201Response, CreateWaaSEndpoint201ResponseFromJSON, CreateWaaSEndpoint201ResponseFromJSONTyped, CreateWaaSEndpoint201ResponseToJSON, CreateWaaSEndpoint201ResponseToJSONTyped, type CreateWaaSEndpointRequest, CreateWaaSEndpointRequestFromJSON, CreateWaaSEndpointRequestFromJSONTyped, CreateWaaSEndpointRequestToJSON, CreateWaaSEndpointRequestToJSONTyped, type CreateWaaSEndpointResponse, CreateWaaSEndpointResponseFromJSON, CreateWaaSEndpointResponseFromJSONTyped, CreateWaaSEndpointResponseToJSON, CreateWaaSEndpointResponseToJSONTyped, type CreateWaaSEventType201Response, CreateWaaSEventType201ResponseFromJSON, CreateWaaSEventType201ResponseFromJSONTyped, CreateWaaSEventType201ResponseToJSON, CreateWaaSEventType201ResponseToJSONTyped, type CreateWaaSEventTypeRequest, CreateWaaSEventTypeRequestFromJSON, CreateWaaSEventTypeRequestFromJSONTyped, CreateWaaSEventTypeRequestToJSON, CreateWaaSEventTypeRequestToJSONTyped, type CreateWebhookRequest, CreateWebhookRequestFromJSON, CreateWebhookRequestFromJSONTyped, CreateWebhookRequestToJSON, CreateWebhookRequestToJSONTyped, DefaultConfig, type DeleteResult, type DeleteResultData, DeleteResultDataFromJSON, DeleteResultDataFromJSONTyped, DeleteResultDataToJSON, DeleteResultDataToJSONTyped, DeleteResultFromJSON, DeleteResultFromJSONTyped, DeleteResultToJSON, DeleteResultToJSONTyped, type Device, DeviceFromJSON, DeviceFromJSONTyped, type DeviceListResponse, DeviceListResponseFromJSON, DeviceListResponseFromJSONTyped, DeviceListResponseToJSON, DeviceListResponseToJSONTyped, DevicePlatformEnum, type DevicePushTopic, DevicePushTopicFromJSON, DevicePushTopicFromJSONTyped, type DevicePushTopicListResponse, DevicePushTopicListResponseFromJSON, DevicePushTopicListResponseFromJSONTyped, type DevicePushTopicListResponseMeta, DevicePushTopicListResponseMetaFromJSON, DevicePushTopicListResponseMetaFromJSONTyped, DevicePushTopicListResponseMetaToJSON, DevicePushTopicListResponseMetaToJSONTyped, DevicePushTopicListResponseToJSON, DevicePushTopicListResponseToJSONTyped, DevicePushTopicToJSON, DevicePushTopicToJSONTyped, type DeviceResponse, DeviceResponseFromJSON, DeviceResponseFromJSONTyped, DeviceResponseToJSON, DeviceResponseToJSONTyped, type DeviceStats, DeviceStatsFromJSON, DeviceStatsFromJSONTyped, type DeviceStatsResponse, DeviceStatsResponseFromJSON, DeviceStatsResponseFromJSONTyped, DeviceStatsResponseToJSON, DeviceStatsResponseToJSONTyped, DeviceStatsToJSON, DeviceStatsToJSONTyped, DeviceToJSON, DeviceToJSONTyped, DevicesApi, type DevicesApiDeleteDeviceRequest, type DevicesApiDeleteUserDevicesRequest, type DevicesApiGetDeviceRequest, type DevicesApiInterface, type DevicesApiListDevicesRequest, type DevicesApiRegisterDeviceOperationRequest, type EmailAddress, EmailAddressFromJSON, EmailAddressFromJSONTyped, EmailAddressToJSON, EmailAddressToJSONTyped, type EmailAttachment, EmailAttachmentDispositionEnum, EmailAttachmentFromJSON, EmailAttachmentFromJSONTyped, EmailAttachmentToJSON, EmailAttachmentToJSONTyped, type EmailEvent, EmailEventFromJSON, EmailEventFromJSONTyped, EmailEventToJSON, EmailEventToJSONTyped, type EmailEventsResponse, EmailEventsResponseFromJSON, EmailEventsResponseFromJSONTyped, EmailEventsResponseToJSON, EmailEventsResponseToJSONTyped, type EmailListResponse, EmailListResponseFromJSON, EmailListResponseFromJSONTyped, EmailListResponseToJSON, EmailListResponseToJSONTyped, type EmailMessage, EmailMessageFromJSON, EmailMessageFromJSONTyped, EmailMessageStatusEnum, EmailMessageToJSON, EmailMessageToJSONTyped, type EmailResponse, EmailResponseFromJSON, EmailResponseFromJSONTyped, EmailResponseToJSON, EmailResponseToJSONTyped, type EmailTrackingClickLink, EmailTrackingClickLinkFromJSON, EmailTrackingClickLinkFromJSONTyped, EmailTrackingClickLinkToJSON, EmailTrackingClickLinkToJSONTyped, type EmailTrackingClicks, EmailTrackingClicksFromJSON, EmailTrackingClicksFromJSONTyped, EmailTrackingClicksToJSON, EmailTrackingClicksToJSONTyped, type EmailTrackingData, EmailTrackingDataFromJSON, EmailTrackingDataFromJSONTyped, EmailTrackingDataToJSON, EmailTrackingDataToJSONTyped, type EmailTrackingOpens, EmailTrackingOpensFromJSON, EmailTrackingOpensFromJSONTyped, EmailTrackingOpensToJSON, EmailTrackingOpensToJSONTyped, type EmailTrackingResponse, EmailTrackingResponseFromJSON, EmailTrackingResponseFromJSONTyped, EmailTrackingResponseToJSON, EmailTrackingResponseToJSONTyped, EmailsApi, type EmailsApiGetEmailEventsRequest, type EmailsApiGetEmailRequest, type EmailsApiGetEmailTrackingRequest, type EmailsApiInterface, type EmailsApiListEmailsRequest, type EmailsApiSendBatchEmailOperationRequest, type EmailsApiSendEmailOperationRequest, type EndUserDeleteResponse, type EndUserDeleteResponseData, EndUserDeleteResponseDataFromJSON, EndUserDeleteResponseDataFromJSONTyped, EndUserDeleteResponseDataToJSON, EndUserDeleteResponseDataToJSONTyped, EndUserDeleteResponseFromJSON, EndUserDeleteResponseFromJSONTyped, EndUserDeleteResponseToJSON, EndUserDeleteResponseToJSONTyped, type ErrorContext, type ExecutionCancelResponse, type ExecutionCancelResponseData, ExecutionCancelResponseDataFromJSON, ExecutionCancelResponseDataFromJSONTyped, ExecutionCancelResponseDataStatusEnum, ExecutionCancelResponseDataToJSON, ExecutionCancelResponseDataToJSONTyped, ExecutionCancelResponseFromJSON, ExecutionCancelResponseFromJSONTyped, ExecutionCancelResponseToJSON, ExecutionCancelResponseToJSONTyped, type ExecutionResponse, ExecutionResponseFromJSON, ExecutionResponseFromJSONTyped, ExecutionResponseToJSON, ExecutionResponseToJSONTyped, type ExecutionRetryResponse, type ExecutionRetryResponseData, ExecutionRetryResponseDataFromJSON, ExecutionRetryResponseDataFromJSONTyped, ExecutionRetryResponseDataStatusEnum, ExecutionRetryResponseDataToJSON, ExecutionRetryResponseDataToJSONTyped, ExecutionRetryResponseFromJSON, ExecutionRetryResponseFromJSONTyped, ExecutionRetryResponseToJSON, ExecutionRetryResponseToJSONTyped, ExecutionsApi, type ExecutionsApiCancelExecutionRequest, type ExecutionsApiGetExecutionRequest, type ExecutionsApiInterface, type ExecutionsApiRetryExecutionRequest, type FetchAPI, FetchError, type FetchParams, type ForgotPasswordRequest, ForgotPasswordRequestFromJSON, ForgotPasswordRequestFromJSONTyped, ForgotPasswordRequestToJSON, ForgotPasswordRequestToJSONTyped, type GenerateSubscriberToken200Response, type GenerateSubscriberToken200ResponseData, GenerateSubscriberToken200ResponseDataFromJSON, GenerateSubscriberToken200ResponseDataFromJSONTyped, GenerateSubscriberToken200ResponseDataToJSON, GenerateSubscriberToken200ResponseDataToJSONTyped, GenerateSubscriberToken200ResponseFromJSON, GenerateSubscriberToken200ResponseFromJSONTyped, GenerateSubscriberToken200ResponseToJSON, GenerateSubscriberToken200ResponseToJSONTyped, type GenerateSubscriberTokenRequest, GenerateSubscriberTokenRequestFromJSON, GenerateSubscriberTokenRequestFromJSONTyped, GenerateSubscriberTokenRequestToJSON, GenerateSubscriberTokenRequestToJSONTyped, type GenerateWaaSPortalToken201Response, GenerateWaaSPortalToken201ResponseFromJSON, GenerateWaaSPortalToken201ResponseFromJSONTyped, GenerateWaaSPortalToken201ResponseToJSON, GenerateWaaSPortalToken201ResponseToJSONTyped, type GetWaaSEndpoint200Response, GetWaaSEndpoint200ResponseFromJSON, GetWaaSEndpoint200ResponseFromJSONTyped, GetWaaSEndpoint200ResponseToJSON, GetWaaSEndpoint200ResponseToJSONTyped, type GetWaaSUsage200Response, GetWaaSUsage200ResponseFromJSON, GetWaaSUsage200ResponseFromJSONTyped, GetWaaSUsage200ResponseToJSON, GetWaaSUsage200ResponseToJSONTyped, type HTTPBody, type HTTPHeaders, type HTTPMethod, type HTTPQuery, type HTTPRequestInit, type InAppNotification, InAppNotificationFromJSON, InAppNotificationFromJSONTyped, InAppNotificationPriorityEnum, InAppNotificationToJSON, InAppNotificationToJSONTyped, InboxApi, type InboxApiArchiveInboxNotificationRequest, type InboxApiArchiveSubscriberNotificationRequest, type InboxApiDeleteInboxNotificationRequest, type InboxApiDeleteSubscriberNotificationRequest, type InboxApiGenerateSubscriberTokenOperationRequest, type InboxApiGetInboxNotificationRequest, type InboxApiGetSubscriberNotificationRequest, type InboxApiGetUnreadCountRequest, type InboxApiInterface, type InboxApiListAllInboxRequest, type InboxApiListInboxRequest, type InboxApiListSubscriberNotificationsRequest, type InboxApiMarkAllInboxReadOperationRequest, type InboxApiMarkAllSubscriberNotificationsReadOperationRequest, type InboxApiMarkInboxReadOperationRequest, type InboxApiMarkSubscriberNotificationReadRequest, type InboxApiSendBatchInAppOperationRequest, type InboxApiSendInAppOperationRequest, type InboxApiUpdateSubscriberPreferencesOperationRequest, type InboxListMeta, InboxListMetaFromJSON, InboxListMetaFromJSONTyped, InboxListMetaToJSON, InboxListMetaToJSONTyped, type InboxListResponse, InboxListResponseFromJSON, InboxListResponseFromJSONTyped, InboxListResponseToJSON, InboxListResponseToJSONTyped, type InboxNotificationResponse, InboxNotificationResponseFromJSON, InboxNotificationResponseFromJSONTyped, InboxNotificationResponseToJSON, InboxNotificationResponseToJSONTyped, type InitOverrideFunction, JSONApiResponse, type Json, ListAllInboxStatusEnum, ListDevicesPlatformEnum, ListEmailsStatusEnum, ListPushStatusEnum, ListSlackMessagesStatusEnum, ListSmsStatusEnum, ListSubscribersStatusEnum, type ListWaaSApplications200Response, ListWaaSApplications200ResponseFromJSON, ListWaaSApplications200ResponseFromJSONTyped, ListWaaSApplications200ResponseToJSON, ListWaaSApplications200ResponseToJSONTyped, ListWaaSApplicationsStatusEnum, ListWaaSDeliveriesStatusEnum, type ListWaaSEndpointDeliveries200Response, ListWaaSEndpointDeliveries200ResponseFromJSON, ListWaaSEndpointDeliveries200ResponseFromJSONTyped, ListWaaSEndpointDeliveries200ResponseToJSON, ListWaaSEndpointDeliveries200ResponseToJSONTyped, type ListWaaSEndpoints200Response, ListWaaSEndpoints200ResponseFromJSON, ListWaaSEndpoints200ResponseFromJSONTyped, ListWaaSEndpoints200ResponseToJSON, ListWaaSEndpoints200ResponseToJSONTyped, ListWaaSEndpointsStatusEnum, type ListWaaSEventTypes200Response, ListWaaSEventTypes200ResponseFromJSON, ListWaaSEventTypes200ResponseFromJSONTyped, ListWaaSEventTypes200ResponseToJSON, ListWaaSEventTypes200ResponseToJSONTyped, ListWaaSEventTypesStatusEnum, ListWebhookDeliveriesStatusEnum, type LoginRequest, LoginRequestFromJSON, LoginRequestFromJSONTyped, LoginRequestToJSON, LoginRequestToJSONTyped, type MagicLinkSendRequest, MagicLinkSendRequestFromJSON, MagicLinkSendRequestFromJSONTyped, MagicLinkSendRequestToJSON, MagicLinkSendRequestToJSONTyped, type MagicLinkVerifyRequest, MagicLinkVerifyRequestFromJSON, MagicLinkVerifyRequestFromJSONTyped, MagicLinkVerifyRequestToJSON, MagicLinkVerifyRequestToJSONTyped, type MagicLinkVerifyResponse, type MagicLinkVerifyResponseData, MagicLinkVerifyResponseDataFromJSON, MagicLinkVerifyResponseDataFromJSONTyped, MagicLinkVerifyResponseDataToJSON, MagicLinkVerifyResponseDataToJSONTyped, MagicLinkVerifyResponseFromJSON, MagicLinkVerifyResponseFromJSONTyped, MagicLinkVerifyResponseToJSON, MagicLinkVerifyResponseToJSONTyped, type MarkAllInboxReadRequest, MarkAllInboxReadRequestFromJSON, MarkAllInboxReadRequestFromJSONTyped, MarkAllInboxReadRequestToJSON, MarkAllInboxReadRequestToJSONTyped, type MarkAllReadData, MarkAllReadDataFromJSON, MarkAllReadDataFromJSONTyped, MarkAllReadDataToJSON, MarkAllReadDataToJSONTyped, type MarkAllReadResponse, MarkAllReadResponseFromJSON, MarkAllReadResponseFromJSONTyped, MarkAllReadResponseToJSON, MarkAllReadResponseToJSONTyped, type MarkAllSubscriberNotificationsReadRequest, MarkAllSubscriberNotificationsReadRequestFromJSON, MarkAllSubscriberNotificationsReadRequestFromJSONTyped, MarkAllSubscriberNotificationsReadRequestToJSON, MarkAllSubscriberNotificationsReadRequestToJSONTyped, type MarkInboxReadRequest, MarkInboxReadRequestFromJSON, MarkInboxReadRequestFromJSONTyped, MarkInboxReadRequestToJSON, MarkInboxReadRequestToJSONTyped, type MfaBackupCodesResponse, type MfaBackupCodesResponseData, MfaBackupCodesResponseDataFromJSON, MfaBackupCodesResponseDataFromJSONTyped, MfaBackupCodesResponseDataToJSON, MfaBackupCodesResponseDataToJSONTyped, MfaBackupCodesResponseFromJSON, MfaBackupCodesResponseFromJSONTyped, MfaBackupCodesResponseToJSON, MfaBackupCodesResponseToJSONTyped, type MfaDisableRequest, MfaDisableRequestFromJSON, MfaDisableRequestFromJSONTyped, MfaDisableRequestToJSON, MfaDisableRequestToJSONTyped, type MfaDisableResponse, type MfaDisableResponseData, MfaDisableResponseDataFromJSON, MfaDisableResponseDataFromJSONTyped, MfaDisableResponseDataToJSON, MfaDisableResponseDataToJSONTyped, MfaDisableResponseFromJSON, MfaDisableResponseFromJSONTyped, MfaDisableResponseToJSON, MfaDisableResponseToJSONTyped, type MfaEnrollRequest, MfaEnrollRequestFromJSON, MfaEnrollRequestFromJSONTyped, MfaEnrollRequestToJSON, MfaEnrollRequestToJSONTyped, type MfaEnrollmentResponse, type MfaEnrollmentResponseData, MfaEnrollmentResponseDataFromJSON, MfaEnrollmentResponseDataFromJSONTyped, MfaEnrollmentResponseDataToJSON, MfaEnrollmentResponseDataToJSONTyped, MfaEnrollmentResponseFromJSON, MfaEnrollmentResponseFromJSONTyped, MfaEnrollmentResponseToJSON, MfaEnrollmentResponseToJSONTyped, type MfaRegenerateBackupCodesRequest, MfaRegenerateBackupCodesRequestFromJSON, MfaRegenerateBackupCodesRequestFromJSONTyped, MfaRegenerateBackupCodesRequestToJSON, MfaRegenerateBackupCodesRequestToJSONTyped, type MfaStatusResponse, type MfaStatusResponseData, MfaStatusResponseDataFromJSON, MfaStatusResponseDataFromJSONTyped, MfaStatusResponseDataStatusEnum, MfaStatusResponseDataToJSON, MfaStatusResponseDataToJSONTyped, MfaStatusResponseFromJSON, MfaStatusResponseFromJSONTyped, MfaStatusResponseToJSON, MfaStatusResponseToJSONTyped, type MfaVerifyBackupRequest, MfaVerifyBackupRequestFromJSON, MfaVerifyBackupRequestFromJSONTyped, MfaVerifyBackupRequestToJSON, MfaVerifyBackupRequestToJSONTyped, type MfaVerifyBackupResponse, type MfaVerifyBackupResponseData, MfaVerifyBackupResponseDataFromJSON, MfaVerifyBackupResponseDataFromJSONTyped, MfaVerifyBackupResponseDataToJSON, MfaVerifyBackupResponseDataToJSONTyped, MfaVerifyBackupResponseFromJSON, MfaVerifyBackupResponseFromJSONTyped, MfaVerifyBackupResponseToJSON, MfaVerifyBackupResponseToJSONTyped, type MfaVerifyEnrollmentRequest, MfaVerifyEnrollmentRequestFromJSON, MfaVerifyEnrollmentRequestFromJSONTyped, MfaVerifyEnrollmentRequestToJSON, MfaVerifyEnrollmentRequestToJSONTyped, type MfaVerifyEnrollmentResponse, type MfaVerifyEnrollmentResponseData, MfaVerifyEnrollmentResponseDataFromJSON, MfaVerifyEnrollmentResponseDataFromJSONTyped, MfaVerifyEnrollmentResponseDataToJSON, MfaVerifyEnrollmentResponseDataToJSONTyped, MfaVerifyEnrollmentResponseFromJSON, MfaVerifyEnrollmentResponseFromJSONTyped, MfaVerifyEnrollmentResponseToJSON, MfaVerifyEnrollmentResponseToJSONTyped, type MfaVerifyRequest, MfaVerifyRequestFromJSON, MfaVerifyRequestFromJSONTyped, MfaVerifyRequestToJSON, MfaVerifyRequestToJSONTyped, type Middleware, type ModelPropertyNaming, type OAuthAuthorizationUrlResponse, type OAuthAuthorizationUrlResponseData, OAuthAuthorizationUrlResponseDataFromJSON, OAuthAuthorizationUrlResponseDataFromJSONTyped, OAuthAuthorizationUrlResponseDataToJSON, OAuthAuthorizationUrlResponseDataToJSONTyped, OAuthAuthorizationUrlResponseFromJSON, OAuthAuthorizationUrlResponseFromJSONTyped, OAuthAuthorizationUrlResponseToJSON, OAuthAuthorizationUrlResponseToJSONTyped, type OAuthCallbackRequest, OAuthCallbackRequestFromJSON, OAuthCallbackRequestFromJSONTyped, OAuthCallbackRequestToJSON, OAuthCallbackRequestToJSONTyped, type OAuthCallbackResponse, type OAuthCallbackResponseData, OAuthCallbackResponseDataFromJSON, OAuthCallbackResponseDataFromJSONTyped, OAuthCallbackResponseDataToJSON, OAuthCallbackResponseDataToJSONTyped, OAuthCallbackResponseFromJSON, OAuthCallbackResponseFromJSONTyped, OAuthCallbackResponseToJSON, OAuthCallbackResponseToJSONTyped, type OAuthConnection, OAuthConnectionFromJSON, OAuthConnectionFromJSONTyped, type OAuthConnectionInfoResponse, type OAuthConnectionInfoResponseData, OAuthConnectionInfoResponseDataFromJSON, OAuthConnectionInfoResponseDataFromJSONTyped, OAuthConnectionInfoResponseDataToJSON, OAuthConnectionInfoResponseDataToJSONTyped, OAuthConnectionInfoResponseFromJSON, OAuthConnectionInfoResponseFromJSONTyped, OAuthConnectionInfoResponseToJSON, OAuthConnectionInfoResponseToJSONTyped, OAuthConnectionToJSON, OAuthConnectionToJSONTyped, type OAuthConnectionsResponse, type OAuthConnectionsResponseData, OAuthConnectionsResponseDataFromJSON, OAuthConnectionsResponseDataFromJSONTyped, OAuthConnectionsResponseDataToJSON, OAuthConnectionsResponseDataToJSONTyped, OAuthConnectionsResponseFromJSON, OAuthConnectionsResponseFromJSONTyped, OAuthConnectionsResponseToJSON, OAuthConnectionsResponseToJSONTyped, type OAuthProvider, OAuthProviderFromJSON, OAuthProviderFromJSONTyped, type OAuthProviderInfo, OAuthProviderInfoFromJSON, OAuthProviderInfoFromJSONTyped, OAuthProviderInfoToJSON, OAuthProviderInfoToJSONTyped, OAuthProviderToJSON, OAuthProviderToJSONTyped, type OAuthProvidersResponse, type OAuthProvidersResponseData, OAuthProvidersResponseDataFromJSON, OAuthProvidersResponseDataFromJSONTyped, OAuthProvidersResponseDataToJSON, OAuthProvidersResponseDataToJSONTyped, OAuthProvidersResponseFromJSON, OAuthProvidersResponseFromJSONTyped, OAuthProvidersResponseToJSON, OAuthProvidersResponseToJSONTyped, type OAuthTokensRefreshResponse, type OAuthTokensRefreshResponseData, OAuthTokensRefreshResponseDataFromJSON, OAuthTokensRefreshResponseDataFromJSONTyped, OAuthTokensRefreshResponseDataToJSON, OAuthTokensRefreshResponseDataToJSONTyped, OAuthTokensRefreshResponseFromJSON, OAuthTokensRefreshResponseFromJSONTyped, OAuthTokensRefreshResponseToJSON, OAuthTokensRefreshResponseToJSONTyped, type OAuthTokensResponse, type OAuthTokensResponseData, OAuthTokensResponseDataFromJSON, OAuthTokensResponseDataFromJSONTyped, OAuthTokensResponseDataToJSON, OAuthTokensResponseDataToJSONTyped, OAuthTokensResponseFromJSON, OAuthTokensResponseFromJSONTyped, OAuthTokensResponseToJSON, OAuthTokensResponseToJSONTyped, type PaginationMeta, PaginationMetaFromJSON, PaginationMetaFromJSONTyped, PaginationMetaToJSON, PaginationMetaToJSONTyped, type PasswordRequirements, PasswordRequirementsFromJSON, PasswordRequirementsFromJSONTyped, type PasswordRequirementsResponse, type PasswordRequirementsResponseData, PasswordRequirementsResponseDataFromJSON, PasswordRequirementsResponseDataFromJSONTyped, PasswordRequirementsResponseDataToJSON, PasswordRequirementsResponseDataToJSONTyped, PasswordRequirementsResponseFromJSON, PasswordRequirementsResponseFromJSONTyped, PasswordRequirementsResponseToJSON, PasswordRequirementsResponseToJSONTyped, PasswordRequirementsToJSON, PasswordRequirementsToJSONTyped, type PhoneAuthAvailabilityResponse, type PhoneAuthAvailabilityResponseData, PhoneAuthAvailabilityResponseDataFromJSON, PhoneAuthAvailabilityResponseDataFromJSONTyped, PhoneAuthAvailabilityResponseDataToJSON, PhoneAuthAvailabilityResponseDataToJSONTyped, PhoneAuthAvailabilityResponseFromJSON, PhoneAuthAvailabilityResponseFromJSONTyped, PhoneAuthAvailabilityResponseToJSON, PhoneAuthAvailabilityResponseToJSONTyped, type PhoneLoginVerifyRequest, PhoneLoginVerifyRequestFromJSON, PhoneLoginVerifyRequestFromJSONTyped, PhoneLoginVerifyRequestToJSON, PhoneLoginVerifyRequestToJSONTyped, type PhoneOtpSendRequest, PhoneOtpSendRequestFromJSON, PhoneOtpSendRequestFromJSONTyped, PhoneOtpSendRequestToJSON, PhoneOtpSendRequestToJSONTyped, type PhoneOtpSentResponse, type PhoneOtpSentResponseData, PhoneOtpSentResponseDataFromJSON, PhoneOtpSentResponseDataFromJSONTyped, PhoneOtpSentResponseDataToJSON, PhoneOtpSentResponseDataToJSONTyped, PhoneOtpSentResponseFromJSON, PhoneOtpSentResponseFromJSONTyped, PhoneOtpSentResponseToJSON, PhoneOtpSentResponseToJSONTyped, type PhoneRegisterVerifyRequest, PhoneRegisterVerifyRequestFromJSON, PhoneRegisterVerifyRequestFromJSONTyped, PhoneRegisterVerifyRequestToJSON, PhoneRegisterVerifyRequestToJSONTyped, type PreferenceListResponse, PreferenceListResponseFromJSON, PreferenceListResponseFromJSONTyped, PreferenceListResponseToJSON, PreferenceListResponseToJSONTyped, type PublishWaaSEvent201Response, PublishWaaSEvent201ResponseFromJSON, PublishWaaSEvent201ResponseFromJSONTyped, PublishWaaSEvent201ResponseToJSON, PublishWaaSEvent201ResponseToJSONTyped, PushApi, type PushApiGetPushRequest, type PushApiInterface, type PushApiListDevicePushTopicsRequest, type PushApiListPushRequest, type PushApiListPushTopicDevicesRequest, type PushApiSendPushOperationRequest, type PushApiSendPushToTopicOperationRequest, type PushApiSubscribePushTopicOperationRequest, type PushApiUnsubscribePushTopicRequest, type PushDetailResponse, PushDetailResponseFromJSON, PushDetailResponseFromJSONTyped, PushDetailResponseToJSON, PushDetailResponseToJSONTyped, type PushEvent, PushEventFromJSON, PushEventFromJSONTyped, PushEventToJSON, PushEventToJSONTyped, type PushListResponse, PushListResponseFromJSON, PushListResponseFromJSONTyped, PushListResponseToJSON, PushListResponseToJSONTyped, type PushMessage, type PushMessageDetail, type PushMessageDetailAllOfActionButtons, PushMessageDetailAllOfActionButtonsFromJSON, PushMessageDetailAllOfActionButtonsFromJSONTyped, PushMessageDetailAllOfActionButtonsToJSON, PushMessageDetailAllOfActionButtonsToJSONTyped, PushMessageDetailFromJSON, PushMessageDetailFromJSONTyped, PushMessageDetailPlatformEnum, PushMessageDetailStatusEnum, PushMessageDetailToJSON, PushMessageDetailToJSONTyped, PushMessageFromJSON, PushMessageFromJSONTyped, PushMessagePlatformEnum, PushMessageStatusEnum, PushMessageToJSON, PushMessageToJSONTyped, type PushStatsData, PushStatsDataFromJSON, PushStatsDataFromJSONTyped, PushStatsDataToJSON, PushStatsDataToJSONTyped, type PushStatsResponse, PushStatsResponseFromJSON, PushStatsResponseFromJSONTyped, PushStatsResponseToJSON, PushStatsResponseToJSONTyped, type PushTopicDevice, PushTopicDeviceFromJSON, PushTopicDeviceFromJSONTyped, type PushTopicDeviceListResponse, PushTopicDeviceListResponseFromJSON, PushTopicDeviceListResponseFromJSONTyped, PushTopicDeviceListResponseToJSON, PushTopicDeviceListResponseToJSONTyped, PushTopicDevicePlatformEnum, PushTopicDeviceToJSON, PushTopicDeviceToJSONTyped, type PushTopicSubscribeData, PushTopicSubscribeDataFromJSON, PushTopicSubscribeDataFromJSONTyped, PushTopicSubscribeDataToJSON, PushTopicSubscribeDataToJSONTyped, type PushTopicSubscribeResponse, PushTopicSubscribeResponseFromJSON, PushTopicSubscribeResponseFromJSONTyped, PushTopicSubscribeResponseToJSON, PushTopicSubscribeResponseToJSONTyped, type PushTopicUnsubscribeData, PushTopicUnsubscribeDataFromJSON, PushTopicUnsubscribeDataFromJSONTyped, PushTopicUnsubscribeDataToJSON, PushTopicUnsubscribeDataToJSONTyped, type PushTopicUnsubscribeResponse, PushTopicUnsubscribeResponseFromJSON, PushTopicUnsubscribeResponseFromJSONTyped, PushTopicUnsubscribeResponseToJSON, PushTopicUnsubscribeResponseToJSONTyped, type RefreshOAuthTokensRequest, RefreshOAuthTokensRequestFromJSON, RefreshOAuthTokensRequestFromJSONTyped, RefreshOAuthTokensRequestToJSON, RefreshOAuthTokensRequestToJSONTyped, type RefreshSessionRequest, RefreshSessionRequestFromJSON, RefreshSessionRequestFromJSONTyped, RefreshSessionRequestToJSON, RefreshSessionRequestToJSONTyped, type RefreshTokenResponse, type RefreshTokenResponseData, RefreshTokenResponseDataFromJSON, RefreshTokenResponseDataFromJSONTyped, RefreshTokenResponseDataToJSON, RefreshTokenResponseDataToJSONTyped, RefreshTokenResponseFromJSON, RefreshTokenResponseFromJSONTyped, RefreshTokenResponseToJSON, RefreshTokenResponseToJSONTyped, type RegisterDeviceRequest, RegisterDeviceRequestFromJSON, RegisterDeviceRequestFromJSONTyped, RegisterDeviceRequestPlatformEnum, RegisterDeviceRequestToJSON, RegisterDeviceRequestToJSONTyped, type RegisterRequest, RegisterRequestFromJSON, RegisterRequestFromJSONTyped, RegisterRequestToJSON, RegisterRequestToJSONTyped, type RemoveTopicSubscribersRequest, RemoveTopicSubscribersRequestFromJSON, RemoveTopicSubscribersRequestFromJSONTyped, RemoveTopicSubscribersRequestToJSON, RemoveTopicSubscribersRequestToJSONTyped, type RenameWebAuthnCredentialRequest, RenameWebAuthnCredentialRequestFromJSON, RenameWebAuthnCredentialRequestFromJSONTyped, RenameWebAuthnCredentialRequestToJSON, RenameWebAuthnCredentialRequestToJSONTyped, type RenderTemplateRequest, RenderTemplateRequestFromJSON, RenderTemplateRequestFromJSONTyped, RenderTemplateRequestToJSON, RenderTemplateRequestToJSONTyped, type ReplayWebhookEventsRequest, ReplayWebhookEventsRequestFromJSON, ReplayWebhookEventsRequestFromJSONTyped, ReplayWebhookEventsRequestToJSON, ReplayWebhookEventsRequestToJSONTyped, type RequestContext, type RequestMeta, RequestMetaFromJSON, RequestMetaFromJSONTyped, RequestMetaToJSON, RequestMetaToJSONTyped, type RequestOpts, RequiredError, type ResetPasswordRequest, ResetPasswordRequestFromJSON, ResetPasswordRequestFromJSONTyped, ResetPasswordRequestToJSON, ResetPasswordRequestToJSONTyped, type ResetPasswordResponse, ResetPasswordResponseFromJSON, ResetPasswordResponseFromJSONTyped, ResetPasswordResponseToJSON, ResetPasswordResponseToJSONTyped, type ResponseContext, ResponseError, type ResponseTransformer, type ResubscribeRequest, ResubscribeRequestChannelEnum, ResubscribeRequestFromJSON, ResubscribeRequestFromJSONTyped, ResubscribeRequestToJSON, ResubscribeRequestToJSONTyped, type ResubscribeResponse, ResubscribeResponseFromJSON, ResubscribeResponseFromJSONTyped, ResubscribeResponseToJSON, ResubscribeResponseToJSONTyped, type RevokeAllSessionsResponse, type RevokeAllSessionsResponseData, RevokeAllSessionsResponseDataFromJSON, RevokeAllSessionsResponseDataFromJSONTyped, RevokeAllSessionsResponseDataToJSON, RevokeAllSessionsResponseDataToJSONTyped, RevokeAllSessionsResponseFromJSON, RevokeAllSessionsResponseFromJSONTyped, RevokeAllSessionsResponseToJSON, RevokeAllSessionsResponseToJSONTyped, type RevokeSessionRequest, RevokeSessionRequestFromJSON, RevokeSessionRequestFromJSONTyped, RevokeSessionRequestToJSON, RevokeSessionRequestToJSONTyped, SDK_VERSION, SMSApi, type SMSApiGetSmsRequest, type SMSApiInterface, type SMSApiListSmsRequest, type SMSApiSendBatchSmsOperationRequest, type SMSApiSendSmsOperationRequest, type SMSApiSendTestSmsOperationRequest, type SMSApiUpsertSmsConfigOperationRequest, type SendBatchEmailRequest, SendBatchEmailRequestFromJSON, SendBatchEmailRequestFromJSONTyped, SendBatchEmailRequestToJSON, SendBatchEmailRequestToJSONTyped, type SendBatchEmailResponse, SendBatchEmailResponseFromJSON, SendBatchEmailResponseFromJSONTyped, SendBatchEmailResponseToJSON, SendBatchEmailResponseToJSONTyped, type SendBatchEmailResult, SendBatchEmailResultFromJSON, SendBatchEmailResultFromJSONTyped, type SendBatchEmailResultItem, SendBatchEmailResultItemFromJSON, SendBatchEmailResultItemFromJSONTyped, SendBatchEmailResultItemToJSON, SendBatchEmailResultItemToJSONTyped, SendBatchEmailResultToJSON, SendBatchEmailResultToJSONTyped, type SendBatchInAppMeta, SendBatchInAppMetaFromJSON, SendBatchInAppMetaFromJSONTyped, SendBatchInAppMetaToJSON, SendBatchInAppMetaToJSONTyped, type SendBatchInAppRequest, SendBatchInAppRequestFromJSON, SendBatchInAppRequestFromJSONTyped, SendBatchInAppRequestToJSON, SendBatchInAppRequestToJSONTyped, type SendBatchInAppResponse, SendBatchInAppResponseFromJSON, SendBatchInAppResponseFromJSONTyped, SendBatchInAppResponseToJSON, SendBatchInAppResponseToJSONTyped, type SendBatchSmsData, SendBatchSmsDataFromJSON, SendBatchSmsDataFromJSONTyped, SendBatchSmsDataToJSON, SendBatchSmsDataToJSONTyped, type SendBatchSmsRequest, SendBatchSmsRequestFromJSON, SendBatchSmsRequestFromJSONTyped, SendBatchSmsRequestToJSON, SendBatchSmsRequestToJSONTyped, type SendBatchSmsResponse, SendBatchSmsResponseFromJSON, SendBatchSmsResponseFromJSONTyped, SendBatchSmsResponseToJSON, SendBatchSmsResponseToJSONTyped, type SendEmailRequest, SendEmailRequestFromJSON, SendEmailRequestFromJSONTyped, SendEmailRequestToJSON, SendEmailRequestToJSONTyped, type SendEmailResponse, type SendEmailResponseData, SendEmailResponseDataFromJSON, SendEmailResponseDataFromJSONTyped, SendEmailResponseDataStatusEnum, SendEmailResponseDataToJSON, SendEmailResponseDataToJSONTyped, SendEmailResponseFromJSON, SendEmailResponseFromJSONTyped, type SendEmailResponseMeta, SendEmailResponseMetaFromJSON, SendEmailResponseMetaFromJSONTyped, SendEmailResponseMetaToJSON, SendEmailResponseMetaToJSONTyped, SendEmailResponseToJSON, SendEmailResponseToJSONTyped, type SendEmailVerificationRequest, SendEmailVerificationRequestFromJSON, SendEmailVerificationRequestFromJSONTyped, SendEmailVerificationRequestToJSON, SendEmailVerificationRequestToJSONTyped, type SendInAppMeta, SendInAppMetaFromJSON, SendInAppMetaFromJSONTyped, SendInAppMetaToJSON, SendInAppMetaToJSONTyped, type SendInAppRequest, SendInAppRequestFromJSON, SendInAppRequestFromJSONTyped, SendInAppRequestPriorityEnum, SendInAppRequestToJSON, SendInAppRequestToJSONTyped, type SendInAppResponse, SendInAppResponseFromJSON, SendInAppResponseFromJSONTyped, SendInAppResponseToJSON, SendInAppResponseToJSONTyped, type SendPushRequest, type SendPushRequestActionButtonsInner, SendPushRequestActionButtonsInnerFromJSON, SendPushRequestActionButtonsInnerFromJSONTyped, SendPushRequestActionButtonsInnerToJSON, SendPushRequestActionButtonsInnerToJSONTyped, SendPushRequestFromJSON, SendPushRequestFromJSONTyped, SendPushRequestToJSON, SendPushRequestToJSONTyped, type SendPushResponse, type SendPushResponseData, SendPushResponseDataFromJSON, SendPushResponseDataFromJSONTyped, SendPushResponseDataToJSON, SendPushResponseDataToJSONTyped, SendPushResponseFromJSON, SendPushResponseFromJSONTyped, SendPushResponseToJSON, SendPushResponseToJSONTyped, type SendPushToTopicData, SendPushToTopicDataFromJSON, SendPushToTopicDataFromJSONTyped, SendPushToTopicDataToJSON, SendPushToTopicDataToJSONTyped, type SendPushToTopicRequest, SendPushToTopicRequestFromJSON, SendPushToTopicRequestFromJSONTyped, SendPushToTopicRequestToJSON, SendPushToTopicRequestToJSONTyped, type SendPushToTopicResponse, SendPushToTopicResponseFromJSON, SendPushToTopicResponseFromJSONTyped, SendPushToTopicResponseToJSON, SendPushToTopicResponseToJSONTyped, type SendSlackMessageRequest, SendSlackMessageRequestFromJSON, SendSlackMessageRequestFromJSONTyped, SendSlackMessageRequestToJSON, SendSlackMessageRequestToJSONTyped, type SendSlackMessageResponse, SendSlackMessageResponseFromJSON, SendSlackMessageResponseFromJSONTyped, SendSlackMessageResponseToJSON, SendSlackMessageResponseToJSONTyped, type SendSlackMessageResult, SendSlackMessageResultFromJSON, SendSlackMessageResultFromJSONTyped, SendSlackMessageResultToJSON, SendSlackMessageResultToJSONTyped, type SendSmsData, SendSmsDataFromJSON, SendSmsDataFromJSONTyped, SendSmsDataToJSON, SendSmsDataToJSONTyped, type SendSmsRequest, SendSmsRequestFromJSON, SendSmsRequestFromJSONTyped, SendSmsRequestToJSON, SendSmsRequestToJSONTyped, type SendSmsResponse, SendSmsResponseFromJSON, SendSmsResponseFromJSONTyped, SendSmsResponseToJSON, SendSmsResponseToJSONTyped, type SendTestSmsData, SendTestSmsDataFromJSON, SendTestSmsDataFromJSONTyped, SendTestSmsDataToJSON, SendTestSmsDataToJSONTyped, type SendTestSmsRequest, SendTestSmsRequestFromJSON, SendTestSmsRequestFromJSONTyped, SendTestSmsRequestToJSON, SendTestSmsRequestToJSONTyped, type SendTestSmsResponse, SendTestSmsResponseFromJSON, SendTestSmsResponseFromJSONTyped, SendTestSmsResponseToJSON, SendTestSmsResponseToJSONTyped, type SendWebhookTestEventRequest, SendWebhookTestEventRequestFromJSON, SendWebhookTestEventRequestFromJSONTyped, SendWebhookTestEventRequestToJSON, SendWebhookTestEventRequestToJSONTyped, type SessionListResponse, type SessionListResponseData, SessionListResponseDataFromJSON, SessionListResponseDataFromJSONTyped, type SessionListResponseDataSessionInfo, SessionListResponseDataSessionInfoFromJSON, SessionListResponseDataSessionInfoFromJSONTyped, SessionListResponseDataSessionInfoToJSON, SessionListResponseDataSessionInfoToJSONTyped, SessionListResponseDataToJSON, SessionListResponseDataToJSONTyped, SessionListResponseFromJSON, SessionListResponseFromJSONTyped, SessionListResponseToJSON, SessionListResponseToJSONTyped, type SetPreferencesRequest, SetPreferencesRequestFromJSON, SetPreferencesRequestFromJSONTyped, type SetPreferencesRequestPreferencesInner, SetPreferencesRequestPreferencesInnerFromJSON, SetPreferencesRequestPreferencesInnerFromJSONTyped, SetPreferencesRequestPreferencesInnerToJSON, SetPreferencesRequestPreferencesInnerToJSONTyped, SetPreferencesRequestToJSON, SetPreferencesRequestToJSONTyped, SlackApi, type SlackApiGetSlackMessageRequest, type SlackApiInterface, type SlackApiListSlackMessagesRequest, type SlackApiSendSlackMessageOperationRequest, type SlackMessage, SlackMessageFromJSON, SlackMessageFromJSONTyped, type SlackMessageListResponse, SlackMessageListResponseFromJSON, SlackMessageListResponseFromJSONTyped, type SlackMessageListResponseMeta, SlackMessageListResponseMetaFromJSON, SlackMessageListResponseMetaFromJSONTyped, SlackMessageListResponseMetaToJSON, SlackMessageListResponseMetaToJSONTyped, SlackMessageListResponseToJSON, SlackMessageListResponseToJSONTyped, type SlackMessageResponse, SlackMessageResponseFromJSON, SlackMessageResponseFromJSONTyped, SlackMessageResponseToJSON, SlackMessageResponseToJSONTyped, SlackMessageStatus, SlackMessageStatusFromJSON, SlackMessageStatusFromJSONTyped, SlackMessageStatusToJSON, SlackMessageStatusToJSONTyped, type SlackMessageSummary, SlackMessageSummaryFromJSON, SlackMessageSummaryFromJSONTyped, SlackMessageSummaryToJSON, SlackMessageSummaryToJSONTyped, SlackMessageToJSON, SlackMessageToJSONTyped, type SmsBatchResultMessage, SmsBatchResultMessageFromJSON, SmsBatchResultMessageFromJSONTyped, SmsBatchResultMessageToJSON, SmsBatchResultMessageToJSONTyped, type SmsBatchResultSummary, SmsBatchResultSummaryFromJSON, SmsBatchResultSummaryFromJSONTyped, SmsBatchResultSummaryToJSON, SmsBatchResultSummaryToJSONTyped, type SmsConfig, type SmsConfigDeleteResponse, type SmsConfigDeleteResponseData, SmsConfigDeleteResponseDataFromJSON, SmsConfigDeleteResponseDataFromJSONTyped, SmsConfigDeleteResponseDataToJSON, SmsConfigDeleteResponseDataToJSONTyped, SmsConfigDeleteResponseFromJSON, SmsConfigDeleteResponseFromJSONTyped, SmsConfigDeleteResponseToJSON, SmsConfigDeleteResponseToJSONTyped, SmsConfigFromJSON, SmsConfigFromJSONTyped, type SmsConfigResponse, SmsConfigResponseFromJSON, SmsConfigResponseFromJSONTyped, SmsConfigResponseToJSON, SmsConfigResponseToJSONTyped, SmsConfigToJSON, SmsConfigToJSONTyped, type SmsDetailResponse, SmsDetailResponseFromJSON, SmsDetailResponseFromJSONTyped, SmsDetailResponseToJSON, SmsDetailResponseToJSONTyped, type SmsListResponse, SmsListResponseFromJSON, SmsListResponseFromJSONTyped, type SmsListResponseMeta, SmsListResponseMetaFromJSON, SmsListResponseMetaFromJSONTyped, SmsListResponseMetaToJSON, SmsListResponseMetaToJSONTyped, SmsListResponseToJSON, SmsListResponseToJSONTyped, type SmsMessage, type SmsMessageDetail, SmsMessageDetailFromJSON, SmsMessageDetailFromJSONTyped, SmsMessageDetailStatusEnum, SmsMessageDetailToJSON, SmsMessageDetailToJSONTyped, SmsMessageFromJSON, SmsMessageFromJSONTyped, SmsMessageStatusEnum, SmsMessageToJSON, SmsMessageToJSONTyped, type SubscribePushTopicRequest, SubscribePushTopicRequestFromJSON, SubscribePushTopicRequestFromJSONTyped, SubscribePushTopicRequestToJSON, SubscribePushTopicRequestToJSONTyped, type Subscriber, SubscriberFromJSON, SubscriberFromJSONTyped, type SubscriberListResponse, SubscriberListResponseFromJSON, SubscriberListResponseFromJSONTyped, SubscriberListResponseToJSON, SubscriberListResponseToJSONTyped, type SubscriberPreference, SubscriberPreferenceChannelEnum, SubscriberPreferenceFromJSON, SubscriberPreferenceFromJSONTyped, SubscriberPreferenceToJSON, SubscriberPreferenceToJSONTyped, type SubscriberResponse, SubscriberResponseFromJSON, SubscriberResponseFromJSONTyped, SubscriberResponseToJSON, SubscriberResponseToJSONTyped, SubscriberStatusEnum, SubscriberToJSON, SubscriberToJSONTyped, SubscribersApi, type SubscribersApiCreateCategoryOperationRequest, type SubscribersApiCreateSubscriberOperationRequest, type SubscribersApiDeleteCategoryRequest, type SubscribersApiDeleteSubscriberRequest, type SubscribersApiGetCategoryRequest, type SubscribersApiGetSubscriberByExternalIdRequest, type SubscribersApiGetSubscriberConsentHistoryRequest, type SubscribersApiGetSubscriberConsentRequest, type SubscribersApiGetSubscriberPreferencesRequest, type SubscribersApiGetSubscriberRequest, type SubscribersApiGetSubscriberUnsubscribesRequest, type SubscribersApiInterface, type SubscribersApiListSubscribersRequest, type SubscribersApiRecordSubscriberConsentRequest, type SubscribersApiResubscribeSubscriberRequest, type SubscribersApiSetSubscriberPreferencesRequest, type SubscribersApiUnsubscribeSubscriberRequest, type SubscribersApiUpdateCategoryOperationRequest, type SubscribersApiUpdateSubscriberOperationRequest, type SubscribersApiWithdrawSubscriberConsentOperationRequest, type SuccessResult, SuccessResultFromJSON, SuccessResultFromJSONTyped, SuccessResultToJSON, SuccessResultToJSONTyped, type Template, TemplateFromJSON, TemplateFromJSONTyped, type TemplateListResponse, TemplateListResponseFromJSON, TemplateListResponseFromJSONTyped, TemplateListResponseToJSON, TemplateListResponseToJSONTyped, type TemplateRenderResponse, TemplateRenderResponseFromJSON, TemplateRenderResponseFromJSONTyped, TemplateRenderResponseToJSON, TemplateRenderResponseToJSONTyped, type TemplateRenderedContent, TemplateRenderedContentFromJSON, TemplateRenderedContentFromJSONTyped, TemplateRenderedContentToJSON, TemplateRenderedContentToJSONTyped, type TemplateResponse, TemplateResponseFromJSON, TemplateResponseFromJSONTyped, TemplateResponseToJSON, TemplateResponseToJSONTyped, TemplateToJSON, TemplateToJSONTyped, TemplatesApi, type TemplatesApiCreateTemplateOperationRequest, type TemplatesApiDeleteTemplateRequest, type TemplatesApiGetTemplateRequest, type TemplatesApiInterface, type TemplatesApiListTemplatesRequest, type TemplatesApiRenderTemplateOperationRequest, type TemplatesApiUpdateTemplateOperationRequest, type TestWebhookTransformRequest, TestWebhookTransformRequestFromJSON, TestWebhookTransformRequestFromJSONTyped, TestWebhookTransformRequestToJSON, TestWebhookTransformRequestToJSONTyped, TextApiResponse, type Topic, type TopicDeleteResponse, type TopicDeleteResponseData, TopicDeleteResponseDataFromJSON, TopicDeleteResponseDataFromJSONTyped, TopicDeleteResponseDataToJSON, TopicDeleteResponseDataToJSONTyped, TopicDeleteResponseFromJSON, TopicDeleteResponseFromJSONTyped, TopicDeleteResponseToJSON, TopicDeleteResponseToJSONTyped, TopicFromJSON, TopicFromJSONTyped, type TopicListResponse, TopicListResponseFromJSON, TopicListResponseFromJSONTyped, TopicListResponseToJSON, TopicListResponseToJSONTyped, type TopicResponse, TopicResponseFromJSON, TopicResponseFromJSONTyped, TopicResponseToJSON, TopicResponseToJSONTyped, type TopicStatsData, TopicStatsDataFromJSON, TopicStatsDataFromJSONTyped, TopicStatsDataToJSON, TopicStatsDataToJSONTyped, type TopicStatsDataTopicsBySubscriberCountInner, TopicStatsDataTopicsBySubscriberCountInnerFromJSON, TopicStatsDataTopicsBySubscriberCountInnerFromJSONTyped, TopicStatsDataTopicsBySubscriberCountInnerToJSON, TopicStatsDataTopicsBySubscriberCountInnerToJSONTyped, type TopicStatsResponse, TopicStatsResponseFromJSON, TopicStatsResponseFromJSONTyped, TopicStatsResponseToJSON, TopicStatsResponseToJSONTyped, type TopicSubscriber, TopicSubscriberFromJSON, TopicSubscriberFromJSONTyped, type TopicSubscriberListResponse, TopicSubscriberListResponseFromJSON, TopicSubscriberListResponseFromJSONTyped, TopicSubscriberListResponseToJSON, TopicSubscriberListResponseToJSONTyped, TopicSubscriberToJSON, TopicSubscriberToJSONTyped, type TopicSubscribersAddResponse, TopicSubscribersAddResponseFromJSON, TopicSubscribersAddResponseFromJSONTyped, TopicSubscribersAddResponseToJSON, TopicSubscribersAddResponseToJSONTyped, type TopicSubscribersAddResult, TopicSubscribersAddResultFromJSON, TopicSubscribersAddResultFromJSONTyped, TopicSubscribersAddResultToJSON, TopicSubscribersAddResultToJSONTyped, type TopicSubscribersRemoveResponse, TopicSubscribersRemoveResponseFromJSON, TopicSubscribersRemoveResponseFromJSONTyped, TopicSubscribersRemoveResponseToJSON, TopicSubscribersRemoveResponseToJSONTyped, type TopicSubscribersRemoveResult, TopicSubscribersRemoveResultFromJSON, TopicSubscribersRemoveResultFromJSONTyped, TopicSubscribersRemoveResultToJSON, TopicSubscribersRemoveResultToJSONTyped, TopicToJSON, TopicToJSONTyped, TopicsApi, type TopicsApiAddTopicSubscribersOperationRequest, type TopicsApiCreateTopicOperationRequest, type TopicsApiDeleteTopicRequest, type TopicsApiGetTopicRequest, type TopicsApiInterface, type TopicsApiListTopicSubscribersRequest, type TopicsApiListTopicsRequest, type TopicsApiRemoveTopicSubscribersOperationRequest, type TopicsApiUpdateTopicOperationRequest, type UnreadCountData, UnreadCountDataFromJSON, UnreadCountDataFromJSONTyped, UnreadCountDataToJSON, UnreadCountDataToJSONTyped, type UnreadCountResponse, UnreadCountResponseFromJSON, UnreadCountResponseFromJSONTyped, UnreadCountResponseToJSON, UnreadCountResponseToJSONTyped, type Unsubscribe, UnsubscribeChannelEnum, UnsubscribeFromJSON, UnsubscribeFromJSONTyped, type UnsubscribeListResponse, UnsubscribeListResponseFromJSON, UnsubscribeListResponseFromJSONTyped, UnsubscribeListResponseToJSON, UnsubscribeListResponseToJSONTyped, type UnsubscribeRequest, UnsubscribeRequestChannelEnum, UnsubscribeRequestFromJSON, UnsubscribeRequestFromJSONTyped, UnsubscribeRequestToJSON, UnsubscribeRequestToJSONTyped, type UnsubscribeResponse, UnsubscribeResponseFromJSON, UnsubscribeResponseFromJSONTyped, UnsubscribeResponseToJSON, UnsubscribeResponseToJSONTyped, UnsubscribeToJSON, UnsubscribeToJSONTyped, type UpdateCategoryRequest, UpdateCategoryRequestFromJSON, UpdateCategoryRequestFromJSONTyped, UpdateCategoryRequestToJSON, UpdateCategoryRequestToJSONTyped, type UpdateEndUserRequest, UpdateEndUserRequestFromJSON, UpdateEndUserRequestFromJSONTyped, UpdateEndUserRequestToJSON, UpdateEndUserRequestToJSONTyped, type UpdateSubscriberPreferencesRequest, UpdateSubscriberPreferencesRequestFromJSON, UpdateSubscriberPreferencesRequestFromJSONTyped, type UpdateSubscriberPreferencesRequestPreferencesInner, UpdateSubscriberPreferencesRequestPreferencesInnerChannelEnum, UpdateSubscriberPreferencesRequestPreferencesInnerFromJSON, UpdateSubscriberPreferencesRequestPreferencesInnerFromJSONTyped, UpdateSubscriberPreferencesRequestPreferencesInnerToJSON, UpdateSubscriberPreferencesRequestPreferencesInnerToJSONTyped, UpdateSubscriberPreferencesRequestToJSON, UpdateSubscriberPreferencesRequestToJSONTyped, type UpdateSubscriberRequest, UpdateSubscriberRequestFromJSON, UpdateSubscriberRequestFromJSONTyped, UpdateSubscriberRequestStatusEnum, UpdateSubscriberRequestToJSON, UpdateSubscriberRequestToJSONTyped, type UpdateTemplateRequest, UpdateTemplateRequestFromJSON, UpdateTemplateRequestFromJSONTyped, UpdateTemplateRequestToJSON, UpdateTemplateRequestToJSONTyped, type UpdateTopicRequest, UpdateTopicRequestFromJSON, UpdateTopicRequestFromJSONTyped, UpdateTopicRequestToJSON, UpdateTopicRequestToJSONTyped, type UpdateWaaSApplicationRequest, UpdateWaaSApplicationRequestFromJSON, UpdateWaaSApplicationRequestFromJSONTyped, UpdateWaaSApplicationRequestStatusEnum, UpdateWaaSApplicationRequestToJSON, UpdateWaaSApplicationRequestToJSONTyped, type UpdateWaaSEndpointRequest, UpdateWaaSEndpointRequestFromJSON, UpdateWaaSEndpointRequestFromJSONTyped, UpdateWaaSEndpointRequestStatusEnum, UpdateWaaSEndpointRequestToJSON, UpdateWaaSEndpointRequestToJSONTyped, type UpdateWaaSEventTypeRequest, UpdateWaaSEventTypeRequestFromJSON, UpdateWaaSEventTypeRequestFromJSONTyped, UpdateWaaSEventTypeRequestToJSON, UpdateWaaSEventTypeRequestToJSONTyped, type UpdateWebhookRequest, UpdateWebhookRequestFromJSON, UpdateWebhookRequestFromJSONTyped, UpdateWebhookRequestToJSON, UpdateWebhookRequestToJSONTyped, type UpsertAuthEmailTemplateRequest, UpsertAuthEmailTemplateRequestEditorTypeEnum, UpsertAuthEmailTemplateRequestFromJSON, UpsertAuthEmailTemplateRequestFromJSONTyped, UpsertAuthEmailTemplateRequestToJSON, UpsertAuthEmailTemplateRequestToJSONTyped, type UpsertSmsConfigRequest, UpsertSmsConfigRequestFromJSON, UpsertSmsConfigRequestFromJSONTyped, UpsertSmsConfigRequestToJSON, UpsertSmsConfigRequestToJSONTyped, type UserDevicesDeleteResponse, type UserDevicesDeleteResponseData, UserDevicesDeleteResponseDataFromJSON, UserDevicesDeleteResponseDataFromJSONTyped, UserDevicesDeleteResponseDataToJSON, UserDevicesDeleteResponseDataToJSONTyped, UserDevicesDeleteResponseFromJSON, UserDevicesDeleteResponseFromJSONTyped, UserDevicesDeleteResponseToJSON, UserDevicesDeleteResponseToJSONTyped, UtilityApi, type UtilityApiInterface, type ValidateResetTokenRequest, ValidateResetTokenRequestFromJSON, ValidateResetTokenRequestFromJSONTyped, ValidateResetTokenRequestToJSON, ValidateResetTokenRequestToJSONTyped, type ValidateResetTokenResponse, type ValidateResetTokenResponseData, ValidateResetTokenResponseDataFromJSON, ValidateResetTokenResponseDataFromJSONTyped, ValidateResetTokenResponseDataToJSON, ValidateResetTokenResponseDataToJSONTyped, ValidateResetTokenResponseFromJSON, ValidateResetTokenResponseFromJSONTyped, ValidateResetTokenResponseToJSON, ValidateResetTokenResponseToJSONTyped, type VerifySmsConfigData, VerifySmsConfigDataFromJSON, VerifySmsConfigDataFromJSONTyped, VerifySmsConfigDataToJSON, VerifySmsConfigDataToJSONTyped, type VerifySmsConfigResponse, VerifySmsConfigResponseFromJSON, VerifySmsConfigResponseFromJSONTyped, VerifySmsConfigResponseToJSON, VerifySmsConfigResponseToJSONTyped, VoidApiResponse, type WaaSApplication, WaaSApplicationFromJSON, WaaSApplicationFromJSONTyped, WaaSApplicationStatusEnum, WaaSApplicationToJSON, WaaSApplicationToJSONTyped, WaaSApplicationsApi, type WaaSApplicationsApiCreateWaaSApplicationOperationRequest, type WaaSApplicationsApiDeleteWaaSApplicationRequest, type WaaSApplicationsApiGetWaaSApplicationRequest, type WaaSApplicationsApiGetWaaSUsageRequest, type WaaSApplicationsApiInterface, type WaaSApplicationsApiListWaaSApplicationsRequest, type WaaSApplicationsApiUpdateWaaSApplicationOperationRequest, type WaaSBatchPublishRequest, WaaSBatchPublishRequestFromJSON, WaaSBatchPublishRequestFromJSONTyped, WaaSBatchPublishRequestToJSON, WaaSBatchPublishRequestToJSONTyped, type WaaSBatchPublishResponse, WaaSBatchPublishResponseFromJSON, WaaSBatchPublishResponseFromJSONTyped, WaaSBatchPublishResponseToJSON, WaaSBatchPublishResponseToJSONTyped, WaaSDeliveriesApi, type WaaSDeliveriesApiGetWaaSDeliveryRequest, type WaaSDeliveriesApiInterface, type WaaSDeliveriesApiListWaaSDeliveriesRequest, type WaaSDeliveriesApiListWaaSEndpointDeliveriesRequest, type WaaSDeliveriesApiRetryWaaSDeliveryRequest, type WaaSDelivery, WaaSDeliveryFromJSON, WaaSDeliveryFromJSONTyped, WaaSDeliveryStatusEnum, WaaSDeliveryToJSON, WaaSDeliveryToJSONTyped, type WaaSEndpoint, WaaSEndpointFromJSON, WaaSEndpointFromJSONTyped, WaaSEndpointStatusEnum, WaaSEndpointToJSON, WaaSEndpointToJSONTyped, WaaSEndpointsApi, type WaaSEndpointsApiCloseWaaSEndpointCircuitRequest, type WaaSEndpointsApiCreateWaaSEndpointOperationRequest, type WaaSEndpointsApiDeleteWaaSEndpointRequest, type WaaSEndpointsApiGetWaaSEndpointCircuitRequest, type WaaSEndpointsApiGetWaaSEndpointMetricsRequest, type WaaSEndpointsApiGetWaaSEndpointRequest, type WaaSEndpointsApiInterface, type WaaSEndpointsApiListWaaSEndpointsRequest, type WaaSEndpointsApiRotateWaaSEndpointSecretRequest, type WaaSEndpointsApiUpdateWaaSEndpointOperationRequest, type WaaSEventType, WaaSEventTypeFromJSON, WaaSEventTypeFromJSONTyped, WaaSEventTypeStatusEnum, WaaSEventTypeToJSON, WaaSEventTypeToJSONTyped, WaaSEventTypesApi, type WaaSEventTypesApiCreateWaaSEventTypeOperationRequest, type WaaSEventTypesApiDeleteWaaSEventTypeRequest, type WaaSEventTypesApiDeprecateWaaSEventTypeRequest, type WaaSEventTypesApiGetWaaSEventTypeRequest, type WaaSEventTypesApiInterface, type WaaSEventTypesApiListWaaSEventTypesRequest, type WaaSEventTypesApiUpdateWaaSEventTypeOperationRequest, WaaSEventsApi, type WaaSEventsApiBatchPublishWaaSEventsRequest, type WaaSEventsApiInterface, type WaaSEventsApiPublishWaaSEventRequest, WaaSPortalApi, type WaaSPortalApiGenerateWaaSPortalTokenRequest, type WaaSPortalApiInterface, type WaaSPortalTokenRequest, WaaSPortalTokenRequestFromJSON, WaaSPortalTokenRequestFromJSONTyped, type WaaSPortalTokenRequestTheme, WaaSPortalTokenRequestThemeFromJSON, WaaSPortalTokenRequestThemeFromJSONTyped, WaaSPortalTokenRequestThemeModeEnum, WaaSPortalTokenRequestThemeToJSON, WaaSPortalTokenRequestThemeToJSONTyped, WaaSPortalTokenRequestToJSON, WaaSPortalTokenRequestToJSONTyped, type WaaSPortalTokenResponse, WaaSPortalTokenResponseFromJSON, WaaSPortalTokenResponseFromJSONTyped, WaaSPortalTokenResponseToJSON, WaaSPortalTokenResponseToJSONTyped, type WaaSPublishEventRequest, WaaSPublishEventRequestFromJSON, WaaSPublishEventRequestFromJSONTyped, WaaSPublishEventRequestToJSON, WaaSPublishEventRequestToJSONTyped, type WaaSPublishEventResponse, WaaSPublishEventResponseFromJSON, WaaSPublishEventResponseFromJSONTyped, WaaSPublishEventResponseToJSON, WaaSPublishEventResponseToJSONTyped, type WaaSUsageResponse, WaaSUsageResponseFromJSON, WaaSUsageResponseFromJSONTyped, WaaSUsageResponseToJSON, WaaSUsageResponseToJSONTyped, type WebAuthnChallengeOptions, WebAuthnChallengeOptionsFromJSON, WebAuthnChallengeOptionsFromJSONTyped, WebAuthnChallengeOptionsToJSON, WebAuthnChallengeOptionsToJSONTyped, type WebAuthnCredential, WebAuthnCredentialFromJSON, WebAuthnCredentialFromJSONTyped, type WebAuthnCredentialListResponse, type WebAuthnCredentialListResponseData, WebAuthnCredentialListResponseDataFromJSON, WebAuthnCredentialListResponseDataFromJSONTyped, WebAuthnCredentialListResponseDataToJSON, WebAuthnCredentialListResponseDataToJSONTyped, WebAuthnCredentialListResponseFromJSON, WebAuthnCredentialListResponseFromJSONTyped, WebAuthnCredentialListResponseToJSON, WebAuthnCredentialListResponseToJSONTyped, type WebAuthnCredentialResponse, WebAuthnCredentialResponseFromJSON, WebAuthnCredentialResponseFromJSONTyped, WebAuthnCredentialResponseToJSON, WebAuthnCredentialResponseToJSONTyped, WebAuthnCredentialToJSON, WebAuthnCredentialToJSONTyped, type WebAuthnStartAuthRequest, WebAuthnStartAuthRequestFromJSON, WebAuthnStartAuthRequestFromJSONTyped, WebAuthnStartAuthRequestToJSON, WebAuthnStartAuthRequestToJSONTyped, type WebAuthnStartAuthResponse, WebAuthnStartAuthResponseFromJSON, WebAuthnStartAuthResponseFromJSONTyped, WebAuthnStartAuthResponseToJSON, WebAuthnStartAuthResponseToJSONTyped, type WebAuthnStartRegistrationRequest, WebAuthnStartRegistrationRequestFromJSON, WebAuthnStartRegistrationRequestFromJSONTyped, WebAuthnStartRegistrationRequestToJSON, WebAuthnStartRegistrationRequestToJSONTyped, type WebAuthnStartRegistrationResponse, WebAuthnStartRegistrationResponseFromJSON, WebAuthnStartRegistrationResponseFromJSONTyped, WebAuthnStartRegistrationResponseToJSON, WebAuthnStartRegistrationResponseToJSONTyped, type WebAuthnStatusResponse, type WebAuthnStatusResponseData, WebAuthnStatusResponseDataFromJSON, WebAuthnStatusResponseDataFromJSONTyped, WebAuthnStatusResponseDataToJSON, WebAuthnStatusResponseDataToJSONTyped, WebAuthnStatusResponseFromJSON, WebAuthnStatusResponseFromJSONTyped, WebAuthnStatusResponseToJSON, WebAuthnStatusResponseToJSONTyped, type WebAuthnVerifyAuthRequest, WebAuthnVerifyAuthRequestFromJSON, WebAuthnVerifyAuthRequestFromJSONTyped, WebAuthnVerifyAuthRequestToJSON, WebAuthnVerifyAuthRequestToJSONTyped, type WebAuthnVerifyRegistrationRequest, WebAuthnVerifyRegistrationRequestFromJSON, WebAuthnVerifyRegistrationRequestFromJSONTyped, WebAuthnVerifyRegistrationRequestToJSON, WebAuthnVerifyRegistrationRequestToJSONTyped, type WebAuthnVerifyRegistrationResponse, type WebAuthnVerifyRegistrationResponseData, WebAuthnVerifyRegistrationResponseDataFromJSON, WebAuthnVerifyRegistrationResponseDataFromJSONTyped, WebAuthnVerifyRegistrationResponseDataToJSON, WebAuthnVerifyRegistrationResponseDataToJSONTyped, WebAuthnVerifyRegistrationResponseFromJSON, WebAuthnVerifyRegistrationResponseFromJSONTyped, WebAuthnVerifyRegistrationResponseToJSON, WebAuthnVerifyRegistrationResponseToJSONTyped, type Webhook, type WebhookAccountMetricsResponse, WebhookAccountMetricsResponseFromJSON, WebhookAccountMetricsResponseFromJSONTyped, WebhookAccountMetricsResponseToJSON, WebhookAccountMetricsResponseToJSONTyped, type WebhookBulkRetryResponse, WebhookBulkRetryResponseFromJSON, WebhookBulkRetryResponseFromJSONTyped, WebhookBulkRetryResponseToJSON, WebhookBulkRetryResponseToJSONTyped, type WebhookCircuitState, WebhookCircuitStateFromJSON, WebhookCircuitStateFromJSONTyped, type WebhookCircuitStateResponse, WebhookCircuitStateResponseFromJSON, WebhookCircuitStateResponseFromJSONTyped, WebhookCircuitStateResponseToJSON, WebhookCircuitStateResponseToJSONTyped, WebhookCircuitStateStateEnum, WebhookCircuitStateToJSON, WebhookCircuitStateToJSONTyped, type WebhookCreateResponse, type WebhookCreateResponseData, WebhookCreateResponseDataFromJSON, WebhookCreateResponseDataFromJSONTyped, WebhookCreateResponseDataStatusEnum, WebhookCreateResponseDataToJSON, WebhookCreateResponseDataToJSONTyped, WebhookCreateResponseFromJSON, WebhookCreateResponseFromJSONTyped, WebhookCreateResponseToJSON, WebhookCreateResponseToJSONTyped, type WebhookDeleteResponse, type WebhookDeleteResponseData, WebhookDeleteResponseDataFromJSON, WebhookDeleteResponseDataFromJSONTyped, WebhookDeleteResponseDataToJSON, WebhookDeleteResponseDataToJSONTyped, WebhookDeleteResponseFromJSON, WebhookDeleteResponseFromJSONTyped, WebhookDeleteResponseToJSON, WebhookDeleteResponseToJSONTyped, type WebhookDelivery, type WebhookDeliveryDetail, WebhookDeliveryDetailFromJSON, WebhookDeliveryDetailFromJSONTyped, WebhookDeliveryDetailStatusEnum, WebhookDeliveryDetailToJSON, WebhookDeliveryDetailToJSONTyped, WebhookDeliveryFromJSON, WebhookDeliveryFromJSONTyped, type WebhookDeliveryListResponse, WebhookDeliveryListResponseFromJSON, WebhookDeliveryListResponseFromJSONTyped, WebhookDeliveryListResponseToJSON, WebhookDeliveryListResponseToJSONTyped, type WebhookDeliveryResponse, WebhookDeliveryResponseFromJSON, WebhookDeliveryResponseFromJSONTyped, WebhookDeliveryResponseToJSON, WebhookDeliveryResponseToJSONTyped, type WebhookDeliveryRetryResponse, type WebhookDeliveryRetryResponseData, WebhookDeliveryRetryResponseDataFromJSON, WebhookDeliveryRetryResponseDataFromJSONTyped, WebhookDeliveryRetryResponseDataToJSON, WebhookDeliveryRetryResponseDataToJSONTyped, WebhookDeliveryRetryResponseFromJSON, WebhookDeliveryRetryResponseFromJSONTyped, WebhookDeliveryRetryResponseToJSON, WebhookDeliveryRetryResponseToJSONTyped, WebhookDeliveryStatusEnum, WebhookDeliveryToJSON, WebhookDeliveryToJSONTyped, type WebhookEventTypesResponse, type WebhookEventTypesResponseData, WebhookEventTypesResponseDataFromJSON, WebhookEventTypesResponseDataFromJSONTyped, WebhookEventTypesResponseDataToJSON, WebhookEventTypesResponseDataToJSONTyped, WebhookEventTypesResponseFromJSON, WebhookEventTypesResponseFromJSONTyped, WebhookEventTypesResponseToJSON, WebhookEventTypesResponseToJSONTyped, WebhookFromJSON, WebhookFromJSONTyped, type WebhookIpsResponse, type WebhookIpsResponseData, WebhookIpsResponseDataFromJSON, WebhookIpsResponseDataFromJSONTyped, WebhookIpsResponseDataToJSON, WebhookIpsResponseDataToJSONTyped, WebhookIpsResponseFromJSON, WebhookIpsResponseFromJSONTyped, WebhookIpsResponseToJSON, WebhookIpsResponseToJSONTyped, type WebhookJobResponse, WebhookJobResponseFromJSON, WebhookJobResponseFromJSONTyped, WebhookJobResponseToJSON, WebhookJobResponseToJSONTyped, type WebhookListResponse, WebhookListResponseFromJSON, WebhookListResponseFromJSONTyped, WebhookListResponseToJSON, WebhookListResponseToJSONTyped, type WebhookMetricsResponse, WebhookMetricsResponseFromJSON, WebhookMetricsResponseFromJSONTyped, WebhookMetricsResponseToJSON, WebhookMetricsResponseToJSONTyped, type WebhookRegion, WebhookRegionFromJSON, WebhookRegionFromJSONTyped, WebhookRegionToJSON, WebhookRegionToJSONTyped, type WebhookRegionsResponse, type WebhookRegionsResponseData, WebhookRegionsResponseDataFromJSON, WebhookRegionsResponseDataFromJSONTyped, WebhookRegionsResponseDataToJSON, WebhookRegionsResponseDataToJSONTyped, WebhookRegionsResponseFromJSON, WebhookRegionsResponseFromJSONTyped, WebhookRegionsResponseToJSON, WebhookRegionsResponseToJSONTyped, type WebhookReplayResponse, WebhookReplayResponseFromJSON, WebhookReplayResponseFromJSONTyped, WebhookReplayResponseToJSON, WebhookReplayResponseToJSONTyped, type WebhookResponse, WebhookResponseFromJSON, WebhookResponseFromJSONTyped, WebhookResponseToJSON, WebhookResponseToJSONTyped, type WebhookSecretRotateResponse, type WebhookSecretRotateResponseData, WebhookSecretRotateResponseDataFromJSON, WebhookSecretRotateResponseDataFromJSONTyped, WebhookSecretRotateResponseDataToJSON, WebhookSecretRotateResponseDataToJSONTyped, WebhookSecretRotateResponseFromJSON, WebhookSecretRotateResponseFromJSONTyped, WebhookSecretRotateResponseToJSON, WebhookSecretRotateResponseToJSONTyped, WebhookStatusEnum, type WebhookTestEventResponse, type WebhookTestEventResponseData, WebhookTestEventResponseDataFromJSON, WebhookTestEventResponseDataFromJSONTyped, WebhookTestEventResponseDataToJSON, WebhookTestEventResponseDataToJSONTyped, WebhookTestEventResponseFromJSON, WebhookTestEventResponseFromJSONTyped, WebhookTestEventResponseToJSON, WebhookTestEventResponseToJSONTyped, WebhookToJSON, WebhookToJSONTyped, type WebhookTransformTestResponse, WebhookTransformTestResponseFromJSON, WebhookTransformTestResponseFromJSONTyped, WebhookTransformTestResponseToJSON, WebhookTransformTestResponseToJSONTyped, type WebhookUsageResponse, WebhookUsageResponseFromJSON, WebhookUsageResponseFromJSONTyped, WebhookUsageResponseToJSON, WebhookUsageResponseToJSONTyped, WebhookVerificationError, type WebhookVersion, WebhookVersionFromJSON, WebhookVersionFromJSONTyped, WebhookVersionToJSON, WebhookVersionToJSONTyped, type WebhookVersionsResponse, type WebhookVersionsResponseData, WebhookVersionsResponseDataFromJSON, WebhookVersionsResponseDataFromJSONTyped, WebhookVersionsResponseDataToJSON, WebhookVersionsResponseDataToJSONTyped, WebhookVersionsResponseFromJSON, WebhookVersionsResponseFromJSONTyped, WebhookVersionsResponseToJSON, WebhookVersionsResponseToJSONTyped, WebhooksApi, type WebhooksApiBulkRetryWebhookDeliveriesOperationRequest, type WebhooksApiCloseWebhookCircuitRequest, type WebhooksApiCreateWebhookOperationRequest, type WebhooksApiDeleteWebhookRequest, type WebhooksApiGetWebhookCircuitStateRequest, type WebhooksApiGetWebhookDeliveryRequest, type WebhooksApiGetWebhookJobRequest, type WebhooksApiGetWebhookMetricsRequest, type WebhooksApiGetWebhookRequest, type WebhooksApiInterface, type WebhooksApiListWebhookDeliveriesRequest, type WebhooksApiListWebhookEventTypesRequest, type WebhooksApiListWebhooksRequest, type WebhooksApiReplayWebhookEventsOperationRequest, type WebhooksApiRetryWebhookDeliveryRequest, type WebhooksApiRotateWebhookSecretRequest, type WebhooksApiSendWebhookTestEventOperationRequest, type WebhooksApiTestWebhookTransformOperationRequest, type WebhooksApiUpdateWebhookOperationRequest, type WithdrawSubscriberConsentRequest, WithdrawSubscriberConsentRequestFromJSON, WithdrawSubscriberConsentRequestFromJSONTyped, WithdrawSubscriberConsentRequestToJSON, WithdrawSubscriberConsentRequestToJSONTyped, type WorkflowExecution, WorkflowExecutionFromJSON, WorkflowExecutionFromJSONTyped, WorkflowExecutionStatus, WorkflowExecutionStatusFromJSON, WorkflowExecutionStatusFromJSONTyped, WorkflowExecutionStatusToJSON, WorkflowExecutionStatusToJSONTyped, WorkflowExecutionToJSON, WorkflowExecutionToJSONTyped, type WorkflowStepExecution, WorkflowStepExecutionFromJSON, WorkflowStepExecutionFromJSONTyped, WorkflowStepExecutionStatus, WorkflowStepExecutionStatusFromJSON, WorkflowStepExecutionStatusFromJSONTyped, WorkflowStepExecutionStatusToJSON, WorkflowStepExecutionStatusToJSONTyped, WorkflowStepExecutionStepTypeEnum, WorkflowStepExecutionToJSON, WorkflowStepExecutionToJSONTyped, Zyphr, ZyphrAuthenticationError, ZyphrError, type ZyphrErrorOptions, ZyphrNotFoundError, type ZyphrOptions, ZyphrRateLimitError, ZyphrValidationError, ZyphrWebhookVerificationError, canConsumeForm, exists, instanceOfAddTopicSubscribersRequest, instanceOfApiError, instanceOfApiErrorError, instanceOfApiErrorMeta, instanceOfAuthEmailTemplate, instanceOfAuthEmailTemplateDefault, instanceOfAuthEmailTemplateDefaultResponse, instanceOfAuthEmailTemplateDeleteResponse, instanceOfAuthEmailTemplateDeleteResponseData, instanceOfAuthEmailTemplateListResponse, instanceOfAuthEmailTemplatePreviewDraft, instanceOfAuthEmailTemplatePreviewRequest, instanceOfAuthEmailTemplatePreviewResponse, instanceOfAuthEmailTemplatePreviewResult, instanceOfAuthEmailTemplateResponse, instanceOfAuthEmailTemplateTestRequest, instanceOfAuthEmailTemplateTestResponse, instanceOfAuthEmailTemplateTestResult, instanceOfAuthEmailTemplateVersion, instanceOfAuthEmailTemplateVersionsResponse, instanceOfAuthEmailType, instanceOfAuthLoginResponse, instanceOfAuthLoginResult, instanceOfAuthLoginResultMfaChallenge, instanceOfAuthResult, instanceOfAuthResultResponse, instanceOfAuthSession, instanceOfAuthTokens, instanceOfAuthUser, instanceOfAuthUserResponse, instanceOfAuthUserResponseData, instanceOfBatchPublishWaaSEvents201Response, instanceOfBatchRecipient, instanceOfBulkRetryWebhookDeliveriesRequest, instanceOfBulkUpsertAuthEmailTemplatesRequest, instanceOfBulkUpsertAuthEmailTemplatesResponse, instanceOfCategory, instanceOfCategoryListResponse, instanceOfCategoryResponse, instanceOfConfirmEmailVerificationRequest, instanceOfConfirmEmailVerificationResponse, instanceOfConfirmEmailVerificationResponseData, instanceOfConsentHistoryEntry, instanceOfConsentHistoryResponse, instanceOfConsentRecordResponse, instanceOfConsentRecordResponseData, instanceOfConsentStatus, instanceOfConsentStatusResponse, instanceOfConsentWithdrawResponse, instanceOfCreateCategoryRequest, instanceOfCreateSubscriberRequest, instanceOfCreateTemplateRequest, instanceOfCreateTopicRequest, instanceOfCreateWaaSApplication201Response, instanceOfCreateWaaSApplicationRequest, instanceOfCreateWaaSEndpoint201Response, instanceOfCreateWaaSEndpointRequest, instanceOfCreateWaaSEndpointResponse, instanceOfCreateWaaSEventType201Response, instanceOfCreateWaaSEventTypeRequest, instanceOfCreateWebhookRequest, instanceOfDeleteResult, instanceOfDeleteResultData, instanceOfDevice, instanceOfDeviceListResponse, instanceOfDevicePushTopic, instanceOfDevicePushTopicListResponse, instanceOfDevicePushTopicListResponseMeta, instanceOfDeviceResponse, instanceOfDeviceStats, instanceOfDeviceStatsResponse, instanceOfEmailAddress, instanceOfEmailAttachment, instanceOfEmailEvent, instanceOfEmailEventsResponse, instanceOfEmailListResponse, instanceOfEmailMessage, instanceOfEmailResponse, instanceOfEmailTrackingClickLink, instanceOfEmailTrackingClicks, instanceOfEmailTrackingData, instanceOfEmailTrackingOpens, instanceOfEmailTrackingResponse, instanceOfEndUserDeleteResponse, instanceOfEndUserDeleteResponseData, instanceOfExecutionCancelResponse, instanceOfExecutionCancelResponseData, instanceOfExecutionResponse, instanceOfExecutionRetryResponse, instanceOfExecutionRetryResponseData, instanceOfForgotPasswordRequest, instanceOfGenerateSubscriberToken200Response, instanceOfGenerateSubscriberToken200ResponseData, instanceOfGenerateSubscriberTokenRequest, instanceOfGenerateWaaSPortalToken201Response, instanceOfGetWaaSEndpoint200Response, instanceOfGetWaaSUsage200Response, instanceOfInAppNotification, instanceOfInboxListMeta, instanceOfInboxListResponse, instanceOfInboxNotificationResponse, instanceOfListWaaSApplications200Response, instanceOfListWaaSEndpointDeliveries200Response, instanceOfListWaaSEndpoints200Response, instanceOfListWaaSEventTypes200Response, instanceOfLoginRequest, instanceOfMagicLinkSendRequest, instanceOfMagicLinkVerifyRequest, instanceOfMagicLinkVerifyResponse, instanceOfMagicLinkVerifyResponseData, instanceOfMarkAllInboxReadRequest, instanceOfMarkAllReadData, instanceOfMarkAllReadResponse, instanceOfMarkAllSubscriberNotificationsReadRequest, instanceOfMarkInboxReadRequest, instanceOfMfaBackupCodesResponse, instanceOfMfaBackupCodesResponseData, instanceOfMfaDisableRequest, instanceOfMfaDisableResponse, instanceOfMfaDisableResponseData, instanceOfMfaEnrollRequest, instanceOfMfaEnrollmentResponse, instanceOfMfaEnrollmentResponseData, instanceOfMfaRegenerateBackupCodesRequest, instanceOfMfaStatusResponse, instanceOfMfaStatusResponseData, instanceOfMfaVerifyBackupRequest, instanceOfMfaVerifyBackupResponse, instanceOfMfaVerifyBackupResponseData, instanceOfMfaVerifyEnrollmentRequest, instanceOfMfaVerifyEnrollmentResponse, instanceOfMfaVerifyEnrollmentResponseData, instanceOfMfaVerifyRequest, instanceOfOAuthAuthorizationUrlResponse, instanceOfOAuthAuthorizationUrlResponseData, instanceOfOAuthCallbackRequest, instanceOfOAuthCallbackResponse, instanceOfOAuthCallbackResponseData, instanceOfOAuthConnection, instanceOfOAuthConnectionInfoResponse, instanceOfOAuthConnectionInfoResponseData, instanceOfOAuthConnectionsResponse, instanceOfOAuthConnectionsResponseData, instanceOfOAuthProvider, instanceOfOAuthProviderInfo, instanceOfOAuthProvidersResponse, instanceOfOAuthProvidersResponseData, instanceOfOAuthTokensRefreshResponse, instanceOfOAuthTokensRefreshResponseData, instanceOfOAuthTokensResponse, instanceOfOAuthTokensResponseData, instanceOfPaginationMeta, instanceOfPasswordRequirements, instanceOfPasswordRequirementsResponse, instanceOfPasswordRequirementsResponseData, instanceOfPhoneAuthAvailabilityResponse, instanceOfPhoneAuthAvailabilityResponseData, instanceOfPhoneLoginVerifyRequest, instanceOfPhoneOtpSendRequest, instanceOfPhoneOtpSentResponse, instanceOfPhoneOtpSentResponseData, instanceOfPhoneRegisterVerifyRequest, instanceOfPreferenceListResponse, instanceOfPublishWaaSEvent201Response, instanceOfPushDetailResponse, instanceOfPushEvent, instanceOfPushListResponse, instanceOfPushMessage, instanceOfPushMessageDetail, instanceOfPushMessageDetailAllOfActionButtons, instanceOfPushStatsData, instanceOfPushStatsResponse, instanceOfPushTopicDevice, instanceOfPushTopicDeviceListResponse, instanceOfPushTopicSubscribeData, instanceOfPushTopicSubscribeResponse, instanceOfPushTopicUnsubscribeData, instanceOfPushTopicUnsubscribeResponse, instanceOfRefreshOAuthTokensRequest, instanceOfRefreshSessionRequest, instanceOfRefreshTokenResponse, instanceOfRefreshTokenResponseData, instanceOfRegisterDeviceRequest, instanceOfRegisterRequest, instanceOfRemoveTopicSubscribersRequest, instanceOfRenameWebAuthnCredentialRequest, instanceOfRenderTemplateRequest, instanceOfReplayWebhookEventsRequest, instanceOfRequestMeta, instanceOfResetPasswordRequest, instanceOfResetPasswordResponse, instanceOfResubscribeRequest, instanceOfResubscribeResponse, instanceOfRevokeAllSessionsResponse, instanceOfRevokeAllSessionsResponseData, instanceOfRevokeSessionRequest, instanceOfSendBatchEmailRequest, instanceOfSendBatchEmailResponse, instanceOfSendBatchEmailResult, instanceOfSendBatchEmailResultItem, instanceOfSendBatchInAppMeta, instanceOfSendBatchInAppRequest, instanceOfSendBatchInAppResponse, instanceOfSendBatchSmsData, instanceOfSendBatchSmsRequest, instanceOfSendBatchSmsResponse, instanceOfSendEmailRequest, instanceOfSendEmailResponse, instanceOfSendEmailResponseData, instanceOfSendEmailResponseMeta, instanceOfSendEmailVerificationRequest, instanceOfSendInAppMeta, instanceOfSendInAppRequest, instanceOfSendInAppResponse, instanceOfSendPushRequest, instanceOfSendPushRequestActionButtonsInner, instanceOfSendPushResponse, instanceOfSendPushResponseData, instanceOfSendPushToTopicData, instanceOfSendPushToTopicRequest, instanceOfSendPushToTopicResponse, instanceOfSendSlackMessageRequest, instanceOfSendSlackMessageResponse, instanceOfSendSlackMessageResult, instanceOfSendSmsData, instanceOfSendSmsRequest, instanceOfSendSmsResponse, instanceOfSendTestSmsData, instanceOfSendTestSmsRequest, instanceOfSendTestSmsResponse, instanceOfSendWebhookTestEventRequest, instanceOfSessionListResponse, instanceOfSessionListResponseData, instanceOfSessionListResponseDataSessionInfo, instanceOfSetPreferencesRequest, instanceOfSetPreferencesRequestPreferencesInner, instanceOfSlackMessage, instanceOfSlackMessageListResponse, instanceOfSlackMessageListResponseMeta, instanceOfSlackMessageResponse, instanceOfSlackMessageStatus, instanceOfSlackMessageSummary, instanceOfSmsBatchResultMessage, instanceOfSmsBatchResultSummary, instanceOfSmsConfig, instanceOfSmsConfigDeleteResponse, instanceOfSmsConfigDeleteResponseData, instanceOfSmsConfigResponse, instanceOfSmsDetailResponse, instanceOfSmsListResponse, instanceOfSmsListResponseMeta, instanceOfSmsMessage, instanceOfSmsMessageDetail, instanceOfSubscribePushTopicRequest, instanceOfSubscriber, instanceOfSubscriberListResponse, instanceOfSubscriberPreference, instanceOfSubscriberResponse, instanceOfSuccessResult, instanceOfTemplate, instanceOfTemplateListResponse, instanceOfTemplateRenderResponse, instanceOfTemplateRenderedContent, instanceOfTemplateResponse, instanceOfTestWebhookTransformRequest, instanceOfTopic, instanceOfTopicDeleteResponse, instanceOfTopicDeleteResponseData, instanceOfTopicListResponse, instanceOfTopicResponse, instanceOfTopicStatsData, instanceOfTopicStatsDataTopicsBySubscriberCountInner, instanceOfTopicStatsResponse, instanceOfTopicSubscriber, instanceOfTopicSubscriberListResponse, instanceOfTopicSubscribersAddResponse, instanceOfTopicSubscribersAddResult, instanceOfTopicSubscribersRemoveResponse, instanceOfTopicSubscribersRemoveResult, instanceOfUnreadCountData, instanceOfUnreadCountResponse, instanceOfUnsubscribe, instanceOfUnsubscribeListResponse, instanceOfUnsubscribeRequest, instanceOfUnsubscribeResponse, instanceOfUpdateCategoryRequest, instanceOfUpdateEndUserRequest, instanceOfUpdateSubscriberPreferencesRequest, instanceOfUpdateSubscriberPreferencesRequestPreferencesInner, instanceOfUpdateSubscriberRequest, instanceOfUpdateTemplateRequest, instanceOfUpdateTopicRequest, instanceOfUpdateWaaSApplicationRequest, instanceOfUpdateWaaSEndpointRequest, instanceOfUpdateWaaSEventTypeRequest, instanceOfUpdateWebhookRequest, instanceOfUpsertAuthEmailTemplateRequest, instanceOfUpsertSmsConfigRequest, instanceOfUserDevicesDeleteResponse, instanceOfUserDevicesDeleteResponseData, instanceOfValidateResetTokenRequest, instanceOfValidateResetTokenResponse, instanceOfValidateResetTokenResponseData, instanceOfVerifySmsConfigData, instanceOfVerifySmsConfigResponse, instanceOfWaaSApplication, instanceOfWaaSBatchPublishRequest, instanceOfWaaSBatchPublishResponse, instanceOfWaaSDelivery, instanceOfWaaSEndpoint, instanceOfWaaSEventType, instanceOfWaaSPortalTokenRequest, instanceOfWaaSPortalTokenRequestTheme, instanceOfWaaSPortalTokenResponse, instanceOfWaaSPublishEventRequest, instanceOfWaaSPublishEventResponse, instanceOfWaaSUsageResponse, instanceOfWebAuthnChallengeOptions, instanceOfWebAuthnCredential, instanceOfWebAuthnCredentialListResponse, instanceOfWebAuthnCredentialListResponseData, instanceOfWebAuthnCredentialResponse, instanceOfWebAuthnStartAuthRequest, instanceOfWebAuthnStartAuthResponse, instanceOfWebAuthnStartRegistrationRequest, instanceOfWebAuthnStartRegistrationResponse, instanceOfWebAuthnStatusResponse, instanceOfWebAuthnStatusResponseData, instanceOfWebAuthnVerifyAuthRequest, instanceOfWebAuthnVerifyRegistrationRequest, instanceOfWebAuthnVerifyRegistrationResponse, instanceOfWebAuthnVerifyRegistrationResponseData, instanceOfWebhook, instanceOfWebhookAccountMetricsResponse, instanceOfWebhookBulkRetryResponse, instanceOfWebhookCircuitState, instanceOfWebhookCircuitStateResponse, instanceOfWebhookCreateResponse, instanceOfWebhookCreateResponseData, instanceOfWebhookDeleteResponse, instanceOfWebhookDeleteResponseData, instanceOfWebhookDelivery, instanceOfWebhookDeliveryDetail, instanceOfWebhookDeliveryListResponse, instanceOfWebhookDeliveryResponse, instanceOfWebhookDeliveryRetryResponse, instanceOfWebhookDeliveryRetryResponseData, instanceOfWebhookEventTypesResponse, instanceOfWebhookEventTypesResponseData, instanceOfWebhookIpsResponse, instanceOfWebhookIpsResponseData, instanceOfWebhookJobResponse, instanceOfWebhookListResponse, instanceOfWebhookMetricsResponse, instanceOfWebhookRegion, instanceOfWebhookRegionsResponse, instanceOfWebhookRegionsResponseData, instanceOfWebhookReplayResponse, instanceOfWebhookResponse, instanceOfWebhookSecretRotateResponse, instanceOfWebhookSecretRotateResponseData, instanceOfWebhookTestEventResponse, instanceOfWebhookTestEventResponseData, instanceOfWebhookTransformTestResponse, instanceOfWebhookUsageResponse, instanceOfWebhookVersion, instanceOfWebhookVersionsResponse, instanceOfWebhookVersionsResponseData, instanceOfWithdrawSubscriberConsentRequest, instanceOfWorkflowExecution, instanceOfWorkflowExecutionStatus, instanceOfWorkflowStepExecution, instanceOfWorkflowStepExecutionStatus, mapValues, parseErrorResponse, querystring };
|