syllable-sdk 0.1.0-alpha.250 → 0.1.0-alpha.252
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/agents/README.md +2 -2
- 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/agentsttprovider.d.ts +6 -0
- package/models/components/agentsttprovider.d.ts.map +1 -1
- package/models/components/agentsttprovider.js +2 -0
- package/models/components/agentsttprovider.js.map +1 -1
- package/openapi.json +41 -33
- package/package.json +1 -1
- package/src/lib/config.ts +2 -2
- package/src/models/components/agentsttprovider.ts +2 -0
|
@@ -285,7 +285,7 @@ async function run() {
|
|
|
285
285
|
toolHeaders: {
|
|
286
286
|
"some-header": "some-value",
|
|
287
287
|
},
|
|
288
|
-
sttProvider: "Google STT
|
|
288
|
+
sttProvider: "Google STT V2",
|
|
289
289
|
waitSound: "Keyboard 1",
|
|
290
290
|
id: 1,
|
|
291
291
|
});
|
|
@@ -341,7 +341,7 @@ async function run() {
|
|
|
341
341
|
toolHeaders: {
|
|
342
342
|
"some-header": "some-value",
|
|
343
343
|
},
|
|
344
|
-
sttProvider: "Google STT
|
|
344
|
+
sttProvider: "Google STT V2",
|
|
345
345
|
waitSound: "Keyboard 1",
|
|
346
346
|
id: 1,
|
|
347
347
|
});
|
|
@@ -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: "20250828.9",
|
|
129
129
|
campaignId: 1,
|
|
130
|
-
expiresOn: new Date("2025-08-
|
|
130
|
+
expiresOn: new Date("2025-08-29T00: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: "20250828.9",
|
|
158
158
|
campaignId: 1,
|
|
159
|
-
expiresOn: new Date("2025-08-
|
|
159
|
+
expiresOn: new Date("2025-08-29T00:00:00Z"),
|
|
160
160
|
paused: true,
|
|
161
161
|
});
|
|
162
162
|
|
|
@@ -150,8 +150,8 @@ async function run() {
|
|
|
150
150
|
"sheet_name": "Q1 Sales Data",
|
|
151
151
|
},
|
|
152
152
|
},
|
|
153
|
-
startDatetime: new Date("2025-08-
|
|
154
|
-
endDatetime: new Date("2025-08-
|
|
153
|
+
startDatetime: new Date("2025-08-27T00:00:00Z"),
|
|
154
|
+
endDatetime: new Date("2025-08-28T00:00:00Z"),
|
|
155
155
|
});
|
|
156
156
|
|
|
157
157
|
// Handle the result
|
|
@@ -203,8 +203,8 @@ async function run() {
|
|
|
203
203
|
"sheet_name": "Q1 Sales Data",
|
|
204
204
|
},
|
|
205
205
|
},
|
|
206
|
-
startDatetime: new Date("2025-08-
|
|
207
|
-
endDatetime: new Date("2025-08-
|
|
206
|
+
startDatetime: new Date("2025-08-27T00:00:00Z"),
|
|
207
|
+
endDatetime: new Date("2025-08-28T00:00:00Z"),
|
|
208
208
|
});
|
|
209
209
|
|
|
210
210
|
if (!res.ok) {
|
|
@@ -360,8 +360,8 @@ async function run() {
|
|
|
360
360
|
"sheet_name": "Q1 Sales Data",
|
|
361
361
|
},
|
|
362
362
|
},
|
|
363
|
-
startDatetime: new Date("2025-08-
|
|
364
|
-
endDatetime: new Date("2025-08-
|
|
363
|
+
startDatetime: new Date("2025-08-27T00:00:00Z"),
|
|
364
|
+
endDatetime: new Date("2025-08-28T00:00:00Z"),
|
|
365
365
|
},
|
|
366
366
|
});
|
|
367
367
|
|
|
@@ -416,8 +416,8 @@ async function run() {
|
|
|
416
416
|
"sheet_name": "Q1 Sales Data",
|
|
417
417
|
},
|
|
418
418
|
},
|
|
419
|
-
startDatetime: new Date("2025-08-
|
|
420
|
-
endDatetime: new Date("2025-08-
|
|
419
|
+
startDatetime: new Date("2025-08-27T00:00:00Z"),
|
|
420
|
+
endDatetime: new Date("2025-08-28T00:00:00Z"),
|
|
421
421
|
},
|
|
422
422
|
});
|
|
423
423
|
|
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.252";
|
|
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.252 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.252",
|
|
35
35
|
genVersion: "2.512.4",
|
|
36
|
-
userAgent: "speakeasy-sdk/typescript 0.1.0-alpha.
|
|
36
|
+
userAgent: "speakeasy-sdk/typescript 0.1.0-alpha.252 2.512.4 0.0.2 syllable-sdk",
|
|
37
37
|
};
|
|
38
38
|
//# sourceMappingURL=config.js.map
|
|
@@ -4,6 +4,8 @@ import { ClosedEnum } from "../../types/enums.js";
|
|
|
4
4
|
* Speech-to-text providers supported by agents.
|
|
5
5
|
*/
|
|
6
6
|
export declare const AgentSttProvider: {
|
|
7
|
+
readonly GoogleSTTV2Chirp2: "Google STT V2 (Chirp 2)";
|
|
8
|
+
readonly DeepgramNova3: "Deepgram Nova 3";
|
|
7
9
|
readonly GoogleSTTV2: "Google STT V2";
|
|
8
10
|
readonly GoogleSTTV1: "Google STT V1";
|
|
9
11
|
readonly DeepgramNova2: "Deepgram Nova 2";
|
|
@@ -23,12 +25,16 @@ export declare const AgentSttProvider$outboundSchema: z.ZodNativeEnum<typeof Age
|
|
|
23
25
|
export declare namespace AgentSttProvider$ {
|
|
24
26
|
/** @deprecated use `AgentSttProvider$inboundSchema` instead. */
|
|
25
27
|
const inboundSchema: z.ZodNativeEnum<{
|
|
28
|
+
readonly GoogleSTTV2Chirp2: "Google STT V2 (Chirp 2)";
|
|
29
|
+
readonly DeepgramNova3: "Deepgram Nova 3";
|
|
26
30
|
readonly GoogleSTTV2: "Google STT V2";
|
|
27
31
|
readonly GoogleSTTV1: "Google STT V1";
|
|
28
32
|
readonly DeepgramNova2: "Deepgram Nova 2";
|
|
29
33
|
}>;
|
|
30
34
|
/** @deprecated use `AgentSttProvider$outboundSchema` instead. */
|
|
31
35
|
const outboundSchema: z.ZodNativeEnum<{
|
|
36
|
+
readonly GoogleSTTV2Chirp2: "Google STT V2 (Chirp 2)";
|
|
37
|
+
readonly DeepgramNova3: "Deepgram Nova 3";
|
|
32
38
|
readonly GoogleSTTV2: "Google STT V2";
|
|
33
39
|
readonly GoogleSTTV1: "Google STT V1";
|
|
34
40
|
readonly DeepgramNova2: "Deepgram Nova 2";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"agentsttprovider.d.ts","sourceRoot":"","sources":["../../src/models/components/agentsttprovider.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAC;AAElD;;GAEG;AACH,eAAO,MAAM,gBAAgB
|
|
1
|
+
{"version":3,"file":"agentsttprovider.d.ts","sourceRoot":"","sources":["../../src/models/components/agentsttprovider.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAC;AAElD;;GAEG;AACH,eAAO,MAAM,gBAAgB;;;;;;CAMnB,CAAC;AACX;;GAEG;AACH,MAAM,MAAM,gBAAgB,GAAG,UAAU,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAEnE,gBAAgB;AAChB,eAAO,MAAM,8BAA8B,EAAE,CAAC,CAAC,aAAa,CAC1D,OAAO,gBAAgB,CACS,CAAC;AAEnC,gBAAgB;AAChB,eAAO,MAAM,+BAA+B,EAAE,CAAC,CAAC,aAAa,CAC3D,OAAO,gBAAgB,CACS,CAAC;AAEnC;;;GAGG;AACH,yBAAiB,iBAAiB,CAAC;IACjC,gEAAgE;IACzD,MAAM,aAAa;;;;;;MAAiC,CAAC;IAC5D,iEAAiE;IAC1D,MAAM,cAAc;;;;;;MAAkC,CAAC;CAC/D"}
|
|
@@ -32,6 +32,8 @@ const z = __importStar(require("zod"));
|
|
|
32
32
|
* Speech-to-text providers supported by agents.
|
|
33
33
|
*/
|
|
34
34
|
exports.AgentSttProvider = {
|
|
35
|
+
GoogleSTTV2Chirp2: "Google STT V2 (Chirp 2)",
|
|
36
|
+
DeepgramNova3: "Deepgram Nova 3",
|
|
35
37
|
GoogleSTTV2: "Google STT V2",
|
|
36
38
|
GoogleSTTV1: "Google STT V1",
|
|
37
39
|
DeepgramNova2: "Deepgram Nova 2",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"agentsttprovider.js","sourceRoot":"","sources":["../../src/models/components/agentsttprovider.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;AAEH,uCAAyB;AAGzB;;GAEG;AACU,QAAA,gBAAgB,GAAG;IAC9B,WAAW,EAAE,eAAe;IAC5B,WAAW,EAAE,eAAe;IAC5B,aAAa,EAAE,iBAAiB;CACxB,CAAC;AAMX,gBAAgB;AACH,QAAA,8BAA8B,GAEvC,CAAC,CAAC,UAAU,CAAC,wBAAgB,CAAC,CAAC;AAEnC,gBAAgB;AACH,QAAA,+BAA+B,GAExC,sCAA8B,CAAC;AAEnC;;;GAGG;AACH,IAAiB,iBAAiB,CAKjC;AALD,WAAiB,iBAAiB;IAChC,gEAAgE;IACnD,+BAAa,GAAG,sCAA8B,CAAC;IAC5D,iEAAiE;IACpD,gCAAc,GAAG,uCAA+B,CAAC;AAChE,CAAC,EALgB,iBAAiB,iCAAjB,iBAAiB,QAKjC"}
|
|
1
|
+
{"version":3,"file":"agentsttprovider.js","sourceRoot":"","sources":["../../src/models/components/agentsttprovider.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;AAEH,uCAAyB;AAGzB;;GAEG;AACU,QAAA,gBAAgB,GAAG;IAC9B,iBAAiB,EAAE,yBAAyB;IAC5C,aAAa,EAAE,iBAAiB;IAChC,WAAW,EAAE,eAAe;IAC5B,WAAW,EAAE,eAAe;IAC5B,aAAa,EAAE,iBAAiB;CACxB,CAAC;AAMX,gBAAgB;AACH,QAAA,8BAA8B,GAEvC,CAAC,CAAC,UAAU,CAAC,wBAAgB,CAAC,CAAC;AAEnC,gBAAgB;AACH,QAAA,+BAA+B,GAExC,sCAA8B,CAAC;AAEnC;;;GAGG;AACH,IAAiB,iBAAiB,CAKjC;AALD,WAAiB,iBAAiB;IAChC,gEAAgE;IACnD,+BAAa,GAAG,sCAA8B,CAAC;IAC5D,iEAAiE;IACpD,gCAAc,GAAG,uCAA+B,CAAC;AAChE,CAAC,EALgB,iBAAiB,iCAAjB,iBAAiB,QAKjC"}
|
package/openapi.json
CHANGED
|
@@ -11878,6 +11878,8 @@
|
|
|
11878
11878
|
],
|
|
11879
11879
|
"description": "Speech-to-text provider for the agent.",
|
|
11880
11880
|
"examples": [
|
|
11881
|
+
"Google STT V2 (Chirp 2)",
|
|
11882
|
+
"Deepgram Nova 3",
|
|
11881
11883
|
"Google STT V2",
|
|
11882
11884
|
"Google STT V1",
|
|
11883
11885
|
"Deepgram Nova 2"
|
|
@@ -12165,6 +12167,8 @@
|
|
|
12165
12167
|
"title": "Stt Provider",
|
|
12166
12168
|
"description": "Speech-to-text provider for the agent.",
|
|
12167
12169
|
"examples": [
|
|
12170
|
+
"Google STT V2 (Chirp 2)",
|
|
12171
|
+
"Deepgram Nova 3",
|
|
12168
12172
|
"Google STT V2",
|
|
12169
12173
|
"Google STT V1",
|
|
12170
12174
|
"Deepgram Nova 2"
|
|
@@ -12308,6 +12312,8 @@
|
|
|
12308
12312
|
"AgentSttProvider": {
|
|
12309
12313
|
"type": "string",
|
|
12310
12314
|
"enum": [
|
|
12315
|
+
"Google STT V2 (Chirp 2)",
|
|
12316
|
+
"Deepgram Nova 3",
|
|
12311
12317
|
"Google STT V2",
|
|
12312
12318
|
"Google STT V1",
|
|
12313
12319
|
"Deepgram Nova 2"
|
|
@@ -12575,6 +12581,8 @@
|
|
|
12575
12581
|
],
|
|
12576
12582
|
"description": "Speech-to-text provider for the agent.",
|
|
12577
12583
|
"examples": [
|
|
12584
|
+
"Google STT V2 (Chirp 2)",
|
|
12585
|
+
"Deepgram Nova 3",
|
|
12578
12586
|
"Google STT V2",
|
|
12579
12587
|
"Google STT V1",
|
|
12580
12588
|
"Deepgram Nova 2"
|
|
@@ -13032,7 +13040,7 @@
|
|
|
13032
13040
|
"title": "Batch Id",
|
|
13033
13041
|
"description": "Unique ID for conversation batch",
|
|
13034
13042
|
"examples": [
|
|
13035
|
-
"
|
|
13043
|
+
"20250828.9"
|
|
13036
13044
|
]
|
|
13037
13045
|
},
|
|
13038
13046
|
"campaign_id": {
|
|
@@ -13056,7 +13064,7 @@
|
|
|
13056
13064
|
"title": "Expires On",
|
|
13057
13065
|
"description": "Timestamp of batch expiration",
|
|
13058
13066
|
"examples": [
|
|
13059
|
-
"2025-08-
|
|
13067
|
+
"2025-08-29T00:00:00Z"
|
|
13060
13068
|
]
|
|
13061
13069
|
},
|
|
13062
13070
|
"paused": {
|
|
@@ -13109,7 +13117,7 @@
|
|
|
13109
13117
|
"title": "Created At",
|
|
13110
13118
|
"description": "Timestamp of batch creation",
|
|
13111
13119
|
"examples": [
|
|
13112
|
-
"2025-08-
|
|
13120
|
+
"2025-08-28T00:00:00Z"
|
|
13113
13121
|
]
|
|
13114
13122
|
},
|
|
13115
13123
|
"deleted_at": {
|
|
@@ -13125,7 +13133,7 @@
|
|
|
13125
13133
|
"title": "Deleted At",
|
|
13126
13134
|
"description": "Timestamp of batch deletion",
|
|
13127
13135
|
"examples": [
|
|
13128
|
-
"2025-08-
|
|
13136
|
+
"2025-08-28T00:00:00Z"
|
|
13129
13137
|
]
|
|
13130
13138
|
},
|
|
13131
13139
|
"deleted_reason": {
|
|
@@ -13156,7 +13164,7 @@
|
|
|
13156
13164
|
"title": "Last Updated At",
|
|
13157
13165
|
"description": "Timestamp of last change to batch",
|
|
13158
13166
|
"examples": [
|
|
13159
|
-
"2025-08-
|
|
13167
|
+
"2025-08-28T00:00:00Z"
|
|
13160
13168
|
]
|
|
13161
13169
|
},
|
|
13162
13170
|
"last_updated_by": {
|
|
@@ -13858,7 +13866,7 @@
|
|
|
13858
13866
|
"title": "Batch Id",
|
|
13859
13867
|
"description": "Unique ID for conversation batch",
|
|
13860
13868
|
"examples": [
|
|
13861
|
-
"
|
|
13869
|
+
"20250828.9"
|
|
13862
13870
|
]
|
|
13863
13871
|
},
|
|
13864
13872
|
"campaign_id": {
|
|
@@ -13882,7 +13890,7 @@
|
|
|
13882
13890
|
"title": "Expires On",
|
|
13883
13891
|
"description": "Timestamp of batch expiration",
|
|
13884
13892
|
"examples": [
|
|
13885
|
-
"2025-08-
|
|
13893
|
+
"2025-08-29T00:00:00Z"
|
|
13886
13894
|
]
|
|
13887
13895
|
},
|
|
13888
13896
|
"paused": {
|
|
@@ -13935,7 +13943,7 @@
|
|
|
13935
13943
|
"title": "Created At",
|
|
13936
13944
|
"description": "Timestamp of batch creation",
|
|
13937
13945
|
"examples": [
|
|
13938
|
-
"2025-08-
|
|
13946
|
+
"2025-08-28T00:00:00Z"
|
|
13939
13947
|
]
|
|
13940
13948
|
},
|
|
13941
13949
|
"deleted_at": {
|
|
@@ -13951,7 +13959,7 @@
|
|
|
13951
13959
|
"title": "Deleted At",
|
|
13952
13960
|
"description": "Timestamp of batch deletion",
|
|
13953
13961
|
"examples": [
|
|
13954
|
-
"2025-08-
|
|
13962
|
+
"2025-08-28T00:00:00Z"
|
|
13955
13963
|
]
|
|
13956
13964
|
},
|
|
13957
13965
|
"deleted_reason": {
|
|
@@ -13982,7 +13990,7 @@
|
|
|
13982
13990
|
"title": "Last Updated At",
|
|
13983
13991
|
"description": "Timestamp of last change to batch",
|
|
13984
13992
|
"examples": [
|
|
13985
|
-
"2025-08-
|
|
13993
|
+
"2025-08-28T00:00:00Z"
|
|
13986
13994
|
]
|
|
13987
13995
|
},
|
|
13988
13996
|
"last_updated_by": {
|
|
@@ -14025,7 +14033,7 @@
|
|
|
14025
14033
|
"title": "Batch Id",
|
|
14026
14034
|
"description": "Unique ID for conversation batch",
|
|
14027
14035
|
"examples": [
|
|
14028
|
-
"
|
|
14036
|
+
"20250828.9"
|
|
14029
14037
|
]
|
|
14030
14038
|
},
|
|
14031
14039
|
"campaign_id": {
|
|
@@ -14049,7 +14057,7 @@
|
|
|
14049
14057
|
"title": "Expires On",
|
|
14050
14058
|
"description": "Timestamp of batch expiration",
|
|
14051
14059
|
"examples": [
|
|
14052
|
-
"2025-08-
|
|
14060
|
+
"2025-08-29T00:00:00Z"
|
|
14053
14061
|
]
|
|
14054
14062
|
},
|
|
14055
14063
|
"paused": {
|
|
@@ -14198,7 +14206,7 @@
|
|
|
14198
14206
|
"title": "Created At",
|
|
14199
14207
|
"description": "Timestamp of request creation",
|
|
14200
14208
|
"examples": [
|
|
14201
|
-
"2025-08-
|
|
14209
|
+
"2025-08-27T00:00:00Z"
|
|
14202
14210
|
]
|
|
14203
14211
|
},
|
|
14204
14212
|
"sent_at": {
|
|
@@ -14214,7 +14222,7 @@
|
|
|
14214
14222
|
"title": "Sent At",
|
|
14215
14223
|
"description": "Timestamp at which request was sent",
|
|
14216
14224
|
"examples": [
|
|
14217
|
-
"2025-08-
|
|
14225
|
+
"2025-08-28T00:00:00Z"
|
|
14218
14226
|
]
|
|
14219
14227
|
},
|
|
14220
14228
|
"attempt_count": {
|
|
@@ -16130,7 +16138,7 @@
|
|
|
16130
16138
|
"title": "Created At",
|
|
16131
16139
|
"description": "Timestamp at which insight upload folder was created",
|
|
16132
16140
|
"examples": [
|
|
16133
|
-
"2025-08-
|
|
16141
|
+
"2025-08-27T00:00:00Z"
|
|
16134
16142
|
]
|
|
16135
16143
|
},
|
|
16136
16144
|
"updated_at": {
|
|
@@ -16139,7 +16147,7 @@
|
|
|
16139
16147
|
"title": "Updated At",
|
|
16140
16148
|
"description": "Timestamp at which insight upload folder was last updated",
|
|
16141
16149
|
"examples": [
|
|
16142
|
-
"2025-08-
|
|
16150
|
+
"2025-08-28T00:00:00Z"
|
|
16143
16151
|
]
|
|
16144
16152
|
},
|
|
16145
16153
|
"last_updated_by": {
|
|
@@ -16854,7 +16862,7 @@
|
|
|
16854
16862
|
"title": "Created At",
|
|
16855
16863
|
"description": "Timestamp of at which insight tool configuration was created",
|
|
16856
16864
|
"examples": [
|
|
16857
|
-
"2025-08-
|
|
16865
|
+
"2025-08-27T00:00:00Z"
|
|
16858
16866
|
]
|
|
16859
16867
|
},
|
|
16860
16868
|
"updated_at": {
|
|
@@ -16863,7 +16871,7 @@
|
|
|
16863
16871
|
"title": "Updated At",
|
|
16864
16872
|
"description": "Timestamp at which insight tool configuration was last updated",
|
|
16865
16873
|
"examples": [
|
|
16866
|
-
"2025-08-
|
|
16874
|
+
"2025-08-28T00:00:00Z"
|
|
16867
16875
|
]
|
|
16868
16876
|
},
|
|
16869
16877
|
"last_updated_by": {
|
|
@@ -17244,7 +17252,7 @@
|
|
|
17244
17252
|
"title": "Start Datetime",
|
|
17245
17253
|
"description": "Target session timestamp the workflow (backfill) should start. An empty value indicates start on activation - live sessions only",
|
|
17246
17254
|
"examples": [
|
|
17247
|
-
"2025-08-
|
|
17255
|
+
"2025-08-27T00:00:00Z"
|
|
17248
17256
|
]
|
|
17249
17257
|
},
|
|
17250
17258
|
"end_datetime": {
|
|
@@ -17260,7 +17268,7 @@
|
|
|
17260
17268
|
"title": "End Datetime",
|
|
17261
17269
|
"description": "Target session timestamp the workflow (backfill) should end. An empty value indicates no end, i.e., include live sessions until deactivation",
|
|
17262
17270
|
"examples": [
|
|
17263
|
-
"2025-08-
|
|
17271
|
+
"2025-08-28T00:00:00Z"
|
|
17264
17272
|
]
|
|
17265
17273
|
}
|
|
17266
17274
|
},
|
|
@@ -17335,7 +17343,7 @@
|
|
|
17335
17343
|
"title": "Start Datetime",
|
|
17336
17344
|
"description": "Target session timestamp the workflow (backfill) should start. An empty value indicates start on activation - live sessions only",
|
|
17337
17345
|
"examples": [
|
|
17338
|
-
"2025-08-
|
|
17346
|
+
"2025-08-27T00:00:00Z"
|
|
17339
17347
|
]
|
|
17340
17348
|
},
|
|
17341
17349
|
"end_datetime": {
|
|
@@ -17351,7 +17359,7 @@
|
|
|
17351
17359
|
"title": "End Datetime",
|
|
17352
17360
|
"description": "Target session timestamp the workflow (backfill) should end. An empty value indicates no end, i.e., include live sessions until deactivation",
|
|
17353
17361
|
"examples": [
|
|
17354
|
-
"2025-08-
|
|
17362
|
+
"2025-08-28T00:00:00Z"
|
|
17355
17363
|
]
|
|
17356
17364
|
},
|
|
17357
17365
|
"id": {
|
|
@@ -17404,7 +17412,7 @@
|
|
|
17404
17412
|
"title": "Created At",
|
|
17405
17413
|
"description": "Timestamp at which the insight workflow was created",
|
|
17406
17414
|
"examples": [
|
|
17407
|
-
"2025-08-
|
|
17415
|
+
"2025-08-27T00:00:00Z"
|
|
17408
17416
|
]
|
|
17409
17417
|
},
|
|
17410
17418
|
"updated_at": {
|
|
@@ -17413,7 +17421,7 @@
|
|
|
17413
17421
|
"title": "Updated At",
|
|
17414
17422
|
"description": "Timestamp of most recent update to the insight workflow",
|
|
17415
17423
|
"examples": [
|
|
17416
|
-
"2025-08-
|
|
17424
|
+
"2025-08-28T00:00:00Z"
|
|
17417
17425
|
]
|
|
17418
17426
|
},
|
|
17419
17427
|
"last_updated_by": {
|
|
@@ -17509,7 +17517,7 @@
|
|
|
17509
17517
|
"title": "Created At",
|
|
17510
17518
|
"description": "Timestamp at which insight upload folder was created",
|
|
17511
17519
|
"examples": [
|
|
17512
|
-
"2025-08-
|
|
17520
|
+
"2025-08-27T00:00:00Z"
|
|
17513
17521
|
]
|
|
17514
17522
|
},
|
|
17515
17523
|
"updated_at": {
|
|
@@ -17518,7 +17526,7 @@
|
|
|
17518
17526
|
"title": "Updated At",
|
|
17519
17527
|
"description": "Timestamp at which insight upload folder was last updated",
|
|
17520
17528
|
"examples": [
|
|
17521
|
-
"2025-08-
|
|
17529
|
+
"2025-08-28T00:00:00Z"
|
|
17522
17530
|
]
|
|
17523
17531
|
},
|
|
17524
17532
|
"last_updated_by": {
|
|
@@ -17753,7 +17761,7 @@
|
|
|
17753
17761
|
"title": "Created At",
|
|
17754
17762
|
"description": "Timestamp at which insight tool result was created",
|
|
17755
17763
|
"examples": [
|
|
17756
|
-
"2025-08-
|
|
17764
|
+
"2025-08-27T00:00:00Z"
|
|
17757
17765
|
]
|
|
17758
17766
|
},
|
|
17759
17767
|
"updated_at": {
|
|
@@ -17762,7 +17770,7 @@
|
|
|
17762
17770
|
"title": "Updated At",
|
|
17763
17771
|
"description": "Timestamp at which insight tool result was last updated",
|
|
17764
17772
|
"examples": [
|
|
17765
|
-
"2025-08-
|
|
17773
|
+
"2025-08-28T00:00:00Z"
|
|
17766
17774
|
]
|
|
17767
17775
|
}
|
|
17768
17776
|
},
|
|
@@ -17897,7 +17905,7 @@
|
|
|
17897
17905
|
"title": "Start Time",
|
|
17898
17906
|
"description": "Start time of the uploaded file",
|
|
17899
17907
|
"examples": [
|
|
17900
|
-
"2025-08-
|
|
17908
|
+
"2025-08-27T00:00:00Z"
|
|
17901
17909
|
]
|
|
17902
17910
|
},
|
|
17903
17911
|
"end_time": {
|
|
@@ -17913,7 +17921,7 @@
|
|
|
17913
17921
|
"title": "End Time",
|
|
17914
17922
|
"description": "End time of the uploaded file",
|
|
17915
17923
|
"examples": [
|
|
17916
|
-
"2025-08-
|
|
17924
|
+
"2025-08-28T00:00:00Z"
|
|
17917
17925
|
]
|
|
17918
17926
|
},
|
|
17919
17927
|
"error_message": {
|
|
@@ -17968,7 +17976,7 @@
|
|
|
17968
17976
|
"title": "Created At",
|
|
17969
17977
|
"description": "Timestamp at which insight upload file was created",
|
|
17970
17978
|
"examples": [
|
|
17971
|
-
"2025-08-
|
|
17979
|
+
"2025-08-27T00:00:00Z"
|
|
17972
17980
|
]
|
|
17973
17981
|
}
|
|
17974
17982
|
},
|
|
@@ -20861,7 +20869,7 @@
|
|
|
20861
20869
|
"title": "Created At",
|
|
20862
20870
|
"description": "Timestamp of campaign creation",
|
|
20863
20871
|
"examples": [
|
|
20864
|
-
"2025-08-
|
|
20872
|
+
"2025-08-28T00:00:00Z"
|
|
20865
20873
|
]
|
|
20866
20874
|
},
|
|
20867
20875
|
"updated_at": {
|
|
@@ -20870,7 +20878,7 @@
|
|
|
20870
20878
|
"title": "Updated At",
|
|
20871
20879
|
"description": "Timestamp of campaign update",
|
|
20872
20880
|
"examples": [
|
|
20873
|
-
"2025-08-
|
|
20881
|
+
"2025-08-28T00:00:00Z"
|
|
20874
20882
|
]
|
|
20875
20883
|
},
|
|
20876
20884
|
"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.252",
|
|
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.252 2.512.4 0.0.2 syllable-sdk",
|
|
64
64
|
} as const;
|
|
@@ -9,6 +9,8 @@ import { ClosedEnum } from "../../types/enums.js";
|
|
|
9
9
|
* Speech-to-text providers supported by agents.
|
|
10
10
|
*/
|
|
11
11
|
export const AgentSttProvider = {
|
|
12
|
+
GoogleSTTV2Chirp2: "Google STT V2 (Chirp 2)",
|
|
13
|
+
DeepgramNova3: "Deepgram Nova 3",
|
|
12
14
|
GoogleSTTV2: "Google STT V2",
|
|
13
15
|
GoogleSTTV1: "Google STT V1",
|
|
14
16
|
DeepgramNova2: "Deepgram Nova 2",
|