twilio 5.7.2 → 5.8.0
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/lib/rest/events/v1/subscription.d.ts +0 -2
- package/lib/rest/events/v1/subscription.js +0 -2
- package/lib/rest/insights/v1/callSummaries.d.ts +24 -0
- package/lib/rest/insights/v1/callSummaries.js +8 -0
- package/lib/rest/lookups/v2/lookupOverride.d.ts +16 -1
- package/lib/rest/messaging/v1/service/usAppToPerson.d.ts +3 -3
- package/lib/rest/messaging/v1/service/usAppToPersonUsecase.d.ts +3 -3
- package/lib/rest/messaging/v1/tollfreeVerification.d.ts +3 -3
- package/lib/rest/messaging/v1/usecase.d.ts +3 -3
- package/lib/rest/numbers/v1/portingPortIn.d.ts +3 -3
- package/lib/rest/numbers/v2/regulatoryCompliance/endUser.d.ts +3 -3
- package/lib/rest/numbers/v2/regulatoryCompliance/regulation.d.ts +3 -3
- package/lib/rest/numbers/v2/regulatoryCompliance/supportingDocument.d.ts +3 -3
- package/lib/rest/sync/v1/service/document.d.ts +2 -2
- package/lib/rest/sync/v1/service/syncList/syncListItem.d.ts +2 -2
- package/lib/rest/sync/v1/service/syncMap/syncMapItem.d.ts +2 -2
- package/lib/rest/sync/v1/service/syncStream/streamMessage.d.ts +1 -1
- package/lib/rest/video/v1/composition.d.ts +1 -1
- package/lib/rest/video/v1/compositionHook.d.ts +2 -2
- package/lib/rest/video/v1/room/participant/subscribeRules.d.ts +1 -1
- package/lib/rest/video/v1/room/recordingRules.d.ts +1 -1
- package/lib/rest/video/v1/room/transcriptions.d.ts +8 -8
- package/lib/rest/video/v1/room/transcriptions.js +2 -2
- package/lib/rest/video/v1/room.d.ts +1 -1
- package/lib/twiml/VoiceResponse.d.ts +1 -1
- package/package.json +2 -2
|
@@ -10,8 +10,6 @@ import { SubscribedEventListInstance } from "./subscription/subscribedEvent";
|
|
|
10
10
|
export interface SubscriptionContextUpdateOptions {
|
|
11
11
|
/** A human readable description for the Subscription. */
|
|
12
12
|
description?: string;
|
|
13
|
-
/** The SID of the sink that events selected by this subscription should be sent to. Sink must be active for the subscription to be created. */
|
|
14
|
-
sinkSid?: string;
|
|
15
13
|
}
|
|
16
14
|
/**
|
|
17
15
|
* Options to pass to create a SubscriptionInstance
|
|
@@ -73,8 +73,6 @@ class SubscriptionContextImpl {
|
|
|
73
73
|
let data = {};
|
|
74
74
|
if (params["description"] !== undefined)
|
|
75
75
|
data["Description"] = params["description"];
|
|
76
|
-
if (params["sinkSid"] !== undefined)
|
|
77
|
-
data["SinkSid"] = params["sinkSid"];
|
|
78
76
|
const headers = {};
|
|
79
77
|
headers["Content-Type"] = "application/x-www-form-urlencoded";
|
|
80
78
|
headers["Accept"] = "application/json";
|
|
@@ -65,6 +65,14 @@ export interface CallSummariesListInstanceEachOptions {
|
|
|
65
65
|
voiceIntegrityEnabled?: boolean;
|
|
66
66
|
/** A unique SID identifier of the Branded Call. */
|
|
67
67
|
brandedBundleSid?: string;
|
|
68
|
+
/** Indicates whether the branded logo was displayed during the in_brand branded call. Possible values are true (logo was present) or false (logo was not present). */
|
|
69
|
+
brandedLogo?: boolean;
|
|
70
|
+
/** Indicates whether the Branded Call is in_band vs out_of_band. */
|
|
71
|
+
brandedType?: string;
|
|
72
|
+
/** Specifies the user-defined purpose for the call, as provided during the setup of in_band branded calling. */
|
|
73
|
+
brandedUseCase?: string;
|
|
74
|
+
/** Specifies the user-defined reason for the call, which will be displayed to the end user on their mobile device during an in_band branded call. */
|
|
75
|
+
brandedCallReason?: string;
|
|
68
76
|
/** A unique SID identifier of the Voice Integrity Profile. */
|
|
69
77
|
voiceIntegrityBundleSid?: string;
|
|
70
78
|
/** A Voice Integrity Use Case . Is of type enum. One of \'abandoned_cart\', \'appointment_reminders\', \'appointment_scheduling\', \'asset_management\', \'automated_support\', \'call_tracking\', \'click_to_call\', \'contact_tracing\', \'contactless_delivery\', \'customer_support\', \'dating/social\', \'delivery_notifications\', \'distance_learning\', \'emergency_notifications\', \'employee_notifications\', \'exam_proctoring\', \'field_notifications\', \'first_responder\', \'fraud_alerts\', \'group_messaging\', \'identify_&_verification\', \'intelligent_routing\', \'lead_alerts\', \'lead_distribution\', \'lead_generation\', \'lead_management\', \'lead_nurturing\', \'marketing_events\', \'mass_alerts\', \'meetings/collaboration\', \'order_notifications\', \'outbound_dialer\', \'pharmacy\', \'phone_system\', \'purchase_confirmation\', \'remote_appointments\', \'rewards_program\', \'self-service\', \'service_alerts\', \'shift_management\', \'survey/research\', \'telehealth\', \'telemarketing\', \'therapy_(individual+group)\'. */
|
|
@@ -142,6 +150,14 @@ export interface CallSummariesListInstanceOptions {
|
|
|
142
150
|
voiceIntegrityEnabled?: boolean;
|
|
143
151
|
/** A unique SID identifier of the Branded Call. */
|
|
144
152
|
brandedBundleSid?: string;
|
|
153
|
+
/** Indicates whether the branded logo was displayed during the in_brand branded call. Possible values are true (logo was present) or false (logo was not present). */
|
|
154
|
+
brandedLogo?: boolean;
|
|
155
|
+
/** Indicates whether the Branded Call is in_band vs out_of_band. */
|
|
156
|
+
brandedType?: string;
|
|
157
|
+
/** Specifies the user-defined purpose for the call, as provided during the setup of in_band branded calling. */
|
|
158
|
+
brandedUseCase?: string;
|
|
159
|
+
/** Specifies the user-defined reason for the call, which will be displayed to the end user on their mobile device during an in_band branded call. */
|
|
160
|
+
brandedCallReason?: string;
|
|
145
161
|
/** A unique SID identifier of the Voice Integrity Profile. */
|
|
146
162
|
voiceIntegrityBundleSid?: string;
|
|
147
163
|
/** A Voice Integrity Use Case . Is of type enum. One of \'abandoned_cart\', \'appointment_reminders\', \'appointment_scheduling\', \'asset_management\', \'automated_support\', \'call_tracking\', \'click_to_call\', \'contact_tracing\', \'contactless_delivery\', \'customer_support\', \'dating/social\', \'delivery_notifications\', \'distance_learning\', \'emergency_notifications\', \'employee_notifications\', \'exam_proctoring\', \'field_notifications\', \'first_responder\', \'fraud_alerts\', \'group_messaging\', \'identify_&_verification\', \'intelligent_routing\', \'lead_alerts\', \'lead_distribution\', \'lead_generation\', \'lead_management\', \'lead_nurturing\', \'marketing_events\', \'mass_alerts\', \'meetings/collaboration\', \'order_notifications\', \'outbound_dialer\', \'pharmacy\', \'phone_system\', \'purchase_confirmation\', \'remote_appointments\', \'rewards_program\', \'self-service\', \'service_alerts\', \'shift_management\', \'survey/research\', \'telehealth\', \'telemarketing\', \'therapy_(individual+group)\'. */
|
|
@@ -215,6 +231,14 @@ export interface CallSummariesListInstancePageOptions {
|
|
|
215
231
|
voiceIntegrityEnabled?: boolean;
|
|
216
232
|
/** A unique SID identifier of the Branded Call. */
|
|
217
233
|
brandedBundleSid?: string;
|
|
234
|
+
/** Indicates whether the branded logo was displayed during the in_brand branded call. Possible values are true (logo was present) or false (logo was not present). */
|
|
235
|
+
brandedLogo?: boolean;
|
|
236
|
+
/** Indicates whether the Branded Call is in_band vs out_of_band. */
|
|
237
|
+
brandedType?: string;
|
|
238
|
+
/** Specifies the user-defined purpose for the call, as provided during the setup of in_band branded calling. */
|
|
239
|
+
brandedUseCase?: string;
|
|
240
|
+
/** Specifies the user-defined reason for the call, which will be displayed to the end user on their mobile device during an in_band branded call. */
|
|
241
|
+
brandedCallReason?: string;
|
|
218
242
|
/** A unique SID identifier of the Voice Integrity Profile. */
|
|
219
243
|
voiceIntegrityBundleSid?: string;
|
|
220
244
|
/** A Voice Integrity Use Case . Is of type enum. One of \'abandoned_cart\', \'appointment_reminders\', \'appointment_scheduling\', \'asset_management\', \'automated_support\', \'call_tracking\', \'click_to_call\', \'contact_tracing\', \'contactless_delivery\', \'customer_support\', \'dating/social\', \'delivery_notifications\', \'distance_learning\', \'emergency_notifications\', \'employee_notifications\', \'exam_proctoring\', \'field_notifications\', \'first_responder\', \'fraud_alerts\', \'group_messaging\', \'identify_&_verification\', \'intelligent_routing\', \'lead_alerts\', \'lead_distribution\', \'lead_generation\', \'lead_management\', \'lead_nurturing\', \'marketing_events\', \'mass_alerts\', \'meetings/collaboration\', \'order_notifications\', \'outbound_dialer\', \'pharmacy\', \'phone_system\', \'purchase_confirmation\', \'remote_appointments\', \'rewards_program\', \'self-service\', \'service_alerts\', \'shift_management\', \'survey/research\', \'telehealth\', \'telemarketing\', \'therapy_(individual+group)\'. */
|
|
@@ -88,6 +88,14 @@ function CallSummariesListInstance(version) {
|
|
|
88
88
|
data["VoiceIntegrityEnabled"] = serialize.bool(params["voiceIntegrityEnabled"]);
|
|
89
89
|
if (params["brandedBundleSid"] !== undefined)
|
|
90
90
|
data["BrandedBundleSid"] = params["brandedBundleSid"];
|
|
91
|
+
if (params["brandedLogo"] !== undefined)
|
|
92
|
+
data["BrandedLogo"] = serialize.bool(params["brandedLogo"]);
|
|
93
|
+
if (params["brandedType"] !== undefined)
|
|
94
|
+
data["BrandedType"] = params["brandedType"];
|
|
95
|
+
if (params["brandedUseCase"] !== undefined)
|
|
96
|
+
data["BrandedUseCase"] = params["brandedUseCase"];
|
|
97
|
+
if (params["brandedCallReason"] !== undefined)
|
|
98
|
+
data["BrandedCallReason"] = params["brandedCallReason"];
|
|
91
99
|
if (params["voiceIntegrityBundleSid"] !== undefined)
|
|
92
100
|
data["VoiceIntegrityBundleSid"] = params["voiceIntegrityBundleSid"];
|
|
93
101
|
if (params["voiceIntegrityUseCase"] !== undefined)
|
|
@@ -2,7 +2,13 @@
|
|
|
2
2
|
import { inspect, InspectOptions } from "util";
|
|
3
3
|
import V2 from "../V2";
|
|
4
4
|
export declare class OverridesRequest {
|
|
5
|
+
/**
|
|
6
|
+
* The new line type to override the original line type
|
|
7
|
+
*/
|
|
5
8
|
"line_type"?: string;
|
|
9
|
+
/**
|
|
10
|
+
* The reason for the override
|
|
11
|
+
*/
|
|
6
12
|
"reason"?: string;
|
|
7
13
|
}
|
|
8
14
|
/**
|
|
@@ -121,8 +127,17 @@ export declare class LookupOverrideInstance {
|
|
|
121
127
|
protected _solution: LookupOverrideContextSolution;
|
|
122
128
|
protected _context?: LookupOverrideContext;
|
|
123
129
|
constructor(_version: V2, payload: LookupOverrideResource, field?: string, phoneNumber?: string);
|
|
130
|
+
/**
|
|
131
|
+
* The phone number for which the override was created
|
|
132
|
+
*/
|
|
124
133
|
phoneNumber: string;
|
|
134
|
+
/**
|
|
135
|
+
* The original line type
|
|
136
|
+
*/
|
|
125
137
|
originalLineType: string;
|
|
138
|
+
/**
|
|
139
|
+
* The new line type after the override
|
|
140
|
+
*/
|
|
126
141
|
overriddenLineType: string;
|
|
127
142
|
/**
|
|
128
143
|
* The reason for the override
|
|
@@ -130,7 +145,7 @@ export declare class LookupOverrideInstance {
|
|
|
130
145
|
overrideReason: string;
|
|
131
146
|
overrideTimestamp: Date;
|
|
132
147
|
/**
|
|
133
|
-
* The user who
|
|
148
|
+
* The Account SID for the user who made the override
|
|
134
149
|
*/
|
|
135
150
|
overriddenByAccountSid: string;
|
|
136
151
|
/**
|
|
@@ -175,7 +175,7 @@ interface UsAppToPersonResource {
|
|
|
175
175
|
date_updated: Date;
|
|
176
176
|
url: string;
|
|
177
177
|
mock: boolean;
|
|
178
|
-
errors: Array<
|
|
178
|
+
errors: Array<any>;
|
|
179
179
|
}
|
|
180
180
|
export declare class UsAppToPersonInstance {
|
|
181
181
|
protected _version: V1;
|
|
@@ -293,7 +293,7 @@ export declare class UsAppToPersonInstance {
|
|
|
293
293
|
/**
|
|
294
294
|
* Details indicating why a campaign registration failed. These errors can indicate one or more fields that were incorrect or did not meet review requirements.
|
|
295
295
|
*/
|
|
296
|
-
errors: Array<
|
|
296
|
+
errors: Array<any>;
|
|
297
297
|
private get _proxy();
|
|
298
298
|
/**
|
|
299
299
|
* Remove a UsAppToPersonInstance
|
|
@@ -353,7 +353,7 @@ export declare class UsAppToPersonInstance {
|
|
|
353
353
|
dateUpdated: Date;
|
|
354
354
|
url: string;
|
|
355
355
|
mock: boolean;
|
|
356
|
-
errors:
|
|
356
|
+
errors: any[];
|
|
357
357
|
};
|
|
358
358
|
[inspect.custom](_depth: any, options: InspectOptions): string;
|
|
359
359
|
}
|
|
@@ -40,7 +40,7 @@ export interface UsAppToPersonUsecaseListInstance {
|
|
|
40
40
|
}
|
|
41
41
|
export declare function UsAppToPersonUsecaseListInstance(version: V1, messagingServiceSid: string): UsAppToPersonUsecaseListInstance;
|
|
42
42
|
interface UsAppToPersonUsecaseResource {
|
|
43
|
-
us_app_to_person_usecases: Array<
|
|
43
|
+
us_app_to_person_usecases: Array<any>;
|
|
44
44
|
}
|
|
45
45
|
export declare class UsAppToPersonUsecaseInstance {
|
|
46
46
|
protected _version: V1;
|
|
@@ -48,14 +48,14 @@ export declare class UsAppToPersonUsecaseInstance {
|
|
|
48
48
|
/**
|
|
49
49
|
* Human readable name, code, description and post_approval_required (indicates whether or not post approval is required for this Use Case) of A2P Campaign Use Cases.
|
|
50
50
|
*/
|
|
51
|
-
usAppToPersonUsecases: Array<
|
|
51
|
+
usAppToPersonUsecases: Array<any>;
|
|
52
52
|
/**
|
|
53
53
|
* Provide a user-friendly representation
|
|
54
54
|
*
|
|
55
55
|
* @returns Object
|
|
56
56
|
*/
|
|
57
57
|
toJSON(): {
|
|
58
|
-
usAppToPersonUsecases:
|
|
58
|
+
usAppToPersonUsecases: any[];
|
|
59
59
|
};
|
|
60
60
|
[inspect.custom](_depth: any, options: InspectOptions): string;
|
|
61
61
|
}
|
|
@@ -263,7 +263,7 @@ interface TollfreeVerificationResource {
|
|
|
263
263
|
error_code: number;
|
|
264
264
|
edit_expiration: Date;
|
|
265
265
|
edit_allowed: boolean;
|
|
266
|
-
rejection_reasons: Array<
|
|
266
|
+
rejection_reasons: Array<any>;
|
|
267
267
|
resource_links: Record<string, object>;
|
|
268
268
|
external_reference_id: string;
|
|
269
269
|
}
|
|
@@ -405,7 +405,7 @@ export declare class TollfreeVerificationInstance {
|
|
|
405
405
|
/**
|
|
406
406
|
* A list of rejection reasons and codes describing why a Tollfree Verification has been rejected.
|
|
407
407
|
*/
|
|
408
|
-
rejectionReasons: Array<
|
|
408
|
+
rejectionReasons: Array<any>;
|
|
409
409
|
/**
|
|
410
410
|
* The URLs of the documents associated with the Tollfree Verification resource.
|
|
411
411
|
*/
|
|
@@ -488,7 +488,7 @@ export declare class TollfreeVerificationInstance {
|
|
|
488
488
|
errorCode: number;
|
|
489
489
|
editExpiration: Date;
|
|
490
490
|
editAllowed: boolean;
|
|
491
|
-
rejectionReasons:
|
|
491
|
+
rejectionReasons: any[];
|
|
492
492
|
resourceLinks: Record<string, object>;
|
|
493
493
|
externalReferenceId: string;
|
|
494
494
|
};
|
|
@@ -23,7 +23,7 @@ export interface UsecaseListInstance {
|
|
|
23
23
|
}
|
|
24
24
|
export declare function UsecaseListInstance(version: V1): UsecaseListInstance;
|
|
25
25
|
interface UsecaseResource {
|
|
26
|
-
usecases: Array<
|
|
26
|
+
usecases: Array<any>;
|
|
27
27
|
}
|
|
28
28
|
export declare class UsecaseInstance {
|
|
29
29
|
protected _version: V1;
|
|
@@ -31,14 +31,14 @@ export declare class UsecaseInstance {
|
|
|
31
31
|
/**
|
|
32
32
|
* Human readable use case details (usecase, description and purpose) of Messaging Service Use Cases.
|
|
33
33
|
*/
|
|
34
|
-
usecases: Array<
|
|
34
|
+
usecases: Array<any>;
|
|
35
35
|
/**
|
|
36
36
|
* Provide a user-friendly representation
|
|
37
37
|
*
|
|
38
38
|
* @returns Object
|
|
39
39
|
*/
|
|
40
40
|
toJSON(): {
|
|
41
|
-
usecases:
|
|
41
|
+
usecases: any[];
|
|
42
42
|
};
|
|
43
43
|
[inspect.custom](_depth: any, options: InspectOptions): string;
|
|
44
44
|
}
|
|
@@ -58,7 +58,7 @@ interface PortingPortInResource {
|
|
|
58
58
|
target_port_in_time_range_start: string;
|
|
59
59
|
target_port_in_time_range_end: string;
|
|
60
60
|
port_in_request_status: string;
|
|
61
|
-
losing_carrier_information:
|
|
61
|
+
losing_carrier_information: Record<string, object>;
|
|
62
62
|
phone_numbers: Array<any>;
|
|
63
63
|
documents: Array<string>;
|
|
64
64
|
date_created: Date;
|
|
@@ -103,7 +103,7 @@ export declare class PortingPortInInstance {
|
|
|
103
103
|
/**
|
|
104
104
|
* Details regarding the customer’s information with the losing carrier. These values will be used to generate the letter of authorization and should match the losing carrier’s data as closely as possible to ensure the port is accepted.
|
|
105
105
|
*/
|
|
106
|
-
losingCarrierInformation:
|
|
106
|
+
losingCarrierInformation: Record<string, object>;
|
|
107
107
|
phoneNumbers: Array<any>;
|
|
108
108
|
/**
|
|
109
109
|
* List of document SIDs for all phone numbers included in the port in request. At least one document SID referring to a document of the type Utility Bill is required.
|
|
@@ -141,7 +141,7 @@ export declare class PortingPortInInstance {
|
|
|
141
141
|
targetPortInTimeRangeStart: string;
|
|
142
142
|
targetPortInTimeRangeEnd: string;
|
|
143
143
|
portInRequestStatus: string;
|
|
144
|
-
losingCarrierInformation:
|
|
144
|
+
losingCarrierInformation: Record<string, object>;
|
|
145
145
|
phoneNumbers: any[];
|
|
146
146
|
documents: string[];
|
|
147
147
|
dateCreated: Date;
|
|
@@ -127,7 +127,7 @@ interface EndUserResource {
|
|
|
127
127
|
account_sid: string;
|
|
128
128
|
friendly_name: string;
|
|
129
129
|
type: EndUserType;
|
|
130
|
-
attributes:
|
|
130
|
+
attributes: Record<string, object>;
|
|
131
131
|
date_created: Date;
|
|
132
132
|
date_updated: Date;
|
|
133
133
|
url: string;
|
|
@@ -153,7 +153,7 @@ export declare class EndUserInstance {
|
|
|
153
153
|
/**
|
|
154
154
|
* The set of parameters that are the attributes of the End Users resource which are listed in the End User Types.
|
|
155
155
|
*/
|
|
156
|
-
attributes:
|
|
156
|
+
attributes: Record<string, object>;
|
|
157
157
|
/**
|
|
158
158
|
* The date and time in GMT when the resource was created specified in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format.
|
|
159
159
|
*/
|
|
@@ -210,7 +210,7 @@ export declare class EndUserInstance {
|
|
|
210
210
|
accountSid: string;
|
|
211
211
|
friendlyName: string;
|
|
212
212
|
type: EndUserType;
|
|
213
|
-
attributes:
|
|
213
|
+
attributes: Record<string, object>;
|
|
214
214
|
dateCreated: Date;
|
|
215
215
|
dateUpdated: Date;
|
|
216
216
|
url: string;
|
|
@@ -121,7 +121,7 @@ interface RegulationResource {
|
|
|
121
121
|
iso_country: string;
|
|
122
122
|
number_type: string;
|
|
123
123
|
end_user_type: RegulationEndUserType;
|
|
124
|
-
requirements:
|
|
124
|
+
requirements: Record<string, object>;
|
|
125
125
|
url: string;
|
|
126
126
|
}
|
|
127
127
|
export declare class RegulationInstance {
|
|
@@ -149,7 +149,7 @@ export declare class RegulationInstance {
|
|
|
149
149
|
/**
|
|
150
150
|
* The SID of an object that holds the regulatory information of the phone number country, phone number type, and end user type.
|
|
151
151
|
*/
|
|
152
|
-
requirements:
|
|
152
|
+
requirements: Record<string, object>;
|
|
153
153
|
/**
|
|
154
154
|
* The absolute URL of the Regulation resource.
|
|
155
155
|
*/
|
|
@@ -183,7 +183,7 @@ export declare class RegulationInstance {
|
|
|
183
183
|
isoCountry: string;
|
|
184
184
|
numberType: string;
|
|
185
185
|
endUserType: RegulationEndUserType;
|
|
186
|
-
requirements:
|
|
186
|
+
requirements: Record<string, object>;
|
|
187
187
|
url: string;
|
|
188
188
|
};
|
|
189
189
|
[inspect.custom](_depth: any, options: InspectOptions): string;
|
|
@@ -131,7 +131,7 @@ interface SupportingDocumentResource {
|
|
|
131
131
|
failure_reason: string;
|
|
132
132
|
errors: Array<any>;
|
|
133
133
|
type: string;
|
|
134
|
-
attributes:
|
|
134
|
+
attributes: Record<string, object>;
|
|
135
135
|
date_created: Date;
|
|
136
136
|
date_updated: Date;
|
|
137
137
|
url: string;
|
|
@@ -173,7 +173,7 @@ export declare class SupportingDocumentInstance {
|
|
|
173
173
|
/**
|
|
174
174
|
* The set of parameters that are the attributes of the Supporting Documents resource which are listed in the Supporting Document Types.
|
|
175
175
|
*/
|
|
176
|
-
attributes:
|
|
176
|
+
attributes: Record<string, object>;
|
|
177
177
|
/**
|
|
178
178
|
* The date and time in GMT when the resource was created specified in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format.
|
|
179
179
|
*/
|
|
@@ -234,7 +234,7 @@ export declare class SupportingDocumentInstance {
|
|
|
234
234
|
failureReason: string;
|
|
235
235
|
errors: any[];
|
|
236
236
|
type: string;
|
|
237
|
-
attributes:
|
|
237
|
+
attributes: Record<string, object>;
|
|
238
238
|
dateCreated: Date;
|
|
239
239
|
dateUpdated: Date;
|
|
240
240
|
url: string;
|
|
@@ -11,7 +11,7 @@ export interface DocumentContextUpdateOptions {
|
|
|
11
11
|
/** The If-Match HTTP request header */
|
|
12
12
|
ifMatch?: string;
|
|
13
13
|
/** A JSON string that represents an arbitrary, schema-less object that the Sync Document stores. Can be up to 16 KiB in length. */
|
|
14
|
-
data?:
|
|
14
|
+
data?: any;
|
|
15
15
|
/** How long, [in seconds](https://www.twilio.com/docs/sync/limits#sync-payload-limits), before the Sync Document expires and is deleted (time-to-live). */
|
|
16
16
|
ttl?: number;
|
|
17
17
|
}
|
|
@@ -22,7 +22,7 @@ export interface DocumentListInstanceCreateOptions {
|
|
|
22
22
|
/** An application-defined string that uniquely identifies the Sync Document */
|
|
23
23
|
uniqueName?: string;
|
|
24
24
|
/** A JSON string that represents an arbitrary, schema-less object that the Sync Document stores. Can be up to 16 KiB in length. */
|
|
25
|
-
data?:
|
|
25
|
+
data?: any;
|
|
26
26
|
/** How long, [in seconds](https://www.twilio.com/docs/sync/limits#sync-payload-limits), before the Sync Document expires and is deleted (the Sync Document\\\'s time-to-live). */
|
|
27
27
|
ttl?: number;
|
|
28
28
|
}
|
|
@@ -19,7 +19,7 @@ export interface SyncListItemContextUpdateOptions {
|
|
|
19
19
|
/** If provided, applies this mutation if (and only if) the “revision” field of this [map item] matches the provided value. This matches the semantics of (and is implemented with) the HTTP [If-Match header](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/If-Match). */
|
|
20
20
|
ifMatch?: string;
|
|
21
21
|
/** A JSON string that represents an arbitrary, schema-less object that the List Item stores. Can be up to 16 KiB in length. */
|
|
22
|
-
data?:
|
|
22
|
+
data?: any;
|
|
23
23
|
/** An alias for `item_ttl`. If both parameters are provided, this value is ignored. */
|
|
24
24
|
ttl?: number;
|
|
25
25
|
/** How long, [in seconds](https://www.twilio.com/docs/sync/limits#sync-payload-limits), before the List Item expires (time-to-live) and is deleted. */
|
|
@@ -32,7 +32,7 @@ export interface SyncListItemContextUpdateOptions {
|
|
|
32
32
|
*/
|
|
33
33
|
export interface SyncListItemListInstanceCreateOptions {
|
|
34
34
|
/** A JSON string that represents an arbitrary, schema-less object that the List Item stores. Can be up to 16 KiB in length. */
|
|
35
|
-
data:
|
|
35
|
+
data: any;
|
|
36
36
|
/** An alias for `item_ttl`. If both parameters are provided, this value is ignored. */
|
|
37
37
|
ttl?: number;
|
|
38
38
|
/** How long, [in seconds](https://www.twilio.com/docs/sync/limits#sync-payload-limits), before the List Item expires (time-to-live) and is deleted. */
|
|
@@ -19,7 +19,7 @@ export interface SyncMapItemContextUpdateOptions {
|
|
|
19
19
|
/** If provided, applies this mutation if (and only if) the “revision” field of this [map item] matches the provided value. This matches the semantics of (and is implemented with) the HTTP [If-Match header](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/If-Match). */
|
|
20
20
|
ifMatch?: string;
|
|
21
21
|
/** A JSON string that represents an arbitrary, schema-less object that the Map Item stores. Can be up to 16 KiB in length. */
|
|
22
|
-
data?:
|
|
22
|
+
data?: any;
|
|
23
23
|
/** An alias for `item_ttl`. If both parameters are provided, this value is ignored. */
|
|
24
24
|
ttl?: number;
|
|
25
25
|
/** How long, [in seconds](https://www.twilio.com/docs/sync/limits#sync-payload-limits), before the Map Item expires (time-to-live) and is deleted. */
|
|
@@ -34,7 +34,7 @@ export interface SyncMapItemListInstanceCreateOptions {
|
|
|
34
34
|
/** The unique, user-defined key for the Map Item. Can be up to 320 characters long. */
|
|
35
35
|
key: string;
|
|
36
36
|
/** A JSON string that represents an arbitrary, schema-less object that the Map Item stores. Can be up to 16 KiB in length. */
|
|
37
|
-
data:
|
|
37
|
+
data: any;
|
|
38
38
|
/** An alias for `item_ttl`. If both parameters are provided, this value is ignored. */
|
|
39
39
|
ttl?: number;
|
|
40
40
|
/** How long, [in seconds](https://www.twilio.com/docs/sync/limits#sync-payload-limits), before the Map Item expires (time-to-live) and is deleted. */
|
|
@@ -6,7 +6,7 @@ import V1 from "../../../V1";
|
|
|
6
6
|
*/
|
|
7
7
|
export interface StreamMessageListInstanceCreateOptions {
|
|
8
8
|
/** A JSON string that represents an arbitrary, schema-less object that makes up the Stream Message body. Can be up to 4 KiB in length. */
|
|
9
|
-
data:
|
|
9
|
+
data: any;
|
|
10
10
|
}
|
|
11
11
|
export interface StreamMessageSolution {
|
|
12
12
|
serviceSid: string;
|
|
@@ -18,7 +18,7 @@ export interface CompositionListInstanceCreateOptions {
|
|
|
18
18
|
/** The SID of the Group Room with the media tracks to be used as composition sources. */
|
|
19
19
|
roomSid: string;
|
|
20
20
|
/** An object that describes the video layout of the composition in terms of regions. See [Specifying Video Layouts](https://www.twilio.com/docs/video/api/compositions-resource#specifying-video-layouts) for more info. Please, be aware that either video_layout or audio_sources have to be provided to get a valid creation request */
|
|
21
|
-
videoLayout?:
|
|
21
|
+
videoLayout?: any;
|
|
22
22
|
/** An array of track names from the same group room to merge into the new composition. Can include zero or more track names. The new composition includes all audio sources specified in `audio_sources` except for those specified in `audio_sources_excluded`. The track names in this parameter can include an asterisk as a wild card character, which will match zero or more characters in a track name. For example, `student*` includes `student` as well as `studentTeam`. Please, be aware that either video_layout or audio_sources have to be provided to get a valid creation request */
|
|
23
23
|
audioSources?: Array<string>;
|
|
24
24
|
/** An array of track names to exclude. The new composition includes all audio sources specified in `audio_sources` except for those specified in `audio_sources_excluded`. The track names in this parameter can include an asterisk as a wild card character, which will match zero or more characters in a track name. For example, `student*` excludes `student` as well as `studentTeam`. This parameter can also be empty. */
|
|
@@ -16,7 +16,7 @@ export interface CompositionHookContextUpdateOptions {
|
|
|
16
16
|
/** Whether the composition hook is active. When `true`, the composition hook will be triggered for every completed Group Room in the account. When `false`, the composition hook never triggers. */
|
|
17
17
|
enabled?: boolean;
|
|
18
18
|
/** A JSON object that describes the video layout of the composition hook in terms of regions. See [Specifying Video Layouts](https://www.twilio.com/docs/video/api/compositions-resource#specifying-video-layouts) for more info. */
|
|
19
|
-
videoLayout?:
|
|
19
|
+
videoLayout?: any;
|
|
20
20
|
/** An array of track names from the same group room to merge into the compositions created by the composition hook. Can include zero or more track names. A composition triggered by the composition hook includes all audio sources specified in `audio_sources` except those specified in `audio_sources_excluded`. The track names in this parameter can include an asterisk as a wild card character, which matches zero or more characters in a track name. For example, `student*` includes tracks named `student` as well as `studentTeam`. */
|
|
21
21
|
audioSources?: Array<string>;
|
|
22
22
|
/** An array of track names to exclude. A composition triggered by the composition hook includes all audio sources specified in `audio_sources` except for those specified in `audio_sources_excluded`. The track names in this parameter can include an asterisk as a wild card character, which matches zero or more characters in a track name. For example, `student*` excludes `student` as well as `studentTeam`. This parameter can also be empty. */
|
|
@@ -41,7 +41,7 @@ export interface CompositionHookListInstanceCreateOptions {
|
|
|
41
41
|
/** Whether the composition hook is active. When `true`, the composition hook will be triggered for every completed Group Room in the account. When `false`, the composition hook will never be triggered. */
|
|
42
42
|
enabled?: boolean;
|
|
43
43
|
/** An object that describes the video layout of the composition hook in terms of regions. See [Specifying Video Layouts](https://www.twilio.com/docs/video/api/compositions-resource#specifying-video-layouts) for more info. */
|
|
44
|
-
videoLayout?:
|
|
44
|
+
videoLayout?: any;
|
|
45
45
|
/** An array of track names from the same group room to merge into the compositions created by the composition hook. Can include zero or more track names. A composition triggered by the composition hook includes all audio sources specified in `audio_sources` except those specified in `audio_sources_excluded`. The track names in this parameter can include an asterisk as a wild card character, which matches zero or more characters in a track name. For example, `student*` includes tracks named `student` as well as `studentTeam`. */
|
|
46
46
|
audioSources?: Array<string>;
|
|
47
47
|
/** An array of track names to exclude. A composition triggered by the composition hook includes all audio sources specified in `audio_sources` except for those specified in `audio_sources_excluded`. The track names in this parameter can include an asterisk as a wild card character, which matches zero or more characters in a track name. For example, `student*` excludes `student` as well as `studentTeam`. This parameter can also be empty. */
|
|
@@ -14,7 +14,7 @@ export declare class VideoV1RoomRoomParticipantRoomParticipantSubscribeRuleRules
|
|
|
14
14
|
*/
|
|
15
15
|
export interface SubscribeRulesListInstanceUpdateOptions {
|
|
16
16
|
/** A JSON-encoded array of subscribe rules. See the [Specifying Subscribe Rules](https://www.twilio.com/docs/video/api/track-subscriptions#specifying-sr) section for further information. */
|
|
17
|
-
rules?:
|
|
17
|
+
rules?: any;
|
|
18
18
|
}
|
|
19
19
|
export interface SubscribeRulesSolution {
|
|
20
20
|
roomSid: string;
|
|
@@ -13,7 +13,7 @@ export declare class VideoV1RoomRoomRecordingRuleRules {
|
|
|
13
13
|
*/
|
|
14
14
|
export interface RecordingRulesListInstanceUpdateOptions {
|
|
15
15
|
/** A JSON-encoded array of recording rules. */
|
|
16
|
-
rules?:
|
|
16
|
+
rules?: any;
|
|
17
17
|
}
|
|
18
18
|
export interface RecordingRulesSolution {
|
|
19
19
|
roomSid: string;
|
|
@@ -6,7 +6,7 @@ import V1 from "../../V1";
|
|
|
6
6
|
/**
|
|
7
7
|
* The status of the transcriptions resource.
|
|
8
8
|
*/
|
|
9
|
-
export type TranscriptionsStatus = "
|
|
9
|
+
export type TranscriptionsStatus = "started" | "stopped" | "failed";
|
|
10
10
|
/**
|
|
11
11
|
* Options to pass to update a TranscriptionsInstance
|
|
12
12
|
*/
|
|
@@ -106,20 +106,20 @@ export declare class TranscriptionsContextImpl implements TranscriptionsContext
|
|
|
106
106
|
[inspect.custom](_depth: any, options: InspectOptions): string;
|
|
107
107
|
}
|
|
108
108
|
interface TranscriptionsPayload extends TwilioResponsePayload {
|
|
109
|
-
|
|
109
|
+
transcriptions: TranscriptionsResource[];
|
|
110
110
|
}
|
|
111
111
|
interface TranscriptionsResource {
|
|
112
112
|
ttid: string;
|
|
113
113
|
account_sid: string;
|
|
114
114
|
room_sid: string;
|
|
115
115
|
status: TranscriptionsStatus;
|
|
116
|
-
identity: string;
|
|
117
116
|
date_created: Date;
|
|
118
117
|
date_updated: Date;
|
|
119
118
|
start_time: Date;
|
|
120
119
|
end_time: Date;
|
|
121
120
|
duration: number;
|
|
122
121
|
url: string;
|
|
122
|
+
configuration: Record<string, object>;
|
|
123
123
|
}
|
|
124
124
|
export declare class TranscriptionsInstance {
|
|
125
125
|
protected _version: V1;
|
|
@@ -139,10 +139,6 @@ export declare class TranscriptionsInstance {
|
|
|
139
139
|
*/
|
|
140
140
|
roomSid: string;
|
|
141
141
|
status: TranscriptionsStatus;
|
|
142
|
-
/**
|
|
143
|
-
* The application-defined string that uniquely identifies the resource\'s User within a Room. If a client joins with an existing Identity, the existing client is disconnected. See [access tokens](https://www.twilio.com/docs/video/tutorials/user-identity-access-tokens) and [limits](https://www.twilio.com/docs/video/programmable-video-limits) for more info.
|
|
144
|
-
*/
|
|
145
|
-
identity: string;
|
|
146
142
|
/**
|
|
147
143
|
* The date and time in GMT when the resource was created specified in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format.
|
|
148
144
|
*/
|
|
@@ -167,6 +163,10 @@ export declare class TranscriptionsInstance {
|
|
|
167
163
|
* The absolute URL of the resource.
|
|
168
164
|
*/
|
|
169
165
|
url: string;
|
|
166
|
+
/**
|
|
167
|
+
* An JSON object that describes the video layout of the composition in terms of regions. See [Specifying Video Layouts](https://www.twilio.com/docs/video/api/compositions-resource#specifying-video-layouts) for more info.
|
|
168
|
+
*/
|
|
169
|
+
configuration: Record<string, object>;
|
|
170
170
|
private get _proxy();
|
|
171
171
|
/**
|
|
172
172
|
* Fetch a TranscriptionsInstance
|
|
@@ -203,13 +203,13 @@ export declare class TranscriptionsInstance {
|
|
|
203
203
|
accountSid: string;
|
|
204
204
|
roomSid: string;
|
|
205
205
|
status: TranscriptionsStatus;
|
|
206
|
-
identity: string;
|
|
207
206
|
dateCreated: Date;
|
|
208
207
|
dateUpdated: Date;
|
|
209
208
|
startTime: Date;
|
|
210
209
|
endTime: Date;
|
|
211
210
|
duration: number;
|
|
212
211
|
url: string;
|
|
212
|
+
configuration: Record<string, object>;
|
|
213
213
|
};
|
|
214
214
|
[inspect.custom](_depth: any, options: InspectOptions): string;
|
|
215
215
|
}
|
|
@@ -92,13 +92,13 @@ class TranscriptionsInstance {
|
|
|
92
92
|
this.accountSid = payload.account_sid;
|
|
93
93
|
this.roomSid = payload.room_sid;
|
|
94
94
|
this.status = payload.status;
|
|
95
|
-
this.identity = payload.identity;
|
|
96
95
|
this.dateCreated = deserialize.iso8601DateTime(payload.date_created);
|
|
97
96
|
this.dateUpdated = deserialize.iso8601DateTime(payload.date_updated);
|
|
98
97
|
this.startTime = deserialize.iso8601DateTime(payload.start_time);
|
|
99
98
|
this.endTime = deserialize.iso8601DateTime(payload.end_time);
|
|
100
99
|
this.duration = deserialize.integer(payload.duration);
|
|
101
100
|
this.url = payload.url;
|
|
101
|
+
this.configuration = payload.configuration;
|
|
102
102
|
this._solution = { roomSid, ttid: ttid || this.ttid };
|
|
103
103
|
}
|
|
104
104
|
get _proxy() {
|
|
@@ -131,13 +131,13 @@ class TranscriptionsInstance {
|
|
|
131
131
|
accountSid: this.accountSid,
|
|
132
132
|
roomSid: this.roomSid,
|
|
133
133
|
status: this.status,
|
|
134
|
-
identity: this.identity,
|
|
135
134
|
dateCreated: this.dateCreated,
|
|
136
135
|
dateUpdated: this.dateUpdated,
|
|
137
136
|
startTime: this.startTime,
|
|
138
137
|
endTime: this.endTime,
|
|
139
138
|
duration: this.duration,
|
|
140
139
|
url: this.url,
|
|
140
|
+
configuration: this.configuration,
|
|
141
141
|
};
|
|
142
142
|
}
|
|
143
143
|
[util_1.inspect.custom](_depth, options) {
|
|
@@ -42,7 +42,7 @@ export interface RoomListInstanceCreateOptions {
|
|
|
42
42
|
/** The region for the Room\\\'s media server. Can be one of the [available Media Regions](https://www.twilio.com/docs/video/ip-addresses#group-rooms-media-servers). */
|
|
43
43
|
mediaRegion?: string;
|
|
44
44
|
/** A collection of Recording Rules that describe how to include or exclude matching tracks for recording */
|
|
45
|
-
recordingRules?:
|
|
45
|
+
recordingRules?: any;
|
|
46
46
|
/** A collection of properties that describe transcription behaviour. If TranscribeParticipantsOnConnect is set to true and TranscriptionsConfiguration is not provided, default settings will be used. */
|
|
47
47
|
transcriptionsConfiguration?: object;
|
|
48
48
|
/** When set to true, indicates that the participants in the room will only publish audio. No video tracks will be allowed. */
|
|
@@ -201,7 +201,7 @@ declare namespace VoiceResponse {
|
|
|
201
201
|
type RecordTrim = "trim-silence" | "do-not-trim";
|
|
202
202
|
type RejectReason = "rejected" | "busy";
|
|
203
203
|
type SayLanguage = "af-ZA" | "am-ET" | "ar-AE" | "ar-XA" | "arb" | "bg-BG" | "bn-IN" | "ca-ES" | "cmn-CN" | "cmn-TW" | "cs-CZ" | "cy-GB" | "da-DK" | "de-AT" | "de-DE" | "el-GR" | "en-AU" | "en-CA" | "en-GB" | "en-GB-WLS" | "en-IE" | "en-IN" | "en-NZ" | "en-US" | "en-ZA" | "es-ES" | "es-MX" | "es-US" | "fi-FI" | "fil-PH" | "fr-CA" | "fr-FR" | "fr-BE" | "gu-IN" | "he-IL" | "hi-IN" | "hu-HU" | "id-ID" | "is-IS" | "it-IT" | "ja-JP" | "kn-IN" | "ko-KR" | "lv-LV" | "ml-IN" | "mr-IN" | "ms-MY" | "nb-NO" | "nl-BE" | "nl-NL" | "pa-IN" | "pl-PL" | "pt-BR" | "pt-PT" | "ro-RO" | "ru-RU" | "sk-SK" | "sr-RS" | "sv-SE" | "ta-IN" | "te-IN" | "th-TH" | "tr-TR" | "uk-UA" | "vi-VN" | "yue-HK" | "zh-CN" | "zh-HK" | "zh-TW";
|
|
204
|
-
type SayVoice = "man" | "woman" | "alice" | "Google.af-ZA-Standard-A" | "Google.am-ET-Standard-A" | "Google.am-ET-Standard-B" | "Google.am-ET-Wavenet-A" | "Google.am-ET-Wavenet-B" | "Google.ar-XA-Standard-A" | "Google.ar-XA-Standard-B" | "Google.ar-XA-Standard-C" | "Google.ar-XA-Standard-D" | "Google.ar-XA-Wavenet-A" | "Google.ar-XA-Wavenet-B" | "Google.ar-XA-Wavenet-C" | "Google.ar-XA-Wavenet-D" | "Google.bg-BG-Standard-A" | "Google.bn-IN-Standard-C" | "Google.bn-IN-Standard-D" | "Google.bn-IN-Wavenet-C" | "Google.bn-IN-Wavenet-D" | "Google.ca-ES-Standard-A" | "Google.cmn-CN-Standard-A" | "Google.cmn-CN-Standard-B" | "Google.cmn-CN-Standard-C" | "Google.cmn-CN-Standard-D" | "Google.cmn-CN-Wavenet-A" | "Google.cmn-CN-Wavenet-B" | "Google.cmn-CN-Wavenet-C" | "Google.cmn-CN-Wavenet-D" | "Google.cmn-TW-Standard-A" | "Google.cmn-TW-Standard-B" | "Google.cmn-TW-Standard-C" | "Google.cmn-TW-Wavenet-A" | "Google.cmn-TW-Wavenet-B" | "Google.cmn-TW-Wavenet-C" | "Google.cs-CZ-Standard-A" | "Google.cs-CZ-Wavenet-A" | "Google.da-DK-Neural2-D" | "Google.da-DK-Neural2-F" | "Google.da-DK-Standard-A" | "Google.da-DK-Standard-C" | "Google.da-DK-Standard-D" | "Google.da-DK-Standard-E" | "Google.da-DK-Wavenet-A" | "Google.da-DK-Wavenet-C" | "Google.da-DK-Wavenet-D" | "Google.da-DK-Wavenet-E" | "Google.de-DE-Neural2-A" | "Google.de-DE-Neural2-B" | "Google.de-DE-Neural2-C" | "Google.de-DE-Neural2-D" | "Google.de-DE-Neural2-F" | "Google.de-DE-Standard-A" | "Google.de-DE-Standard-B" | "Google.de-DE-Standard-C" | "Google.de-DE-Standard-D" | "Google.de-DE-Standard-E" | "Google.de-DE-Standard-F" | "Google.de-DE-Wavenet-A" | "Google.de-DE-Wavenet-B" | "Google.de-DE-Wavenet-C" | "Google.de-DE-Wavenet-D" | "Google.de-DE-Wavenet-E" | "Google.de-DE-Wavenet-F" | "Google.el-GR-Standard-A" | "Google.el-GR-Wavenet-A" | "Google.en-AU-Neural2-A" | "Google.en-AU-Neural2-B" | "Google.en-AU-Neural2-C" | "Google.en-AU-Neural2-D" | "Google.en-AU-Standard-A" | "Google.en-AU-Standard-B" | "Google.en-AU-Standard-C" | "Google.en-AU-Standard-D" | "Google.en-AU-Wavenet-A" | "Google.en-AU-Wavenet-B" | "Google.en-AU-Wavenet-C" | "Google.en-AU-Wavenet-D" | "Google.en-GB-Neural2-A" | "Google.en-GB-Neural2-B" | "Google.en-GB-Neural2-C" | "Google.en-GB-Neural2-D" | "Google.en-GB-Neural2-F" | "Google.en-GB-Standard-A" | "Google.en-GB-Standard-B" | "Google.en-GB-Standard-C" | "Google.en-GB-Standard-D" | "Google.en-GB-Standard-F" | "Google.en-GB-Wavenet-A" | "Google.en-GB-Wavenet-B" | "Google.en-GB-Wavenet-C" | "Google.en-GB-Wavenet-D" | "Google.en-GB-Wavenet-F" | "Google.en-IN-Neural2-A" | "Google.en-IN-Neural2-B" | "Google.en-IN-Neural2-C" | "Google.en-IN-Neural2-D" | "Google.en-IN-Standard-A" | "Google.en-IN-Standard-B" | "Google.en-IN-Standard-C" | "Google.en-IN-Standard-D" | "Google.en-IN-Wavenet-A" | "Google.en-IN-Wavenet-B" | "Google.en-IN-Wavenet-C" | "Google.en-IN-Wavenet-D" | "Google.en-US-Neural2-A" | "Google.en-US-Neural2-C" | "Google.en-US-Neural2-D" | "Google.en-US-Neural2-E" | "Google.en-US-Neural2-F" | "Google.en-US-Neural2-G" | "Google.en-US-Neural2-H" | "Google.en-US-Neural2-I" | "Google.en-US-Neural2-J" | "Google.en-US-Standard-A" | "Google.en-US-Standard-B" | "Google.en-US-Standard-C" | "Google.en-US-Standard-D" | "Google.en-US-Standard-E" | "Google.en-US-Standard-F" | "Google.en-US-Standard-G" | "Google.en-US-Standard-H" | "Google.en-US-Standard-I" | "Google.en-US-Standard-J" | "Google.en-US-Wavenet-A" | "Google.en-US-Wavenet-B" | "Google.en-US-Wavenet-C" | "Google.en-US-Wavenet-D" | "Google.en-US-Wavenet-E" | "Google.en-US-Wavenet-F" | "Google.en-US-Wavenet-G" | "Google.en-US-Wavenet-H" | "Google.en-US-Wavenet-I" | "Google.en-US-Wavenet-J" | "Google.es-ES-Neural2-A" | "Google.es-ES-Neural2-B" | "Google.es-ES-Neural2-C" | "Google.es-ES-Neural2-D" | "Google.es-ES-Neural2-E" | "Google.es-ES-Neural2-F" | "Google.es-ES-Standard-B" | "Google.es-ES-Standard-C" | "Google.es-ES-Standard-D" | "Google.es-ES-Wavenet-B" | "Google.es-ES-Wavenet-C" | "Google.es-ES-Wavenet-D" | "Google.es-US-Neural2-A" | "Google.es-US-Neural2-B" | "Google.es-US-Neural2-C" | "Google.es-US-Standard-A" | "Google.es-US-Standard-B" | "Google.es-US-Standard-C" | "Google.es-US-Wavenet-A" | "Google.es-US-Wavenet-B" | "Google.es-US-Wavenet-C" | "Google.eu-ES-Standard-A" | "Google.fi-FI-Standard-A" | "Google.fi-FI-Wavenet-A" | "Google.fil-PH-Standard-A" | "Google.fil-PH-Standard-B" | "Google.fil-PH-Standard-C" | "Google.fil-PH-Standard-D" | "Google.fil-PH-Wavenet-A" | "Google.fil-PH-Wavenet-B" | "Google.fil-PH-Wavenet-C" | "Google.fil-PH-Wavenet-D" | "Google.fil-ph-Neural2-A" | "Google.fil-ph-Neural2-D" | "Google.fr-CA-Neural2-A" | "Google.fr-CA-Neural2-B" | "Google.fr-CA-Neural2-C" | "Google.fr-CA-Neural2-D" | "Google.fr-CA-Standard-A" | "Google.fr-CA-Standard-B" | "Google.fr-CA-Standard-C" | "Google.fr-CA-Standard-D" | "Google.fr-CA-Wavenet-A" | "Google.fr-CA-Wavenet-B" | "Google.fr-CA-Wavenet-C" | "Google.fr-CA-Wavenet-D" | "Google.fr-FR-Neural2-A" | "Google.fr-FR-Neural2-B" | "Google.fr-FR-Neural2-C" | "Google.fr-FR-Neural2-D" | "Google.fr-FR-Neural2-E" | "Google.fr-FR-Standard-A" | "Google.fr-FR-Standard-B" | "Google.fr-FR-Standard-C" | "Google.fr-FR-Standard-D" | "Google.fr-FR-Standard-E" | "Google.fr-FR-Wavenet-A" | "Google.fr-FR-Wavenet-B" | "Google.fr-FR-Wavenet-C" | "Google.fr-FR-Wavenet-D" | "Google.fr-FR-Wavenet-E" | "Google.gl-ES-Standard-A" | "Google.gu-IN-Standard-C" | "Google.gu-IN-Standard-D" | "Google.gu-IN-Wavenet-C" | "Google.gu-IN-Wavenet-D" | "Google.he-IL-Standard-A" | "Google.he-IL-Standard-B" | "Google.he-IL-Standard-C" | "Google.he-IL-Standard-D" | "Google.he-IL-Wavenet-A" | "Google.he-IL-Wavenet-B" | "Google.he-IL-Wavenet-C" | "Google.he-IL-Wavenet-D" | "Google.hi-IN-Neural2-A" | "Google.hi-IN-Neural2-B" | "Google.hi-IN-Neural2-C" | "Google.hi-IN-Neural2-D" | "Google.hi-IN-Standard-A" | "Google.hi-IN-Standard-B" | "Google.hi-IN-Standard-C" | "Google.hi-IN-Standard-D" | "Google.hi-IN-Wavenet-A" | "Google.hi-IN-Wavenet-B" | "Google.hi-IN-Wavenet-C" | "Google.hi-IN-Wavenet-D" | "Google.hu-HU-Standard-A" | "Google.hu-HU-Wavenet-A" | "Google.id-ID-Standard-A" | "Google.id-ID-Standard-B" | "Google.id-ID-Standard-C" | "Google.id-ID-Standard-D" | "Google.id-ID-Wavenet-A" | "Google.id-ID-Wavenet-B" | "Google.id-ID-Wavenet-C" | "Google.id-ID-Wavenet-D" | "Google.is-IS-Standard-A" | "Google.it-IT-Neural2-A" | "Google.it-IT-Neural2-C" | "Google.it-IT-Standard-B" | "Google.it-IT-Standard-C" | "Google.it-IT-Standard-D" | "Google.it-IT-Wavenet-B" | "Google.it-IT-Wavenet-C" | "Google.it-IT-Wavenet-D" | "Google.ja-JP-Neural2-B" | "Google.ja-JP-Neural2-C" | "Google.ja-JP-Neural2-D" | "Google.ja-JP-Standard-A" | "Google.ja-JP-Standard-B" | "Google.ja-JP-Standard-C" | "Google.ja-JP-Standard-D" | "Google.ja-JP-Wavenet-A" | "Google.ja-JP-Wavenet-B" | "Google.ja-JP-Wavenet-C" | "Google.ja-JP-Wavenet-D" | "Google.kn-IN-Standard-C" | "Google.kn-IN-Standard-D" | "Google.kn-IN-Wavenet-C" | "Google.kn-IN-Wavenet-D" | "Google.ko-KR-Neural2-A" | "Google.ko-KR-Neural2-B" | "Google.ko-KR-Neural2-C" | "Google.ko-KR-Standard-A" | "Google.ko-KR-Standard-B" | "Google.ko-KR-Standard-C" | "Google.ko-KR-Standard-D" | "Google.ko-KR-Wavenet-A" | "Google.ko-KR-Wavenet-B" | "Google.ko-KR-Wavenet-C" | "Google.ko-KR-Wavenet-D" | "Google.lt-LT-Standard-A" | "Google.lv-LV-Standard-A" | "Google.ml-IN-Wavenet-C" | "Google.ml-IN-Wavenet-D" | "Google.mr-IN-Standard-A" | "Google.mr-IN-Standard-B" | "Google.mr-IN-Standard-C" | "Google.mr-IN-Wavenet-A" | "Google.mr-IN-Wavenet-B" | "Google.mr-IN-Wavenet-C" | "Google.ms-MY-Standard-A" | "Google.ms-MY-Standard-B" | "Google.ms-MY-Standard-C" | "Google.ms-MY-Standard-D" | "Google.ms-MY-Wavenet-A" | "Google.ms-MY-Wavenet-B" | "Google.ms-MY-Wavenet-C" | "Google.ms-MY-Wavenet-D" | "Google.nb-NO-Standard-A" | "Google.nb-NO-Standard-B" | "Google.nb-NO-Standard-C" | "Google.nb-NO-Standard-D" | "Google.nb-NO-Standard-E" | "Google.nb-NO-Wavenet-A" | "Google.nb-NO-Wavenet-B" | "Google.nb-NO-Wavenet-C" | "Google.nb-NO-Wavenet-D" | "Google.nb-NO-Wavenet-E" | "Google.nl-BE-Standard-A" | "Google.nl-BE-Standard-B" | "Google.nl-BE-Wavenet-A" | "Google.nl-BE-Wavenet-B" | "Google.nl-NL-Standard-A" | "Google.nl-NL-Standard-B" | "Google.nl-NL-Standard-C" | "Google.nl-NL-Standard-D" | "Google.nl-NL-Standard-E" | "Google.nl-NL-Wavenet-A" | "Google.nl-NL-Wavenet-B" | "Google.nl-NL-Wavenet-C" | "Google.nl-NL-Wavenet-D" | "Google.nl-NL-Wavenet-E" | "Google.pa-IN-Standard-A" | "Google.pa-IN-Standard-B" | "Google.pa-IN-Standard-C" | "Google.pa-IN-Standard-D" | "Google.pa-IN-Wavenet-A" | "Google.pa-IN-Wavenet-B" | "Google.pa-IN-Wavenet-C" | "Google.pa-IN-Wavenet-D" | "Google.pl-PL-Standard-A" | "Google.pl-PL-Standard-B" | "Google.pl-PL-Standard-C" | "Google.pl-PL-Standard-D" | "Google.pl-PL-Standard-E" | "Google.pl-PL-Wavenet-A" | "Google.pl-PL-Wavenet-B" | "Google.pl-PL-Wavenet-C" | "Google.pl-PL-Wavenet-D" | "Google.pl-PL-Wavenet-E" | "Google.pt-BR-Neural2-A" | "Google.pt-BR-Neural2-B" | "Google.pt-BR-Neural2-C" | "Google.pt-BR-Standard-A" | "Google.pt-BR-Standard-B" | "Google.pt-BR-Standard-C" | "Google.pt-BR-Wavenet-A" | "Google.pt-BR-Wavenet-B" | "Google.pt-BR-Wavenet-C" | "Google.pt-PT-Standard-A" | "Google.pt-PT-Standard-B" | "Google.pt-PT-Standard-C" | "Google.pt-PT-Standard-D" | "Google.pt-PT-Wavenet-A" | "Google.pt-PT-Wavenet-B" | "Google.pt-PT-Wavenet-C" | "Google.pt-PT-Wavenet-D" | "Google.ro-RO-Standard-A" | "Google.ro-RO-Wavenet-A" | "Google.ru-RU-Standard-A" | "Google.ru-RU-Standard-B" | "Google.ru-RU-Standard-C" | "Google.ru-RU-Standard-D" | "Google.ru-RU-Standard-E" | "Google.ru-RU-Wavenet-A" | "Google.ru-RU-Wavenet-B" | "Google.ru-RU-Wavenet-C" | "Google.ru-RU-Wavenet-D" | "Google.ru-RU-Wavenet-E" | "Google.sk-SK-Standard-A" | "Google.sk-SK-Wavenet-A" | "Google.sr-RS-Standard-A" | "Google.sv-SE-Standard-A" | "Google.sv-SE-Standard-B" | "Google.sv-SE-Standard-C" | "Google.sv-SE-Standard-D" | "Google.sv-SE-Standard-E" | "Google.sv-SE-Wavenet-A" | "Google.sv-SE-Wavenet-B" | "Google.sv-SE-Wavenet-C" | "Google.sv-SE-Wavenet-D" | "Google.sv-SE-Wavenet-E" | "Google.ta-IN-Standard-A" | "Google.ta-IN-Standard-B" | "Google.ta-IN-Standard-C" | "Google.ta-IN-Standard-D" | "Google.ta-IN-Wavenet-A" | "Google.ta-IN-Wavenet-B" | "Google.ta-IN-Wavenet-C" | "Google.ta-IN-Wavenet-D" | "Google.te-IN-Standard-A" | "Google.te-IN-Standard-B" | "Google.th-TH-Neural2-C" | "Google.th-TH-Standard-A" | "Google.tr-TR-Standard-A" | "Google.tr-TR-Standard-B" | "Google.tr-TR-Standard-C" | "Google.tr-TR-Standard-D" | "Google.tr-TR-Standard-E" | "Google.tr-TR-Wavenet-A" | "Google.tr-TR-Wavenet-B" | "Google.tr-TR-Wavenet-C" | "Google.tr-TR-Wavenet-D" | "Google.tr-TR-Wavenet-E" | "Google.uk-UA-Standard-A" | "Google.uk-UA-Wavenet-A" | "Google.vi-VN-Neural2-A" | "Google.vi-VN-Neural2-D" | "Google.vi-VN-Standard-A" | "Google.vi-VN-Standard-B" | "Google.vi-VN-Standard-C" | "Google.vi-VN-Standard-D" | "Google.vi-VN-Wavenet-A" | "Google.vi-VN-Wavenet-B" | "Google.vi-VN-Wavenet-C" | "Google.vi-VN-Wavenet-D" | "Google.yue-HK-Standard-A" | "Google.yue-HK-Standard-B" | "Google.yue-HK-Standard-C" | "Google.yue-HK-Standard-D" | "Polly.Aditi" | "Polly.Amy" | "Polly.Astrid" | "Polly.Bianca" | "Polly.Brian" | "Polly.Camila" | "Polly.Carla" | "Polly.Carmen" | "Polly.Celine" | "Polly.Chantal" | "Polly.Conchita" | "Polly.Cristiano" | "Polly.Dora" | "Polly.Emma" | "Polly.Enrique" | "Polly.Ewa" | "Polly.Filiz" | "Polly.Geraint" | "Polly.Giorgio" | "Polly.Gwyneth" | "Polly.Hans" | "Polly.Ines" | "Polly.Ivy" | "Polly.Jacek" | "Polly.Jan" | "Polly.Joanna" | "Polly.Joey" | "Polly.Justin" | "Polly.Karl" | "Polly.Kendra" | "Polly.Kimberly" | "Polly.Lea" | "Polly.Liv" | "Polly.Lotte" | "Polly.Lucia" | "Polly.Lupe" | "Polly.Mads" | "Polly.Maja" | "Polly.Marlene" | "Polly.Mathieu" | "Polly.Matthew" | "Polly.Maxim" | "Polly.Mia" | "Polly.Miguel" | "Polly.Mizuki" | "Polly.Naja" | "Polly.Nicole" | "Polly.Penelope" | "Polly.Raveena" | "Polly.Ricardo" | "Polly.Ruben" | "Polly.Russell" | "Polly.Salli" | "Polly.Seoyeon" | "Polly.Takumi" | "Polly.Tatyana" | "Polly.Vicki" | "Polly.Vitoria" | "Polly.Zeina" | "Polly.Zhiyu" | "Polly.Adriano-Neural" | "Polly.Amy-Neural" | "Polly.Andres-Neural" | "Polly.Aria-Neural" | "Polly.Arlet-Neural" | "Polly.Arthur-Neural" | "Polly.Ayanda-Neural" | "Polly.Bianca-Neural" | "Polly.Brian-Neural" | "Polly.Camila-Neural" | "Polly.Daniel-Neural" | "Polly.Danielle-Neural" | "Polly.Elin-Neural" | "Polly.Emma-Neural" | "Polly.Gabrielle-Neural" | "Polly.Gregory-Neural" | "Polly.Hala-Neural" | "Polly.Hannah-Neural" | "Polly.Hiujin-Neural" | "Polly.Ida-Neural" | "Polly.Ines-Neural" | "Polly.Isabelle-Neural" | "Polly.Ivy-Neural" | "Polly.Joanna-Neural" | "Polly.Joey-Neural" | "Polly.Justin-Neural" | "Polly.Kajal-Neural" | "Polly.Kazuha-Neural" | "Polly.Kendra-Neural" | "Polly.Kevin-Neural" | "Polly.Kimberly-Neural" | "Polly.Laura-Neural" | "Polly.Lea-Neural" | "Polly.Liam-Neural" | "Polly.Lisa-Neural" | "Polly.Lucia-Neural" | "Polly.Lupe-Neural" | "Polly.Matthew-Neural" | "Polly.Mia-Neural" | "Polly.Niamh-Neural" | "Polly.Ola-Neural" | "Polly.Olivia-Neural" | "Polly.Pedro-Neural" | "Polly.Remi-Neural" | "Polly.Ruth-Neural" | "Polly.Salli-Neural" | "Polly.Seoyeon-Neural" | "Polly.Sergio-Neural" | "Polly.Sofie-Neural" | "Polly.Stephen-Neural" | "Polly.Suvi-Neural" | "Polly.Takumi-Neural" | "Polly.Tomoko-Neural" | "Polly.Thiago-Neural" | "Polly.Vicki-Neural" | "Polly.Vitoria-Neural" | "Polly.Zayd-Neural" | "Polly.Zhiyu-Neural";
|
|
204
|
+
type SayVoice = "man" | "woman" | "alice" | "Google.af-ZA-Standard-A" | "Google.am-ET-Standard-A" | "Google.am-ET-Standard-B" | "Google.am-ET-Wavenet-A" | "Google.am-ET-Wavenet-B" | "Google.ar-XA-Chirp3-HD-Aoede" | "Google.ar-XA-Chirp3-HD-Charon" | "Google.ar-XA-Chirp3-HD-Fenrir" | "Google.ar-XA-Chirp3-HD-Kore" | "Google.ar-XA-Chirp3-HD-Leda" | "Google.ar-XA-Chirp3-HD-Orus" | "Google.ar-XA-Chirp3-HD-Puck" | "Google.ar-XA-Chirp3-HD-Zephyr" | "Google.ar-XA-Standard-A" | "Google.ar-XA-Standard-B" | "Google.ar-XA-Standard-C" | "Google.ar-XA-Standard-D" | "Google.ar-XA-Wavenet-A" | "Google.ar-XA-Wavenet-B" | "Google.ar-XA-Wavenet-C" | "Google.ar-XA-Wavenet-D" | "Google.bg-BG-Standard-A" | "Google.bg-BG-Standard-B" | "Google.bn-IN-Chirp3-HD-Aoede" | "Google.bn-IN-Chirp3-HD-Charon" | "Google.bn-IN-Chirp3-HD-Fenrir" | "Google.bn-IN-Chirp3-HD-Kore" | "Google.bn-IN-Chirp3-HD-Leda" | "Google.bn-IN-Chirp3-HD-Orus" | "Google.bn-IN-Chirp3-HD-Puck" | "Google.bn-IN-Chirp3-HD-Zephyr" | "Google.bn-IN-Standard-A" | "Google.bn-IN-Standard-B" | "Google.bn-IN-Standard-C" | "Google.bn-IN-Standard-D" | "Google.bn-IN-Wavenet-A" | "Google.bn-IN-Wavenet-B" | "Google.bn-IN-Wavenet-C" | "Google.bn-IN-Wavenet-D" | "Google.ca-ES-Standard-A" | "Google.ca-ES-Standard-B" | "Google.cmn-CN-Chirp3-HD-Aoede" | "Google.cmn-CN-Chirp3-HD-Charon" | "Google.cmn-CN-Chirp3-HD-Fenrir" | "Google.cmn-CN-Chirp3-HD-Kore" | "Google.cmn-CN-Chirp3-HD-Leda" | "Google.cmn-CN-Chirp3-HD-Orus" | "Google.cmn-CN-Chirp3-HD-Puck" | "Google.cmn-CN-Chirp3-HD-Zephyr" | "Google.cmn-CN-Standard-A" | "Google.cmn-CN-Standard-B" | "Google.cmn-CN-Standard-C" | "Google.cmn-CN-Standard-D" | "Google.cmn-CN-Wavenet-A" | "Google.cmn-CN-Wavenet-B" | "Google.cmn-CN-Wavenet-C" | "Google.cmn-CN-Wavenet-D" | "Google.cmn-TW-Standard-A" | "Google.cmn-TW-Standard-B" | "Google.cmn-TW-Standard-C" | "Google.cmn-TW-Wavenet-A" | "Google.cmn-TW-Wavenet-B" | "Google.cmn-TW-Wavenet-C" | "Google.cs-CZ-Standard-A" | "Google.cs-CZ-Standard-B" | "Google.cs-CZ-Wavenet-A" | "Google.cs-CZ-Wavenet-B" | "Google.da-DK-Neural2-D" | "Google.da-DK-Neural2-F" | "Google.da-DK-Standard-A" | "Google.da-DK-Standard-C" | "Google.da-DK-Standard-D" | "Google.da-DK-Standard-E" | "Google.da-DK-Standard-F" | "Google.da-DK-Standard-G" | "Google.da-DK-Wavenet-A" | "Google.da-DK-Wavenet-C" | "Google.da-DK-Wavenet-D" | "Google.da-DK-Wavenet-E" | "Google.da-DK-Wavenet-F" | "Google.da-DK-Wavenet-G" | "Google.de-DE-Chirp3-HD-Aoede" | "Google.de-DE-Chirp3-HD-Charon" | "Google.de-DE-Chirp3-HD-Fenrir" | "Google.de-DE-Chirp3-HD-Kore" | "Google.de-DE-Chirp3-HD-Leda" | "Google.de-DE-Chirp3-HD-Orus" | "Google.de-DE-Chirp3-HD-Puck" | "Google.de-DE-Chirp3-HD-Zephyr" | "Google.de-DE-Neural2-A" | "Google.de-DE-Neural2-B" | "Google.de-DE-Neural2-C" | "Google.de-DE-Neural2-D" | "Google.de-DE-Neural2-F" | "Google.de-DE-Neural2-G" | "Google.de-DE-Neural2-H" | "Google.de-DE-Standard-A" | "Google.de-DE-Standard-B" | "Google.de-DE-Standard-C" | "Google.de-DE-Standard-D" | "Google.de-DE-Standard-E" | "Google.de-DE-Standard-F" | "Google.de-DE-Standard-G" | "Google.de-DE-Standard-H" | "Google.de-DE-Wavenet-A" | "Google.de-DE-Wavenet-B" | "Google.de-DE-Wavenet-C" | "Google.de-DE-Wavenet-D" | "Google.de-DE-Wavenet-E" | "Google.de-DE-Wavenet-F" | "Google.de-DE-Wavenet-G" | "Google.de-DE-Wavenet-H" | "Google.el-GR-Standard-A" | "Google.el-GR-Standard-B" | "Google.el-GR-Wavenet-A" | "Google.el-GR-Wavenet-B" | "Google.en-AU-Chirp3-HD-Aoede" | "Google.en-AU-Chirp3-HD-Charon" | "Google.en-AU-Chirp3-HD-Fenrir" | "Google.en-AU-Chirp3-HD-Kore" | "Google.en-AU-Chirp3-HD-Leda" | "Google.en-AU-Chirp3-HD-Orus" | "Google.en-AU-Chirp3-HD-Puck" | "Google.en-AU-Chirp3-HD-Zephyr" | "Google.en-AU-Neural2-A" | "Google.en-AU-Neural2-B" | "Google.en-AU-Neural2-C" | "Google.en-AU-Neural2-D" | "Google.en-AU-Standard-A" | "Google.en-AU-Standard-B" | "Google.en-AU-Standard-C" | "Google.en-AU-Standard-D" | "Google.en-AU-Wavenet-A" | "Google.en-AU-Wavenet-B" | "Google.en-AU-Wavenet-C" | "Google.en-AU-Wavenet-D" | "Google.en-GB-Chirp3-HD-Aoede" | "Google.en-GB-Chirp3-HD-Charon" | "Google.en-GB-Chirp3-HD-Fenrir" | "Google.en-GB-Chirp3-HD-Kore" | "Google.en-GB-Chirp3-HD-Leda" | "Google.en-GB-Chirp3-HD-Orus" | "Google.en-GB-Chirp3-HD-Puck" | "Google.en-GB-Chirp3-HD-Zephyr" | "Google.en-GB-Neural2-A" | "Google.en-GB-Neural2-B" | "Google.en-GB-Neural2-C" | "Google.en-GB-Neural2-D" | "Google.en-GB-Neural2-F" | "Google.en-GB-Neural2-N" | "Google.en-GB-Neural2-O" | "Google.en-GB-Standard-A" | "Google.en-GB-Standard-B" | "Google.en-GB-Standard-C" | "Google.en-GB-Standard-D" | "Google.en-GB-Standard-F" | "Google.en-GB-Standard-N" | "Google.en-GB-Standard-O" | "Google.en-GB-Wavenet-A" | "Google.en-GB-Wavenet-B" | "Google.en-GB-Wavenet-C" | "Google.en-GB-Wavenet-D" | "Google.en-GB-Wavenet-F" | "Google.en-GB-Wavenet-N" | "Google.en-GB-Wavenet-O" | "Google.en-IN-Chirp3-HD-Aoede" | "Google.en-IN-Chirp3-HD-Charon" | "Google.en-IN-Chirp3-HD-Fenrir" | "Google.en-IN-Chirp3-HD-Kore" | "Google.en-IN-Chirp3-HD-Leda" | "Google.en-IN-Chirp3-HD-Orus" | "Google.en-IN-Chirp3-HD-Puck" | "Google.en-IN-Chirp3-HD-Zephyr" | "Google.en-IN-Neural2-A" | "Google.en-IN-Neural2-B" | "Google.en-IN-Neural2-C" | "Google.en-IN-Neural2-D" | "Google.en-IN-Standard-A" | "Google.en-IN-Standard-B" | "Google.en-IN-Standard-C" | "Google.en-IN-Standard-D" | "Google.en-IN-Standard-E" | "Google.en-IN-Standard-F" | "Google.en-IN-Wavenet-A" | "Google.en-IN-Wavenet-B" | "Google.en-IN-Wavenet-C" | "Google.en-IN-Wavenet-D" | "Google.en-IN-Wavenet-E" | "Google.en-IN-Wavenet-F" | "Google.en-US-Chirp3-HD-Aoede" | "Google.en-US-Chirp3-HD-Charon" | "Google.en-US-Chirp3-HD-Fenrir" | "Google.en-US-Chirp3-HD-Kore" | "Google.en-US-Chirp3-HD-Leda" | "Google.en-US-Chirp3-HD-Orus" | "Google.en-US-Chirp3-HD-Puck" | "Google.en-US-Chirp3-HD-Zephyr" | "Google.en-US-Neural2-A" | "Google.en-US-Neural2-C" | "Google.en-US-Neural2-D" | "Google.en-US-Neural2-E" | "Google.en-US-Neural2-F" | "Google.en-US-Neural2-G" | "Google.en-US-Neural2-H" | "Google.en-US-Neural2-I" | "Google.en-US-Neural2-J" | "Google.en-US-Standard-A" | "Google.en-US-Standard-B" | "Google.en-US-Standard-C" | "Google.en-US-Standard-D" | "Google.en-US-Standard-E" | "Google.en-US-Standard-F" | "Google.en-US-Standard-G" | "Google.en-US-Standard-H" | "Google.en-US-Standard-I" | "Google.en-US-Standard-J" | "Google.en-US-Wavenet-A" | "Google.en-US-Wavenet-B" | "Google.en-US-Wavenet-C" | "Google.en-US-Wavenet-D" | "Google.en-US-Wavenet-E" | "Google.en-US-Wavenet-F" | "Google.en-US-Wavenet-G" | "Google.en-US-Wavenet-H" | "Google.en-US-Wavenet-I" | "Google.en-US-Wavenet-J" | "Google.es-ES-Chirp3-HD-Aoede" | "Google.es-ES-Chirp3-HD-Charon" | "Google.es-ES-Chirp3-HD-Fenrir" | "Google.es-ES-Chirp3-HD-Kore" | "Google.es-ES-Chirp3-HD-Leda" | "Google.es-ES-Chirp3-HD-Orus" | "Google.es-ES-Chirp3-HD-Puck" | "Google.es-ES-Chirp3-HD-Zephyr" | "Google.es-ES-Neural2-A" | "Google.es-ES-Neural2-B" | "Google.es-ES-Neural2-C" | "Google.es-ES-Neural2-D" | "Google.es-ES-Neural2-E" | "Google.es-ES-Neural2-F" | "Google.es-ES-Neural2-G" | "Google.es-ES-Neural2-H" | "Google.es-ES-Standard-A" | "Google.es-ES-Standard-B" | "Google.es-ES-Standard-C" | "Google.es-ES-Standard-D" | "Google.es-ES-Standard-E" | "Google.es-ES-Standard-F" | "Google.es-ES-Standard-G" | "Google.es-ES-Standard-H" | "Google.es-ES-Wavenet-B" | "Google.es-ES-Wavenet-C" | "Google.es-ES-Wavenet-D" | "Google.es-ES-Wavenet-E" | "Google.es-ES-Wavenet-F" | "Google.es-ES-Wavenet-G" | "Google.es-ES-Wavenet-H" | "Google.es-US-Chirp3-HD-Aoede" | "Google.es-US-Chirp3-HD-Charon" | "Google.es-US-Chirp3-HD-Fenrir" | "Google.es-US-Chirp3-HD-Kore" | "Google.es-US-Chirp3-HD-Leda" | "Google.es-US-Chirp3-HD-Orus" | "Google.es-US-Chirp3-HD-Puck" | "Google.es-US-Chirp3-HD-Zephyr" | "Google.es-US-Neural2-A" | "Google.es-US-Neural2-B" | "Google.es-US-Neural2-C" | "Google.es-US-Standard-A" | "Google.es-US-Standard-B" | "Google.es-US-Standard-C" | "Google.es-US-Wavenet-A" | "Google.es-US-Wavenet-B" | "Google.es-US-Wavenet-C" | "Google.eu-ES-Standard-A" | "Google.eu-ES-Standard-B" | "Google.fi-FI-Standard-A" | "Google.fi-FI-Standard-B" | "Google.fi-FI-Wavenet-A" | "Google.fi-FI-Wavenet-B" | "Google.fil-ph-Neural2-A" | "Google.fil-ph-Neural2-D" | "Google.fil-PH-Standard-A" | "Google.fil-PH-Standard-B" | "Google.fil-PH-Standard-C" | "Google.fil-PH-Standard-D" | "Google.fil-PH-Wavenet-A" | "Google.fil-PH-Wavenet-B" | "Google.fil-PH-Wavenet-C" | "Google.fil-PH-Wavenet-D" | "Google.fr-CA-Chirp3-HD-Aoede" | "Google.fr-CA-Chirp3-HD-Charon" | "Google.fr-CA-Chirp3-HD-Fenrir" | "Google.fr-CA-Chirp3-HD-Kore" | "Google.fr-CA-Chirp3-HD-Leda" | "Google.fr-CA-Chirp3-HD-Orus" | "Google.fr-CA-Chirp3-HD-Puck" | "Google.fr-CA-Chirp3-HD-Zephyr" | "Google.fr-CA-Neural2-A" | "Google.fr-CA-Neural2-B" | "Google.fr-CA-Neural2-C" | "Google.fr-CA-Neural2-D" | "Google.fr-CA-Standard-A" | "Google.fr-CA-Standard-B" | "Google.fr-CA-Standard-C" | "Google.fr-CA-Standard-D" | "Google.fr-CA-Wavenet-A" | "Google.fr-CA-Wavenet-B" | "Google.fr-CA-Wavenet-C" | "Google.fr-CA-Wavenet-D" | "Google.fr-FR-Chirp3-HD-Aoede" | "Google.fr-FR-Chirp3-HD-Charon" | "Google.fr-FR-Chirp3-HD-Fenrir" | "Google.fr-FR-Chirp3-HD-Kore" | "Google.fr-FR-Chirp3-HD-Leda" | "Google.fr-FR-Chirp3-HD-Orus" | "Google.fr-FR-Chirp3-HD-Puck" | "Google.fr-FR-Chirp3-HD-Zephyr" | "Google.fr-FR-Neural2-A" | "Google.fr-FR-Neural2-B" | "Google.fr-FR-Neural2-C" | "Google.fr-FR-Neural2-D" | "Google.fr-FR-Neural2-E" | "Google.fr-FR-Neural2-F" | "Google.fr-FR-Neural2-G" | "Google.fr-FR-Standard-A" | "Google.fr-FR-Standard-B" | "Google.fr-FR-Standard-C" | "Google.fr-FR-Standard-D" | "Google.fr-FR-Standard-E" | "Google.fr-FR-Standard-F" | "Google.fr-FR-Standard-G" | "Google.fr-FR-Wavenet-A" | "Google.fr-FR-Wavenet-B" | "Google.fr-FR-Wavenet-C" | "Google.fr-FR-Wavenet-D" | "Google.fr-FR-Wavenet-E" | "Google.fr-FR-Wavenet-F" | "Google.fr-FR-Wavenet-G" | "Google.gl-ES-Standard-A" | "Google.gl-ES-Standard-B" | "Google.gu-IN-Chirp3-HD-Aoede" | "Google.gu-IN-Chirp3-HD-Charon" | "Google.gu-IN-Chirp3-HD-Fenrir" | "Google.gu-IN-Chirp3-HD-Kore" | "Google.gu-IN-Chirp3-HD-Leda" | "Google.gu-IN-Chirp3-HD-Orus" | "Google.gu-IN-Chirp3-HD-Puck" | "Google.gu-IN-Chirp3-HD-Zephyr" | "Google.gu-IN-Standard-A" | "Google.gu-IN-Standard-B" | "Google.gu-IN-Standard-C" | "Google.gu-IN-Standard-D" | "Google.gu-IN-Wavenet-A" | "Google.gu-IN-Wavenet-B" | "Google.gu-IN-Wavenet-C" | "Google.gu-IN-Wavenet-D" | "Google.he-IL-Standard-A" | "Google.he-IL-Standard-B" | "Google.he-IL-Standard-C" | "Google.he-IL-Standard-D" | "Google.he-IL-Wavenet-A" | "Google.he-IL-Wavenet-B" | "Google.he-IL-Wavenet-C" | "Google.he-IL-Wavenet-D" | "Google.hi-IN-Chirp3-HD-Aoede" | "Google.hi-IN-Chirp3-HD-Charon" | "Google.hi-IN-Chirp3-HD-Fenrir" | "Google.hi-IN-Chirp3-HD-Kore" | "Google.hi-IN-Chirp3-HD-Leda" | "Google.hi-IN-Chirp3-HD-Orus" | "Google.hi-IN-Chirp3-HD-Puck" | "Google.hi-IN-Chirp3-HD-Zephyr" | "Google.hi-IN-Neural2-A" | "Google.hi-IN-Neural2-B" | "Google.hi-IN-Neural2-C" | "Google.hi-IN-Neural2-D" | "Google.hi-IN-Standard-A" | "Google.hi-IN-Standard-B" | "Google.hi-IN-Standard-C" | "Google.hi-IN-Standard-D" | "Google.hi-IN-Standard-E" | "Google.hi-IN-Standard-F" | "Google.hi-IN-Wavenet-A" | "Google.hi-IN-Wavenet-B" | "Google.hi-IN-Wavenet-C" | "Google.hi-IN-Wavenet-D" | "Google.hi-IN-Wavenet-E" | "Google.hi-IN-Wavenet-F" | "Google.hu-HU-Standard-A" | "Google.hu-HU-Standard-B" | "Google.hu-HU-Wavenet-A" | "Google.id-ID-Chirp3-HD-Aoede" | "Google.id-ID-Chirp3-HD-Charon" | "Google.id-ID-Chirp3-HD-Fenrir" | "Google.id-ID-Chirp3-HD-Kore" | "Google.id-ID-Chirp3-HD-Leda" | "Google.id-ID-Chirp3-HD-Orus" | "Google.id-ID-Chirp3-HD-Puck" | "Google.id-ID-Chirp3-HD-Zephyr" | "Google.id-ID-Standard-A" | "Google.id-ID-Standard-B" | "Google.id-ID-Standard-C" | "Google.id-ID-Standard-D" | "Google.id-ID-Wavenet-A" | "Google.id-ID-Wavenet-B" | "Google.id-ID-Wavenet-C" | "Google.id-ID-Wavenet-D" | "Google.is-IS-Standard-A" | "Google.is-IS-Standard-B" | "Google.it-IT-Chirp3-HD-Aoede" | "Google.it-IT-Chirp3-HD-Charon" | "Google.it-IT-Chirp3-HD-Fenrir" | "Google.it-IT-Chirp3-HD-Kore" | "Google.it-IT-Chirp3-HD-Leda" | "Google.it-IT-Chirp3-HD-Orus" | "Google.it-IT-Chirp3-HD-Puck" | "Google.it-IT-Chirp3-HD-Zephyr" | "Google.it-IT-Neural2-A" | "Google.it-IT-Neural2-C" | "Google.it-IT-Neural2-F" | "Google.it-IT-Standard-A" | "Google.it-IT-Standard-B" | "Google.it-IT-Standard-C" | "Google.it-IT-Standard-D" | "Google.it-IT-Standard-E" | "Google.it-IT-Standard-F" | "Google.it-IT-Wavenet-A" | "Google.it-IT-Wavenet-B" | "Google.it-IT-Wavenet-C" | "Google.it-IT-Wavenet-D" | "Google.it-IT-Wavenet-E" | "Google.it-IT-Wavenet-F" | "Google.ja-JP-Chirp3-HD-Aoede" | "Google.ja-JP-Chirp3-HD-Charon" | "Google.ja-JP-Chirp3-HD-Fenrir" | "Google.ja-JP-Chirp3-HD-Kore" | "Google.ja-JP-Chirp3-HD-Leda" | "Google.ja-JP-Chirp3-HD-Orus" | "Google.ja-JP-Chirp3-HD-Puck" | "Google.ja-JP-Chirp3-HD-Zephyr" | "Google.ja-JP-Neural2-B" | "Google.ja-JP-Neural2-C" | "Google.ja-JP-Neural2-D" | "Google.ja-JP-Standard-A" | "Google.ja-JP-Standard-B" | "Google.ja-JP-Standard-C" | "Google.ja-JP-Standard-D" | "Google.ja-JP-Wavenet-A" | "Google.ja-JP-Wavenet-B" | "Google.ja-JP-Wavenet-C" | "Google.ja-JP-Wavenet-D" | "Google.kn-IN-Chirp3-HD-Aoede" | "Google.kn-IN-Chirp3-HD-Charon" | "Google.kn-IN-Chirp3-HD-Fenrir" | "Google.kn-IN-Chirp3-HD-Kore" | "Google.kn-IN-Chirp3-HD-Leda" | "Google.kn-IN-Chirp3-HD-Orus" | "Google.kn-IN-Chirp3-HD-Puck" | "Google.kn-IN-Chirp3-HD-Zephyr" | "Google.kn-IN-Standard-A" | "Google.kn-IN-Standard-B" | "Google.kn-IN-Standard-C" | "Google.kn-IN-Standard-D" | "Google.kn-IN-Wavenet-A" | "Google.kn-IN-Wavenet-B" | "Google.kn-IN-Wavenet-C" | "Google.kn-IN-Wavenet-D" | "Google.ko-KR-Chirp3-HD-Aoede" | "Google.ko-KR-Chirp3-HD-Charon" | "Google.ko-KR-Chirp3-HD-Fenrir" | "Google.ko-KR-Chirp3-HD-Kore" | "Google.ko-KR-Chirp3-HD-Leda" | "Google.ko-KR-Chirp3-HD-Orus" | "Google.ko-KR-Chirp3-HD-Puck" | "Google.ko-KR-Chirp3-HD-Zephyr" | "Google.ko-KR-Neural2-A" | "Google.ko-KR-Neural2-B" | "Google.ko-KR-Neural2-C" | "Google.ko-KR-Standard-A" | "Google.ko-KR-Standard-B" | "Google.ko-KR-Standard-C" | "Google.ko-KR-Standard-D" | "Google.ko-KR-Wavenet-A" | "Google.ko-KR-Wavenet-B" | "Google.ko-KR-Wavenet-C" | "Google.ko-KR-Wavenet-D" | "Google.lt-LT-Standard-A" | "Google.lt-LT-Standard-B" | "Google.lv-LV-Standard-A" | "Google.lv-LV-Standard-B" | "Google.ml-IN-Chirp3-HD-Aoede" | "Google.ml-IN-Chirp3-HD-Charon" | "Google.ml-IN-Chirp3-HD-Fenrir" | "Google.ml-IN-Chirp3-HD-Kore" | "Google.ml-IN-Chirp3-HD-Leda" | "Google.ml-IN-Chirp3-HD-Orus" | "Google.ml-IN-Chirp3-HD-Puck" | "Google.ml-IN-Chirp3-HD-Zephyr" | "Google.ml-IN-Standard-A" | "Google.ml-IN-Standard-B" | "Google.ml-IN-Standard-C" | "Google.ml-IN-Standard-D" | "Google.ml-IN-Wavenet-A" | "Google.ml-IN-Wavenet-B" | "Google.ml-IN-Wavenet-C" | "Google.ml-IN-Wavenet-D" | "Google.mr-IN-Chirp3-HD-Aoede" | "Google.mr-IN-Chirp3-HD-Charon" | "Google.mr-IN-Chirp3-HD-Fenrir" | "Google.mr-IN-Chirp3-HD-Kore" | "Google.mr-IN-Chirp3-HD-Leda" | "Google.mr-IN-Chirp3-HD-Orus" | "Google.mr-IN-Chirp3-HD-Puck" | "Google.mr-IN-Chirp3-HD-Zephyr" | "Google.mr-IN-Standard-A" | "Google.mr-IN-Standard-B" | "Google.mr-IN-Standard-C" | "Google.mr-IN-Wavenet-A" | "Google.mr-IN-Wavenet-B" | "Google.mr-IN-Wavenet-C" | "Google.ms-MY-Standard-A" | "Google.ms-MY-Standard-B" | "Google.ms-MY-Standard-C" | "Google.ms-MY-Standard-D" | "Google.ms-MY-Wavenet-A" | "Google.ms-MY-Wavenet-B" | "Google.ms-MY-Wavenet-C" | "Google.ms-MY-Wavenet-D" | "Google.nb-NO-Standard-A" | "Google.nb-NO-Standard-B" | "Google.nb-NO-Standard-C" | "Google.nb-NO-Standard-D" | "Google.nb-NO-Standard-E" | "Google.nb-NO-Standard-F" | "Google.nb-NO-Standard-G" | "Google.nb-NO-Wavenet-A" | "Google.nb-NO-Wavenet-B" | "Google.nb-NO-Wavenet-C" | "Google.nb-NO-Wavenet-D" | "Google.nb-NO-Wavenet-E" | "Google.nb-NO-Wavenet-F" | "Google.nb-NO-Wavenet-G" | "Google.nl-BE-Standard-A" | "Google.nl-BE-Standard-B" | "Google.nl-BE-Standard-C" | "Google.nl-BE-Standard-D" | "Google.nl-BE-Wavenet-A" | "Google.nl-BE-Wavenet-B" | "Google.nl-BE-Wavenet-C" | "Google.nl-BE-Wavenet-D" | "Google.nl-NL-Chirp3-HD-Aoede" | "Google.nl-NL-Chirp3-HD-Charon" | "Google.nl-NL-Chirp3-HD-Fenrir" | "Google.nl-NL-Chirp3-HD-Kore" | "Google.nl-NL-Chirp3-HD-Leda" | "Google.nl-NL-Chirp3-HD-Orus" | "Google.nl-NL-Chirp3-HD-Puck" | "Google.nl-NL-Chirp3-HD-Zephyr" | "Google.nl-NL-Standard-A" | "Google.nl-NL-Standard-B" | "Google.nl-NL-Standard-C" | "Google.nl-NL-Standard-D" | "Google.nl-NL-Standard-E" | "Google.nl-NL-Standard-F" | "Google.nl-NL-Standard-G" | "Google.nl-NL-Wavenet-A" | "Google.nl-NL-Wavenet-B" | "Google.nl-NL-Wavenet-C" | "Google.nl-NL-Wavenet-D" | "Google.nl-NL-Wavenet-E" | "Google.nl-NL-Wavenet-F" | "Google.nl-NL-Wavenet-G" | "Google.pa-IN-Standard-A" | "Google.pa-IN-Standard-B" | "Google.pa-IN-Standard-C" | "Google.pa-IN-Standard-D" | "Google.pa-IN-Wavenet-A" | "Google.pa-IN-Wavenet-B" | "Google.pa-IN-Wavenet-C" | "Google.pa-IN-Wavenet-D" | "Google.pl-PL-Chirp3-HD-Aoede" | "Google.pl-PL-Chirp3-HD-Charon" | "Google.pl-PL-Chirp3-HD-Fenrir" | "Google.pl-PL-Chirp3-HD-Kore" | "Google.pl-PL-Chirp3-HD-Leda" | "Google.pl-PL-Chirp3-HD-Orus" | "Google.pl-PL-Chirp3-HD-Puck" | "Google.pl-PL-Chirp3-HD-Zephyr" | "Google.pl-PL-Standard-A" | "Google.pl-PL-Standard-B" | "Google.pl-PL-Standard-C" | "Google.pl-PL-Standard-D" | "Google.pl-PL-Standard-E" | "Google.pl-PL-Standard-F" | "Google.pl-PL-Standard-G" | "Google.pl-PL-Wavenet-A" | "Google.pl-PL-Wavenet-B" | "Google.pl-PL-Wavenet-C" | "Google.pl-PL-Wavenet-D" | "Google.pl-PL-Wavenet-E" | "Google.pl-PL-Wavenet-F" | "Google.pl-PL-Wavenet-G" | "Google.pt-BR-Chirp3-HD-Aoede" | "Google.pt-BR-Chirp3-HD-Charon" | "Google.pt-BR-Chirp3-HD-Fenrir" | "Google.pt-BR-Chirp3-HD-Kore" | "Google.pt-BR-Chirp3-HD-Leda" | "Google.pt-BR-Chirp3-HD-Orus" | "Google.pt-BR-Chirp3-HD-Puck" | "Google.pt-BR-Chirp3-HD-Zephyr" | "Google.pt-BR-Neural2-A" | "Google.pt-BR-Neural2-B" | "Google.pt-BR-Neural2-C" | "Google.pt-BR-Standard-A" | "Google.pt-BR-Standard-B" | "Google.pt-BR-Standard-C" | "Google.pt-BR-Standard-D" | "Google.pt-BR-Standard-E" | "Google.pt-BR-Wavenet-A" | "Google.pt-BR-Wavenet-B" | "Google.pt-BR-Wavenet-C" | "Google.pt-BR-Wavenet-D" | "Google.pt-BR-Wavenet-E" | "Google.pt-PT-Standard-A" | "Google.pt-PT-Standard-B" | "Google.pt-PT-Standard-C" | "Google.pt-PT-Standard-D" | "Google.pt-PT-Standard-E" | "Google.pt-PT-Standard-F" | "Google.pt-PT-Wavenet-A" | "Google.pt-PT-Wavenet-B" | "Google.pt-PT-Wavenet-C" | "Google.pt-PT-Wavenet-D" | "Google.pt-PT-Wavenet-E" | "Google.pt-PT-Wavenet-F" | "Google.ro-RO-Standard-A" | "Google.ro-RO-Standard-B" | "Google.ro-RO-Wavenet-A" | "Google.ro-RO-Wavenet-B" | "Google.ru-RU-Chirp3-HD-Aoede" | "Google.ru-RU-Chirp3-HD-Charon" | "Google.ru-RU-Chirp3-HD-Fenrir" | "Google.ru-RU-Chirp3-HD-Kore" | "Google.ru-RU-Chirp3-HD-Leda" | "Google.ru-RU-Chirp3-HD-Orus" | "Google.ru-RU-Chirp3-HD-Puck" | "Google.ru-RU-Chirp3-HD-Zephyr" | "Google.ru-RU-Standard-A" | "Google.ru-RU-Standard-B" | "Google.ru-RU-Standard-C" | "Google.ru-RU-Standard-D" | "Google.ru-RU-Standard-E" | "Google.ru-RU-Wavenet-A" | "Google.ru-RU-Wavenet-B" | "Google.ru-RU-Wavenet-C" | "Google.ru-RU-Wavenet-D" | "Google.ru-RU-Wavenet-E" | "Google.sk-SK-Standard-A" | "Google.sk-SK-Standard-B" | "Google.sk-SK-Wavenet-A" | "Google.sk-SK-Wavenet-B" | "Google.sr-RS-Standard-A" | "Google.sv-SE-Standard-A" | "Google.sv-SE-Standard-B" | "Google.sv-SE-Standard-C" | "Google.sv-SE-Standard-D" | "Google.sv-SE-Standard-E" | "Google.sv-SE-Standard-F" | "Google.sv-SE-Standard-G" | "Google.sv-SE-Wavenet-A" | "Google.sv-SE-Wavenet-B" | "Google.sv-SE-Wavenet-C" | "Google.sv-SE-Wavenet-D" | "Google.sv-SE-Wavenet-E" | "Google.sv-SE-Wavenet-F" | "Google.sv-SE-Wavenet-G" | "Google.ta-IN-Chirp3-HD-Aoede" | "Google.ta-IN-Chirp3-HD-Charon" | "Google.ta-IN-Chirp3-HD-Fenrir" | "Google.ta-IN-Chirp3-HD-Kore" | "Google.ta-IN-Chirp3-HD-Leda" | "Google.ta-IN-Chirp3-HD-Orus" | "Google.ta-IN-Chirp3-HD-Puck" | "Google.ta-IN-Chirp3-HD-Zephyr" | "Google.ta-IN-Standard-A" | "Google.ta-IN-Standard-B" | "Google.ta-IN-Standard-C" | "Google.ta-IN-Standard-D" | "Google.ta-IN-Wavenet-A" | "Google.ta-IN-Wavenet-B" | "Google.ta-IN-Wavenet-C" | "Google.ta-IN-Wavenet-D" | "Google.te-IN-Chirp3-HD-Aoede" | "Google.te-IN-Chirp3-HD-Charon" | "Google.te-IN-Chirp3-HD-Fenrir" | "Google.te-IN-Chirp3-HD-Kore" | "Google.te-IN-Chirp3-HD-Leda" | "Google.te-IN-Chirp3-HD-Orus" | "Google.te-IN-Chirp3-HD-Puck" | "Google.te-IN-Chirp3-HD-Zephyr" | "Google.te-IN-Standard-A" | "Google.te-IN-Standard-B" | "Google.te-IN-Standard-C" | "Google.te-IN-Standard-D" | "Google.th-TH-Chirp3-HD-Aoede" | "Google.th-TH-Chirp3-HD-Charon" | "Google.th-TH-Chirp3-HD-Fenrir" | "Google.th-TH-Chirp3-HD-Kore" | "Google.th-TH-Chirp3-HD-Leda" | "Google.th-TH-Chirp3-HD-Orus" | "Google.th-TH-Chirp3-HD-Puck" | "Google.th-TH-Chirp3-HD-Zephyr" | "Google.th-TH-Neural2-C" | "Google.th-TH-Standard-A" | "Google.tr-TR-Chirp3-HD-Aoede" | "Google.tr-TR-Chirp3-HD-Charon" | "Google.tr-TR-Chirp3-HD-Fenrir" | "Google.tr-TR-Chirp3-HD-Kore" | "Google.tr-TR-Chirp3-HD-Leda" | "Google.tr-TR-Chirp3-HD-Orus" | "Google.tr-TR-Chirp3-HD-Puck" | "Google.tr-TR-Chirp3-HD-Zephyr" | "Google.tr-TR-Standard-A" | "Google.tr-TR-Standard-B" | "Google.tr-TR-Standard-C" | "Google.tr-TR-Standard-D" | "Google.tr-TR-Standard-E" | "Google.tr-TR-Wavenet-A" | "Google.tr-TR-Wavenet-B" | "Google.tr-TR-Wavenet-C" | "Google.tr-TR-Wavenet-D" | "Google.tr-TR-Wavenet-E" | "Google.uk-UA-Standard-A" | "Google.uk-UA-Wavenet-A" | "Google.vi-VN-Chirp3-HD-Aoede" | "Google.vi-VN-Chirp3-HD-Charon" | "Google.vi-VN-Chirp3-HD-Fenrir" | "Google.vi-VN-Chirp3-HD-Kore" | "Google.vi-VN-Chirp3-HD-Leda" | "Google.vi-VN-Chirp3-HD-Orus" | "Google.vi-VN-Chirp3-HD-Puck" | "Google.vi-VN-Chirp3-HD-Zephyr" | "Google.vi-VN-Neural2-A" | "Google.vi-VN-Neural2-D" | "Google.vi-VN-Standard-A" | "Google.vi-VN-Standard-B" | "Google.vi-VN-Standard-C" | "Google.vi-VN-Standard-D" | "Google.vi-VN-Wavenet-A" | "Google.vi-VN-Wavenet-B" | "Google.vi-VN-Wavenet-C" | "Google.vi-VN-Wavenet-D" | "Google.yue-HK-Standard-A" | "Google.yue-HK-Standard-B" | "Google.yue-HK-Standard-C" | "Google.yue-HK-Standard-D" | "Polly.Aditi" | "Polly.Amy" | "Polly.Astrid" | "Polly.Bianca" | "Polly.Brian" | "Polly.Camila" | "Polly.Carla" | "Polly.Carmen" | "Polly.Celine" | "Polly.Chantal" | "Polly.Conchita" | "Polly.Cristiano" | "Polly.Dora" | "Polly.Emma" | "Polly.Enrique" | "Polly.Ewa" | "Polly.Filiz" | "Polly.Geraint" | "Polly.Giorgio" | "Polly.Gwyneth" | "Polly.Hans" | "Polly.Ines" | "Polly.Ivy" | "Polly.Jacek" | "Polly.Jan" | "Polly.Joanna" | "Polly.Joey" | "Polly.Justin" | "Polly.Karl" | "Polly.Kendra" | "Polly.Kevin" | "Polly.Kimberly" | "Polly.Lea" | "Polly.Liv" | "Polly.Lotte" | "Polly.Lucia" | "Polly.Lupe" | "Polly.Mads" | "Polly.Maja" | "Polly.Marlene" | "Polly.Mathieu" | "Polly.Matthew" | "Polly.Maxim" | "Polly.Mia" | "Polly.Miguel" | "Polly.Mizuki" | "Polly.Naja" | "Polly.Nicole" | "Polly.Penelope" | "Polly.Raveena" | "Polly.Ricardo" | "Polly.Ruben" | "Polly.Russell" | "Polly.Salli" | "Polly.Seoyeon" | "Polly.Takumi" | "Polly.Tatyana" | "Polly.Vicki" | "Polly.Vitoria" | "Polly.Zeina" | "Polly.Zhiyu" | "Polly.Adriano-Neural" | "Polly.Amy-Neural" | "Polly.Andres-Neural" | "Polly.Aria-Neural" | "Polly.Arlet-Neural" | "Polly.Arthur-Neural" | "Polly.Ayanda-Neural" | "Polly.Bianca-Neural" | "Polly.Brian-Neural" | "Polly.Burcu-Neural" | "Polly.Camila-Neural" | "Polly.Daniel-Neural" | "Polly.Danielle-Neural" | "Polly.Elin-Neural" | "Polly.Emma-Neural" | "Polly.Gabrielle-Neural" | "Polly.Gregory-Neural" | "Polly.Hala-Neural" | "Polly.Hannah-Neural" | "Polly.Hiujin-Neural" | "Polly.Ida-Neural" | "Polly.Ines-Neural" | "Polly.Isabelle-Neural" | "Polly.Ivy-Neural" | "Polly.Joanna-Neural" | "Polly.Joey-Neural" | "Polly.Justin-Neural" | "Polly.Kajal-Neural" | "Polly.Kazuha-Neural" | "Polly.Kendra-Neural" | "Polly.Kevin-Neural" | "Polly.Kimberly-Neural" | "Polly.Laura-Neural" | "Polly.Lea-Neural" | "Polly.Liam-Neural" | "Polly.Lisa-Neural" | "Polly.Lucia-Neural" | "Polly.Lupe-Neural" | "Polly.Matthew-Neural" | "Polly.Mia-Neural" | "Polly.Niamh-Neural" | "Polly.Ola-Neural" | "Polly.Olivia-Neural" | "Polly.Pedro-Neural" | "Polly.Remi-Neural" | "Polly.Ruth-Neural" | "Polly.Salli-Neural" | "Polly.Seoyeon-Neural" | "Polly.Sergio-Neural" | "Polly.Sofie-Neural" | "Polly.Stephen-Neural" | "Polly.Suvi-Neural" | "Polly.Takumi-Neural" | "Polly.Thiago-Neural" | "Polly.Tomoko-Neural" | "Polly.Vicki-Neural" | "Polly.Vitoria-Neural" | "Polly.Zayd-Neural" | "Polly.Zhiyu-Neural" | "Polly.Amy-Generative" | "Polly.Andres-Generative" | "Polly.Ayanda-Generative" | "Polly.Bianca-Generative" | "Polly.Daniel-Generative" | "Polly.Danielle-Generative" | "Polly.Joanna-Generative" | "Polly.Kajal-Generative" | "Polly.Lea-Generative" | "Polly.Lucia-Generative" | "Polly.Lupe-Generative" | "Polly.Matthew-Generative" | "Polly.Mía-Generative" | "Polly.Olivia-Generative" | "Polly.Pedro-Generative" | "Polly.Rémi-Generative" | "Polly.Ruth-Generative" | "Polly.Sergio-Generative" | "Polly.Stephen-Generative" | "Polly.Vicki-Generative";
|
|
205
205
|
type SipEvent = "initiated" | "ringing" | "answered" | "completed";
|
|
206
206
|
type SiprecStatusCallbackMethod = "GET" | "POST";
|
|
207
207
|
type SiprecTrack = "inbound_track" | "outbound_track" | "both_tracks";
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "twilio",
|
|
3
3
|
"description": "A Twilio helper library",
|
|
4
|
-
"version": "5.
|
|
4
|
+
"version": "5.8.0",
|
|
5
5
|
"author": "API Team <api@twilio.com>",
|
|
6
6
|
"contributors": [
|
|
7
7
|
{
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"url": "https://github.com/twilio/twilio-node.git"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"axios": "^1.
|
|
23
|
+
"axios": "^1.11.0",
|
|
24
24
|
"dayjs": "^1.11.9",
|
|
25
25
|
"https-proxy-agent": "^5.0.0",
|
|
26
26
|
"jsonwebtoken": "^9.0.2",
|