syllable-sdk 1.0.36 → 1.0.37-rc.2

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.36",
53075
+ sdkVersion: "1.0.37-rc.2",
53076
53076
  genVersion: "2.881.4",
53077
- userAgent: "speakeasy-sdk/typescript 1.0.36 2.881.4 0.0.3 syllable-sdk"
53077
+ userAgent: "speakeasy-sdk/typescript 1.0.37-rc.2 2.881.4 0.0.3 syllable-sdk"
53078
53078
  };
53079
53079
  });
53080
53080
 
@@ -54998,6 +54998,7 @@ var init_custommessageresponse = __esm(() => {
54998
54998
  text: stringType(),
54999
54999
  subject: nullableType(stringType()).optional(),
55000
55000
  label: nullableType(stringType()).optional(),
55001
+ repeat_after_language_change: booleanType(),
55001
55002
  rules: arrayType(CustomMessageRule$inboundSchema).optional(),
55002
55003
  id: numberType().int(),
55003
55004
  updated_at: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)),
@@ -55005,6 +55006,7 @@ var init_custommessageresponse = __esm(() => {
55005
55006
  last_updated_by: stringType()
55006
55007
  }).transform((v2) => {
55007
55008
  return remap(v2, {
55009
+ repeat_after_language_change: "repeatAfterLanguageChange",
55008
55010
  updated_at: "updatedAt",
55009
55011
  agent_count: "agentCount",
55010
55012
  last_updated_by: "lastUpdatedBy"
@@ -55017,6 +55019,7 @@ var init_custommessageresponse = __esm(() => {
55017
55019
  text: stringType(),
55018
55020
  subject: nullableType(stringType()).optional(),
55019
55021
  label: nullableType(stringType()).optional(),
55022
+ repeatAfterLanguageChange: booleanType(),
55020
55023
  rules: arrayType(CustomMessageRule$outboundSchema).optional(),
55021
55024
  id: numberType().int(),
55022
55025
  updatedAt: dateType().transform((v2) => v2.toISOString()),
@@ -55024,6 +55027,7 @@ var init_custommessageresponse = __esm(() => {
55024
55027
  lastUpdatedBy: stringType()
55025
55028
  }).transform((v2) => {
55026
55029
  return remap(v2, {
55030
+ repeatAfterLanguageChange: "repeat_after_language_change",
55027
55031
  updatedAt: "updated_at",
55028
55032
  agentCount: "agent_count",
55029
55033
  lastUpdatedBy: "last_updated_by"
@@ -58922,6 +58926,7 @@ var init_createtakeoutresponse = __esm(() => {
58922
58926
  var CustomMessageCreateRequest$inboundSchema, CustomMessageCreateRequest$outboundSchema;
58923
58927
  var init_custommessagecreaterequest = __esm(() => {
58924
58928
  init_v3();
58929
+ init_primitives();
58925
58930
  init_custommessagerule();
58926
58931
  init_custommessagetype();
58927
58932
  CustomMessageCreateRequest$inboundSchema = objectType({
@@ -58931,7 +58936,12 @@ var init_custommessagecreaterequest = __esm(() => {
58931
58936
  text: stringType(),
58932
58937
  subject: nullableType(stringType()).optional(),
58933
58938
  label: nullableType(stringType()).optional(),
58939
+ repeat_after_language_change: nullableType(booleanType()).optional(),
58934
58940
  rules: arrayType(CustomMessageRule$inboundSchema).optional()
58941
+ }).transform((v2) => {
58942
+ return remap(v2, {
58943
+ repeat_after_language_change: "repeatAfterLanguageChange"
58944
+ });
58935
58945
  });
58936
58946
  CustomMessageCreateRequest$outboundSchema = objectType({
58937
58947
  name: stringType(),
@@ -58940,7 +58950,12 @@ var init_custommessagecreaterequest = __esm(() => {
58940
58950
  text: stringType(),
58941
58951
  subject: nullableType(stringType()).optional(),
58942
58952
  label: nullableType(stringType()).optional(),
58953
+ repeatAfterLanguageChange: nullableType(booleanType()).optional(),
58943
58954
  rules: arrayType(CustomMessageRule$outboundSchema).optional()
58955
+ }).transform((v2) => {
58956
+ return remap(v2, {
58957
+ repeatAfterLanguageChange: "repeat_after_language_change"
58958
+ });
58944
58959
  });
58945
58960
  });
58946
58961
 
@@ -58965,6 +58980,7 @@ var init_custommessageproperties = __esm(() => {
58965
58980
  var CustomMessageUpdateRequest$inboundSchema, CustomMessageUpdateRequest$outboundSchema;
58966
58981
  var init_custommessageupdaterequest = __esm(() => {
58967
58982
  init_v3();
58983
+ init_primitives();
58968
58984
  init_custommessagerule();
58969
58985
  init_custommessagetype();
58970
58986
  CustomMessageUpdateRequest$inboundSchema = objectType({
@@ -58974,8 +58990,13 @@ var init_custommessageupdaterequest = __esm(() => {
58974
58990
  text: stringType(),
58975
58991
  subject: nullableType(stringType()).optional(),
58976
58992
  label: nullableType(stringType()).optional(),
58993
+ repeat_after_language_change: nullableType(booleanType()).optional(),
58977
58994
  rules: arrayType(CustomMessageRule$inboundSchema).optional(),
58978
58995
  id: numberType().int()
58996
+ }).transform((v2) => {
58997
+ return remap(v2, {
58998
+ repeat_after_language_change: "repeatAfterLanguageChange"
58999
+ });
58979
59000
  });
58980
59001
  CustomMessageUpdateRequest$outboundSchema = objectType({
58981
59002
  name: stringType(),
@@ -58984,8 +59005,13 @@ var init_custommessageupdaterequest = __esm(() => {
58984
59005
  text: stringType(),
58985
59006
  subject: nullableType(stringType()).optional(),
58986
59007
  label: nullableType(stringType()).optional(),
59008
+ repeatAfterLanguageChange: nullableType(booleanType()).optional(),
58987
59009
  rules: arrayType(CustomMessageRule$outboundSchema).optional(),
58988
59010
  id: numberType().int()
59011
+ }).transform((v2) => {
59012
+ return remap(v2, {
59013
+ repeatAfterLanguageChange: "repeat_after_language_change"
59014
+ });
58989
59015
  });
58990
59016
  });
58991
59017
 
@@ -85538,7 +85564,7 @@ Generate voice sample.`,
85538
85564
  function createMCPServer(deps) {
85539
85565
  const server = new McpServer({
85540
85566
  name: "SyllableSDK",
85541
- version: "1.0.36"
85567
+ version: "1.0.37-rc.2"
85542
85568
  });
85543
85569
  const client = new SyllableSDKCore({
85544
85570
  apiKeyHeader: deps.apiKeyHeader,
@@ -87080,7 +87106,7 @@ var routes = ln({
87080
87106
  var app = _e(routes, {
87081
87107
  name: "mcp",
87082
87108
  versionInfo: {
87083
- currentVersion: "1.0.36"
87109
+ currentVersion: "1.0.37-rc.2"
87084
87110
  }
87085
87111
  });
87086
87112
  Yt(app, process3.argv.slice(2), buildContext(process3));
@@ -87088,5 +87114,5 @@ export {
87088
87114
  app
87089
87115
  };
87090
87116
 
87091
- //# debugId=A1BAF3F35E7F54AE64756E2164756E21
87117
+ //# debugId=B176A5F8A6948F2A64756E2164756E21
87092
87118
  //# sourceMappingURL=mcp-server.js.map