@unified-api/typescript-sdk 2.73.23 → 2.73.25
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 +20 -6
- package/bin/mcp-server.js.map +11 -11
- package/examples/package-lock.json +1 -1
- package/funcs/calendarListCalendarEvents.js +1 -0
- package/funcs/calendarListCalendarEvents.js.map +1 -1
- package/funcs/messagingListMessagingMessages.js +1 -0
- package/funcs/messagingListMessagingMessages.js.map +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/operations/listcalendarevents.d.ts +2 -0
- package/sdk/models/operations/listcalendarevents.d.ts.map +1 -1
- package/sdk/models/operations/listcalendarevents.js +2 -0
- package/sdk/models/operations/listcalendarevents.js.map +1 -1
- package/sdk/models/operations/listmessagingmessages.d.ts +2 -0
- package/sdk/models/operations/listmessagingmessages.d.ts.map +1 -1
- package/sdk/models/operations/listmessagingmessages.js +2 -0
- package/sdk/models/operations/listmessagingmessages.js.map +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/funcs/calendarListCalendarEvents.ts +1 -0
- package/src/funcs/messagingListMessagingMessages.ts +1 -0
- 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/operations/listcalendarevents.ts +4 -0
- package/src/sdk/models/operations/listmessagingmessages.ts +4 -0
- 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.25",
|
|
34235
|
+
genVersion: "2.706.1",
|
|
34236
|
+
userAgent: "speakeasy-sdk/typescript 2.73.25 2.706.1 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",
|
|
@@ -58316,6 +58324,7 @@ var init_listcalendarevents = __esm(() => {
|
|
|
58316
58324
|
calendar_id: stringType().optional(),
|
|
58317
58325
|
connection_id: stringType(),
|
|
58318
58326
|
end_le: stringType().optional(),
|
|
58327
|
+
expand: stringType().optional(),
|
|
58319
58328
|
expand_recurring_events: stringType().optional(),
|
|
58320
58329
|
fields: arrayType(stringType()).optional(),
|
|
58321
58330
|
limit: numberType().optional(),
|
|
@@ -58340,6 +58349,7 @@ var init_listcalendarevents = __esm(() => {
|
|
|
58340
58349
|
calendarId: stringType().optional(),
|
|
58341
58350
|
connectionId: stringType(),
|
|
58342
58351
|
endLe: stringType().optional(),
|
|
58352
|
+
expand: stringType().optional(),
|
|
58343
58353
|
expandRecurringEvents: stringType().optional(),
|
|
58344
58354
|
fields: arrayType(stringType()).optional(),
|
|
58345
58355
|
limit: numberType().optional(),
|
|
@@ -60069,6 +60079,7 @@ var init_listmessagingmessages = __esm(() => {
|
|
|
60069
60079
|
channel_id: stringType().optional(),
|
|
60070
60080
|
connection_id: stringType(),
|
|
60071
60081
|
end_le: stringType().optional(),
|
|
60082
|
+
expand: stringType().optional(),
|
|
60072
60083
|
fields: arrayType(stringType()).optional(),
|
|
60073
60084
|
limit: numberType().optional(),
|
|
60074
60085
|
offset: numberType().optional(),
|
|
@@ -60093,6 +60104,7 @@ var init_listmessagingmessages = __esm(() => {
|
|
|
60093
60104
|
channelId: stringType().optional(),
|
|
60094
60105
|
connectionId: stringType(),
|
|
60095
60106
|
endLe: stringType().optional(),
|
|
60107
|
+
expand: stringType().optional(),
|
|
60096
60108
|
fields: arrayType(stringType()).optional(),
|
|
60097
60109
|
limit: numberType().optional(),
|
|
60098
60110
|
offset: numberType().optional(),
|
|
@@ -87381,6 +87393,7 @@ async function $do142(client, request, options) {
|
|
|
87381
87393
|
const query = encodeFormQuery({
|
|
87382
87394
|
calendar_id: payload.calendar_id,
|
|
87383
87395
|
end_le: payload.end_le,
|
|
87396
|
+
expand: payload.expand,
|
|
87384
87397
|
expand_recurring_events: payload.expand_recurring_events,
|
|
87385
87398
|
fields: payload.fields,
|
|
87386
87399
|
limit: payload.limit,
|
|
@@ -111574,6 +111587,7 @@ async function $do360(client, request, options) {
|
|
|
111574
111587
|
const query = encodeFormQuery({
|
|
111575
111588
|
channel_id: payload.channel_id,
|
|
111576
111589
|
end_le: payload.end_le,
|
|
111590
|
+
expand: payload.expand,
|
|
111577
111591
|
fields: payload.fields,
|
|
111578
111592
|
limit: payload.limit,
|
|
111579
111593
|
offset: payload.offset,
|
|
@@ -127350,7 +127364,7 @@ var init_verificationUpdateVerificationRequest2 = __esm(() => {
|
|
|
127350
127364
|
function createMCPServer(deps) {
|
|
127351
127365
|
const server = new McpServer({
|
|
127352
127366
|
name: "UnifiedTo",
|
|
127353
|
-
version: "2.73.
|
|
127367
|
+
version: "2.73.25"
|
|
127354
127368
|
});
|
|
127355
127369
|
const client = new UnifiedToCore({
|
|
127356
127370
|
security: deps.security,
|
|
@@ -129549,7 +129563,7 @@ var routes = an({
|
|
|
129549
129563
|
var app = He(routes, {
|
|
129550
129564
|
name: "mcp",
|
|
129551
129565
|
versionInfo: {
|
|
129552
|
-
currentVersion: "2.73.
|
|
129566
|
+
currentVersion: "2.73.25"
|
|
129553
129567
|
}
|
|
129554
129568
|
});
|
|
129555
129569
|
zt(app, process3.argv.slice(2), buildContext(process3));
|
|
@@ -129557,5 +129571,5 @@ export {
|
|
|
129557
129571
|
app
|
|
129558
129572
|
};
|
|
129559
129573
|
|
|
129560
|
-
//# debugId=
|
|
129574
|
+
//# debugId=B6D6C82E03390C8C64756E2164756E21
|
|
129561
129575
|
//# sourceMappingURL=mcp-server.js.map
|