syllable-sdk 1.0.53-rc.4 → 1.0.53-rc.6

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 CHANGED
@@ -53072,9 +53072,9 @@ var init_config = __esm(() => {
53072
53072
  SDK_METADATA = {
53073
53073
  language: "typescript",
53074
53074
  openapiDocVersion: "0.0.3",
53075
- sdkVersion: "1.0.53-rc.4",
53075
+ sdkVersion: "1.0.53-rc.6",
53076
53076
  genVersion: "2.918.4",
53077
- userAgent: "speakeasy-sdk/typescript 1.0.53-rc.4 2.918.4 0.0.3 syllable-sdk"
53077
+ userAgent: "speakeasy-sdk/typescript 1.0.53-rc.6 2.918.4 0.0.3 syllable-sdk"
53078
53078
  };
53079
53079
  });
53080
53080
 
@@ -58630,16 +58630,27 @@ var init_bridgephrasesconfigpayload = __esm(() => {
58630
58630
  var BridgePhrasesCreateRequest$inboundSchema, BridgePhrasesCreateRequest$outboundSchema;
58631
58631
  var init_bridgephrasescreaterequest = __esm(() => {
58632
58632
  init_v3();
58633
+ init_primitives();
58633
58634
  init_bridgephrasesconfigpayload();
58634
58635
  BridgePhrasesCreateRequest$inboundSchema = objectType({
58635
58636
  name: stringType(),
58636
58637
  description: nullableType(stringType()).optional(),
58637
- config: BridgePhrasesConfigPayload$inboundSchema.optional()
58638
+ config: BridgePhrasesConfigPayload$inboundSchema.optional(),
58639
+ is_default: booleanType().default(false)
58640
+ }).transform((v2) => {
58641
+ return remap(v2, {
58642
+ is_default: "isDefault"
58643
+ });
58638
58644
  });
58639
58645
  BridgePhrasesCreateRequest$outboundSchema = objectType({
58640
58646
  name: stringType(),
58641
58647
  description: nullableType(stringType()).optional(),
58642
- config: BridgePhrasesConfigPayload$outboundSchema.optional()
58648
+ config: BridgePhrasesConfigPayload$outboundSchema.optional(),
58649
+ isDefault: booleanType().default(false)
58650
+ }).transform((v2) => {
58651
+ return remap(v2, {
58652
+ isDefault: "is_default"
58653
+ });
58643
58654
  });
58644
58655
  });
58645
58656
 
@@ -58668,6 +58679,7 @@ var init_bridgephrasesresponse = __esm(() => {
58668
58679
  name: stringType(),
58669
58680
  description: nullableType(stringType()).optional(),
58670
58681
  config: BridgePhrasesConfigPayload$inboundSchema.optional(),
58682
+ is_default: booleanType().default(false),
58671
58683
  id: numberType().int(),
58672
58684
  edit_comments: nullableType(stringType()).optional(),
58673
58685
  agents_info: nullableType(arrayType(BridgePhrasesAgentInfo$inboundSchema)).optional(),
@@ -58675,6 +58687,7 @@ var init_bridgephrasesresponse = __esm(() => {
58675
58687
  last_updated_by: stringType()
58676
58688
  }).transform((v2) => {
58677
58689
  return remap(v2, {
58690
+ is_default: "isDefault",
58678
58691
  edit_comments: "editComments",
58679
58692
  agents_info: "agentsInfo",
58680
58693
  updated_at: "updatedAt",
@@ -58685,6 +58698,7 @@ var init_bridgephrasesresponse = __esm(() => {
58685
58698
  name: stringType(),
58686
58699
  description: nullableType(stringType()).optional(),
58687
58700
  config: BridgePhrasesConfigPayload$outboundSchema.optional(),
58701
+ isDefault: booleanType().default(false),
58688
58702
  id: numberType().int(),
58689
58703
  editComments: nullableType(stringType()).optional(),
58690
58704
  agentsInfo: nullableType(arrayType(BridgePhrasesAgentInfo$outboundSchema)).optional(),
@@ -58692,6 +58706,7 @@ var init_bridgephrasesresponse = __esm(() => {
58692
58706
  lastUpdatedBy: stringType()
58693
58707
  }).transform((v2) => {
58694
58708
  return remap(v2, {
58709
+ isDefault: "is_default",
58695
58710
  editComments: "edit_comments",
58696
58711
  agentsInfo: "agents_info",
58697
58712
  updatedAt: "updated_at",
@@ -58710,10 +58725,12 @@ var init_bridgephrasesupdaterequest = __esm(() => {
58710
58725
  name: stringType(),
58711
58726
  description: nullableType(stringType()).optional(),
58712
58727
  config: BridgePhrasesConfigPayload$inboundSchema.optional(),
58728
+ is_default: nullableType(booleanType()).optional(),
58713
58729
  id: numberType().int(),
58714
58730
  edit_comments: nullableType(stringType()).optional()
58715
58731
  }).transform((v2) => {
58716
58732
  return remap(v2, {
58733
+ is_default: "isDefault",
58717
58734
  edit_comments: "editComments"
58718
58735
  });
58719
58736
  });
@@ -58721,10 +58738,12 @@ var init_bridgephrasesupdaterequest = __esm(() => {
58721
58738
  name: stringType(),
58722
58739
  description: nullableType(stringType()).optional(),
58723
58740
  config: BridgePhrasesConfigPayload$outboundSchema.optional(),
58741
+ isDefault: nullableType(booleanType()).optional(),
58724
58742
  id: numberType().int(),
58725
58743
  editComments: nullableType(stringType()).optional()
58726
58744
  }).transform((v2) => {
58727
58745
  return remap(v2, {
58746
+ isDefault: "is_default",
58728
58747
  editComments: "edit_comments"
58729
58748
  });
58730
58749
  });
@@ -88355,7 +88374,7 @@ Generate voice sample.`,
88355
88374
  function createMCPServer(deps) {
88356
88375
  const server = new McpServer({
88357
88376
  name: "SyllableSDK",
88358
- version: "1.0.53-rc.4"
88377
+ version: "1.0.53-rc.6"
88359
88378
  });
88360
88379
  const client = new SyllableSDKCore({
88361
88380
  apiKeyHeader: deps.apiKeyHeader,
@@ -89923,7 +89942,7 @@ var routes = ln({
89923
89942
  var app = _e(routes, {
89924
89943
  name: "mcp",
89925
89944
  versionInfo: {
89926
- currentVersion: "1.0.53-rc.4"
89945
+ currentVersion: "1.0.53-rc.6"
89927
89946
  }
89928
89947
  });
89929
89948
  Yt(app, process3.argv.slice(2), buildContext(process3));
@@ -89931,5 +89950,5 @@ export {
89931
89950
  app
89932
89951
  };
89933
89952
 
89934
- //# debugId=6249BF0BB57E2C2E64756E2164756E21
89953
+ //# debugId=C071DDC1C30A1B6E64756E2164756E21
89935
89954
  //# sourceMappingURL=mcp-server.js.map