@unified-api/typescript-sdk 2.73.7 → 2.73.9

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 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.7",
34235
- genVersion: "2.656.3",
34236
- userAgent: "speakeasy-sdk/typescript 2.73.7 2.656.3 1.0 @unified-api/typescript-sdk"
34234
+ sdkVersion: "2.73.9",
34235
+ genVersion: "2.657.1",
34236
+ userAgent: "speakeasy-sdk/typescript 2.73.9 2.657.1 1.0 @unified-api/typescript-sdk"
34237
34237
  };
34238
34238
  });
34239
34239
 
@@ -42326,6 +42326,10 @@ var init_propertyconnectionpermissions = __esm(() => {
42326
42326
  AccountingJournalWrite: "accounting_journal_write",
42327
42327
  AccountingInvoiceRead: "accounting_invoice_read",
42328
42328
  AccountingInvoiceWrite: "accounting_invoice_write",
42329
+ AccountingBillRead: "accounting_bill_read",
42330
+ AccountingBillWrite: "accounting_bill_write",
42331
+ AccountingCreditmemoRead: "accounting_creditmemo_read",
42332
+ AccountingCreditmemoWrite: "accounting_creditmemo_write",
42329
42333
  AccountingContactRead: "accounting_contact_read",
42330
42334
  AccountingContactWrite: "accounting_contact_write",
42331
42335
  AccountingTaxrateRead: "accounting_taxrate_read",
@@ -42333,8 +42337,18 @@ var init_propertyconnectionpermissions = __esm(() => {
42333
42337
  AccountingOrganizationRead: "accounting_organization_read",
42334
42338
  AccountingOrderRead: "accounting_order_read",
42335
42339
  AccountingOrderWrite: "accounting_order_write",
42340
+ AccountingPurchaseorderRead: "accounting_purchaseorder_read",
42341
+ AccountingPurchaseorderWrite: "accounting_purchaseorder_write",
42342
+ AccountingSalesorderRead: "accounting_salesorder_read",
42343
+ AccountingSalesorderWrite: "accounting_salesorder_write",
42336
42344
  AccountingReportRead: "accounting_report_read",
42337
42345
  AccountingReportWrite: "accounting_report_write",
42346
+ AccountingTrialbalanceRead: "accounting_trialbalance_read",
42347
+ AccountingTrialbalanceWrite: "accounting_trialbalance_write",
42348
+ AccountingProfitlossRead: "accounting_profitloss_read",
42349
+ AccountingProfitlossWrite: "accounting_profitloss_write",
42350
+ AccountingBalancesheetRead: "accounting_balancesheet_read",
42351
+ AccountingBalancesheetWrite: "accounting_balancesheet_write",
42338
42352
  PaymentPaymentRead: "payment_payment_read",
42339
42353
  PaymentPaymentWrite: "payment_payment_write",
42340
42354
  PaymentPayoutRead: "payment_payout_read",
@@ -46532,8 +46546,7 @@ var init_issue = __esm(() => {
46532
46546
  InProgress: "IN_PROGRESS",
46533
46547
  OnHold: "ON_HOLD",
46534
46548
  Validating: "VALIDATING",
46535
- Rejected: "REJECTED",
46536
- UpNext: "UP_NEXT"
46549
+ Rejected: "REJECTED"
46537
46550
  };
46538
46551
  IssueStatus$inboundSchema = unionType([
46539
46552
  nativeEnumType(IssueStatus),
@@ -50456,6 +50469,7 @@ var init_tasktask = __esm(() => {
50456
50469
  due_at: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
50457
50470
  follower_user_ids: arrayType(stringType()).optional(),
50458
50471
  group_ids: arrayType(stringType()).optional(),
50472
+ has_children: booleanType().optional(),
50459
50473
  id: stringType().optional(),
50460
50474
  metadata: arrayType(TaskMetadata$inboundSchema).optional(),
50461
50475
  name: stringType().optional(),
@@ -50478,6 +50492,7 @@ var init_tasktask = __esm(() => {
50478
50492
  due_at: "dueAt",
50479
50493
  follower_user_ids: "followerUserIds",
50480
50494
  group_ids: "groupIds",
50495
+ has_children: "hasChildren",
50481
50496
  parent_id: "parentId",
50482
50497
  project_id: "projectId",
50483
50498
  updated_at: "updatedAt"
@@ -50492,6 +50507,7 @@ var init_tasktask = __esm(() => {
50492
50507
  dueAt: dateType().transform((v2) => v2.toISOString()).optional(),
50493
50508
  followerUserIds: arrayType(stringType()).optional(),
50494
50509
  groupIds: arrayType(stringType()).optional(),
50510
+ hasChildren: booleanType().optional(),
50495
50511
  id: stringType().optional(),
50496
50512
  metadata: arrayType(TaskMetadata$outboundSchema).optional(),
50497
50513
  name: stringType().optional(),
@@ -50514,6 +50530,7 @@ var init_tasktask = __esm(() => {
50514
50530
  dueAt: "due_at",
50515
50531
  followerUserIds: "follower_user_ids",
50516
50532
  groupIds: "group_ids",
50533
+ hasChildren: "has_children",
50517
50534
  parentId: "parent_id",
50518
50535
  projectId: "project_id",
50519
50536
  updatedAt: "updated_at"
@@ -51152,10 +51169,17 @@ var init_webhook = __esm(() => {
51152
51169
  AccountingJournal: "accounting_journal",
51153
51170
  AccountingContact: "accounting_contact",
51154
51171
  AccountingInvoice: "accounting_invoice",
51172
+ AccountingBill: "accounting_bill",
51173
+ AccountingCreditmemo: "accounting_creditmemo",
51155
51174
  AccountingTaxrate: "accounting_taxrate",
51156
51175
  AccountingOrganization: "accounting_organization",
51157
51176
  AccountingOrder: "accounting_order",
51177
+ AccountingSalesorder: "accounting_salesorder",
51178
+ AccountingPurchaseorder: "accounting_purchaseorder",
51158
51179
  AccountingReport: "accounting_report",
51180
+ AccountingBalancesheet: "accounting_balancesheet",
51181
+ AccountingProfitloss: "accounting_profitloss",
51182
+ AccountingTrialbalance: "accounting_trialbalance",
51159
51183
  PaymentPayment: "payment_payment",
51160
51184
  PaymentLink: "payment_link",
51161
51185
  PaymentPayout: "payment_payout",
@@ -124038,7 +124062,7 @@ var init_unifiedUpdateUnifiedWebhookTrigger2 = __esm(() => {
124038
124062
  function createMCPServer(deps) {
124039
124063
  const server = new McpServer({
124040
124064
  name: "UnifiedTo",
124041
- version: "2.73.7"
124065
+ version: "2.73.9"
124042
124066
  });
124043
124067
  const client = new UnifiedToCore({
124044
124068
  security: deps.security,
@@ -126189,7 +126213,7 @@ var routes = an({
126189
126213
  var app = He(routes, {
126190
126214
  name: "mcp",
126191
126215
  versionInfo: {
126192
- currentVersion: "2.73.7"
126216
+ currentVersion: "2.73.9"
126193
126217
  }
126194
126218
  });
126195
126219
  zt(app, process3.argv.slice(2), buildContext(process3));
@@ -126197,5 +126221,5 @@ export {
126197
126221
  app
126198
126222
  };
126199
126223
 
126200
- //# debugId=AA8A24C87AEDD43F64756E2164756E21
126224
+ //# debugId=393732A361FF5FFB64756E2164756E21
126201
126225
  //# sourceMappingURL=mcp-server.js.map