syllable-sdk 0.1.0-alpha.215 → 0.1.0-alpha.216

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: "20250723.9",
128
+ batchId: "20250724.9",
129
129
  campaignId: 1,
130
- expiresOn: new Date("2025-07-24T00:00:00Z"),
130
+ expiresOn: new Date("2025-07-25T00: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: "20250723.9",
157
+ batchId: "20250724.9",
158
158
  campaignId: 1,
159
- expiresOn: new Date("2025-07-24T00:00:00Z"),
159
+ expiresOn: new Date("2025-07-25T00: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-07-22T00:00:00Z"),
154
- endDatetime: new Date("2025-07-23T00:00:00Z"),
153
+ startDatetime: new Date("2025-07-23T00:00:00Z"),
154
+ endDatetime: new Date("2025-07-24T00: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-07-22T00:00:00Z"),
207
- endDatetime: new Date("2025-07-23T00:00:00Z"),
206
+ startDatetime: new Date("2025-07-23T00:00:00Z"),
207
+ endDatetime: new Date("2025-07-24T00: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-07-22T00:00:00Z"),
364
- endDatetime: new Date("2025-07-23T00:00:00Z"),
363
+ startDatetime: new Date("2025-07-23T00:00:00Z"),
364
+ endDatetime: new Date("2025-07-24T00: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-07-22T00:00:00Z"),
420
- endDatetime: new Date("2025-07-23T00:00:00Z"),
419
+ startDatetime: new Date("2025-07-23T00:00:00Z"),
420
+ endDatetime: new Date("2025-07-24T00: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.215",
5
+ "version": "0.1.0-alpha.216",
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.215";
30
+ readonly sdkVersion: "0.1.0-alpha.216";
31
31
  readonly genVersion: "2.512.4";
32
- readonly userAgent: "speakeasy-sdk/typescript 0.1.0-alpha.215 2.512.4 0.0.2 syllable-sdk";
32
+ readonly userAgent: "speakeasy-sdk/typescript 0.1.0-alpha.216 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.215",
34
+ sdkVersion: "0.1.0-alpha.216",
35
35
  genVersion: "2.512.4",
36
- userAgent: "speakeasy-sdk/typescript 0.1.0-alpha.215 2.512.4 0.0.2 syllable-sdk",
36
+ userAgent: "speakeasy-sdk/typescript 0.1.0-alpha.216 2.512.4 0.0.2 syllable-sdk",
37
37
  };
38
38
  //# sourceMappingURL=config.js.map
package/openapi.json CHANGED
@@ -12886,7 +12886,7 @@
12886
12886
  "title": "Batch Id",
12887
12887
  "description": "Unique ID for conversation batch",
12888
12888
  "examples": [
12889
- "20250723.9"
12889
+ "20250724.9"
12890
12890
  ]
12891
12891
  },
12892
12892
  "campaign_id": {
@@ -12910,7 +12910,7 @@
12910
12910
  "title": "Expires On",
12911
12911
  "description": "Timestamp of batch expiration",
12912
12912
  "examples": [
12913
- "2025-07-24T00:00:00Z"
12913
+ "2025-07-25T00:00:00Z"
12914
12914
  ]
12915
12915
  },
12916
12916
  "paused": {
@@ -12963,7 +12963,7 @@
12963
12963
  "title": "Created At",
12964
12964
  "description": "Timestamp of batch creation",
12965
12965
  "examples": [
12966
- "2025-07-23T00:00:00Z"
12966
+ "2025-07-24T00:00:00Z"
12967
12967
  ]
12968
12968
  },
12969
12969
  "deleted_at": {
@@ -12979,7 +12979,7 @@
12979
12979
  "title": "Deleted At",
12980
12980
  "description": "Timestamp of batch deletion",
12981
12981
  "examples": [
12982
- "2025-07-23T00:00:00Z"
12982
+ "2025-07-24T00:00:00Z"
12983
12983
  ]
12984
12984
  },
12985
12985
  "deleted_reason": {
@@ -13010,7 +13010,7 @@
13010
13010
  "title": "Last Updated At",
13011
13011
  "description": "Timestamp of last change to batch",
13012
13012
  "examples": [
13013
- "2025-07-23T00:00:00Z"
13013
+ "2025-07-24T00:00:00Z"
13014
13014
  ]
13015
13015
  },
13016
13016
  "last_updated_by": {
@@ -13673,7 +13673,7 @@
13673
13673
  "title": "Batch Id",
13674
13674
  "description": "Unique ID for conversation batch",
13675
13675
  "examples": [
13676
- "20250723.9"
13676
+ "20250724.9"
13677
13677
  ]
13678
13678
  },
13679
13679
  "campaign_id": {
@@ -13697,7 +13697,7 @@
13697
13697
  "title": "Expires On",
13698
13698
  "description": "Timestamp of batch expiration",
13699
13699
  "examples": [
13700
- "2025-07-24T00:00:00Z"
13700
+ "2025-07-25T00:00:00Z"
13701
13701
  ]
13702
13702
  },
13703
13703
  "paused": {
@@ -13750,7 +13750,7 @@
13750
13750
  "title": "Created At",
13751
13751
  "description": "Timestamp of batch creation",
13752
13752
  "examples": [
13753
- "2025-07-23T00:00:00Z"
13753
+ "2025-07-24T00:00:00Z"
13754
13754
  ]
13755
13755
  },
13756
13756
  "deleted_at": {
@@ -13766,7 +13766,7 @@
13766
13766
  "title": "Deleted At",
13767
13767
  "description": "Timestamp of batch deletion",
13768
13768
  "examples": [
13769
- "2025-07-23T00:00:00Z"
13769
+ "2025-07-24T00:00:00Z"
13770
13770
  ]
13771
13771
  },
13772
13772
  "deleted_reason": {
@@ -13797,7 +13797,7 @@
13797
13797
  "title": "Last Updated At",
13798
13798
  "description": "Timestamp of last change to batch",
13799
13799
  "examples": [
13800
- "2025-07-23T00:00:00Z"
13800
+ "2025-07-24T00:00:00Z"
13801
13801
  ]
13802
13802
  },
13803
13803
  "last_updated_by": {
@@ -13840,7 +13840,7 @@
13840
13840
  "title": "Batch Id",
13841
13841
  "description": "Unique ID for conversation batch",
13842
13842
  "examples": [
13843
- "20250723.9"
13843
+ "20250724.9"
13844
13844
  ]
13845
13845
  },
13846
13846
  "campaign_id": {
@@ -13864,7 +13864,7 @@
13864
13864
  "title": "Expires On",
13865
13865
  "description": "Timestamp of batch expiration",
13866
13866
  "examples": [
13867
- "2025-07-24T00:00:00Z"
13867
+ "2025-07-25T00:00:00Z"
13868
13868
  ]
13869
13869
  },
13870
13870
  "paused": {
@@ -14013,7 +14013,7 @@
14013
14013
  "title": "Created At",
14014
14014
  "description": "Timestamp of request creation",
14015
14015
  "examples": [
14016
- "2025-07-22T00:00:00Z"
14016
+ "2025-07-23T00:00:00Z"
14017
14017
  ]
14018
14018
  },
14019
14019
  "sent_at": {
@@ -14029,7 +14029,7 @@
14029
14029
  "title": "Sent At",
14030
14030
  "description": "Timestamp at which request was sent",
14031
14031
  "examples": [
14032
- "2025-07-23T00:00:00Z"
14032
+ "2025-07-24T00:00:00Z"
14033
14033
  ]
14034
14034
  },
14035
14035
  "attempt_count": {
@@ -15945,7 +15945,7 @@
15945
15945
  "title": "Created At",
15946
15946
  "description": "Timestamp at which insight upload folder was created",
15947
15947
  "examples": [
15948
- "2025-07-22T00:00:00Z"
15948
+ "2025-07-23T00:00:00Z"
15949
15949
  ]
15950
15950
  },
15951
15951
  "updated_at": {
@@ -15954,7 +15954,7 @@
15954
15954
  "title": "Updated At",
15955
15955
  "description": "Timestamp at which insight upload folder was last updated",
15956
15956
  "examples": [
15957
- "2025-07-23T00:00:00Z"
15957
+ "2025-07-24T00:00:00Z"
15958
15958
  ]
15959
15959
  },
15960
15960
  "last_updated_by": {
@@ -16669,7 +16669,7 @@
16669
16669
  "title": "Created At",
16670
16670
  "description": "Timestamp of at which insight tool configuration was created",
16671
16671
  "examples": [
16672
- "2025-07-22T00:00:00Z"
16672
+ "2025-07-23T00:00:00Z"
16673
16673
  ]
16674
16674
  },
16675
16675
  "updated_at": {
@@ -16678,7 +16678,7 @@
16678
16678
  "title": "Updated At",
16679
16679
  "description": "Timestamp at which insight tool configuration was last updated",
16680
16680
  "examples": [
16681
- "2025-07-23T00:00:00Z"
16681
+ "2025-07-24T00:00:00Z"
16682
16682
  ]
16683
16683
  },
16684
16684
  "last_updated_by": {
@@ -17055,7 +17055,7 @@
17055
17055
  "title": "Start Datetime",
17056
17056
  "description": "Target session timestamp the workflow (backfill) should start. An empty value indicates start on activation - live sessions only",
17057
17057
  "examples": [
17058
- "2025-07-22T00:00:00Z"
17058
+ "2025-07-23T00:00:00Z"
17059
17059
  ]
17060
17060
  },
17061
17061
  "end_datetime": {
@@ -17071,7 +17071,7 @@
17071
17071
  "title": "End Datetime",
17072
17072
  "description": "Target session timestamp the workflow (backfill) should end. An empty value indicates no end, i.e., include live sessions until deactivation",
17073
17073
  "examples": [
17074
- "2025-07-23T00:00:00Z"
17074
+ "2025-07-24T00:00:00Z"
17075
17075
  ]
17076
17076
  }
17077
17077
  },
@@ -17146,7 +17146,7 @@
17146
17146
  "title": "Start Datetime",
17147
17147
  "description": "Target session timestamp the workflow (backfill) should start. An empty value indicates start on activation - live sessions only",
17148
17148
  "examples": [
17149
- "2025-07-22T00:00:00Z"
17149
+ "2025-07-23T00:00:00Z"
17150
17150
  ]
17151
17151
  },
17152
17152
  "end_datetime": {
@@ -17162,7 +17162,7 @@
17162
17162
  "title": "End Datetime",
17163
17163
  "description": "Target session timestamp the workflow (backfill) should end. An empty value indicates no end, i.e., include live sessions until deactivation",
17164
17164
  "examples": [
17165
- "2025-07-23T00:00:00Z"
17165
+ "2025-07-24T00:00:00Z"
17166
17166
  ]
17167
17167
  },
17168
17168
  "id": {
@@ -17215,7 +17215,7 @@
17215
17215
  "title": "Created At",
17216
17216
  "description": "Timestamp at which the insight workflow was created",
17217
17217
  "examples": [
17218
- "2025-07-22T00:00:00Z"
17218
+ "2025-07-23T00:00:00Z"
17219
17219
  ]
17220
17220
  },
17221
17221
  "updated_at": {
@@ -17224,7 +17224,7 @@
17224
17224
  "title": "Updated At",
17225
17225
  "description": "Timestamp of most recent update to the insight workflow",
17226
17226
  "examples": [
17227
- "2025-07-23T00:00:00Z"
17227
+ "2025-07-24T00:00:00Z"
17228
17228
  ]
17229
17229
  },
17230
17230
  "last_updated_by": {
@@ -17320,7 +17320,7 @@
17320
17320
  "title": "Created At",
17321
17321
  "description": "Timestamp at which insight upload folder was created",
17322
17322
  "examples": [
17323
- "2025-07-22T00:00:00Z"
17323
+ "2025-07-23T00:00:00Z"
17324
17324
  ]
17325
17325
  },
17326
17326
  "updated_at": {
@@ -17329,7 +17329,7 @@
17329
17329
  "title": "Updated At",
17330
17330
  "description": "Timestamp at which insight upload folder was last updated",
17331
17331
  "examples": [
17332
- "2025-07-23T00:00:00Z"
17332
+ "2025-07-24T00:00:00Z"
17333
17333
  ]
17334
17334
  },
17335
17335
  "last_updated_by": {
@@ -17564,7 +17564,7 @@
17564
17564
  "title": "Created At",
17565
17565
  "description": "Timestamp at which insight tool result was created",
17566
17566
  "examples": [
17567
- "2025-07-22T00:00:00Z"
17567
+ "2025-07-23T00:00:00Z"
17568
17568
  ]
17569
17569
  },
17570
17570
  "updated_at": {
@@ -17573,7 +17573,7 @@
17573
17573
  "title": "Updated At",
17574
17574
  "description": "Timestamp at which insight tool result was last updated",
17575
17575
  "examples": [
17576
- "2025-07-23T00:00:00Z"
17576
+ "2025-07-24T00:00:00Z"
17577
17577
  ]
17578
17578
  }
17579
17579
  },
@@ -17708,7 +17708,7 @@
17708
17708
  "title": "Start Time",
17709
17709
  "description": "Start time of the uploaded file",
17710
17710
  "examples": [
17711
- "2025-07-22T00:00:00Z"
17711
+ "2025-07-23T00:00:00Z"
17712
17712
  ]
17713
17713
  },
17714
17714
  "end_time": {
@@ -17724,7 +17724,7 @@
17724
17724
  "title": "End Time",
17725
17725
  "description": "End time of the uploaded file",
17726
17726
  "examples": [
17727
- "2025-07-23T00:00:00Z"
17727
+ "2025-07-24T00:00:00Z"
17728
17728
  ]
17729
17729
  },
17730
17730
  "error_message": {
@@ -17779,7 +17779,7 @@
17779
17779
  "title": "Created At",
17780
17780
  "description": "Timestamp at which insight upload file was created",
17781
17781
  "examples": [
17782
- "2025-07-22T00:00:00Z"
17782
+ "2025-07-23T00:00:00Z"
17783
17783
  ]
17784
17784
  }
17785
17785
  },
@@ -20478,7 +20478,7 @@
20478
20478
  "title": "Created At",
20479
20479
  "description": "Timestamp of campaign creation",
20480
20480
  "examples": [
20481
- "2025-07-23T00:00:00Z"
20481
+ "2025-07-24T00:00:00Z"
20482
20482
  ]
20483
20483
  },
20484
20484
  "updated_at": {
@@ -20487,7 +20487,7 @@
20487
20487
  "title": "Updated At",
20488
20488
  "description": "Timestamp of campaign update",
20489
20489
  "examples": [
20490
- "2025-07-23T00:00:00Z"
20490
+ "2025-07-24T00:00:00Z"
20491
20491
  ]
20492
20492
  },
20493
20493
  "last_updated_by": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "syllable-sdk",
3
- "version": "0.1.0-alpha.215",
3
+ "version": "0.1.0-alpha.216",
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.215",
60
+ sdkVersion: "0.1.0-alpha.216",
61
61
  genVersion: "2.512.4",
62
62
  userAgent:
63
- "speakeasy-sdk/typescript 0.1.0-alpha.215 2.512.4 0.0.2 syllable-sdk",
63
+ "speakeasy-sdk/typescript 0.1.0-alpha.216 2.512.4 0.0.2 syllable-sdk",
64
64
  } as const;