@unified-api/typescript-sdk 2.73.22 → 2.73.24

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 (33) hide show
  1. package/bin/mcp-server.js +22 -6
  2. package/bin/mcp-server.js.map +9 -9
  3. package/examples/accountingCreateAccountingAccount.example.ts +1 -1
  4. package/examples/package-lock.json +1 -1
  5. package/jsr.json +1 -1
  6. package/lib/config.d.ts +3 -3
  7. package/lib/config.js +3 -3
  8. package/mcp-server/mcp-server.js +1 -1
  9. package/mcp-server/server.js +1 -1
  10. package/package.json +1 -1
  11. package/sdk/models/shared/accountingprofitloss.d.ts +2 -0
  12. package/sdk/models/shared/accountingprofitloss.d.ts.map +1 -1
  13. package/sdk/models/shared/accountingprofitloss.js +4 -0
  14. package/sdk/models/shared/accountingprofitloss.js.map +1 -1
  15. package/sdk/models/shared/kmsspace.d.ts +2 -0
  16. package/sdk/models/shared/kmsspace.d.ts.map +1 -1
  17. package/sdk/models/shared/kmsspace.js +4 -0
  18. package/sdk/models/shared/kmsspace.js.map +1 -1
  19. package/sdk/models/shared/propertyaccountingreportprofitandloss.d.ts +2 -0
  20. package/sdk/models/shared/propertyaccountingreportprofitandloss.d.ts.map +1 -1
  21. package/sdk/models/shared/propertyaccountingreportprofitandloss.js +4 -0
  22. package/sdk/models/shared/propertyaccountingreportprofitandloss.js.map +1 -1
  23. package/sdk/models/shared/uccomment.d.ts +2 -0
  24. package/sdk/models/shared/uccomment.d.ts.map +1 -1
  25. package/sdk/models/shared/uccomment.js +4 -0
  26. package/sdk/models/shared/uccomment.js.map +1 -1
  27. package/src/lib/config.ts +3 -3
  28. package/src/mcp-server/mcp-server.ts +1 -1
  29. package/src/mcp-server/server.ts +1 -1
  30. package/src/sdk/models/shared/accountingprofitloss.ts +6 -0
  31. package/src/sdk/models/shared/kmsspace.ts +6 -0
  32. package/src/sdk/models/shared/propertyaccountingreportprofitandloss.ts +6 -0
  33. package/src/sdk/models/shared/uccomment.ts +6 -0
package/bin/mcp-server.js CHANGED
@@ -34231,9 +34231,9 @@ var init_config = __esm(() => {
34231
34231
  SDK_METADATA = {
34232
34232
  language: "typescript",
34233
34233
  openapiDocVersion: "1.0",
34234
- sdkVersion: "2.73.22",
34235
- genVersion: "2.694.1",
34236
- userAgent: "speakeasy-sdk/typescript 2.73.22 2.694.1 1.0 @unified-api/typescript-sdk"
34234
+ sdkVersion: "2.73.24",
34235
+ genVersion: "2.702.0",
34236
+ userAgent: "speakeasy-sdk/typescript 2.73.24 2.702.0 1.0 @unified-api/typescript-sdk"
34237
34237
  };
34238
34238
  });
34239
34239
 
@@ -37390,6 +37390,7 @@ var init_accountingprofitloss = __esm(() => {
37390
37390
  init_accountingprofitlosscategory();
37391
37391
  init_accountingprofitlosssection();
37392
37392
  AccountingProfitloss$inboundSchema = objectType({
37393
+ category_ids: arrayType(stringType()).optional(),
37393
37394
  cost_of_goods_sold: arrayType(AccountingProfitlossCategory$inboundSchema).optional(),
37394
37395
  cost_of_goods_sold_sections: arrayType(AccountingProfitlossSection$inboundSchema).optional(),
37395
37396
  cost_of_goods_sold_total_amount: numberType().optional(),
@@ -37412,6 +37413,7 @@ var init_accountingprofitloss = __esm(() => {
37412
37413
  updated_at: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional()
37413
37414
  }).transform((v2) => {
37414
37415
  return remap(v2, {
37416
+ category_ids: "categoryIds",
37415
37417
  cost_of_goods_sold: "costOfGoodsSold",
37416
37418
  cost_of_goods_sold_sections: "costOfGoodsSoldSections",
37417
37419
  cost_of_goods_sold_total_amount: "costOfGoodsSoldTotalAmount",
@@ -37429,6 +37431,7 @@ var init_accountingprofitloss = __esm(() => {
37429
37431
  });
37430
37432
  });
37431
37433
  AccountingProfitloss$outboundSchema = objectType({
37434
+ categoryIds: arrayType(stringType()).optional(),
37432
37435
  costOfGoodsSold: arrayType(AccountingProfitlossCategory$outboundSchema).optional(),
37433
37436
  costOfGoodsSoldSections: arrayType(AccountingProfitlossSection$outboundSchema).optional(),
37434
37437
  costOfGoodsSoldTotalAmount: numberType().optional(),
@@ -37451,6 +37454,7 @@ var init_accountingprofitloss = __esm(() => {
37451
37454
  updatedAt: dateType().transform((v2) => v2.toISOString()).optional()
37452
37455
  }).transform((v2) => {
37453
37456
  return remap(v2, {
37457
+ categoryIds: "category_ids",
37454
37458
  costOfGoodsSold: "cost_of_goods_sold",
37455
37459
  costOfGoodsSoldSections: "cost_of_goods_sold_sections",
37456
37460
  costOfGoodsSoldTotalAmount: "cost_of_goods_sold_total_amount",
@@ -37710,6 +37714,7 @@ var init_propertyaccountingreportprofitandloss = __esm(() => {
37710
37714
  init_accountingprofitlosscategory();
37711
37715
  init_accountingprofitlosssection();
37712
37716
  PropertyAccountingReportProfitAndLoss$inboundSchema = objectType({
37717
+ category_ids: arrayType(stringType()).optional(),
37713
37718
  cost_of_goods_sold: arrayType(AccountingProfitlossCategory$inboundSchema).optional(),
37714
37719
  cost_of_goods_sold_sections: arrayType(AccountingProfitlossSection$inboundSchema).optional(),
37715
37720
  cost_of_goods_sold_total_amount: numberType().optional(),
@@ -37732,6 +37737,7 @@ var init_propertyaccountingreportprofitandloss = __esm(() => {
37732
37737
  updated_at: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional()
37733
37738
  }).transform((v2) => {
37734
37739
  return remap(v2, {
37740
+ category_ids: "categoryIds",
37735
37741
  cost_of_goods_sold: "costOfGoodsSold",
37736
37742
  cost_of_goods_sold_sections: "costOfGoodsSoldSections",
37737
37743
  cost_of_goods_sold_total_amount: "costOfGoodsSoldTotalAmount",
@@ -37749,6 +37755,7 @@ var init_propertyaccountingreportprofitandloss = __esm(() => {
37749
37755
  });
37750
37756
  });
37751
37757
  PropertyAccountingReportProfitAndLoss$outboundSchema = objectType({
37758
+ categoryIds: arrayType(stringType()).optional(),
37752
37759
  costOfGoodsSold: arrayType(AccountingProfitlossCategory$outboundSchema).optional(),
37753
37760
  costOfGoodsSoldSections: arrayType(AccountingProfitlossSection$outboundSchema).optional(),
37754
37761
  costOfGoodsSoldTotalAmount: numberType().optional(),
@@ -37771,6 +37778,7 @@ var init_propertyaccountingreportprofitandloss = __esm(() => {
37771
37778
  updatedAt: dateType().transform((v2) => v2.toISOString()).optional()
37772
37779
  }).transform((v2) => {
37773
37780
  return remap(v2, {
37781
+ categoryIds: "category_ids",
37774
37782
  costOfGoodsSold: "cost_of_goods_sold",
37775
37783
  costOfGoodsSoldSections: "cost_of_goods_sold_sections",
37776
37784
  costOfGoodsSoldTotalAmount: "cost_of_goods_sold_total_amount",
@@ -46392,6 +46400,7 @@ var init_kmsspace = __esm(() => {
46392
46400
  id: stringType().optional(),
46393
46401
  is_active: booleanType().optional(),
46394
46402
  name: stringType(),
46403
+ parent_id: stringType().optional(),
46395
46404
  parent_page_id: stringType().optional(),
46396
46405
  parent_space_id: stringType().default("sp"),
46397
46406
  raw: recordType(anyType()).optional(),
@@ -46401,6 +46410,7 @@ var init_kmsspace = __esm(() => {
46401
46410
  return remap(v2, {
46402
46411
  created_at: "createdAt",
46403
46412
  is_active: "isActive",
46413
+ parent_id: "parentId",
46404
46414
  parent_page_id: "parentPageId",
46405
46415
  parent_space_id: "parentSpaceId",
46406
46416
  updated_at: "updatedAt",
@@ -46413,6 +46423,7 @@ var init_kmsspace = __esm(() => {
46413
46423
  id: stringType().optional(),
46414
46424
  isActive: booleanType().optional(),
46415
46425
  name: stringType(),
46426
+ parentId: stringType().optional(),
46416
46427
  parentPageId: stringType().optional(),
46417
46428
  parentSpaceId: stringType().default("sp"),
46418
46429
  raw: recordType(anyType()).optional(),
@@ -46422,6 +46433,7 @@ var init_kmsspace = __esm(() => {
46422
46433
  return remap(v2, {
46423
46434
  createdAt: "created_at",
46424
46435
  isActive: "is_active",
46436
+ parentId: "parent_id",
46425
46437
  parentPageId: "parent_page_id",
46426
46438
  parentSpaceId: "parent_space_id",
46427
46439
  updatedAt: "updated_at",
@@ -50017,6 +50029,7 @@ var init_uccomment = __esm(() => {
50017
50029
  init_esm();
50018
50030
  init_primitives();
50019
50031
  UcComment$inboundSchema = objectType({
50032
+ call_id: stringType().optional(),
50020
50033
  content: stringType(),
50021
50034
  created_at: stringType().optional(),
50022
50035
  id: stringType().optional(),
@@ -50025,12 +50038,14 @@ var init_uccomment = __esm(() => {
50025
50038
  user_id: stringType().optional()
50026
50039
  }).transform((v2) => {
50027
50040
  return remap(v2, {
50041
+ call_id: "callId",
50028
50042
  created_at: "createdAt",
50029
50043
  updated_at: "updatedAt",
50030
50044
  user_id: "userId"
50031
50045
  });
50032
50046
  });
50033
50047
  UcComment$outboundSchema = objectType({
50048
+ callId: stringType().optional(),
50034
50049
  content: stringType(),
50035
50050
  createdAt: stringType().optional(),
50036
50051
  id: stringType().optional(),
@@ -50039,6 +50054,7 @@ var init_uccomment = __esm(() => {
50039
50054
  userId: stringType().optional()
50040
50055
  }).transform((v2) => {
50041
50056
  return remap(v2, {
50057
+ callId: "call_id",
50042
50058
  createdAt: "created_at",
50043
50059
  updatedAt: "updated_at",
50044
50060
  userId: "user_id"
@@ -127342,7 +127358,7 @@ var init_verificationUpdateVerificationRequest2 = __esm(() => {
127342
127358
  function createMCPServer(deps) {
127343
127359
  const server = new McpServer({
127344
127360
  name: "UnifiedTo",
127345
- version: "2.73.22"
127361
+ version: "2.73.24"
127346
127362
  });
127347
127363
  const client = new UnifiedToCore({
127348
127364
  security: deps.security,
@@ -129541,7 +129557,7 @@ var routes = an({
129541
129557
  var app = He(routes, {
129542
129558
  name: "mcp",
129543
129559
  versionInfo: {
129544
- currentVersion: "2.73.22"
129560
+ currentVersion: "2.73.24"
129545
129561
  }
129546
129562
  });
129547
129563
  zt(app, process3.argv.slice(2), buildContext(process3));
@@ -129549,5 +129565,5 @@ export {
129549
129565
  app
129550
129566
  };
129551
129567
 
129552
- //# debugId=C81C9B1862E22E5564756E2164756E21
129568
+ //# debugId=218C5EFA6944D73A64756E2164756E21
129553
129569
  //# sourceMappingURL=mcp-server.js.map