syllable-sdk 0.1.0-alpha.252 → 0.1.0-alpha.254
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/openapi.json +33 -33
- package/package.json +1 -1
- package/src/lib/config.ts +2 -2
|
@@ -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: "20250902.9",
|
|
129
129
|
campaignId: 1,
|
|
130
|
-
expiresOn: new Date("2025-
|
|
130
|
+
expiresOn: new Date("2025-09-03T00: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: "20250902.9",
|
|
158
158
|
campaignId: 1,
|
|
159
|
-
expiresOn: new Date("2025-
|
|
159
|
+
expiresOn: new Date("2025-09-03T00: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-
|
|
154
|
-
endDatetime: new Date("2025-
|
|
153
|
+
startDatetime: new Date("2025-09-01T00:00:00Z"),
|
|
154
|
+
endDatetime: new Date("2025-09-02T00: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-
|
|
207
|
-
endDatetime: new Date("2025-
|
|
206
|
+
startDatetime: new Date("2025-09-01T00:00:00Z"),
|
|
207
|
+
endDatetime: new Date("2025-09-02T00: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-
|
|
364
|
-
endDatetime: new Date("2025-
|
|
363
|
+
startDatetime: new Date("2025-09-01T00:00:00Z"),
|
|
364
|
+
endDatetime: new Date("2025-09-02T00: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-
|
|
420
|
-
endDatetime: new Date("2025-
|
|
419
|
+
startDatetime: new Date("2025-09-01T00:00:00Z"),
|
|
420
|
+
endDatetime: new Date("2025-09-02T00: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.254";
|
|
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.254 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.254",
|
|
35
35
|
genVersion: "2.512.4",
|
|
36
|
-
userAgent: "speakeasy-sdk/typescript 0.1.0-alpha.
|
|
36
|
+
userAgent: "speakeasy-sdk/typescript 0.1.0-alpha.254 2.512.4 0.0.2 syllable-sdk",
|
|
37
37
|
};
|
|
38
38
|
//# sourceMappingURL=config.js.map
|
package/openapi.json
CHANGED
|
@@ -13040,7 +13040,7 @@
|
|
|
13040
13040
|
"title": "Batch Id",
|
|
13041
13041
|
"description": "Unique ID for conversation batch",
|
|
13042
13042
|
"examples": [
|
|
13043
|
-
"
|
|
13043
|
+
"20250902.9"
|
|
13044
13044
|
]
|
|
13045
13045
|
},
|
|
13046
13046
|
"campaign_id": {
|
|
@@ -13064,7 +13064,7 @@
|
|
|
13064
13064
|
"title": "Expires On",
|
|
13065
13065
|
"description": "Timestamp of batch expiration",
|
|
13066
13066
|
"examples": [
|
|
13067
|
-
"2025-
|
|
13067
|
+
"2025-09-03T00:00:00Z"
|
|
13068
13068
|
]
|
|
13069
13069
|
},
|
|
13070
13070
|
"paused": {
|
|
@@ -13117,7 +13117,7 @@
|
|
|
13117
13117
|
"title": "Created At",
|
|
13118
13118
|
"description": "Timestamp of batch creation",
|
|
13119
13119
|
"examples": [
|
|
13120
|
-
"2025-
|
|
13120
|
+
"2025-09-02T00:00:00Z"
|
|
13121
13121
|
]
|
|
13122
13122
|
},
|
|
13123
13123
|
"deleted_at": {
|
|
@@ -13133,7 +13133,7 @@
|
|
|
13133
13133
|
"title": "Deleted At",
|
|
13134
13134
|
"description": "Timestamp of batch deletion",
|
|
13135
13135
|
"examples": [
|
|
13136
|
-
"2025-
|
|
13136
|
+
"2025-09-02T00:00:00Z"
|
|
13137
13137
|
]
|
|
13138
13138
|
},
|
|
13139
13139
|
"deleted_reason": {
|
|
@@ -13164,7 +13164,7 @@
|
|
|
13164
13164
|
"title": "Last Updated At",
|
|
13165
13165
|
"description": "Timestamp of last change to batch",
|
|
13166
13166
|
"examples": [
|
|
13167
|
-
"2025-
|
|
13167
|
+
"2025-09-02T00:00:00Z"
|
|
13168
13168
|
]
|
|
13169
13169
|
},
|
|
13170
13170
|
"last_updated_by": {
|
|
@@ -13866,7 +13866,7 @@
|
|
|
13866
13866
|
"title": "Batch Id",
|
|
13867
13867
|
"description": "Unique ID for conversation batch",
|
|
13868
13868
|
"examples": [
|
|
13869
|
-
"
|
|
13869
|
+
"20250902.9"
|
|
13870
13870
|
]
|
|
13871
13871
|
},
|
|
13872
13872
|
"campaign_id": {
|
|
@@ -13890,7 +13890,7 @@
|
|
|
13890
13890
|
"title": "Expires On",
|
|
13891
13891
|
"description": "Timestamp of batch expiration",
|
|
13892
13892
|
"examples": [
|
|
13893
|
-
"2025-
|
|
13893
|
+
"2025-09-03T00:00:00Z"
|
|
13894
13894
|
]
|
|
13895
13895
|
},
|
|
13896
13896
|
"paused": {
|
|
@@ -13943,7 +13943,7 @@
|
|
|
13943
13943
|
"title": "Created At",
|
|
13944
13944
|
"description": "Timestamp of batch creation",
|
|
13945
13945
|
"examples": [
|
|
13946
|
-
"2025-
|
|
13946
|
+
"2025-09-02T00:00:00Z"
|
|
13947
13947
|
]
|
|
13948
13948
|
},
|
|
13949
13949
|
"deleted_at": {
|
|
@@ -13959,7 +13959,7 @@
|
|
|
13959
13959
|
"title": "Deleted At",
|
|
13960
13960
|
"description": "Timestamp of batch deletion",
|
|
13961
13961
|
"examples": [
|
|
13962
|
-
"2025-
|
|
13962
|
+
"2025-09-02T00:00:00Z"
|
|
13963
13963
|
]
|
|
13964
13964
|
},
|
|
13965
13965
|
"deleted_reason": {
|
|
@@ -13990,7 +13990,7 @@
|
|
|
13990
13990
|
"title": "Last Updated At",
|
|
13991
13991
|
"description": "Timestamp of last change to batch",
|
|
13992
13992
|
"examples": [
|
|
13993
|
-
"2025-
|
|
13993
|
+
"2025-09-02T00:00:00Z"
|
|
13994
13994
|
]
|
|
13995
13995
|
},
|
|
13996
13996
|
"last_updated_by": {
|
|
@@ -14033,7 +14033,7 @@
|
|
|
14033
14033
|
"title": "Batch Id",
|
|
14034
14034
|
"description": "Unique ID for conversation batch",
|
|
14035
14035
|
"examples": [
|
|
14036
|
-
"
|
|
14036
|
+
"20250902.9"
|
|
14037
14037
|
]
|
|
14038
14038
|
},
|
|
14039
14039
|
"campaign_id": {
|
|
@@ -14057,7 +14057,7 @@
|
|
|
14057
14057
|
"title": "Expires On",
|
|
14058
14058
|
"description": "Timestamp of batch expiration",
|
|
14059
14059
|
"examples": [
|
|
14060
|
-
"2025-
|
|
14060
|
+
"2025-09-03T00:00:00Z"
|
|
14061
14061
|
]
|
|
14062
14062
|
},
|
|
14063
14063
|
"paused": {
|
|
@@ -14206,7 +14206,7 @@
|
|
|
14206
14206
|
"title": "Created At",
|
|
14207
14207
|
"description": "Timestamp of request creation",
|
|
14208
14208
|
"examples": [
|
|
14209
|
-
"2025-
|
|
14209
|
+
"2025-09-01T00:00:00Z"
|
|
14210
14210
|
]
|
|
14211
14211
|
},
|
|
14212
14212
|
"sent_at": {
|
|
@@ -14222,7 +14222,7 @@
|
|
|
14222
14222
|
"title": "Sent At",
|
|
14223
14223
|
"description": "Timestamp at which request was sent",
|
|
14224
14224
|
"examples": [
|
|
14225
|
-
"2025-
|
|
14225
|
+
"2025-09-02T00:00:00Z"
|
|
14226
14226
|
]
|
|
14227
14227
|
},
|
|
14228
14228
|
"attempt_count": {
|
|
@@ -16138,7 +16138,7 @@
|
|
|
16138
16138
|
"title": "Created At",
|
|
16139
16139
|
"description": "Timestamp at which insight upload folder was created",
|
|
16140
16140
|
"examples": [
|
|
16141
|
-
"2025-
|
|
16141
|
+
"2025-09-01T00:00:00Z"
|
|
16142
16142
|
]
|
|
16143
16143
|
},
|
|
16144
16144
|
"updated_at": {
|
|
@@ -16147,7 +16147,7 @@
|
|
|
16147
16147
|
"title": "Updated At",
|
|
16148
16148
|
"description": "Timestamp at which insight upload folder was last updated",
|
|
16149
16149
|
"examples": [
|
|
16150
|
-
"2025-
|
|
16150
|
+
"2025-09-02T00:00:00Z"
|
|
16151
16151
|
]
|
|
16152
16152
|
},
|
|
16153
16153
|
"last_updated_by": {
|
|
@@ -16862,7 +16862,7 @@
|
|
|
16862
16862
|
"title": "Created At",
|
|
16863
16863
|
"description": "Timestamp of at which insight tool configuration was created",
|
|
16864
16864
|
"examples": [
|
|
16865
|
-
"2025-
|
|
16865
|
+
"2025-09-01T00:00:00Z"
|
|
16866
16866
|
]
|
|
16867
16867
|
},
|
|
16868
16868
|
"updated_at": {
|
|
@@ -16871,7 +16871,7 @@
|
|
|
16871
16871
|
"title": "Updated At",
|
|
16872
16872
|
"description": "Timestamp at which insight tool configuration was last updated",
|
|
16873
16873
|
"examples": [
|
|
16874
|
-
"2025-
|
|
16874
|
+
"2025-09-02T00:00:00Z"
|
|
16875
16875
|
]
|
|
16876
16876
|
},
|
|
16877
16877
|
"last_updated_by": {
|
|
@@ -17252,7 +17252,7 @@
|
|
|
17252
17252
|
"title": "Start Datetime",
|
|
17253
17253
|
"description": "Target session timestamp the workflow (backfill) should start. An empty value indicates start on activation - live sessions only",
|
|
17254
17254
|
"examples": [
|
|
17255
|
-
"2025-
|
|
17255
|
+
"2025-09-01T00:00:00Z"
|
|
17256
17256
|
]
|
|
17257
17257
|
},
|
|
17258
17258
|
"end_datetime": {
|
|
@@ -17268,7 +17268,7 @@
|
|
|
17268
17268
|
"title": "End Datetime",
|
|
17269
17269
|
"description": "Target session timestamp the workflow (backfill) should end. An empty value indicates no end, i.e., include live sessions until deactivation",
|
|
17270
17270
|
"examples": [
|
|
17271
|
-
"2025-
|
|
17271
|
+
"2025-09-02T00:00:00Z"
|
|
17272
17272
|
]
|
|
17273
17273
|
}
|
|
17274
17274
|
},
|
|
@@ -17343,7 +17343,7 @@
|
|
|
17343
17343
|
"title": "Start Datetime",
|
|
17344
17344
|
"description": "Target session timestamp the workflow (backfill) should start. An empty value indicates start on activation - live sessions only",
|
|
17345
17345
|
"examples": [
|
|
17346
|
-
"2025-
|
|
17346
|
+
"2025-09-01T00:00:00Z"
|
|
17347
17347
|
]
|
|
17348
17348
|
},
|
|
17349
17349
|
"end_datetime": {
|
|
@@ -17359,7 +17359,7 @@
|
|
|
17359
17359
|
"title": "End Datetime",
|
|
17360
17360
|
"description": "Target session timestamp the workflow (backfill) should end. An empty value indicates no end, i.e., include live sessions until deactivation",
|
|
17361
17361
|
"examples": [
|
|
17362
|
-
"2025-
|
|
17362
|
+
"2025-09-02T00:00:00Z"
|
|
17363
17363
|
]
|
|
17364
17364
|
},
|
|
17365
17365
|
"id": {
|
|
@@ -17412,7 +17412,7 @@
|
|
|
17412
17412
|
"title": "Created At",
|
|
17413
17413
|
"description": "Timestamp at which the insight workflow was created",
|
|
17414
17414
|
"examples": [
|
|
17415
|
-
"2025-
|
|
17415
|
+
"2025-09-01T00:00:00Z"
|
|
17416
17416
|
]
|
|
17417
17417
|
},
|
|
17418
17418
|
"updated_at": {
|
|
@@ -17421,7 +17421,7 @@
|
|
|
17421
17421
|
"title": "Updated At",
|
|
17422
17422
|
"description": "Timestamp of most recent update to the insight workflow",
|
|
17423
17423
|
"examples": [
|
|
17424
|
-
"2025-
|
|
17424
|
+
"2025-09-02T00:00:00Z"
|
|
17425
17425
|
]
|
|
17426
17426
|
},
|
|
17427
17427
|
"last_updated_by": {
|
|
@@ -17517,7 +17517,7 @@
|
|
|
17517
17517
|
"title": "Created At",
|
|
17518
17518
|
"description": "Timestamp at which insight upload folder was created",
|
|
17519
17519
|
"examples": [
|
|
17520
|
-
"2025-
|
|
17520
|
+
"2025-09-01T00:00:00Z"
|
|
17521
17521
|
]
|
|
17522
17522
|
},
|
|
17523
17523
|
"updated_at": {
|
|
@@ -17526,7 +17526,7 @@
|
|
|
17526
17526
|
"title": "Updated At",
|
|
17527
17527
|
"description": "Timestamp at which insight upload folder was last updated",
|
|
17528
17528
|
"examples": [
|
|
17529
|
-
"2025-
|
|
17529
|
+
"2025-09-02T00:00:00Z"
|
|
17530
17530
|
]
|
|
17531
17531
|
},
|
|
17532
17532
|
"last_updated_by": {
|
|
@@ -17761,7 +17761,7 @@
|
|
|
17761
17761
|
"title": "Created At",
|
|
17762
17762
|
"description": "Timestamp at which insight tool result was created",
|
|
17763
17763
|
"examples": [
|
|
17764
|
-
"2025-
|
|
17764
|
+
"2025-09-01T00:00:00Z"
|
|
17765
17765
|
]
|
|
17766
17766
|
},
|
|
17767
17767
|
"updated_at": {
|
|
@@ -17770,7 +17770,7 @@
|
|
|
17770
17770
|
"title": "Updated At",
|
|
17771
17771
|
"description": "Timestamp at which insight tool result was last updated",
|
|
17772
17772
|
"examples": [
|
|
17773
|
-
"2025-
|
|
17773
|
+
"2025-09-02T00:00:00Z"
|
|
17774
17774
|
]
|
|
17775
17775
|
}
|
|
17776
17776
|
},
|
|
@@ -17905,7 +17905,7 @@
|
|
|
17905
17905
|
"title": "Start Time",
|
|
17906
17906
|
"description": "Start time of the uploaded file",
|
|
17907
17907
|
"examples": [
|
|
17908
|
-
"2025-
|
|
17908
|
+
"2025-09-01T00:00:00Z"
|
|
17909
17909
|
]
|
|
17910
17910
|
},
|
|
17911
17911
|
"end_time": {
|
|
@@ -17921,7 +17921,7 @@
|
|
|
17921
17921
|
"title": "End Time",
|
|
17922
17922
|
"description": "End time of the uploaded file",
|
|
17923
17923
|
"examples": [
|
|
17924
|
-
"2025-
|
|
17924
|
+
"2025-09-02T00:00:00Z"
|
|
17925
17925
|
]
|
|
17926
17926
|
},
|
|
17927
17927
|
"error_message": {
|
|
@@ -17976,7 +17976,7 @@
|
|
|
17976
17976
|
"title": "Created At",
|
|
17977
17977
|
"description": "Timestamp at which insight upload file was created",
|
|
17978
17978
|
"examples": [
|
|
17979
|
-
"2025-
|
|
17979
|
+
"2025-09-01T00:00:00Z"
|
|
17980
17980
|
]
|
|
17981
17981
|
}
|
|
17982
17982
|
},
|
|
@@ -20869,7 +20869,7 @@
|
|
|
20869
20869
|
"title": "Created At",
|
|
20870
20870
|
"description": "Timestamp of campaign creation",
|
|
20871
20871
|
"examples": [
|
|
20872
|
-
"2025-
|
|
20872
|
+
"2025-09-02T00:00:00Z"
|
|
20873
20873
|
]
|
|
20874
20874
|
},
|
|
20875
20875
|
"updated_at": {
|
|
@@ -20878,7 +20878,7 @@
|
|
|
20878
20878
|
"title": "Updated At",
|
|
20879
20879
|
"description": "Timestamp of campaign update",
|
|
20880
20880
|
"examples": [
|
|
20881
|
-
"2025-
|
|
20881
|
+
"2025-09-02T00:00:00Z"
|
|
20882
20882
|
]
|
|
20883
20883
|
},
|
|
20884
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.254",
|
|
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.254 2.512.4 0.0.2 syllable-sdk",
|
|
64
64
|
} as const;
|