syllable-sdk 1.0.7-rc.5 → 1.0.7-rc.7
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/bin/mcp-server.js +11 -9
- package/bin/mcp-server.js.map +7 -7
- package/docs/sdks/batches/README.md +4 -4
- package/docs/sdks/workflows/README.md +8 -8
- package/examples/package-lock.json +1 -1
- package/jsr.json +1 -1
- package/lib/config.d.ts +3 -3
- package/lib/config.js +3 -3
- package/mcp-server/mcp-server.js +1 -1
- package/mcp-server/server.js +1 -1
- package/models/components/directorymember.d.ts +2 -2
- package/models/components/directorymember.d.ts.map +1 -1
- package/models/components/directorymember.js +2 -2
- package/models/components/directorymember.js.map +1 -1
- package/models/components/toolhttpmethod.d.ts +6 -0
- package/models/components/toolhttpmethod.d.ts.map +1 -1
- package/models/components/toolhttpmethod.js +2 -0
- package/models/components/toolhttpmethod.js.map +1 -1
- package/openapi.json +46 -38
- package/package.json +1 -1
- package/src/lib/config.ts +3 -3
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -1
- package/src/models/components/directorymember.ts +6 -4
- package/src/models/components/toolhttpmethod.ts +2 -0
|
@@ -123,9 +123,9 @@ const syllableSDK = new SyllableSDK({
|
|
|
123
123
|
|
|
124
124
|
async function run() {
|
|
125
125
|
const result = await syllableSDK.outbound.batches.create({
|
|
126
|
-
batchId: "
|
|
126
|
+
batchId: "20251029.9",
|
|
127
127
|
campaignId: 1,
|
|
128
|
-
expiresOn: new Date("2025-10-
|
|
128
|
+
expiresOn: new Date("2025-10-30T00:00:00Z"),
|
|
129
129
|
paused: true,
|
|
130
130
|
});
|
|
131
131
|
|
|
@@ -151,9 +151,9 @@ const syllableSDK = new SyllableSDKCore({
|
|
|
151
151
|
|
|
152
152
|
async function run() {
|
|
153
153
|
const res = await outboundBatchesCreate(syllableSDK, {
|
|
154
|
-
batchId: "
|
|
154
|
+
batchId: "20251029.9",
|
|
155
155
|
campaignId: 1,
|
|
156
|
-
expiresOn: new Date("2025-10-
|
|
156
|
+
expiresOn: new Date("2025-10-30T00:00:00Z"),
|
|
157
157
|
paused: true,
|
|
158
158
|
});
|
|
159
159
|
if (res.ok) {
|
|
@@ -148,8 +148,8 @@ async function run() {
|
|
|
148
148
|
"sheet_name": "Q1 Sales Data",
|
|
149
149
|
},
|
|
150
150
|
},
|
|
151
|
-
startDatetime: new Date("2025-10-
|
|
152
|
-
endDatetime: new Date("2025-10-
|
|
151
|
+
startDatetime: new Date("2025-10-28T00:00:00Z"),
|
|
152
|
+
endDatetime: new Date("2025-10-29T00:00:00Z"),
|
|
153
153
|
});
|
|
154
154
|
|
|
155
155
|
console.log(result);
|
|
@@ -200,8 +200,8 @@ async function run() {
|
|
|
200
200
|
"sheet_name": "Q1 Sales Data",
|
|
201
201
|
},
|
|
202
202
|
},
|
|
203
|
-
startDatetime: new Date("2025-10-
|
|
204
|
-
endDatetime: new Date("2025-10-
|
|
203
|
+
startDatetime: new Date("2025-10-28T00:00:00Z"),
|
|
204
|
+
endDatetime: new Date("2025-10-29T00:00:00Z"),
|
|
205
205
|
});
|
|
206
206
|
if (res.ok) {
|
|
207
207
|
const { value: result } = res;
|
|
@@ -352,8 +352,8 @@ async function run() {
|
|
|
352
352
|
"sheet_name": "Q1 Sales Data",
|
|
353
353
|
},
|
|
354
354
|
},
|
|
355
|
-
startDatetime: new Date("2025-10-
|
|
356
|
-
endDatetime: new Date("2025-10-
|
|
355
|
+
startDatetime: new Date("2025-10-28T00:00:00Z"),
|
|
356
|
+
endDatetime: new Date("2025-10-29T00:00:00Z"),
|
|
357
357
|
},
|
|
358
358
|
});
|
|
359
359
|
|
|
@@ -407,8 +407,8 @@ async function run() {
|
|
|
407
407
|
"sheet_name": "Q1 Sales Data",
|
|
408
408
|
},
|
|
409
409
|
},
|
|
410
|
-
startDatetime: new Date("2025-10-
|
|
411
|
-
endDatetime: new Date("2025-10-
|
|
410
|
+
startDatetime: new Date("2025-10-28T00:00:00Z"),
|
|
411
|
+
endDatetime: new Date("2025-10-29T00:00:00Z"),
|
|
412
412
|
},
|
|
413
413
|
});
|
|
414
414
|
if (res.ok) {
|
package/jsr.json
CHANGED
package/lib/config.d.ts
CHANGED
|
@@ -31,8 +31,8 @@ export declare function serverURLFromOptions(options: SDKOptions): URL | null;
|
|
|
31
31
|
export declare const SDK_METADATA: {
|
|
32
32
|
readonly language: "typescript";
|
|
33
33
|
readonly openapiDocVersion: "0.0.2";
|
|
34
|
-
readonly sdkVersion: "1.0.7-rc.
|
|
35
|
-
readonly genVersion: "2.731.
|
|
36
|
-
readonly userAgent: "speakeasy-sdk/typescript 1.0.7-rc.
|
|
34
|
+
readonly sdkVersion: "1.0.7-rc.7";
|
|
35
|
+
readonly genVersion: "2.731.6";
|
|
36
|
+
readonly userAgent: "speakeasy-sdk/typescript 1.0.7-rc.7 2.731.6 0.0.2 syllable-sdk";
|
|
37
37
|
};
|
|
38
38
|
//# 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: "1.0.7-rc.
|
|
35
|
-
genVersion: "2.731.
|
|
36
|
-
userAgent: "speakeasy-sdk/typescript 1.0.7-rc.
|
|
34
|
+
sdkVersion: "1.0.7-rc.7",
|
|
35
|
+
genVersion: "2.731.6",
|
|
36
|
+
userAgent: "speakeasy-sdk/typescript 1.0.7-rc.7 2.731.6 0.0.2 syllable-sdk",
|
|
37
37
|
};
|
|
38
38
|
//# sourceMappingURL=config.js.map
|
package/mcp-server/mcp-server.js
CHANGED
|
@@ -22,7 +22,7 @@ const routes = (0, core_1.buildRouteMap)({
|
|
|
22
22
|
exports.app = (0, core_1.buildApplication)(routes, {
|
|
23
23
|
name: "mcp",
|
|
24
24
|
versionInfo: {
|
|
25
|
-
currentVersion: "1.0.7-rc.
|
|
25
|
+
currentVersion: "1.0.7-rc.7",
|
|
26
26
|
},
|
|
27
27
|
});
|
|
28
28
|
(0, core_1.run)(exports.app, node_process_1.default.argv.slice(2), (0, cli_js_1.buildContext)(node_process_1.default));
|
package/mcp-server/server.js
CHANGED
|
@@ -171,7 +171,7 @@ const voiceGroupsVoiceGroupsCreateVoiceSample_js_1 = require("./tools/voiceGroup
|
|
|
171
171
|
function createMCPServer(deps) {
|
|
172
172
|
const server = new mcp_js_1.McpServer({
|
|
173
173
|
name: "SyllableSDK",
|
|
174
|
-
version: "1.0.7-rc.
|
|
174
|
+
version: "1.0.7-rc.7",
|
|
175
175
|
});
|
|
176
176
|
const client = new core_js_1.SyllableSDKCore({
|
|
177
177
|
apiKeyHeader: deps.apiKeyHeader,
|
|
@@ -30,7 +30,7 @@ export type DirectoryMember = {
|
|
|
30
30
|
/**
|
|
31
31
|
* Timestamp of most recent update
|
|
32
32
|
*/
|
|
33
|
-
updatedAt
|
|
33
|
+
updatedAt?: Date | null | undefined;
|
|
34
34
|
/**
|
|
35
35
|
* Email of the user who last updated the directory member
|
|
36
36
|
*/
|
|
@@ -65,7 +65,7 @@ export type DirectoryMember$Outbound = {
|
|
|
65
65
|
extensions?: Array<DirectoryExtension$Outbound> | null | undefined;
|
|
66
66
|
contact_tags?: ContactTags$Outbound | null | undefined;
|
|
67
67
|
id?: number | null | undefined;
|
|
68
|
-
updated_at
|
|
68
|
+
updated_at?: string | null | undefined;
|
|
69
69
|
last_updated_by?: string | null | undefined;
|
|
70
70
|
};
|
|
71
71
|
/** @internal */
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"directorymember.d.ts","sourceRoot":"","sources":["../../src/models/components/directorymember.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,QAAQ,CAAC;AAG5B,OAAO,EAAE,MAAM,IAAI,eAAe,EAAE,MAAM,mBAAmB,CAAC;AAC9D,OAAO,EAAE,kBAAkB,EAAE,MAAM,iCAAiC,CAAC;AACrE,OAAO,EACL,kBAAkB,EAElB,2BAA2B,EAE5B,MAAM,yBAAyB,CAAC;AAEjC,MAAM,MAAM,WAAW,GAAG,EAAE,CAAC;AAE7B;;GAEG;AACH,MAAM,MAAM,eAAe,GAAG;IAC5B;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;IACb;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;IACb;;OAEG;IACH,UAAU,CAAC,EAAE,KAAK,CAAC,kBAAkB,CAAC,GAAG,IAAI,GAAG,SAAS,CAAC;IAC1D;;OAEG;IACH,WAAW,CAAC,EAAE,WAAW,GAAG,IAAI,GAAG,SAAS,CAAC;IAC7C;;OAEG;IACH,EAAE,CAAC,EAAE,MAAM,GAAG,IAAI,GAAG,SAAS,CAAC;IAC/B;;OAEG;IACH,SAAS,EAAE,IAAI,CAAC;
|
|
1
|
+
{"version":3,"file":"directorymember.d.ts","sourceRoot":"","sources":["../../src/models/components/directorymember.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,QAAQ,CAAC;AAG5B,OAAO,EAAE,MAAM,IAAI,eAAe,EAAE,MAAM,mBAAmB,CAAC;AAC9D,OAAO,EAAE,kBAAkB,EAAE,MAAM,iCAAiC,CAAC;AACrE,OAAO,EACL,kBAAkB,EAElB,2BAA2B,EAE5B,MAAM,yBAAyB,CAAC;AAEjC,MAAM,MAAM,WAAW,GAAG,EAAE,CAAC;AAE7B;;GAEG;AACH,MAAM,MAAM,eAAe,GAAG;IAC5B;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;IACb;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;IACb;;OAEG;IACH,UAAU,CAAC,EAAE,KAAK,CAAC,kBAAkB,CAAC,GAAG,IAAI,GAAG,SAAS,CAAC;IAC1D;;OAEG;IACH,WAAW,CAAC,EAAE,WAAW,GAAG,IAAI,GAAG,SAAS,CAAC;IAC7C;;OAEG;IACH,EAAE,CAAC,EAAE,MAAM,GAAG,IAAI,GAAG,SAAS,CAAC;IAC/B;;OAEG;IACH,SAAS,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,SAAS,CAAC;IACpC;;OAEG;IACH,aAAa,CAAC,EAAE,MAAM,GAAG,IAAI,GAAG,SAAS,CAAC;CAC3C,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,yBAAyB,EAAE,CAAC,CAAC,OAAO,CAC/C,WAAW,EACX,CAAC,CAAC,UAAU,EACZ,OAAO,CACO,CAAC;AAEjB,gBAAgB;AAChB,MAAM,MAAM,oBAAoB,GAAG,EAAE,CAAC;AAEtC,gBAAgB;AAChB,eAAO,MAAM,0BAA0B,EAAE,CAAC,CAAC,OAAO,CAChD,oBAAoB,EACpB,CAAC,CAAC,UAAU,EACZ,WAAW,CACG,CAAC;AAEjB;;;GAGG;AACH,yBAAiB,YAAY,CAAC;IAC5B,2DAA2D;IACpD,MAAM,aAAa,+CAA4B,CAAC;IACvD,4DAA4D;IACrD,MAAM,cAAc,4DAA6B,CAAC;IACzD,sDAAsD;IACtD,KAAY,QAAQ,GAAG,oBAAoB,CAAC;CAC7C;AAED,wBAAgB,iBAAiB,CAAC,WAAW,EAAE,WAAW,GAAG,MAAM,CAElE;AAED,wBAAgB,mBAAmB,CACjC,UAAU,EAAE,MAAM,GACjB,eAAe,CAAC,WAAW,EAAE,kBAAkB,CAAC,CAMlD;AAED,gBAAgB;AAChB,eAAO,MAAM,6BAA6B,EAAE,CAAC,CAAC,OAAO,CACnD,eAAe,EACf,CAAC,CAAC,UAAU,EACZ,OAAO,CAiBP,CAAC;AAEH,gBAAgB;AAChB,MAAM,MAAM,wBAAwB,GAAG;IACrC,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,CAAC;IACb,UAAU,CAAC,EAAE,KAAK,CAAC,2BAA2B,CAAC,GAAG,IAAI,GAAG,SAAS,CAAC;IACnE,YAAY,CAAC,EAAE,oBAAoB,GAAG,IAAI,GAAG,SAAS,CAAC;IACvD,EAAE,CAAC,EAAE,MAAM,GAAG,IAAI,GAAG,SAAS,CAAC;IAC/B,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,GAAG,SAAS,CAAC;IACvC,eAAe,CAAC,EAAE,MAAM,GAAG,IAAI,GAAG,SAAS,CAAC;CAC7C,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,8BAA8B,EAAE,CAAC,CAAC,OAAO,CACpD,wBAAwB,EACxB,CAAC,CAAC,UAAU,EACZ,eAAe,CAef,CAAC;AAEH;;;GAGG;AACH,yBAAiB,gBAAgB,CAAC;IAChC,+DAA+D;IACxD,MAAM,aAAa,mDAAgC,CAAC;IAC3D,gEAAgE;IACzD,MAAM,cAAc,oEAAiC,CAAC;IAC7D,0DAA0D;IAC1D,KAAY,QAAQ,GAAG,wBAAwB,CAAC;CACjD;AAED,wBAAgB,qBAAqB,CACnC,eAAe,EAAE,eAAe,GAC/B,MAAM,CAER;AAED,wBAAgB,uBAAuB,CACrC,UAAU,EAAE,MAAM,GACjB,eAAe,CAAC,eAAe,EAAE,kBAAkB,CAAC,CAMtD"}
|
|
@@ -73,7 +73,7 @@ exports.DirectoryMember$inboundSchema = z.object({
|
|
|
73
73
|
extensions: z.nullable(z.array(directoryextension_js_1.DirectoryExtension$inboundSchema)).optional(),
|
|
74
74
|
contact_tags: z.nullable(z.lazy(() => exports.ContactTags$inboundSchema)).optional(),
|
|
75
75
|
id: z.nullable(z.number().int()).optional(),
|
|
76
|
-
updated_at: z.string().datetime({ offset: true }).transform(v => new Date(v)),
|
|
76
|
+
updated_at: z.nullable(z.string().datetime({ offset: true }).transform(v => new Date(v))).optional(),
|
|
77
77
|
last_updated_by: z.nullable(z.string()).optional(),
|
|
78
78
|
}).transform((v) => {
|
|
79
79
|
return (0, primitives_js_1.remap)(v, {
|
|
@@ -89,7 +89,7 @@ exports.DirectoryMember$outboundSchema = z.object({
|
|
|
89
89
|
extensions: z.nullable(z.array(directoryextension_js_1.DirectoryExtension$outboundSchema)).optional(),
|
|
90
90
|
contactTags: z.nullable(z.lazy(() => exports.ContactTags$outboundSchema)).optional(),
|
|
91
91
|
id: z.nullable(z.number().int()).optional(),
|
|
92
|
-
updatedAt: z.date().transform(v => v.toISOString()),
|
|
92
|
+
updatedAt: z.nullable(z.date().transform(v => v.toISOString())).optional(),
|
|
93
93
|
lastUpdatedBy: z.nullable(z.string()).optional(),
|
|
94
94
|
}).transform((v) => {
|
|
95
95
|
return (0, primitives_js_1.remap)(v, {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"directorymember.js","sourceRoot":"","sources":["../../src/models/components/directorymember.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAgFH,8CAEC;AAED,kDAQC;
|
|
1
|
+
{"version":3,"file":"directorymember.js","sourceRoot":"","sources":["../../src/models/components/directorymember.ts"],"names":[],"mappings":"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"}
|
|
@@ -6,6 +6,8 @@ import { ClosedEnum } from "../../types/enums.js";
|
|
|
6
6
|
export declare const ToolHttpMethod: {
|
|
7
7
|
readonly Get: "get";
|
|
8
8
|
readonly Post: "post";
|
|
9
|
+
readonly Put: "put";
|
|
10
|
+
readonly Delete: "delete";
|
|
9
11
|
};
|
|
10
12
|
/**
|
|
11
13
|
* The HTTP method to use for a tool HTTP request.
|
|
@@ -24,11 +26,15 @@ export declare namespace ToolHttpMethod$ {
|
|
|
24
26
|
const inboundSchema: z.ZodNativeEnum<{
|
|
25
27
|
readonly Get: "get";
|
|
26
28
|
readonly Post: "post";
|
|
29
|
+
readonly Put: "put";
|
|
30
|
+
readonly Delete: "delete";
|
|
27
31
|
}>;
|
|
28
32
|
/** @deprecated use `ToolHttpMethod$outboundSchema` instead. */
|
|
29
33
|
const outboundSchema: z.ZodNativeEnum<{
|
|
30
34
|
readonly Get: "get";
|
|
31
35
|
readonly Post: "post";
|
|
36
|
+
readonly Put: "put";
|
|
37
|
+
readonly Delete: "delete";
|
|
32
38
|
}>;
|
|
33
39
|
}
|
|
34
40
|
//# sourceMappingURL=toolhttpmethod.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"toolhttpmethod.d.ts","sourceRoot":"","sources":["../../src/models/components/toolhttpmethod.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,QAAQ,CAAC;AAC5B,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAC;AAElD;;GAEG;AACH,eAAO,MAAM,cAAc
|
|
1
|
+
{"version":3,"file":"toolhttpmethod.d.ts","sourceRoot":"","sources":["../../src/models/components/toolhttpmethod.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,QAAQ,CAAC;AAC5B,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAC;AAElD;;GAEG;AACH,eAAO,MAAM,cAAc;;;;;CAKjB,CAAC;AACX;;GAEG;AACH,MAAM,MAAM,cAAc,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAE/D,gBAAgB;AAChB,eAAO,MAAM,4BAA4B,EAAE,CAAC,CAAC,aAAa,CACxD,OAAO,cAAc,CACS,CAAC;AAEjC,gBAAgB;AAChB,eAAO,MAAM,6BAA6B,EAAE,CAAC,CAAC,aAAa,CACzD,OAAO,cAAc,CACS,CAAC;AAEjC;;;GAGG;AACH,yBAAiB,eAAe,CAAC;IAC/B,8DAA8D;IACvD,MAAM,aAAa;;;;;MAA+B,CAAC;IAC1D,+DAA+D;IACxD,MAAM,cAAc;;;;;MAAgC,CAAC;CAC7D"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"toolhttpmethod.js","sourceRoot":"","sources":["../../src/models/components/toolhttpmethod.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEH,0CAA4B;AAG5B;;GAEG;AACU,QAAA,cAAc,GAAG;IAC5B,GAAG,EAAE,KAAK;IACV,IAAI,EAAE,MAAM;
|
|
1
|
+
{"version":3,"file":"toolhttpmethod.js","sourceRoot":"","sources":["../../src/models/components/toolhttpmethod.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEH,0CAA4B;AAG5B;;GAEG;AACU,QAAA,cAAc,GAAG;IAC5B,GAAG,EAAE,KAAK;IACV,IAAI,EAAE,MAAM;IACZ,GAAG,EAAE,KAAK;IACV,MAAM,EAAE,QAAQ;CACR,CAAC;AAMX,gBAAgB;AACH,QAAA,4BAA4B,GAErC,CAAC,CAAC,UAAU,CAAC,sBAAc,CAAC,CAAC;AAEjC,gBAAgB;AACH,QAAA,6BAA6B,GAEtC,oCAA4B,CAAC;AAEjC;;;GAGG;AACH,IAAiB,eAAe,CAK/B;AALD,WAAiB,eAAe;IAC9B,8DAA8D;IACjD,6BAAa,GAAG,oCAA4B,CAAC;IAC1D,+DAA+D;IAClD,8BAAc,GAAG,qCAA6B,CAAC;AAC9D,CAAC,EALgB,eAAe,+BAAf,eAAe,QAK/B"}
|
package/openapi.json
CHANGED
|
@@ -13785,7 +13785,7 @@
|
|
|
13785
13785
|
"title": "Batch Id",
|
|
13786
13786
|
"description": "Unique ID for conversation batch",
|
|
13787
13787
|
"examples": [
|
|
13788
|
-
"
|
|
13788
|
+
"20251029.9"
|
|
13789
13789
|
]
|
|
13790
13790
|
},
|
|
13791
13791
|
"campaign_id": {
|
|
@@ -13809,7 +13809,7 @@
|
|
|
13809
13809
|
"title": "Expires On",
|
|
13810
13810
|
"description": "Timestamp of batch expiration",
|
|
13811
13811
|
"examples": [
|
|
13812
|
-
"2025-10-
|
|
13812
|
+
"2025-10-30T00:00:00Z"
|
|
13813
13813
|
]
|
|
13814
13814
|
},
|
|
13815
13815
|
"paused": {
|
|
@@ -13862,7 +13862,7 @@
|
|
|
13862
13862
|
"title": "Created At",
|
|
13863
13863
|
"description": "Timestamp of batch creation",
|
|
13864
13864
|
"examples": [
|
|
13865
|
-
"2025-10-
|
|
13865
|
+
"2025-10-29T00:00:00Z"
|
|
13866
13866
|
]
|
|
13867
13867
|
},
|
|
13868
13868
|
"deleted_at": {
|
|
@@ -13878,7 +13878,7 @@
|
|
|
13878
13878
|
"title": "Deleted At",
|
|
13879
13879
|
"description": "Timestamp of batch deletion",
|
|
13880
13880
|
"examples": [
|
|
13881
|
-
"2025-10-
|
|
13881
|
+
"2025-10-29T00:00:00Z"
|
|
13882
13882
|
]
|
|
13883
13883
|
},
|
|
13884
13884
|
"deleted_reason": {
|
|
@@ -13909,7 +13909,7 @@
|
|
|
13909
13909
|
"title": "Last Updated At",
|
|
13910
13910
|
"description": "Timestamp of last change to batch",
|
|
13911
13911
|
"examples": [
|
|
13912
|
-
"2025-10-
|
|
13912
|
+
"2025-10-29T00:00:00Z"
|
|
13913
13913
|
]
|
|
13914
13914
|
},
|
|
13915
13915
|
"last_updated_by": {
|
|
@@ -14665,7 +14665,7 @@
|
|
|
14665
14665
|
"title": "Batch Id",
|
|
14666
14666
|
"description": "Unique ID for conversation batch",
|
|
14667
14667
|
"examples": [
|
|
14668
|
-
"
|
|
14668
|
+
"20251029.9"
|
|
14669
14669
|
]
|
|
14670
14670
|
},
|
|
14671
14671
|
"campaign_id": {
|
|
@@ -14689,7 +14689,7 @@
|
|
|
14689
14689
|
"title": "Expires On",
|
|
14690
14690
|
"description": "Timestamp of batch expiration",
|
|
14691
14691
|
"examples": [
|
|
14692
|
-
"2025-10-
|
|
14692
|
+
"2025-10-30T00:00:00Z"
|
|
14693
14693
|
]
|
|
14694
14694
|
},
|
|
14695
14695
|
"paused": {
|
|
@@ -14742,7 +14742,7 @@
|
|
|
14742
14742
|
"title": "Created At",
|
|
14743
14743
|
"description": "Timestamp of batch creation",
|
|
14744
14744
|
"examples": [
|
|
14745
|
-
"2025-10-
|
|
14745
|
+
"2025-10-29T00:00:00Z"
|
|
14746
14746
|
]
|
|
14747
14747
|
},
|
|
14748
14748
|
"deleted_at": {
|
|
@@ -14758,7 +14758,7 @@
|
|
|
14758
14758
|
"title": "Deleted At",
|
|
14759
14759
|
"description": "Timestamp of batch deletion",
|
|
14760
14760
|
"examples": [
|
|
14761
|
-
"2025-10-
|
|
14761
|
+
"2025-10-29T00:00:00Z"
|
|
14762
14762
|
]
|
|
14763
14763
|
},
|
|
14764
14764
|
"deleted_reason": {
|
|
@@ -14789,7 +14789,7 @@
|
|
|
14789
14789
|
"title": "Last Updated At",
|
|
14790
14790
|
"description": "Timestamp of last change to batch",
|
|
14791
14791
|
"examples": [
|
|
14792
|
-
"2025-10-
|
|
14792
|
+
"2025-10-29T00:00:00Z"
|
|
14793
14793
|
]
|
|
14794
14794
|
},
|
|
14795
14795
|
"last_updated_by": {
|
|
@@ -14832,7 +14832,7 @@
|
|
|
14832
14832
|
"title": "Batch Id",
|
|
14833
14833
|
"description": "Unique ID for conversation batch",
|
|
14834
14834
|
"examples": [
|
|
14835
|
-
"
|
|
14835
|
+
"20251029.9"
|
|
14836
14836
|
]
|
|
14837
14837
|
},
|
|
14838
14838
|
"campaign_id": {
|
|
@@ -14856,7 +14856,7 @@
|
|
|
14856
14856
|
"title": "Expires On",
|
|
14857
14857
|
"description": "Timestamp of batch expiration",
|
|
14858
14858
|
"examples": [
|
|
14859
|
-
"2025-10-
|
|
14859
|
+
"2025-10-30T00:00:00Z"
|
|
14860
14860
|
]
|
|
14861
14861
|
},
|
|
14862
14862
|
"paused": {
|
|
@@ -15005,7 +15005,7 @@
|
|
|
15005
15005
|
"title": "Created At",
|
|
15006
15006
|
"description": "Timestamp of request creation",
|
|
15007
15007
|
"examples": [
|
|
15008
|
-
"2025-10-
|
|
15008
|
+
"2025-10-28T00:00:00Z"
|
|
15009
15009
|
]
|
|
15010
15010
|
},
|
|
15011
15011
|
"sent_at": {
|
|
@@ -15021,7 +15021,7 @@
|
|
|
15021
15021
|
"title": "Sent At",
|
|
15022
15022
|
"description": "Timestamp at which request was sent",
|
|
15023
15023
|
"examples": [
|
|
15024
|
-
"2025-10-
|
|
15024
|
+
"2025-10-29T00:00:00Z"
|
|
15025
15025
|
]
|
|
15026
15026
|
},
|
|
15027
15027
|
"attempt_count": {
|
|
@@ -16618,8 +16618,15 @@
|
|
|
16618
16618
|
]
|
|
16619
16619
|
},
|
|
16620
16620
|
"updated_at": {
|
|
16621
|
-
"
|
|
16622
|
-
|
|
16621
|
+
"anyOf": [
|
|
16622
|
+
{
|
|
16623
|
+
"type": "string",
|
|
16624
|
+
"format": "date-time"
|
|
16625
|
+
},
|
|
16626
|
+
{
|
|
16627
|
+
"type": "null"
|
|
16628
|
+
}
|
|
16629
|
+
],
|
|
16623
16630
|
"title": "Updated At",
|
|
16624
16631
|
"description": "Timestamp of most recent update",
|
|
16625
16632
|
"examples": [
|
|
@@ -16645,8 +16652,7 @@
|
|
|
16645
16652
|
"type": "object",
|
|
16646
16653
|
"required": [
|
|
16647
16654
|
"name",
|
|
16648
|
-
"type"
|
|
16649
|
-
"updated_at"
|
|
16655
|
+
"type"
|
|
16650
16656
|
],
|
|
16651
16657
|
"title": "DirectoryMember",
|
|
16652
16658
|
"description": "Model for a directory member (i.e. a contact)."
|
|
@@ -16968,7 +16974,7 @@
|
|
|
16968
16974
|
"title": "Created At",
|
|
16969
16975
|
"description": "Timestamp at which insight upload folder was created",
|
|
16970
16976
|
"examples": [
|
|
16971
|
-
"2025-10-
|
|
16977
|
+
"2025-10-28T00:00:00Z"
|
|
16972
16978
|
]
|
|
16973
16979
|
},
|
|
16974
16980
|
"updated_at": {
|
|
@@ -16977,7 +16983,7 @@
|
|
|
16977
16983
|
"title": "Updated At",
|
|
16978
16984
|
"description": "Timestamp at which insight upload folder was last updated",
|
|
16979
16985
|
"examples": [
|
|
16980
|
-
"2025-10-
|
|
16986
|
+
"2025-10-29T00:00:00Z"
|
|
16981
16987
|
]
|
|
16982
16988
|
},
|
|
16983
16989
|
"last_updated_by": {
|
|
@@ -17663,7 +17669,7 @@
|
|
|
17663
17669
|
"title": "Created At",
|
|
17664
17670
|
"description": "Timestamp of at which insight tool configuration was created",
|
|
17665
17671
|
"examples": [
|
|
17666
|
-
"2025-10-
|
|
17672
|
+
"2025-10-28T00:00:00Z"
|
|
17667
17673
|
]
|
|
17668
17674
|
},
|
|
17669
17675
|
"updated_at": {
|
|
@@ -17672,7 +17678,7 @@
|
|
|
17672
17678
|
"title": "Updated At",
|
|
17673
17679
|
"description": "Timestamp at which insight tool configuration was last updated",
|
|
17674
17680
|
"examples": [
|
|
17675
|
-
"2025-10-
|
|
17681
|
+
"2025-10-29T00:00:00Z"
|
|
17676
17682
|
]
|
|
17677
17683
|
},
|
|
17678
17684
|
"last_updated_by": {
|
|
@@ -18053,7 +18059,7 @@
|
|
|
18053
18059
|
"title": "Start Datetime",
|
|
18054
18060
|
"description": "Target session timestamp the workflow (backfill) should start. An empty value indicates start on activation - live sessions only",
|
|
18055
18061
|
"examples": [
|
|
18056
|
-
"2025-10-
|
|
18062
|
+
"2025-10-28T00:00:00Z"
|
|
18057
18063
|
]
|
|
18058
18064
|
},
|
|
18059
18065
|
"end_datetime": {
|
|
@@ -18069,7 +18075,7 @@
|
|
|
18069
18075
|
"title": "End Datetime",
|
|
18070
18076
|
"description": "Target session timestamp the workflow (backfill) should end. An empty value indicates no end, i.e., include live sessions until deactivation",
|
|
18071
18077
|
"examples": [
|
|
18072
|
-
"2025-10-
|
|
18078
|
+
"2025-10-29T00:00:00Z"
|
|
18073
18079
|
]
|
|
18074
18080
|
}
|
|
18075
18081
|
},
|
|
@@ -18144,7 +18150,7 @@
|
|
|
18144
18150
|
"title": "Start Datetime",
|
|
18145
18151
|
"description": "Target session timestamp the workflow (backfill) should start. An empty value indicates start on activation - live sessions only",
|
|
18146
18152
|
"examples": [
|
|
18147
|
-
"2025-10-
|
|
18153
|
+
"2025-10-28T00:00:00Z"
|
|
18148
18154
|
]
|
|
18149
18155
|
},
|
|
18150
18156
|
"end_datetime": {
|
|
@@ -18160,7 +18166,7 @@
|
|
|
18160
18166
|
"title": "End Datetime",
|
|
18161
18167
|
"description": "Target session timestamp the workflow (backfill) should end. An empty value indicates no end, i.e., include live sessions until deactivation",
|
|
18162
18168
|
"examples": [
|
|
18163
|
-
"2025-10-
|
|
18169
|
+
"2025-10-29T00:00:00Z"
|
|
18164
18170
|
]
|
|
18165
18171
|
},
|
|
18166
18172
|
"id": {
|
|
@@ -18213,7 +18219,7 @@
|
|
|
18213
18219
|
"title": "Created At",
|
|
18214
18220
|
"description": "Timestamp at which the insight workflow was created",
|
|
18215
18221
|
"examples": [
|
|
18216
|
-
"2025-10-
|
|
18222
|
+
"2025-10-28T00:00:00Z"
|
|
18217
18223
|
]
|
|
18218
18224
|
},
|
|
18219
18225
|
"updated_at": {
|
|
@@ -18222,7 +18228,7 @@
|
|
|
18222
18228
|
"title": "Updated At",
|
|
18223
18229
|
"description": "Timestamp of most recent update to the insight workflow",
|
|
18224
18230
|
"examples": [
|
|
18225
|
-
"2025-10-
|
|
18231
|
+
"2025-10-29T00:00:00Z"
|
|
18226
18232
|
]
|
|
18227
18233
|
},
|
|
18228
18234
|
"last_updated_by": {
|
|
@@ -18318,7 +18324,7 @@
|
|
|
18318
18324
|
"title": "Created At",
|
|
18319
18325
|
"description": "Timestamp at which insight upload folder was created",
|
|
18320
18326
|
"examples": [
|
|
18321
|
-
"2025-10-
|
|
18327
|
+
"2025-10-28T00:00:00Z"
|
|
18322
18328
|
]
|
|
18323
18329
|
},
|
|
18324
18330
|
"updated_at": {
|
|
@@ -18327,7 +18333,7 @@
|
|
|
18327
18333
|
"title": "Updated At",
|
|
18328
18334
|
"description": "Timestamp at which insight upload folder was last updated",
|
|
18329
18335
|
"examples": [
|
|
18330
|
-
"2025-10-
|
|
18336
|
+
"2025-10-29T00:00:00Z"
|
|
18331
18337
|
]
|
|
18332
18338
|
},
|
|
18333
18339
|
"last_updated_by": {
|
|
@@ -18562,7 +18568,7 @@
|
|
|
18562
18568
|
"title": "Created At",
|
|
18563
18569
|
"description": "Timestamp at which insight tool result was created",
|
|
18564
18570
|
"examples": [
|
|
18565
|
-
"2025-10-
|
|
18571
|
+
"2025-10-28T00:00:00Z"
|
|
18566
18572
|
]
|
|
18567
18573
|
},
|
|
18568
18574
|
"updated_at": {
|
|
@@ -18571,7 +18577,7 @@
|
|
|
18571
18577
|
"title": "Updated At",
|
|
18572
18578
|
"description": "Timestamp at which insight tool result was last updated",
|
|
18573
18579
|
"examples": [
|
|
18574
|
-
"2025-10-
|
|
18580
|
+
"2025-10-29T00:00:00Z"
|
|
18575
18581
|
]
|
|
18576
18582
|
},
|
|
18577
18583
|
"upload_file_metadata": {
|
|
@@ -18716,7 +18722,7 @@
|
|
|
18716
18722
|
"title": "Start Time",
|
|
18717
18723
|
"description": "Start time of the uploaded file",
|
|
18718
18724
|
"examples": [
|
|
18719
|
-
"2025-10-
|
|
18725
|
+
"2025-10-28T00:00:00Z"
|
|
18720
18726
|
]
|
|
18721
18727
|
},
|
|
18722
18728
|
"end_time": {
|
|
@@ -18732,7 +18738,7 @@
|
|
|
18732
18738
|
"title": "End Time",
|
|
18733
18739
|
"description": "End time of the uploaded file",
|
|
18734
18740
|
"examples": [
|
|
18735
|
-
"2025-10-
|
|
18741
|
+
"2025-10-29T00:00:00Z"
|
|
18736
18742
|
]
|
|
18737
18743
|
},
|
|
18738
18744
|
"error_message": {
|
|
@@ -18787,7 +18793,7 @@
|
|
|
18787
18793
|
"title": "Created At",
|
|
18788
18794
|
"description": "Timestamp at which insight upload file was created",
|
|
18789
18795
|
"examples": [
|
|
18790
|
-
"2025-10-
|
|
18796
|
+
"2025-10-28T00:00:00Z"
|
|
18791
18797
|
]
|
|
18792
18798
|
}
|
|
18793
18799
|
},
|
|
@@ -21960,7 +21966,7 @@
|
|
|
21960
21966
|
"title": "Created At",
|
|
21961
21967
|
"description": "Timestamp of campaign creation",
|
|
21962
21968
|
"examples": [
|
|
21963
|
-
"2025-10-
|
|
21969
|
+
"2025-10-29T00:00:00Z"
|
|
21964
21970
|
]
|
|
21965
21971
|
},
|
|
21966
21972
|
"updated_at": {
|
|
@@ -21969,7 +21975,7 @@
|
|
|
21969
21975
|
"title": "Updated At",
|
|
21970
21976
|
"description": "Timestamp of campaign update",
|
|
21971
21977
|
"examples": [
|
|
21972
|
-
"2025-10-
|
|
21978
|
+
"2025-10-29T00:00:00Z"
|
|
21973
21979
|
]
|
|
21974
21980
|
},
|
|
21975
21981
|
"last_updated_by": {
|
|
@@ -25456,7 +25462,9 @@
|
|
|
25456
25462
|
"type": "string",
|
|
25457
25463
|
"enum": [
|
|
25458
25464
|
"get",
|
|
25459
|
-
"post"
|
|
25465
|
+
"post",
|
|
25466
|
+
"put",
|
|
25467
|
+
"delete"
|
|
25460
25468
|
],
|
|
25461
25469
|
"title": "ToolHttpMethod",
|
|
25462
25470
|
"description": "The HTTP method to use for a tool HTTP request."
|
package/package.json
CHANGED
package/src/lib/config.ts
CHANGED
|
@@ -61,7 +61,7 @@ export function serverURLFromOptions(options: SDKOptions): URL | null {
|
|
|
61
61
|
export const SDK_METADATA = {
|
|
62
62
|
language: "typescript",
|
|
63
63
|
openapiDocVersion: "0.0.2",
|
|
64
|
-
sdkVersion: "1.0.7-rc.
|
|
65
|
-
genVersion: "2.731.
|
|
66
|
-
userAgent: "speakeasy-sdk/typescript 1.0.7-rc.
|
|
64
|
+
sdkVersion: "1.0.7-rc.7",
|
|
65
|
+
genVersion: "2.731.6",
|
|
66
|
+
userAgent: "speakeasy-sdk/typescript 1.0.7-rc.7 2.731.6 0.0.2 syllable-sdk",
|
|
67
67
|
} as const;
|
package/src/mcp-server/server.ts
CHANGED
|
@@ -43,7 +43,7 @@ export type DirectoryMember = {
|
|
|
43
43
|
/**
|
|
44
44
|
* Timestamp of most recent update
|
|
45
45
|
*/
|
|
46
|
-
updatedAt
|
|
46
|
+
updatedAt?: Date | null | undefined;
|
|
47
47
|
/**
|
|
48
48
|
* Email of the user who last updated the directory member
|
|
49
49
|
*/
|
|
@@ -105,7 +105,9 @@ export const DirectoryMember$inboundSchema: z.ZodType<
|
|
|
105
105
|
extensions: z.nullable(z.array(DirectoryExtension$inboundSchema)).optional(),
|
|
106
106
|
contact_tags: z.nullable(z.lazy(() => ContactTags$inboundSchema)).optional(),
|
|
107
107
|
id: z.nullable(z.number().int()).optional(),
|
|
108
|
-
updated_at: z.
|
|
108
|
+
updated_at: z.nullable(
|
|
109
|
+
z.string().datetime({ offset: true }).transform(v => new Date(v)),
|
|
110
|
+
).optional(),
|
|
109
111
|
last_updated_by: z.nullable(z.string()).optional(),
|
|
110
112
|
}).transform((v) => {
|
|
111
113
|
return remap$(v, {
|
|
@@ -122,7 +124,7 @@ export type DirectoryMember$Outbound = {
|
|
|
122
124
|
extensions?: Array<DirectoryExtension$Outbound> | null | undefined;
|
|
123
125
|
contact_tags?: ContactTags$Outbound | null | undefined;
|
|
124
126
|
id?: number | null | undefined;
|
|
125
|
-
updated_at
|
|
127
|
+
updated_at?: string | null | undefined;
|
|
126
128
|
last_updated_by?: string | null | undefined;
|
|
127
129
|
};
|
|
128
130
|
|
|
@@ -137,7 +139,7 @@ export const DirectoryMember$outboundSchema: z.ZodType<
|
|
|
137
139
|
extensions: z.nullable(z.array(DirectoryExtension$outboundSchema)).optional(),
|
|
138
140
|
contactTags: z.nullable(z.lazy(() => ContactTags$outboundSchema)).optional(),
|
|
139
141
|
id: z.nullable(z.number().int()).optional(),
|
|
140
|
-
updatedAt: z.date().transform(v => v.toISOString()),
|
|
142
|
+
updatedAt: z.nullable(z.date().transform(v => v.toISOString())).optional(),
|
|
141
143
|
lastUpdatedBy: z.nullable(z.string()).optional(),
|
|
142
144
|
}).transform((v) => {
|
|
143
145
|
return remap$(v, {
|