syllable-sdk 1.0.7-rc.2 → 1.0.7-rc.4

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
@@ -34419,9 +34419,9 @@ var init_config = __esm(() => {
34419
34419
  SDK_METADATA = {
34420
34420
  language: "typescript",
34421
34421
  openapiDocVersion: "0.0.2",
34422
- sdkVersion: "1.0.7-rc.2",
34423
- genVersion: "2.730.5",
34424
- userAgent: "speakeasy-sdk/typescript 1.0.7-rc.2 2.730.5 0.0.2 syllable-sdk"
34422
+ sdkVersion: "1.0.7-rc.4",
34423
+ genVersion: "2.731.4",
34424
+ userAgent: "speakeasy-sdk/typescript 1.0.7-rc.4 2.731.4 0.0.2 syllable-sdk"
34425
34425
  };
34426
34426
  });
34427
34427
 
@@ -39326,9 +39326,9 @@ var init_directorymember = __esm(() => {
39326
39326
  type: stringType(),
39327
39327
  extensions: nullableType(arrayType(DirectoryExtension$inboundSchema)).optional(),
39328
39328
  contact_tags: nullableType(lazyType(() => ContactTags$inboundSchema)).optional(),
39329
- updated_at: nullableType(stringType().datetime({ offset: true }).transform((v2) => new Date(v2))).optional(),
39330
- last_updated_by: nullableType(stringType()).optional(),
39331
- id: nullableType(numberType().int()).optional()
39329
+ id: nullableType(numberType().int()).optional(),
39330
+ updated_at: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)),
39331
+ last_updated_by: nullableType(stringType()).optional()
39332
39332
  }).transform((v2) => {
39333
39333
  return remap(v2, {
39334
39334
  contact_tags: "contactTags",
@@ -39341,9 +39341,9 @@ var init_directorymember = __esm(() => {
39341
39341
  type: stringType(),
39342
39342
  extensions: nullableType(arrayType(DirectoryExtension$outboundSchema)).optional(),
39343
39343
  contactTags: nullableType(lazyType(() => ContactTags$outboundSchema)).optional(),
39344
- updatedAt: nullableType(dateType().transform((v2) => v2.toISOString())).optional(),
39345
- lastUpdatedBy: nullableType(stringType()).optional(),
39346
- id: nullableType(numberType().int()).optional()
39344
+ id: nullableType(numberType().int()).optional(),
39345
+ updatedAt: dateType().transform((v2) => v2.toISOString()),
39346
+ lastUpdatedBy: nullableType(stringType()).optional()
39347
39347
  }).transform((v2) => {
39348
39348
  return remap(v2, {
39349
39349
  contactTags: "contact_tags",
@@ -39373,28 +39373,20 @@ var init_directorymembercreate = __esm(() => {
39373
39373
  name: stringType(),
39374
39374
  type: stringType(),
39375
39375
  extensions: nullableType(arrayType(DirectoryExtension$inboundSchema)).optional(),
39376
- contact_tags: nullableType(lazyType(() => DirectoryMemberCreateContactTags$inboundSchema)).optional(),
39377
- updated_at: nullableType(stringType().datetime({ offset: true }).transform((v2) => new Date(v2))).optional(),
39378
- last_updated_by: nullableType(stringType()).optional()
39376
+ contact_tags: nullableType(lazyType(() => DirectoryMemberCreateContactTags$inboundSchema)).optional()
39379
39377
  }).transform((v2) => {
39380
39378
  return remap(v2, {
39381
- contact_tags: "contactTags",
39382
- updated_at: "updatedAt",
39383
- last_updated_by: "lastUpdatedBy"
39379
+ contact_tags: "contactTags"
39384
39380
  });
39385
39381
  });
39386
39382
  DirectoryMemberCreate$outboundSchema = objectType({
39387
39383
  name: stringType(),
39388
39384
  type: stringType(),
39389
39385
  extensions: nullableType(arrayType(DirectoryExtension$outboundSchema)).optional(),
39390
- contactTags: nullableType(lazyType(() => DirectoryMemberCreateContactTags$outboundSchema)).optional(),
39391
- updatedAt: nullableType(dateType().transform((v2) => v2.toISOString())).optional(),
39392
- lastUpdatedBy: nullableType(stringType()).optional()
39386
+ contactTags: nullableType(lazyType(() => DirectoryMemberCreateContactTags$outboundSchema)).optional()
39393
39387
  }).transform((v2) => {
39394
39388
  return remap(v2, {
39395
- contactTags: "contact_tags",
39396
- updatedAt: "updated_at",
39397
- lastUpdatedBy: "last_updated_by"
39389
+ contactTags: "contact_tags"
39398
39390
  });
39399
39391
  });
39400
39392
  ((DirectoryMemberCreate$) => {
@@ -39410,6 +39402,7 @@ var init_directorymemberproperties = __esm(() => {
39410
39402
  DirectoryMemberProperties = {
39411
39403
  Id: "id",
39412
39404
  Name: "name",
39405
+ NameExact: "name_exact",
39413
39406
  Type: "type",
39414
39407
  Extensions: "extensions",
39415
39408
  ContactTags: "contact_tags",
@@ -65150,7 +65143,7 @@ Generate voice sample.`,
65150
65143
  function createMCPServer(deps) {
65151
65144
  const server = new McpServer({
65152
65145
  name: "SyllableSDK",
65153
- version: "1.0.7-rc.2"
65146
+ version: "1.0.7-rc.4"
65154
65147
  });
65155
65148
  const client = new SyllableSDKCore({
65156
65149
  apiKeyHeader: deps.apiKeyHeader,
@@ -66682,7 +66675,7 @@ var routes = ln({
66682
66675
  var app = _e(routes, {
66683
66676
  name: "mcp",
66684
66677
  versionInfo: {
66685
- currentVersion: "1.0.7-rc.2"
66678
+ currentVersion: "1.0.7-rc.4"
66686
66679
  }
66687
66680
  });
66688
66681
  Yt(app, process3.argv.slice(2), buildContext(process3));
@@ -66690,5 +66683,5 @@ export {
66690
66683
  app
66691
66684
  };
66692
66685
 
66693
- //# debugId=EB872A1861D93C0D64756E2164756E21
66686
+ //# debugId=6E8FFFAE7C46031D64756E2164756E21
66694
66687
  //# sourceMappingURL=mcp-server.js.map