syllable-sdk 1.0.2 → 1.0.3-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
@@ -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.2",
34417
+ sdkVersion: "1.0.3-rc.2",
34418
34418
  genVersion: "2.723.11",
34419
- userAgent: "speakeasy-sdk/typescript 1.0.2 2.723.11 0.0.2 syllable-sdk"
34419
+ userAgent: "speakeasy-sdk/typescript 1.0.3-rc.2 2.723.11 0.0.2 syllable-sdk"
34420
34420
  };
34421
34421
  });
34422
34422
 
@@ -39631,7 +39631,7 @@ var init_insightsfolderproperties = __esm(() => {
39631
39631
  });
39632
39632
 
39633
39633
  // src/models/components/insightsoutput.ts
39634
- var JsonValue$inboundSchema, JsonValue$outboundSchema, JsonValue$, InsightsOutput$inboundSchema, InsightsOutput$outboundSchema, InsightsOutput$;
39634
+ var JsonValue$inboundSchema, JsonValue$outboundSchema, JsonValue$, UploadFileMetadata$inboundSchema, UploadFileMetadata$outboundSchema, UploadFileMetadata$, InsightsOutput$inboundSchema, InsightsOutput$outboundSchema, InsightsOutput$;
39635
39635
  var init_insightsoutput = __esm(() => {
39636
39636
  init_zod();
39637
39637
  init_primitives();
@@ -39641,6 +39641,12 @@ var init_insightsoutput = __esm(() => {
39641
39641
  JsonValue$.inboundSchema = JsonValue$inboundSchema;
39642
39642
  JsonValue$.outboundSchema = JsonValue$outboundSchema;
39643
39643
  })(JsonValue$ ||= {});
39644
+ UploadFileMetadata$inboundSchema = objectType({});
39645
+ UploadFileMetadata$outboundSchema = objectType({});
39646
+ ((UploadFileMetadata$) => {
39647
+ UploadFileMetadata$.inboundSchema = UploadFileMetadata$inboundSchema;
39648
+ UploadFileMetadata$.outboundSchema = UploadFileMetadata$outboundSchema;
39649
+ })(UploadFileMetadata$ ||= {});
39644
39650
  InsightsOutput$inboundSchema = objectType({
39645
39651
  id: numberType().int(),
39646
39652
  session_id: nullableType(numberType().int()).optional(),
@@ -39652,7 +39658,8 @@ var init_insightsoutput = __esm(() => {
39652
39658
  numeric_value: nullableType(numberType()).optional(),
39653
39659
  json_value: recordType(unionType([stringType(), numberType().int(), numberType()])),
39654
39660
  created_at: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
39655
- updated_at: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional()
39661
+ updated_at: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
39662
+ upload_file_metadata: nullableType(lazyType(() => UploadFileMetadata$inboundSchema)).optional()
39656
39663
  }).transform((v2) => {
39657
39664
  return remap(v2, {
39658
39665
  session_id: "sessionId",
@@ -39664,7 +39671,8 @@ var init_insightsoutput = __esm(() => {
39664
39671
  numeric_value: "numericValue",
39665
39672
  json_value: "jsonValue",
39666
39673
  created_at: "createdAt",
39667
- updated_at: "updatedAt"
39674
+ updated_at: "updatedAt",
39675
+ upload_file_metadata: "uploadFileMetadata"
39668
39676
  });
39669
39677
  });
39670
39678
  InsightsOutput$outboundSchema = objectType({
@@ -39678,7 +39686,8 @@ var init_insightsoutput = __esm(() => {
39678
39686
  numericValue: nullableType(numberType()).optional(),
39679
39687
  jsonValue: recordType(unionType([stringType(), numberType().int(), numberType()])),
39680
39688
  createdAt: dateType().transform((v2) => v2.toISOString()).optional(),
39681
- updatedAt: dateType().transform((v2) => v2.toISOString()).optional()
39689
+ updatedAt: dateType().transform((v2) => v2.toISOString()).optional(),
39690
+ uploadFileMetadata: nullableType(lazyType(() => UploadFileMetadata$outboundSchema)).optional()
39682
39691
  }).transform((v2) => {
39683
39692
  return remap(v2, {
39684
39693
  sessionId: "session_id",
@@ -39690,7 +39699,8 @@ var init_insightsoutput = __esm(() => {
39690
39699
  numericValue: "numeric_value",
39691
39700
  jsonValue: "json_value",
39692
39701
  createdAt: "created_at",
39693
- updatedAt: "updated_at"
39702
+ updatedAt: "updated_at",
39703
+ uploadFileMetadata: "upload_file_metadata"
39694
39704
  });
39695
39705
  });
39696
39706
  ((InsightsOutput$) => {
@@ -62961,7 +62971,7 @@ Send a welcome email to a user.`,
62961
62971
  function createMCPServer(deps) {
62962
62972
  const server = new McpServer({
62963
62973
  name: "SyllableSDK",
62964
- version: "1.0.2"
62974
+ version: "1.0.3-rc.2"
62965
62975
  });
62966
62976
  const client = new SyllableSDKCore({
62967
62977
  apiKeyHeader: deps.apiKeyHeader,
@@ -64467,7 +64477,7 @@ var routes = ln({
64467
64477
  var app = _e(routes, {
64468
64478
  name: "mcp",
64469
64479
  versionInfo: {
64470
- currentVersion: "1.0.2"
64480
+ currentVersion: "1.0.3-rc.2"
64471
64481
  }
64472
64482
  });
64473
64483
  Yt(app, process3.argv.slice(2), buildContext(process3));
@@ -64475,5 +64485,5 @@ export {
64475
64485
  app
64476
64486
  };
64477
64487
 
64478
- //# debugId=B51C8448F07C38CD64756E2164756E21
64488
+ //# debugId=1D93C389CC02D89264756E2164756E21
64479
64489
  //# sourceMappingURL=mcp-server.js.map