@unified-api/typescript-sdk 2.73.23 → 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.
- package/bin/mcp-server.js +14 -6
- package/bin/mcp-server.js.map +7 -7
- package/examples/package-lock.json +1 -1
- package/jsr.json +1 -1
- package/lib/config.d.ts +3 -3
- package/lib/config.js +3 -3
- package/mcp-server/mcp-server.js +1 -1
- package/mcp-server/server.js +1 -1
- package/package.json +1 -1
- package/sdk/models/shared/accountingprofitloss.d.ts +2 -0
- package/sdk/models/shared/accountingprofitloss.d.ts.map +1 -1
- package/sdk/models/shared/accountingprofitloss.js +4 -0
- package/sdk/models/shared/accountingprofitloss.js.map +1 -1
- package/sdk/models/shared/propertyaccountingreportprofitandloss.d.ts +2 -0
- package/sdk/models/shared/propertyaccountingreportprofitandloss.d.ts.map +1 -1
- package/sdk/models/shared/propertyaccountingreportprofitandloss.js +4 -0
- package/sdk/models/shared/propertyaccountingreportprofitandloss.js.map +1 -1
- package/src/lib/config.ts +3 -3
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -1
- package/src/sdk/models/shared/accountingprofitloss.ts +6 -0
- package/src/sdk/models/shared/propertyaccountingreportprofitandloss.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.
|
|
34235
|
-
genVersion: "2.
|
|
34236
|
-
userAgent: "speakeasy-sdk/typescript 2.73.
|
|
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",
|
|
@@ -127350,7 +127358,7 @@ var init_verificationUpdateVerificationRequest2 = __esm(() => {
|
|
|
127350
127358
|
function createMCPServer(deps) {
|
|
127351
127359
|
const server = new McpServer({
|
|
127352
127360
|
name: "UnifiedTo",
|
|
127353
|
-
version: "2.73.
|
|
127361
|
+
version: "2.73.24"
|
|
127354
127362
|
});
|
|
127355
127363
|
const client = new UnifiedToCore({
|
|
127356
127364
|
security: deps.security,
|
|
@@ -129549,7 +129557,7 @@ var routes = an({
|
|
|
129549
129557
|
var app = He(routes, {
|
|
129550
129558
|
name: "mcp",
|
|
129551
129559
|
versionInfo: {
|
|
129552
|
-
currentVersion: "2.73.
|
|
129560
|
+
currentVersion: "2.73.24"
|
|
129553
129561
|
}
|
|
129554
129562
|
});
|
|
129555
129563
|
zt(app, process3.argv.slice(2), buildContext(process3));
|
|
@@ -129557,5 +129565,5 @@ export {
|
|
|
129557
129565
|
app
|
|
129558
129566
|
};
|
|
129559
129567
|
|
|
129560
|
-
//# debugId=
|
|
129568
|
+
//# debugId=218C5EFA6944D73A64756E2164756E21
|
|
129561
129569
|
//# sourceMappingURL=mcp-server.js.map
|