syllable-sdk 1.0.7-rc.2 → 1.0.7-rc.3
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 +6 -5
- package/bin/mcp-server.js.map +6 -6
- package/examples/package-lock.json +1 -1
- package/jsr.json +1 -1
- package/lib/config.d.ts +2 -2
- package/lib/config.js +2 -2
- package/mcp-server/mcp-server.js +1 -1
- package/mcp-server/server.js +1 -1
- package/models/components/directorymemberproperties.d.ts +3 -0
- package/models/components/directorymemberproperties.d.ts.map +1 -1
- package/models/components/directorymemberproperties.js +1 -0
- package/models/components/directorymemberproperties.js.map +1 -1
- package/openapi.json +1 -0
- package/package.json +1 -1
- package/src/lib/config.ts +2 -2
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -1
- package/src/models/components/directorymemberproperties.ts +1 -0
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.
|
|
34
|
+
readonly sdkVersion: "1.0.7-rc.3";
|
|
35
35
|
readonly genVersion: "2.730.5";
|
|
36
|
-
readonly userAgent: "speakeasy-sdk/typescript 1.0.7-rc.
|
|
36
|
+
readonly userAgent: "speakeasy-sdk/typescript 1.0.7-rc.3 2.730.5 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.
|
|
34
|
+
sdkVersion: "1.0.7-rc.3",
|
|
35
35
|
genVersion: "2.730.5",
|
|
36
|
-
userAgent: "speakeasy-sdk/typescript 1.0.7-rc.
|
|
36
|
+
userAgent: "speakeasy-sdk/typescript 1.0.7-rc.3 2.730.5 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.3",
|
|
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
|
@@ -170,7 +170,7 @@ const voiceGroupsVoiceGroupsCreateVoiceSample_js_1 = require("./tools/voiceGroup
|
|
|
170
170
|
function createMCPServer(deps) {
|
|
171
171
|
const server = new mcp_js_1.McpServer({
|
|
172
172
|
name: "SyllableSDK",
|
|
173
|
-
version: "1.0.7-rc.
|
|
173
|
+
version: "1.0.7-rc.3",
|
|
174
174
|
});
|
|
175
175
|
const client = new core_js_1.SyllableSDKCore({
|
|
176
176
|
apiKeyHeader: deps.apiKeyHeader,
|
|
@@ -3,6 +3,7 @@ import { ClosedEnum } from "../../types/enums.js";
|
|
|
3
3
|
export declare const DirectoryMemberProperties: {
|
|
4
4
|
readonly Id: "id";
|
|
5
5
|
readonly Name: "name";
|
|
6
|
+
readonly NameExact: "name_exact";
|
|
6
7
|
readonly Type: "type";
|
|
7
8
|
readonly Extensions: "extensions";
|
|
8
9
|
readonly ContactTags: "contact_tags";
|
|
@@ -22,6 +23,7 @@ export declare namespace DirectoryMemberProperties$ {
|
|
|
22
23
|
const inboundSchema: z.ZodNativeEnum<{
|
|
23
24
|
readonly Id: "id";
|
|
24
25
|
readonly Name: "name";
|
|
26
|
+
readonly NameExact: "name_exact";
|
|
25
27
|
readonly Type: "type";
|
|
26
28
|
readonly Extensions: "extensions";
|
|
27
29
|
readonly ContactTags: "contact_tags";
|
|
@@ -31,6 +33,7 @@ export declare namespace DirectoryMemberProperties$ {
|
|
|
31
33
|
const outboundSchema: z.ZodNativeEnum<{
|
|
32
34
|
readonly Id: "id";
|
|
33
35
|
readonly Name: "name";
|
|
36
|
+
readonly NameExact: "name_exact";
|
|
34
37
|
readonly Type: "type";
|
|
35
38
|
readonly Extensions: "extensions";
|
|
36
39
|
readonly ContactTags: "contact_tags";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"directorymemberproperties.d.ts","sourceRoot":"","sources":["../../src/models/components/directorymemberproperties.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,QAAQ,CAAC;AAC5B,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAC;AAElD,eAAO,MAAM,yBAAyB
|
|
1
|
+
{"version":3,"file":"directorymemberproperties.d.ts","sourceRoot":"","sources":["../../src/models/components/directorymemberproperties.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,QAAQ,CAAC;AAC5B,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAC;AAElD,eAAO,MAAM,yBAAyB;;;;;;;;CAQ5B,CAAC;AACX,MAAM,MAAM,yBAAyB,GAAG,UAAU,CAChD,OAAO,yBAAyB,CACjC,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,uCAAuC,EAAE,CAAC,CAAC,aAAa,CACnE,OAAO,yBAAyB,CACS,CAAC;AAE5C,gBAAgB;AAChB,eAAO,MAAM,wCAAwC,EAAE,CAAC,CAAC,aAAa,CACpE,OAAO,yBAAyB,CACS,CAAC;AAE5C;;;GAGG;AACH,yBAAiB,0BAA0B,CAAC;IAC1C,yEAAyE;IAClE,MAAM,aAAa;;;;;;;;MAA0C,CAAC;IACrE,0EAA0E;IACnE,MAAM,cAAc;;;;;;;;MAA2C,CAAC;CACxE"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"directorymemberproperties.js","sourceRoot":"","sources":["../../src/models/components/directorymemberproperties.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEH,0CAA4B;AAGf,QAAA,yBAAyB,GAAG;IACvC,EAAE,EAAE,IAAI;IACR,IAAI,EAAE,MAAM;IACZ,IAAI,EAAE,MAAM;IACZ,UAAU,EAAE,YAAY;IACxB,WAAW,EAAE,cAAc;IAC3B,SAAS,EAAE,YAAY;CACf,CAAC;AAKX,gBAAgB;AACH,QAAA,uCAAuC,GAEhD,CAAC,CAAC,UAAU,CAAC,iCAAyB,CAAC,CAAC;AAE5C,gBAAgB;AACH,QAAA,wCAAwC,GAEjD,+CAAuC,CAAC;AAE5C;;;GAGG;AACH,IAAiB,0BAA0B,CAK1C;AALD,WAAiB,0BAA0B;IACzC,yEAAyE;IAC5D,wCAAa,GAAG,+CAAuC,CAAC;IACrE,0EAA0E;IAC7D,yCAAc,GAAG,gDAAwC,CAAC;AACzE,CAAC,EALgB,0BAA0B,0CAA1B,0BAA0B,QAK1C"}
|
|
1
|
+
{"version":3,"file":"directorymemberproperties.js","sourceRoot":"","sources":["../../src/models/components/directorymemberproperties.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEH,0CAA4B;AAGf,QAAA,yBAAyB,GAAG;IACvC,EAAE,EAAE,IAAI;IACR,IAAI,EAAE,MAAM;IACZ,SAAS,EAAE,YAAY;IACvB,IAAI,EAAE,MAAM;IACZ,UAAU,EAAE,YAAY;IACxB,WAAW,EAAE,cAAc;IAC3B,SAAS,EAAE,YAAY;CACf,CAAC;AAKX,gBAAgB;AACH,QAAA,uCAAuC,GAEhD,CAAC,CAAC,UAAU,CAAC,iCAAyB,CAAC,CAAC;AAE5C,gBAAgB;AACH,QAAA,wCAAwC,GAEjD,+CAAuC,CAAC;AAE5C;;;GAGG;AACH,IAAiB,0BAA0B,CAK1C;AALD,WAAiB,0BAA0B;IACzC,yEAAyE;IAC5D,wCAAa,GAAG,+CAAuC,CAAC;IACrE,0EAA0E;IAC7D,yCAAc,GAAG,gDAAwC,CAAC;AACzE,CAAC,EALgB,0BAA0B,0CAA1B,0BAA0B,QAK1C"}
|
package/openapi.json
CHANGED
|
@@ -16668,6 +16668,7 @@
|
|
|
16668
16668
|
"enum": [
|
|
16669
16669
|
"id",
|
|
16670
16670
|
"name",
|
|
16671
|
+
"name_exact",
|
|
16671
16672
|
"type",
|
|
16672
16673
|
"extensions",
|
|
16673
16674
|
"contact_tags",
|
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.
|
|
64
|
+
sdkVersion: "1.0.7-rc.3",
|
|
65
65
|
genVersion: "2.730.5",
|
|
66
|
-
userAgent: "speakeasy-sdk/typescript 1.0.7-rc.
|
|
66
|
+
userAgent: "speakeasy-sdk/typescript 1.0.7-rc.3 2.730.5 0.0.2 syllable-sdk",
|
|
67
67
|
} as const;
|
package/src/mcp-server/server.ts
CHANGED