syllable-sdk 1.0.2-rc.9 → 1.0.3-rc.1
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 +15 -9
- package/bin/mcp-server.js.map +6 -6
- 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 +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/voicesamplecreaterequest.d.ts +10 -0
- package/models/components/voicesamplecreaterequest.d.ts.map +1 -1
- package/models/components/voicesamplecreaterequest.js +6 -0
- package/models/components/voicesamplecreaterequest.js.map +1 -1
- package/openapi.json +45 -33
- 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/voicesamplecreaterequest.ts +16 -0
package/bin/mcp-server.js
CHANGED
|
@@ -34414,9 +34414,9 @@ var init_config = __esm(() => {
|
|
|
34414
34414
|
SDK_METADATA = {
|
|
34415
34415
|
language: "typescript",
|
|
34416
34416
|
openapiDocVersion: "0.0.2",
|
|
34417
|
-
sdkVersion: "1.0.
|
|
34417
|
+
sdkVersion: "1.0.3-rc.1",
|
|
34418
34418
|
genVersion: "2.723.11",
|
|
34419
|
-
userAgent: "speakeasy-sdk/typescript 1.0.
|
|
34419
|
+
userAgent: "speakeasy-sdk/typescript 1.0.3-rc.1 2.723.11 0.0.2 syllable-sdk"
|
|
34420
34420
|
};
|
|
34421
34421
|
});
|
|
34422
34422
|
|
|
@@ -43892,14 +43892,17 @@ var init_voicesamplecreaterequest = __esm(() => {
|
|
|
43892
43892
|
voice_provider: TtsProvider$inboundSchema,
|
|
43893
43893
|
voice_display_name: AgentVoiceDisplayName$inboundSchema,
|
|
43894
43894
|
voice_speed: nullableType(numberType()).optional(),
|
|
43895
|
-
voice_pitch: nullableType(numberType()).optional()
|
|
43895
|
+
voice_pitch: nullableType(numberType()).optional(),
|
|
43896
|
+
text: stringType().default(""),
|
|
43897
|
+
apply_pronunciation_overrides: booleanType().default(false)
|
|
43896
43898
|
}).transform((v2) => {
|
|
43897
43899
|
return remap(v2, {
|
|
43898
43900
|
language_code: "languageCode",
|
|
43899
43901
|
voice_provider: "voiceProvider",
|
|
43900
43902
|
voice_display_name: "voiceDisplayName",
|
|
43901
43903
|
voice_speed: "voiceSpeed",
|
|
43902
|
-
voice_pitch: "voicePitch"
|
|
43904
|
+
voice_pitch: "voicePitch",
|
|
43905
|
+
apply_pronunciation_overrides: "applyPronunciationOverrides"
|
|
43903
43906
|
});
|
|
43904
43907
|
});
|
|
43905
43908
|
VoiceSampleCreateRequest$outboundSchema = objectType({
|
|
@@ -43907,14 +43910,17 @@ var init_voicesamplecreaterequest = __esm(() => {
|
|
|
43907
43910
|
voiceProvider: TtsProvider$outboundSchema,
|
|
43908
43911
|
voiceDisplayName: AgentVoiceDisplayName$outboundSchema,
|
|
43909
43912
|
voiceSpeed: nullableType(numberType()).optional(),
|
|
43910
|
-
voicePitch: nullableType(numberType()).optional()
|
|
43913
|
+
voicePitch: nullableType(numberType()).optional(),
|
|
43914
|
+
text: stringType().default(""),
|
|
43915
|
+
applyPronunciationOverrides: booleanType().default(false)
|
|
43911
43916
|
}).transform((v2) => {
|
|
43912
43917
|
return remap(v2, {
|
|
43913
43918
|
languageCode: "language_code",
|
|
43914
43919
|
voiceProvider: "voice_provider",
|
|
43915
43920
|
voiceDisplayName: "voice_display_name",
|
|
43916
43921
|
voiceSpeed: "voice_speed",
|
|
43917
|
-
voicePitch: "voice_pitch"
|
|
43922
|
+
voicePitch: "voice_pitch",
|
|
43923
|
+
applyPronunciationOverrides: "apply_pronunciation_overrides"
|
|
43918
43924
|
});
|
|
43919
43925
|
});
|
|
43920
43926
|
((VoiceSampleCreateRequest$) => {
|
|
@@ -62955,7 +62961,7 @@ Send a welcome email to a user.`,
|
|
|
62955
62961
|
function createMCPServer(deps) {
|
|
62956
62962
|
const server = new McpServer({
|
|
62957
62963
|
name: "SyllableSDK",
|
|
62958
|
-
version: "1.0.
|
|
62964
|
+
version: "1.0.3-rc.1"
|
|
62959
62965
|
});
|
|
62960
62966
|
const client = new SyllableSDKCore({
|
|
62961
62967
|
apiKeyHeader: deps.apiKeyHeader,
|
|
@@ -64461,7 +64467,7 @@ var routes = ln({
|
|
|
64461
64467
|
var app = _e(routes, {
|
|
64462
64468
|
name: "mcp",
|
|
64463
64469
|
versionInfo: {
|
|
64464
|
-
currentVersion: "1.0.
|
|
64470
|
+
currentVersion: "1.0.3-rc.1"
|
|
64465
64471
|
}
|
|
64466
64472
|
});
|
|
64467
64473
|
Yt(app, process3.argv.slice(2), buildContext(process3));
|
|
@@ -64469,5 +64475,5 @@ export {
|
|
|
64469
64475
|
app
|
|
64470
64476
|
};
|
|
64471
64477
|
|
|
64472
|
-
//# debugId=
|
|
64478
|
+
//# debugId=7CA04B39678E9C3C64756E2164756E21
|
|
64473
64479
|
//# sourceMappingURL=mcp-server.js.map
|