syllable-sdk 0.1.0-alpha.260 → 0.1.0-alpha.261

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.
@@ -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: "20250910.9",
128
+ batchId: "20250911.9",
129
129
  campaignId: 1,
130
- expiresOn: new Date("2025-09-11T00:00:00Z"),
130
+ expiresOn: new Date("2025-09-12T00: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: "20250910.9",
157
+ batchId: "20250911.9",
158
158
  campaignId: 1,
159
- expiresOn: new Date("2025-09-11T00:00:00Z"),
159
+ expiresOn: new Date("2025-09-12T00: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-09-09T00:00:00Z"),
154
- endDatetime: new Date("2025-09-10T00:00:00Z"),
153
+ startDatetime: new Date("2025-09-10T00:00:00Z"),
154
+ endDatetime: new Date("2025-09-11T00: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-09-09T00:00:00Z"),
207
- endDatetime: new Date("2025-09-10T00:00:00Z"),
206
+ startDatetime: new Date("2025-09-10T00:00:00Z"),
207
+ endDatetime: new Date("2025-09-11T00: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-09-09T00:00:00Z"),
364
- endDatetime: new Date("2025-09-10T00:00:00Z"),
363
+ startDatetime: new Date("2025-09-10T00:00:00Z"),
364
+ endDatetime: new Date("2025-09-11T00: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-09-09T00:00:00Z"),
420
- endDatetime: new Date("2025-09-10T00:00:00Z"),
419
+ startDatetime: new Date("2025-09-10T00:00:00Z"),
420
+ endDatetime: new Date("2025-09-11T00:00:00Z"),
421
421
  },
422
422
  });
423
423
 
package/jsr.json CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  {
4
4
  "name": "syllable-sdk",
5
- "version": "0.1.0-alpha.260",
5
+ "version": "0.1.0-alpha.261",
6
6
  "exports": {
7
7
  ".": "./src/index.ts",
8
8
  "./models/errors": "./src/models/errors/index.ts",
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.260";
30
+ readonly sdkVersion: "0.1.0-alpha.261";
31
31
  readonly genVersion: "2.512.4";
32
- readonly userAgent: "speakeasy-sdk/typescript 0.1.0-alpha.260 2.512.4 0.0.2 syllable-sdk";
32
+ readonly userAgent: "speakeasy-sdk/typescript 0.1.0-alpha.261 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.260",
34
+ sdkVersion: "0.1.0-alpha.261",
35
35
  genVersion: "2.512.4",
36
- userAgent: "speakeasy-sdk/typescript 0.1.0-alpha.260 2.512.4 0.0.2 syllable-sdk",
36
+ userAgent: "speakeasy-sdk/typescript 0.1.0-alpha.261 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
- "20250910.9"
13043
+ "20250911.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-09-11T00:00:00Z"
13067
+ "2025-09-12T00: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-09-10T00:00:00Z"
13120
+ "2025-09-11T00: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-09-10T00:00:00Z"
13136
+ "2025-09-11T00: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-09-10T00:00:00Z"
13167
+ "2025-09-11T00:00:00Z"
13168
13168
  ]
13169
13169
  },
13170
13170
  "last_updated_by": {
@@ -13873,7 +13873,7 @@
13873
13873
  "title": "Batch Id",
13874
13874
  "description": "Unique ID for conversation batch",
13875
13875
  "examples": [
13876
- "20250910.9"
13876
+ "20250911.9"
13877
13877
  ]
13878
13878
  },
13879
13879
  "campaign_id": {
@@ -13897,7 +13897,7 @@
13897
13897
  "title": "Expires On",
13898
13898
  "description": "Timestamp of batch expiration",
13899
13899
  "examples": [
13900
- "2025-09-11T00:00:00Z"
13900
+ "2025-09-12T00:00:00Z"
13901
13901
  ]
13902
13902
  },
13903
13903
  "paused": {
@@ -13950,7 +13950,7 @@
13950
13950
  "title": "Created At",
13951
13951
  "description": "Timestamp of batch creation",
13952
13952
  "examples": [
13953
- "2025-09-10T00:00:00Z"
13953
+ "2025-09-11T00:00:00Z"
13954
13954
  ]
13955
13955
  },
13956
13956
  "deleted_at": {
@@ -13966,7 +13966,7 @@
13966
13966
  "title": "Deleted At",
13967
13967
  "description": "Timestamp of batch deletion",
13968
13968
  "examples": [
13969
- "2025-09-10T00:00:00Z"
13969
+ "2025-09-11T00:00:00Z"
13970
13970
  ]
13971
13971
  },
13972
13972
  "deleted_reason": {
@@ -13997,7 +13997,7 @@
13997
13997
  "title": "Last Updated At",
13998
13998
  "description": "Timestamp of last change to batch",
13999
13999
  "examples": [
14000
- "2025-09-10T00:00:00Z"
14000
+ "2025-09-11T00:00:00Z"
14001
14001
  ]
14002
14002
  },
14003
14003
  "last_updated_by": {
@@ -14040,7 +14040,7 @@
14040
14040
  "title": "Batch Id",
14041
14041
  "description": "Unique ID for conversation batch",
14042
14042
  "examples": [
14043
- "20250910.9"
14043
+ "20250911.9"
14044
14044
  ]
14045
14045
  },
14046
14046
  "campaign_id": {
@@ -14064,7 +14064,7 @@
14064
14064
  "title": "Expires On",
14065
14065
  "description": "Timestamp of batch expiration",
14066
14066
  "examples": [
14067
- "2025-09-11T00:00:00Z"
14067
+ "2025-09-12T00:00:00Z"
14068
14068
  ]
14069
14069
  },
14070
14070
  "paused": {
@@ -14213,7 +14213,7 @@
14213
14213
  "title": "Created At",
14214
14214
  "description": "Timestamp of request creation",
14215
14215
  "examples": [
14216
- "2025-09-09T00:00:00Z"
14216
+ "2025-09-10T00:00:00Z"
14217
14217
  ]
14218
14218
  },
14219
14219
  "sent_at": {
@@ -14229,7 +14229,7 @@
14229
14229
  "title": "Sent At",
14230
14230
  "description": "Timestamp at which request was sent",
14231
14231
  "examples": [
14232
- "2025-09-10T00:00:00Z"
14232
+ "2025-09-11T00:00:00Z"
14233
14233
  ]
14234
14234
  },
14235
14235
  "attempt_count": {
@@ -16145,7 +16145,7 @@
16145
16145
  "title": "Created At",
16146
16146
  "description": "Timestamp at which insight upload folder was created",
16147
16147
  "examples": [
16148
- "2025-09-09T00:00:00Z"
16148
+ "2025-09-10T00:00:00Z"
16149
16149
  ]
16150
16150
  },
16151
16151
  "updated_at": {
@@ -16154,7 +16154,7 @@
16154
16154
  "title": "Updated At",
16155
16155
  "description": "Timestamp at which insight upload folder was last updated",
16156
16156
  "examples": [
16157
- "2025-09-10T00:00:00Z"
16157
+ "2025-09-11T00:00:00Z"
16158
16158
  ]
16159
16159
  },
16160
16160
  "last_updated_by": {
@@ -16869,7 +16869,7 @@
16869
16869
  "title": "Created At",
16870
16870
  "description": "Timestamp of at which insight tool configuration was created",
16871
16871
  "examples": [
16872
- "2025-09-09T00:00:00Z"
16872
+ "2025-09-10T00:00:00Z"
16873
16873
  ]
16874
16874
  },
16875
16875
  "updated_at": {
@@ -16878,7 +16878,7 @@
16878
16878
  "title": "Updated At",
16879
16879
  "description": "Timestamp at which insight tool configuration was last updated",
16880
16880
  "examples": [
16881
- "2025-09-10T00:00:00Z"
16881
+ "2025-09-11T00:00:00Z"
16882
16882
  ]
16883
16883
  },
16884
16884
  "last_updated_by": {
@@ -17259,7 +17259,7 @@
17259
17259
  "title": "Start Datetime",
17260
17260
  "description": "Target session timestamp the workflow (backfill) should start. An empty value indicates start on activation - live sessions only",
17261
17261
  "examples": [
17262
- "2025-09-09T00:00:00Z"
17262
+ "2025-09-10T00:00:00Z"
17263
17263
  ]
17264
17264
  },
17265
17265
  "end_datetime": {
@@ -17275,7 +17275,7 @@
17275
17275
  "title": "End Datetime",
17276
17276
  "description": "Target session timestamp the workflow (backfill) should end. An empty value indicates no end, i.e., include live sessions until deactivation",
17277
17277
  "examples": [
17278
- "2025-09-10T00:00:00Z"
17278
+ "2025-09-11T00:00:00Z"
17279
17279
  ]
17280
17280
  }
17281
17281
  },
@@ -17350,7 +17350,7 @@
17350
17350
  "title": "Start Datetime",
17351
17351
  "description": "Target session timestamp the workflow (backfill) should start. An empty value indicates start on activation - live sessions only",
17352
17352
  "examples": [
17353
- "2025-09-09T00:00:00Z"
17353
+ "2025-09-10T00:00:00Z"
17354
17354
  ]
17355
17355
  },
17356
17356
  "end_datetime": {
@@ -17366,7 +17366,7 @@
17366
17366
  "title": "End Datetime",
17367
17367
  "description": "Target session timestamp the workflow (backfill) should end. An empty value indicates no end, i.e., include live sessions until deactivation",
17368
17368
  "examples": [
17369
- "2025-09-10T00:00:00Z"
17369
+ "2025-09-11T00:00:00Z"
17370
17370
  ]
17371
17371
  },
17372
17372
  "id": {
@@ -17419,7 +17419,7 @@
17419
17419
  "title": "Created At",
17420
17420
  "description": "Timestamp at which the insight workflow was created",
17421
17421
  "examples": [
17422
- "2025-09-09T00:00:00Z"
17422
+ "2025-09-10T00:00:00Z"
17423
17423
  ]
17424
17424
  },
17425
17425
  "updated_at": {
@@ -17428,7 +17428,7 @@
17428
17428
  "title": "Updated At",
17429
17429
  "description": "Timestamp of most recent update to the insight workflow",
17430
17430
  "examples": [
17431
- "2025-09-10T00:00:00Z"
17431
+ "2025-09-11T00:00:00Z"
17432
17432
  ]
17433
17433
  },
17434
17434
  "last_updated_by": {
@@ -17524,7 +17524,7 @@
17524
17524
  "title": "Created At",
17525
17525
  "description": "Timestamp at which insight upload folder was created",
17526
17526
  "examples": [
17527
- "2025-09-09T00:00:00Z"
17527
+ "2025-09-10T00:00:00Z"
17528
17528
  ]
17529
17529
  },
17530
17530
  "updated_at": {
@@ -17533,7 +17533,7 @@
17533
17533
  "title": "Updated At",
17534
17534
  "description": "Timestamp at which insight upload folder was last updated",
17535
17535
  "examples": [
17536
- "2025-09-10T00:00:00Z"
17536
+ "2025-09-11T00:00:00Z"
17537
17537
  ]
17538
17538
  },
17539
17539
  "last_updated_by": {
@@ -17768,7 +17768,7 @@
17768
17768
  "title": "Created At",
17769
17769
  "description": "Timestamp at which insight tool result was created",
17770
17770
  "examples": [
17771
- "2025-09-09T00:00:00Z"
17771
+ "2025-09-10T00:00:00Z"
17772
17772
  ]
17773
17773
  },
17774
17774
  "updated_at": {
@@ -17777,7 +17777,7 @@
17777
17777
  "title": "Updated At",
17778
17778
  "description": "Timestamp at which insight tool result was last updated",
17779
17779
  "examples": [
17780
- "2025-09-10T00:00:00Z"
17780
+ "2025-09-11T00:00:00Z"
17781
17781
  ]
17782
17782
  }
17783
17783
  },
@@ -17912,7 +17912,7 @@
17912
17912
  "title": "Start Time",
17913
17913
  "description": "Start time of the uploaded file",
17914
17914
  "examples": [
17915
- "2025-09-09T00:00:00Z"
17915
+ "2025-09-10T00:00:00Z"
17916
17916
  ]
17917
17917
  },
17918
17918
  "end_time": {
@@ -17928,7 +17928,7 @@
17928
17928
  "title": "End Time",
17929
17929
  "description": "End time of the uploaded file",
17930
17930
  "examples": [
17931
- "2025-09-10T00:00:00Z"
17931
+ "2025-09-11T00:00:00Z"
17932
17932
  ]
17933
17933
  },
17934
17934
  "error_message": {
@@ -17983,7 +17983,7 @@
17983
17983
  "title": "Created At",
17984
17984
  "description": "Timestamp at which insight upload file was created",
17985
17985
  "examples": [
17986
- "2025-09-09T00:00:00Z"
17986
+ "2025-09-10T00:00:00Z"
17987
17987
  ]
17988
17988
  }
17989
17989
  },
@@ -20916,7 +20916,7 @@
20916
20916
  "title": "Created At",
20917
20917
  "description": "Timestamp of campaign creation",
20918
20918
  "examples": [
20919
- "2025-09-10T00:00:00Z"
20919
+ "2025-09-11T00:00:00Z"
20920
20920
  ]
20921
20921
  },
20922
20922
  "updated_at": {
@@ -20925,7 +20925,7 @@
20925
20925
  "title": "Updated At",
20926
20926
  "description": "Timestamp of campaign update",
20927
20927
  "examples": [
20928
- "2025-09-10T00:00:00Z"
20928
+ "2025-09-11T00:00:00Z"
20929
20929
  ]
20930
20930
  },
20931
20931
  "last_updated_by": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "syllable-sdk",
3
- "version": "0.1.0-alpha.260",
3
+ "version": "0.1.0-alpha.261",
4
4
  "author": "Syllable",
5
5
  "main": "./index.js",
6
6
  "sideEffects": false,
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.260",
60
+ sdkVersion: "0.1.0-alpha.261",
61
61
  genVersion: "2.512.4",
62
62
  userAgent:
63
- "speakeasy-sdk/typescript 0.1.0-alpha.260 2.512.4 0.0.2 syllable-sdk",
63
+ "speakeasy-sdk/typescript 0.1.0-alpha.261 2.512.4 0.0.2 syllable-sdk",
64
64
  } as const;