syllable-sdk 0.1.0-alpha.174 → 0.1.0-alpha.177
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/docs/sdks/batches/README.md +4 -4
- package/docs/sdks/workflows/README.md +8 -8
- package/jsr.json +1 -1
- package/lib/config.d.ts +2 -2
- package/lib/config.js +2 -2
- package/models/components/agentvoicedisplayname.d.ts +0 -30
- package/models/components/agentvoicedisplayname.d.ts.map +1 -1
- package/models/components/agentvoicedisplayname.js +0 -10
- package/models/components/agentvoicedisplayname.js.map +1 -1
- package/models/components/languagecode.d.ts +0 -3
- package/models/components/languagecode.d.ts.map +1 -1
- package/models/components/languagecode.js +0 -1
- package/models/components/languagecode.js.map +1 -1
- package/openapi.json +33 -44
- package/package.json +1 -1
- package/src/lib/config.ts +2 -2
- package/src/models/components/agentvoicedisplayname.ts +0 -10
- package/src/models/components/languagecode.ts +0 -1
|
@@ -125,9 +125,9 @@ const syllableSDK = new SyllableSDK({
|
|
|
125
125
|
|
|
126
126
|
async function run() {
|
|
127
127
|
const result = await syllableSDK.outbound.batches.create({
|
|
128
|
-
batchId: "
|
|
128
|
+
batchId: "20250605.9",
|
|
129
129
|
campaignId: 1,
|
|
130
|
-
expiresOn: new Date("2025-06-
|
|
130
|
+
expiresOn: new Date("2025-06-06T00:00:00Z"),
|
|
131
131
|
paused: true,
|
|
132
132
|
});
|
|
133
133
|
|
|
@@ -154,9 +154,9 @@ const syllableSDK = new SyllableSDKCore({
|
|
|
154
154
|
|
|
155
155
|
async function run() {
|
|
156
156
|
const res = await outboundBatchesCreate(syllableSDK, {
|
|
157
|
-
batchId: "
|
|
157
|
+
batchId: "20250605.9",
|
|
158
158
|
campaignId: 1,
|
|
159
|
-
expiresOn: new Date("2025-06-
|
|
159
|
+
expiresOn: new Date("2025-06-06T00:00:00Z"),
|
|
160
160
|
paused: true,
|
|
161
161
|
});
|
|
162
162
|
|
|
@@ -131,8 +131,8 @@ async function run() {
|
|
|
131
131
|
1,
|
|
132
132
|
],
|
|
133
133
|
conditions: {},
|
|
134
|
-
startDatetime: new Date("2025-06-
|
|
135
|
-
endDatetime: new Date("2025-06-
|
|
134
|
+
startDatetime: new Date("2025-06-04T00:00:00Z"),
|
|
135
|
+
endDatetime: new Date("2025-06-05T00:00:00Z"),
|
|
136
136
|
});
|
|
137
137
|
|
|
138
138
|
// Handle the result
|
|
@@ -165,8 +165,8 @@ async function run() {
|
|
|
165
165
|
1,
|
|
166
166
|
],
|
|
167
167
|
conditions: {},
|
|
168
|
-
startDatetime: new Date("2025-06-
|
|
169
|
-
endDatetime: new Date("2025-06-
|
|
168
|
+
startDatetime: new Date("2025-06-04T00:00:00Z"),
|
|
169
|
+
endDatetime: new Date("2025-06-05T00:00:00Z"),
|
|
170
170
|
});
|
|
171
171
|
|
|
172
172
|
if (!res.ok) {
|
|
@@ -303,8 +303,8 @@ async function run() {
|
|
|
303
303
|
1,
|
|
304
304
|
],
|
|
305
305
|
conditions: {},
|
|
306
|
-
startDatetime: new Date("2025-06-
|
|
307
|
-
endDatetime: new Date("2025-06-
|
|
306
|
+
startDatetime: new Date("2025-06-04T00:00:00Z"),
|
|
307
|
+
endDatetime: new Date("2025-06-05T00:00:00Z"),
|
|
308
308
|
},
|
|
309
309
|
});
|
|
310
310
|
|
|
@@ -340,8 +340,8 @@ async function run() {
|
|
|
340
340
|
1,
|
|
341
341
|
],
|
|
342
342
|
conditions: {},
|
|
343
|
-
startDatetime: new Date("2025-06-
|
|
344
|
-
endDatetime: new Date("2025-06-
|
|
343
|
+
startDatetime: new Date("2025-06-04T00:00:00Z"),
|
|
344
|
+
endDatetime: new Date("2025-06-05T00:00:00Z"),
|
|
345
345
|
},
|
|
346
346
|
});
|
|
347
347
|
|
package/jsr.json
CHANGED
package/lib/config.d.ts
CHANGED
|
@@ -27,8 +27,8 @@ export declare function serverURLFromOptions(options: SDKOptions): URL | null;
|
|
|
27
27
|
export declare const SDK_METADATA: {
|
|
28
28
|
readonly language: "typescript";
|
|
29
29
|
readonly openapiDocVersion: "0.0.2";
|
|
30
|
-
readonly sdkVersion: "0.1.0-alpha.
|
|
30
|
+
readonly sdkVersion: "0.1.0-alpha.177";
|
|
31
31
|
readonly genVersion: "2.512.4";
|
|
32
|
-
readonly userAgent: "speakeasy-sdk/typescript 0.1.0-alpha.
|
|
32
|
+
readonly userAgent: "speakeasy-sdk/typescript 0.1.0-alpha.177 2.512.4 0.0.2 syllable-sdk";
|
|
33
33
|
};
|
|
34
34
|
//# sourceMappingURL=config.d.ts.map
|
package/lib/config.js
CHANGED
|
@@ -31,8 +31,8 @@ function serverURLFromOptions(options) {
|
|
|
31
31
|
exports.SDK_METADATA = {
|
|
32
32
|
language: "typescript",
|
|
33
33
|
openapiDocVersion: "0.0.2",
|
|
34
|
-
sdkVersion: "0.1.0-alpha.
|
|
34
|
+
sdkVersion: "0.1.0-alpha.177",
|
|
35
35
|
genVersion: "2.512.4",
|
|
36
|
-
userAgent: "speakeasy-sdk/typescript 0.1.0-alpha.
|
|
36
|
+
userAgent: "speakeasy-sdk/typescript 0.1.0-alpha.177 2.512.4 0.0.2 syllable-sdk",
|
|
37
37
|
};
|
|
38
38
|
//# sourceMappingURL=config.js.map
|
|
@@ -4,7 +4,6 @@ import { ClosedEnum } from "../../types/enums.js";
|
|
|
4
4
|
* Display names of voices that Syllable supports.
|
|
5
5
|
*/
|
|
6
6
|
export declare const AgentVoiceDisplayName: {
|
|
7
|
-
readonly Alejandro: "Alejandro";
|
|
8
7
|
readonly Alice: "Alice";
|
|
9
8
|
readonly Alloy: "Alloy";
|
|
10
9
|
readonly Ash: "Ash";
|
|
@@ -14,7 +13,6 @@ export declare const AgentVoiceDisplayName: {
|
|
|
14
13
|
readonly Charlie: "Charlie";
|
|
15
14
|
readonly Charlotte: "Charlotte";
|
|
16
15
|
readonly Chris: "Chris";
|
|
17
|
-
readonly Clara: "Clara";
|
|
18
16
|
readonly CmnTWWavenetA: "cmn-TW-Wavenet-A";
|
|
19
17
|
readonly Coral: "Coral";
|
|
20
18
|
readonly Daniel: "Daniel";
|
|
@@ -28,18 +26,12 @@ export declare const AgentVoiceDisplayName: {
|
|
|
28
26
|
readonly EsUSNeural2B: "es-US-Neural2-B";
|
|
29
27
|
readonly Fable: "Fable";
|
|
30
28
|
readonly George: "George";
|
|
31
|
-
readonly Isabella: "Isabella";
|
|
32
|
-
readonly Jerry: "Jerry";
|
|
33
29
|
readonly Jessica: "Jessica";
|
|
34
30
|
readonly KoKRNeural2A: "ko-KR-Neural2-A";
|
|
35
31
|
readonly Laura: "Laura";
|
|
36
32
|
readonly Liam: "Liam";
|
|
37
33
|
readonly Lily: "Lily";
|
|
38
|
-
readonly Lina: "Lina";
|
|
39
|
-
readonly Mark: "Mark";
|
|
40
34
|
readonly Matilda: "Matilda";
|
|
41
|
-
readonly Melanie: "Melanie";
|
|
42
|
-
readonly Mila: "Mila";
|
|
43
35
|
readonly Nova: "Nova";
|
|
44
36
|
readonly Onyx: "Onyx";
|
|
45
37
|
readonly River: "River";
|
|
@@ -47,8 +39,6 @@ export declare const AgentVoiceDisplayName: {
|
|
|
47
39
|
readonly Sarah: "Sarah";
|
|
48
40
|
readonly Sage: "Sage";
|
|
49
41
|
readonly Shimmer: "Shimmer";
|
|
50
|
-
readonly Sienna: "Sienna";
|
|
51
|
-
readonly Tara: "Tara";
|
|
52
42
|
readonly ViVNNeural2A: "vi-VN-Neural2-A";
|
|
53
43
|
readonly Will: "Will";
|
|
54
44
|
readonly YueHKStandardC: "yue-HK-Standard-C";
|
|
@@ -68,7 +58,6 @@ export declare const AgentVoiceDisplayName$outboundSchema: z.ZodNativeEnum<typeo
|
|
|
68
58
|
export declare namespace AgentVoiceDisplayName$ {
|
|
69
59
|
/** @deprecated use `AgentVoiceDisplayName$inboundSchema` instead. */
|
|
70
60
|
const inboundSchema: z.ZodNativeEnum<{
|
|
71
|
-
readonly Alejandro: "Alejandro";
|
|
72
61
|
readonly Alice: "Alice";
|
|
73
62
|
readonly Alloy: "Alloy";
|
|
74
63
|
readonly Ash: "Ash";
|
|
@@ -78,7 +67,6 @@ export declare namespace AgentVoiceDisplayName$ {
|
|
|
78
67
|
readonly Charlie: "Charlie";
|
|
79
68
|
readonly Charlotte: "Charlotte";
|
|
80
69
|
readonly Chris: "Chris";
|
|
81
|
-
readonly Clara: "Clara";
|
|
82
70
|
readonly CmnTWWavenetA: "cmn-TW-Wavenet-A";
|
|
83
71
|
readonly Coral: "Coral";
|
|
84
72
|
readonly Daniel: "Daniel";
|
|
@@ -92,18 +80,12 @@ export declare namespace AgentVoiceDisplayName$ {
|
|
|
92
80
|
readonly EsUSNeural2B: "es-US-Neural2-B";
|
|
93
81
|
readonly Fable: "Fable";
|
|
94
82
|
readonly George: "George";
|
|
95
|
-
readonly Isabella: "Isabella";
|
|
96
|
-
readonly Jerry: "Jerry";
|
|
97
83
|
readonly Jessica: "Jessica";
|
|
98
84
|
readonly KoKRNeural2A: "ko-KR-Neural2-A";
|
|
99
85
|
readonly Laura: "Laura";
|
|
100
86
|
readonly Liam: "Liam";
|
|
101
87
|
readonly Lily: "Lily";
|
|
102
|
-
readonly Lina: "Lina";
|
|
103
|
-
readonly Mark: "Mark";
|
|
104
88
|
readonly Matilda: "Matilda";
|
|
105
|
-
readonly Melanie: "Melanie";
|
|
106
|
-
readonly Mila: "Mila";
|
|
107
89
|
readonly Nova: "Nova";
|
|
108
90
|
readonly Onyx: "Onyx";
|
|
109
91
|
readonly River: "River";
|
|
@@ -111,15 +93,12 @@ export declare namespace AgentVoiceDisplayName$ {
|
|
|
111
93
|
readonly Sarah: "Sarah";
|
|
112
94
|
readonly Sage: "Sage";
|
|
113
95
|
readonly Shimmer: "Shimmer";
|
|
114
|
-
readonly Sienna: "Sienna";
|
|
115
|
-
readonly Tara: "Tara";
|
|
116
96
|
readonly ViVNNeural2A: "vi-VN-Neural2-A";
|
|
117
97
|
readonly Will: "Will";
|
|
118
98
|
readonly YueHKStandardC: "yue-HK-Standard-C";
|
|
119
99
|
}>;
|
|
120
100
|
/** @deprecated use `AgentVoiceDisplayName$outboundSchema` instead. */
|
|
121
101
|
const outboundSchema: z.ZodNativeEnum<{
|
|
122
|
-
readonly Alejandro: "Alejandro";
|
|
123
102
|
readonly Alice: "Alice";
|
|
124
103
|
readonly Alloy: "Alloy";
|
|
125
104
|
readonly Ash: "Ash";
|
|
@@ -129,7 +108,6 @@ export declare namespace AgentVoiceDisplayName$ {
|
|
|
129
108
|
readonly Charlie: "Charlie";
|
|
130
109
|
readonly Charlotte: "Charlotte";
|
|
131
110
|
readonly Chris: "Chris";
|
|
132
|
-
readonly Clara: "Clara";
|
|
133
111
|
readonly CmnTWWavenetA: "cmn-TW-Wavenet-A";
|
|
134
112
|
readonly Coral: "Coral";
|
|
135
113
|
readonly Daniel: "Daniel";
|
|
@@ -143,18 +121,12 @@ export declare namespace AgentVoiceDisplayName$ {
|
|
|
143
121
|
readonly EsUSNeural2B: "es-US-Neural2-B";
|
|
144
122
|
readonly Fable: "Fable";
|
|
145
123
|
readonly George: "George";
|
|
146
|
-
readonly Isabella: "Isabella";
|
|
147
|
-
readonly Jerry: "Jerry";
|
|
148
124
|
readonly Jessica: "Jessica";
|
|
149
125
|
readonly KoKRNeural2A: "ko-KR-Neural2-A";
|
|
150
126
|
readonly Laura: "Laura";
|
|
151
127
|
readonly Liam: "Liam";
|
|
152
128
|
readonly Lily: "Lily";
|
|
153
|
-
readonly Lina: "Lina";
|
|
154
|
-
readonly Mark: "Mark";
|
|
155
129
|
readonly Matilda: "Matilda";
|
|
156
|
-
readonly Melanie: "Melanie";
|
|
157
|
-
readonly Mila: "Mila";
|
|
158
130
|
readonly Nova: "Nova";
|
|
159
131
|
readonly Onyx: "Onyx";
|
|
160
132
|
readonly River: "River";
|
|
@@ -162,8 +134,6 @@ export declare namespace AgentVoiceDisplayName$ {
|
|
|
162
134
|
readonly Sarah: "Sarah";
|
|
163
135
|
readonly Sage: "Sage";
|
|
164
136
|
readonly Shimmer: "Shimmer";
|
|
165
|
-
readonly Sienna: "Sienna";
|
|
166
|
-
readonly Tara: "Tara";
|
|
167
137
|
readonly ViVNNeural2A: "vi-VN-Neural2-A";
|
|
168
138
|
readonly Will: "Will";
|
|
169
139
|
readonly YueHKStandardC: "yue-HK-Standard-C";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"agentvoicedisplayname.d.ts","sourceRoot":"","sources":["../../src/models/components/agentvoicedisplayname.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAC;AAElD;;GAEG;AACH,eAAO,MAAM,qBAAqB
|
|
1
|
+
{"version":3,"file":"agentvoicedisplayname.d.ts","sourceRoot":"","sources":["../../src/models/components/agentvoicedisplayname.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAC;AAElD;;GAEG;AACH,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAuCxB,CAAC;AACX;;GAEG;AACH,MAAM,MAAM,qBAAqB,GAAG,UAAU,CAAC,OAAO,qBAAqB,CAAC,CAAC;AAE7E,gBAAgB;AAChB,eAAO,MAAM,mCAAmC,EAAE,CAAC,CAAC,aAAa,CAC/D,OAAO,qBAAqB,CACS,CAAC;AAExC,gBAAgB;AAChB,eAAO,MAAM,oCAAoC,EAAE,CAAC,CAAC,aAAa,CAChE,OAAO,qBAAqB,CACS,CAAC;AAExC;;;GAGG;AACH,yBAAiB,sBAAsB,CAAC;IACtC,qEAAqE;IAC9D,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAAsC,CAAC;IACjE,sEAAsE;IAC/D,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAAuC,CAAC;CACpE"}
|
|
@@ -32,7 +32,6 @@ const z = __importStar(require("zod"));
|
|
|
32
32
|
* Display names of voices that Syllable supports.
|
|
33
33
|
*/
|
|
34
34
|
exports.AgentVoiceDisplayName = {
|
|
35
|
-
Alejandro: "Alejandro",
|
|
36
35
|
Alice: "Alice",
|
|
37
36
|
Alloy: "Alloy",
|
|
38
37
|
Ash: "Ash",
|
|
@@ -42,7 +41,6 @@ exports.AgentVoiceDisplayName = {
|
|
|
42
41
|
Charlie: "Charlie",
|
|
43
42
|
Charlotte: "Charlotte",
|
|
44
43
|
Chris: "Chris",
|
|
45
|
-
Clara: "Clara",
|
|
46
44
|
CmnTWWavenetA: "cmn-TW-Wavenet-A",
|
|
47
45
|
Coral: "Coral",
|
|
48
46
|
Daniel: "Daniel",
|
|
@@ -56,18 +54,12 @@ exports.AgentVoiceDisplayName = {
|
|
|
56
54
|
EsUSNeural2B: "es-US-Neural2-B",
|
|
57
55
|
Fable: "Fable",
|
|
58
56
|
George: "George",
|
|
59
|
-
Isabella: "Isabella",
|
|
60
|
-
Jerry: "Jerry",
|
|
61
57
|
Jessica: "Jessica",
|
|
62
58
|
KoKRNeural2A: "ko-KR-Neural2-A",
|
|
63
59
|
Laura: "Laura",
|
|
64
60
|
Liam: "Liam",
|
|
65
61
|
Lily: "Lily",
|
|
66
|
-
Lina: "Lina",
|
|
67
|
-
Mark: "Mark",
|
|
68
62
|
Matilda: "Matilda",
|
|
69
|
-
Melanie: "Melanie",
|
|
70
|
-
Mila: "Mila",
|
|
71
63
|
Nova: "Nova",
|
|
72
64
|
Onyx: "Onyx",
|
|
73
65
|
River: "River",
|
|
@@ -75,8 +67,6 @@ exports.AgentVoiceDisplayName = {
|
|
|
75
67
|
Sarah: "Sarah",
|
|
76
68
|
Sage: "Sage",
|
|
77
69
|
Shimmer: "Shimmer",
|
|
78
|
-
Sienna: "Sienna",
|
|
79
|
-
Tara: "Tara",
|
|
80
70
|
ViVNNeural2A: "vi-VN-Neural2-A",
|
|
81
71
|
Will: "Will",
|
|
82
72
|
YueHKStandardC: "yue-HK-Standard-C",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"agentvoicedisplayname.js","sourceRoot":"","sources":["../../src/models/components/agentvoicedisplayname.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;AAEH,uCAAyB;AAGzB;;GAEG;AACU,QAAA,qBAAqB,GAAG;IACnC,
|
|
1
|
+
{"version":3,"file":"agentvoicedisplayname.js","sourceRoot":"","sources":["../../src/models/components/agentvoicedisplayname.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;AAEH,uCAAyB;AAGzB;;GAEG;AACU,QAAA,qBAAqB,GAAG;IACnC,KAAK,EAAE,OAAO;IACd,KAAK,EAAE,OAAO;IACd,GAAG,EAAE,KAAK;IACV,IAAI,EAAE,MAAM;IACZ,KAAK,EAAE,OAAO;IACd,MAAM,EAAE,QAAQ;IAChB,OAAO,EAAE,SAAS;IAClB,SAAS,EAAE,WAAW;IACtB,KAAK,EAAE,OAAO;IACd,aAAa,EAAE,kBAAkB;IACjC,KAAK,EAAE,OAAO;IACd,MAAM,EAAE,QAAQ;IAChB,IAAI,EAAE,MAAM;IACZ,YAAY,EAAE,iBAAiB;IAC/B,YAAY,EAAE,iBAAiB;IAC/B,YAAY,EAAE,iBAAiB;IAC/B,WAAW,EAAE,gBAAgB;IAC7B,IAAI,EAAE,MAAM;IACZ,YAAY,EAAE,iBAAiB;IAC/B,YAAY,EAAE,iBAAiB;IAC/B,KAAK,EAAE,OAAO;IACd,MAAM,EAAE,QAAQ;IAChB,OAAO,EAAE,SAAS;IAClB,YAAY,EAAE,iBAAiB;IAC/B,KAAK,EAAE,OAAO;IACd,IAAI,EAAE,MAAM;IACZ,IAAI,EAAE,MAAM;IACZ,OAAO,EAAE,SAAS;IAClB,IAAI,EAAE,MAAM;IACZ,IAAI,EAAE,MAAM;IACZ,KAAK,EAAE,OAAO;IACd,KAAK,EAAE,OAAO;IACd,KAAK,EAAE,OAAO;IACd,IAAI,EAAE,MAAM;IACZ,OAAO,EAAE,SAAS;IAClB,YAAY,EAAE,iBAAiB;IAC/B,IAAI,EAAE,MAAM;IACZ,cAAc,EAAE,mBAAmB;CAC3B,CAAC;AAMX,gBAAgB;AACH,QAAA,mCAAmC,GAE5C,CAAC,CAAC,UAAU,CAAC,6BAAqB,CAAC,CAAC;AAExC,gBAAgB;AACH,QAAA,oCAAoC,GAE7C,2CAAmC,CAAC;AAExC;;;GAGG;AACH,IAAiB,sBAAsB,CAKtC;AALD,WAAiB,sBAAsB;IACrC,qEAAqE;IACxD,oCAAa,GAAG,2CAAmC,CAAC;IACjE,sEAAsE;IACzD,qCAAc,GAAG,4CAAoC,CAAC;AACrE,CAAC,EALgB,sBAAsB,sCAAtB,sBAAsB,QAKtC"}
|
|
@@ -10,7 +10,6 @@ export declare const LanguageCode: {
|
|
|
10
10
|
readonly ZhCN: "zh-CN";
|
|
11
11
|
readonly FaIR: "fa-IR";
|
|
12
12
|
readonly EsUS: "es-US";
|
|
13
|
-
readonly ZhTW: "zh-TW";
|
|
14
13
|
readonly THTH: "th-TH";
|
|
15
14
|
readonly ViVN: "vi-VN";
|
|
16
15
|
};
|
|
@@ -35,7 +34,6 @@ export declare namespace LanguageCode$ {
|
|
|
35
34
|
readonly ZhCN: "zh-CN";
|
|
36
35
|
readonly FaIR: "fa-IR";
|
|
37
36
|
readonly EsUS: "es-US";
|
|
38
|
-
readonly ZhTW: "zh-TW";
|
|
39
37
|
readonly THTH: "th-TH";
|
|
40
38
|
readonly ViVN: "vi-VN";
|
|
41
39
|
}>;
|
|
@@ -47,7 +45,6 @@ export declare namespace LanguageCode$ {
|
|
|
47
45
|
readonly ZhCN: "zh-CN";
|
|
48
46
|
readonly FaIR: "fa-IR";
|
|
49
47
|
readonly EsUS: "es-US";
|
|
50
|
-
readonly ZhTW: "zh-TW";
|
|
51
48
|
readonly THTH: "th-TH";
|
|
52
49
|
readonly ViVN: "vi-VN";
|
|
53
50
|
}>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"languagecode.d.ts","sourceRoot":"","sources":["../../src/models/components/languagecode.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAC;AAElD;;GAEG;AACH,eAAO,MAAM,YAAY
|
|
1
|
+
{"version":3,"file":"languagecode.d.ts","sourceRoot":"","sources":["../../src/models/components/languagecode.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAC;AAElD;;GAEG;AACH,eAAO,MAAM,YAAY;;;;;;;;;CASf,CAAC;AACX;;GAEG;AACH,MAAM,MAAM,YAAY,GAAG,UAAU,CAAC,OAAO,YAAY,CAAC,CAAC;AAE3D,gBAAgB;AAChB,eAAO,MAAM,0BAA0B,EAAE,CAAC,CAAC,aAAa,CAAC,OAAO,YAAY,CAChD,CAAC;AAE7B,gBAAgB;AAChB,eAAO,MAAM,2BAA2B,EAAE,CAAC,CAAC,aAAa,CAAC,OAAO,YAAY,CACjD,CAAC;AAE7B;;;GAGG;AACH,yBAAiB,aAAa,CAAC;IAC7B,4DAA4D;IACrD,MAAM,aAAa;;;;;;;;;MAA6B,CAAC;IACxD,6DAA6D;IACtD,MAAM,cAAc;;;;;;;;;MAA8B,CAAC;CAC3D"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"languagecode.js","sourceRoot":"","sources":["../../src/models/components/languagecode.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;AAEH,uCAAyB;AAGzB;;GAEG;AACU,QAAA,YAAY,GAAG;IAC1B,KAAK,EAAE,QAAQ;IACf,IAAI,EAAE,OAAO;IACb,IAAI,EAAE,OAAO;IACb,IAAI,EAAE,OAAO;IACb,IAAI,EAAE,OAAO;IACb,IAAI,EAAE,OAAO;IACb,IAAI,EAAE,OAAO;IACb,IAAI,EAAE,OAAO;
|
|
1
|
+
{"version":3,"file":"languagecode.js","sourceRoot":"","sources":["../../src/models/components/languagecode.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;AAEH,uCAAyB;AAGzB;;GAEG;AACU,QAAA,YAAY,GAAG;IAC1B,KAAK,EAAE,QAAQ;IACf,IAAI,EAAE,OAAO;IACb,IAAI,EAAE,OAAO;IACb,IAAI,EAAE,OAAO;IACb,IAAI,EAAE,OAAO;IACb,IAAI,EAAE,OAAO;IACb,IAAI,EAAE,OAAO;IACb,IAAI,EAAE,OAAO;CACL,CAAC;AAMX,gBAAgB;AACH,QAAA,0BAA0B,GACrC,CAAC,CAAC,UAAU,CAAC,oBAAY,CAAC,CAAC;AAE7B,gBAAgB;AACH,QAAA,2BAA2B,GACtC,kCAA0B,CAAC;AAE7B;;;GAGG;AACH,IAAiB,aAAa,CAK7B;AALD,WAAiB,aAAa;IAC5B,4DAA4D;IAC/C,2BAAa,GAAG,kCAA0B,CAAC;IACxD,6DAA6D;IAChD,4BAAc,GAAG,mCAA2B,CAAC;AAC5D,CAAC,EALgB,aAAa,6BAAb,aAAa,QAK7B"}
|
package/openapi.json
CHANGED
|
@@ -12365,7 +12365,6 @@
|
|
|
12365
12365
|
"AgentVoiceDisplayName": {
|
|
12366
12366
|
"type": "string",
|
|
12367
12367
|
"enum": [
|
|
12368
|
-
"Alejandro",
|
|
12369
12368
|
"Alice",
|
|
12370
12369
|
"Alloy",
|
|
12371
12370
|
"Ash",
|
|
@@ -12375,7 +12374,6 @@
|
|
|
12375
12374
|
"Charlie",
|
|
12376
12375
|
"Charlotte",
|
|
12377
12376
|
"Chris",
|
|
12378
|
-
"Clara",
|
|
12379
12377
|
"cmn-TW-Wavenet-A",
|
|
12380
12378
|
"Coral",
|
|
12381
12379
|
"Daniel",
|
|
@@ -12389,18 +12387,12 @@
|
|
|
12389
12387
|
"es-US-Neural2-B",
|
|
12390
12388
|
"Fable",
|
|
12391
12389
|
"George",
|
|
12392
|
-
"Isabella",
|
|
12393
|
-
"Jerry",
|
|
12394
12390
|
"Jessica",
|
|
12395
12391
|
"ko-KR-Neural2-A",
|
|
12396
12392
|
"Laura",
|
|
12397
12393
|
"Liam",
|
|
12398
12394
|
"Lily",
|
|
12399
|
-
"Lina",
|
|
12400
|
-
"Mark",
|
|
12401
12395
|
"Matilda",
|
|
12402
|
-
"Melanie",
|
|
12403
|
-
"Mila",
|
|
12404
12396
|
"Nova",
|
|
12405
12397
|
"Onyx",
|
|
12406
12398
|
"River",
|
|
@@ -12408,8 +12400,6 @@
|
|
|
12408
12400
|
"Sarah",
|
|
12409
12401
|
"Sage",
|
|
12410
12402
|
"Shimmer",
|
|
12411
|
-
"Sienna",
|
|
12412
|
-
"Tara",
|
|
12413
12403
|
"vi-VN-Neural2-A",
|
|
12414
12404
|
"Will",
|
|
12415
12405
|
"yue-HK-Standard-C"
|
|
@@ -12565,7 +12555,7 @@
|
|
|
12565
12555
|
"title": "Batch Id",
|
|
12566
12556
|
"description": "Unique ID for conversation batch",
|
|
12567
12557
|
"examples": [
|
|
12568
|
-
"
|
|
12558
|
+
"20250605.9"
|
|
12569
12559
|
]
|
|
12570
12560
|
},
|
|
12571
12561
|
"campaign_id": {
|
|
@@ -12589,7 +12579,7 @@
|
|
|
12589
12579
|
"title": "Expires On",
|
|
12590
12580
|
"description": "Timestamp of batch expiration",
|
|
12591
12581
|
"examples": [
|
|
12592
|
-
"2025-06-
|
|
12582
|
+
"2025-06-06T00:00:00Z"
|
|
12593
12583
|
]
|
|
12594
12584
|
},
|
|
12595
12585
|
"paused": {
|
|
@@ -12642,7 +12632,7 @@
|
|
|
12642
12632
|
"title": "Created At",
|
|
12643
12633
|
"description": "Timestamp of batch creation",
|
|
12644
12634
|
"examples": [
|
|
12645
|
-
"2025-06-
|
|
12635
|
+
"2025-06-05T00:00:00Z"
|
|
12646
12636
|
]
|
|
12647
12637
|
},
|
|
12648
12638
|
"deleted_at": {
|
|
@@ -12658,7 +12648,7 @@
|
|
|
12658
12648
|
"title": "Deleted At",
|
|
12659
12649
|
"description": "Timestamp of batch deletion",
|
|
12660
12650
|
"examples": [
|
|
12661
|
-
"2025-06-
|
|
12651
|
+
"2025-06-05T00:00:00Z"
|
|
12662
12652
|
]
|
|
12663
12653
|
},
|
|
12664
12654
|
"deleted_reason": {
|
|
@@ -12689,7 +12679,7 @@
|
|
|
12689
12679
|
"title": "Last Updated At",
|
|
12690
12680
|
"description": "Timestamp of last change to batch",
|
|
12691
12681
|
"examples": [
|
|
12692
|
-
"2025-06-
|
|
12682
|
+
"2025-06-05T00:00:00Z"
|
|
12693
12683
|
]
|
|
12694
12684
|
},
|
|
12695
12685
|
"last_updated_by": {
|
|
@@ -13205,7 +13195,7 @@
|
|
|
13205
13195
|
"title": "Batch Id",
|
|
13206
13196
|
"description": "Unique ID for conversation batch",
|
|
13207
13197
|
"examples": [
|
|
13208
|
-
"
|
|
13198
|
+
"20250605.9"
|
|
13209
13199
|
]
|
|
13210
13200
|
},
|
|
13211
13201
|
"campaign_id": {
|
|
@@ -13229,7 +13219,7 @@
|
|
|
13229
13219
|
"title": "Expires On",
|
|
13230
13220
|
"description": "Timestamp of batch expiration",
|
|
13231
13221
|
"examples": [
|
|
13232
|
-
"2025-06-
|
|
13222
|
+
"2025-06-06T00:00:00Z"
|
|
13233
13223
|
]
|
|
13234
13224
|
},
|
|
13235
13225
|
"paused": {
|
|
@@ -13282,7 +13272,7 @@
|
|
|
13282
13272
|
"title": "Created At",
|
|
13283
13273
|
"description": "Timestamp of batch creation",
|
|
13284
13274
|
"examples": [
|
|
13285
|
-
"2025-06-
|
|
13275
|
+
"2025-06-05T00:00:00Z"
|
|
13286
13276
|
]
|
|
13287
13277
|
},
|
|
13288
13278
|
"deleted_at": {
|
|
@@ -13298,7 +13288,7 @@
|
|
|
13298
13288
|
"title": "Deleted At",
|
|
13299
13289
|
"description": "Timestamp of batch deletion",
|
|
13300
13290
|
"examples": [
|
|
13301
|
-
"2025-06-
|
|
13291
|
+
"2025-06-05T00:00:00Z"
|
|
13302
13292
|
]
|
|
13303
13293
|
},
|
|
13304
13294
|
"deleted_reason": {
|
|
@@ -13329,7 +13319,7 @@
|
|
|
13329
13319
|
"title": "Last Updated At",
|
|
13330
13320
|
"description": "Timestamp of last change to batch",
|
|
13331
13321
|
"examples": [
|
|
13332
|
-
"2025-06-
|
|
13322
|
+
"2025-06-05T00:00:00Z"
|
|
13333
13323
|
]
|
|
13334
13324
|
},
|
|
13335
13325
|
"last_updated_by": {
|
|
@@ -13372,7 +13362,7 @@
|
|
|
13372
13362
|
"title": "Batch Id",
|
|
13373
13363
|
"description": "Unique ID for conversation batch",
|
|
13374
13364
|
"examples": [
|
|
13375
|
-
"
|
|
13365
|
+
"20250605.9"
|
|
13376
13366
|
]
|
|
13377
13367
|
},
|
|
13378
13368
|
"campaign_id": {
|
|
@@ -13396,7 +13386,7 @@
|
|
|
13396
13386
|
"title": "Expires On",
|
|
13397
13387
|
"description": "Timestamp of batch expiration",
|
|
13398
13388
|
"examples": [
|
|
13399
|
-
"2025-06-
|
|
13389
|
+
"2025-06-06T00:00:00Z"
|
|
13400
13390
|
]
|
|
13401
13391
|
},
|
|
13402
13392
|
"paused": {
|
|
@@ -13545,7 +13535,7 @@
|
|
|
13545
13535
|
"title": "Created At",
|
|
13546
13536
|
"description": "Timestamp of request creation",
|
|
13547
13537
|
"examples": [
|
|
13548
|
-
"2025-06-
|
|
13538
|
+
"2025-06-04T00:00:00Z"
|
|
13549
13539
|
]
|
|
13550
13540
|
},
|
|
13551
13541
|
"sent_at": {
|
|
@@ -13561,7 +13551,7 @@
|
|
|
13561
13551
|
"title": "Sent At",
|
|
13562
13552
|
"description": "Timestamp at which request was sent",
|
|
13563
13553
|
"examples": [
|
|
13564
|
-
"2025-06-
|
|
13554
|
+
"2025-06-05T00:00:00Z"
|
|
13565
13555
|
]
|
|
13566
13556
|
},
|
|
13567
13557
|
"attempt_count": {
|
|
@@ -15461,7 +15451,7 @@
|
|
|
15461
15451
|
"title": "Created At",
|
|
15462
15452
|
"description": "Timestamp at which insight upload folder was created",
|
|
15463
15453
|
"examples": [
|
|
15464
|
-
"2025-06-
|
|
15454
|
+
"2025-06-04T00:00:00Z"
|
|
15465
15455
|
]
|
|
15466
15456
|
},
|
|
15467
15457
|
"updated_at": {
|
|
@@ -15470,7 +15460,7 @@
|
|
|
15470
15460
|
"title": "Updated At",
|
|
15471
15461
|
"description": "Timestamp at which insight upload folder was last updated",
|
|
15472
15462
|
"examples": [
|
|
15473
|
-
"2025-06-
|
|
15463
|
+
"2025-06-05T00:00:00Z"
|
|
15474
15464
|
]
|
|
15475
15465
|
},
|
|
15476
15466
|
"last_updated_by": {
|
|
@@ -16185,7 +16175,7 @@
|
|
|
16185
16175
|
"title": "Created At",
|
|
16186
16176
|
"description": "Timestamp of at which insight tool configuration was created",
|
|
16187
16177
|
"examples": [
|
|
16188
|
-
"2025-06-
|
|
16178
|
+
"2025-06-04T00:00:00Z"
|
|
16189
16179
|
]
|
|
16190
16180
|
},
|
|
16191
16181
|
"updated_at": {
|
|
@@ -16194,7 +16184,7 @@
|
|
|
16194
16184
|
"title": "Updated At",
|
|
16195
16185
|
"description": "Timestamp at which insight tool configuration was last updated",
|
|
16196
16186
|
"examples": [
|
|
16197
|
-
"2025-06-
|
|
16187
|
+
"2025-06-05T00:00:00Z"
|
|
16198
16188
|
]
|
|
16199
16189
|
},
|
|
16200
16190
|
"last_updated_by": {
|
|
@@ -16549,7 +16539,7 @@
|
|
|
16549
16539
|
"title": "Start Datetime",
|
|
16550
16540
|
"description": "Timestamp for when the insight workflow should start. An empty value indicates start on activation",
|
|
16551
16541
|
"examples": [
|
|
16552
|
-
"2025-06-
|
|
16542
|
+
"2025-06-04T00:00:00Z"
|
|
16553
16543
|
]
|
|
16554
16544
|
},
|
|
16555
16545
|
"end_datetime": {
|
|
@@ -16565,7 +16555,7 @@
|
|
|
16565
16555
|
"title": "End Datetime",
|
|
16566
16556
|
"description": "Timestamp of when the insight workflow should end. An empty value indicates no end",
|
|
16567
16557
|
"examples": [
|
|
16568
|
-
"2025-06-
|
|
16558
|
+
"2025-06-05T00:00:00Z"
|
|
16569
16559
|
]
|
|
16570
16560
|
}
|
|
16571
16561
|
},
|
|
@@ -16639,7 +16629,7 @@
|
|
|
16639
16629
|
"title": "Start Datetime",
|
|
16640
16630
|
"description": "Timestamp for when the insight workflow should start. An empty value indicates start on activation",
|
|
16641
16631
|
"examples": [
|
|
16642
|
-
"2025-06-
|
|
16632
|
+
"2025-06-04T00:00:00Z"
|
|
16643
16633
|
]
|
|
16644
16634
|
},
|
|
16645
16635
|
"end_datetime": {
|
|
@@ -16655,7 +16645,7 @@
|
|
|
16655
16645
|
"title": "End Datetime",
|
|
16656
16646
|
"description": "Timestamp of when the insight workflow should end. An empty value indicates no end",
|
|
16657
16647
|
"examples": [
|
|
16658
|
-
"2025-06-
|
|
16648
|
+
"2025-06-05T00:00:00Z"
|
|
16659
16649
|
]
|
|
16660
16650
|
},
|
|
16661
16651
|
"id": {
|
|
@@ -16708,7 +16698,7 @@
|
|
|
16708
16698
|
"title": "Created At",
|
|
16709
16699
|
"description": "Timestamp at which the insight workflow was created",
|
|
16710
16700
|
"examples": [
|
|
16711
|
-
"2025-06-
|
|
16701
|
+
"2025-06-04T00:00:00Z"
|
|
16712
16702
|
]
|
|
16713
16703
|
},
|
|
16714
16704
|
"updated_at": {
|
|
@@ -16717,7 +16707,7 @@
|
|
|
16717
16707
|
"title": "Updated At",
|
|
16718
16708
|
"description": "Timestamp of most recent update to the insight workflow",
|
|
16719
16709
|
"examples": [
|
|
16720
|
-
"2025-06-
|
|
16710
|
+
"2025-06-05T00:00:00Z"
|
|
16721
16711
|
]
|
|
16722
16712
|
},
|
|
16723
16713
|
"last_updated_by": {
|
|
@@ -16813,7 +16803,7 @@
|
|
|
16813
16803
|
"title": "Created At",
|
|
16814
16804
|
"description": "Timestamp at which insight upload folder was created",
|
|
16815
16805
|
"examples": [
|
|
16816
|
-
"2025-06-
|
|
16806
|
+
"2025-06-04T00:00:00Z"
|
|
16817
16807
|
]
|
|
16818
16808
|
},
|
|
16819
16809
|
"updated_at": {
|
|
@@ -16822,7 +16812,7 @@
|
|
|
16822
16812
|
"title": "Updated At",
|
|
16823
16813
|
"description": "Timestamp at which insight upload folder was last updated",
|
|
16824
16814
|
"examples": [
|
|
16825
|
-
"2025-06-
|
|
16815
|
+
"2025-06-05T00:00:00Z"
|
|
16826
16816
|
]
|
|
16827
16817
|
},
|
|
16828
16818
|
"last_updated_by": {
|
|
@@ -17057,7 +17047,7 @@
|
|
|
17057
17047
|
"title": "Created At",
|
|
17058
17048
|
"description": "Timestamp at which insight tool result was created",
|
|
17059
17049
|
"examples": [
|
|
17060
|
-
"2025-06-
|
|
17050
|
+
"2025-06-04T00:00:00Z"
|
|
17061
17051
|
]
|
|
17062
17052
|
},
|
|
17063
17053
|
"updated_at": {
|
|
@@ -17066,7 +17056,7 @@
|
|
|
17066
17056
|
"title": "Updated At",
|
|
17067
17057
|
"description": "Timestamp at which insight tool result was last updated",
|
|
17068
17058
|
"examples": [
|
|
17069
|
-
"2025-06-
|
|
17059
|
+
"2025-06-05T00:00:00Z"
|
|
17070
17060
|
]
|
|
17071
17061
|
}
|
|
17072
17062
|
},
|
|
@@ -17201,7 +17191,7 @@
|
|
|
17201
17191
|
"title": "Start Time",
|
|
17202
17192
|
"description": "Start time of the uploaded file",
|
|
17203
17193
|
"examples": [
|
|
17204
|
-
"2025-06-
|
|
17194
|
+
"2025-06-04T00:00:00Z"
|
|
17205
17195
|
]
|
|
17206
17196
|
},
|
|
17207
17197
|
"end_time": {
|
|
@@ -17217,7 +17207,7 @@
|
|
|
17217
17207
|
"title": "End Time",
|
|
17218
17208
|
"description": "End time of the uploaded file",
|
|
17219
17209
|
"examples": [
|
|
17220
|
-
"2025-06-
|
|
17210
|
+
"2025-06-05T00:00:00Z"
|
|
17221
17211
|
]
|
|
17222
17212
|
},
|
|
17223
17213
|
"error_message": {
|
|
@@ -17272,7 +17262,7 @@
|
|
|
17272
17262
|
"title": "Created At",
|
|
17273
17263
|
"description": "Timestamp at which insight upload file was created",
|
|
17274
17264
|
"examples": [
|
|
17275
|
-
"2025-06-
|
|
17265
|
+
"2025-06-04T00:00:00Z"
|
|
17276
17266
|
]
|
|
17277
17267
|
}
|
|
17278
17268
|
},
|
|
@@ -17417,7 +17407,6 @@
|
|
|
17417
17407
|
"zh-CN",
|
|
17418
17408
|
"fa-IR",
|
|
17419
17409
|
"es-US",
|
|
17420
|
-
"zh-TW",
|
|
17421
17410
|
"th-TH",
|
|
17422
17411
|
"vi-VN"
|
|
17423
17412
|
],
|
|
@@ -19849,7 +19838,7 @@
|
|
|
19849
19838
|
"title": "Created At",
|
|
19850
19839
|
"description": "Timestamp of campaign creation",
|
|
19851
19840
|
"examples": [
|
|
19852
|
-
"2025-06-
|
|
19841
|
+
"2025-06-05T00:00:00Z"
|
|
19853
19842
|
]
|
|
19854
19843
|
},
|
|
19855
19844
|
"updated_at": {
|
|
@@ -19858,7 +19847,7 @@
|
|
|
19858
19847
|
"title": "Updated At",
|
|
19859
19848
|
"description": "Timestamp of campaign update",
|
|
19860
19849
|
"examples": [
|
|
19861
|
-
"2025-06-
|
|
19850
|
+
"2025-06-05T00:00:00Z"
|
|
19862
19851
|
]
|
|
19863
19852
|
},
|
|
19864
19853
|
"last_updated_by": {
|
package/package.json
CHANGED
package/src/lib/config.ts
CHANGED
|
@@ -57,8 +57,8 @@ export function serverURLFromOptions(options: SDKOptions): URL | null {
|
|
|
57
57
|
export const SDK_METADATA = {
|
|
58
58
|
language: "typescript",
|
|
59
59
|
openapiDocVersion: "0.0.2",
|
|
60
|
-
sdkVersion: "0.1.0-alpha.
|
|
60
|
+
sdkVersion: "0.1.0-alpha.177",
|
|
61
61
|
genVersion: "2.512.4",
|
|
62
62
|
userAgent:
|
|
63
|
-
"speakeasy-sdk/typescript 0.1.0-alpha.
|
|
63
|
+
"speakeasy-sdk/typescript 0.1.0-alpha.177 2.512.4 0.0.2 syllable-sdk",
|
|
64
64
|
} as const;
|
|
@@ -9,7 +9,6 @@ import { ClosedEnum } from "../../types/enums.js";
|
|
|
9
9
|
* Display names of voices that Syllable supports.
|
|
10
10
|
*/
|
|
11
11
|
export const AgentVoiceDisplayName = {
|
|
12
|
-
Alejandro: "Alejandro",
|
|
13
12
|
Alice: "Alice",
|
|
14
13
|
Alloy: "Alloy",
|
|
15
14
|
Ash: "Ash",
|
|
@@ -19,7 +18,6 @@ export const AgentVoiceDisplayName = {
|
|
|
19
18
|
Charlie: "Charlie",
|
|
20
19
|
Charlotte: "Charlotte",
|
|
21
20
|
Chris: "Chris",
|
|
22
|
-
Clara: "Clara",
|
|
23
21
|
CmnTWWavenetA: "cmn-TW-Wavenet-A",
|
|
24
22
|
Coral: "Coral",
|
|
25
23
|
Daniel: "Daniel",
|
|
@@ -33,18 +31,12 @@ export const AgentVoiceDisplayName = {
|
|
|
33
31
|
EsUSNeural2B: "es-US-Neural2-B",
|
|
34
32
|
Fable: "Fable",
|
|
35
33
|
George: "George",
|
|
36
|
-
Isabella: "Isabella",
|
|
37
|
-
Jerry: "Jerry",
|
|
38
34
|
Jessica: "Jessica",
|
|
39
35
|
KoKRNeural2A: "ko-KR-Neural2-A",
|
|
40
36
|
Laura: "Laura",
|
|
41
37
|
Liam: "Liam",
|
|
42
38
|
Lily: "Lily",
|
|
43
|
-
Lina: "Lina",
|
|
44
|
-
Mark: "Mark",
|
|
45
39
|
Matilda: "Matilda",
|
|
46
|
-
Melanie: "Melanie",
|
|
47
|
-
Mila: "Mila",
|
|
48
40
|
Nova: "Nova",
|
|
49
41
|
Onyx: "Onyx",
|
|
50
42
|
River: "River",
|
|
@@ -52,8 +44,6 @@ export const AgentVoiceDisplayName = {
|
|
|
52
44
|
Sarah: "Sarah",
|
|
53
45
|
Sage: "Sage",
|
|
54
46
|
Shimmer: "Shimmer",
|
|
55
|
-
Sienna: "Sienna",
|
|
56
|
-
Tara: "Tara",
|
|
57
47
|
ViVNNeural2A: "vi-VN-Neural2-A",
|
|
58
48
|
Will: "Will",
|
|
59
49
|
YueHKStandardC: "yue-HK-Standard-C",
|