@unified-api/typescript-sdk 2.73.11 → 2.73.12
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 +9 -6
- package/bin/mcp-server.js.map +9 -9
- 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 +3 -3
- package/sdk/models/shared/propertyaccountingreportprofitandloss.d.ts +3 -3
- package/sdk/models/shared/propertyconnectionpermissions.d.ts +2 -0
- package/sdk/models/shared/propertyconnectionpermissions.d.ts.map +1 -1
- package/sdk/models/shared/propertyconnectionpermissions.js +2 -0
- package/sdk/models/shared/propertyconnectionpermissions.js.map +1 -1
- package/sdk/models/shared/webhook.d.ts +1 -0
- package/sdk/models/shared/webhook.d.ts.map +1 -1
- package/sdk/models/shared/webhook.js +1 -0
- package/sdk/models/shared/webhook.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 +3 -3
- package/src/sdk/models/shared/propertyaccountingreportprofitandloss.ts +3 -3
- package/src/sdk/models/shared/propertyconnectionpermissions.ts +2 -0
- package/src/sdk/models/shared/webhook.ts +1 -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.12",
|
|
34235
|
+
genVersion: "2.672.0",
|
|
34236
|
+
userAgent: "speakeasy-sdk/typescript 2.73.12 2.672.0 1.0 @unified-api/typescript-sdk"
|
|
34237
34237
|
};
|
|
34238
34238
|
});
|
|
34239
34239
|
|
|
@@ -42433,6 +42433,8 @@ var init_propertyconnectionpermissions = __esm(() => {
|
|
|
42433
42433
|
AccountingProfitlossWrite: "accounting_profitloss_write",
|
|
42434
42434
|
AccountingBalancesheetRead: "accounting_balancesheet_read",
|
|
42435
42435
|
AccountingBalancesheetWrite: "accounting_balancesheet_write",
|
|
42436
|
+
AccountingCategoryRead: "accounting_category_read",
|
|
42437
|
+
AccountingCategoryWrite: "accounting_category_write",
|
|
42436
42438
|
PaymentPaymentRead: "payment_payment_read",
|
|
42437
42439
|
PaymentPaymentWrite: "payment_payment_write",
|
|
42438
42440
|
PaymentPayoutRead: "payment_payout_read",
|
|
@@ -51264,6 +51266,7 @@ var init_webhook = __esm(() => {
|
|
|
51264
51266
|
AccountingBalancesheet: "accounting_balancesheet",
|
|
51265
51267
|
AccountingProfitloss: "accounting_profitloss",
|
|
51266
51268
|
AccountingTrialbalance: "accounting_trialbalance",
|
|
51269
|
+
AccountingCategory: "accounting_category",
|
|
51267
51270
|
PaymentPayment: "payment_payment",
|
|
51268
51271
|
PaymentLink: "payment_link",
|
|
51269
51272
|
PaymentPayout: "payment_payout",
|
|
@@ -125053,7 +125056,7 @@ var init_unifiedUpdateUnifiedWebhookTrigger2 = __esm(() => {
|
|
|
125053
125056
|
function createMCPServer(deps) {
|
|
125054
125057
|
const server = new McpServer({
|
|
125055
125058
|
name: "UnifiedTo",
|
|
125056
|
-
version: "2.73.
|
|
125059
|
+
version: "2.73.12"
|
|
125057
125060
|
});
|
|
125058
125061
|
const client = new UnifiedToCore({
|
|
125059
125062
|
security: deps.security,
|
|
@@ -127216,7 +127219,7 @@ var routes = an({
|
|
|
127216
127219
|
var app = He(routes, {
|
|
127217
127220
|
name: "mcp",
|
|
127218
127221
|
versionInfo: {
|
|
127219
|
-
currentVersion: "2.73.
|
|
127222
|
+
currentVersion: "2.73.12"
|
|
127220
127223
|
}
|
|
127221
127224
|
});
|
|
127222
127225
|
zt(app, process3.argv.slice(2), buildContext(process3));
|
|
@@ -127224,5 +127227,5 @@ export {
|
|
|
127224
127227
|
app
|
|
127225
127228
|
};
|
|
127226
127229
|
|
|
127227
|
-
//# debugId=
|
|
127230
|
+
//# debugId=4EB2DAD7996633F164756E2164756E21
|
|
127228
127231
|
//# sourceMappingURL=mcp-server.js.map
|