syllable-sdk 0.1.0-alpha.168 → 0.1.0-alpha.169

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: "20250529.9",
128
+ batchId: "20250530.9",
129
129
  campaignId: 1,
130
- expiresOn: new Date("2025-05-30T00:00:00Z"),
130
+ expiresOn: new Date("2025-05-31T00: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: "20250529.9",
157
+ batchId: "20250530.9",
158
158
  campaignId: 1,
159
- expiresOn: new Date("2025-05-30T00:00:00Z"),
159
+ expiresOn: new Date("2025-05-31T00: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-28T00:00:00Z"),
135
- endDatetime: new Date("2025-05-29T00:00:00Z"),
134
+ startDatetime: new Date("2025-05-29T00:00:00Z"),
135
+ endDatetime: new Date("2025-05-30T00: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-28T00:00:00Z"),
169
- endDatetime: new Date("2025-05-29T00:00:00Z"),
168
+ startDatetime: new Date("2025-05-29T00:00:00Z"),
169
+ endDatetime: new Date("2025-05-30T00: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-28T00:00:00Z"),
307
- endDatetime: new Date("2025-05-29T00:00:00Z"),
306
+ startDatetime: new Date("2025-05-29T00:00:00Z"),
307
+ endDatetime: new Date("2025-05-30T00: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-28T00:00:00Z"),
344
- endDatetime: new Date("2025-05-29T00:00:00Z"),
343
+ startDatetime: new Date("2025-05-29T00:00:00Z"),
344
+ endDatetime: new Date("2025-05-30T00: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.168",
5
+ "version": "0.1.0-alpha.169",
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.168";
30
+ readonly sdkVersion: "0.1.0-alpha.169";
31
31
  readonly genVersion: "2.512.4";
32
- readonly userAgent: "speakeasy-sdk/typescript 0.1.0-alpha.168 2.512.4 0.0.2 syllable-sdk";
32
+ readonly userAgent: "speakeasy-sdk/typescript 0.1.0-alpha.169 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.168",
34
+ sdkVersion: "0.1.0-alpha.169",
35
35
  genVersion: "2.512.4",
36
- userAgent: "speakeasy-sdk/typescript 0.1.0-alpha.168 2.512.4 0.0.2 syllable-sdk",
36
+ userAgent: "speakeasy-sdk/typescript 0.1.0-alpha.169 2.512.4 0.0.2 syllable-sdk",
37
37
  };
38
38
  //# sourceMappingURL=config.js.map
package/openapi.json CHANGED
@@ -12059,7 +12059,7 @@
12059
12059
  "title": "Batch Id",
12060
12060
  "description": "Unique ID for conversation batch",
12061
12061
  "examples": [
12062
- "20250529.9"
12062
+ "20250530.9"
12063
12063
  ]
12064
12064
  },
12065
12065
  "campaign_id": {
@@ -12083,7 +12083,7 @@
12083
12083
  "title": "Expires On",
12084
12084
  "description": "Timestamp of batch expiration",
12085
12085
  "examples": [
12086
- "2025-05-30T00:00:00Z"
12086
+ "2025-05-31T00:00:00Z"
12087
12087
  ]
12088
12088
  },
12089
12089
  "paused": {
@@ -12136,7 +12136,7 @@
12136
12136
  "title": "Created At",
12137
12137
  "description": "Timestamp of batch creation",
12138
12138
  "examples": [
12139
- "2025-05-29T00:00:00Z"
12139
+ "2025-05-30T00:00:00Z"
12140
12140
  ]
12141
12141
  },
12142
12142
  "deleted_at": {
@@ -12152,7 +12152,7 @@
12152
12152
  "title": "Deleted At",
12153
12153
  "description": "Timestamp of batch deletion",
12154
12154
  "examples": [
12155
- "2025-05-29T00:00:00Z"
12155
+ "2025-05-30T00:00:00Z"
12156
12156
  ]
12157
12157
  },
12158
12158
  "deleted_reason": {
@@ -12183,7 +12183,7 @@
12183
12183
  "title": "Last Updated At",
12184
12184
  "description": "Timestamp of last change to batch",
12185
12185
  "examples": [
12186
- "2025-05-29T00:00:00Z"
12186
+ "2025-05-30T00:00:00Z"
12187
12187
  ]
12188
12188
  },
12189
12189
  "last_updated_by": {
@@ -12698,7 +12698,7 @@
12698
12698
  "title": "Batch Id",
12699
12699
  "description": "Unique ID for conversation batch",
12700
12700
  "examples": [
12701
- "20250529.9"
12701
+ "20250530.9"
12702
12702
  ]
12703
12703
  },
12704
12704
  "campaign_id": {
@@ -12722,7 +12722,7 @@
12722
12722
  "title": "Expires On",
12723
12723
  "description": "Timestamp of batch expiration",
12724
12724
  "examples": [
12725
- "2025-05-30T00:00:00Z"
12725
+ "2025-05-31T00:00:00Z"
12726
12726
  ]
12727
12727
  },
12728
12728
  "paused": {
@@ -12775,7 +12775,7 @@
12775
12775
  "title": "Created At",
12776
12776
  "description": "Timestamp of batch creation",
12777
12777
  "examples": [
12778
- "2025-05-29T00:00:00Z"
12778
+ "2025-05-30T00:00:00Z"
12779
12779
  ]
12780
12780
  },
12781
12781
  "deleted_at": {
@@ -12791,7 +12791,7 @@
12791
12791
  "title": "Deleted At",
12792
12792
  "description": "Timestamp of batch deletion",
12793
12793
  "examples": [
12794
- "2025-05-29T00:00:00Z"
12794
+ "2025-05-30T00:00:00Z"
12795
12795
  ]
12796
12796
  },
12797
12797
  "deleted_reason": {
@@ -12822,7 +12822,7 @@
12822
12822
  "title": "Last Updated At",
12823
12823
  "description": "Timestamp of last change to batch",
12824
12824
  "examples": [
12825
- "2025-05-29T00:00:00Z"
12825
+ "2025-05-30T00:00:00Z"
12826
12826
  ]
12827
12827
  },
12828
12828
  "last_updated_by": {
@@ -12865,7 +12865,7 @@
12865
12865
  "title": "Batch Id",
12866
12866
  "description": "Unique ID for conversation batch",
12867
12867
  "examples": [
12868
- "20250529.9"
12868
+ "20250530.9"
12869
12869
  ]
12870
12870
  },
12871
12871
  "campaign_id": {
@@ -12889,7 +12889,7 @@
12889
12889
  "title": "Expires On",
12890
12890
  "description": "Timestamp of batch expiration",
12891
12891
  "examples": [
12892
- "2025-05-30T00:00:00Z"
12892
+ "2025-05-31T00:00:00Z"
12893
12893
  ]
12894
12894
  },
12895
12895
  "paused": {
@@ -13038,7 +13038,7 @@
13038
13038
  "title": "Created At",
13039
13039
  "description": "Timestamp of request creation",
13040
13040
  "examples": [
13041
- "2025-05-28T00:00:00Z"
13041
+ "2025-05-29T00:00:00Z"
13042
13042
  ]
13043
13043
  },
13044
13044
  "sent_at": {
@@ -13054,7 +13054,7 @@
13054
13054
  "title": "Sent At",
13055
13055
  "description": "Timestamp at which request was sent",
13056
13056
  "examples": [
13057
- "2025-05-29T00:00:00Z"
13057
+ "2025-05-30T00:00:00Z"
13058
13058
  ]
13059
13059
  },
13060
13060
  "attempt_count": {
@@ -14954,7 +14954,7 @@
14954
14954
  "title": "Created At",
14955
14955
  "description": "Timestamp at which insight upload folder was created",
14956
14956
  "examples": [
14957
- "2025-05-28T00:00:00Z"
14957
+ "2025-05-29T00:00:00Z"
14958
14958
  ]
14959
14959
  },
14960
14960
  "updated_at": {
@@ -14963,7 +14963,7 @@
14963
14963
  "title": "Updated At",
14964
14964
  "description": "Timestamp at which insight upload folder was last updated",
14965
14965
  "examples": [
14966
- "2025-05-29T00:00:00Z"
14966
+ "2025-05-30T00:00:00Z"
14967
14967
  ]
14968
14968
  },
14969
14969
  "last_updated_by": {
@@ -15678,7 +15678,7 @@
15678
15678
  "title": "Created At",
15679
15679
  "description": "Timestamp of at which insight tool configuration was created",
15680
15680
  "examples": [
15681
- "2025-05-28T00:00:00Z"
15681
+ "2025-05-29T00:00:00Z"
15682
15682
  ]
15683
15683
  },
15684
15684
  "updated_at": {
@@ -15687,7 +15687,7 @@
15687
15687
  "title": "Updated At",
15688
15688
  "description": "Timestamp at which insight tool configuration was last updated",
15689
15689
  "examples": [
15690
- "2025-05-29T00:00:00Z"
15690
+ "2025-05-30T00:00:00Z"
15691
15691
  ]
15692
15692
  },
15693
15693
  "last_updated_by": {
@@ -16042,7 +16042,7 @@
16042
16042
  "title": "Start Datetime",
16043
16043
  "description": "Timestamp for when the insight workflow should start. An empty value indicates start on activation",
16044
16044
  "examples": [
16045
- "2025-05-28T00:00:00Z"
16045
+ "2025-05-29T00:00:00Z"
16046
16046
  ]
16047
16047
  },
16048
16048
  "end_datetime": {
@@ -16058,7 +16058,7 @@
16058
16058
  "title": "End Datetime",
16059
16059
  "description": "Timestamp of when the insight workflow should end. An empty value indicates no end",
16060
16060
  "examples": [
16061
- "2025-05-29T00:00:00Z"
16061
+ "2025-05-30T00:00:00Z"
16062
16062
  ]
16063
16063
  }
16064
16064
  },
@@ -16132,7 +16132,7 @@
16132
16132
  "title": "Start Datetime",
16133
16133
  "description": "Timestamp for when the insight workflow should start. An empty value indicates start on activation",
16134
16134
  "examples": [
16135
- "2025-05-28T00:00:00Z"
16135
+ "2025-05-29T00:00:00Z"
16136
16136
  ]
16137
16137
  },
16138
16138
  "end_datetime": {
@@ -16148,7 +16148,7 @@
16148
16148
  "title": "End Datetime",
16149
16149
  "description": "Timestamp of when the insight workflow should end. An empty value indicates no end",
16150
16150
  "examples": [
16151
- "2025-05-29T00:00:00Z"
16151
+ "2025-05-30T00:00:00Z"
16152
16152
  ]
16153
16153
  },
16154
16154
  "id": {
@@ -16201,7 +16201,7 @@
16201
16201
  "title": "Created At",
16202
16202
  "description": "Timestamp at which the insight workflow was created",
16203
16203
  "examples": [
16204
- "2025-05-28T00:00:00Z"
16204
+ "2025-05-29T00:00:00Z"
16205
16205
  ]
16206
16206
  },
16207
16207
  "updated_at": {
@@ -16210,7 +16210,7 @@
16210
16210
  "title": "Updated At",
16211
16211
  "description": "Timestamp of most recent update to the insight workflow",
16212
16212
  "examples": [
16213
- "2025-05-29T00:00:00Z"
16213
+ "2025-05-30T00:00:00Z"
16214
16214
  ]
16215
16215
  },
16216
16216
  "last_updated_by": {
@@ -16306,7 +16306,7 @@
16306
16306
  "title": "Created At",
16307
16307
  "description": "Timestamp at which insight upload folder was created",
16308
16308
  "examples": [
16309
- "2025-05-28T00:00:00Z"
16309
+ "2025-05-29T00:00:00Z"
16310
16310
  ]
16311
16311
  },
16312
16312
  "updated_at": {
@@ -16315,7 +16315,7 @@
16315
16315
  "title": "Updated At",
16316
16316
  "description": "Timestamp at which insight upload folder was last updated",
16317
16317
  "examples": [
16318
- "2025-05-29T00:00:00Z"
16318
+ "2025-05-30T00:00:00Z"
16319
16319
  ]
16320
16320
  },
16321
16321
  "last_updated_by": {
@@ -16550,7 +16550,7 @@
16550
16550
  "title": "Created At",
16551
16551
  "description": "Timestamp at which insight tool result was created",
16552
16552
  "examples": [
16553
- "2025-05-28T00:00:00Z"
16553
+ "2025-05-29T00:00:00Z"
16554
16554
  ]
16555
16555
  },
16556
16556
  "updated_at": {
@@ -16559,7 +16559,7 @@
16559
16559
  "title": "Updated At",
16560
16560
  "description": "Timestamp at which insight tool result was last updated",
16561
16561
  "examples": [
16562
- "2025-05-29T00:00:00Z"
16562
+ "2025-05-30T00:00:00Z"
16563
16563
  ]
16564
16564
  }
16565
16565
  },
@@ -16694,7 +16694,7 @@
16694
16694
  "title": "Start Time",
16695
16695
  "description": "Start time of the uploaded file",
16696
16696
  "examples": [
16697
- "2025-05-28T00:00:00Z"
16697
+ "2025-05-29T00:00:00Z"
16698
16698
  ]
16699
16699
  },
16700
16700
  "end_time": {
@@ -16710,7 +16710,7 @@
16710
16710
  "title": "End Time",
16711
16711
  "description": "End time of the uploaded file",
16712
16712
  "examples": [
16713
- "2025-05-29T00:00:00Z"
16713
+ "2025-05-30T00:00:00Z"
16714
16714
  ]
16715
16715
  },
16716
16716
  "error_message": {
@@ -16765,7 +16765,7 @@
16765
16765
  "title": "Created At",
16766
16766
  "description": "Timestamp at which insight upload file was created",
16767
16767
  "examples": [
16768
- "2025-05-28T00:00:00Z"
16768
+ "2025-05-29T00:00:00Z"
16769
16769
  ]
16770
16770
  }
16771
16771
  },
@@ -19252,7 +19252,7 @@
19252
19252
  "title": "Created At",
19253
19253
  "description": "Timestamp of campaign creation",
19254
19254
  "examples": [
19255
- "2025-05-29T00:00:00Z"
19255
+ "2025-05-30T00:00:00Z"
19256
19256
  ]
19257
19257
  },
19258
19258
  "updated_at": {
@@ -19261,7 +19261,7 @@
19261
19261
  "title": "Updated At",
19262
19262
  "description": "Timestamp of campaign update",
19263
19263
  "examples": [
19264
- "2025-05-29T00:00:00Z"
19264
+ "2025-05-30T00:00:00Z"
19265
19265
  ]
19266
19266
  },
19267
19267
  "last_updated_by": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "syllable-sdk",
3
- "version": "0.1.0-alpha.168",
3
+ "version": "0.1.0-alpha.169",
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.168",
60
+ sdkVersion: "0.1.0-alpha.169",
61
61
  genVersion: "2.512.4",
62
62
  userAgent:
63
- "speakeasy-sdk/typescript 0.1.0-alpha.168 2.512.4 0.0.2 syllable-sdk",
63
+ "speakeasy-sdk/typescript 0.1.0-alpha.169 2.512.4 0.0.2 syllable-sdk",
64
64
  } as const;