syllable-sdk 0.1.0-alpha.154 → 0.1.0-alpha.155

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: "20250519.9",
128
+ batchId: "20250521.9",
129
129
  campaignId: 1,
130
- expiresOn: new Date("2025-05-20T00:00:00Z"),
130
+ expiresOn: new Date("2025-05-22T00: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: "20250519.9",
157
+ batchId: "20250521.9",
158
158
  campaignId: 1,
159
- expiresOn: new Date("2025-05-20T00:00:00Z"),
159
+ expiresOn: new Date("2025-05-22T00: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-05-18T00:00:00Z"),
135
- endDatetime: new Date("2025-05-19T00:00:00Z"),
134
+ startDatetime: new Date("2025-05-20T00:00:00Z"),
135
+ endDatetime: new Date("2025-05-21T00: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-05-18T00:00:00Z"),
169
- endDatetime: new Date("2025-05-19T00:00:00Z"),
168
+ startDatetime: new Date("2025-05-20T00:00:00Z"),
169
+ endDatetime: new Date("2025-05-21T00: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-05-18T00:00:00Z"),
307
- endDatetime: new Date("2025-05-19T00:00:00Z"),
306
+ startDatetime: new Date("2025-05-20T00:00:00Z"),
307
+ endDatetime: new Date("2025-05-21T00: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-05-18T00:00:00Z"),
344
- endDatetime: new Date("2025-05-19T00:00:00Z"),
343
+ startDatetime: new Date("2025-05-20T00:00:00Z"),
344
+ endDatetime: new Date("2025-05-21T00:00:00Z"),
345
345
  },
346
346
  });
347
347
 
package/jsr.json CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  {
4
4
  "name": "syllable-sdk",
5
- "version": "0.1.0-alpha.154",
5
+ "version": "0.1.0-alpha.155",
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.154";
30
+ readonly sdkVersion: "0.1.0-alpha.155";
31
31
  readonly genVersion: "2.512.4";
32
- readonly userAgent: "speakeasy-sdk/typescript 0.1.0-alpha.154 2.512.4 0.0.2 syllable-sdk";
32
+ readonly userAgent: "speakeasy-sdk/typescript 0.1.0-alpha.155 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.154",
34
+ sdkVersion: "0.1.0-alpha.155",
35
35
  genVersion: "2.512.4",
36
- userAgent: "speakeasy-sdk/typescript 0.1.0-alpha.154 2.512.4 0.0.2 syllable-sdk",
36
+ userAgent: "speakeasy-sdk/typescript 0.1.0-alpha.155 2.512.4 0.0.2 syllable-sdk",
37
37
  };
38
38
  //# sourceMappingURL=config.js.map
package/openapi.json CHANGED
@@ -11545,7 +11545,7 @@
11545
11545
  "title": "Batch Id",
11546
11546
  "description": "Unique ID for conversation batch",
11547
11547
  "examples": [
11548
- "20250519.9"
11548
+ "20250521.9"
11549
11549
  ]
11550
11550
  },
11551
11551
  "campaign_id": {
@@ -11569,7 +11569,7 @@
11569
11569
  "title": "Expires On",
11570
11570
  "description": "Timestamp of batch expiration",
11571
11571
  "examples": [
11572
- "2025-05-20T00:00:00Z"
11572
+ "2025-05-22T00:00:00Z"
11573
11573
  ]
11574
11574
  },
11575
11575
  "paused": {
@@ -11622,7 +11622,7 @@
11622
11622
  "title": "Created At",
11623
11623
  "description": "Timestamp of batch creation",
11624
11624
  "examples": [
11625
- "2025-05-19T00:00:00Z"
11625
+ "2025-05-21T00:00:00Z"
11626
11626
  ]
11627
11627
  },
11628
11628
  "deleted_at": {
@@ -11638,7 +11638,7 @@
11638
11638
  "title": "Deleted At",
11639
11639
  "description": "Timestamp of batch deletion",
11640
11640
  "examples": [
11641
- "2025-05-19T00:00:00Z"
11641
+ "2025-05-21T00:00:00Z"
11642
11642
  ]
11643
11643
  },
11644
11644
  "deleted_reason": {
@@ -11669,7 +11669,7 @@
11669
11669
  "title": "Last Updated At",
11670
11670
  "description": "Timestamp of last change to batch",
11671
11671
  "examples": [
11672
- "2025-05-19T00:00:00Z"
11672
+ "2025-05-21T00:00:00Z"
11673
11673
  ]
11674
11674
  },
11675
11675
  "last_updated_by": {
@@ -12184,7 +12184,7 @@
12184
12184
  "title": "Batch Id",
12185
12185
  "description": "Unique ID for conversation batch",
12186
12186
  "examples": [
12187
- "20250519.9"
12187
+ "20250521.9"
12188
12188
  ]
12189
12189
  },
12190
12190
  "campaign_id": {
@@ -12208,7 +12208,7 @@
12208
12208
  "title": "Expires On",
12209
12209
  "description": "Timestamp of batch expiration",
12210
12210
  "examples": [
12211
- "2025-05-20T00:00:00Z"
12211
+ "2025-05-22T00:00:00Z"
12212
12212
  ]
12213
12213
  },
12214
12214
  "paused": {
@@ -12261,7 +12261,7 @@
12261
12261
  "title": "Created At",
12262
12262
  "description": "Timestamp of batch creation",
12263
12263
  "examples": [
12264
- "2025-05-19T00:00:00Z"
12264
+ "2025-05-21T00:00:00Z"
12265
12265
  ]
12266
12266
  },
12267
12267
  "deleted_at": {
@@ -12277,7 +12277,7 @@
12277
12277
  "title": "Deleted At",
12278
12278
  "description": "Timestamp of batch deletion",
12279
12279
  "examples": [
12280
- "2025-05-19T00:00:00Z"
12280
+ "2025-05-21T00:00:00Z"
12281
12281
  ]
12282
12282
  },
12283
12283
  "deleted_reason": {
@@ -12308,7 +12308,7 @@
12308
12308
  "title": "Last Updated At",
12309
12309
  "description": "Timestamp of last change to batch",
12310
12310
  "examples": [
12311
- "2025-05-19T00:00:00Z"
12311
+ "2025-05-21T00:00:00Z"
12312
12312
  ]
12313
12313
  },
12314
12314
  "last_updated_by": {
@@ -12351,7 +12351,7 @@
12351
12351
  "title": "Batch Id",
12352
12352
  "description": "Unique ID for conversation batch",
12353
12353
  "examples": [
12354
- "20250519.9"
12354
+ "20250521.9"
12355
12355
  ]
12356
12356
  },
12357
12357
  "campaign_id": {
@@ -12375,7 +12375,7 @@
12375
12375
  "title": "Expires On",
12376
12376
  "description": "Timestamp of batch expiration",
12377
12377
  "examples": [
12378
- "2025-05-20T00:00:00Z"
12378
+ "2025-05-22T00:00:00Z"
12379
12379
  ]
12380
12380
  },
12381
12381
  "paused": {
@@ -12518,7 +12518,7 @@
12518
12518
  "title": "Created At",
12519
12519
  "description": "Timestamp of request creation",
12520
12520
  "examples": [
12521
- "2025-05-18T00:00:00Z"
12521
+ "2025-05-20T00:00:00Z"
12522
12522
  ]
12523
12523
  },
12524
12524
  "sent_at": {
@@ -12534,7 +12534,7 @@
12534
12534
  "title": "Sent At",
12535
12535
  "description": "Timestamp at which request was sent",
12536
12536
  "examples": [
12537
- "2025-05-19T00:00:00Z"
12537
+ "2025-05-21T00:00:00Z"
12538
12538
  ]
12539
12539
  },
12540
12540
  "attempt_count": {
@@ -14434,7 +14434,7 @@
14434
14434
  "title": "Created At",
14435
14435
  "description": "Timestamp at which insight upload folder was created",
14436
14436
  "examples": [
14437
- "2025-05-18T00:00:00Z"
14437
+ "2025-05-20T00:00:00Z"
14438
14438
  ]
14439
14439
  },
14440
14440
  "updated_at": {
@@ -14443,7 +14443,7 @@
14443
14443
  "title": "Updated At",
14444
14444
  "description": "Timestamp at which insight upload folder was last updated",
14445
14445
  "examples": [
14446
- "2025-05-19T00:00:00Z"
14446
+ "2025-05-21T00:00:00Z"
14447
14447
  ]
14448
14448
  },
14449
14449
  "last_updated_by": {
@@ -15158,7 +15158,7 @@
15158
15158
  "title": "Created At",
15159
15159
  "description": "Timestamp of at which insight tool configuration was created",
15160
15160
  "examples": [
15161
- "2025-05-18T00:00:00Z"
15161
+ "2025-05-20T00:00:00Z"
15162
15162
  ]
15163
15163
  },
15164
15164
  "updated_at": {
@@ -15167,7 +15167,7 @@
15167
15167
  "title": "Updated At",
15168
15168
  "description": "Timestamp at which insight tool configuration was last updated",
15169
15169
  "examples": [
15170
- "2025-05-19T00:00:00Z"
15170
+ "2025-05-21T00:00:00Z"
15171
15171
  ]
15172
15172
  },
15173
15173
  "last_updated_by": {
@@ -15512,7 +15512,7 @@
15512
15512
  "title": "Start Datetime",
15513
15513
  "description": "Timestamp for when the insight workflow should start. An empty value indicates start on activation",
15514
15514
  "examples": [
15515
- "2025-05-18T00:00:00Z"
15515
+ "2025-05-20T00:00:00Z"
15516
15516
  ]
15517
15517
  },
15518
15518
  "end_datetime": {
@@ -15528,7 +15528,7 @@
15528
15528
  "title": "End Datetime",
15529
15529
  "description": "Timestamp of when the insight workflow should end. An empty value indicates no end",
15530
15530
  "examples": [
15531
- "2025-05-19T00:00:00Z"
15531
+ "2025-05-21T00:00:00Z"
15532
15532
  ]
15533
15533
  }
15534
15534
  },
@@ -15602,7 +15602,7 @@
15602
15602
  "title": "Start Datetime",
15603
15603
  "description": "Timestamp for when the insight workflow should start. An empty value indicates start on activation",
15604
15604
  "examples": [
15605
- "2025-05-18T00:00:00Z"
15605
+ "2025-05-20T00:00:00Z"
15606
15606
  ]
15607
15607
  },
15608
15608
  "end_datetime": {
@@ -15618,7 +15618,7 @@
15618
15618
  "title": "End Datetime",
15619
15619
  "description": "Timestamp of when the insight workflow should end. An empty value indicates no end",
15620
15620
  "examples": [
15621
- "2025-05-19T00:00:00Z"
15621
+ "2025-05-21T00:00:00Z"
15622
15622
  ]
15623
15623
  },
15624
15624
  "id": {
@@ -15671,7 +15671,7 @@
15671
15671
  "title": "Created At",
15672
15672
  "description": "Timestamp at which the insight workflow was created",
15673
15673
  "examples": [
15674
- "2025-05-18T00:00:00Z"
15674
+ "2025-05-20T00:00:00Z"
15675
15675
  ]
15676
15676
  },
15677
15677
  "updated_at": {
@@ -15680,7 +15680,7 @@
15680
15680
  "title": "Updated At",
15681
15681
  "description": "Timestamp of most recent update to the insight workflow",
15682
15682
  "examples": [
15683
- "2025-05-19T00:00:00Z"
15683
+ "2025-05-21T00:00:00Z"
15684
15684
  ]
15685
15685
  },
15686
15686
  "last_updated_by": {
@@ -15776,7 +15776,7 @@
15776
15776
  "title": "Created At",
15777
15777
  "description": "Timestamp at which insight upload folder was created",
15778
15778
  "examples": [
15779
- "2025-05-18T00:00:00Z"
15779
+ "2025-05-20T00:00:00Z"
15780
15780
  ]
15781
15781
  },
15782
15782
  "updated_at": {
@@ -15785,7 +15785,7 @@
15785
15785
  "title": "Updated At",
15786
15786
  "description": "Timestamp at which insight upload folder was last updated",
15787
15787
  "examples": [
15788
- "2025-05-19T00:00:00Z"
15788
+ "2025-05-21T00:00:00Z"
15789
15789
  ]
15790
15790
  },
15791
15791
  "last_updated_by": {
@@ -16020,7 +16020,7 @@
16020
16020
  "title": "Created At",
16021
16021
  "description": "Timestamp at which insight tool result was created",
16022
16022
  "examples": [
16023
- "2025-05-18T00:00:00Z"
16023
+ "2025-05-20T00:00:00Z"
16024
16024
  ]
16025
16025
  },
16026
16026
  "updated_at": {
@@ -16029,7 +16029,7 @@
16029
16029
  "title": "Updated At",
16030
16030
  "description": "Timestamp at which insight tool result was last updated",
16031
16031
  "examples": [
16032
- "2025-05-19T00:00:00Z"
16032
+ "2025-05-21T00:00:00Z"
16033
16033
  ]
16034
16034
  }
16035
16035
  },
@@ -16164,7 +16164,7 @@
16164
16164
  "title": "Start Time",
16165
16165
  "description": "Start time of the uploaded file",
16166
16166
  "examples": [
16167
- "2025-05-18T00:00:00Z"
16167
+ "2025-05-20T00:00:00Z"
16168
16168
  ]
16169
16169
  },
16170
16170
  "end_time": {
@@ -16180,7 +16180,7 @@
16180
16180
  "title": "End Time",
16181
16181
  "description": "End time of the uploaded file",
16182
16182
  "examples": [
16183
- "2025-05-19T00:00:00Z"
16183
+ "2025-05-21T00:00:00Z"
16184
16184
  ]
16185
16185
  },
16186
16186
  "error_message": {
@@ -16235,7 +16235,7 @@
16235
16235
  "title": "Created At",
16236
16236
  "description": "Timestamp at which insight upload file was created",
16237
16237
  "examples": [
16238
- "2025-05-18T00:00:00Z"
16238
+ "2025-05-20T00:00:00Z"
16239
16239
  ]
16240
16240
  }
16241
16241
  },
@@ -18656,7 +18656,7 @@
18656
18656
  "title": "Created At",
18657
18657
  "description": "Timestamp of campaign creation",
18658
18658
  "examples": [
18659
- "2025-05-19T00:00:00Z"
18659
+ "2025-05-21T00:00:00Z"
18660
18660
  ]
18661
18661
  },
18662
18662
  "updated_at": {
@@ -18665,7 +18665,7 @@
18665
18665
  "title": "Updated At",
18666
18666
  "description": "Timestamp of campaign update",
18667
18667
  "examples": [
18668
- "2025-05-19T00:00:00Z"
18668
+ "2025-05-21T00:00:00Z"
18669
18669
  ]
18670
18670
  },
18671
18671
  "last_updated_by": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "syllable-sdk",
3
- "version": "0.1.0-alpha.154",
3
+ "version": "0.1.0-alpha.155",
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.154",
60
+ sdkVersion: "0.1.0-alpha.155",
61
61
  genVersion: "2.512.4",
62
62
  userAgent:
63
- "speakeasy-sdk/typescript 0.1.0-alpha.154 2.512.4 0.0.2 syllable-sdk",
63
+ "speakeasy-sdk/typescript 0.1.0-alpha.155 2.512.4 0.0.2 syllable-sdk",
64
64
  } as const;