syllable-sdk 1.0.16-rc.7 → 1.0.16-rc.8

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.
Files changed (86) hide show
  1. package/bin/mcp-server.js +663 -548
  2. package/bin/mcp-server.js.map +21 -18
  3. package/examples/package-lock.json +1 -1
  4. package/funcs/directoryCreate.d.ts +2 -1
  5. package/funcs/directoryCreate.d.ts.map +1 -1
  6. package/funcs/directoryCreate.js +9 -2
  7. package/funcs/directoryCreate.js.map +1 -1
  8. package/funcs/directoryDirectoryMemberDownload.d.ts +3 -1
  9. package/funcs/directoryDirectoryMemberDownload.d.ts.map +1 -1
  10. package/funcs/directoryDirectoryMemberDownload.js +23 -5
  11. package/funcs/directoryDirectoryMemberDownload.js.map +1 -1
  12. package/funcs/directoryGetById.js +4 -0
  13. package/funcs/directoryGetById.js.map +1 -1
  14. package/funcs/directoryList.js +1 -0
  15. package/funcs/directoryList.js.map +1 -1
  16. package/funcs/directoryUpdate.js +4 -0
  17. package/funcs/directoryUpdate.js.map +1 -1
  18. package/jsr.json +1 -1
  19. package/lib/config.d.ts +4 -4
  20. package/lib/config.js +4 -4
  21. package/mcp-server/mcp-server.js +1 -1
  22. package/mcp-server/server.js +1 -1
  23. package/mcp-server/tools/directoryCreate.d.ts +2 -2
  24. package/mcp-server/tools/directoryCreate.js +2 -2
  25. package/mcp-server/tools/directoryCreate.js.map +1 -1
  26. package/mcp-server/tools/directoryDirectoryMemberDownload.d.ts +6 -1
  27. package/mcp-server/tools/directoryDirectoryMemberDownload.d.ts.map +1 -1
  28. package/mcp-server/tools/directoryDirectoryMemberDownload.js +40 -2
  29. package/mcp-server/tools/directoryDirectoryMemberDownload.js.map +1 -1
  30. package/models/components/directoryresponseformat.d.ts +18 -0
  31. package/models/components/directoryresponseformat.d.ts.map +1 -0
  32. package/models/components/directoryresponseformat.js +52 -0
  33. package/models/components/directoryresponseformat.js.map +1 -0
  34. package/models/components/index.d.ts +1 -0
  35. package/models/components/index.d.ts.map +1 -1
  36. package/models/components/index.js +1 -0
  37. package/models/components/index.js.map +1 -1
  38. package/models/operations/directorymembercreate.d.ts +23 -0
  39. package/models/operations/directorymembercreate.d.ts.map +1 -0
  40. package/models/operations/directorymembercreate.js +72 -0
  41. package/models/operations/directorymembercreate.js.map +1 -0
  42. package/models/operations/directorymemberdownload.d.ts +21 -0
  43. package/models/operations/directorymemberdownload.d.ts.map +1 -0
  44. package/models/operations/directorymemberdownload.js +68 -0
  45. package/models/operations/directorymemberdownload.js.map +1 -0
  46. package/models/operations/directorymembergetbyid.d.ts +6 -0
  47. package/models/operations/directorymembergetbyid.d.ts.map +1 -1
  48. package/models/operations/directorymembergetbyid.js +5 -0
  49. package/models/operations/directorymembergetbyid.js.map +1 -1
  50. package/models/operations/directorymemberlist.d.ts +14 -9
  51. package/models/operations/directorymemberlist.d.ts.map +1 -1
  52. package/models/operations/directorymemberlist.js +4 -0
  53. package/models/operations/directorymemberlist.js.map +1 -1
  54. package/models/operations/directorymemberupdate.d.ts +5 -0
  55. package/models/operations/directorymemberupdate.d.ts.map +1 -1
  56. package/models/operations/directorymemberupdate.js +4 -0
  57. package/models/operations/directorymemberupdate.js.map +1 -1
  58. package/models/operations/index.d.ts +2 -0
  59. package/models/operations/index.d.ts.map +1 -1
  60. package/models/operations/index.js +2 -0
  61. package/models/operations/index.js.map +1 -1
  62. package/openapi.json +136 -79
  63. package/package.json +1 -1
  64. package/sdk/directory.d.ts +2 -2
  65. package/sdk/directory.d.ts.map +1 -1
  66. package/sdk/directory.js +2 -2
  67. package/sdk/directory.js.map +1 -1
  68. package/src/funcs/directoryCreate.ts +14 -5
  69. package/src/funcs/directoryDirectoryMemberDownload.ts +35 -2
  70. package/src/funcs/directoryGetById.ts +6 -1
  71. package/src/funcs/directoryList.ts +1 -0
  72. package/src/funcs/directoryUpdate.ts +6 -1
  73. package/src/lib/config.ts +4 -4
  74. package/src/mcp-server/mcp-server.ts +1 -1
  75. package/src/mcp-server/server.ts +1 -1
  76. package/src/mcp-server/tools/directoryCreate.ts +2 -2
  77. package/src/mcp-server/tools/directoryDirectoryMemberDownload.ts +11 -2
  78. package/src/models/components/directoryresponseformat.ts +29 -0
  79. package/src/models/components/index.ts +1 -0
  80. package/src/models/operations/directorymembercreate.ts +72 -0
  81. package/src/models/operations/directorymemberdownload.ts +66 -0
  82. package/src/models/operations/directorymembergetbyid.ts +10 -0
  83. package/src/models/operations/directorymemberlist.ts +18 -9
  84. package/src/models/operations/directorymemberupdate.ts +9 -0
  85. package/src/models/operations/index.ts +2 -0
  86. package/src/sdk/directory.ts +3 -1
package/bin/mcp-server.js CHANGED
@@ -34418,10 +34418,10 @@ var init_config = __esm(() => {
34418
34418
  ];
34419
34419
  SDK_METADATA = {
34420
34420
  language: "typescript",
34421
- openapiDocVersion: "0.0.2",
34422
- sdkVersion: "1.0.16-rc.7",
34423
- genVersion: "2.779.2",
34424
- userAgent: "speakeasy-sdk/typescript 1.0.16-rc.7 2.779.2 0.0.2 syllable-sdk"
34421
+ openapiDocVersion: "0.0.3",
34422
+ sdkVersion: "1.0.16-rc.8",
34423
+ genVersion: "2.781.2",
34424
+ userAgent: "speakeasy-sdk/typescript 1.0.16-rc.8 2.781.2 0.0.3 syllable-sdk"
34425
34425
  };
34426
34426
  });
34427
34427
 
@@ -40697,6 +40697,18 @@ var init_directorymemberupdate = __esm(() => {
40697
40697
  });
40698
40698
  });
40699
40699
 
40700
+ // src/models/components/directoryresponseformat.ts
40701
+ var DirectoryResponseFormat, DirectoryResponseFormat$inboundSchema, DirectoryResponseFormat$outboundSchema;
40702
+ var init_directoryresponseformat = __esm(() => {
40703
+ init_v3();
40704
+ DirectoryResponseFormat = {
40705
+ Normalized: "normalized",
40706
+ Raw: "raw"
40707
+ };
40708
+ DirectoryResponseFormat$inboundSchema = nativeEnumType(DirectoryResponseFormat);
40709
+ DirectoryResponseFormat$outboundSchema = DirectoryResponseFormat$inboundSchema;
40710
+ });
40711
+
40700
40712
  // src/models/components/event.ts
40701
40713
  var Attributes$inboundSchema, Attributes$outboundSchema, Event$inboundSchema, Event$outboundSchema;
40702
40714
  var init_event = __esm(() => {
@@ -45264,6 +45276,7 @@ var init_components = __esm(() => {
45264
45276
  init_directorymemberproperties();
45265
45277
  init_directorymembertestresponse();
45266
45278
  init_directorymemberupdate();
45279
+ init_directoryresponseformat();
45267
45280
  init_event();
45268
45281
  init_eventproperties();
45269
45282
  init_eventtask();
@@ -46375,6 +46388,32 @@ var init_datasourceslist = __esm(() => {
46375
46388
  });
46376
46389
  });
46377
46390
 
46391
+ // src/models/operations/directorymembercreate.ts
46392
+ var DirectoryMemberCreateRequest$inboundSchema, DirectoryMemberCreateRequest$outboundSchema;
46393
+ var init_directorymembercreate2 = __esm(() => {
46394
+ init_v3();
46395
+ init_primitives();
46396
+ init_components();
46397
+ DirectoryMemberCreateRequest$inboundSchema = objectType({
46398
+ response_format: DirectoryResponseFormat$inboundSchema.optional(),
46399
+ DirectoryMemberCreate: DirectoryMemberCreate$inboundSchema
46400
+ }).transform((v2) => {
46401
+ return remap(v2, {
46402
+ response_format: "responseFormat",
46403
+ DirectoryMemberCreate: "directoryMemberCreate"
46404
+ });
46405
+ });
46406
+ DirectoryMemberCreateRequest$outboundSchema = objectType({
46407
+ responseFormat: DirectoryResponseFormat$outboundSchema.optional(),
46408
+ directoryMemberCreate: DirectoryMemberCreate$outboundSchema
46409
+ }).transform((v2) => {
46410
+ return remap(v2, {
46411
+ responseFormat: "response_format",
46412
+ directoryMemberCreate: "DirectoryMemberCreate"
46413
+ });
46414
+ });
46415
+ });
46416
+
46378
46417
  // src/models/operations/directorymemberdelete.ts
46379
46418
  var DirectoryMemberDeleteRequest$inboundSchema, DirectoryMemberDeleteRequest$outboundSchema;
46380
46419
  var init_directorymemberdelete = __esm(() => {
@@ -46396,23 +46435,50 @@ var init_directorymemberdelete = __esm(() => {
46396
46435
  });
46397
46436
  });
46398
46437
 
46438
+ // src/models/operations/directorymemberdownload.ts
46439
+ var DirectoryMemberDownloadRequest$inboundSchema, DirectoryMemberDownloadRequest$outboundSchema;
46440
+ var init_directorymemberdownload = __esm(() => {
46441
+ init_v3();
46442
+ init_primitives();
46443
+ init_components();
46444
+ DirectoryMemberDownloadRequest$inboundSchema = objectType({
46445
+ response_format: DirectoryResponseFormat$inboundSchema.optional()
46446
+ }).transform((v2) => {
46447
+ return remap(v2, {
46448
+ response_format: "responseFormat"
46449
+ });
46450
+ });
46451
+ DirectoryMemberDownloadRequest$outboundSchema = objectType({
46452
+ responseFormat: DirectoryResponseFormat$outboundSchema.optional()
46453
+ }).transform((v2) => {
46454
+ return remap(v2, {
46455
+ responseFormat: "response_format"
46456
+ });
46457
+ });
46458
+ });
46459
+
46399
46460
  // src/models/operations/directorymembergetbyid.ts
46400
46461
  var DirectoryMemberGetByIdRequest$inboundSchema, DirectoryMemberGetByIdRequest$outboundSchema;
46401
46462
  var init_directorymembergetbyid = __esm(() => {
46402
46463
  init_v3();
46403
46464
  init_primitives();
46465
+ init_components();
46404
46466
  DirectoryMemberGetByIdRequest$inboundSchema = objectType({
46405
- member_id: numberType().int()
46467
+ member_id: numberType().int(),
46468
+ response_format: DirectoryResponseFormat$inboundSchema.optional()
46406
46469
  }).transform((v2) => {
46407
46470
  return remap(v2, {
46408
- member_id: "memberId"
46471
+ member_id: "memberId",
46472
+ response_format: "responseFormat"
46409
46473
  });
46410
46474
  });
46411
46475
  DirectoryMemberGetByIdRequest$outboundSchema = objectType({
46412
- memberId: numberType().int()
46476
+ memberId: numberType().int(),
46477
+ responseFormat: DirectoryResponseFormat$outboundSchema.optional()
46413
46478
  }).transform((v2) => {
46414
46479
  return remap(v2, {
46415
- memberId: "member_id"
46480
+ memberId: "member_id",
46481
+ responseFormat: "response_format"
46416
46482
  });
46417
46483
  });
46418
46484
  });
@@ -46424,6 +46490,7 @@ var init_directorymemberlist = __esm(() => {
46424
46490
  init_primitives();
46425
46491
  init_components();
46426
46492
  DirectoryMemberListRequest$inboundSchema = objectType({
46493
+ response_format: DirectoryResponseFormat$inboundSchema.optional(),
46427
46494
  page: nullableType(numberType().int()).optional(),
46428
46495
  limit: numberType().int().default(25),
46429
46496
  search_fields: arrayType(DirectoryMemberProperties$inboundSchema).optional(),
@@ -46435,6 +46502,7 @@ var init_directorymemberlist = __esm(() => {
46435
46502
  end_datetime: nullableType(stringType()).optional()
46436
46503
  }).transform((v2) => {
46437
46504
  return remap(v2, {
46505
+ response_format: "responseFormat",
46438
46506
  search_fields: "searchFields",
46439
46507
  search_field_values: "searchFieldValues",
46440
46508
  order_by: "orderBy",
@@ -46444,6 +46512,7 @@ var init_directorymemberlist = __esm(() => {
46444
46512
  });
46445
46513
  });
46446
46514
  DirectoryMemberListRequest$outboundSchema = objectType({
46515
+ responseFormat: DirectoryResponseFormat$outboundSchema.optional(),
46447
46516
  page: nullableType(numberType().int()).optional(),
46448
46517
  limit: numberType().int().default(25),
46449
46518
  searchFields: arrayType(DirectoryMemberProperties$outboundSchema).optional(),
@@ -46455,6 +46524,7 @@ var init_directorymemberlist = __esm(() => {
46455
46524
  endDatetime: nullableType(stringType()).optional()
46456
46525
  }).transform((v2) => {
46457
46526
  return remap(v2, {
46527
+ responseFormat: "response_format",
46458
46528
  searchFields: "search_fields",
46459
46529
  searchFieldValues: "search_field_values",
46460
46530
  orderBy: "order_by",
@@ -46501,19 +46571,23 @@ var init_directorymemberupdate2 = __esm(() => {
46501
46571
  init_components();
46502
46572
  DirectoryMemberUpdateRequest$inboundSchema = objectType({
46503
46573
  member_id: numberType().int(),
46574
+ response_format: DirectoryResponseFormat$inboundSchema.optional(),
46504
46575
  DirectoryMemberUpdate: DirectoryMemberUpdate$inboundSchema
46505
46576
  }).transform((v2) => {
46506
46577
  return remap(v2, {
46507
46578
  member_id: "memberId",
46579
+ response_format: "responseFormat",
46508
46580
  DirectoryMemberUpdate: "directoryMemberUpdate"
46509
46581
  });
46510
46582
  });
46511
46583
  DirectoryMemberUpdateRequest$outboundSchema = objectType({
46512
46584
  memberId: numberType().int(),
46585
+ responseFormat: DirectoryResponseFormat$outboundSchema.optional(),
46513
46586
  directoryMemberUpdate: DirectoryMemberUpdate$outboundSchema
46514
46587
  }).transform((v2) => {
46515
46588
  return remap(v2, {
46516
46589
  memberId: "member_id",
46590
+ responseFormat: "response_format",
46517
46591
  directoryMemberUpdate: "DirectoryMemberUpdate"
46518
46592
  });
46519
46593
  });
@@ -48744,7 +48818,9 @@ var init_operations = __esm(() => {
48744
48818
  init_datasourcesdelete();
48745
48819
  init_datasourcesgetbyid();
48746
48820
  init_datasourceslist();
48821
+ init_directorymembercreate2();
48747
48822
  init_directorymemberdelete();
48823
+ init_directorymemberdownload();
48748
48824
  init_directorymembergetbyid();
48749
48825
  init_directorymemberlist();
48750
48826
  init_directorymembertestextension();
@@ -52998,13 +53074,18 @@ function directoryCreate(client, request, options) {
52998
53074
  return new APIPromise($do42(client, request, options));
52999
53075
  }
53000
53076
  async function $do42(client, request, options) {
53001
- const parsed = safeParse(request, (value) => DirectoryMemberCreate$outboundSchema.parse(value), "Input validation failed");
53077
+ const parsed = safeParse(request, (value) => DirectoryMemberCreateRequest$outboundSchema.parse(value), "Input validation failed");
53002
53078
  if (!parsed.ok) {
53003
53079
  return [parsed, { status: "invalid" }];
53004
53080
  }
53005
53081
  const payload = parsed.value;
53006
- const body = encodeJSON("body", payload, { explode: true });
53082
+ const body = encodeJSON("body", payload.DirectoryMemberCreate, {
53083
+ explode: true
53084
+ });
53007
53085
  const path = pathToFunc("/api/v1/directory_members/")();
53086
+ const query = encodeFormQuery({
53087
+ response_format: payload.response_format
53088
+ });
53008
53089
  const headers = new Headers(compactMap({
53009
53090
  "Content-Type": "application/json",
53010
53091
  Accept: "application/json"
@@ -53028,6 +53109,7 @@ async function $do42(client, request, options) {
53028
53109
  baseURL: options?.serverURL,
53029
53110
  path,
53030
53111
  headers,
53112
+ query,
53031
53113
  body,
53032
53114
  userAgent: client._options.userAgent,
53033
53115
  timeoutMs: options?.timeoutMs || client._options.timeoutMs || -1
@@ -53064,6 +53146,7 @@ var init_directoryCreate = __esm(() => {
53064
53146
  init_url();
53065
53147
  init_components();
53066
53148
  init_errors2();
53149
+ init_operations();
53067
53150
  init_async();
53068
53151
  });
53069
53152
 
@@ -53071,10 +53154,10 @@ var init_directoryCreate = __esm(() => {
53071
53154
  var args37, tool$directoryCreate;
53072
53155
  var init_directoryCreate2 = __esm(() => {
53073
53156
  init_directoryCreate();
53074
- init_components();
53157
+ init_operations();
53075
53158
  init_tools();
53076
53159
  args37 = {
53077
- request: DirectoryMemberCreate$inboundSchema
53160
+ request: DirectoryMemberCreateRequest$inboundSchema
53078
53161
  };
53079
53162
  tool$directoryCreate = {
53080
53163
  name: "directory-create",
@@ -53390,11 +53473,20 @@ Update Directory Members in chunks of 100.`,
53390
53473
  });
53391
53474
 
53392
53475
  // src/funcs/directoryDirectoryMemberDownload.ts
53393
- function directoryDirectoryMemberDownload(client, options) {
53394
- return new APIPromise($do45(client, options));
53476
+ function directoryDirectoryMemberDownload(client, request, options) {
53477
+ return new APIPromise($do45(client, request, options));
53395
53478
  }
53396
- async function $do45(client, options) {
53479
+ async function $do45(client, request, options) {
53480
+ const parsed = safeParse(request, (value) => DirectoryMemberDownloadRequest$outboundSchema.parse(value), "Input validation failed");
53481
+ if (!parsed.ok) {
53482
+ return [parsed, { status: "invalid" }];
53483
+ }
53484
+ const payload = parsed.value;
53485
+ const body = null;
53397
53486
  const path = pathToFunc("/api/v1/directory_members/download/")();
53487
+ const query = encodeFormQuery({
53488
+ response_format: payload.response_format
53489
+ });
53398
53490
  const headers = new Headers(compactMap({
53399
53491
  Accept: "application/json"
53400
53492
  }));
@@ -53417,6 +53509,8 @@ async function $do45(client, options) {
53417
53509
  baseURL: options?.serverURL,
53418
53510
  path,
53419
53511
  headers,
53512
+ query,
53513
+ body,
53420
53514
  userAgent: client._options.userAgent,
53421
53515
  timeoutMs: options?.timeoutMs || client._options.timeoutMs || -1
53422
53516
  }, options);
@@ -53426,7 +53520,7 @@ async function $do45(client, options) {
53426
53520
  const req = requestRes.value;
53427
53521
  const doResult = await client._do(req, {
53428
53522
  context: context2,
53429
- errorCodes: ["4XX", "500", "5XX"],
53523
+ errorCodes: ["422", "4XX", "500", "5XX"],
53430
53524
  retryConfig: context2.retryConfig,
53431
53525
  retryCodes: context2.retryCodes
53432
53526
  });
@@ -53434,7 +53528,10 @@ async function $do45(client, options) {
53434
53528
  return [doResult, { status: "request-error", request: req }];
53435
53529
  }
53436
53530
  const response = doResult.value;
53437
- const [result] = await match(json(200, anyType()), fail("4XX"), fail([500, "5XX"]))(response, req);
53531
+ const responseFields = {
53532
+ HttpMeta: { Response: response, Request: req }
53533
+ };
53534
+ const [result] = await match(json(200, anyType()), jsonErr(422, HTTPValidationError$inboundSchema), fail("4XX"), fail([500, "5XX"]))(response, req, { extraFields: responseFields });
53438
53535
  if (!result.ok) {
53439
53536
  return [result, { status: "complete", request: req, response }];
53440
53537
  }
@@ -53442,25 +53539,34 @@ async function $do45(client, options) {
53442
53539
  }
53443
53540
  var init_directoryDirectoryMemberDownload = __esm(() => {
53444
53541
  init_v3();
53542
+ init_encodings();
53445
53543
  init_matchers();
53446
53544
  init_primitives();
53545
+ init_schemas();
53447
53546
  init_security();
53448
53547
  init_url();
53548
+ init_errors2();
53549
+ init_operations();
53449
53550
  init_async();
53450
53551
  });
53451
53552
 
53452
53553
  // src/mcp-server/tools/directoryDirectoryMemberDownload.ts
53453
- var tool$directoryDirectoryMemberDownload;
53554
+ var args40, tool$directoryDirectoryMemberDownload;
53454
53555
  var init_directoryDirectoryMemberDownload2 = __esm(() => {
53455
53556
  init_directoryDirectoryMemberDownload();
53557
+ init_operations();
53456
53558
  init_tools();
53559
+ args40 = {
53560
+ request: DirectoryMemberDownloadRequest$inboundSchema
53561
+ };
53457
53562
  tool$directoryDirectoryMemberDownload = {
53458
53563
  name: "directory-directory-member-download",
53459
53564
  description: `Download Directory Members
53460
53565
 
53461
53566
  Download the entire directory as a JSON file.`,
53462
- tool: async (client, ctx) => {
53463
- const [result, apiCall] = await directoryDirectoryMemberDownload(client, { fetchOptions: { signal: ctx.signal } }).$inspect();
53567
+ args: args40,
53568
+ tool: async (client, args41, ctx) => {
53569
+ const [result, apiCall] = await directoryDirectoryMemberDownload(client, args41.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
53464
53570
  if (!result.ok) {
53465
53571
  return {
53466
53572
  content: [{ type: "text", text: result.error.message }],
@@ -53559,12 +53665,12 @@ var init_directoryDirectoryMemberTestExtension = __esm(() => {
53559
53665
  });
53560
53666
 
53561
53667
  // src/mcp-server/tools/directoryDirectoryMemberTestExtension.ts
53562
- var args40, tool$directoryDirectoryMemberTestExtension;
53668
+ var args41, tool$directoryDirectoryMemberTestExtension;
53563
53669
  var init_directoryDirectoryMemberTestExtension2 = __esm(() => {
53564
53670
  init_directoryDirectoryMemberTestExtension();
53565
53671
  init_operations();
53566
53672
  init_tools();
53567
- args40 = {
53673
+ args41 = {
53568
53674
  request: DirectoryMemberTestExtensionRequest$inboundSchema
53569
53675
  };
53570
53676
  tool$directoryDirectoryMemberTestExtension = {
@@ -53572,9 +53678,9 @@ var init_directoryDirectoryMemberTestExtension2 = __esm(() => {
53572
53678
  description: `Test Directory Member Extension
53573
53679
 
53574
53680
  Test directory member extension at a specific timestamp and language.`,
53575
- args: args40,
53576
- tool: async (client, args41, ctx) => {
53577
- const [result, apiCall] = await directoryDirectoryMemberTestExtension(client, args41.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
53681
+ args: args41,
53682
+ tool: async (client, args42, ctx) => {
53683
+ const [result, apiCall] = await directoryDirectoryMemberTestExtension(client, args42.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
53578
53684
  if (!result.ok) {
53579
53685
  return {
53580
53686
  content: [{ type: "text", text: result.error.message }],
@@ -53605,6 +53711,9 @@ async function $do47(client, request, options) {
53605
53711
  })
53606
53712
  };
53607
53713
  const path = pathToFunc("/api/v1/directory_members/{member_id}")(pathParams);
53714
+ const query = encodeFormQuery({
53715
+ response_format: payload.response_format
53716
+ });
53608
53717
  const headers = new Headers(compactMap({
53609
53718
  Accept: "application/json"
53610
53719
  }));
@@ -53627,6 +53736,7 @@ async function $do47(client, request, options) {
53627
53736
  baseURL: options?.serverURL,
53628
53737
  path,
53629
53738
  headers,
53739
+ query,
53630
53740
  body,
53631
53741
  userAgent: client._options.userAgent,
53632
53742
  timeoutMs: options?.timeoutMs || client._options.timeoutMs || -1
@@ -53668,12 +53778,12 @@ var init_directoryGetById = __esm(() => {
53668
53778
  });
53669
53779
 
53670
53780
  // src/mcp-server/tools/directoryGetById.ts
53671
- var args41, tool$directoryGetById;
53781
+ var args42, tool$directoryGetById;
53672
53782
  var init_directoryGetById2 = __esm(() => {
53673
53783
  init_directoryGetById();
53674
53784
  init_operations();
53675
53785
  init_tools();
53676
- args41 = {
53786
+ args42 = {
53677
53787
  request: DirectoryMemberGetByIdRequest$inboundSchema
53678
53788
  };
53679
53789
  tool$directoryGetById = {
@@ -53681,9 +53791,9 @@ var init_directoryGetById2 = __esm(() => {
53681
53791
  description: `Get Directory Member By Id
53682
53792
 
53683
53793
  Get a DirectoryMember by ID.`,
53684
- args: args41,
53685
- tool: async (client, args42, ctx) => {
53686
- const [result, apiCall] = await directoryGetById(client, args42.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
53794
+ args: args42,
53795
+ tool: async (client, args43, ctx) => {
53796
+ const [result, apiCall] = await directoryGetById(client, args43.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
53687
53797
  if (!result.ok) {
53688
53798
  return {
53689
53799
  content: [{ type: "text", text: result.error.message }],
@@ -53715,6 +53825,7 @@ async function $do48(client, request, options) {
53715
53825
  order_by: payload.order_by,
53716
53826
  order_by_direction: payload.order_by_direction,
53717
53827
  page: payload.page,
53828
+ response_format: payload.response_format,
53718
53829
  search_field_values: payload.search_field_values,
53719
53830
  search_fields: payload.search_fields,
53720
53831
  start_datetime: payload.start_datetime
@@ -53783,12 +53894,12 @@ var init_directoryList = __esm(() => {
53783
53894
  });
53784
53895
 
53785
53896
  // src/mcp-server/tools/directoryList.ts
53786
- var args42, tool$directoryList;
53897
+ var args43, tool$directoryList;
53787
53898
  var init_directoryList2 = __esm(() => {
53788
53899
  init_directoryList();
53789
53900
  init_operations();
53790
53901
  init_tools();
53791
- args42 = {
53902
+ args43 = {
53792
53903
  request: DirectoryMemberListRequest$inboundSchema
53793
53904
  };
53794
53905
  tool$directoryList = {
@@ -53796,9 +53907,9 @@ var init_directoryList2 = __esm(() => {
53796
53907
  description: `Directory Member List
53797
53908
 
53798
53909
  List the existing directory_members`,
53799
- args: args42,
53800
- tool: async (client, args43, ctx) => {
53801
- const [result, apiCall] = await directoryList(client, args43.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
53910
+ args: args43,
53911
+ tool: async (client, args44, ctx) => {
53912
+ const [result, apiCall] = await directoryList(client, args44.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
53802
53913
  if (!result.ok) {
53803
53914
  return {
53804
53915
  content: [{ type: "text", text: result.error.message }],
@@ -53831,6 +53942,9 @@ async function $do49(client, request, options) {
53831
53942
  })
53832
53943
  };
53833
53944
  const path = pathToFunc("/api/v1/directory_members/{member_id}")(pathParams);
53945
+ const query = encodeFormQuery({
53946
+ response_format: payload.response_format
53947
+ });
53834
53948
  const headers = new Headers(compactMap({
53835
53949
  "Content-Type": "application/json",
53836
53950
  Accept: "application/json"
@@ -53854,6 +53968,7 @@ async function $do49(client, request, options) {
53854
53968
  baseURL: options?.serverURL,
53855
53969
  path,
53856
53970
  headers,
53971
+ query,
53857
53972
  body,
53858
53973
  userAgent: client._options.userAgent,
53859
53974
  timeoutMs: options?.timeoutMs || client._options.timeoutMs || -1
@@ -53895,12 +54010,12 @@ var init_directoryUpdate = __esm(() => {
53895
54010
  });
53896
54011
 
53897
54012
  // src/mcp-server/tools/directoryUpdate.ts
53898
- var args43, tool$directoryUpdate;
54013
+ var args44, tool$directoryUpdate;
53899
54014
  var init_directoryUpdate2 = __esm(() => {
53900
54015
  init_directoryUpdate();
53901
54016
  init_operations();
53902
54017
  init_tools();
53903
- args43 = {
54018
+ args44 = {
53904
54019
  request: DirectoryMemberUpdateRequest$inboundSchema
53905
54020
  };
53906
54021
  tool$directoryUpdate = {
@@ -53908,9 +54023,9 @@ var init_directoryUpdate2 = __esm(() => {
53908
54023
  description: `Update Directory Member
53909
54024
 
53910
54025
  Update a DirectoryMember.`,
53911
- args: args43,
53912
- tool: async (client, args44, ctx) => {
53913
- const [result, apiCall] = await directoryUpdate(client, args44.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
54026
+ args: args44,
54027
+ tool: async (client, args45, ctx) => {
54028
+ const [result, apiCall] = await directoryUpdate(client, args45.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
53914
54029
  if (!result.ok) {
53915
54030
  return {
53916
54031
  content: [{ type: "text", text: result.error.message }],
@@ -54010,20 +54125,20 @@ var init_eventsList = __esm(() => {
54010
54125
  });
54011
54126
 
54012
54127
  // src/mcp-server/tools/eventsList.ts
54013
- var args44, tool$eventsList;
54128
+ var args45, tool$eventsList;
54014
54129
  var init_eventsList2 = __esm(() => {
54015
54130
  init_eventsList();
54016
54131
  init_operations();
54017
54132
  init_tools();
54018
- args44 = {
54133
+ args45 = {
54019
54134
  request: EventsListRequest$inboundSchema
54020
54135
  };
54021
54136
  tool$eventsList = {
54022
54137
  name: "events-list",
54023
54138
  description: `Events List`,
54024
- args: args44,
54025
- tool: async (client, args45, ctx) => {
54026
- const [result, apiCall] = await eventsList(client, args45.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
54139
+ args: args45,
54140
+ tool: async (client, args46, ctx) => {
54141
+ const [result, apiCall] = await eventsList(client, args46.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
54027
54142
  if (!result.ok) {
54028
54143
  return {
54029
54144
  content: [{ type: "text", text: result.error.message }],
@@ -54111,12 +54226,12 @@ var init_incidentsCreate = __esm(() => {
54111
54226
  });
54112
54227
 
54113
54228
  // src/mcp-server/tools/incidentsCreate.ts
54114
- var args45, tool$incidentsCreate;
54229
+ var args46, tool$incidentsCreate;
54115
54230
  var init_incidentsCreate2 = __esm(() => {
54116
54231
  init_incidentsCreate();
54117
54232
  init_components();
54118
54233
  init_tools();
54119
- args45 = {
54234
+ args46 = {
54120
54235
  request: IncidentCreateRequest$inboundSchema
54121
54236
  };
54122
54237
  tool$incidentsCreate = {
@@ -54124,9 +54239,9 @@ var init_incidentsCreate2 = __esm(() => {
54124
54239
  description: `Create Incident
54125
54240
 
54126
54241
  Create a new incident`,
54127
- args: args45,
54128
- tool: async (client, args46, ctx) => {
54129
- const [result, apiCall] = await incidentsCreate(client, args46.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
54242
+ args: args46,
54243
+ tool: async (client, args47, ctx) => {
54244
+ const [result, apiCall] = await incidentsCreate(client, args47.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
54130
54245
  if (!result.ok) {
54131
54246
  return {
54132
54247
  content: [{ type: "text", text: result.error.message }],
@@ -54224,12 +54339,12 @@ var init_incidentsDelete = __esm(() => {
54224
54339
  });
54225
54340
 
54226
54341
  // src/mcp-server/tools/incidentsDelete.ts
54227
- var args46, tool$incidentsDelete;
54342
+ var args47, tool$incidentsDelete;
54228
54343
  var init_incidentsDelete2 = __esm(() => {
54229
54344
  init_incidentsDelete();
54230
54345
  init_operations();
54231
54346
  init_tools();
54232
- args46 = {
54347
+ args47 = {
54233
54348
  request: IncidentDeleteRequest$inboundSchema
54234
54349
  };
54235
54350
  tool$incidentsDelete = {
@@ -54237,9 +54352,9 @@ var init_incidentsDelete2 = __esm(() => {
54237
54352
  description: `Delete Incident
54238
54353
 
54239
54354
  Delete an incident by ID`,
54240
- args: args46,
54241
- tool: async (client, args47, ctx) => {
54242
- const [result, apiCall] = await incidentsDelete(client, args47.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
54355
+ args: args47,
54356
+ tool: async (client, args48, ctx) => {
54357
+ const [result, apiCall] = await incidentsDelete(client, args48.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
54243
54358
  if (!result.ok) {
54244
54359
  return {
54245
54360
  content: [{ type: "text", text: result.error.message }],
@@ -54333,12 +54448,12 @@ var init_incidentsGetById = __esm(() => {
54333
54448
  });
54334
54449
 
54335
54450
  // src/mcp-server/tools/incidentsGetById.ts
54336
- var args47, tool$incidentsGetById;
54451
+ var args48, tool$incidentsGetById;
54337
54452
  var init_incidentsGetById2 = __esm(() => {
54338
54453
  init_incidentsGetById();
54339
54454
  init_operations();
54340
54455
  init_tools();
54341
- args47 = {
54456
+ args48 = {
54342
54457
  request: IncidentGetByIdRequest$inboundSchema
54343
54458
  };
54344
54459
  tool$incidentsGetById = {
@@ -54346,9 +54461,9 @@ var init_incidentsGetById2 = __esm(() => {
54346
54461
  description: `Get Incident By Id
54347
54462
 
54348
54463
  Get incident by ID`,
54349
- args: args47,
54350
- tool: async (client, args48, ctx) => {
54351
- const [result, apiCall] = await incidentsGetById(client, args48.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
54464
+ args: args48,
54465
+ tool: async (client, args49, ctx) => {
54466
+ const [result, apiCall] = await incidentsGetById(client, args49.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
54352
54467
  if (!result.ok) {
54353
54468
  return {
54354
54469
  content: [{ type: "text", text: result.error.message }],
@@ -54533,12 +54648,12 @@ var init_incidentsList = __esm(() => {
54533
54648
  });
54534
54649
 
54535
54650
  // src/mcp-server/tools/incidentsList.ts
54536
- var args48, tool$incidentsList;
54651
+ var args49, tool$incidentsList;
54537
54652
  var init_incidentsList2 = __esm(() => {
54538
54653
  init_incidentsList();
54539
54654
  init_operations();
54540
54655
  init_tools();
54541
- args48 = {
54656
+ args49 = {
54542
54657
  request: IncidentListRequest$inboundSchema
54543
54658
  };
54544
54659
  tool$incidentsList = {
@@ -54546,9 +54661,9 @@ var init_incidentsList2 = __esm(() => {
54546
54661
  description: `List Incidents
54547
54662
 
54548
54663
  List service incidents with pagination and filtering`,
54549
- args: args48,
54550
- tool: async (client, args49, ctx) => {
54551
- const [result, apiCall] = await incidentsList(client, args49.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
54664
+ args: args49,
54665
+ tool: async (client, args50, ctx) => {
54666
+ const [result, apiCall] = await incidentsList(client, args50.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
54552
54667
  if (!result.ok) {
54553
54668
  return {
54554
54669
  content: [{ type: "text", text: result.error.message }],
@@ -54636,12 +54751,12 @@ var init_incidentsUpdate = __esm(() => {
54636
54751
  });
54637
54752
 
54638
54753
  // src/mcp-server/tools/incidentsUpdate.ts
54639
- var args49, tool$incidentsUpdate;
54754
+ var args50, tool$incidentsUpdate;
54640
54755
  var init_incidentsUpdate2 = __esm(() => {
54641
54756
  init_incidentsUpdate();
54642
54757
  init_components();
54643
54758
  init_tools();
54644
- args49 = {
54759
+ args50 = {
54645
54760
  request: IncidentUpdateRequest$inboundSchema
54646
54761
  };
54647
54762
  tool$incidentsUpdate = {
@@ -54649,9 +54764,9 @@ var init_incidentsUpdate2 = __esm(() => {
54649
54764
  description: `Update Incident
54650
54765
 
54651
54766
  Update an existing incident`,
54652
- args: args49,
54653
- tool: async (client, args50, ctx) => {
54654
- const [result, apiCall] = await incidentsUpdate(client, args50.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
54767
+ args: args50,
54768
+ tool: async (client, args51, ctx) => {
54769
+ const [result, apiCall] = await incidentsUpdate(client, args51.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
54655
54770
  if (!result.ok) {
54656
54771
  return {
54657
54772
  content: [{ type: "text", text: result.error.message }],
@@ -54739,20 +54854,20 @@ var init_insightsFoldersCreate = __esm(() => {
54739
54854
  });
54740
54855
 
54741
54856
  // src/mcp-server/tools/insightsFoldersCreate.ts
54742
- var args50, tool$insightsFoldersCreate;
54857
+ var args51, tool$insightsFoldersCreate;
54743
54858
  var init_insightsFoldersCreate2 = __esm(() => {
54744
54859
  init_insightsFoldersCreate();
54745
54860
  init_components();
54746
54861
  init_tools();
54747
- args50 = {
54862
+ args51 = {
54748
54863
  request: InsightsFolderInput$inboundSchema
54749
54864
  };
54750
54865
  tool$insightsFoldersCreate = {
54751
54866
  name: "insights-folders-create",
54752
54867
  description: `Create Insights Upload Folder`,
54753
- args: args50,
54754
- tool: async (client, args51, ctx) => {
54755
- const [result, apiCall] = await insightsFoldersCreate(client, args51.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
54868
+ args: args51,
54869
+ tool: async (client, args52, ctx) => {
54870
+ const [result, apiCall] = await insightsFoldersCreate(client, args52.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
54756
54871
  if (!result.ok) {
54757
54872
  return {
54758
54873
  content: [{ type: "text", text: result.error.message }],
@@ -54846,20 +54961,20 @@ var init_insightsFoldersDelete = __esm(() => {
54846
54961
  });
54847
54962
 
54848
54963
  // src/mcp-server/tools/insightsFoldersDelete.ts
54849
- var args51, tool$insightsFoldersDelete;
54964
+ var args52, tool$insightsFoldersDelete;
54850
54965
  var init_insightsFoldersDelete2 = __esm(() => {
54851
54966
  init_insightsFoldersDelete();
54852
54967
  init_operations();
54853
54968
  init_tools();
54854
- args51 = {
54969
+ args52 = {
54855
54970
  request: InsightsFolderDeleteRequest$inboundSchema
54856
54971
  };
54857
54972
  tool$insightsFoldersDelete = {
54858
54973
  name: "insights-folders-delete",
54859
54974
  description: `Delete Insights Folder`,
54860
- args: args51,
54861
- tool: async (client, args52, ctx) => {
54862
- const [result, apiCall] = await insightsFoldersDelete(client, args52.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
54975
+ args: args52,
54976
+ tool: async (client, args53, ctx) => {
54977
+ const [result, apiCall] = await insightsFoldersDelete(client, args53.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
54863
54978
  if (!result.ok) {
54864
54979
  return {
54865
54980
  content: [{ type: "text", text: result.error.message }],
@@ -54953,20 +55068,20 @@ var init_insightsFoldersGetById = __esm(() => {
54953
55068
  });
54954
55069
 
54955
55070
  // src/mcp-server/tools/insightsFoldersGetById.ts
54956
- var args52, tool$insightsFoldersGetById;
55071
+ var args53, tool$insightsFoldersGetById;
54957
55072
  var init_insightsFoldersGetById2 = __esm(() => {
54958
55073
  init_insightsFoldersGetById();
54959
55074
  init_operations();
54960
55075
  init_tools();
54961
- args52 = {
55076
+ args53 = {
54962
55077
  request: InsightsFolderGetByIdRequest$inboundSchema
54963
55078
  };
54964
55079
  tool$insightsFoldersGetById = {
54965
55080
  name: "insights-folders-get-by-id",
54966
55081
  description: `Get Insights Folder Details`,
54967
- args: args52,
54968
- tool: async (client, args53, ctx) => {
54969
- const [result, apiCall] = await insightsFoldersGetById(client, args53.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
55082
+ args: args53,
55083
+ tool: async (client, args54, ctx) => {
55084
+ const [result, apiCall] = await insightsFoldersGetById(client, args54.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
54970
55085
  if (!result.ok) {
54971
55086
  return {
54972
55087
  content: [{ type: "text", text: result.error.message }],
@@ -55066,20 +55181,20 @@ var init_insightsFoldersList = __esm(() => {
55066
55181
  });
55067
55182
 
55068
55183
  // src/mcp-server/tools/insightsFoldersList.ts
55069
- var args53, tool$insightsFoldersList;
55184
+ var args54, tool$insightsFoldersList;
55070
55185
  var init_insightsFoldersList2 = __esm(() => {
55071
55186
  init_insightsFoldersList();
55072
55187
  init_operations();
55073
55188
  init_tools();
55074
- args53 = {
55189
+ args54 = {
55075
55190
  request: InsightsFolderListRequest$inboundSchema
55076
55191
  };
55077
55192
  tool$insightsFoldersList = {
55078
55193
  name: "insights-folders-list",
55079
55194
  description: `List Insights Upload Folders`,
55080
- args: args53,
55081
- tool: async (client, args54, ctx) => {
55082
- const [result, apiCall] = await insightsFoldersList(client, args54.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
55195
+ args: args54,
55196
+ tool: async (client, args55, ctx) => {
55197
+ const [result, apiCall] = await insightsFoldersList(client, args55.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
55083
55198
  if (!result.ok) {
55084
55199
  return {
55085
55200
  content: [{ type: "text", text: result.error.message }],
@@ -55185,20 +55300,20 @@ var init_insightsFoldersListFiles = __esm(() => {
55185
55300
  });
55186
55301
 
55187
55302
  // src/mcp-server/tools/insightsFoldersListFiles.ts
55188
- var args54, tool$insightsFoldersListFiles;
55303
+ var args55, tool$insightsFoldersListFiles;
55189
55304
  var init_insightsFoldersListFiles2 = __esm(() => {
55190
55305
  init_insightsFoldersListFiles();
55191
55306
  init_operations();
55192
55307
  init_tools();
55193
- args54 = {
55308
+ args55 = {
55194
55309
  request: InsightsUploadListFilesRequest$inboundSchema
55195
55310
  };
55196
55311
  tool$insightsFoldersListFiles = {
55197
55312
  name: "insights-folders-list-files",
55198
55313
  description: `Fetch Insights Upload Files`,
55199
- args: args54,
55200
- tool: async (client, args55, ctx) => {
55201
- const [result, apiCall] = await insightsFoldersListFiles(client, args55.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
55314
+ args: args55,
55315
+ tool: async (client, args56, ctx) => {
55316
+ const [result, apiCall] = await insightsFoldersListFiles(client, args56.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
55202
55317
  if (!result.ok) {
55203
55318
  return {
55204
55319
  content: [{ type: "text", text: result.error.message }],
@@ -55296,20 +55411,20 @@ var init_insightsFoldersMoveFiles = __esm(() => {
55296
55411
  });
55297
55412
 
55298
55413
  // src/mcp-server/tools/insightsFoldersMoveFiles.ts
55299
- var args55, tool$insightsFoldersMoveFiles;
55414
+ var args56, tool$insightsFoldersMoveFiles;
55300
55415
  var init_insightsFoldersMoveFiles2 = __esm(() => {
55301
55416
  init_insightsFoldersMoveFiles();
55302
55417
  init_operations();
55303
55418
  init_tools();
55304
- args55 = {
55419
+ args56 = {
55305
55420
  request: InsightsUploadMoveFilesRequest$inboundSchema
55306
55421
  };
55307
55422
  tool$insightsFoldersMoveFiles = {
55308
55423
  name: "insights-folders-move-files",
55309
55424
  description: `Move Insights Upload Files`,
55310
- args: args55,
55311
- tool: async (client, args56, ctx) => {
55312
- const [result, apiCall] = await insightsFoldersMoveFiles(client, args56.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
55425
+ args: args56,
55426
+ tool: async (client, args57, ctx) => {
55427
+ const [result, apiCall] = await insightsFoldersMoveFiles(client, args57.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
55313
55428
  if (!result.ok) {
55314
55429
  return {
55315
55430
  content: [{ type: "text", text: result.error.message }],
@@ -55406,20 +55521,20 @@ var init_insightsFoldersUpdate = __esm(() => {
55406
55521
  });
55407
55522
 
55408
55523
  // src/mcp-server/tools/insightsFoldersUpdate.ts
55409
- var args56, tool$insightsFoldersUpdate;
55524
+ var args57, tool$insightsFoldersUpdate;
55410
55525
  var init_insightsFoldersUpdate2 = __esm(() => {
55411
55526
  init_insightsFoldersUpdate();
55412
55527
  init_operations();
55413
55528
  init_tools();
55414
- args56 = {
55529
+ args57 = {
55415
55530
  request: InsightsFolderUpdateRequest$inboundSchema
55416
55531
  };
55417
55532
  tool$insightsFoldersUpdate = {
55418
55533
  name: "insights-folders-update",
55419
55534
  description: `Update Insights Folder`,
55420
- args: args56,
55421
- tool: async (client, args57, ctx) => {
55422
- const [result, apiCall] = await insightsFoldersUpdate(client, args57.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
55535
+ args: args57,
55536
+ tool: async (client, args58, ctx) => {
55537
+ const [result, apiCall] = await insightsFoldersUpdate(client, args58.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
55423
55538
  if (!result.ok) {
55424
55539
  return {
55425
55540
  content: [{ type: "text", text: result.error.message }],
@@ -55541,20 +55656,20 @@ var init_insightsFoldersUploadFile = __esm(() => {
55541
55656
  });
55542
55657
 
55543
55658
  // src/mcp-server/tools/insightsFoldersUploadFile.ts
55544
- var args57, tool$insightsFoldersUploadFile;
55659
+ var args58, tool$insightsFoldersUploadFile;
55545
55660
  var init_insightsFoldersUploadFile2 = __esm(() => {
55546
55661
  init_insightsFoldersUploadFile();
55547
55662
  init_operations();
55548
55663
  init_tools();
55549
- args57 = {
55664
+ args58 = {
55550
55665
  request: InsightsFolderUploadFileRequest$inboundSchema
55551
55666
  };
55552
55667
  tool$insightsFoldersUploadFile = {
55553
55668
  name: "insights-folders-upload-file",
55554
55669
  description: `Upload Insights Upload Folder`,
55555
- args: args57,
55556
- tool: async (client, args58, ctx) => {
55557
- const [result, apiCall] = await insightsFoldersUploadFile(client, args58.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
55670
+ args: args58,
55671
+ tool: async (client, args59, ctx) => {
55672
+ const [result, apiCall] = await insightsFoldersUploadFile(client, args59.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
55558
55673
  if (!result.ok) {
55559
55674
  return {
55560
55675
  content: [{ type: "text", text: result.error.message }],
@@ -55654,12 +55769,12 @@ var init_insightsList = __esm(() => {
55654
55769
  });
55655
55770
 
55656
55771
  // src/mcp-server/tools/insightsList.ts
55657
- var args58, tool$insightsList;
55772
+ var args59, tool$insightsList;
55658
55773
  var init_insightsList2 = __esm(() => {
55659
55774
  init_insightsList();
55660
55775
  init_operations();
55661
55776
  init_tools();
55662
- args58 = {
55777
+ args59 = {
55663
55778
  request: InsightsListRequest$inboundSchema
55664
55779
  };
55665
55780
  tool$insightsList = {
@@ -55667,9 +55782,9 @@ var init_insightsList2 = __esm(() => {
55667
55782
  description: `Insights List
55668
55783
 
55669
55784
  List the evaluated insights for sessions.`,
55670
- args: args58,
55671
- tool: async (client, args59, ctx) => {
55672
- const [result, apiCall] = await insightsList(client, args59.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
55785
+ args: args59,
55786
+ tool: async (client, args60, ctx) => {
55787
+ const [result, apiCall] = await insightsList(client, args60.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
55673
55788
  if (!result.ok) {
55674
55789
  return {
55675
55790
  content: [{ type: "text", text: result.error.message }],
@@ -55757,12 +55872,12 @@ var init_insightsToolsCreate = __esm(() => {
55757
55872
  });
55758
55873
 
55759
55874
  // src/mcp-server/tools/insightsToolsCreate.ts
55760
- var args59, tool$insightsToolsCreate;
55875
+ var args60, tool$insightsToolsCreate;
55761
55876
  var init_insightsToolsCreate2 = __esm(() => {
55762
55877
  init_insightsToolsCreate();
55763
55878
  init_components();
55764
55879
  init_tools();
55765
- args59 = {
55880
+ args60 = {
55766
55881
  request: InsightToolInput$inboundSchema
55767
55882
  };
55768
55883
  tool$insightsToolsCreate = {
@@ -55770,9 +55885,9 @@ var init_insightsToolsCreate2 = __esm(() => {
55770
55885
  description: `Create Insight Tool Configuration
55771
55886
 
55772
55887
  Create a new insight tool.`,
55773
- args: args59,
55774
- tool: async (client, args60, ctx) => {
55775
- const [result, apiCall] = await insightsToolsCreate(client, args60.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
55888
+ args: args60,
55889
+ tool: async (client, args61, ctx) => {
55890
+ const [result, apiCall] = await insightsToolsCreate(client, args61.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
55776
55891
  if (!result.ok) {
55777
55892
  return {
55778
55893
  content: [{ type: "text", text: result.error.message }],
@@ -55866,12 +55981,12 @@ var init_insightsToolsDelete = __esm(() => {
55866
55981
  });
55867
55982
 
55868
55983
  // src/mcp-server/tools/insightsToolsDelete.ts
55869
- var args60, tool$insightsToolsDelete;
55984
+ var args61, tool$insightsToolsDelete;
55870
55985
  var init_insightsToolsDelete2 = __esm(() => {
55871
55986
  init_insightsToolsDelete();
55872
55987
  init_operations();
55873
55988
  init_tools();
55874
- args60 = {
55989
+ args61 = {
55875
55990
  request: InsightsToolDeleteRequest$inboundSchema
55876
55991
  };
55877
55992
  tool$insightsToolsDelete = {
@@ -55879,9 +55994,9 @@ var init_insightsToolsDelete2 = __esm(() => {
55879
55994
  description: `Delete Insight Tool Configuration
55880
55995
 
55881
55996
  Delete an Insights tool configuration.`,
55882
- args: args60,
55883
- tool: async (client, args61, ctx) => {
55884
- const [result, apiCall] = await insightsToolsDelete(client, args61.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
55997
+ args: args61,
55998
+ tool: async (client, args62, ctx) => {
55999
+ const [result, apiCall] = await insightsToolsDelete(client, args62.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
55885
56000
  if (!result.ok) {
55886
56001
  return {
55887
56002
  content: [{ type: "text", text: result.error.message }],
@@ -55975,12 +56090,12 @@ var init_insightsToolsGetById = __esm(() => {
55975
56090
  });
55976
56091
 
55977
56092
  // src/mcp-server/tools/insightsToolsGetById.ts
55978
- var args61, tool$insightsToolsGetById;
56093
+ var args62, tool$insightsToolsGetById;
55979
56094
  var init_insightsToolsGetById2 = __esm(() => {
55980
56095
  init_insightsToolsGetById();
55981
56096
  init_operations();
55982
56097
  init_tools();
55983
- args61 = {
56098
+ args62 = {
55984
56099
  request: InsightToolGetByIdRequest$inboundSchema
55985
56100
  };
55986
56101
  tool$insightsToolsGetById = {
@@ -55988,9 +56103,9 @@ var init_insightsToolsGetById2 = __esm(() => {
55988
56103
  description: `Get Insight Tool Config By Id
55989
56104
 
55990
56105
  Get a InsightTool by Name.`,
55991
- args: args61,
55992
- tool: async (client, args62, ctx) => {
55993
- const [result, apiCall] = await insightsToolsGetById(client, args62.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
56106
+ args: args62,
56107
+ tool: async (client, args63, ctx) => {
56108
+ const [result, apiCall] = await insightsToolsGetById(client, args63.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
55994
56109
  if (!result.ok) {
55995
56110
  return {
55996
56111
  content: [{ type: "text", text: result.error.message }],
@@ -56079,12 +56194,12 @@ var init_insightsToolsInsightsToolTest = __esm(() => {
56079
56194
  });
56080
56195
 
56081
56196
  // src/mcp-server/tools/insightsToolsInsightsToolTest.ts
56082
- var args62, tool$insightsToolsInsightsToolTest;
56197
+ var args63, tool$insightsToolsInsightsToolTest;
56083
56198
  var init_insightsToolsInsightsToolTest2 = __esm(() => {
56084
56199
  init_insightsToolsInsightsToolTest();
56085
56200
  init_components();
56086
56201
  init_tools();
56087
- args62 = {
56202
+ args63 = {
56088
56203
  request: InsightToolTestInput$inboundSchema
56089
56204
  };
56090
56205
  tool$insightsToolsInsightsToolTest = {
@@ -56092,9 +56207,9 @@ var init_insightsToolsInsightsToolTest2 = __esm(() => {
56092
56207
  description: `Test Insights Tool
56093
56208
 
56094
56209
  Manually run the given insight tool against a session and return the response.`,
56095
- args: args62,
56096
- tool: async (client, args63, ctx) => {
56097
- const [result, apiCall] = await insightsToolsInsightsToolTest(client, args63.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
56210
+ args: args63,
56211
+ tool: async (client, args64, ctx) => {
56212
+ const [result, apiCall] = await insightsToolsInsightsToolTest(client, args64.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
56098
56213
  if (!result.ok) {
56099
56214
  return {
56100
56215
  content: [{ type: "text", text: result.error.message }],
@@ -56279,12 +56394,12 @@ var init_insightsToolsList = __esm(() => {
56279
56394
  });
56280
56395
 
56281
56396
  // src/mcp-server/tools/insightsToolsList.ts
56282
- var args63, tool$insightsToolsList;
56397
+ var args64, tool$insightsToolsList;
56283
56398
  var init_insightsToolsList2 = __esm(() => {
56284
56399
  init_insightsToolsList();
56285
56400
  init_operations();
56286
56401
  init_tools();
56287
- args63 = {
56402
+ args64 = {
56288
56403
  request: InsightToolListRequest$inboundSchema
56289
56404
  };
56290
56405
  tool$insightsToolsList = {
@@ -56292,9 +56407,9 @@ var init_insightsToolsList2 = __esm(() => {
56292
56407
  description: `List Insight Tool Configurations
56293
56408
 
56294
56409
  List the existing insight_tools`,
56295
- args: args63,
56296
- tool: async (client, args64, ctx) => {
56297
- const [result, apiCall] = await insightsToolsList(client, args64.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
56410
+ args: args64,
56411
+ tool: async (client, args65, ctx) => {
56412
+ const [result, apiCall] = await insightsToolsList(client, args65.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
56298
56413
  if (!result.ok) {
56299
56414
  return {
56300
56415
  content: [{ type: "text", text: result.error.message }],
@@ -56389,12 +56504,12 @@ var init_insightsToolsUpdate = __esm(() => {
56389
56504
  });
56390
56505
 
56391
56506
  // src/mcp-server/tools/insightsToolsUpdate.ts
56392
- var args64, tool$insightsToolsUpdate;
56507
+ var args65, tool$insightsToolsUpdate;
56393
56508
  var init_insightsToolsUpdate2 = __esm(() => {
56394
56509
  init_insightsToolsUpdate();
56395
56510
  init_operations();
56396
56511
  init_tools();
56397
- args64 = {
56512
+ args65 = {
56398
56513
  request: InsightsToolUpdateRequest$inboundSchema
56399
56514
  };
56400
56515
  tool$insightsToolsUpdate = {
@@ -56402,9 +56517,9 @@ var init_insightsToolsUpdate2 = __esm(() => {
56402
56517
  description: `Update Insights Tool Configuration
56403
56518
 
56404
56519
  Update an Insights tool.`,
56405
- args: args64,
56406
- tool: async (client, args65, ctx) => {
56407
- const [result, apiCall] = await insightsToolsUpdate(client, args65.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
56520
+ args: args65,
56521
+ tool: async (client, args66, ctx) => {
56522
+ const [result, apiCall] = await insightsToolsUpdate(client, args66.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
56408
56523
  if (!result.ok) {
56409
56524
  return {
56410
56525
  content: [{ type: "text", text: result.error.message }],
@@ -56501,12 +56616,12 @@ var init_insightsWorkflowsActivate = __esm(() => {
56501
56616
  });
56502
56617
 
56503
56618
  // src/mcp-server/tools/insightsWorkflowsActivate.ts
56504
- var args65, tool$insightsWorkflowsActivate;
56619
+ var args66, tool$insightsWorkflowsActivate;
56505
56620
  var init_insightsWorkflowsActivate2 = __esm(() => {
56506
56621
  init_insightsWorkflowsActivate();
56507
56622
  init_operations();
56508
56623
  init_tools();
56509
- args65 = {
56624
+ args66 = {
56510
56625
  request: InsightsWorkflowActivateRequest$inboundSchema
56511
56626
  };
56512
56627
  tool$insightsWorkflowsActivate = {
@@ -56514,9 +56629,9 @@ var init_insightsWorkflowsActivate2 = __esm(() => {
56514
56629
  description: `Activate Insights Workflow
56515
56630
 
56516
56631
  Activate an InsightWorkflow.`,
56517
- args: args65,
56518
- tool: async (client, args66, ctx) => {
56519
- const [result, apiCall] = await insightsWorkflowsActivate(client, args66.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
56632
+ args: args66,
56633
+ tool: async (client, args67, ctx) => {
56634
+ const [result, apiCall] = await insightsWorkflowsActivate(client, args67.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
56520
56635
  if (!result.ok) {
56521
56636
  return {
56522
56637
  content: [{ type: "text", text: result.error.message }],
@@ -56604,12 +56719,12 @@ var init_insightsWorkflowsCreate = __esm(() => {
56604
56719
  });
56605
56720
 
56606
56721
  // src/mcp-server/tools/insightsWorkflowsCreate.ts
56607
- var args66, tool$insightsWorkflowsCreate;
56722
+ var args67, tool$insightsWorkflowsCreate;
56608
56723
  var init_insightsWorkflowsCreate2 = __esm(() => {
56609
56724
  init_insightsWorkflowsCreate();
56610
56725
  init_components();
56611
56726
  init_tools();
56612
- args66 = {
56727
+ args67 = {
56613
56728
  request: InsightWorkflowInput$inboundSchema
56614
56729
  };
56615
56730
  tool$insightsWorkflowsCreate = {
@@ -56617,9 +56732,9 @@ var init_insightsWorkflowsCreate2 = __esm(() => {
56617
56732
  description: `Create Insight Workflow
56618
56733
 
56619
56734
  Create a new tool in the insights`,
56620
- args: args66,
56621
- tool: async (client, args67, ctx) => {
56622
- const [result, apiCall] = await insightsWorkflowsCreate(client, args67.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
56735
+ args: args67,
56736
+ tool: async (client, args68, ctx) => {
56737
+ const [result, apiCall] = await insightsWorkflowsCreate(client, args68.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
56623
56738
  if (!result.ok) {
56624
56739
  return {
56625
56740
  content: [{ type: "text", text: result.error.message }],
@@ -56713,12 +56828,12 @@ var init_insightsWorkflowsDelete = __esm(() => {
56713
56828
  });
56714
56829
 
56715
56830
  // src/mcp-server/tools/insightsWorkflowsDelete.ts
56716
- var args67, tool$insightsWorkflowsDelete;
56831
+ var args68, tool$insightsWorkflowsDelete;
56717
56832
  var init_insightsWorkflowsDelete2 = __esm(() => {
56718
56833
  init_insightsWorkflowsDelete();
56719
56834
  init_operations();
56720
56835
  init_tools();
56721
- args67 = {
56836
+ args68 = {
56722
56837
  request: InsightsWorkflowDeleteRequest$inboundSchema
56723
56838
  };
56724
56839
  tool$insightsWorkflowsDelete = {
@@ -56726,9 +56841,9 @@ var init_insightsWorkflowsDelete2 = __esm(() => {
56726
56841
  description: `Delete Insights Workflow
56727
56842
 
56728
56843
  Delete an Insights workflow.`,
56729
- args: args67,
56730
- tool: async (client, args68, ctx) => {
56731
- const [result, apiCall] = await insightsWorkflowsDelete(client, args68.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
56844
+ args: args68,
56845
+ tool: async (client, args69, ctx) => {
56846
+ const [result, apiCall] = await insightsWorkflowsDelete(client, args69.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
56732
56847
  if (!result.ok) {
56733
56848
  return {
56734
56849
  content: [{ type: "text", text: result.error.message }],
@@ -56822,12 +56937,12 @@ var init_insightsWorkflowsGetById = __esm(() => {
56822
56937
  });
56823
56938
 
56824
56939
  // src/mcp-server/tools/insightsWorkflowsGetById.ts
56825
- var args68, tool$insightsWorkflowsGetById;
56940
+ var args69, tool$insightsWorkflowsGetById;
56826
56941
  var init_insightsWorkflowsGetById2 = __esm(() => {
56827
56942
  init_insightsWorkflowsGetById();
56828
56943
  init_operations();
56829
56944
  init_tools();
56830
- args68 = {
56945
+ args69 = {
56831
56946
  request: InsightsWorkflowGetByIdRequest$inboundSchema
56832
56947
  };
56833
56948
  tool$insightsWorkflowsGetById = {
@@ -56835,9 +56950,9 @@ var init_insightsWorkflowsGetById2 = __esm(() => {
56835
56950
  description: `Get Insight Workflow By Id
56836
56951
 
56837
56952
  Get a InsightWorkflow by ID.`,
56838
- args: args68,
56839
- tool: async (client, args69, ctx) => {
56840
- const [result, apiCall] = await insightsWorkflowsGetById(client, args69.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
56953
+ args: args69,
56954
+ tool: async (client, args70, ctx) => {
56955
+ const [result, apiCall] = await insightsWorkflowsGetById(client, args70.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
56841
56956
  if (!result.ok) {
56842
56957
  return {
56843
56958
  content: [{ type: "text", text: result.error.message }],
@@ -56931,12 +57046,12 @@ var init_insightsWorkflowsInactivate = __esm(() => {
56931
57046
  });
56932
57047
 
56933
57048
  // src/mcp-server/tools/insightsWorkflowsInactivate.ts
56934
- var args69, tool$insightsWorkflowsInactivate;
57049
+ var args70, tool$insightsWorkflowsInactivate;
56935
57050
  var init_insightsWorkflowsInactivate2 = __esm(() => {
56936
57051
  init_insightsWorkflowsInactivate();
56937
57052
  init_operations();
56938
57053
  init_tools();
56939
- args69 = {
57054
+ args70 = {
56940
57055
  request: InsightsWorkflowInactivateRequest$inboundSchema
56941
57056
  };
56942
57057
  tool$insightsWorkflowsInactivate = {
@@ -56944,9 +57059,9 @@ var init_insightsWorkflowsInactivate2 = __esm(() => {
56944
57059
  description: `Inactivate Insights Workflow
56945
57060
 
56946
57061
  Inactivate an InsightWorkflow.`,
56947
- args: args69,
56948
- tool: async (client, args70, ctx) => {
56949
- const [result, apiCall] = await insightsWorkflowsInactivate(client, args70.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
57062
+ args: args70,
57063
+ tool: async (client, args71, ctx) => {
57064
+ const [result, apiCall] = await insightsWorkflowsInactivate(client, args71.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
56950
57065
  if (!result.ok) {
56951
57066
  return {
56952
57067
  content: [{ type: "text", text: result.error.message }],
@@ -57046,12 +57161,12 @@ var init_insightsWorkflowsList = __esm(() => {
57046
57161
  });
57047
57162
 
57048
57163
  // src/mcp-server/tools/insightsWorkflowsList.ts
57049
- var args70, tool$insightsWorkflowsList;
57164
+ var args71, tool$insightsWorkflowsList;
57050
57165
  var init_insightsWorkflowsList2 = __esm(() => {
57051
57166
  init_insightsWorkflowsList();
57052
57167
  init_operations();
57053
57168
  init_tools();
57054
- args70 = {
57169
+ args71 = {
57055
57170
  request: InsightsWorkflowListRequest$inboundSchema
57056
57171
  };
57057
57172
  tool$insightsWorkflowsList = {
@@ -57059,9 +57174,9 @@ var init_insightsWorkflowsList2 = __esm(() => {
57059
57174
  description: `Insight Workflow List
57060
57175
 
57061
57176
  List the existing insight_workflows`,
57062
- args: args70,
57063
- tool: async (client, args71, ctx) => {
57064
- const [result, apiCall] = await insightsWorkflowsList(client, args71.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
57177
+ args: args71,
57178
+ tool: async (client, args72, ctx) => {
57179
+ const [result, apiCall] = await insightsWorkflowsList(client, args72.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
57065
57180
  if (!result.ok) {
57066
57181
  return {
57067
57182
  content: [{ type: "text", text: result.error.message }],
@@ -57150,12 +57265,12 @@ var init_insightsWorkflowsQueueWork = __esm(() => {
57150
57265
  });
57151
57266
 
57152
57267
  // src/mcp-server/tools/insightsWorkflowsQueueWork.ts
57153
- var args71, tool$insightsWorkflowsQueueWork;
57268
+ var args72, tool$insightsWorkflowsQueueWork;
57154
57269
  var init_insightsWorkflowsQueueWork2 = __esm(() => {
57155
57270
  init_insightsWorkflowsQueueWork();
57156
57271
  init_components();
57157
57272
  init_tools();
57158
- args71 = {
57273
+ args72 = {
57159
57274
  request: InsightsWorkflowQueueSession$inboundSchema
57160
57275
  };
57161
57276
  tool$insightsWorkflowsQueueWork = {
@@ -57163,9 +57278,9 @@ var init_insightsWorkflowsQueueWork2 = __esm(() => {
57163
57278
  description: `Queue Insights Workflow For Sessions/Files
57164
57279
 
57165
57280
  Manually queue sessions for insights workflow evaluation.`,
57166
- args: args71,
57167
- tool: async (client, args72, ctx) => {
57168
- const [result, apiCall] = await insightsWorkflowsQueueWork(client, args72.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
57281
+ args: args72,
57282
+ tool: async (client, args73, ctx) => {
57283
+ const [result, apiCall] = await insightsWorkflowsQueueWork(client, args73.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
57169
57284
  if (!result.ok) {
57170
57285
  return {
57171
57286
  content: [{ type: "text", text: result.error.message }],
@@ -57262,12 +57377,12 @@ var init_insightsWorkflowsUpdate = __esm(() => {
57262
57377
  });
57263
57378
 
57264
57379
  // src/mcp-server/tools/insightsWorkflowsUpdate.ts
57265
- var args72, tool$insightsWorkflowsUpdate;
57380
+ var args73, tool$insightsWorkflowsUpdate;
57266
57381
  var init_insightsWorkflowsUpdate2 = __esm(() => {
57267
57382
  init_insightsWorkflowsUpdate();
57268
57383
  init_operations();
57269
57384
  init_tools();
57270
- args72 = {
57385
+ args73 = {
57271
57386
  request: InsightsWorkflowUpdateRequest$inboundSchema
57272
57387
  };
57273
57388
  tool$insightsWorkflowsUpdate = {
@@ -57275,9 +57390,9 @@ var init_insightsWorkflowsUpdate2 = __esm(() => {
57275
57390
  description: `Update Insights Workflow
57276
57391
 
57277
57392
  Update a InsightWorkflow.`,
57278
- args: args72,
57279
- tool: async (client, args73, ctx) => {
57280
- const [result, apiCall] = await insightsWorkflowsUpdate(client, args73.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
57393
+ args: args73,
57394
+ tool: async (client, args74, ctx) => {
57395
+ const [result, apiCall] = await insightsWorkflowsUpdate(client, args74.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
57281
57396
  if (!result.ok) {
57282
57397
  return {
57283
57398
  content: [{ type: "text", text: result.error.message }],
@@ -57365,12 +57480,12 @@ var init_languageGroupsCreate = __esm(() => {
57365
57480
  });
57366
57481
 
57367
57482
  // src/mcp-server/tools/languageGroupsCreate.ts
57368
- var args73, tool$languageGroupsCreate;
57483
+ var args74, tool$languageGroupsCreate;
57369
57484
  var init_languageGroupsCreate2 = __esm(() => {
57370
57485
  init_languageGroupsCreate();
57371
57486
  init_components();
57372
57487
  init_tools();
57373
- args73 = {
57488
+ args74 = {
57374
57489
  request: LanguageGroupCreateRequest$inboundSchema
57375
57490
  };
57376
57491
  tool$languageGroupsCreate = {
@@ -57378,9 +57493,9 @@ var init_languageGroupsCreate2 = __esm(() => {
57378
57493
  description: `Create Language Group
57379
57494
 
57380
57495
  Deprecated alias for \`POST /api/v1/voice_groups/\`.`,
57381
- args: args73,
57382
- tool: async (client, args74, ctx) => {
57383
- const [result, apiCall] = await languageGroupsCreate(client, args74.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
57496
+ args: args74,
57497
+ tool: async (client, args75, ctx) => {
57498
+ const [result, apiCall] = await languageGroupsCreate(client, args75.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
57384
57499
  if (!result.ok) {
57385
57500
  return {
57386
57501
  content: [{ type: "text", text: result.error.message }],
@@ -57475,12 +57590,12 @@ var init_languageGroupsDelete = __esm(() => {
57475
57590
  });
57476
57591
 
57477
57592
  // src/mcp-server/tools/languageGroupsDelete.ts
57478
- var args74, tool$languageGroupsDelete;
57593
+ var args75, tool$languageGroupsDelete;
57479
57594
  var init_languageGroupsDelete2 = __esm(() => {
57480
57595
  init_languageGroupsDelete();
57481
57596
  init_operations();
57482
57597
  init_tools();
57483
- args74 = {
57598
+ args75 = {
57484
57599
  request: LanguageGroupsDeleteRequest$inboundSchema
57485
57600
  };
57486
57601
  tool$languageGroupsDelete = {
@@ -57488,9 +57603,9 @@ var init_languageGroupsDelete2 = __esm(() => {
57488
57603
  description: `Delete Language Group
57489
57604
 
57490
57605
  Deprecated alias for \`DELETE /api/v1/voice_groups/{voice_group_id}\`.`,
57491
- args: args74,
57492
- tool: async (client, args75, ctx) => {
57493
- const [result, apiCall] = await languageGroupsDelete(client, args75.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
57606
+ args: args75,
57607
+ tool: async (client, args76, ctx) => {
57608
+ const [result, apiCall] = await languageGroupsDelete(client, args76.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
57494
57609
  if (!result.ok) {
57495
57610
  return {
57496
57611
  content: [{ type: "text", text: result.error.message }],
@@ -57581,12 +57696,12 @@ var init_languageGroupsGetById = __esm(() => {
57581
57696
  });
57582
57697
 
57583
57698
  // src/mcp-server/tools/languageGroupsGetById.ts
57584
- var args75, tool$languageGroupsGetById;
57699
+ var args76, tool$languageGroupsGetById;
57585
57700
  var init_languageGroupsGetById2 = __esm(() => {
57586
57701
  init_languageGroupsGetById();
57587
57702
  init_operations();
57588
57703
  init_tools();
57589
- args75 = {
57704
+ args76 = {
57590
57705
  request: LanguageGroupsGetByIdRequest$inboundSchema
57591
57706
  };
57592
57707
  tool$languageGroupsGetById = {
@@ -57594,9 +57709,9 @@ var init_languageGroupsGetById2 = __esm(() => {
57594
57709
  description: `Get Language Group
57595
57710
 
57596
57711
  Deprecated alias for \`GET /api/v1/voice_groups/{voice_group_id}\`.`,
57597
- args: args75,
57598
- tool: async (client, args76, ctx) => {
57599
- const [result, apiCall] = await languageGroupsGetById(client, args76.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
57712
+ args: args76,
57713
+ tool: async (client, args77, ctx) => {
57714
+ const [result, apiCall] = await languageGroupsGetById(client, args77.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
57600
57715
  if (!result.ok) {
57601
57716
  return {
57602
57717
  content: [{ type: "text", text: result.error.message }],
@@ -57685,12 +57800,12 @@ var init_languageGroupsLanguageGroupsCreateVoiceSample = __esm(() => {
57685
57800
  });
57686
57801
 
57687
57802
  // src/mcp-server/tools/languageGroupsLanguageGroupsCreateVoiceSample.ts
57688
- var args76, tool$languageGroupsLanguageGroupsCreateVoiceSample;
57803
+ var args77, tool$languageGroupsLanguageGroupsCreateVoiceSample;
57689
57804
  var init_languageGroupsLanguageGroupsCreateVoiceSample2 = __esm(() => {
57690
57805
  init_languageGroupsLanguageGroupsCreateVoiceSample();
57691
57806
  init_components();
57692
57807
  init_tools();
57693
- args76 = {
57808
+ args77 = {
57694
57809
  request: LanguageSampleCreateRequest$inboundSchema
57695
57810
  };
57696
57811
  tool$languageGroupsLanguageGroupsCreateVoiceSample = {
@@ -57698,9 +57813,9 @@ var init_languageGroupsLanguageGroupsCreateVoiceSample2 = __esm(() => {
57698
57813
  description: `Create Voice Sample
57699
57814
 
57700
57815
  Deprecated alias for \`POST /api/v1/voice_groups/voices/sample\`.`,
57701
- args: args76,
57702
- tool: async (client, args77, ctx) => {
57703
- const [result, apiCall] = await languageGroupsLanguageGroupsCreateVoiceSample(client, args77.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
57816
+ args: args77,
57817
+ tool: async (client, args78, ctx) => {
57818
+ const [result, apiCall] = await languageGroupsLanguageGroupsCreateVoiceSample(client, args78.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
57704
57819
  if (!result.ok) {
57705
57820
  return {
57706
57821
  content: [{ type: "text", text: result.error.message }],
@@ -57800,12 +57915,12 @@ var init_languageGroupsList = __esm(() => {
57800
57915
  });
57801
57916
 
57802
57917
  // src/mcp-server/tools/languageGroupsList.ts
57803
- var args77, tool$languageGroupsList;
57918
+ var args78, tool$languageGroupsList;
57804
57919
  var init_languageGroupsList2 = __esm(() => {
57805
57920
  init_languageGroupsList();
57806
57921
  init_operations();
57807
57922
  init_tools();
57808
- args77 = {
57923
+ args78 = {
57809
57924
  request: LanguageGroupsListRequest$inboundSchema
57810
57925
  };
57811
57926
  tool$languageGroupsList = {
@@ -57813,9 +57928,9 @@ var init_languageGroupsList2 = __esm(() => {
57813
57928
  description: `List Language Groups
57814
57929
 
57815
57930
  Deprecated alias for \`GET /api/v1/voice_groups/\`.`,
57816
- args: args77,
57817
- tool: async (client, args78, ctx) => {
57818
- const [result, apiCall] = await languageGroupsList(client, args78.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
57931
+ args: args78,
57932
+ tool: async (client, args79, ctx) => {
57933
+ const [result, apiCall] = await languageGroupsList(client, args79.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
57819
57934
  if (!result.ok) {
57820
57935
  return {
57821
57936
  content: [{ type: "text", text: result.error.message }],
@@ -57903,12 +58018,12 @@ var init_languageGroupsUpdate = __esm(() => {
57903
58018
  });
57904
58019
 
57905
58020
  // src/mcp-server/tools/languageGroupsUpdate.ts
57906
- var args78, tool$languageGroupsUpdate;
58021
+ var args79, tool$languageGroupsUpdate;
57907
58022
  var init_languageGroupsUpdate2 = __esm(() => {
57908
58023
  init_languageGroupsUpdate();
57909
58024
  init_components();
57910
58025
  init_tools();
57911
- args78 = {
58026
+ args79 = {
57912
58027
  request: LanguageGroupUpdateRequest$inboundSchema
57913
58028
  };
57914
58029
  tool$languageGroupsUpdate = {
@@ -57916,9 +58031,9 @@ var init_languageGroupsUpdate2 = __esm(() => {
57916
58031
  description: `Update Language Group
57917
58032
 
57918
58033
  Deprecated alias for \`PUT /api/v1/voice_groups/\`.`,
57919
- args: args78,
57920
- tool: async (client, args79, ctx) => {
57921
- const [result, apiCall] = await languageGroupsUpdate(client, args79.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
58034
+ args: args79,
58035
+ tool: async (client, args80, ctx) => {
58036
+ const [result, apiCall] = await languageGroupsUpdate(client, args80.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
57922
58037
  if (!result.ok) {
57923
58038
  return {
57924
58039
  content: [{ type: "text", text: result.error.message }],
@@ -58027,12 +58142,12 @@ var init_organizationsCreate = __esm(() => {
58027
58142
  });
58028
58143
 
58029
58144
  // src/mcp-server/tools/organizationsCreate.ts
58030
- var args79, tool$organizationsCreate;
58145
+ var args80, tool$organizationsCreate;
58031
58146
  var init_organizationsCreate2 = __esm(() => {
58032
58147
  init_organizationsCreate();
58033
58148
  init_components();
58034
58149
  init_tools();
58035
- args79 = {
58150
+ args80 = {
58036
58151
  request: BodyOrganizationsCreate$inboundSchema
58037
58152
  };
58038
58153
  tool$organizationsCreate = {
@@ -58040,9 +58155,9 @@ var init_organizationsCreate2 = __esm(() => {
58040
58155
  description: `Create Organization
58041
58156
 
58042
58157
  Create a new organization.`,
58043
- args: args79,
58044
- tool: async (client, args80, ctx) => {
58045
- const [result, apiCall] = await organizationsCreate(client, args80.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
58158
+ args: args80,
58159
+ tool: async (client, args81, ctx) => {
58160
+ const [result, apiCall] = await organizationsCreate(client, args81.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
58046
58161
  if (!result.ok) {
58047
58162
  return {
58048
58163
  content: [{ type: "text", text: result.error.message }],
@@ -58133,12 +58248,12 @@ var init_organizationsDelete = __esm(() => {
58133
58248
  });
58134
58249
 
58135
58250
  // src/mcp-server/tools/organizationsDelete.ts
58136
- var args80, tool$organizationsDelete;
58251
+ var args81, tool$organizationsDelete;
58137
58252
  var init_organizationsDelete2 = __esm(() => {
58138
58253
  init_organizationsDelete();
58139
58254
  init_components();
58140
58255
  init_tools();
58141
- args80 = {
58256
+ args81 = {
58142
58257
  request: BodyOrganizationsDelete$inboundSchema.optional()
58143
58258
  };
58144
58259
  tool$organizationsDelete = {
@@ -58146,9 +58261,9 @@ var init_organizationsDelete2 = __esm(() => {
58146
58261
  description: `Delete Current Organization
58147
58262
 
58148
58263
  Delete the current organization and all its users.`,
58149
- args: args80,
58150
- tool: async (client, args81, ctx) => {
58151
- const [result, apiCall] = await organizationsDelete(client, args81.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
58264
+ args: args81,
58265
+ tool: async (client, args82, ctx) => {
58266
+ const [result, apiCall] = await organizationsDelete(client, args82.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
58152
58267
  if (!result.ok) {
58153
58268
  return {
58154
58269
  content: [{ type: "text", text: result.error.message }],
@@ -58346,12 +58461,12 @@ var init_organizationsUpdate = __esm(() => {
58346
58461
  });
58347
58462
 
58348
58463
  // src/mcp-server/tools/organizationsUpdate.ts
58349
- var args81, tool$organizationsUpdate;
58464
+ var args82, tool$organizationsUpdate;
58350
58465
  var init_organizationsUpdate2 = __esm(() => {
58351
58466
  init_organizationsUpdate();
58352
58467
  init_components();
58353
58468
  init_tools();
58354
- args81 = {
58469
+ args82 = {
58355
58470
  request: BodyOrganizationsUpdate$inboundSchema
58356
58471
  };
58357
58472
  tool$organizationsUpdate = {
@@ -58359,9 +58474,9 @@ var init_organizationsUpdate2 = __esm(() => {
58359
58474
  description: `Update Current Organization
58360
58475
 
58361
58476
  Update the current organization.`,
58362
- args: args81,
58363
- tool: async (client, args82, ctx) => {
58364
- const [result, apiCall] = await organizationsUpdate(client, args82.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
58477
+ args: args82,
58478
+ tool: async (client, args83, ctx) => {
58479
+ const [result, apiCall] = await organizationsUpdate(client, args83.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
58365
58480
  if (!result.ok) {
58366
58481
  return {
58367
58482
  content: [{ type: "text", text: result.error.message }],
@@ -58458,20 +58573,20 @@ var init_outboundBatchesAdd = __esm(() => {
58458
58573
  });
58459
58574
 
58460
58575
  // src/mcp-server/tools/outboundBatchesAdd.ts
58461
- var args82, tool$outboundBatchesAdd;
58576
+ var args83, tool$outboundBatchesAdd;
58462
58577
  var init_outboundBatchesAdd2 = __esm(() => {
58463
58578
  init_outboundBatchesAdd();
58464
58579
  init_operations();
58465
58580
  init_tools();
58466
- args82 = {
58581
+ args83 = {
58467
58582
  request: OutboundBatchAddRequest$inboundSchema
58468
58583
  };
58469
58584
  tool$outboundBatchesAdd = {
58470
58585
  name: "outbound-batches-add",
58471
58586
  description: `Create Outbound Communication Request`,
58472
- args: args82,
58473
- tool: async (client, args83, ctx) => {
58474
- const [result, apiCall] = await outboundBatchesAdd(client, args83.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
58587
+ args: args83,
58588
+ tool: async (client, args84, ctx) => {
58589
+ const [result, apiCall] = await outboundBatchesAdd(client, args84.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
58475
58590
  if (!result.ok) {
58476
58591
  return {
58477
58592
  content: [{ type: "text", text: result.error.message }],
@@ -58559,20 +58674,20 @@ var init_outboundBatchesCreate = __esm(() => {
58559
58674
  });
58560
58675
 
58561
58676
  // src/mcp-server/tools/outboundBatchesCreate.ts
58562
- var args83, tool$outboundBatchesCreate;
58677
+ var args84, tool$outboundBatchesCreate;
58563
58678
  var init_outboundBatchesCreate2 = __esm(() => {
58564
58679
  init_outboundBatchesCreate();
58565
58680
  init_components();
58566
58681
  init_tools();
58567
- args83 = {
58682
+ args84 = {
58568
58683
  request: CommunicationBatchInput$inboundSchema
58569
58684
  };
58570
58685
  tool$outboundBatchesCreate = {
58571
58686
  name: "outbound-batches-create",
58572
58687
  description: `Create Outbound Communication Batch`,
58573
- args: args83,
58574
- tool: async (client, args84, ctx) => {
58575
- const [result, apiCall] = await outboundBatchesCreate(client, args84.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
58688
+ args: args84,
58689
+ tool: async (client, args85, ctx) => {
58690
+ const [result, apiCall] = await outboundBatchesCreate(client, args85.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
58576
58691
  if (!result.ok) {
58577
58692
  return {
58578
58693
  content: [{ type: "text", text: result.error.message }],
@@ -58669,20 +58784,20 @@ var init_outboundBatchesDelete = __esm(() => {
58669
58784
  });
58670
58785
 
58671
58786
  // src/mcp-server/tools/outboundBatchesDelete.ts
58672
- var args84, tool$outboundBatchesDelete;
58787
+ var args85, tool$outboundBatchesDelete;
58673
58788
  var init_outboundBatchesDelete2 = __esm(() => {
58674
58789
  init_outboundBatchesDelete();
58675
58790
  init_operations();
58676
58791
  init_tools();
58677
- args84 = {
58792
+ args85 = {
58678
58793
  request: OutboundBatchDeleteRequest$inboundSchema
58679
58794
  };
58680
58795
  tool$outboundBatchesDelete = {
58681
58796
  name: "outbound-batches-delete",
58682
58797
  description: `Delete Outbound Communication Batch`,
58683
- args: args84,
58684
- tool: async (client, args85, ctx) => {
58685
- const [result, apiCall] = await outboundBatchesDelete(client, args85.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
58798
+ args: args85,
58799
+ tool: async (client, args86, ctx) => {
58800
+ const [result, apiCall] = await outboundBatchesDelete(client, args86.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
58686
58801
  if (!result.ok) {
58687
58802
  return {
58688
58803
  content: [{ type: "text", text: result.error.message }],
@@ -58776,20 +58891,20 @@ var init_outboundBatchesGetById = __esm(() => {
58776
58891
  });
58777
58892
 
58778
58893
  // src/mcp-server/tools/outboundBatchesGetById.ts
58779
- var args85, tool$outboundBatchesGetById;
58894
+ var args86, tool$outboundBatchesGetById;
58780
58895
  var init_outboundBatchesGetById2 = __esm(() => {
58781
58896
  init_outboundBatchesGetById();
58782
58897
  init_operations();
58783
58898
  init_tools();
58784
- args85 = {
58899
+ args86 = {
58785
58900
  request: OutboundBatchGetByIdRequest$inboundSchema
58786
58901
  };
58787
58902
  tool$outboundBatchesGetById = {
58788
58903
  name: "outbound-batches-get-by-id",
58789
58904
  description: `Get Outbound Communication Batch`,
58790
- args: args85,
58791
- tool: async (client, args86, ctx) => {
58792
- const [result, apiCall] = await outboundBatchesGetById(client, args86.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
58905
+ args: args86,
58906
+ tool: async (client, args87, ctx) => {
58907
+ const [result, apiCall] = await outboundBatchesGetById(client, args87.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
58793
58908
  if (!result.ok) {
58794
58909
  return {
58795
58910
  content: [{ type: "text", text: result.error.message }],
@@ -58889,20 +59004,20 @@ var init_outboundBatchesList = __esm(() => {
58889
59004
  });
58890
59005
 
58891
59006
  // src/mcp-server/tools/outboundBatchesList.ts
58892
- var args86, tool$outboundBatchesList;
59007
+ var args87, tool$outboundBatchesList;
58893
59008
  var init_outboundBatchesList2 = __esm(() => {
58894
59009
  init_outboundBatchesList();
58895
59010
  init_operations();
58896
59011
  init_tools();
58897
- args86 = {
59012
+ args87 = {
58898
59013
  request: OutboundBatchListRequest$inboundSchema
58899
59014
  };
58900
59015
  tool$outboundBatchesList = {
58901
59016
  name: "outbound-batches-list",
58902
59017
  description: `List Outbound Communication Batches`,
58903
- args: args86,
58904
- tool: async (client, args87, ctx) => {
58905
- const [result, apiCall] = await outboundBatchesList(client, args87.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
59018
+ args: args87,
59019
+ tool: async (client, args88, ctx) => {
59020
+ const [result, apiCall] = await outboundBatchesList(client, args88.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
58906
59021
  if (!result.ok) {
58907
59022
  return {
58908
59023
  content: [{ type: "text", text: result.error.message }],
@@ -58997,20 +59112,20 @@ var init_outboundBatchesRemove = __esm(() => {
58997
59112
  });
58998
59113
 
58999
59114
  // src/mcp-server/tools/outboundBatchesRemove.ts
59000
- var args87, tool$outboundBatchesRemove;
59115
+ var args88, tool$outboundBatchesRemove;
59001
59116
  var init_outboundBatchesRemove2 = __esm(() => {
59002
59117
  init_outboundBatchesRemove();
59003
59118
  init_operations();
59004
59119
  init_tools();
59005
- args87 = {
59120
+ args88 = {
59006
59121
  request: OutboundBatchRemoveRequest$inboundSchema
59007
59122
  };
59008
59123
  tool$outboundBatchesRemove = {
59009
59124
  name: "outbound-batches-remove",
59010
59125
  description: `Delete Requests By List Of Reference Ids`,
59011
- args: args87,
59012
- tool: async (client, args88, ctx) => {
59013
- const [result, apiCall] = await outboundBatchesRemove(client, args88.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
59126
+ args: args88,
59127
+ tool: async (client, args89, ctx) => {
59128
+ const [result, apiCall] = await outboundBatchesRemove(client, args89.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
59014
59129
  if (!result.ok) {
59015
59130
  return {
59016
59131
  content: [{ type: "text", text: result.error.message }],
@@ -59111,20 +59226,20 @@ var init_outboundBatchesResults = __esm(() => {
59111
59226
  });
59112
59227
 
59113
59228
  // src/mcp-server/tools/outboundBatchesResults.ts
59114
- var args88, tool$outboundBatchesResults;
59229
+ var args89, tool$outboundBatchesResults;
59115
59230
  var init_outboundBatchesResults2 = __esm(() => {
59116
59231
  init_outboundBatchesResults();
59117
59232
  init_operations();
59118
59233
  init_tools();
59119
- args88 = {
59234
+ args89 = {
59120
59235
  request: OutboundBatchResultsRequest$inboundSchema
59121
59236
  };
59122
59237
  tool$outboundBatchesResults = {
59123
59238
  name: "outbound-batches-results",
59124
59239
  description: `Fetch Outbound Communication Batch Results`,
59125
- args: args88,
59126
- tool: async (client, args89, ctx) => {
59127
- const [result, apiCall] = await outboundBatchesResults(client, args89.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
59240
+ args: args89,
59241
+ tool: async (client, args90, ctx) => {
59242
+ const [result, apiCall] = await outboundBatchesResults(client, args90.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
59128
59243
  if (!result.ok) {
59129
59244
  return {
59130
59245
  content: [{ type: "text", text: result.error.message }],
@@ -59221,20 +59336,20 @@ var init_outboundBatchesUpdate = __esm(() => {
59221
59336
  });
59222
59337
 
59223
59338
  // src/mcp-server/tools/outboundBatchesUpdate.ts
59224
- var args89, tool$outboundBatchesUpdate;
59339
+ var args90, tool$outboundBatchesUpdate;
59225
59340
  var init_outboundBatchesUpdate2 = __esm(() => {
59226
59341
  init_outboundBatchesUpdate();
59227
59342
  init_operations();
59228
59343
  init_tools();
59229
- args89 = {
59344
+ args90 = {
59230
59345
  request: OutboundBatchUpdateRequest$inboundSchema
59231
59346
  };
59232
59347
  tool$outboundBatchesUpdate = {
59233
59348
  name: "outbound-batches-update",
59234
59349
  description: `Update Outbound Communication Batch`,
59235
- args: args89,
59236
- tool: async (client, args90, ctx) => {
59237
- const [result, apiCall] = await outboundBatchesUpdate(client, args90.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
59350
+ args: args90,
59351
+ tool: async (client, args91, ctx) => {
59352
+ const [result, apiCall] = await outboundBatchesUpdate(client, args91.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
59238
59353
  if (!result.ok) {
59239
59354
  return {
59240
59355
  content: [{ type: "text", text: result.error.message }],
@@ -59346,20 +59461,20 @@ var init_outboundBatchesUpload = __esm(() => {
59346
59461
  });
59347
59462
 
59348
59463
  // src/mcp-server/tools/outboundBatchesUpload.ts
59349
- var args90, tool$outboundBatchesUpload;
59464
+ var args91, tool$outboundBatchesUpload;
59350
59465
  var init_outboundBatchesUpload2 = __esm(() => {
59351
59466
  init_outboundBatchesUpload();
59352
59467
  init_operations();
59353
59468
  init_tools();
59354
- args90 = {
59469
+ args91 = {
59355
59470
  request: OutboundBatchUploadRequest$inboundSchema
59356
59471
  };
59357
59472
  tool$outboundBatchesUpload = {
59358
59473
  name: "outbound-batches-upload",
59359
59474
  description: `Upload Outbound Communication Batch`,
59360
- args: args90,
59361
- tool: async (client, args91, ctx) => {
59362
- const [result, apiCall] = await outboundBatchesUpload(client, args91.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
59475
+ args: args91,
59476
+ tool: async (client, args92, ctx) => {
59477
+ const [result, apiCall] = await outboundBatchesUpload(client, args92.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
59363
59478
  if (!result.ok) {
59364
59479
  return {
59365
59480
  content: [{ type: "text", text: result.error.message }],
@@ -59447,20 +59562,20 @@ var init_outboundCampaignsCreate = __esm(() => {
59447
59562
  });
59448
59563
 
59449
59564
  // src/mcp-server/tools/outboundCampaignsCreate.ts
59450
- var args91, tool$outboundCampaignsCreate;
59565
+ var args92, tool$outboundCampaignsCreate;
59451
59566
  var init_outboundCampaignsCreate2 = __esm(() => {
59452
59567
  init_outboundCampaignsCreate();
59453
59568
  init_components();
59454
59569
  init_tools();
59455
- args91 = {
59570
+ args92 = {
59456
59571
  request: OutboundCampaignInput$inboundSchema
59457
59572
  };
59458
59573
  tool$outboundCampaignsCreate = {
59459
59574
  name: "outbound-campaigns-create",
59460
59575
  description: `Create Outbound Communication Campaign`,
59461
- args: args91,
59462
- tool: async (client, args92, ctx) => {
59463
- const [result, apiCall] = await outboundCampaignsCreate(client, args92.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
59576
+ args: args92,
59577
+ tool: async (client, args93, ctx) => {
59578
+ const [result, apiCall] = await outboundCampaignsCreate(client, args93.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
59464
59579
  if (!result.ok) {
59465
59580
  return {
59466
59581
  content: [{ type: "text", text: result.error.message }],
@@ -59554,20 +59669,20 @@ var init_outboundCampaignsDelete = __esm(() => {
59554
59669
  });
59555
59670
 
59556
59671
  // src/mcp-server/tools/outboundCampaignsDelete.ts
59557
- var args92, tool$outboundCampaignsDelete;
59672
+ var args93, tool$outboundCampaignsDelete;
59558
59673
  var init_outboundCampaignsDelete2 = __esm(() => {
59559
59674
  init_outboundCampaignsDelete();
59560
59675
  init_operations();
59561
59676
  init_tools();
59562
- args92 = {
59677
+ args93 = {
59563
59678
  request: OutboundCampaignDeleteRequest$inboundSchema
59564
59679
  };
59565
59680
  tool$outboundCampaignsDelete = {
59566
59681
  name: "outbound-campaigns-delete",
59567
59682
  description: `Delete Outbound Communication Campaign`,
59568
- args: args92,
59569
- tool: async (client, args93, ctx) => {
59570
- const [result, apiCall] = await outboundCampaignsDelete(client, args93.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
59683
+ args: args93,
59684
+ tool: async (client, args94, ctx) => {
59685
+ const [result, apiCall] = await outboundCampaignsDelete(client, args94.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
59571
59686
  if (!result.ok) {
59572
59687
  return {
59573
59688
  content: [{ type: "text", text: result.error.message }],
@@ -59661,20 +59776,20 @@ var init_outboundCampaignsGetById = __esm(() => {
59661
59776
  });
59662
59777
 
59663
59778
  // src/mcp-server/tools/outboundCampaignsGetById.ts
59664
- var args93, tool$outboundCampaignsGetById;
59779
+ var args94, tool$outboundCampaignsGetById;
59665
59780
  var init_outboundCampaignsGetById2 = __esm(() => {
59666
59781
  init_outboundCampaignsGetById();
59667
59782
  init_operations();
59668
59783
  init_tools();
59669
- args93 = {
59784
+ args94 = {
59670
59785
  request: OutboundCampaignGetByIdRequest$inboundSchema
59671
59786
  };
59672
59787
  tool$outboundCampaignsGetById = {
59673
59788
  name: "outbound-campaigns-get-by-id",
59674
59789
  description: `Get Outbound Communication Campaign`,
59675
- args: args93,
59676
- tool: async (client, args94, ctx) => {
59677
- const [result, apiCall] = await outboundCampaignsGetById(client, args94.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
59790
+ args: args94,
59791
+ tool: async (client, args95, ctx) => {
59792
+ const [result, apiCall] = await outboundCampaignsGetById(client, args95.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
59678
59793
  if (!result.ok) {
59679
59794
  return {
59680
59795
  content: [{ type: "text", text: result.error.message }],
@@ -59774,20 +59889,20 @@ var init_outboundCampaignsList = __esm(() => {
59774
59889
  });
59775
59890
 
59776
59891
  // src/mcp-server/tools/outboundCampaignsList.ts
59777
- var args94, tool$outboundCampaignsList;
59892
+ var args95, tool$outboundCampaignsList;
59778
59893
  var init_outboundCampaignsList2 = __esm(() => {
59779
59894
  init_outboundCampaignsList();
59780
59895
  init_operations();
59781
59896
  init_tools();
59782
- args94 = {
59897
+ args95 = {
59783
59898
  request: OutboundCampaignListRequest$inboundSchema
59784
59899
  };
59785
59900
  tool$outboundCampaignsList = {
59786
59901
  name: "outbound-campaigns-list",
59787
59902
  description: `List Outbound Communication Campaigns`,
59788
- args: args94,
59789
- tool: async (client, args95, ctx) => {
59790
- const [result, apiCall] = await outboundCampaignsList(client, args95.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
59903
+ args: args95,
59904
+ tool: async (client, args96, ctx) => {
59905
+ const [result, apiCall] = await outboundCampaignsList(client, args96.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
59791
59906
  if (!result.ok) {
59792
59907
  return {
59793
59908
  content: [{ type: "text", text: result.error.message }],
@@ -59884,20 +59999,20 @@ var init_outboundCampaignsUpdate = __esm(() => {
59884
59999
  });
59885
60000
 
59886
60001
  // src/mcp-server/tools/outboundCampaignsUpdate.ts
59887
- var args95, tool$outboundCampaignsUpdate;
60002
+ var args96, tool$outboundCampaignsUpdate;
59888
60003
  var init_outboundCampaignsUpdate2 = __esm(() => {
59889
60004
  init_outboundCampaignsUpdate();
59890
60005
  init_operations();
59891
60006
  init_tools();
59892
- args95 = {
60007
+ args96 = {
59893
60008
  request: OutboundCampaignUpdateRequest$inboundSchema
59894
60009
  };
59895
60010
  tool$outboundCampaignsUpdate = {
59896
60011
  name: "outbound-campaigns-update",
59897
60012
  description: `Update Outbound Communication Campaign`,
59898
- args: args95,
59899
- tool: async (client, args96, ctx) => {
59900
- const [result, apiCall] = await outboundCampaignsUpdate(client, args96.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
60013
+ args: args96,
60014
+ tool: async (client, args97, ctx) => {
60015
+ const [result, apiCall] = await outboundCampaignsUpdate(client, args97.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
59901
60016
  if (!result.ok) {
59902
60017
  return {
59903
60018
  content: [{ type: "text", text: result.error.message }],
@@ -60070,12 +60185,12 @@ var init_promptsCreate = __esm(() => {
60070
60185
  });
60071
60186
 
60072
60187
  // src/mcp-server/tools/promptsCreate.ts
60073
- var args96, tool$promptsCreate;
60188
+ var args97, tool$promptsCreate;
60074
60189
  var init_promptsCreate2 = __esm(() => {
60075
60190
  init_promptsCreate();
60076
60191
  init_components();
60077
60192
  init_tools();
60078
- args96 = {
60193
+ args97 = {
60079
60194
  request: PromptCreateRequest$inboundSchema
60080
60195
  };
60081
60196
  tool$promptsCreate = {
@@ -60083,9 +60198,9 @@ var init_promptsCreate2 = __esm(() => {
60083
60198
  description: `Create Prompt
60084
60199
 
60085
60200
  Create a new prompt`,
60086
- args: args96,
60087
- tool: async (client, args97, ctx) => {
60088
- const [result, apiCall] = await promptsCreate(client, args97.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
60201
+ args: args97,
60202
+ tool: async (client, args98, ctx) => {
60203
+ const [result, apiCall] = await promptsCreate(client, args98.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
60089
60204
  if (!result.ok) {
60090
60205
  return {
60091
60206
  content: [{ type: "text", text: result.error.message }],
@@ -60183,12 +60298,12 @@ var init_promptsDelete = __esm(() => {
60183
60298
  });
60184
60299
 
60185
60300
  // src/mcp-server/tools/promptsDelete.ts
60186
- var args97, tool$promptsDelete;
60301
+ var args98, tool$promptsDelete;
60187
60302
  var init_promptsDelete2 = __esm(() => {
60188
60303
  init_promptsDelete();
60189
60304
  init_operations();
60190
60305
  init_tools();
60191
- args97 = {
60306
+ args98 = {
60192
60307
  request: PromptsDeleteRequest$inboundSchema
60193
60308
  };
60194
60309
  tool$promptsDelete = {
@@ -60196,9 +60311,9 @@ var init_promptsDelete2 = __esm(() => {
60196
60311
  description: `Delete Prompt
60197
60312
 
60198
60313
  Delete a prompt`,
60199
- args: args97,
60200
- tool: async (client, args98, ctx) => {
60201
- const [result, apiCall] = await promptsDelete(client, args98.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
60314
+ args: args98,
60315
+ tool: async (client, args99, ctx) => {
60316
+ const [result, apiCall] = await promptsDelete(client, args99.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
60202
60317
  if (!result.ok) {
60203
60318
  return {
60204
60319
  content: [{ type: "text", text: result.error.message }],
@@ -60292,12 +60407,12 @@ var init_promptsGetById = __esm(() => {
60292
60407
  });
60293
60408
 
60294
60409
  // src/mcp-server/tools/promptsGetById.ts
60295
- var args98, tool$promptsGetById;
60410
+ var args99, tool$promptsGetById;
60296
60411
  var init_promptsGetById2 = __esm(() => {
60297
60412
  init_promptsGetById();
60298
60413
  init_operations();
60299
60414
  init_tools();
60300
- args98 = {
60415
+ args99 = {
60301
60416
  request: PromptsGetByIdRequest$inboundSchema
60302
60417
  };
60303
60418
  tool$promptsGetById = {
@@ -60305,9 +60420,9 @@ var init_promptsGetById2 = __esm(() => {
60305
60420
  description: `Get Prompt By Id
60306
60421
 
60307
60422
  Get a prompt by ID`,
60308
- args: args98,
60309
- tool: async (client, args99, ctx) => {
60310
- const [result, apiCall] = await promptsGetById(client, args99.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
60423
+ args: args99,
60424
+ tool: async (client, args100, ctx) => {
60425
+ const [result, apiCall] = await promptsGetById(client, args100.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
60311
60426
  if (!result.ok) {
60312
60427
  return {
60313
60428
  content: [{ type: "text", text: result.error.message }],
@@ -60407,12 +60522,12 @@ var init_promptsList = __esm(() => {
60407
60522
  });
60408
60523
 
60409
60524
  // src/mcp-server/tools/promptsList.ts
60410
- var args99, tool$promptsList;
60525
+ var args100, tool$promptsList;
60411
60526
  var init_promptsList2 = __esm(() => {
60412
60527
  init_promptsList();
60413
60528
  init_operations();
60414
60529
  init_tools();
60415
- args99 = {
60530
+ args100 = {
60416
60531
  request: PromptsListRequest$inboundSchema
60417
60532
  };
60418
60533
  tool$promptsList = {
@@ -60420,9 +60535,9 @@ var init_promptsList2 = __esm(() => {
60420
60535
  description: `Prompt List
60421
60536
 
60422
60537
  List the existing prompts`,
60423
- args: args99,
60424
- tool: async (client, args100, ctx) => {
60425
- const [result, apiCall] = await promptsList(client, args100.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
60538
+ args: args100,
60539
+ tool: async (client, args101, ctx) => {
60540
+ const [result, apiCall] = await promptsList(client, args101.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
60426
60541
  if (!result.ok) {
60427
60542
  return {
60428
60543
  content: [{ type: "text", text: result.error.message }],
@@ -60602,12 +60717,12 @@ var init_promptsPromptsHistory = __esm(() => {
60602
60717
  });
60603
60718
 
60604
60719
  // src/mcp-server/tools/promptsPromptsHistory.ts
60605
- var args100, tool$promptsPromptsHistory;
60720
+ var args101, tool$promptsPromptsHistory;
60606
60721
  var init_promptsPromptsHistory2 = __esm(() => {
60607
60722
  init_promptsPromptsHistory();
60608
60723
  init_operations();
60609
60724
  init_tools();
60610
- args100 = {
60725
+ args101 = {
60611
60726
  request: PromptsHistoryRequest$inboundSchema
60612
60727
  };
60613
60728
  tool$promptsPromptsHistory = {
@@ -60615,9 +60730,9 @@ var init_promptsPromptsHistory2 = __esm(() => {
60615
60730
  description: `Get Prompt History
60616
60731
 
60617
60732
  Get a list of historical versions of a prompt by its ID`,
60618
- args: args100,
60619
- tool: async (client, args101, ctx) => {
60620
- const [result, apiCall] = await promptsPromptsHistory(client, args101.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
60733
+ args: args101,
60734
+ tool: async (client, args102, ctx) => {
60735
+ const [result, apiCall] = await promptsPromptsHistory(client, args102.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
60621
60736
  if (!result.ok) {
60622
60737
  return {
60623
60738
  content: [{ type: "text", text: result.error.message }],
@@ -60705,12 +60820,12 @@ var init_promptsUpdate = __esm(() => {
60705
60820
  });
60706
60821
 
60707
60822
  // src/mcp-server/tools/promptsUpdate.ts
60708
- var args101, tool$promptsUpdate;
60823
+ var args102, tool$promptsUpdate;
60709
60824
  var init_promptsUpdate2 = __esm(() => {
60710
60825
  init_promptsUpdate();
60711
60826
  init_components();
60712
60827
  init_tools();
60713
- args101 = {
60828
+ args102 = {
60714
60829
  request: PromptUpdateRequest$inboundSchema
60715
60830
  };
60716
60831
  tool$promptsUpdate = {
@@ -60718,9 +60833,9 @@ var init_promptsUpdate2 = __esm(() => {
60718
60833
  description: `Update Prompt
60719
60834
 
60720
60835
  Update an existing prompt`,
60721
- args: args101,
60722
- tool: async (client, args102, ctx) => {
60723
- const [result, apiCall] = await promptsUpdate(client, args102.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
60836
+ args: args102,
60837
+ tool: async (client, args103, ctx) => {
60838
+ const [result, apiCall] = await promptsUpdate(client, args103.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
60724
60839
  if (!result.ok) {
60725
60840
  return {
60726
60841
  content: [{ type: "text", text: result.error.message }],
@@ -61148,20 +61263,20 @@ var init_pronunciationsPronunciationsUploadCsv = __esm(() => {
61148
61263
  });
61149
61264
 
61150
61265
  // src/mcp-server/tools/pronunciationsPronunciationsUploadCsv.ts
61151
- var args102, tool$pronunciationsPronunciationsUploadCsv;
61266
+ var args103, tool$pronunciationsPronunciationsUploadCsv;
61152
61267
  var init_pronunciationsPronunciationsUploadCsv2 = __esm(() => {
61153
61268
  init_pronunciationsPronunciationsUploadCsv();
61154
61269
  init_components();
61155
61270
  init_tools();
61156
- args102 = {
61271
+ args103 = {
61157
61272
  request: BodyPronunciationsUploadCsv$inboundSchema
61158
61273
  };
61159
61274
  tool$pronunciationsPronunciationsUploadCsv = {
61160
61275
  name: "pronunciations-pronunciations-upload-csv",
61161
61276
  description: `Upload Pronunciations Csv`,
61162
- args: args102,
61163
- tool: async (client, args103, ctx) => {
61164
- const [result, apiCall] = await pronunciationsPronunciationsUploadCsv(client, args103.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
61277
+ args: args103,
61278
+ tool: async (client, args104, ctx) => {
61279
+ const [result, apiCall] = await pronunciationsPronunciationsUploadCsv(client, args104.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
61165
61280
  if (!result.ok) {
61166
61281
  return {
61167
61282
  content: [{ type: "text", text: result.error.message }],
@@ -61249,12 +61364,12 @@ var init_rolesCreate = __esm(() => {
61249
61364
  });
61250
61365
 
61251
61366
  // src/mcp-server/tools/rolesCreate.ts
61252
- var args103, tool$rolesCreate;
61367
+ var args104, tool$rolesCreate;
61253
61368
  var init_rolesCreate2 = __esm(() => {
61254
61369
  init_rolesCreate();
61255
61370
  init_components();
61256
61371
  init_tools();
61257
- args103 = {
61372
+ args104 = {
61258
61373
  request: RoleCreateRequest$inboundSchema
61259
61374
  };
61260
61375
  tool$rolesCreate = {
@@ -61262,9 +61377,9 @@ var init_rolesCreate2 = __esm(() => {
61262
61377
  description: `Create Role
61263
61378
 
61264
61379
  Create a new role.`,
61265
- args: args103,
61266
- tool: async (client, args104, ctx) => {
61267
- const [result, apiCall] = await rolesCreate(client, args104.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
61380
+ args: args104,
61381
+ tool: async (client, args105, ctx) => {
61382
+ const [result, apiCall] = await rolesCreate(client, args105.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
61268
61383
  if (!result.ok) {
61269
61384
  return {
61270
61385
  content: [{ type: "text", text: result.error.message }],
@@ -61363,12 +61478,12 @@ var init_rolesDelete = __esm(() => {
61363
61478
  });
61364
61479
 
61365
61480
  // src/mcp-server/tools/rolesDelete.ts
61366
- var args104, tool$rolesDelete;
61481
+ var args105, tool$rolesDelete;
61367
61482
  var init_rolesDelete2 = __esm(() => {
61368
61483
  init_rolesDelete();
61369
61484
  init_operations();
61370
61485
  init_tools();
61371
- args104 = {
61486
+ args105 = {
61372
61487
  request: RolesDeleteRequest$inboundSchema
61373
61488
  };
61374
61489
  tool$rolesDelete = {
@@ -61376,9 +61491,9 @@ var init_rolesDelete2 = __esm(() => {
61376
61491
  description: `Delete Role
61377
61492
 
61378
61493
  Delete a role. Optionally, reassign existing users with that role to a new role.`,
61379
- args: args104,
61380
- tool: async (client, args105, ctx) => {
61381
- const [result, apiCall] = await rolesDelete(client, args105.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
61494
+ args: args105,
61495
+ tool: async (client, args106, ctx) => {
61496
+ const [result, apiCall] = await rolesDelete(client, args106.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
61382
61497
  if (!result.ok) {
61383
61498
  return {
61384
61499
  content: [{ type: "text", text: result.error.message }],
@@ -61472,12 +61587,12 @@ var init_rolesGetById = __esm(() => {
61472
61587
  });
61473
61588
 
61474
61589
  // src/mcp-server/tools/rolesGetById.ts
61475
- var args105, tool$rolesGetById;
61590
+ var args106, tool$rolesGetById;
61476
61591
  var init_rolesGetById2 = __esm(() => {
61477
61592
  init_rolesGetById();
61478
61593
  init_operations();
61479
61594
  init_tools();
61480
- args105 = {
61595
+ args106 = {
61481
61596
  request: RolesGetByIdRequest$inboundSchema
61482
61597
  };
61483
61598
  tool$rolesGetById = {
@@ -61485,9 +61600,9 @@ var init_rolesGetById2 = __esm(() => {
61485
61600
  description: `Get Role
61486
61601
 
61487
61602
  Fetch a given role.`,
61488
- args: args105,
61489
- tool: async (client, args106, ctx) => {
61490
- const [result, apiCall] = await rolesGetById(client, args106.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
61603
+ args: args106,
61604
+ tool: async (client, args107, ctx) => {
61605
+ const [result, apiCall] = await rolesGetById(client, args107.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
61491
61606
  if (!result.ok) {
61492
61607
  return {
61493
61608
  content: [{ type: "text", text: result.error.message }],
@@ -61587,12 +61702,12 @@ var init_rolesList = __esm(() => {
61587
61702
  });
61588
61703
 
61589
61704
  // src/mcp-server/tools/rolesList.ts
61590
- var args106, tool$rolesList;
61705
+ var args107, tool$rolesList;
61591
61706
  var init_rolesList2 = __esm(() => {
61592
61707
  init_rolesList();
61593
61708
  init_operations();
61594
61709
  init_tools();
61595
- args106 = {
61710
+ args107 = {
61596
61711
  request: RolesListRequest$inboundSchema
61597
61712
  };
61598
61713
  tool$rolesList = {
@@ -61600,9 +61715,9 @@ var init_rolesList2 = __esm(() => {
61600
61715
  description: `List Roles
61601
61716
 
61602
61717
  List the existing roles.`,
61603
- args: args106,
61604
- tool: async (client, args107, ctx) => {
61605
- const [result, apiCall] = await rolesList(client, args107.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
61718
+ args: args107,
61719
+ tool: async (client, args108, ctx) => {
61720
+ const [result, apiCall] = await rolesList(client, args108.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
61606
61721
  if (!result.ok) {
61607
61722
  return {
61608
61723
  content: [{ type: "text", text: result.error.message }],
@@ -61690,12 +61805,12 @@ var init_rolesUpdate = __esm(() => {
61690
61805
  });
61691
61806
 
61692
61807
  // src/mcp-server/tools/rolesUpdate.ts
61693
- var args107, tool$rolesUpdate;
61808
+ var args108, tool$rolesUpdate;
61694
61809
  var init_rolesUpdate2 = __esm(() => {
61695
61810
  init_rolesUpdate();
61696
61811
  init_components();
61697
61812
  init_tools();
61698
- args107 = {
61813
+ args108 = {
61699
61814
  request: RoleUpdateRequest$inboundSchema
61700
61815
  };
61701
61816
  tool$rolesUpdate = {
@@ -61703,9 +61818,9 @@ var init_rolesUpdate2 = __esm(() => {
61703
61818
  description: `Update Role
61704
61819
 
61705
61820
  Update an existing role.`,
61706
- args: args107,
61707
- tool: async (client, args108, ctx) => {
61708
- const [result, apiCall] = await rolesUpdate(client, args108.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
61821
+ args: args108,
61822
+ tool: async (client, args109, ctx) => {
61823
+ const [result, apiCall] = await rolesUpdate(client, args109.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
61709
61824
  if (!result.ok) {
61710
61825
  return {
61711
61826
  content: [{ type: "text", text: result.error.message }],
@@ -61793,12 +61908,12 @@ var init_servicesCreate = __esm(() => {
61793
61908
  });
61794
61909
 
61795
61910
  // src/mcp-server/tools/servicesCreate.ts
61796
- var args108, tool$servicesCreate;
61911
+ var args109, tool$servicesCreate;
61797
61912
  var init_servicesCreate2 = __esm(() => {
61798
61913
  init_servicesCreate();
61799
61914
  init_components();
61800
61915
  init_tools();
61801
- args108 = {
61916
+ args109 = {
61802
61917
  request: ServiceCreateRequest$inboundSchema
61803
61918
  };
61804
61919
  tool$servicesCreate = {
@@ -61806,9 +61921,9 @@ var init_servicesCreate2 = __esm(() => {
61806
61921
  description: `Create Service
61807
61922
 
61808
61923
  Create a new service.`,
61809
- args: args108,
61810
- tool: async (client, args109, ctx) => {
61811
- const [result, apiCall] = await servicesCreate(client, args109.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
61924
+ args: args109,
61925
+ tool: async (client, args110, ctx) => {
61926
+ const [result, apiCall] = await servicesCreate(client, args110.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
61812
61927
  if (!result.ok) {
61813
61928
  return {
61814
61929
  content: [{ type: "text", text: result.error.message }],
@@ -61906,12 +62021,12 @@ var init_servicesDelete = __esm(() => {
61906
62021
  });
61907
62022
 
61908
62023
  // src/mcp-server/tools/servicesDelete.ts
61909
- var args109, tool$servicesDelete;
62024
+ var args110, tool$servicesDelete;
61910
62025
  var init_servicesDelete2 = __esm(() => {
61911
62026
  init_servicesDelete();
61912
62027
  init_operations();
61913
62028
  init_tools();
61914
- args109 = {
62029
+ args110 = {
61915
62030
  request: ServiceDeleteRequest$inboundSchema
61916
62031
  };
61917
62032
  tool$servicesDelete = {
@@ -61919,9 +62034,9 @@ var init_servicesDelete2 = __esm(() => {
61919
62034
  description: `Delete Service
61920
62035
 
61921
62036
  Delete a service. A service with linked tools cannot be deleted.`,
61922
- args: args109,
61923
- tool: async (client, args110, ctx) => {
61924
- const [result, apiCall] = await servicesDelete(client, args110.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
62037
+ args: args110,
62038
+ tool: async (client, args111, ctx) => {
62039
+ const [result, apiCall] = await servicesDelete(client, args111.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
61925
62040
  if (!result.ok) {
61926
62041
  return {
61927
62042
  content: [{ type: "text", text: result.error.message }],
@@ -62015,12 +62130,12 @@ var init_servicesGetById = __esm(() => {
62015
62130
  });
62016
62131
 
62017
62132
  // src/mcp-server/tools/servicesGetById.ts
62018
- var args110, tool$servicesGetById;
62133
+ var args111, tool$servicesGetById;
62019
62134
  var init_servicesGetById2 = __esm(() => {
62020
62135
  init_servicesGetById();
62021
62136
  init_operations();
62022
62137
  init_tools();
62023
- args110 = {
62138
+ args111 = {
62024
62139
  request: ServicesGetByIdRequest$inboundSchema
62025
62140
  };
62026
62141
  tool$servicesGetById = {
@@ -62028,9 +62143,9 @@ var init_servicesGetById2 = __esm(() => {
62028
62143
  description: `Get Service By Id
62029
62144
 
62030
62145
  Get a service by its ID`,
62031
- args: args110,
62032
- tool: async (client, args111, ctx) => {
62033
- const [result, apiCall] = await servicesGetById(client, args111.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
62146
+ args: args111,
62147
+ tool: async (client, args112, ctx) => {
62148
+ const [result, apiCall] = await servicesGetById(client, args112.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
62034
62149
  if (!result.ok) {
62035
62150
  return {
62036
62151
  content: [{ type: "text", text: result.error.message }],
@@ -62130,12 +62245,12 @@ var init_servicesList = __esm(() => {
62130
62245
  });
62131
62246
 
62132
62247
  // src/mcp-server/tools/servicesList.ts
62133
- var args111, tool$servicesList;
62248
+ var args112, tool$servicesList;
62134
62249
  var init_servicesList2 = __esm(() => {
62135
62250
  init_servicesList();
62136
62251
  init_operations();
62137
62252
  init_tools();
62138
- args111 = {
62253
+ args112 = {
62139
62254
  request: ServiceListRequest$inboundSchema
62140
62255
  };
62141
62256
  tool$servicesList = {
@@ -62143,9 +62258,9 @@ var init_servicesList2 = __esm(() => {
62143
62258
  description: `Service List
62144
62259
 
62145
62260
  List the existing services`,
62146
- args: args111,
62147
- tool: async (client, args112, ctx) => {
62148
- const [result, apiCall] = await servicesList(client, args112.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
62261
+ args: args112,
62262
+ tool: async (client, args113, ctx) => {
62263
+ const [result, apiCall] = await servicesList(client, args113.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
62149
62264
  if (!result.ok) {
62150
62265
  return {
62151
62266
  content: [{ type: "text", text: result.error.message }],
@@ -62233,12 +62348,12 @@ var init_servicesUpdate = __esm(() => {
62233
62348
  });
62234
62349
 
62235
62350
  // src/mcp-server/tools/servicesUpdate.ts
62236
- var args112, tool$servicesUpdate;
62351
+ var args113, tool$servicesUpdate;
62237
62352
  var init_servicesUpdate2 = __esm(() => {
62238
62353
  init_servicesUpdate();
62239
62354
  init_components();
62240
62355
  init_tools();
62241
- args112 = {
62356
+ args113 = {
62242
62357
  request: ServiceUpdateRequest$inboundSchema
62243
62358
  };
62244
62359
  tool$servicesUpdate = {
@@ -62246,9 +62361,9 @@ var init_servicesUpdate2 = __esm(() => {
62246
62361
  description: `Update Service
62247
62362
 
62248
62363
  Update an existing service.`,
62249
- args: args112,
62250
- tool: async (client, args113, ctx) => {
62251
- const [result, apiCall] = await servicesUpdate(client, args113.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
62364
+ args: args113,
62365
+ tool: async (client, args114, ctx) => {
62366
+ const [result, apiCall] = await servicesUpdate(client, args114.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
62252
62367
  if (!result.ok) {
62253
62368
  return {
62254
62369
  content: [{ type: "text", text: result.error.message }],
@@ -62342,20 +62457,20 @@ var init_sessionDebugGetSessionDataBySessionId = __esm(() => {
62342
62457
  });
62343
62458
 
62344
62459
  // src/mcp-server/tools/sessionDebugGetSessionDataBySessionId.ts
62345
- var args113, tool$sessionDebugGetSessionDataBySessionId;
62460
+ var args114, tool$sessionDebugGetSessionDataBySessionId;
62346
62461
  var init_sessionDebugGetSessionDataBySessionId2 = __esm(() => {
62347
62462
  init_sessionDebugGetSessionDataBySessionId();
62348
62463
  init_operations();
62349
62464
  init_tools();
62350
- args113 = {
62465
+ args114 = {
62351
62466
  request: GetSessionDataBySessionIdRequest$inboundSchema
62352
62467
  };
62353
62468
  tool$sessionDebugGetSessionDataBySessionId = {
62354
62469
  name: "session-debug-get-session-data-by-session-id",
62355
62470
  description: `Get Session Data By Session Id`,
62356
- args: args113,
62357
- tool: async (client, args114, ctx) => {
62358
- const [result, apiCall] = await sessionDebugGetSessionDataBySessionId(client, args114.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
62471
+ args: args114,
62472
+ tool: async (client, args115, ctx) => {
62473
+ const [result, apiCall] = await sessionDebugGetSessionDataBySessionId(client, args115.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
62359
62474
  if (!result.ok) {
62360
62475
  return {
62361
62476
  content: [{ type: "text", text: result.error.message }],
@@ -62447,20 +62562,20 @@ var init_sessionDebugGetSessionDataBySid = __esm(() => {
62447
62562
  });
62448
62563
 
62449
62564
  // src/mcp-server/tools/sessionDebugGetSessionDataBySid.ts
62450
- var args114, tool$sessionDebugGetSessionDataBySid;
62565
+ var args115, tool$sessionDebugGetSessionDataBySid;
62451
62566
  var init_sessionDebugGetSessionDataBySid2 = __esm(() => {
62452
62567
  init_sessionDebugGetSessionDataBySid();
62453
62568
  init_operations();
62454
62569
  init_tools();
62455
- args114 = {
62570
+ args115 = {
62456
62571
  request: GetSessionDataBySidRequest$inboundSchema
62457
62572
  };
62458
62573
  tool$sessionDebugGetSessionDataBySid = {
62459
62574
  name: "session-debug-get-session-data-by-sid",
62460
62575
  description: `Get Session Data By Sid`,
62461
- args: args114,
62462
- tool: async (client, args115, ctx) => {
62463
- const [result, apiCall] = await sessionDebugGetSessionDataBySid(client, args115.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
62576
+ args: args115,
62577
+ tool: async (client, args116, ctx) => {
62578
+ const [result, apiCall] = await sessionDebugGetSessionDataBySid(client, args116.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
62464
62579
  if (!result.ok) {
62465
62580
  return {
62466
62581
  content: [{ type: "text", text: result.error.message }],
@@ -62558,20 +62673,20 @@ var init_sessionDebugGetSessionToolCallResultById = __esm(() => {
62558
62673
  });
62559
62674
 
62560
62675
  // src/mcp-server/tools/sessionDebugGetSessionToolCallResultById.ts
62561
- var args115, tool$sessionDebugGetSessionToolCallResultById;
62676
+ var args116, tool$sessionDebugGetSessionToolCallResultById;
62562
62677
  var init_sessionDebugGetSessionToolCallResultById2 = __esm(() => {
62563
62678
  init_sessionDebugGetSessionToolCallResultById();
62564
62679
  init_operations();
62565
62680
  init_tools();
62566
- args115 = {
62681
+ args116 = {
62567
62682
  request: GetSessionToolCallResultByIdRequest$inboundSchema
62568
62683
  };
62569
62684
  tool$sessionDebugGetSessionToolCallResultById = {
62570
62685
  name: "session-debug-get-session-tool-call-result-by-id",
62571
62686
  description: `Get Session Tool Call Result By Id`,
62572
- args: args115,
62573
- tool: async (client, args116, ctx) => {
62574
- const [result, apiCall] = await sessionDebugGetSessionToolCallResultById(client, args116.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
62687
+ args: args116,
62688
+ tool: async (client, args117, ctx) => {
62689
+ const [result, apiCall] = await sessionDebugGetSessionToolCallResultById(client, args117.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
62575
62690
  if (!result.ok) {
62576
62691
  return {
62577
62692
  content: [{ type: "text", text: result.error.message }],
@@ -62659,12 +62774,12 @@ var init_sessionLabelsCreate = __esm(() => {
62659
62774
  });
62660
62775
 
62661
62776
  // src/mcp-server/tools/sessionLabelsCreate.ts
62662
- var args116, tool$sessionLabelsCreate;
62777
+ var args117, tool$sessionLabelsCreate;
62663
62778
  var init_sessionLabelsCreate2 = __esm(() => {
62664
62779
  init_sessionLabelsCreate();
62665
62780
  init_components();
62666
62781
  init_tools();
62667
- args116 = {
62782
+ args117 = {
62668
62783
  request: SessionLabelCreate$inboundSchema
62669
62784
  };
62670
62785
  tool$sessionLabelsCreate = {
@@ -62672,9 +62787,9 @@ var init_sessionLabelsCreate2 = __esm(() => {
62672
62787
  description: `Create Label
62673
62788
 
62674
62789
  Create a new label`,
62675
- args: args116,
62676
- tool: async (client, args117, ctx) => {
62677
- const [result, apiCall] = await sessionLabelsCreate(client, args117.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
62790
+ args: args117,
62791
+ tool: async (client, args118, ctx) => {
62792
+ const [result, apiCall] = await sessionLabelsCreate(client, args118.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
62678
62793
  if (!result.ok) {
62679
62794
  return {
62680
62795
  content: [{ type: "text", text: result.error.message }],
@@ -62765,20 +62880,20 @@ var init_sessionLabelsGetById = __esm(() => {
62765
62880
  });
62766
62881
 
62767
62882
  // src/mcp-server/tools/sessionLabelsGetById.ts
62768
- var args117, tool$sessionLabelsGetById;
62883
+ var args118, tool$sessionLabelsGetById;
62769
62884
  var init_sessionLabelsGetById2 = __esm(() => {
62770
62885
  init_sessionLabelsGetById();
62771
62886
  init_operations();
62772
62887
  init_tools();
62773
- args117 = {
62888
+ args118 = {
62774
62889
  request: SessionLabelGetByIdRequest$inboundSchema
62775
62890
  };
62776
62891
  tool$sessionLabelsGetById = {
62777
62892
  name: "session-labels-get-by-id",
62778
62893
  description: `Get Label By Id`,
62779
- args: args117,
62780
- tool: async (client, args118, ctx) => {
62781
- const [result, apiCall] = await sessionLabelsGetById(client, args118.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
62894
+ args: args118,
62895
+ tool: async (client, args119, ctx) => {
62896
+ const [result, apiCall] = await sessionLabelsGetById(client, args119.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
62782
62897
  if (!result.ok) {
62783
62898
  return {
62784
62899
  content: [{ type: "text", text: result.error.message }],
@@ -62878,20 +62993,20 @@ var init_sessionLabelsList = __esm(() => {
62878
62993
  });
62879
62994
 
62880
62995
  // src/mcp-server/tools/sessionLabelsList.ts
62881
- var args118, tool$sessionLabelsList;
62996
+ var args119, tool$sessionLabelsList;
62882
62997
  var init_sessionLabelsList2 = __esm(() => {
62883
62998
  init_sessionLabelsList();
62884
62999
  init_operations();
62885
63000
  init_tools();
62886
- args118 = {
63001
+ args119 = {
62887
63002
  request: SessionLabelsListRequest$inboundSchema
62888
63003
  };
62889
63004
  tool$sessionLabelsList = {
62890
63005
  name: "session-labels-list",
62891
63006
  description: `Session Labels List`,
62892
- args: args118,
62893
- tool: async (client, args119, ctx) => {
62894
- const [result, apiCall] = await sessionLabelsList(client, args119.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
63007
+ args: args119,
63008
+ tool: async (client, args120, ctx) => {
63009
+ const [result, apiCall] = await sessionLabelsList(client, args120.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
62895
63010
  if (!result.ok) {
62896
63011
  return {
62897
63012
  content: [{ type: "text", text: result.error.message }],
@@ -62985,20 +63100,20 @@ var init_sessionsFullSummaryGetById = __esm(() => {
62985
63100
  });
62986
63101
 
62987
63102
  // src/mcp-server/tools/sessionsFullSummaryGetById.ts
62988
- var args119, tool$sessionsFullSummaryGetById;
63103
+ var args120, tool$sessionsFullSummaryGetById;
62989
63104
  var init_sessionsFullSummaryGetById2 = __esm(() => {
62990
63105
  init_sessionsFullSummaryGetById();
62991
63106
  init_operations();
62992
63107
  init_tools();
62993
- args119 = {
63108
+ args120 = {
62994
63109
  request: SessionFullSummaryGetByIdRequest$inboundSchema
62995
63110
  };
62996
63111
  tool$sessionsFullSummaryGetById = {
62997
63112
  name: "sessions-full-summary-get-by-id",
62998
63113
  description: `Get Full Session Summary By Id`,
62999
- args: args119,
63000
- tool: async (client, args120, ctx) => {
63001
- const [result, apiCall] = await sessionsFullSummaryGetById(client, args120.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
63114
+ args: args120,
63115
+ tool: async (client, args121, ctx) => {
63116
+ const [result, apiCall] = await sessionsFullSummaryGetById(client, args121.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
63002
63117
  if (!result.ok) {
63003
63118
  return {
63004
63119
  content: [{ type: "text", text: result.error.message }],
@@ -63092,20 +63207,20 @@ var init_sessionsGenerateSessionRecordingUrls = __esm(() => {
63092
63207
  });
63093
63208
 
63094
63209
  // src/mcp-server/tools/sessionsGenerateSessionRecordingUrls.ts
63095
- var args120, tool$sessionsGenerateSessionRecordingUrls;
63210
+ var args121, tool$sessionsGenerateSessionRecordingUrls;
63096
63211
  var init_sessionsGenerateSessionRecordingUrls2 = __esm(() => {
63097
63212
  init_sessionsGenerateSessionRecordingUrls();
63098
63213
  init_operations();
63099
63214
  init_tools();
63100
- args120 = {
63215
+ args121 = {
63101
63216
  request: GenerateSessionRecordingUrlsRequest$inboundSchema
63102
63217
  };
63103
63218
  tool$sessionsGenerateSessionRecordingUrls = {
63104
63219
  name: "sessions-generate-session-recording-urls",
63105
63220
  description: `Generate Recording Urls`,
63106
- args: args120,
63107
- tool: async (client, args121, ctx) => {
63108
- const [result, apiCall] = await sessionsGenerateSessionRecordingUrls(client, args121.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
63221
+ args: args121,
63222
+ tool: async (client, args122, ctx) => {
63223
+ const [result, apiCall] = await sessionsGenerateSessionRecordingUrls(client, args122.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
63109
63224
  if (!result.ok) {
63110
63225
  return {
63111
63226
  content: [{ type: "text", text: result.error.message }],
@@ -63199,20 +63314,20 @@ var init_sessionsGetById = __esm(() => {
63199
63314
  });
63200
63315
 
63201
63316
  // src/mcp-server/tools/sessionsGetById.ts
63202
- var args121, tool$sessionsGetById;
63317
+ var args122, tool$sessionsGetById;
63203
63318
  var init_sessionsGetById2 = __esm(() => {
63204
63319
  init_sessionsGetById();
63205
63320
  init_operations();
63206
63321
  init_tools();
63207
- args121 = {
63322
+ args122 = {
63208
63323
  request: SessionGetByIdRequest$inboundSchema
63209
63324
  };
63210
63325
  tool$sessionsGetById = {
63211
63326
  name: "sessions-get-by-id",
63212
63327
  description: `Get A Single Session By Id`,
63213
- args: args121,
63214
- tool: async (client, args122, ctx) => {
63215
- const [result, apiCall] = await sessionsGetById(client, args122.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
63328
+ args: args122,
63329
+ tool: async (client, args123, ctx) => {
63330
+ const [result, apiCall] = await sessionsGetById(client, args123.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
63216
63331
  if (!result.ok) {
63217
63332
  return {
63218
63333
  content: [{ type: "text", text: result.error.message }],
@@ -63306,20 +63421,20 @@ var init_sessionsLatencyGetById = __esm(() => {
63306
63421
  });
63307
63422
 
63308
63423
  // src/mcp-server/tools/sessionsLatencyGetById.ts
63309
- var args122, tool$sessionsLatencyGetById;
63424
+ var args123, tool$sessionsLatencyGetById;
63310
63425
  var init_sessionsLatencyGetById2 = __esm(() => {
63311
63426
  init_sessionsLatencyGetById();
63312
63427
  init_operations();
63313
63428
  init_tools();
63314
- args122 = {
63429
+ args123 = {
63315
63430
  request: SessionLatencyGetByIdRequest$inboundSchema
63316
63431
  };
63317
63432
  tool$sessionsLatencyGetById = {
63318
63433
  name: "sessions-latency-get-by-id",
63319
63434
  description: `Inspect Latency For Session`,
63320
- args: args122,
63321
- tool: async (client, args123, ctx) => {
63322
- const [result, apiCall] = await sessionsLatencyGetById(client, args123.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
63435
+ args: args123,
63436
+ tool: async (client, args124, ctx) => {
63437
+ const [result, apiCall] = await sessionsLatencyGetById(client, args124.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
63323
63438
  if (!result.ok) {
63324
63439
  return {
63325
63440
  content: [{ type: "text", text: result.error.message }],
@@ -63419,20 +63534,20 @@ var init_sessionsList = __esm(() => {
63419
63534
  });
63420
63535
 
63421
63536
  // src/mcp-server/tools/sessionsList.ts
63422
- var args123, tool$sessionsList;
63537
+ var args124, tool$sessionsList;
63423
63538
  var init_sessionsList2 = __esm(() => {
63424
63539
  init_sessionsList();
63425
63540
  init_operations();
63426
63541
  init_tools();
63427
- args123 = {
63542
+ args124 = {
63428
63543
  request: SessionsListRequest$inboundSchema
63429
63544
  };
63430
63545
  tool$sessionsList = {
63431
63546
  name: "sessions-list",
63432
63547
  description: `Sessions List`,
63433
- args: args123,
63434
- tool: async (client, args124, ctx) => {
63435
- const [result, apiCall] = await sessionsList(client, args124.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
63548
+ args: args124,
63549
+ tool: async (client, args125, ctx) => {
63550
+ const [result, apiCall] = await sessionsList(client, args125.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
63436
63551
  if (!result.ok) {
63437
63552
  return {
63438
63553
  content: [{ type: "text", text: result.error.message }],
@@ -63524,20 +63639,20 @@ var init_sessionsSessionRecordingStream = __esm(() => {
63524
63639
  });
63525
63640
 
63526
63641
  // src/mcp-server/tools/sessionsSessionRecordingStream.ts
63527
- var args124, tool$sessionsSessionRecordingStream;
63642
+ var args125, tool$sessionsSessionRecordingStream;
63528
63643
  var init_sessionsSessionRecordingStream2 = __esm(() => {
63529
63644
  init_sessionsSessionRecordingStream();
63530
63645
  init_operations();
63531
63646
  init_tools();
63532
- args124 = {
63647
+ args125 = {
63533
63648
  request: SessionRecordingStreamRequest$inboundSchema
63534
63649
  };
63535
63650
  tool$sessionsSessionRecordingStream = {
63536
63651
  name: "sessions-session-recording-stream",
63537
63652
  description: `Stream Recording`,
63538
- args: args124,
63539
- tool: async (client, args125, ctx) => {
63540
- const [result, apiCall] = await sessionsSessionRecordingStream(client, args125.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
63653
+ args: args125,
63654
+ tool: async (client, args126, ctx) => {
63655
+ const [result, apiCall] = await sessionsSessionRecordingStream(client, args126.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
63541
63656
  if (!result.ok) {
63542
63657
  return {
63543
63658
  content: [{ type: "text", text: result.error.message }],
@@ -63631,20 +63746,20 @@ var init_sessionsTranscriptGetById = __esm(() => {
63631
63746
  });
63632
63747
 
63633
63748
  // src/mcp-server/tools/sessionsTranscriptGetById.ts
63634
- var args125, tool$sessionsTranscriptGetById;
63749
+ var args126, tool$sessionsTranscriptGetById;
63635
63750
  var init_sessionsTranscriptGetById2 = __esm(() => {
63636
63751
  init_sessionsTranscriptGetById();
63637
63752
  init_operations();
63638
63753
  init_tools();
63639
- args125 = {
63754
+ args126 = {
63640
63755
  request: SessionTranscriptGetByIdRequest$inboundSchema
63641
63756
  };
63642
63757
  tool$sessionsTranscriptGetById = {
63643
63758
  name: "sessions-transcript-get-by-id",
63644
63759
  description: `Get Session Transcript By Id`,
63645
- args: args125,
63646
- tool: async (client, args126, ctx) => {
63647
- const [result, apiCall] = await sessionsTranscriptGetById(client, args126.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
63760
+ args: args126,
63761
+ tool: async (client, args127, ctx) => {
63762
+ const [result, apiCall] = await sessionsTranscriptGetById(client, args127.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
63648
63763
  if (!result.ok) {
63649
63764
  return {
63650
63765
  content: [{ type: "text", text: result.error.message }],
@@ -63820,20 +63935,20 @@ var init_takeoutsTakeoutsGetByJobId = __esm(() => {
63820
63935
  });
63821
63936
 
63822
63937
  // src/mcp-server/tools/takeoutsTakeoutsGetByJobId.ts
63823
- var args126, tool$takeoutsTakeoutsGetByJobId;
63938
+ var args127, tool$takeoutsTakeoutsGetByJobId;
63824
63939
  var init_takeoutsTakeoutsGetByJobId2 = __esm(() => {
63825
63940
  init_takeoutsTakeoutsGetByJobId();
63826
63941
  init_operations();
63827
63942
  init_tools();
63828
- args126 = {
63943
+ args127 = {
63829
63944
  request: TakeoutsGetByJobIdRequest$inboundSchema
63830
63945
  };
63831
63946
  tool$takeoutsTakeoutsGetByJobId = {
63832
63947
  name: "takeouts-takeouts-get-by-job-id",
63833
63948
  description: `Get Takeout`,
63834
- args: args126,
63835
- tool: async (client, args127, ctx) => {
63836
- const [result, apiCall] = await takeoutsTakeoutsGetByJobId(client, args127.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
63949
+ args: args127,
63950
+ tool: async (client, args128, ctx) => {
63951
+ const [result, apiCall] = await takeoutsTakeoutsGetByJobId(client, args128.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
63837
63952
  if (!result.ok) {
63838
63953
  return {
63839
63954
  content: [{ type: "text", text: result.error.message }],
@@ -63933,20 +64048,20 @@ var init_takeoutsTakeoutsGetFile = __esm(() => {
63933
64048
  });
63934
64049
 
63935
64050
  // src/mcp-server/tools/takeoutsTakeoutsGetFile.ts
63936
- var args127, tool$takeoutsTakeoutsGetFile;
64051
+ var args128, tool$takeoutsTakeoutsGetFile;
63937
64052
  var init_takeoutsTakeoutsGetFile2 = __esm(() => {
63938
64053
  init_takeoutsTakeoutsGetFile();
63939
64054
  init_operations();
63940
64055
  init_tools();
63941
- args127 = {
64056
+ args128 = {
63942
64057
  request: TakeoutsGetFileRequest$inboundSchema
63943
64058
  };
63944
64059
  tool$takeoutsTakeoutsGetFile = {
63945
64060
  name: "takeouts-takeouts-get-file",
63946
64061
  description: `Get File`,
63947
- args: args127,
63948
- tool: async (client, args128, ctx) => {
63949
- const [result, apiCall] = await takeoutsTakeoutsGetFile(client, args128.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
64062
+ args: args128,
64063
+ tool: async (client, args129, ctx) => {
64064
+ const [result, apiCall] = await takeoutsTakeoutsGetFile(client, args129.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
63950
64065
  if (!result.ok) {
63951
64066
  return {
63952
64067
  content: [{ type: "text", text: result.error.message }],
@@ -64034,12 +64149,12 @@ var init_toolsCreate = __esm(() => {
64034
64149
  });
64035
64150
 
64036
64151
  // src/mcp-server/tools/toolsCreate.ts
64037
- var args128, tool$toolsCreate;
64152
+ var args129, tool$toolsCreate;
64038
64153
  var init_toolsCreate2 = __esm(() => {
64039
64154
  init_toolsCreate();
64040
64155
  init_components();
64041
64156
  init_tools();
64042
- args128 = {
64157
+ args129 = {
64043
64158
  request: ToolCreateRequest$inboundSchema
64044
64159
  };
64045
64160
  tool$toolsCreate = {
@@ -64047,9 +64162,9 @@ var init_toolsCreate2 = __esm(() => {
64047
64162
  description: `Create Tool
64048
64163
 
64049
64164
  Create a new tool`,
64050
- args: args128,
64051
- tool: async (client, args129, ctx) => {
64052
- const [result, apiCall] = await toolsCreate(client, args129.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
64165
+ args: args129,
64166
+ tool: async (client, args130, ctx) => {
64167
+ const [result, apiCall] = await toolsCreate(client, args130.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
64053
64168
  if (!result.ok) {
64054
64169
  return {
64055
64170
  content: [{ type: "text", text: result.error.message }],
@@ -64147,12 +64262,12 @@ var init_toolsDelete = __esm(() => {
64147
64262
  });
64148
64263
 
64149
64264
  // src/mcp-server/tools/toolsDelete.ts
64150
- var args129, tool$toolsDelete;
64265
+ var args130, tool$toolsDelete;
64151
64266
  var init_toolsDelete2 = __esm(() => {
64152
64267
  init_toolsDelete();
64153
64268
  init_operations();
64154
64269
  init_tools();
64155
- args129 = {
64270
+ args130 = {
64156
64271
  request: ToolDeleteRequest$inboundSchema
64157
64272
  };
64158
64273
  tool$toolsDelete = {
@@ -64160,9 +64275,9 @@ var init_toolsDelete2 = __esm(() => {
64160
64275
  description: `Delete Tool
64161
64276
 
64162
64277
  Delete a tool.`,
64163
- args: args129,
64164
- tool: async (client, args130, ctx) => {
64165
- const [result, apiCall] = await toolsDelete(client, args130.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
64278
+ args: args130,
64279
+ tool: async (client, args131, ctx) => {
64280
+ const [result, apiCall] = await toolsDelete(client, args131.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
64166
64281
  if (!result.ok) {
64167
64282
  return {
64168
64283
  content: [{ type: "text", text: result.error.message }],
@@ -64256,12 +64371,12 @@ var init_toolsGetByName = __esm(() => {
64256
64371
  });
64257
64372
 
64258
64373
  // src/mcp-server/tools/toolsGetByName.ts
64259
- var args130, tool$toolsGetByName;
64374
+ var args131, tool$toolsGetByName;
64260
64375
  var init_toolsGetByName2 = __esm(() => {
64261
64376
  init_toolsGetByName();
64262
64377
  init_operations();
64263
64378
  init_tools();
64264
- args130 = {
64379
+ args131 = {
64265
64380
  request: ToolGetByNameRequest$inboundSchema
64266
64381
  };
64267
64382
  tool$toolsGetByName = {
@@ -64269,9 +64384,9 @@ var init_toolsGetByName2 = __esm(() => {
64269
64384
  description: `Tool Info
64270
64385
 
64271
64386
  Get the details of a specific tool`,
64272
- args: args130,
64273
- tool: async (client, args131, ctx) => {
64274
- const [result, apiCall] = await toolsGetByName(client, args131.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
64387
+ args: args131,
64388
+ tool: async (client, args132, ctx) => {
64389
+ const [result, apiCall] = await toolsGetByName(client, args132.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
64275
64390
  if (!result.ok) {
64276
64391
  return {
64277
64392
  content: [{ type: "text", text: result.error.message }],
@@ -64371,12 +64486,12 @@ var init_toolsList = __esm(() => {
64371
64486
  });
64372
64487
 
64373
64488
  // src/mcp-server/tools/toolsList.ts
64374
- var args131, tool$toolsList;
64489
+ var args132, tool$toolsList;
64375
64490
  var init_toolsList2 = __esm(() => {
64376
64491
  init_toolsList();
64377
64492
  init_operations();
64378
64493
  init_tools();
64379
- args131 = {
64494
+ args132 = {
64380
64495
  request: ToolListRequest$inboundSchema
64381
64496
  };
64382
64497
  tool$toolsList = {
@@ -64384,9 +64499,9 @@ var init_toolsList2 = __esm(() => {
64384
64499
  description: `Tool List
64385
64500
 
64386
64501
  List the existing tools`,
64387
- args: args131,
64388
- tool: async (client, args132, ctx) => {
64389
- const [result, apiCall] = await toolsList(client, args132.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
64502
+ args: args132,
64503
+ tool: async (client, args133, ctx) => {
64504
+ const [result, apiCall] = await toolsList(client, args133.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
64390
64505
  if (!result.ok) {
64391
64506
  return {
64392
64507
  content: [{ type: "text", text: result.error.message }],
@@ -64474,12 +64589,12 @@ var init_toolsUpdate = __esm(() => {
64474
64589
  });
64475
64590
 
64476
64591
  // src/mcp-server/tools/toolsUpdate.ts
64477
- var args132, tool$toolsUpdate;
64592
+ var args133, tool$toolsUpdate;
64478
64593
  var init_toolsUpdate2 = __esm(() => {
64479
64594
  init_toolsUpdate();
64480
64595
  init_components();
64481
64596
  init_tools();
64482
- args132 = {
64597
+ args133 = {
64483
64598
  request: ToolUpdateRequest$inboundSchema
64484
64599
  };
64485
64600
  tool$toolsUpdate = {
@@ -64487,9 +64602,9 @@ var init_toolsUpdate2 = __esm(() => {
64487
64602
  description: `Update Tool
64488
64603
 
64489
64604
  Update an existing tool`,
64490
- args: args132,
64491
- tool: async (client, args133, ctx) => {
64492
- const [result, apiCall] = await toolsUpdate(client, args133.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
64605
+ args: args133,
64606
+ tool: async (client, args134, ctx) => {
64607
+ const [result, apiCall] = await toolsUpdate(client, args134.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
64493
64608
  if (!result.ok) {
64494
64609
  return {
64495
64610
  content: [{ type: "text", text: result.error.message }],
@@ -64577,12 +64692,12 @@ var init_usersCreate = __esm(() => {
64577
64692
  });
64578
64693
 
64579
64694
  // src/mcp-server/tools/usersCreate.ts
64580
- var args133, tool$usersCreate;
64695
+ var args134, tool$usersCreate;
64581
64696
  var init_usersCreate2 = __esm(() => {
64582
64697
  init_usersCreate();
64583
64698
  init_components();
64584
64699
  init_tools();
64585
- args133 = {
64700
+ args134 = {
64586
64701
  request: UserCreateRequest$inboundSchema
64587
64702
  };
64588
64703
  tool$usersCreate = {
@@ -64590,9 +64705,9 @@ var init_usersCreate2 = __esm(() => {
64590
64705
  description: `Create User
64591
64706
 
64592
64707
  Create a new user.`,
64593
- args: args133,
64594
- tool: async (client, args134, ctx) => {
64595
- const [result, apiCall] = await usersCreate(client, args134.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
64708
+ args: args134,
64709
+ tool: async (client, args135, ctx) => {
64710
+ const [result, apiCall] = await usersCreate(client, args135.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
64596
64711
  if (!result.ok) {
64597
64712
  return {
64598
64713
  content: [{ type: "text", text: result.error.message }],
@@ -64681,12 +64796,12 @@ var init_usersDelete = __esm(() => {
64681
64796
  });
64682
64797
 
64683
64798
  // src/mcp-server/tools/usersDelete.ts
64684
- var args134, tool$usersDelete;
64799
+ var args135, tool$usersDelete;
64685
64800
  var init_usersDelete2 = __esm(() => {
64686
64801
  init_usersDelete();
64687
64802
  init_components();
64688
64803
  init_tools();
64689
- args134 = {
64804
+ args135 = {
64690
64805
  request: UserDeleteRequest$inboundSchema
64691
64806
  };
64692
64807
  tool$usersDelete = {
@@ -64694,9 +64809,9 @@ var init_usersDelete2 = __esm(() => {
64694
64809
  description: `Delete User
64695
64810
 
64696
64811
  Delete a user.`,
64697
- args: args134,
64698
- tool: async (client, args135, ctx) => {
64699
- const [result, apiCall] = await usersDelete(client, args135.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
64812
+ args: args135,
64813
+ tool: async (client, args136, ctx) => {
64814
+ const [result, apiCall] = await usersDelete(client, args136.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
64700
64815
  if (!result.ok) {
64701
64816
  return {
64702
64817
  content: [{ type: "text", text: result.error.message }],
@@ -64796,12 +64911,12 @@ var init_usersList = __esm(() => {
64796
64911
  });
64797
64912
 
64798
64913
  // src/mcp-server/tools/usersList.ts
64799
- var args135, tool$usersList;
64914
+ var args136, tool$usersList;
64800
64915
  var init_usersList2 = __esm(() => {
64801
64916
  init_usersList();
64802
64917
  init_operations();
64803
64918
  init_tools();
64804
- args135 = {
64919
+ args136 = {
64805
64920
  request: UsersListRequest$inboundSchema
64806
64921
  };
64807
64922
  tool$usersList = {
@@ -64809,9 +64924,9 @@ var init_usersList2 = __esm(() => {
64809
64924
  description: `List Users
64810
64925
 
64811
64926
  List the existing users.`,
64812
- args: args135,
64813
- tool: async (client, args136, ctx) => {
64814
- const [result, apiCall] = await usersList(client, args136.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
64927
+ args: args136,
64928
+ tool: async (client, args137, ctx) => {
64929
+ const [result, apiCall] = await usersList(client, args137.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
64815
64930
  if (!result.ok) {
64816
64931
  return {
64817
64932
  content: [{ type: "text", text: result.error.message }],
@@ -64899,12 +65014,12 @@ var init_usersUpdate = __esm(() => {
64899
65014
  });
64900
65015
 
64901
65016
  // src/mcp-server/tools/usersUpdate.ts
64902
- var args136, tool$usersUpdate;
65017
+ var args137, tool$usersUpdate;
64903
65018
  var init_usersUpdate2 = __esm(() => {
64904
65019
  init_usersUpdate();
64905
65020
  init_components();
64906
65021
  init_tools();
64907
- args136 = {
65022
+ args137 = {
64908
65023
  request: UserUpdateRequest$inboundSchema
64909
65024
  };
64910
65025
  tool$usersUpdate = {
@@ -64912,9 +65027,9 @@ var init_usersUpdate2 = __esm(() => {
64912
65027
  description: `Update User
64913
65028
 
64914
65029
  Update an existing user.`,
64915
- args: args136,
64916
- tool: async (client, args137, ctx) => {
64917
- const [result, apiCall] = await usersUpdate(client, args137.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
65030
+ args: args137,
65031
+ tool: async (client, args138, ctx) => {
65032
+ const [result, apiCall] = await usersUpdate(client, args138.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
64918
65033
  if (!result.ok) {
64919
65034
  return {
64920
65035
  content: [{ type: "text", text: result.error.message }],
@@ -65093,12 +65208,12 @@ var init_usersUsersGetByEmail = __esm(() => {
65093
65208
  });
65094
65209
 
65095
65210
  // src/mcp-server/tools/usersUsersGetByEmail.ts
65096
- var args137, tool$usersUsersGetByEmail;
65211
+ var args138, tool$usersUsersGetByEmail;
65097
65212
  var init_usersUsersGetByEmail2 = __esm(() => {
65098
65213
  init_usersUsersGetByEmail();
65099
65214
  init_operations();
65100
65215
  init_tools();
65101
- args137 = {
65216
+ args138 = {
65102
65217
  request: UsersGetByEmailRequest$inboundSchema
65103
65218
  };
65104
65219
  tool$usersUsersGetByEmail = {
@@ -65106,9 +65221,9 @@ var init_usersUsersGetByEmail2 = __esm(() => {
65106
65221
  description: `Get User
65107
65222
 
65108
65223
  Fetch a given user.`,
65109
- args: args137,
65110
- tool: async (client, args138, ctx) => {
65111
- const [result, apiCall] = await usersUsersGetByEmail(client, args138.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
65224
+ args: args138,
65225
+ tool: async (client, args139, ctx) => {
65226
+ const [result, apiCall] = await usersUsersGetByEmail(client, args139.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
65112
65227
  if (!result.ok) {
65113
65228
  return {
65114
65229
  content: [{ type: "text", text: result.error.message }],
@@ -65206,12 +65321,12 @@ var init_usersUsersSendEmail = __esm(() => {
65206
65321
  });
65207
65322
 
65208
65323
  // src/mcp-server/tools/usersUsersSendEmail.ts
65209
- var args138, tool$usersUsersSendEmail;
65324
+ var args139, tool$usersUsersSendEmail;
65210
65325
  var init_usersUsersSendEmail2 = __esm(() => {
65211
65326
  init_usersUsersSendEmail();
65212
65327
  init_operations();
65213
65328
  init_tools();
65214
- args138 = {
65329
+ args139 = {
65215
65330
  request: UsersSendEmailRequest$inboundSchema
65216
65331
  };
65217
65332
  tool$usersUsersSendEmail = {
@@ -65219,9 +65334,9 @@ var init_usersUsersSendEmail2 = __esm(() => {
65219
65334
  description: `Send User Email
65220
65335
 
65221
65336
  Send a welcome email to a user.`,
65222
- args: args138,
65223
- tool: async (client, args139, ctx) => {
65224
- const [result, apiCall] = await usersUsersSendEmail(client, args139.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
65337
+ args: args139,
65338
+ tool: async (client, args140, ctx) => {
65339
+ const [result, apiCall] = await usersUsersSendEmail(client, args140.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
65225
65340
  if (!result.ok) {
65226
65341
  return {
65227
65342
  content: [{ type: "text", text: result.error.message }],
@@ -65309,12 +65424,12 @@ var init_voiceGroupsCreate = __esm(() => {
65309
65424
  });
65310
65425
 
65311
65426
  // src/mcp-server/tools/voiceGroupsCreate.ts
65312
- var args139, tool$voiceGroupsCreate;
65427
+ var args140, tool$voiceGroupsCreate;
65313
65428
  var init_voiceGroupsCreate2 = __esm(() => {
65314
65429
  init_voiceGroupsCreate();
65315
65430
  init_components();
65316
65431
  init_tools();
65317
- args139 = {
65432
+ args140 = {
65318
65433
  request: VoiceGroupCreateRequest$inboundSchema
65319
65434
  };
65320
65435
  tool$voiceGroupsCreate = {
@@ -65322,9 +65437,9 @@ var init_voiceGroupsCreate2 = __esm(() => {
65322
65437
  description: `Create Voice Group
65323
65438
 
65324
65439
  Create a new voice group.`,
65325
- args: args139,
65326
- tool: async (client, args140, ctx) => {
65327
- const [result, apiCall] = await voiceGroupsCreate(client, args140.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
65440
+ args: args140,
65441
+ tool: async (client, args141, ctx) => {
65442
+ const [result, apiCall] = await voiceGroupsCreate(client, args141.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
65328
65443
  if (!result.ok) {
65329
65444
  return {
65330
65445
  content: [{ type: "text", text: result.error.message }],
@@ -65422,12 +65537,12 @@ var init_voiceGroupsDelete = __esm(() => {
65422
65537
  });
65423
65538
 
65424
65539
  // src/mcp-server/tools/voiceGroupsDelete.ts
65425
- var args140, tool$voiceGroupsDelete;
65540
+ var args141, tool$voiceGroupsDelete;
65426
65541
  var init_voiceGroupsDelete2 = __esm(() => {
65427
65542
  init_voiceGroupsDelete();
65428
65543
  init_operations();
65429
65544
  init_tools();
65430
- args140 = {
65545
+ args141 = {
65431
65546
  request: VoiceGroupsDeleteRequest$inboundSchema
65432
65547
  };
65433
65548
  tool$voiceGroupsDelete = {
@@ -65435,9 +65550,9 @@ var init_voiceGroupsDelete2 = __esm(() => {
65435
65550
  description: `Delete Voice Group
65436
65551
 
65437
65552
  Delete a voice group.`,
65438
- args: args140,
65439
- tool: async (client, args141, ctx) => {
65440
- const [result, apiCall] = await voiceGroupsDelete(client, args141.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
65553
+ args: args141,
65554
+ tool: async (client, args142, ctx) => {
65555
+ const [result, apiCall] = await voiceGroupsDelete(client, args142.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
65441
65556
  if (!result.ok) {
65442
65557
  return {
65443
65558
  content: [{ type: "text", text: result.error.message }],
@@ -65531,12 +65646,12 @@ var init_voiceGroupsGetById = __esm(() => {
65531
65646
  });
65532
65647
 
65533
65648
  // src/mcp-server/tools/voiceGroupsGetById.ts
65534
- var args141, tool$voiceGroupsGetById;
65649
+ var args142, tool$voiceGroupsGetById;
65535
65650
  var init_voiceGroupsGetById2 = __esm(() => {
65536
65651
  init_voiceGroupsGetById();
65537
65652
  init_operations();
65538
65653
  init_tools();
65539
- args141 = {
65654
+ args142 = {
65540
65655
  request: VoiceGroupsGetByIdRequest$inboundSchema
65541
65656
  };
65542
65657
  tool$voiceGroupsGetById = {
@@ -65544,9 +65659,9 @@ var init_voiceGroupsGetById2 = __esm(() => {
65544
65659
  description: `Get Voice Group
65545
65660
 
65546
65661
  Fetch a given voice group.`,
65547
- args: args141,
65548
- tool: async (client, args142, ctx) => {
65549
- const [result, apiCall] = await voiceGroupsGetById(client, args142.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
65662
+ args: args142,
65663
+ tool: async (client, args143, ctx) => {
65664
+ const [result, apiCall] = await voiceGroupsGetById(client, args143.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
65550
65665
  if (!result.ok) {
65551
65666
  return {
65552
65667
  content: [{ type: "text", text: result.error.message }],
@@ -65646,12 +65761,12 @@ var init_voiceGroupsList = __esm(() => {
65646
65761
  });
65647
65762
 
65648
65763
  // src/mcp-server/tools/voiceGroupsList.ts
65649
- var args142, tool$voiceGroupsList;
65764
+ var args143, tool$voiceGroupsList;
65650
65765
  var init_voiceGroupsList2 = __esm(() => {
65651
65766
  init_voiceGroupsList();
65652
65767
  init_operations();
65653
65768
  init_tools();
65654
- args142 = {
65769
+ args143 = {
65655
65770
  request: VoiceGroupsListRequest$inboundSchema
65656
65771
  };
65657
65772
  tool$voiceGroupsList = {
@@ -65659,9 +65774,9 @@ var init_voiceGroupsList2 = __esm(() => {
65659
65774
  description: `List Voice Groups
65660
65775
 
65661
65776
  Fetch voice groups.`,
65662
- args: args142,
65663
- tool: async (client, args143, ctx) => {
65664
- const [result, apiCall] = await voiceGroupsList(client, args143.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
65777
+ args: args143,
65778
+ tool: async (client, args144, ctx) => {
65779
+ const [result, apiCall] = await voiceGroupsList(client, args144.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
65665
65780
  if (!result.ok) {
65666
65781
  return {
65667
65782
  content: [{ type: "text", text: result.error.message }],
@@ -65749,12 +65864,12 @@ var init_voiceGroupsUpdate = __esm(() => {
65749
65864
  });
65750
65865
 
65751
65866
  // src/mcp-server/tools/voiceGroupsUpdate.ts
65752
- var args143, tool$voiceGroupsUpdate;
65867
+ var args144, tool$voiceGroupsUpdate;
65753
65868
  var init_voiceGroupsUpdate2 = __esm(() => {
65754
65869
  init_voiceGroupsUpdate();
65755
65870
  init_components();
65756
65871
  init_tools();
65757
- args143 = {
65872
+ args144 = {
65758
65873
  request: VoiceGroupUpdateRequest$inboundSchema
65759
65874
  };
65760
65875
  tool$voiceGroupsUpdate = {
@@ -65762,9 +65877,9 @@ var init_voiceGroupsUpdate2 = __esm(() => {
65762
65877
  description: `Update Voice Group
65763
65878
 
65764
65879
  Update an existing voice group`,
65765
- args: args143,
65766
- tool: async (client, args144, ctx) => {
65767
- const [result, apiCall] = await voiceGroupsUpdate(client, args144.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
65880
+ args: args144,
65881
+ tool: async (client, args145, ctx) => {
65882
+ const [result, apiCall] = await voiceGroupsUpdate(client, args145.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
65768
65883
  if (!result.ok) {
65769
65884
  return {
65770
65885
  content: [{ type: "text", text: result.error.message }],
@@ -65853,12 +65968,12 @@ var init_voiceGroupsVoiceGroupsCreateVoiceSample = __esm(() => {
65853
65968
  });
65854
65969
 
65855
65970
  // src/mcp-server/tools/voiceGroupsVoiceGroupsCreateVoiceSample.ts
65856
- var args144, tool$voiceGroupsVoiceGroupsCreateVoiceSample;
65971
+ var args145, tool$voiceGroupsVoiceGroupsCreateVoiceSample;
65857
65972
  var init_voiceGroupsVoiceGroupsCreateVoiceSample2 = __esm(() => {
65858
65973
  init_voiceGroupsVoiceGroupsCreateVoiceSample();
65859
65974
  init_components();
65860
65975
  init_tools();
65861
- args144 = {
65976
+ args145 = {
65862
65977
  request: VoiceSampleCreateRequest$inboundSchema
65863
65978
  };
65864
65979
  tool$voiceGroupsVoiceGroupsCreateVoiceSample = {
@@ -65866,9 +65981,9 @@ var init_voiceGroupsVoiceGroupsCreateVoiceSample2 = __esm(() => {
65866
65981
  description: `Create Voice Sample
65867
65982
 
65868
65983
  Generate voice sample.`,
65869
- args: args144,
65870
- tool: async (client, args145, ctx) => {
65871
- const [result, apiCall] = await voiceGroupsVoiceGroupsCreateVoiceSample(client, args145.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
65984
+ args: args145,
65985
+ tool: async (client, args146, ctx) => {
65986
+ const [result, apiCall] = await voiceGroupsVoiceGroupsCreateVoiceSample(client, args146.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
65872
65987
  if (!result.ok) {
65873
65988
  return {
65874
65989
  content: [{ type: "text", text: result.error.message }],
@@ -65885,7 +66000,7 @@ Generate voice sample.`,
65885
66000
  function createMCPServer(deps) {
65886
66001
  const server = new McpServer({
65887
66002
  name: "SyllableSDK",
65888
- version: "1.0.16-rc.7"
66003
+ version: "1.0.16-rc.8"
65889
66004
  });
65890
66005
  const client = new SyllableSDKCore({
65891
66006
  apiKeyHeader: deps.apiKeyHeader,
@@ -67423,7 +67538,7 @@ var routes = ln({
67423
67538
  var app = _e(routes, {
67424
67539
  name: "mcp",
67425
67540
  versionInfo: {
67426
- currentVersion: "1.0.16-rc.7"
67541
+ currentVersion: "1.0.16-rc.8"
67427
67542
  }
67428
67543
  });
67429
67544
  Yt(app, process3.argv.slice(2), buildContext(process3));
@@ -67431,5 +67546,5 @@ export {
67431
67546
  app
67432
67547
  };
67433
67548
 
67434
- //# debugId=5549BA331BA5907D64756E2164756E21
67549
+ //# debugId=DAA064ECA5900FAB64756E2164756E21
67435
67550
  //# sourceMappingURL=mcp-server.js.map