syllable-sdk 0.1.0-alpha.161 → 0.1.0-alpha.163
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.
- package/docs/sdks/batches/README.md +4 -4
- package/docs/sdks/workflows/README.md +8 -8
- package/jsr.json +1 -1
- package/lib/config.d.ts +2 -2
- package/lib/config.js +2 -2
- package/models/components/insightworkflowcondition.d.ts +3 -3
- package/models/components/permissions.d.ts +3 -3
- package/models/components/permissions.js +1 -1
- package/models/components/permissions.js.map +1 -1
- package/openapi.json +42 -38
- package/package.json +1 -1
- package/src/lib/config.ts +2 -2
- package/src/models/components/insightworkflowcondition.ts +3 -3
- package/src/models/components/permissions.ts +1 -1
|
@@ -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: "
|
|
128
|
+
batchId: "20250527.9",
|
|
129
129
|
campaignId: 1,
|
|
130
|
-
expiresOn: new Date("2025-05-
|
|
130
|
+
expiresOn: new Date("2025-05-28T00: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: "
|
|
157
|
+
batchId: "20250527.9",
|
|
158
158
|
campaignId: 1,
|
|
159
|
-
expiresOn: new Date("2025-05-
|
|
159
|
+
expiresOn: new Date("2025-05-28T00: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-
|
|
135
|
-
endDatetime: new Date("2025-05-
|
|
134
|
+
startDatetime: new Date("2025-05-26T00:00:00Z"),
|
|
135
|
+
endDatetime: new Date("2025-05-27T00: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-
|
|
169
|
-
endDatetime: new Date("2025-05-
|
|
168
|
+
startDatetime: new Date("2025-05-26T00:00:00Z"),
|
|
169
|
+
endDatetime: new Date("2025-05-27T00: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-
|
|
307
|
-
endDatetime: new Date("2025-05-
|
|
306
|
+
startDatetime: new Date("2025-05-26T00:00:00Z"),
|
|
307
|
+
endDatetime: new Date("2025-05-27T00: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-
|
|
344
|
-
endDatetime: new Date("2025-05-
|
|
343
|
+
startDatetime: new Date("2025-05-26T00:00:00Z"),
|
|
344
|
+
endDatetime: new Date("2025-05-27T00:00:00Z"),
|
|
345
345
|
},
|
|
346
346
|
});
|
|
347
347
|
|
package/jsr.json
CHANGED
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.
|
|
30
|
+
readonly sdkVersion: "0.1.0-alpha.163";
|
|
31
31
|
readonly genVersion: "2.512.4";
|
|
32
|
-
readonly userAgent: "speakeasy-sdk/typescript 0.1.0-alpha.
|
|
32
|
+
readonly userAgent: "speakeasy-sdk/typescript 0.1.0-alpha.163 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.
|
|
34
|
+
sdkVersion: "0.1.0-alpha.163",
|
|
35
35
|
genVersion: "2.512.4",
|
|
36
|
-
userAgent: "speakeasy-sdk/typescript 0.1.0-alpha.
|
|
36
|
+
userAgent: "speakeasy-sdk/typescript 0.1.0-alpha.163 2.512.4 0.0.2 syllable-sdk",
|
|
37
37
|
};
|
|
38
38
|
//# sourceMappingURL=config.js.map
|
|
@@ -2,7 +2,7 @@ import * as z from "zod";
|
|
|
2
2
|
import { Result as SafeParseResult } from "../../types/fp.js";
|
|
3
3
|
import { SDKValidationError } from "../errors/sdkvalidationerror.js";
|
|
4
4
|
/**
|
|
5
|
-
* List of
|
|
5
|
+
* List of agents
|
|
6
6
|
*/
|
|
7
7
|
export type AgentList = Array<number> | Array<string>;
|
|
8
8
|
/**
|
|
@@ -22,11 +22,11 @@ export type InsightWorkflowCondition = {
|
|
|
22
22
|
*/
|
|
23
23
|
sampleRate?: number | null | undefined;
|
|
24
24
|
/**
|
|
25
|
-
* List of
|
|
25
|
+
* List of agents
|
|
26
26
|
*/
|
|
27
27
|
agentList?: Array<number> | Array<string> | null | undefined;
|
|
28
28
|
/**
|
|
29
|
-
* List of prompts
|
|
29
|
+
* List of prompts
|
|
30
30
|
*/
|
|
31
31
|
promptList?: Array<string> | null | undefined;
|
|
32
32
|
/**
|
|
@@ -59,7 +59,7 @@ export declare const Permissions: {
|
|
|
59
59
|
readonly SaIncidentsWrite: "sa_incidents_write";
|
|
60
60
|
readonly SaIncidentsDelete: "sa_incidents_delete";
|
|
61
61
|
readonly SaPermissionsRead: "sa_permissions_read";
|
|
62
|
-
readonly
|
|
62
|
+
readonly SyllableAdminGlobal: "syllable_admin_global";
|
|
63
63
|
};
|
|
64
64
|
export type Permissions = ClosedEnum<typeof Permissions>;
|
|
65
65
|
/** @internal */
|
|
@@ -131,7 +131,7 @@ export declare namespace Permissions$ {
|
|
|
131
131
|
readonly SaIncidentsWrite: "sa_incidents_write";
|
|
132
132
|
readonly SaIncidentsDelete: "sa_incidents_delete";
|
|
133
133
|
readonly SaPermissionsRead: "sa_permissions_read";
|
|
134
|
-
readonly
|
|
134
|
+
readonly SyllableAdminGlobal: "syllable_admin_global";
|
|
135
135
|
}>;
|
|
136
136
|
/** @deprecated use `Permissions$outboundSchema` instead. */
|
|
137
137
|
const outboundSchema: z.ZodNativeEnum<{
|
|
@@ -193,7 +193,7 @@ export declare namespace Permissions$ {
|
|
|
193
193
|
readonly SaIncidentsWrite: "sa_incidents_write";
|
|
194
194
|
readonly SaIncidentsDelete: "sa_incidents_delete";
|
|
195
195
|
readonly SaPermissionsRead: "sa_permissions_read";
|
|
196
|
-
readonly
|
|
196
|
+
readonly SyllableAdminGlobal: "syllable_admin_global";
|
|
197
197
|
}>;
|
|
198
198
|
}
|
|
199
199
|
//# sourceMappingURL=permissions.d.ts.map
|
|
@@ -87,7 +87,7 @@ exports.Permissions = {
|
|
|
87
87
|
SaIncidentsWrite: "sa_incidents_write",
|
|
88
88
|
SaIncidentsDelete: "sa_incidents_delete",
|
|
89
89
|
SaPermissionsRead: "sa_permissions_read",
|
|
90
|
-
|
|
90
|
+
SyllableAdminGlobal: "syllable_admin_global",
|
|
91
91
|
};
|
|
92
92
|
/** @internal */
|
|
93
93
|
exports.Permissions$inboundSchema = z
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"permissions.js","sourceRoot":"","sources":["../../src/models/components/permissions.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;AAEH,uCAAyB;AAGZ,QAAA,WAAW,GAAG;IACzB,UAAU,EAAE,aAAa;IACzB,WAAW,EAAE,cAAc;IAC3B,YAAY,EAAE,eAAe;IAC7B,YAAY,EAAE,gBAAgB;IAC9B,aAAa,EAAE,iBAAiB;IAChC,cAAc,EAAE,kBAAkB;IAClC,YAAY,EAAE,eAAe;IAC7B,aAAa,EAAE,gBAAgB;IAC/B,cAAc,EAAE,iBAAiB;IACjC,IAAI,EAAE,MAAM;IACZ,iBAAiB,EAAE,oBAAoB;IACvC,kBAAkB,EAAE,sBAAsB;IAC1C,mBAAmB,EAAE,uBAAuB;IAC5C,oBAAoB,EAAE,wBAAwB;IAC9C,eAAe,EAAE,mBAAmB;IACpC,gBAAgB,EAAE,oBAAoB;IACtC,iBAAiB,EAAE,qBAAqB;IACxC,aAAa,EAAE,gBAAgB;IAC/B,cAAc,EAAE,iBAAiB;IACjC,eAAe,EAAE,kBAAkB;IACnC,UAAU,EAAE,aAAa;IACzB,aAAa,EAAE,gBAAgB;IAC/B,YAAY,EAAE,eAAe;IAC7B,aAAa,EAAE,gBAAgB;IAC/B,cAAc,EAAE,iBAAiB;IACjC,gBAAgB,EAAE,mBAAmB;IACrC,iBAAiB,EAAE,oBAAoB;IACvC,kBAAkB,EAAE,qBAAqB;IACzC,kBAAkB,EAAE,sBAAsB;IAC1C,mBAAmB,EAAE,uBAAuB;IAC5C,oBAAoB,EAAE,wBAAwB;IAC9C,iBAAiB,EAAE,oBAAoB;IACvC,kBAAkB,EAAE,qBAAqB;IACzC,YAAY,EAAE,eAAe;IAC7B,aAAa,EAAE,gBAAgB;IAC/B,cAAc,EAAE,iBAAiB;IACjC,eAAe,EAAE,kBAAkB;IACnC,WAAW,EAAE,cAAc;IAC3B,YAAY,EAAE,eAAe;IAC7B,aAAa,EAAE,gBAAgB;IAC/B,iBAAiB,EAAE,oBAAoB;IACvC,WAAW,EAAE,cAAc;IAC3B,YAAY,EAAE,eAAe;IAC7B,aAAa,EAAE,gBAAgB;IAC/B,cAAc,EAAE,iBAAiB;IACjC,iBAAiB,EAAE,qBAAqB;IACxC,kBAAkB,EAAE,sBAAsB;IAC1C,YAAY,EAAE,eAAe;IAC7B,SAAS,EAAE,YAAY;IACvB,UAAU,EAAE,aAAa;IACzB,WAAW,EAAE,cAAc;IAC3B,SAAS,EAAE,YAAY;IACvB,UAAU,EAAE,aAAa;IACzB,WAAW,EAAE,cAAc;IAC3B,eAAe,EAAE,mBAAmB;IACpC,gBAAgB,EAAE,oBAAoB;IACtC,iBAAiB,EAAE,qBAAqB;IACxC,iBAAiB,EAAE,qBAAqB;IACxC,
|
|
1
|
+
{"version":3,"file":"permissions.js","sourceRoot":"","sources":["../../src/models/components/permissions.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;AAEH,uCAAyB;AAGZ,QAAA,WAAW,GAAG;IACzB,UAAU,EAAE,aAAa;IACzB,WAAW,EAAE,cAAc;IAC3B,YAAY,EAAE,eAAe;IAC7B,YAAY,EAAE,gBAAgB;IAC9B,aAAa,EAAE,iBAAiB;IAChC,cAAc,EAAE,kBAAkB;IAClC,YAAY,EAAE,eAAe;IAC7B,aAAa,EAAE,gBAAgB;IAC/B,cAAc,EAAE,iBAAiB;IACjC,IAAI,EAAE,MAAM;IACZ,iBAAiB,EAAE,oBAAoB;IACvC,kBAAkB,EAAE,sBAAsB;IAC1C,mBAAmB,EAAE,uBAAuB;IAC5C,oBAAoB,EAAE,wBAAwB;IAC9C,eAAe,EAAE,mBAAmB;IACpC,gBAAgB,EAAE,oBAAoB;IACtC,iBAAiB,EAAE,qBAAqB;IACxC,aAAa,EAAE,gBAAgB;IAC/B,cAAc,EAAE,iBAAiB;IACjC,eAAe,EAAE,kBAAkB;IACnC,UAAU,EAAE,aAAa;IACzB,aAAa,EAAE,gBAAgB;IAC/B,YAAY,EAAE,eAAe;IAC7B,aAAa,EAAE,gBAAgB;IAC/B,cAAc,EAAE,iBAAiB;IACjC,gBAAgB,EAAE,mBAAmB;IACrC,iBAAiB,EAAE,oBAAoB;IACvC,kBAAkB,EAAE,qBAAqB;IACzC,kBAAkB,EAAE,sBAAsB;IAC1C,mBAAmB,EAAE,uBAAuB;IAC5C,oBAAoB,EAAE,wBAAwB;IAC9C,iBAAiB,EAAE,oBAAoB;IACvC,kBAAkB,EAAE,qBAAqB;IACzC,YAAY,EAAE,eAAe;IAC7B,aAAa,EAAE,gBAAgB;IAC/B,cAAc,EAAE,iBAAiB;IACjC,eAAe,EAAE,kBAAkB;IACnC,WAAW,EAAE,cAAc;IAC3B,YAAY,EAAE,eAAe;IAC7B,aAAa,EAAE,gBAAgB;IAC/B,iBAAiB,EAAE,oBAAoB;IACvC,WAAW,EAAE,cAAc;IAC3B,YAAY,EAAE,eAAe;IAC7B,aAAa,EAAE,gBAAgB;IAC/B,cAAc,EAAE,iBAAiB;IACjC,iBAAiB,EAAE,qBAAqB;IACxC,kBAAkB,EAAE,sBAAsB;IAC1C,YAAY,EAAE,eAAe;IAC7B,SAAS,EAAE,YAAY;IACvB,UAAU,EAAE,aAAa;IACzB,WAAW,EAAE,cAAc;IAC3B,SAAS,EAAE,YAAY;IACvB,UAAU,EAAE,aAAa;IACzB,WAAW,EAAE,cAAc;IAC3B,eAAe,EAAE,mBAAmB;IACpC,gBAAgB,EAAE,oBAAoB;IACtC,iBAAiB,EAAE,qBAAqB;IACxC,iBAAiB,EAAE,qBAAqB;IACxC,mBAAmB,EAAE,uBAAuB;CACpC,CAAC;AAGX,gBAAgB;AACH,QAAA,yBAAyB,GAAwC,CAAC;KAC5E,UAAU,CAAC,mBAAW,CAAC,CAAC;AAE3B,gBAAgB;AACH,QAAA,0BAA0B,GACrC,iCAAyB,CAAC;AAE5B;;;GAGG;AACH,IAAiB,YAAY,CAK5B;AALD,WAAiB,YAAY;IAC3B,2DAA2D;IAC9C,0BAAa,GAAG,iCAAyB,CAAC;IACvD,4DAA4D;IAC/C,2BAAc,GAAG,kCAA0B,CAAC;AAC3D,CAAC,EALgB,YAAY,4BAAZ,YAAY,QAK5B"}
|
package/openapi.json
CHANGED
|
@@ -11578,7 +11578,7 @@
|
|
|
11578
11578
|
"title": "Batch Id",
|
|
11579
11579
|
"description": "Unique ID for conversation batch",
|
|
11580
11580
|
"examples": [
|
|
11581
|
-
"
|
|
11581
|
+
"20250527.9"
|
|
11582
11582
|
]
|
|
11583
11583
|
},
|
|
11584
11584
|
"campaign_id": {
|
|
@@ -11602,7 +11602,7 @@
|
|
|
11602
11602
|
"title": "Expires On",
|
|
11603
11603
|
"description": "Timestamp of batch expiration",
|
|
11604
11604
|
"examples": [
|
|
11605
|
-
"2025-05-
|
|
11605
|
+
"2025-05-28T00:00:00Z"
|
|
11606
11606
|
]
|
|
11607
11607
|
},
|
|
11608
11608
|
"paused": {
|
|
@@ -11655,7 +11655,7 @@
|
|
|
11655
11655
|
"title": "Created At",
|
|
11656
11656
|
"description": "Timestamp of batch creation",
|
|
11657
11657
|
"examples": [
|
|
11658
|
-
"2025-05-
|
|
11658
|
+
"2025-05-27T00:00:00Z"
|
|
11659
11659
|
]
|
|
11660
11660
|
},
|
|
11661
11661
|
"deleted_at": {
|
|
@@ -11671,7 +11671,7 @@
|
|
|
11671
11671
|
"title": "Deleted At",
|
|
11672
11672
|
"description": "Timestamp of batch deletion",
|
|
11673
11673
|
"examples": [
|
|
11674
|
-
"2025-05-
|
|
11674
|
+
"2025-05-27T00:00:00Z"
|
|
11675
11675
|
]
|
|
11676
11676
|
},
|
|
11677
11677
|
"deleted_reason": {
|
|
@@ -11702,7 +11702,7 @@
|
|
|
11702
11702
|
"title": "Last Updated At",
|
|
11703
11703
|
"description": "Timestamp of last change to batch",
|
|
11704
11704
|
"examples": [
|
|
11705
|
-
"2025-05-
|
|
11705
|
+
"2025-05-27T00:00:00Z"
|
|
11706
11706
|
]
|
|
11707
11707
|
},
|
|
11708
11708
|
"last_updated_by": {
|
|
@@ -12217,7 +12217,7 @@
|
|
|
12217
12217
|
"title": "Batch Id",
|
|
12218
12218
|
"description": "Unique ID for conversation batch",
|
|
12219
12219
|
"examples": [
|
|
12220
|
-
"
|
|
12220
|
+
"20250527.9"
|
|
12221
12221
|
]
|
|
12222
12222
|
},
|
|
12223
12223
|
"campaign_id": {
|
|
@@ -12241,7 +12241,7 @@
|
|
|
12241
12241
|
"title": "Expires On",
|
|
12242
12242
|
"description": "Timestamp of batch expiration",
|
|
12243
12243
|
"examples": [
|
|
12244
|
-
"2025-05-
|
|
12244
|
+
"2025-05-28T00:00:00Z"
|
|
12245
12245
|
]
|
|
12246
12246
|
},
|
|
12247
12247
|
"paused": {
|
|
@@ -12294,7 +12294,7 @@
|
|
|
12294
12294
|
"title": "Created At",
|
|
12295
12295
|
"description": "Timestamp of batch creation",
|
|
12296
12296
|
"examples": [
|
|
12297
|
-
"2025-05-
|
|
12297
|
+
"2025-05-27T00:00:00Z"
|
|
12298
12298
|
]
|
|
12299
12299
|
},
|
|
12300
12300
|
"deleted_at": {
|
|
@@ -12310,7 +12310,7 @@
|
|
|
12310
12310
|
"title": "Deleted At",
|
|
12311
12311
|
"description": "Timestamp of batch deletion",
|
|
12312
12312
|
"examples": [
|
|
12313
|
-
"2025-05-
|
|
12313
|
+
"2025-05-27T00:00:00Z"
|
|
12314
12314
|
]
|
|
12315
12315
|
},
|
|
12316
12316
|
"deleted_reason": {
|
|
@@ -12341,7 +12341,7 @@
|
|
|
12341
12341
|
"title": "Last Updated At",
|
|
12342
12342
|
"description": "Timestamp of last change to batch",
|
|
12343
12343
|
"examples": [
|
|
12344
|
-
"2025-05-
|
|
12344
|
+
"2025-05-27T00:00:00Z"
|
|
12345
12345
|
]
|
|
12346
12346
|
},
|
|
12347
12347
|
"last_updated_by": {
|
|
@@ -12384,7 +12384,7 @@
|
|
|
12384
12384
|
"title": "Batch Id",
|
|
12385
12385
|
"description": "Unique ID for conversation batch",
|
|
12386
12386
|
"examples": [
|
|
12387
|
-
"
|
|
12387
|
+
"20250527.9"
|
|
12388
12388
|
]
|
|
12389
12389
|
},
|
|
12390
12390
|
"campaign_id": {
|
|
@@ -12408,7 +12408,7 @@
|
|
|
12408
12408
|
"title": "Expires On",
|
|
12409
12409
|
"description": "Timestamp of batch expiration",
|
|
12410
12410
|
"examples": [
|
|
12411
|
-
"2025-05-
|
|
12411
|
+
"2025-05-28T00:00:00Z"
|
|
12412
12412
|
]
|
|
12413
12413
|
},
|
|
12414
12414
|
"paused": {
|
|
@@ -12557,7 +12557,7 @@
|
|
|
12557
12557
|
"title": "Created At",
|
|
12558
12558
|
"description": "Timestamp of request creation",
|
|
12559
12559
|
"examples": [
|
|
12560
|
-
"2025-05-
|
|
12560
|
+
"2025-05-26T00:00:00Z"
|
|
12561
12561
|
]
|
|
12562
12562
|
},
|
|
12563
12563
|
"sent_at": {
|
|
@@ -12573,7 +12573,7 @@
|
|
|
12573
12573
|
"title": "Sent At",
|
|
12574
12574
|
"description": "Timestamp at which request was sent",
|
|
12575
12575
|
"examples": [
|
|
12576
|
-
"2025-05-
|
|
12576
|
+
"2025-05-27T00:00:00Z"
|
|
12577
12577
|
]
|
|
12578
12578
|
},
|
|
12579
12579
|
"attempt_count": {
|
|
@@ -14473,7 +14473,7 @@
|
|
|
14473
14473
|
"title": "Created At",
|
|
14474
14474
|
"description": "Timestamp at which insight upload folder was created",
|
|
14475
14475
|
"examples": [
|
|
14476
|
-
"2025-05-
|
|
14476
|
+
"2025-05-26T00:00:00Z"
|
|
14477
14477
|
]
|
|
14478
14478
|
},
|
|
14479
14479
|
"updated_at": {
|
|
@@ -14482,7 +14482,7 @@
|
|
|
14482
14482
|
"title": "Updated At",
|
|
14483
14483
|
"description": "Timestamp at which insight upload folder was last updated",
|
|
14484
14484
|
"examples": [
|
|
14485
|
-
"2025-05-
|
|
14485
|
+
"2025-05-27T00:00:00Z"
|
|
14486
14486
|
]
|
|
14487
14487
|
},
|
|
14488
14488
|
"last_updated_by": {
|
|
@@ -15197,7 +15197,7 @@
|
|
|
15197
15197
|
"title": "Created At",
|
|
15198
15198
|
"description": "Timestamp of at which insight tool configuration was created",
|
|
15199
15199
|
"examples": [
|
|
15200
|
-
"2025-05-
|
|
15200
|
+
"2025-05-26T00:00:00Z"
|
|
15201
15201
|
]
|
|
15202
15202
|
},
|
|
15203
15203
|
"updated_at": {
|
|
@@ -15206,7 +15206,7 @@
|
|
|
15206
15206
|
"title": "Updated At",
|
|
15207
15207
|
"description": "Timestamp at which insight tool configuration was last updated",
|
|
15208
15208
|
"examples": [
|
|
15209
|
-
"2025-05-
|
|
15209
|
+
"2025-05-27T00:00:00Z"
|
|
15210
15210
|
]
|
|
15211
15211
|
},
|
|
15212
15212
|
"last_updated_by": {
|
|
@@ -15381,11 +15381,15 @@
|
|
|
15381
15381
|
}
|
|
15382
15382
|
],
|
|
15383
15383
|
"title": "Agent List",
|
|
15384
|
-
"description": "List of
|
|
15384
|
+
"description": "List of agents",
|
|
15385
15385
|
"examples": [
|
|
15386
15386
|
[
|
|
15387
|
-
|
|
15388
|
-
|
|
15387
|
+
866324,
|
|
15388
|
+
826325
|
|
15389
|
+
],
|
|
15390
|
+
[
|
|
15391
|
+
"Agnes.Wangeci",
|
|
15392
|
+
"Dorice.Otaaba"
|
|
15389
15393
|
]
|
|
15390
15394
|
]
|
|
15391
15395
|
},
|
|
@@ -15402,7 +15406,7 @@
|
|
|
15402
15406
|
}
|
|
15403
15407
|
],
|
|
15404
15408
|
"title": "Prompt List",
|
|
15405
|
-
"description": "List of prompts
|
|
15409
|
+
"description": "List of prompts",
|
|
15406
15410
|
"examples": [
|
|
15407
15411
|
[
|
|
15408
15412
|
"123324"
|
|
@@ -15557,7 +15561,7 @@
|
|
|
15557
15561
|
"title": "Start Datetime",
|
|
15558
15562
|
"description": "Timestamp for when the insight workflow should start. An empty value indicates start on activation",
|
|
15559
15563
|
"examples": [
|
|
15560
|
-
"2025-05-
|
|
15564
|
+
"2025-05-26T00:00:00Z"
|
|
15561
15565
|
]
|
|
15562
15566
|
},
|
|
15563
15567
|
"end_datetime": {
|
|
@@ -15573,7 +15577,7 @@
|
|
|
15573
15577
|
"title": "End Datetime",
|
|
15574
15578
|
"description": "Timestamp of when the insight workflow should end. An empty value indicates no end",
|
|
15575
15579
|
"examples": [
|
|
15576
|
-
"2025-05-
|
|
15580
|
+
"2025-05-27T00:00:00Z"
|
|
15577
15581
|
]
|
|
15578
15582
|
}
|
|
15579
15583
|
},
|
|
@@ -15647,7 +15651,7 @@
|
|
|
15647
15651
|
"title": "Start Datetime",
|
|
15648
15652
|
"description": "Timestamp for when the insight workflow should start. An empty value indicates start on activation",
|
|
15649
15653
|
"examples": [
|
|
15650
|
-
"2025-05-
|
|
15654
|
+
"2025-05-26T00:00:00Z"
|
|
15651
15655
|
]
|
|
15652
15656
|
},
|
|
15653
15657
|
"end_datetime": {
|
|
@@ -15663,7 +15667,7 @@
|
|
|
15663
15667
|
"title": "End Datetime",
|
|
15664
15668
|
"description": "Timestamp of when the insight workflow should end. An empty value indicates no end",
|
|
15665
15669
|
"examples": [
|
|
15666
|
-
"2025-05-
|
|
15670
|
+
"2025-05-27T00:00:00Z"
|
|
15667
15671
|
]
|
|
15668
15672
|
},
|
|
15669
15673
|
"id": {
|
|
@@ -15716,7 +15720,7 @@
|
|
|
15716
15720
|
"title": "Created At",
|
|
15717
15721
|
"description": "Timestamp at which the insight workflow was created",
|
|
15718
15722
|
"examples": [
|
|
15719
|
-
"2025-05-
|
|
15723
|
+
"2025-05-26T00:00:00Z"
|
|
15720
15724
|
]
|
|
15721
15725
|
},
|
|
15722
15726
|
"updated_at": {
|
|
@@ -15725,7 +15729,7 @@
|
|
|
15725
15729
|
"title": "Updated At",
|
|
15726
15730
|
"description": "Timestamp of most recent update to the insight workflow",
|
|
15727
15731
|
"examples": [
|
|
15728
|
-
"2025-05-
|
|
15732
|
+
"2025-05-27T00:00:00Z"
|
|
15729
15733
|
]
|
|
15730
15734
|
},
|
|
15731
15735
|
"last_updated_by": {
|
|
@@ -15821,7 +15825,7 @@
|
|
|
15821
15825
|
"title": "Created At",
|
|
15822
15826
|
"description": "Timestamp at which insight upload folder was created",
|
|
15823
15827
|
"examples": [
|
|
15824
|
-
"2025-05-
|
|
15828
|
+
"2025-05-26T00:00:00Z"
|
|
15825
15829
|
]
|
|
15826
15830
|
},
|
|
15827
15831
|
"updated_at": {
|
|
@@ -15830,7 +15834,7 @@
|
|
|
15830
15834
|
"title": "Updated At",
|
|
15831
15835
|
"description": "Timestamp at which insight upload folder was last updated",
|
|
15832
15836
|
"examples": [
|
|
15833
|
-
"2025-05-
|
|
15837
|
+
"2025-05-27T00:00:00Z"
|
|
15834
15838
|
]
|
|
15835
15839
|
},
|
|
15836
15840
|
"last_updated_by": {
|
|
@@ -16065,7 +16069,7 @@
|
|
|
16065
16069
|
"title": "Created At",
|
|
16066
16070
|
"description": "Timestamp at which insight tool result was created",
|
|
16067
16071
|
"examples": [
|
|
16068
|
-
"2025-05-
|
|
16072
|
+
"2025-05-26T00:00:00Z"
|
|
16069
16073
|
]
|
|
16070
16074
|
},
|
|
16071
16075
|
"updated_at": {
|
|
@@ -16074,7 +16078,7 @@
|
|
|
16074
16078
|
"title": "Updated At",
|
|
16075
16079
|
"description": "Timestamp at which insight tool result was last updated",
|
|
16076
16080
|
"examples": [
|
|
16077
|
-
"2025-05-
|
|
16081
|
+
"2025-05-27T00:00:00Z"
|
|
16078
16082
|
]
|
|
16079
16083
|
}
|
|
16080
16084
|
},
|
|
@@ -16209,7 +16213,7 @@
|
|
|
16209
16213
|
"title": "Start Time",
|
|
16210
16214
|
"description": "Start time of the uploaded file",
|
|
16211
16215
|
"examples": [
|
|
16212
|
-
"2025-05-
|
|
16216
|
+
"2025-05-26T00:00:00Z"
|
|
16213
16217
|
]
|
|
16214
16218
|
},
|
|
16215
16219
|
"end_time": {
|
|
@@ -16225,7 +16229,7 @@
|
|
|
16225
16229
|
"title": "End Time",
|
|
16226
16230
|
"description": "End time of the uploaded file",
|
|
16227
16231
|
"examples": [
|
|
16228
|
-
"2025-05-
|
|
16232
|
+
"2025-05-27T00:00:00Z"
|
|
16229
16233
|
]
|
|
16230
16234
|
},
|
|
16231
16235
|
"error_message": {
|
|
@@ -16280,7 +16284,7 @@
|
|
|
16280
16284
|
"title": "Created At",
|
|
16281
16285
|
"description": "Timestamp at which insight upload file was created",
|
|
16282
16286
|
"examples": [
|
|
16283
|
-
"2025-05-
|
|
16287
|
+
"2025-05-26T00:00:00Z"
|
|
16284
16288
|
]
|
|
16285
16289
|
}
|
|
16286
16290
|
},
|
|
@@ -18701,7 +18705,7 @@
|
|
|
18701
18705
|
"title": "Created At",
|
|
18702
18706
|
"description": "Timestamp of campaign creation",
|
|
18703
18707
|
"examples": [
|
|
18704
|
-
"2025-05-
|
|
18708
|
+
"2025-05-27T00:00:00Z"
|
|
18705
18709
|
]
|
|
18706
18710
|
},
|
|
18707
18711
|
"updated_at": {
|
|
@@ -18710,7 +18714,7 @@
|
|
|
18710
18714
|
"title": "Updated At",
|
|
18711
18715
|
"description": "Timestamp of campaign update",
|
|
18712
18716
|
"examples": [
|
|
18713
|
-
"2025-05-
|
|
18717
|
+
"2025-05-27T00:00:00Z"
|
|
18714
18718
|
]
|
|
18715
18719
|
},
|
|
18716
18720
|
"last_updated_by": {
|
|
@@ -18992,7 +18996,7 @@
|
|
|
18992
18996
|
"sa_incidents_write",
|
|
18993
18997
|
"sa_incidents_delete",
|
|
18994
18998
|
"sa_permissions_read",
|
|
18995
|
-
"
|
|
18999
|
+
"syllable_admin_global"
|
|
18996
19000
|
],
|
|
18997
19001
|
"title": "Permissions"
|
|
18998
19002
|
},
|
package/package.json
CHANGED
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.
|
|
60
|
+
sdkVersion: "0.1.0-alpha.163",
|
|
61
61
|
genVersion: "2.512.4",
|
|
62
62
|
userAgent:
|
|
63
|
-
"speakeasy-sdk/typescript 0.1.0-alpha.
|
|
63
|
+
"speakeasy-sdk/typescript 0.1.0-alpha.163 2.512.4 0.0.2 syllable-sdk",
|
|
64
64
|
} as const;
|
|
@@ -9,7 +9,7 @@ import { Result as SafeParseResult } from "../../types/fp.js";
|
|
|
9
9
|
import { SDKValidationError } from "../errors/sdkvalidationerror.js";
|
|
10
10
|
|
|
11
11
|
/**
|
|
12
|
-
* List of
|
|
12
|
+
* List of agents
|
|
13
13
|
*/
|
|
14
14
|
export type AgentList = Array<number> | Array<string>;
|
|
15
15
|
|
|
@@ -30,11 +30,11 @@ export type InsightWorkflowCondition = {
|
|
|
30
30
|
*/
|
|
31
31
|
sampleRate?: number | null | undefined;
|
|
32
32
|
/**
|
|
33
|
-
* List of
|
|
33
|
+
* List of agents
|
|
34
34
|
*/
|
|
35
35
|
agentList?: Array<number> | Array<string> | null | undefined;
|
|
36
36
|
/**
|
|
37
|
-
* List of prompts
|
|
37
|
+
* List of prompts
|
|
38
38
|
*/
|
|
39
39
|
promptList?: Array<string> | null | undefined;
|
|
40
40
|
/**
|
|
@@ -64,7 +64,7 @@ export const Permissions = {
|
|
|
64
64
|
SaIncidentsWrite: "sa_incidents_write",
|
|
65
65
|
SaIncidentsDelete: "sa_incidents_delete",
|
|
66
66
|
SaPermissionsRead: "sa_permissions_read",
|
|
67
|
-
|
|
67
|
+
SyllableAdminGlobal: "syllable_admin_global",
|
|
68
68
|
} as const;
|
|
69
69
|
export type Permissions = ClosedEnum<typeof Permissions>;
|
|
70
70
|
|