syllable-sdk 0.1.0-alpha.190 → 0.1.0-alpha.192

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: "20250624.9",
128
+ batchId: "20250626.9",
129
129
  campaignId: 1,
130
- expiresOn: new Date("2025-06-25T00:00:00Z"),
130
+ expiresOn: new Date("2025-06-27T00: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: "20250624.9",
157
+ batchId: "20250626.9",
158
158
  campaignId: 1,
159
- expiresOn: new Date("2025-06-25T00:00:00Z"),
159
+ expiresOn: new Date("2025-06-27T00: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-06-23T00:00:00Z"),
135
- endDatetime: new Date("2025-06-24T00:00:00Z"),
134
+ startDatetime: new Date("2025-06-25T00:00:00Z"),
135
+ endDatetime: new Date("2025-06-26T00: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-06-23T00:00:00Z"),
169
- endDatetime: new Date("2025-06-24T00:00:00Z"),
168
+ startDatetime: new Date("2025-06-25T00:00:00Z"),
169
+ endDatetime: new Date("2025-06-26T00: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-06-23T00:00:00Z"),
307
- endDatetime: new Date("2025-06-24T00:00:00Z"),
306
+ startDatetime: new Date("2025-06-25T00:00:00Z"),
307
+ endDatetime: new Date("2025-06-26T00: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-06-23T00:00:00Z"),
344
- endDatetime: new Date("2025-06-24T00:00:00Z"),
343
+ startDatetime: new Date("2025-06-25T00:00:00Z"),
344
+ endDatetime: new Date("2025-06-26T00: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.190",
5
+ "version": "0.1.0-alpha.192",
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.190";
30
+ readonly sdkVersion: "0.1.0-alpha.192";
31
31
  readonly genVersion: "2.512.4";
32
- readonly userAgent: "speakeasy-sdk/typescript 0.1.0-alpha.190 2.512.4 0.0.2 syllable-sdk";
32
+ readonly userAgent: "speakeasy-sdk/typescript 0.1.0-alpha.192 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.190",
34
+ sdkVersion: "0.1.0-alpha.192",
35
35
  genVersion: "2.512.4",
36
- userAgent: "speakeasy-sdk/typescript 0.1.0-alpha.190 2.512.4 0.0.2 syllable-sdk",
36
+ userAgent: "speakeasy-sdk/typescript 0.1.0-alpha.192 2.512.4 0.0.2 syllable-sdk",
37
37
  };
38
38
  //# sourceMappingURL=config.js.map
package/openapi.json CHANGED
@@ -12742,7 +12742,7 @@
12742
12742
  "title": "Batch Id",
12743
12743
  "description": "Unique ID for conversation batch",
12744
12744
  "examples": [
12745
- "20250624.9"
12745
+ "20250626.9"
12746
12746
  ]
12747
12747
  },
12748
12748
  "campaign_id": {
@@ -12766,7 +12766,7 @@
12766
12766
  "title": "Expires On",
12767
12767
  "description": "Timestamp of batch expiration",
12768
12768
  "examples": [
12769
- "2025-06-25T00:00:00Z"
12769
+ "2025-06-27T00:00:00Z"
12770
12770
  ]
12771
12771
  },
12772
12772
  "paused": {
@@ -12819,7 +12819,7 @@
12819
12819
  "title": "Created At",
12820
12820
  "description": "Timestamp of batch creation",
12821
12821
  "examples": [
12822
- "2025-06-24T00:00:00Z"
12822
+ "2025-06-26T00:00:00Z"
12823
12823
  ]
12824
12824
  },
12825
12825
  "deleted_at": {
@@ -12835,7 +12835,7 @@
12835
12835
  "title": "Deleted At",
12836
12836
  "description": "Timestamp of batch deletion",
12837
12837
  "examples": [
12838
- "2025-06-24T00:00:00Z"
12838
+ "2025-06-26T00:00:00Z"
12839
12839
  ]
12840
12840
  },
12841
12841
  "deleted_reason": {
@@ -12866,7 +12866,7 @@
12866
12866
  "title": "Last Updated At",
12867
12867
  "description": "Timestamp of last change to batch",
12868
12868
  "examples": [
12869
- "2025-06-24T00:00:00Z"
12869
+ "2025-06-26T00:00:00Z"
12870
12870
  ]
12871
12871
  },
12872
12872
  "last_updated_by": {
@@ -13517,7 +13517,7 @@
13517
13517
  "title": "Batch Id",
13518
13518
  "description": "Unique ID for conversation batch",
13519
13519
  "examples": [
13520
- "20250624.9"
13520
+ "20250626.9"
13521
13521
  ]
13522
13522
  },
13523
13523
  "campaign_id": {
@@ -13541,7 +13541,7 @@
13541
13541
  "title": "Expires On",
13542
13542
  "description": "Timestamp of batch expiration",
13543
13543
  "examples": [
13544
- "2025-06-25T00:00:00Z"
13544
+ "2025-06-27T00:00:00Z"
13545
13545
  ]
13546
13546
  },
13547
13547
  "paused": {
@@ -13594,7 +13594,7 @@
13594
13594
  "title": "Created At",
13595
13595
  "description": "Timestamp of batch creation",
13596
13596
  "examples": [
13597
- "2025-06-24T00:00:00Z"
13597
+ "2025-06-26T00:00:00Z"
13598
13598
  ]
13599
13599
  },
13600
13600
  "deleted_at": {
@@ -13610,7 +13610,7 @@
13610
13610
  "title": "Deleted At",
13611
13611
  "description": "Timestamp of batch deletion",
13612
13612
  "examples": [
13613
- "2025-06-24T00:00:00Z"
13613
+ "2025-06-26T00:00:00Z"
13614
13614
  ]
13615
13615
  },
13616
13616
  "deleted_reason": {
@@ -13641,7 +13641,7 @@
13641
13641
  "title": "Last Updated At",
13642
13642
  "description": "Timestamp of last change to batch",
13643
13643
  "examples": [
13644
- "2025-06-24T00:00:00Z"
13644
+ "2025-06-26T00:00:00Z"
13645
13645
  ]
13646
13646
  },
13647
13647
  "last_updated_by": {
@@ -13684,7 +13684,7 @@
13684
13684
  "title": "Batch Id",
13685
13685
  "description": "Unique ID for conversation batch",
13686
13686
  "examples": [
13687
- "20250624.9"
13687
+ "20250626.9"
13688
13688
  ]
13689
13689
  },
13690
13690
  "campaign_id": {
@@ -13708,7 +13708,7 @@
13708
13708
  "title": "Expires On",
13709
13709
  "description": "Timestamp of batch expiration",
13710
13710
  "examples": [
13711
- "2025-06-25T00:00:00Z"
13711
+ "2025-06-27T00:00:00Z"
13712
13712
  ]
13713
13713
  },
13714
13714
  "paused": {
@@ -13857,7 +13857,7 @@
13857
13857
  "title": "Created At",
13858
13858
  "description": "Timestamp of request creation",
13859
13859
  "examples": [
13860
- "2025-06-23T00:00:00Z"
13860
+ "2025-06-25T00:00:00Z"
13861
13861
  ]
13862
13862
  },
13863
13863
  "sent_at": {
@@ -13873,7 +13873,7 @@
13873
13873
  "title": "Sent At",
13874
13874
  "description": "Timestamp at which request was sent",
13875
13875
  "examples": [
13876
- "2025-06-24T00:00:00Z"
13876
+ "2025-06-26T00:00:00Z"
13877
13877
  ]
13878
13878
  },
13879
13879
  "attempt_count": {
@@ -15773,7 +15773,7 @@
15773
15773
  "title": "Created At",
15774
15774
  "description": "Timestamp at which insight upload folder was created",
15775
15775
  "examples": [
15776
- "2025-06-23T00:00:00Z"
15776
+ "2025-06-25T00:00:00Z"
15777
15777
  ]
15778
15778
  },
15779
15779
  "updated_at": {
@@ -15782,7 +15782,7 @@
15782
15782
  "title": "Updated At",
15783
15783
  "description": "Timestamp at which insight upload folder was last updated",
15784
15784
  "examples": [
15785
- "2025-06-24T00:00:00Z"
15785
+ "2025-06-26T00:00:00Z"
15786
15786
  ]
15787
15787
  },
15788
15788
  "last_updated_by": {
@@ -16497,7 +16497,7 @@
16497
16497
  "title": "Created At",
16498
16498
  "description": "Timestamp of at which insight tool configuration was created",
16499
16499
  "examples": [
16500
- "2025-06-23T00:00:00Z"
16500
+ "2025-06-25T00:00:00Z"
16501
16501
  ]
16502
16502
  },
16503
16503
  "updated_at": {
@@ -16506,7 +16506,7 @@
16506
16506
  "title": "Updated At",
16507
16507
  "description": "Timestamp at which insight tool configuration was last updated",
16508
16508
  "examples": [
16509
- "2025-06-24T00:00:00Z"
16509
+ "2025-06-26T00:00:00Z"
16510
16510
  ]
16511
16511
  },
16512
16512
  "last_updated_by": {
@@ -16861,7 +16861,7 @@
16861
16861
  "title": "Start Datetime",
16862
16862
  "description": "Timestamp for when the insight workflow should start. An empty value indicates start on activation",
16863
16863
  "examples": [
16864
- "2025-06-23T00:00:00Z"
16864
+ "2025-06-25T00:00:00Z"
16865
16865
  ]
16866
16866
  },
16867
16867
  "end_datetime": {
@@ -16877,7 +16877,7 @@
16877
16877
  "title": "End Datetime",
16878
16878
  "description": "Timestamp of when the insight workflow should end. An empty value indicates no end",
16879
16879
  "examples": [
16880
- "2025-06-24T00:00:00Z"
16880
+ "2025-06-26T00:00:00Z"
16881
16881
  ]
16882
16882
  }
16883
16883
  },
@@ -16951,7 +16951,7 @@
16951
16951
  "title": "Start Datetime",
16952
16952
  "description": "Timestamp for when the insight workflow should start. An empty value indicates start on activation",
16953
16953
  "examples": [
16954
- "2025-06-23T00:00:00Z"
16954
+ "2025-06-25T00:00:00Z"
16955
16955
  ]
16956
16956
  },
16957
16957
  "end_datetime": {
@@ -16967,7 +16967,7 @@
16967
16967
  "title": "End Datetime",
16968
16968
  "description": "Timestamp of when the insight workflow should end. An empty value indicates no end",
16969
16969
  "examples": [
16970
- "2025-06-24T00:00:00Z"
16970
+ "2025-06-26T00:00:00Z"
16971
16971
  ]
16972
16972
  },
16973
16973
  "id": {
@@ -17020,7 +17020,7 @@
17020
17020
  "title": "Created At",
17021
17021
  "description": "Timestamp at which the insight workflow was created",
17022
17022
  "examples": [
17023
- "2025-06-23T00:00:00Z"
17023
+ "2025-06-25T00:00:00Z"
17024
17024
  ]
17025
17025
  },
17026
17026
  "updated_at": {
@@ -17029,7 +17029,7 @@
17029
17029
  "title": "Updated At",
17030
17030
  "description": "Timestamp of most recent update to the insight workflow",
17031
17031
  "examples": [
17032
- "2025-06-24T00:00:00Z"
17032
+ "2025-06-26T00:00:00Z"
17033
17033
  ]
17034
17034
  },
17035
17035
  "last_updated_by": {
@@ -17125,7 +17125,7 @@
17125
17125
  "title": "Created At",
17126
17126
  "description": "Timestamp at which insight upload folder was created",
17127
17127
  "examples": [
17128
- "2025-06-23T00:00:00Z"
17128
+ "2025-06-25T00:00:00Z"
17129
17129
  ]
17130
17130
  },
17131
17131
  "updated_at": {
@@ -17134,7 +17134,7 @@
17134
17134
  "title": "Updated At",
17135
17135
  "description": "Timestamp at which insight upload folder was last updated",
17136
17136
  "examples": [
17137
- "2025-06-24T00:00:00Z"
17137
+ "2025-06-26T00:00:00Z"
17138
17138
  ]
17139
17139
  },
17140
17140
  "last_updated_by": {
@@ -17369,7 +17369,7 @@
17369
17369
  "title": "Created At",
17370
17370
  "description": "Timestamp at which insight tool result was created",
17371
17371
  "examples": [
17372
- "2025-06-23T00:00:00Z"
17372
+ "2025-06-25T00:00:00Z"
17373
17373
  ]
17374
17374
  },
17375
17375
  "updated_at": {
@@ -17378,7 +17378,7 @@
17378
17378
  "title": "Updated At",
17379
17379
  "description": "Timestamp at which insight tool result was last updated",
17380
17380
  "examples": [
17381
- "2025-06-24T00:00:00Z"
17381
+ "2025-06-26T00:00:00Z"
17382
17382
  ]
17383
17383
  }
17384
17384
  },
@@ -17513,7 +17513,7 @@
17513
17513
  "title": "Start Time",
17514
17514
  "description": "Start time of the uploaded file",
17515
17515
  "examples": [
17516
- "2025-06-23T00:00:00Z"
17516
+ "2025-06-25T00:00:00Z"
17517
17517
  ]
17518
17518
  },
17519
17519
  "end_time": {
@@ -17529,7 +17529,7 @@
17529
17529
  "title": "End Time",
17530
17530
  "description": "End time of the uploaded file",
17531
17531
  "examples": [
17532
- "2025-06-24T00:00:00Z"
17532
+ "2025-06-26T00:00:00Z"
17533
17533
  ]
17534
17534
  },
17535
17535
  "error_message": {
@@ -17584,7 +17584,7 @@
17584
17584
  "title": "Created At",
17585
17585
  "description": "Timestamp at which insight upload file was created",
17586
17586
  "examples": [
17587
- "2025-06-23T00:00:00Z"
17587
+ "2025-06-25T00:00:00Z"
17588
17588
  ]
17589
17589
  }
17590
17590
  },
@@ -20256,7 +20256,7 @@
20256
20256
  "title": "Created At",
20257
20257
  "description": "Timestamp of campaign creation",
20258
20258
  "examples": [
20259
- "2025-06-24T00:00:00Z"
20259
+ "2025-06-26T00:00:00Z"
20260
20260
  ]
20261
20261
  },
20262
20262
  "updated_at": {
@@ -20265,7 +20265,7 @@
20265
20265
  "title": "Updated At",
20266
20266
  "description": "Timestamp of campaign update",
20267
20267
  "examples": [
20268
- "2025-06-24T00:00:00Z"
20268
+ "2025-06-26T00:00:00Z"
20269
20269
  ]
20270
20270
  },
20271
20271
  "last_updated_by": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "syllable-sdk",
3
- "version": "0.1.0-alpha.190",
3
+ "version": "0.1.0-alpha.192",
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.190",
60
+ sdkVersion: "0.1.0-alpha.192",
61
61
  genVersion: "2.512.4",
62
62
  userAgent:
63
- "speakeasy-sdk/typescript 0.1.0-alpha.190 2.512.4 0.0.2 syllable-sdk",
63
+ "speakeasy-sdk/typescript 0.1.0-alpha.192 2.512.4 0.0.2 syllable-sdk",
64
64
  } as const;