conductor-node-mcp 12.12.0 → 12.14.0
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/README.md +8 -0
- package/package.json +2 -2
- package/server.js +1 -1
- package/server.mjs +1 -1
- package/src/server.ts +1 -1
- package/src/tools/index.ts +10 -0
- package/src/tools/qbd/accounts/list-qbd-accounts.ts +3 -3
- package/src/tools/qbd/bill-check-payments/list-qbd-bill-check-payments.ts +3 -3
- package/src/tools/qbd/bill-credit-card-payments/list-qbd-bill-credit-card-payments.ts +3 -3
- package/src/tools/qbd/bills/list-qbd-bills.ts +3 -3
- package/src/tools/qbd/build-assemblies/create-qbd-build-assemblies.ts +97 -0
- package/src/tools/qbd/build-assemblies/delete-qbd-build-assemblies.ts +42 -0
- package/src/tools/qbd/build-assemblies/list-qbd-build-assemblies.ts +127 -0
- package/src/tools/qbd/build-assemblies/retrieve-qbd-build-assemblies.ts +41 -0
- package/src/tools/qbd/build-assemblies/update-qbd-build-assemblies.ts +101 -0
- package/src/tools/qbd/checks/list-qbd-checks.ts +3 -3
- package/src/tools/qbd/classes/list-qbd-classes.ts +3 -3
- package/src/tools/qbd/credit-card-charges/list-qbd-credit-card-charges.ts +3 -3
- package/src/tools/qbd/credit-card-credits/list-qbd-credit-card-credits.ts +3 -3
- package/src/tools/qbd/credit-memos/list-qbd-credit-memos.ts +3 -3
- package/src/tools/qbd/customers/list-qbd-customers.ts +3 -3
- package/src/tools/qbd/date-driven-terms/list-qbd-date-driven-terms.ts +3 -3
- package/src/tools/qbd/discount-items/list-qbd-discount-items.ts +3 -3
- package/src/tools/qbd/employees/list-qbd-employees.ts +3 -3
- package/src/tools/qbd/estimates/list-qbd-estimates.ts +3 -3
- package/src/tools/qbd/inventory-adjustments/create-qbd-inventory-adjustments.ts +5 -5
- package/src/tools/qbd/inventory-adjustments/list-qbd-inventory-adjustments.ts +3 -3
- package/src/tools/qbd/inventory-assembly-items/list-qbd-inventory-assembly-items.ts +3 -3
- package/src/tools/qbd/inventory-items/list-qbd-inventory-items.ts +3 -3
- package/src/tools/qbd/inventory-sites/list-qbd-inventory-sites.ts +3 -3
- package/src/tools/qbd/invoices/list-qbd-invoices.ts +3 -3
- package/src/tools/qbd/item-groups/list-qbd-item-groups.ts +3 -3
- package/src/tools/qbd/item-receipts/list-qbd-item-receipts.ts +3 -3
- package/src/tools/qbd/journal-entries/list-qbd-journal-entries.ts +3 -3
- package/src/tools/qbd/non-inventory-items/list-qbd-non-inventory-items.ts +3 -3
- package/src/tools/qbd/other-names/list-qbd-other-names.ts +3 -3
- package/src/tools/qbd/payment-methods/list-qbd-payment-methods.ts +3 -3
- package/src/tools/qbd/payroll-wage-items/list-qbd-payroll-wage-items.ts +3 -3
- package/src/tools/qbd/price-levels/create-qbd-price-levels.ts +6 -6
- package/src/tools/qbd/price-levels/list-qbd-price-levels.ts +3 -3
- package/src/tools/qbd/price-levels/update-qbd-price-levels.ts +6 -6
- package/src/tools/qbd/purchase-orders/list-qbd-purchase-orders.ts +3 -3
- package/src/tools/qbd/receive-payments/list-qbd-receive-payments.ts +3 -3
- package/src/tools/qbd/sales-orders/list-qbd-sales-orders.ts +3 -3
- package/src/tools/qbd/sales-receipts/list-qbd-sales-receipts.ts +3 -3
- package/src/tools/qbd/sales-representatives/list-qbd-sales-representatives.ts +3 -3
- package/src/tools/qbd/sales-tax-codes/list-qbd-sales-tax-codes.ts +3 -3
- package/src/tools/qbd/sales-tax-items/list-qbd-sales-tax-items.ts +3 -3
- package/src/tools/qbd/service-items/list-qbd-service-items.ts +3 -3
- package/src/tools/qbd/standard-terms/list-qbd-standard-terms.ts +3 -3
- package/src/tools/qbd/subtotal-items/list-qbd-subtotal-items.ts +3 -3
- package/src/tools/qbd/transactions/list-qbd-transactions.ts +3 -3
- package/src/tools/qbd/vendor-credits/list-qbd-vendor-credits.ts +3 -3
- package/src/tools/qbd/vendors/list-qbd-vendors.ts +3 -3
- package/tools/auth-sessions/create-auth-sessions.d.mts +4 -0
- package/tools/auth-sessions/create-auth-sessions.d.mts.map +1 -1
- package/tools/auth-sessions/create-auth-sessions.d.ts +4 -0
- package/tools/auth-sessions/create-auth-sessions.d.ts.map +1 -1
- package/tools/end-users/create-end-users.d.mts +4 -0
- package/tools/end-users/create-end-users.d.mts.map +1 -1
- package/tools/end-users/create-end-users.d.ts +4 -0
- package/tools/end-users/create-end-users.d.ts.map +1 -1
- package/tools/end-users/delete-end-users.d.mts +4 -0
- package/tools/end-users/delete-end-users.d.mts.map +1 -1
- package/tools/end-users/delete-end-users.d.ts +4 -0
- package/tools/end-users/delete-end-users.d.ts.map +1 -1
- package/tools/end-users/list-end-users.d.mts +4 -0
- package/tools/end-users/list-end-users.d.mts.map +1 -1
- package/tools/end-users/list-end-users.d.ts +4 -0
- package/tools/end-users/list-end-users.d.ts.map +1 -1
- package/tools/end-users/passthrough-end-users.d.mts +4 -0
- package/tools/end-users/passthrough-end-users.d.mts.map +1 -1
- package/tools/end-users/passthrough-end-users.d.ts +4 -0
- package/tools/end-users/passthrough-end-users.d.ts.map +1 -1
- package/tools/end-users/retrieve-end-users.d.mts +4 -0
- package/tools/end-users/retrieve-end-users.d.mts.map +1 -1
- package/tools/end-users/retrieve-end-users.d.ts +4 -0
- package/tools/end-users/retrieve-end-users.d.ts.map +1 -1
- package/tools/index.d.mts.map +1 -1
- package/tools/index.d.ts.map +1 -1
- package/tools/index.js +10 -0
- package/tools/index.js.map +1 -1
- package/tools/index.mjs +10 -0
- package/tools/index.mjs.map +1 -1
- package/tools/qbd/account-tax-lines/list-qbd-account-tax-lines.d.mts +4 -0
- package/tools/qbd/account-tax-lines/list-qbd-account-tax-lines.d.mts.map +1 -1
- package/tools/qbd/account-tax-lines/list-qbd-account-tax-lines.d.ts +4 -0
- package/tools/qbd/account-tax-lines/list-qbd-account-tax-lines.d.ts.map +1 -1
- package/tools/qbd/accounts/create-qbd-accounts.d.mts +4 -0
- package/tools/qbd/accounts/create-qbd-accounts.d.mts.map +1 -1
- package/tools/qbd/accounts/create-qbd-accounts.d.ts +4 -0
- package/tools/qbd/accounts/create-qbd-accounts.d.ts.map +1 -1
- package/tools/qbd/accounts/list-qbd-accounts.d.mts +4 -0
- package/tools/qbd/accounts/list-qbd-accounts.d.mts.map +1 -1
- package/tools/qbd/accounts/list-qbd-accounts.d.ts +4 -0
- package/tools/qbd/accounts/list-qbd-accounts.d.ts.map +1 -1
- package/tools/qbd/accounts/list-qbd-accounts.js +3 -3
- package/tools/qbd/accounts/list-qbd-accounts.js.map +1 -1
- package/tools/qbd/accounts/list-qbd-accounts.mjs +3 -3
- package/tools/qbd/accounts/list-qbd-accounts.mjs.map +1 -1
- package/tools/qbd/accounts/retrieve-qbd-accounts.d.mts +4 -0
- package/tools/qbd/accounts/retrieve-qbd-accounts.d.mts.map +1 -1
- package/tools/qbd/accounts/retrieve-qbd-accounts.d.ts +4 -0
- package/tools/qbd/accounts/retrieve-qbd-accounts.d.ts.map +1 -1
- package/tools/qbd/accounts/update-qbd-accounts.d.mts +4 -0
- package/tools/qbd/accounts/update-qbd-accounts.d.mts.map +1 -1
- package/tools/qbd/accounts/update-qbd-accounts.d.ts +4 -0
- package/tools/qbd/accounts/update-qbd-accounts.d.ts.map +1 -1
- package/tools/qbd/bill-check-payments/create-qbd-bill-check-payments.d.mts +4 -0
- package/tools/qbd/bill-check-payments/create-qbd-bill-check-payments.d.mts.map +1 -1
- package/tools/qbd/bill-check-payments/create-qbd-bill-check-payments.d.ts +4 -0
- package/tools/qbd/bill-check-payments/create-qbd-bill-check-payments.d.ts.map +1 -1
- package/tools/qbd/bill-check-payments/delete-qbd-bill-check-payments.d.mts +4 -0
- package/tools/qbd/bill-check-payments/delete-qbd-bill-check-payments.d.mts.map +1 -1
- package/tools/qbd/bill-check-payments/delete-qbd-bill-check-payments.d.ts +4 -0
- package/tools/qbd/bill-check-payments/delete-qbd-bill-check-payments.d.ts.map +1 -1
- package/tools/qbd/bill-check-payments/list-qbd-bill-check-payments.d.mts +4 -0
- package/tools/qbd/bill-check-payments/list-qbd-bill-check-payments.d.mts.map +1 -1
- package/tools/qbd/bill-check-payments/list-qbd-bill-check-payments.d.ts +4 -0
- package/tools/qbd/bill-check-payments/list-qbd-bill-check-payments.d.ts.map +1 -1
- package/tools/qbd/bill-check-payments/list-qbd-bill-check-payments.js +3 -3
- package/tools/qbd/bill-check-payments/list-qbd-bill-check-payments.js.map +1 -1
- package/tools/qbd/bill-check-payments/list-qbd-bill-check-payments.mjs +3 -3
- package/tools/qbd/bill-check-payments/list-qbd-bill-check-payments.mjs.map +1 -1
- package/tools/qbd/bill-check-payments/retrieve-qbd-bill-check-payments.d.mts +4 -0
- package/tools/qbd/bill-check-payments/retrieve-qbd-bill-check-payments.d.mts.map +1 -1
- package/tools/qbd/bill-check-payments/retrieve-qbd-bill-check-payments.d.ts +4 -0
- package/tools/qbd/bill-check-payments/retrieve-qbd-bill-check-payments.d.ts.map +1 -1
- package/tools/qbd/bill-check-payments/update-qbd-bill-check-payments.d.mts +4 -0
- package/tools/qbd/bill-check-payments/update-qbd-bill-check-payments.d.mts.map +1 -1
- package/tools/qbd/bill-check-payments/update-qbd-bill-check-payments.d.ts +4 -0
- package/tools/qbd/bill-check-payments/update-qbd-bill-check-payments.d.ts.map +1 -1
- package/tools/qbd/bill-credit-card-payments/create-qbd-bill-credit-card-payments.d.mts +4 -0
- package/tools/qbd/bill-credit-card-payments/create-qbd-bill-credit-card-payments.d.mts.map +1 -1
- package/tools/qbd/bill-credit-card-payments/create-qbd-bill-credit-card-payments.d.ts +4 -0
- package/tools/qbd/bill-credit-card-payments/create-qbd-bill-credit-card-payments.d.ts.map +1 -1
- package/tools/qbd/bill-credit-card-payments/delete-qbd-bill-credit-card-payments.d.mts +4 -0
- package/tools/qbd/bill-credit-card-payments/delete-qbd-bill-credit-card-payments.d.mts.map +1 -1
- package/tools/qbd/bill-credit-card-payments/delete-qbd-bill-credit-card-payments.d.ts +4 -0
- package/tools/qbd/bill-credit-card-payments/delete-qbd-bill-credit-card-payments.d.ts.map +1 -1
- package/tools/qbd/bill-credit-card-payments/list-qbd-bill-credit-card-payments.d.mts +4 -0
- package/tools/qbd/bill-credit-card-payments/list-qbd-bill-credit-card-payments.d.mts.map +1 -1
- package/tools/qbd/bill-credit-card-payments/list-qbd-bill-credit-card-payments.d.ts +4 -0
- package/tools/qbd/bill-credit-card-payments/list-qbd-bill-credit-card-payments.d.ts.map +1 -1
- package/tools/qbd/bill-credit-card-payments/list-qbd-bill-credit-card-payments.js +3 -3
- package/tools/qbd/bill-credit-card-payments/list-qbd-bill-credit-card-payments.js.map +1 -1
- package/tools/qbd/bill-credit-card-payments/list-qbd-bill-credit-card-payments.mjs +3 -3
- package/tools/qbd/bill-credit-card-payments/list-qbd-bill-credit-card-payments.mjs.map +1 -1
- package/tools/qbd/bill-credit-card-payments/retrieve-qbd-bill-credit-card-payments.d.mts +4 -0
- package/tools/qbd/bill-credit-card-payments/retrieve-qbd-bill-credit-card-payments.d.mts.map +1 -1
- package/tools/qbd/bill-credit-card-payments/retrieve-qbd-bill-credit-card-payments.d.ts +4 -0
- package/tools/qbd/bill-credit-card-payments/retrieve-qbd-bill-credit-card-payments.d.ts.map +1 -1
- package/tools/qbd/bills/create-qbd-bills.d.mts +4 -0
- package/tools/qbd/bills/create-qbd-bills.d.mts.map +1 -1
- package/tools/qbd/bills/create-qbd-bills.d.ts +4 -0
- package/tools/qbd/bills/create-qbd-bills.d.ts.map +1 -1
- package/tools/qbd/bills/delete-qbd-bills.d.mts +4 -0
- package/tools/qbd/bills/delete-qbd-bills.d.mts.map +1 -1
- package/tools/qbd/bills/delete-qbd-bills.d.ts +4 -0
- package/tools/qbd/bills/delete-qbd-bills.d.ts.map +1 -1
- package/tools/qbd/bills/list-qbd-bills.d.mts +4 -0
- package/tools/qbd/bills/list-qbd-bills.d.mts.map +1 -1
- package/tools/qbd/bills/list-qbd-bills.d.ts +4 -0
- package/tools/qbd/bills/list-qbd-bills.d.ts.map +1 -1
- package/tools/qbd/bills/list-qbd-bills.js +3 -3
- package/tools/qbd/bills/list-qbd-bills.js.map +1 -1
- package/tools/qbd/bills/list-qbd-bills.mjs +3 -3
- package/tools/qbd/bills/list-qbd-bills.mjs.map +1 -1
- package/tools/qbd/bills/retrieve-qbd-bills.d.mts +4 -0
- package/tools/qbd/bills/retrieve-qbd-bills.d.mts.map +1 -1
- package/tools/qbd/bills/retrieve-qbd-bills.d.ts +4 -0
- package/tools/qbd/bills/retrieve-qbd-bills.d.ts.map +1 -1
- package/tools/qbd/bills/update-qbd-bills.d.mts +4 -0
- package/tools/qbd/bills/update-qbd-bills.d.mts.map +1 -1
- package/tools/qbd/bills/update-qbd-bills.d.ts +4 -0
- package/tools/qbd/bills/update-qbd-bills.d.ts.map +1 -1
- package/tools/qbd/build-assemblies/create-qbd-build-assemblies.d.mts +45 -0
- package/tools/qbd/build-assemblies/create-qbd-build-assemblies.d.mts.map +1 -0
- package/tools/qbd/build-assemblies/create-qbd-build-assemblies.d.ts +45 -0
- package/tools/qbd/build-assemblies/create-qbd-build-assemblies.d.ts.map +1 -0
- package/tools/qbd/build-assemblies/create-qbd-build-assemblies.js +82 -0
- package/tools/qbd/build-assemblies/create-qbd-build-assemblies.js.map +1 -0
- package/tools/qbd/build-assemblies/create-qbd-build-assemblies.mjs +78 -0
- package/tools/qbd/build-assemblies/create-qbd-build-assemblies.mjs.map +1 -0
- package/tools/qbd/build-assemblies/delete-qbd-build-assemblies.d.mts +45 -0
- package/tools/qbd/build-assemblies/delete-qbd-build-assemblies.d.mts.map +1 -0
- package/tools/qbd/build-assemblies/delete-qbd-build-assemblies.d.ts +45 -0
- package/tools/qbd/build-assemblies/delete-qbd-build-assemblies.d.ts.map +1 -0
- package/tools/qbd/build-assemblies/delete-qbd-build-assemblies.js +36 -0
- package/tools/qbd/build-assemblies/delete-qbd-build-assemblies.js.map +1 -0
- package/tools/qbd/build-assemblies/delete-qbd-build-assemblies.mjs +32 -0
- package/tools/qbd/build-assemblies/delete-qbd-build-assemblies.mjs.map +1 -0
- package/tools/qbd/build-assemblies/list-qbd-build-assemblies.d.mts +45 -0
- package/tools/qbd/build-assemblies/list-qbd-build-assemblies.d.mts.map +1 -0
- package/tools/qbd/build-assemblies/list-qbd-build-assemblies.d.ts +45 -0
- package/tools/qbd/build-assemblies/list-qbd-build-assemblies.d.ts.map +1 -0
- package/tools/qbd/build-assemblies/list-qbd-build-assemblies.js +108 -0
- package/tools/qbd/build-assemblies/list-qbd-build-assemblies.js.map +1 -0
- package/tools/qbd/build-assemblies/list-qbd-build-assemblies.mjs +104 -0
- package/tools/qbd/build-assemblies/list-qbd-build-assemblies.mjs.map +1 -0
- package/tools/qbd/build-assemblies/retrieve-qbd-build-assemblies.d.mts +45 -0
- package/tools/qbd/build-assemblies/retrieve-qbd-build-assemblies.d.mts.map +1 -0
- package/tools/qbd/build-assemblies/retrieve-qbd-build-assemblies.d.ts +45 -0
- package/tools/qbd/build-assemblies/retrieve-qbd-build-assemblies.d.ts.map +1 -0
- package/tools/qbd/build-assemblies/retrieve-qbd-build-assemblies.js +36 -0
- package/tools/qbd/build-assemblies/retrieve-qbd-build-assemblies.js.map +1 -0
- package/tools/qbd/build-assemblies/retrieve-qbd-build-assemblies.mjs +32 -0
- package/tools/qbd/build-assemblies/retrieve-qbd-build-assemblies.mjs.map +1 -0
- package/tools/qbd/build-assemblies/update-qbd-build-assemblies.d.mts +45 -0
- package/tools/qbd/build-assemblies/update-qbd-build-assemblies.d.mts.map +1 -0
- package/tools/qbd/build-assemblies/update-qbd-build-assemblies.d.ts +45 -0
- package/tools/qbd/build-assemblies/update-qbd-build-assemblies.d.ts.map +1 -0
- package/tools/qbd/build-assemblies/update-qbd-build-assemblies.js +86 -0
- package/tools/qbd/build-assemblies/update-qbd-build-assemblies.js.map +1 -0
- package/tools/qbd/build-assemblies/update-qbd-build-assemblies.mjs +82 -0
- package/tools/qbd/build-assemblies/update-qbd-build-assemblies.mjs.map +1 -0
- package/tools/qbd/checks/create-qbd-checks.d.mts +4 -0
- package/tools/qbd/checks/create-qbd-checks.d.mts.map +1 -1
- package/tools/qbd/checks/create-qbd-checks.d.ts +4 -0
- package/tools/qbd/checks/create-qbd-checks.d.ts.map +1 -1
- package/tools/qbd/checks/delete-qbd-checks.d.mts +4 -0
- package/tools/qbd/checks/delete-qbd-checks.d.mts.map +1 -1
- package/tools/qbd/checks/delete-qbd-checks.d.ts +4 -0
- package/tools/qbd/checks/delete-qbd-checks.d.ts.map +1 -1
- package/tools/qbd/checks/list-qbd-checks.d.mts +4 -0
- package/tools/qbd/checks/list-qbd-checks.d.mts.map +1 -1
- package/tools/qbd/checks/list-qbd-checks.d.ts +4 -0
- package/tools/qbd/checks/list-qbd-checks.d.ts.map +1 -1
- package/tools/qbd/checks/list-qbd-checks.js +3 -3
- package/tools/qbd/checks/list-qbd-checks.js.map +1 -1
- package/tools/qbd/checks/list-qbd-checks.mjs +3 -3
- package/tools/qbd/checks/list-qbd-checks.mjs.map +1 -1
- package/tools/qbd/checks/retrieve-qbd-checks.d.mts +4 -0
- package/tools/qbd/checks/retrieve-qbd-checks.d.mts.map +1 -1
- package/tools/qbd/checks/retrieve-qbd-checks.d.ts +4 -0
- package/tools/qbd/checks/retrieve-qbd-checks.d.ts.map +1 -1
- package/tools/qbd/checks/update-qbd-checks.d.mts +4 -0
- package/tools/qbd/checks/update-qbd-checks.d.mts.map +1 -1
- package/tools/qbd/checks/update-qbd-checks.d.ts +4 -0
- package/tools/qbd/checks/update-qbd-checks.d.ts.map +1 -1
- package/tools/qbd/classes/create-qbd-classes.d.mts +4 -0
- package/tools/qbd/classes/create-qbd-classes.d.mts.map +1 -1
- package/tools/qbd/classes/create-qbd-classes.d.ts +4 -0
- package/tools/qbd/classes/create-qbd-classes.d.ts.map +1 -1
- package/tools/qbd/classes/list-qbd-classes.d.mts +4 -0
- package/tools/qbd/classes/list-qbd-classes.d.mts.map +1 -1
- package/tools/qbd/classes/list-qbd-classes.d.ts +4 -0
- package/tools/qbd/classes/list-qbd-classes.d.ts.map +1 -1
- package/tools/qbd/classes/list-qbd-classes.js +3 -3
- package/tools/qbd/classes/list-qbd-classes.js.map +1 -1
- package/tools/qbd/classes/list-qbd-classes.mjs +3 -3
- package/tools/qbd/classes/list-qbd-classes.mjs.map +1 -1
- package/tools/qbd/classes/retrieve-qbd-classes.d.mts +4 -0
- package/tools/qbd/classes/retrieve-qbd-classes.d.mts.map +1 -1
- package/tools/qbd/classes/retrieve-qbd-classes.d.ts +4 -0
- package/tools/qbd/classes/retrieve-qbd-classes.d.ts.map +1 -1
- package/tools/qbd/classes/update-qbd-classes.d.mts +4 -0
- package/tools/qbd/classes/update-qbd-classes.d.mts.map +1 -1
- package/tools/qbd/classes/update-qbd-classes.d.ts +4 -0
- package/tools/qbd/classes/update-qbd-classes.d.ts.map +1 -1
- package/tools/qbd/company/retrieve-qbd-company.d.mts +4 -0
- package/tools/qbd/company/retrieve-qbd-company.d.mts.map +1 -1
- package/tools/qbd/company/retrieve-qbd-company.d.ts +4 -0
- package/tools/qbd/company/retrieve-qbd-company.d.ts.map +1 -1
- package/tools/qbd/credit-card-charges/create-qbd-credit-card-charges.d.mts +4 -0
- package/tools/qbd/credit-card-charges/create-qbd-credit-card-charges.d.mts.map +1 -1
- package/tools/qbd/credit-card-charges/create-qbd-credit-card-charges.d.ts +4 -0
- package/tools/qbd/credit-card-charges/create-qbd-credit-card-charges.d.ts.map +1 -1
- package/tools/qbd/credit-card-charges/delete-qbd-credit-card-charges.d.mts +4 -0
- package/tools/qbd/credit-card-charges/delete-qbd-credit-card-charges.d.mts.map +1 -1
- package/tools/qbd/credit-card-charges/delete-qbd-credit-card-charges.d.ts +4 -0
- package/tools/qbd/credit-card-charges/delete-qbd-credit-card-charges.d.ts.map +1 -1
- package/tools/qbd/credit-card-charges/list-qbd-credit-card-charges.d.mts +4 -0
- package/tools/qbd/credit-card-charges/list-qbd-credit-card-charges.d.mts.map +1 -1
- package/tools/qbd/credit-card-charges/list-qbd-credit-card-charges.d.ts +4 -0
- package/tools/qbd/credit-card-charges/list-qbd-credit-card-charges.d.ts.map +1 -1
- package/tools/qbd/credit-card-charges/list-qbd-credit-card-charges.js +3 -3
- package/tools/qbd/credit-card-charges/list-qbd-credit-card-charges.js.map +1 -1
- package/tools/qbd/credit-card-charges/list-qbd-credit-card-charges.mjs +3 -3
- package/tools/qbd/credit-card-charges/list-qbd-credit-card-charges.mjs.map +1 -1
- package/tools/qbd/credit-card-charges/retrieve-qbd-credit-card-charges.d.mts +4 -0
- package/tools/qbd/credit-card-charges/retrieve-qbd-credit-card-charges.d.mts.map +1 -1
- package/tools/qbd/credit-card-charges/retrieve-qbd-credit-card-charges.d.ts +4 -0
- package/tools/qbd/credit-card-charges/retrieve-qbd-credit-card-charges.d.ts.map +1 -1
- package/tools/qbd/credit-card-charges/update-qbd-credit-card-charges.d.mts +4 -0
- package/tools/qbd/credit-card-charges/update-qbd-credit-card-charges.d.mts.map +1 -1
- package/tools/qbd/credit-card-charges/update-qbd-credit-card-charges.d.ts +4 -0
- package/tools/qbd/credit-card-charges/update-qbd-credit-card-charges.d.ts.map +1 -1
- package/tools/qbd/credit-card-credits/create-qbd-credit-card-credits.d.mts +4 -0
- package/tools/qbd/credit-card-credits/create-qbd-credit-card-credits.d.mts.map +1 -1
- package/tools/qbd/credit-card-credits/create-qbd-credit-card-credits.d.ts +4 -0
- package/tools/qbd/credit-card-credits/create-qbd-credit-card-credits.d.ts.map +1 -1
- package/tools/qbd/credit-card-credits/delete-qbd-credit-card-credits.d.mts +4 -0
- package/tools/qbd/credit-card-credits/delete-qbd-credit-card-credits.d.mts.map +1 -1
- package/tools/qbd/credit-card-credits/delete-qbd-credit-card-credits.d.ts +4 -0
- package/tools/qbd/credit-card-credits/delete-qbd-credit-card-credits.d.ts.map +1 -1
- package/tools/qbd/credit-card-credits/list-qbd-credit-card-credits.d.mts +4 -0
- package/tools/qbd/credit-card-credits/list-qbd-credit-card-credits.d.mts.map +1 -1
- package/tools/qbd/credit-card-credits/list-qbd-credit-card-credits.d.ts +4 -0
- package/tools/qbd/credit-card-credits/list-qbd-credit-card-credits.d.ts.map +1 -1
- package/tools/qbd/credit-card-credits/list-qbd-credit-card-credits.js +3 -3
- package/tools/qbd/credit-card-credits/list-qbd-credit-card-credits.js.map +1 -1
- package/tools/qbd/credit-card-credits/list-qbd-credit-card-credits.mjs +3 -3
- package/tools/qbd/credit-card-credits/list-qbd-credit-card-credits.mjs.map +1 -1
- package/tools/qbd/credit-card-credits/retrieve-qbd-credit-card-credits.d.mts +4 -0
- package/tools/qbd/credit-card-credits/retrieve-qbd-credit-card-credits.d.mts.map +1 -1
- package/tools/qbd/credit-card-credits/retrieve-qbd-credit-card-credits.d.ts +4 -0
- package/tools/qbd/credit-card-credits/retrieve-qbd-credit-card-credits.d.ts.map +1 -1
- package/tools/qbd/credit-card-credits/update-qbd-credit-card-credits.d.mts +4 -0
- package/tools/qbd/credit-card-credits/update-qbd-credit-card-credits.d.mts.map +1 -1
- package/tools/qbd/credit-card-credits/update-qbd-credit-card-credits.d.ts +4 -0
- package/tools/qbd/credit-card-credits/update-qbd-credit-card-credits.d.ts.map +1 -1
- package/tools/qbd/credit-memos/create-qbd-credit-memos.d.mts +4 -0
- package/tools/qbd/credit-memos/create-qbd-credit-memos.d.mts.map +1 -1
- package/tools/qbd/credit-memos/create-qbd-credit-memos.d.ts +4 -0
- package/tools/qbd/credit-memos/create-qbd-credit-memos.d.ts.map +1 -1
- package/tools/qbd/credit-memos/delete-qbd-credit-memos.d.mts +4 -0
- package/tools/qbd/credit-memos/delete-qbd-credit-memos.d.mts.map +1 -1
- package/tools/qbd/credit-memos/delete-qbd-credit-memos.d.ts +4 -0
- package/tools/qbd/credit-memos/delete-qbd-credit-memos.d.ts.map +1 -1
- package/tools/qbd/credit-memos/list-qbd-credit-memos.d.mts +4 -0
- package/tools/qbd/credit-memos/list-qbd-credit-memos.d.mts.map +1 -1
- package/tools/qbd/credit-memos/list-qbd-credit-memos.d.ts +4 -0
- package/tools/qbd/credit-memos/list-qbd-credit-memos.d.ts.map +1 -1
- package/tools/qbd/credit-memos/list-qbd-credit-memos.js +3 -3
- package/tools/qbd/credit-memos/list-qbd-credit-memos.js.map +1 -1
- package/tools/qbd/credit-memos/list-qbd-credit-memos.mjs +3 -3
- package/tools/qbd/credit-memos/list-qbd-credit-memos.mjs.map +1 -1
- package/tools/qbd/credit-memos/retrieve-qbd-credit-memos.d.mts +4 -0
- package/tools/qbd/credit-memos/retrieve-qbd-credit-memos.d.mts.map +1 -1
- package/tools/qbd/credit-memos/retrieve-qbd-credit-memos.d.ts +4 -0
- package/tools/qbd/credit-memos/retrieve-qbd-credit-memos.d.ts.map +1 -1
- package/tools/qbd/credit-memos/update-qbd-credit-memos.d.mts +4 -0
- package/tools/qbd/credit-memos/update-qbd-credit-memos.d.mts.map +1 -1
- package/tools/qbd/credit-memos/update-qbd-credit-memos.d.ts +4 -0
- package/tools/qbd/credit-memos/update-qbd-credit-memos.d.ts.map +1 -1
- package/tools/qbd/customers/create-qbd-customers.d.mts +4 -0
- package/tools/qbd/customers/create-qbd-customers.d.mts.map +1 -1
- package/tools/qbd/customers/create-qbd-customers.d.ts +4 -0
- package/tools/qbd/customers/create-qbd-customers.d.ts.map +1 -1
- package/tools/qbd/customers/list-qbd-customers.d.mts +4 -0
- package/tools/qbd/customers/list-qbd-customers.d.mts.map +1 -1
- package/tools/qbd/customers/list-qbd-customers.d.ts +4 -0
- package/tools/qbd/customers/list-qbd-customers.d.ts.map +1 -1
- package/tools/qbd/customers/list-qbd-customers.js +3 -3
- package/tools/qbd/customers/list-qbd-customers.js.map +1 -1
- package/tools/qbd/customers/list-qbd-customers.mjs +3 -3
- package/tools/qbd/customers/list-qbd-customers.mjs.map +1 -1
- package/tools/qbd/customers/retrieve-qbd-customers.d.mts +4 -0
- package/tools/qbd/customers/retrieve-qbd-customers.d.mts.map +1 -1
- package/tools/qbd/customers/retrieve-qbd-customers.d.ts +4 -0
- package/tools/qbd/customers/retrieve-qbd-customers.d.ts.map +1 -1
- package/tools/qbd/customers/update-qbd-customers.d.mts +4 -0
- package/tools/qbd/customers/update-qbd-customers.d.mts.map +1 -1
- package/tools/qbd/customers/update-qbd-customers.d.ts +4 -0
- package/tools/qbd/customers/update-qbd-customers.d.ts.map +1 -1
- package/tools/qbd/date-driven-terms/create-qbd-date-driven-terms.d.mts +4 -0
- package/tools/qbd/date-driven-terms/create-qbd-date-driven-terms.d.mts.map +1 -1
- package/tools/qbd/date-driven-terms/create-qbd-date-driven-terms.d.ts +4 -0
- package/tools/qbd/date-driven-terms/create-qbd-date-driven-terms.d.ts.map +1 -1
- package/tools/qbd/date-driven-terms/list-qbd-date-driven-terms.d.mts +4 -0
- package/tools/qbd/date-driven-terms/list-qbd-date-driven-terms.d.mts.map +1 -1
- package/tools/qbd/date-driven-terms/list-qbd-date-driven-terms.d.ts +4 -0
- package/tools/qbd/date-driven-terms/list-qbd-date-driven-terms.d.ts.map +1 -1
- package/tools/qbd/date-driven-terms/list-qbd-date-driven-terms.js +3 -3
- package/tools/qbd/date-driven-terms/list-qbd-date-driven-terms.js.map +1 -1
- package/tools/qbd/date-driven-terms/list-qbd-date-driven-terms.mjs +3 -3
- package/tools/qbd/date-driven-terms/list-qbd-date-driven-terms.mjs.map +1 -1
- package/tools/qbd/date-driven-terms/retrieve-qbd-date-driven-terms.d.mts +4 -0
- package/tools/qbd/date-driven-terms/retrieve-qbd-date-driven-terms.d.mts.map +1 -1
- package/tools/qbd/date-driven-terms/retrieve-qbd-date-driven-terms.d.ts +4 -0
- package/tools/qbd/date-driven-terms/retrieve-qbd-date-driven-terms.d.ts.map +1 -1
- package/tools/qbd/discount-items/create-qbd-discount-items.d.mts +4 -0
- package/tools/qbd/discount-items/create-qbd-discount-items.d.mts.map +1 -1
- package/tools/qbd/discount-items/create-qbd-discount-items.d.ts +4 -0
- package/tools/qbd/discount-items/create-qbd-discount-items.d.ts.map +1 -1
- package/tools/qbd/discount-items/list-qbd-discount-items.d.mts +4 -0
- package/tools/qbd/discount-items/list-qbd-discount-items.d.mts.map +1 -1
- package/tools/qbd/discount-items/list-qbd-discount-items.d.ts +4 -0
- package/tools/qbd/discount-items/list-qbd-discount-items.d.ts.map +1 -1
- package/tools/qbd/discount-items/list-qbd-discount-items.js +3 -3
- package/tools/qbd/discount-items/list-qbd-discount-items.js.map +1 -1
- package/tools/qbd/discount-items/list-qbd-discount-items.mjs +3 -3
- package/tools/qbd/discount-items/list-qbd-discount-items.mjs.map +1 -1
- package/tools/qbd/discount-items/retrieve-qbd-discount-items.d.mts +4 -0
- package/tools/qbd/discount-items/retrieve-qbd-discount-items.d.mts.map +1 -1
- package/tools/qbd/discount-items/retrieve-qbd-discount-items.d.ts +4 -0
- package/tools/qbd/discount-items/retrieve-qbd-discount-items.d.ts.map +1 -1
- package/tools/qbd/discount-items/update-qbd-discount-items.d.mts +4 -0
- package/tools/qbd/discount-items/update-qbd-discount-items.d.mts.map +1 -1
- package/tools/qbd/discount-items/update-qbd-discount-items.d.ts +4 -0
- package/tools/qbd/discount-items/update-qbd-discount-items.d.ts.map +1 -1
- package/tools/qbd/employees/create-qbd-employees.d.mts +4 -0
- package/tools/qbd/employees/create-qbd-employees.d.mts.map +1 -1
- package/tools/qbd/employees/create-qbd-employees.d.ts +4 -0
- package/tools/qbd/employees/create-qbd-employees.d.ts.map +1 -1
- package/tools/qbd/employees/list-qbd-employees.d.mts +4 -0
- package/tools/qbd/employees/list-qbd-employees.d.mts.map +1 -1
- package/tools/qbd/employees/list-qbd-employees.d.ts +4 -0
- package/tools/qbd/employees/list-qbd-employees.d.ts.map +1 -1
- package/tools/qbd/employees/list-qbd-employees.js +3 -3
- package/tools/qbd/employees/list-qbd-employees.js.map +1 -1
- package/tools/qbd/employees/list-qbd-employees.mjs +3 -3
- package/tools/qbd/employees/list-qbd-employees.mjs.map +1 -1
- package/tools/qbd/employees/retrieve-qbd-employees.d.mts +4 -0
- package/tools/qbd/employees/retrieve-qbd-employees.d.mts.map +1 -1
- package/tools/qbd/employees/retrieve-qbd-employees.d.ts +4 -0
- package/tools/qbd/employees/retrieve-qbd-employees.d.ts.map +1 -1
- package/tools/qbd/employees/update-qbd-employees.d.mts +4 -0
- package/tools/qbd/employees/update-qbd-employees.d.mts.map +1 -1
- package/tools/qbd/employees/update-qbd-employees.d.ts +4 -0
- package/tools/qbd/employees/update-qbd-employees.d.ts.map +1 -1
- package/tools/qbd/estimates/create-qbd-estimates.d.mts +4 -0
- package/tools/qbd/estimates/create-qbd-estimates.d.mts.map +1 -1
- package/tools/qbd/estimates/create-qbd-estimates.d.ts +4 -0
- package/tools/qbd/estimates/create-qbd-estimates.d.ts.map +1 -1
- package/tools/qbd/estimates/delete-qbd-estimates.d.mts +4 -0
- package/tools/qbd/estimates/delete-qbd-estimates.d.mts.map +1 -1
- package/tools/qbd/estimates/delete-qbd-estimates.d.ts +4 -0
- package/tools/qbd/estimates/delete-qbd-estimates.d.ts.map +1 -1
- package/tools/qbd/estimates/list-qbd-estimates.d.mts +4 -0
- package/tools/qbd/estimates/list-qbd-estimates.d.mts.map +1 -1
- package/tools/qbd/estimates/list-qbd-estimates.d.ts +4 -0
- package/tools/qbd/estimates/list-qbd-estimates.d.ts.map +1 -1
- package/tools/qbd/estimates/list-qbd-estimates.js +3 -3
- package/tools/qbd/estimates/list-qbd-estimates.js.map +1 -1
- package/tools/qbd/estimates/list-qbd-estimates.mjs +3 -3
- package/tools/qbd/estimates/list-qbd-estimates.mjs.map +1 -1
- package/tools/qbd/estimates/retrieve-qbd-estimates.d.mts +4 -0
- package/tools/qbd/estimates/retrieve-qbd-estimates.d.mts.map +1 -1
- package/tools/qbd/estimates/retrieve-qbd-estimates.d.ts +4 -0
- package/tools/qbd/estimates/retrieve-qbd-estimates.d.ts.map +1 -1
- package/tools/qbd/estimates/update-qbd-estimates.d.mts +4 -0
- package/tools/qbd/estimates/update-qbd-estimates.d.mts.map +1 -1
- package/tools/qbd/estimates/update-qbd-estimates.d.ts +4 -0
- package/tools/qbd/estimates/update-qbd-estimates.d.ts.map +1 -1
- package/tools/qbd/health-check-qbd.d.mts +4 -0
- package/tools/qbd/health-check-qbd.d.mts.map +1 -1
- package/tools/qbd/health-check-qbd.d.ts +4 -0
- package/tools/qbd/health-check-qbd.d.ts.map +1 -1
- package/tools/qbd/inventory-adjustments/create-qbd-inventory-adjustments.d.mts +4 -0
- package/tools/qbd/inventory-adjustments/create-qbd-inventory-adjustments.d.mts.map +1 -1
- package/tools/qbd/inventory-adjustments/create-qbd-inventory-adjustments.d.ts +4 -0
- package/tools/qbd/inventory-adjustments/create-qbd-inventory-adjustments.d.ts.map +1 -1
- package/tools/qbd/inventory-adjustments/create-qbd-inventory-adjustments.js +5 -5
- package/tools/qbd/inventory-adjustments/create-qbd-inventory-adjustments.js.map +1 -1
- package/tools/qbd/inventory-adjustments/create-qbd-inventory-adjustments.mjs +5 -5
- package/tools/qbd/inventory-adjustments/create-qbd-inventory-adjustments.mjs.map +1 -1
- package/tools/qbd/inventory-adjustments/delete-qbd-inventory-adjustments.d.mts +4 -0
- package/tools/qbd/inventory-adjustments/delete-qbd-inventory-adjustments.d.mts.map +1 -1
- package/tools/qbd/inventory-adjustments/delete-qbd-inventory-adjustments.d.ts +4 -0
- package/tools/qbd/inventory-adjustments/delete-qbd-inventory-adjustments.d.ts.map +1 -1
- package/tools/qbd/inventory-adjustments/list-qbd-inventory-adjustments.d.mts +4 -0
- package/tools/qbd/inventory-adjustments/list-qbd-inventory-adjustments.d.mts.map +1 -1
- package/tools/qbd/inventory-adjustments/list-qbd-inventory-adjustments.d.ts +4 -0
- package/tools/qbd/inventory-adjustments/list-qbd-inventory-adjustments.d.ts.map +1 -1
- package/tools/qbd/inventory-adjustments/list-qbd-inventory-adjustments.js +3 -3
- package/tools/qbd/inventory-adjustments/list-qbd-inventory-adjustments.js.map +1 -1
- package/tools/qbd/inventory-adjustments/list-qbd-inventory-adjustments.mjs +3 -3
- package/tools/qbd/inventory-adjustments/list-qbd-inventory-adjustments.mjs.map +1 -1
- package/tools/qbd/inventory-adjustments/retrieve-qbd-inventory-adjustments.d.mts +4 -0
- package/tools/qbd/inventory-adjustments/retrieve-qbd-inventory-adjustments.d.mts.map +1 -1
- package/tools/qbd/inventory-adjustments/retrieve-qbd-inventory-adjustments.d.ts +4 -0
- package/tools/qbd/inventory-adjustments/retrieve-qbd-inventory-adjustments.d.ts.map +1 -1
- package/tools/qbd/inventory-adjustments/update-qbd-inventory-adjustments.d.mts +4 -0
- package/tools/qbd/inventory-adjustments/update-qbd-inventory-adjustments.d.mts.map +1 -1
- package/tools/qbd/inventory-adjustments/update-qbd-inventory-adjustments.d.ts +4 -0
- package/tools/qbd/inventory-adjustments/update-qbd-inventory-adjustments.d.ts.map +1 -1
- package/tools/qbd/inventory-assembly-items/create-qbd-inventory-assembly-items.d.mts +4 -0
- package/tools/qbd/inventory-assembly-items/create-qbd-inventory-assembly-items.d.mts.map +1 -1
- package/tools/qbd/inventory-assembly-items/create-qbd-inventory-assembly-items.d.ts +4 -0
- package/tools/qbd/inventory-assembly-items/create-qbd-inventory-assembly-items.d.ts.map +1 -1
- package/tools/qbd/inventory-assembly-items/list-qbd-inventory-assembly-items.d.mts +4 -0
- package/tools/qbd/inventory-assembly-items/list-qbd-inventory-assembly-items.d.mts.map +1 -1
- package/tools/qbd/inventory-assembly-items/list-qbd-inventory-assembly-items.d.ts +4 -0
- package/tools/qbd/inventory-assembly-items/list-qbd-inventory-assembly-items.d.ts.map +1 -1
- package/tools/qbd/inventory-assembly-items/list-qbd-inventory-assembly-items.js +3 -3
- package/tools/qbd/inventory-assembly-items/list-qbd-inventory-assembly-items.js.map +1 -1
- package/tools/qbd/inventory-assembly-items/list-qbd-inventory-assembly-items.mjs +3 -3
- package/tools/qbd/inventory-assembly-items/list-qbd-inventory-assembly-items.mjs.map +1 -1
- package/tools/qbd/inventory-assembly-items/retrieve-qbd-inventory-assembly-items.d.mts +4 -0
- package/tools/qbd/inventory-assembly-items/retrieve-qbd-inventory-assembly-items.d.mts.map +1 -1
- package/tools/qbd/inventory-assembly-items/retrieve-qbd-inventory-assembly-items.d.ts +4 -0
- package/tools/qbd/inventory-assembly-items/retrieve-qbd-inventory-assembly-items.d.ts.map +1 -1
- package/tools/qbd/inventory-assembly-items/update-qbd-inventory-assembly-items.d.mts +4 -0
- package/tools/qbd/inventory-assembly-items/update-qbd-inventory-assembly-items.d.mts.map +1 -1
- package/tools/qbd/inventory-assembly-items/update-qbd-inventory-assembly-items.d.ts +4 -0
- package/tools/qbd/inventory-assembly-items/update-qbd-inventory-assembly-items.d.ts.map +1 -1
- package/tools/qbd/inventory-items/create-qbd-inventory-items.d.mts +4 -0
- package/tools/qbd/inventory-items/create-qbd-inventory-items.d.mts.map +1 -1
- package/tools/qbd/inventory-items/create-qbd-inventory-items.d.ts +4 -0
- package/tools/qbd/inventory-items/create-qbd-inventory-items.d.ts.map +1 -1
- package/tools/qbd/inventory-items/list-qbd-inventory-items.d.mts +4 -0
- package/tools/qbd/inventory-items/list-qbd-inventory-items.d.mts.map +1 -1
- package/tools/qbd/inventory-items/list-qbd-inventory-items.d.ts +4 -0
- package/tools/qbd/inventory-items/list-qbd-inventory-items.d.ts.map +1 -1
- package/tools/qbd/inventory-items/list-qbd-inventory-items.js +3 -3
- package/tools/qbd/inventory-items/list-qbd-inventory-items.js.map +1 -1
- package/tools/qbd/inventory-items/list-qbd-inventory-items.mjs +3 -3
- package/tools/qbd/inventory-items/list-qbd-inventory-items.mjs.map +1 -1
- package/tools/qbd/inventory-items/retrieve-qbd-inventory-items.d.mts +4 -0
- package/tools/qbd/inventory-items/retrieve-qbd-inventory-items.d.mts.map +1 -1
- package/tools/qbd/inventory-items/retrieve-qbd-inventory-items.d.ts +4 -0
- package/tools/qbd/inventory-items/retrieve-qbd-inventory-items.d.ts.map +1 -1
- package/tools/qbd/inventory-items/update-qbd-inventory-items.d.mts +4 -0
- package/tools/qbd/inventory-items/update-qbd-inventory-items.d.mts.map +1 -1
- package/tools/qbd/inventory-items/update-qbd-inventory-items.d.ts +4 -0
- package/tools/qbd/inventory-items/update-qbd-inventory-items.d.ts.map +1 -1
- package/tools/qbd/inventory-sites/create-qbd-inventory-sites.d.mts +4 -0
- package/tools/qbd/inventory-sites/create-qbd-inventory-sites.d.mts.map +1 -1
- package/tools/qbd/inventory-sites/create-qbd-inventory-sites.d.ts +4 -0
- package/tools/qbd/inventory-sites/create-qbd-inventory-sites.d.ts.map +1 -1
- package/tools/qbd/inventory-sites/list-qbd-inventory-sites.d.mts +4 -0
- package/tools/qbd/inventory-sites/list-qbd-inventory-sites.d.mts.map +1 -1
- package/tools/qbd/inventory-sites/list-qbd-inventory-sites.d.ts +4 -0
- package/tools/qbd/inventory-sites/list-qbd-inventory-sites.d.ts.map +1 -1
- package/tools/qbd/inventory-sites/list-qbd-inventory-sites.js +3 -3
- package/tools/qbd/inventory-sites/list-qbd-inventory-sites.js.map +1 -1
- package/tools/qbd/inventory-sites/list-qbd-inventory-sites.mjs +3 -3
- package/tools/qbd/inventory-sites/list-qbd-inventory-sites.mjs.map +1 -1
- package/tools/qbd/inventory-sites/retrieve-qbd-inventory-sites.d.mts +4 -0
- package/tools/qbd/inventory-sites/retrieve-qbd-inventory-sites.d.mts.map +1 -1
- package/tools/qbd/inventory-sites/retrieve-qbd-inventory-sites.d.ts +4 -0
- package/tools/qbd/inventory-sites/retrieve-qbd-inventory-sites.d.ts.map +1 -1
- package/tools/qbd/inventory-sites/update-qbd-inventory-sites.d.mts +4 -0
- package/tools/qbd/inventory-sites/update-qbd-inventory-sites.d.mts.map +1 -1
- package/tools/qbd/inventory-sites/update-qbd-inventory-sites.d.ts +4 -0
- package/tools/qbd/inventory-sites/update-qbd-inventory-sites.d.ts.map +1 -1
- package/tools/qbd/invoices/create-qbd-invoices.d.mts +4 -0
- package/tools/qbd/invoices/create-qbd-invoices.d.mts.map +1 -1
- package/tools/qbd/invoices/create-qbd-invoices.d.ts +4 -0
- package/tools/qbd/invoices/create-qbd-invoices.d.ts.map +1 -1
- package/tools/qbd/invoices/delete-qbd-invoices.d.mts +4 -0
- package/tools/qbd/invoices/delete-qbd-invoices.d.mts.map +1 -1
- package/tools/qbd/invoices/delete-qbd-invoices.d.ts +4 -0
- package/tools/qbd/invoices/delete-qbd-invoices.d.ts.map +1 -1
- package/tools/qbd/invoices/list-qbd-invoices.d.mts +4 -0
- package/tools/qbd/invoices/list-qbd-invoices.d.mts.map +1 -1
- package/tools/qbd/invoices/list-qbd-invoices.d.ts +4 -0
- package/tools/qbd/invoices/list-qbd-invoices.d.ts.map +1 -1
- package/tools/qbd/invoices/list-qbd-invoices.js +3 -3
- package/tools/qbd/invoices/list-qbd-invoices.js.map +1 -1
- package/tools/qbd/invoices/list-qbd-invoices.mjs +3 -3
- package/tools/qbd/invoices/list-qbd-invoices.mjs.map +1 -1
- package/tools/qbd/invoices/retrieve-qbd-invoices.d.mts +4 -0
- package/tools/qbd/invoices/retrieve-qbd-invoices.d.mts.map +1 -1
- package/tools/qbd/invoices/retrieve-qbd-invoices.d.ts +4 -0
- package/tools/qbd/invoices/retrieve-qbd-invoices.d.ts.map +1 -1
- package/tools/qbd/invoices/update-qbd-invoices.d.mts +4 -0
- package/tools/qbd/invoices/update-qbd-invoices.d.mts.map +1 -1
- package/tools/qbd/invoices/update-qbd-invoices.d.ts +4 -0
- package/tools/qbd/invoices/update-qbd-invoices.d.ts.map +1 -1
- package/tools/qbd/item-groups/create-qbd-item-groups.d.mts +4 -0
- package/tools/qbd/item-groups/create-qbd-item-groups.d.mts.map +1 -1
- package/tools/qbd/item-groups/create-qbd-item-groups.d.ts +4 -0
- package/tools/qbd/item-groups/create-qbd-item-groups.d.ts.map +1 -1
- package/tools/qbd/item-groups/list-qbd-item-groups.d.mts +4 -0
- package/tools/qbd/item-groups/list-qbd-item-groups.d.mts.map +1 -1
- package/tools/qbd/item-groups/list-qbd-item-groups.d.ts +4 -0
- package/tools/qbd/item-groups/list-qbd-item-groups.d.ts.map +1 -1
- package/tools/qbd/item-groups/list-qbd-item-groups.js +3 -3
- package/tools/qbd/item-groups/list-qbd-item-groups.js.map +1 -1
- package/tools/qbd/item-groups/list-qbd-item-groups.mjs +3 -3
- package/tools/qbd/item-groups/list-qbd-item-groups.mjs.map +1 -1
- package/tools/qbd/item-groups/retrieve-qbd-item-groups.d.mts +4 -0
- package/tools/qbd/item-groups/retrieve-qbd-item-groups.d.mts.map +1 -1
- package/tools/qbd/item-groups/retrieve-qbd-item-groups.d.ts +4 -0
- package/tools/qbd/item-groups/retrieve-qbd-item-groups.d.ts.map +1 -1
- package/tools/qbd/item-groups/update-qbd-item-groups.d.mts +4 -0
- package/tools/qbd/item-groups/update-qbd-item-groups.d.mts.map +1 -1
- package/tools/qbd/item-groups/update-qbd-item-groups.d.ts +4 -0
- package/tools/qbd/item-groups/update-qbd-item-groups.d.ts.map +1 -1
- package/tools/qbd/item-receipts/create-qbd-item-receipts.d.mts +4 -0
- package/tools/qbd/item-receipts/create-qbd-item-receipts.d.mts.map +1 -1
- package/tools/qbd/item-receipts/create-qbd-item-receipts.d.ts +4 -0
- package/tools/qbd/item-receipts/create-qbd-item-receipts.d.ts.map +1 -1
- package/tools/qbd/item-receipts/delete-qbd-item-receipts.d.mts +4 -0
- package/tools/qbd/item-receipts/delete-qbd-item-receipts.d.mts.map +1 -1
- package/tools/qbd/item-receipts/delete-qbd-item-receipts.d.ts +4 -0
- package/tools/qbd/item-receipts/delete-qbd-item-receipts.d.ts.map +1 -1
- package/tools/qbd/item-receipts/list-qbd-item-receipts.d.mts +4 -0
- package/tools/qbd/item-receipts/list-qbd-item-receipts.d.mts.map +1 -1
- package/tools/qbd/item-receipts/list-qbd-item-receipts.d.ts +4 -0
- package/tools/qbd/item-receipts/list-qbd-item-receipts.d.ts.map +1 -1
- package/tools/qbd/item-receipts/list-qbd-item-receipts.js +3 -3
- package/tools/qbd/item-receipts/list-qbd-item-receipts.js.map +1 -1
- package/tools/qbd/item-receipts/list-qbd-item-receipts.mjs +3 -3
- package/tools/qbd/item-receipts/list-qbd-item-receipts.mjs.map +1 -1
- package/tools/qbd/item-receipts/retrieve-qbd-item-receipts.d.mts +4 -0
- package/tools/qbd/item-receipts/retrieve-qbd-item-receipts.d.mts.map +1 -1
- package/tools/qbd/item-receipts/retrieve-qbd-item-receipts.d.ts +4 -0
- package/tools/qbd/item-receipts/retrieve-qbd-item-receipts.d.ts.map +1 -1
- package/tools/qbd/item-receipts/update-qbd-item-receipts.d.mts +4 -0
- package/tools/qbd/item-receipts/update-qbd-item-receipts.d.mts.map +1 -1
- package/tools/qbd/item-receipts/update-qbd-item-receipts.d.ts +4 -0
- package/tools/qbd/item-receipts/update-qbd-item-receipts.d.ts.map +1 -1
- package/tools/qbd/item-sites/list-qbd-item-sites.d.mts +4 -0
- package/tools/qbd/item-sites/list-qbd-item-sites.d.mts.map +1 -1
- package/tools/qbd/item-sites/list-qbd-item-sites.d.ts +4 -0
- package/tools/qbd/item-sites/list-qbd-item-sites.d.ts.map +1 -1
- package/tools/qbd/item-sites/retrieve-qbd-item-sites.d.mts +4 -0
- package/tools/qbd/item-sites/retrieve-qbd-item-sites.d.mts.map +1 -1
- package/tools/qbd/item-sites/retrieve-qbd-item-sites.d.ts +4 -0
- package/tools/qbd/item-sites/retrieve-qbd-item-sites.d.ts.map +1 -1
- package/tools/qbd/journal-entries/create-qbd-journal-entries.d.mts +4 -0
- package/tools/qbd/journal-entries/create-qbd-journal-entries.d.mts.map +1 -1
- package/tools/qbd/journal-entries/create-qbd-journal-entries.d.ts +4 -0
- package/tools/qbd/journal-entries/create-qbd-journal-entries.d.ts.map +1 -1
- package/tools/qbd/journal-entries/delete-qbd-journal-entries.d.mts +4 -0
- package/tools/qbd/journal-entries/delete-qbd-journal-entries.d.mts.map +1 -1
- package/tools/qbd/journal-entries/delete-qbd-journal-entries.d.ts +4 -0
- package/tools/qbd/journal-entries/delete-qbd-journal-entries.d.ts.map +1 -1
- package/tools/qbd/journal-entries/list-qbd-journal-entries.d.mts +4 -0
- package/tools/qbd/journal-entries/list-qbd-journal-entries.d.mts.map +1 -1
- package/tools/qbd/journal-entries/list-qbd-journal-entries.d.ts +4 -0
- package/tools/qbd/journal-entries/list-qbd-journal-entries.d.ts.map +1 -1
- package/tools/qbd/journal-entries/list-qbd-journal-entries.js +3 -3
- package/tools/qbd/journal-entries/list-qbd-journal-entries.js.map +1 -1
- package/tools/qbd/journal-entries/list-qbd-journal-entries.mjs +3 -3
- package/tools/qbd/journal-entries/list-qbd-journal-entries.mjs.map +1 -1
- package/tools/qbd/journal-entries/retrieve-qbd-journal-entries.d.mts +4 -0
- package/tools/qbd/journal-entries/retrieve-qbd-journal-entries.d.mts.map +1 -1
- package/tools/qbd/journal-entries/retrieve-qbd-journal-entries.d.ts +4 -0
- package/tools/qbd/journal-entries/retrieve-qbd-journal-entries.d.ts.map +1 -1
- package/tools/qbd/journal-entries/update-qbd-journal-entries.d.mts +4 -0
- package/tools/qbd/journal-entries/update-qbd-journal-entries.d.mts.map +1 -1
- package/tools/qbd/journal-entries/update-qbd-journal-entries.d.ts +4 -0
- package/tools/qbd/journal-entries/update-qbd-journal-entries.d.ts.map +1 -1
- package/tools/qbd/non-inventory-items/create-qbd-non-inventory-items.d.mts +4 -0
- package/tools/qbd/non-inventory-items/create-qbd-non-inventory-items.d.mts.map +1 -1
- package/tools/qbd/non-inventory-items/create-qbd-non-inventory-items.d.ts +4 -0
- package/tools/qbd/non-inventory-items/create-qbd-non-inventory-items.d.ts.map +1 -1
- package/tools/qbd/non-inventory-items/list-qbd-non-inventory-items.d.mts +4 -0
- package/tools/qbd/non-inventory-items/list-qbd-non-inventory-items.d.mts.map +1 -1
- package/tools/qbd/non-inventory-items/list-qbd-non-inventory-items.d.ts +4 -0
- package/tools/qbd/non-inventory-items/list-qbd-non-inventory-items.d.ts.map +1 -1
- package/tools/qbd/non-inventory-items/list-qbd-non-inventory-items.js +3 -3
- package/tools/qbd/non-inventory-items/list-qbd-non-inventory-items.js.map +1 -1
- package/tools/qbd/non-inventory-items/list-qbd-non-inventory-items.mjs +3 -3
- package/tools/qbd/non-inventory-items/list-qbd-non-inventory-items.mjs.map +1 -1
- package/tools/qbd/non-inventory-items/retrieve-qbd-non-inventory-items.d.mts +4 -0
- package/tools/qbd/non-inventory-items/retrieve-qbd-non-inventory-items.d.mts.map +1 -1
- package/tools/qbd/non-inventory-items/retrieve-qbd-non-inventory-items.d.ts +4 -0
- package/tools/qbd/non-inventory-items/retrieve-qbd-non-inventory-items.d.ts.map +1 -1
- package/tools/qbd/non-inventory-items/update-qbd-non-inventory-items.d.mts +4 -0
- package/tools/qbd/non-inventory-items/update-qbd-non-inventory-items.d.mts.map +1 -1
- package/tools/qbd/non-inventory-items/update-qbd-non-inventory-items.d.ts +4 -0
- package/tools/qbd/non-inventory-items/update-qbd-non-inventory-items.d.ts.map +1 -1
- package/tools/qbd/other-names/create-qbd-other-names.d.mts +4 -0
- package/tools/qbd/other-names/create-qbd-other-names.d.mts.map +1 -1
- package/tools/qbd/other-names/create-qbd-other-names.d.ts +4 -0
- package/tools/qbd/other-names/create-qbd-other-names.d.ts.map +1 -1
- package/tools/qbd/other-names/list-qbd-other-names.d.mts +4 -0
- package/tools/qbd/other-names/list-qbd-other-names.d.mts.map +1 -1
- package/tools/qbd/other-names/list-qbd-other-names.d.ts +4 -0
- package/tools/qbd/other-names/list-qbd-other-names.d.ts.map +1 -1
- package/tools/qbd/other-names/list-qbd-other-names.js +3 -3
- package/tools/qbd/other-names/list-qbd-other-names.js.map +1 -1
- package/tools/qbd/other-names/list-qbd-other-names.mjs +3 -3
- package/tools/qbd/other-names/list-qbd-other-names.mjs.map +1 -1
- package/tools/qbd/other-names/retrieve-qbd-other-names.d.mts +4 -0
- package/tools/qbd/other-names/retrieve-qbd-other-names.d.mts.map +1 -1
- package/tools/qbd/other-names/retrieve-qbd-other-names.d.ts +4 -0
- package/tools/qbd/other-names/retrieve-qbd-other-names.d.ts.map +1 -1
- package/tools/qbd/other-names/update-qbd-other-names.d.mts +4 -0
- package/tools/qbd/other-names/update-qbd-other-names.d.mts.map +1 -1
- package/tools/qbd/other-names/update-qbd-other-names.d.ts +4 -0
- package/tools/qbd/other-names/update-qbd-other-names.d.ts.map +1 -1
- package/tools/qbd/payment-methods/create-qbd-payment-methods.d.mts +4 -0
- package/tools/qbd/payment-methods/create-qbd-payment-methods.d.mts.map +1 -1
- package/tools/qbd/payment-methods/create-qbd-payment-methods.d.ts +4 -0
- package/tools/qbd/payment-methods/create-qbd-payment-methods.d.ts.map +1 -1
- package/tools/qbd/payment-methods/list-qbd-payment-methods.d.mts +4 -0
- package/tools/qbd/payment-methods/list-qbd-payment-methods.d.mts.map +1 -1
- package/tools/qbd/payment-methods/list-qbd-payment-methods.d.ts +4 -0
- package/tools/qbd/payment-methods/list-qbd-payment-methods.d.ts.map +1 -1
- package/tools/qbd/payment-methods/list-qbd-payment-methods.js +3 -3
- package/tools/qbd/payment-methods/list-qbd-payment-methods.js.map +1 -1
- package/tools/qbd/payment-methods/list-qbd-payment-methods.mjs +3 -3
- package/tools/qbd/payment-methods/list-qbd-payment-methods.mjs.map +1 -1
- package/tools/qbd/payment-methods/retrieve-qbd-payment-methods.d.mts +4 -0
- package/tools/qbd/payment-methods/retrieve-qbd-payment-methods.d.mts.map +1 -1
- package/tools/qbd/payment-methods/retrieve-qbd-payment-methods.d.ts +4 -0
- package/tools/qbd/payment-methods/retrieve-qbd-payment-methods.d.ts.map +1 -1
- package/tools/qbd/payroll-wage-items/create-qbd-payroll-wage-items.d.mts +4 -0
- package/tools/qbd/payroll-wage-items/create-qbd-payroll-wage-items.d.mts.map +1 -1
- package/tools/qbd/payroll-wage-items/create-qbd-payroll-wage-items.d.ts +4 -0
- package/tools/qbd/payroll-wage-items/create-qbd-payroll-wage-items.d.ts.map +1 -1
- package/tools/qbd/payroll-wage-items/list-qbd-payroll-wage-items.d.mts +4 -0
- package/tools/qbd/payroll-wage-items/list-qbd-payroll-wage-items.d.mts.map +1 -1
- package/tools/qbd/payroll-wage-items/list-qbd-payroll-wage-items.d.ts +4 -0
- package/tools/qbd/payroll-wage-items/list-qbd-payroll-wage-items.d.ts.map +1 -1
- package/tools/qbd/payroll-wage-items/list-qbd-payroll-wage-items.js +3 -3
- package/tools/qbd/payroll-wage-items/list-qbd-payroll-wage-items.js.map +1 -1
- package/tools/qbd/payroll-wage-items/list-qbd-payroll-wage-items.mjs +3 -3
- package/tools/qbd/payroll-wage-items/list-qbd-payroll-wage-items.mjs.map +1 -1
- package/tools/qbd/payroll-wage-items/retrieve-qbd-payroll-wage-items.d.mts +4 -0
- package/tools/qbd/payroll-wage-items/retrieve-qbd-payroll-wage-items.d.mts.map +1 -1
- package/tools/qbd/payroll-wage-items/retrieve-qbd-payroll-wage-items.d.ts +4 -0
- package/tools/qbd/payroll-wage-items/retrieve-qbd-payroll-wage-items.d.ts.map +1 -1
- package/tools/qbd/preferences/retrieve-qbd-preferences.d.mts +4 -0
- package/tools/qbd/preferences/retrieve-qbd-preferences.d.mts.map +1 -1
- package/tools/qbd/preferences/retrieve-qbd-preferences.d.ts +4 -0
- package/tools/qbd/preferences/retrieve-qbd-preferences.d.ts.map +1 -1
- package/tools/qbd/price-levels/create-qbd-price-levels.d.mts +4 -0
- package/tools/qbd/price-levels/create-qbd-price-levels.d.mts.map +1 -1
- package/tools/qbd/price-levels/create-qbd-price-levels.d.ts +4 -0
- package/tools/qbd/price-levels/create-qbd-price-levels.d.ts.map +1 -1
- package/tools/qbd/price-levels/create-qbd-price-levels.js +5 -5
- package/tools/qbd/price-levels/create-qbd-price-levels.js.map +1 -1
- package/tools/qbd/price-levels/create-qbd-price-levels.mjs +5 -5
- package/tools/qbd/price-levels/create-qbd-price-levels.mjs.map +1 -1
- package/tools/qbd/price-levels/list-qbd-price-levels.d.mts +4 -0
- package/tools/qbd/price-levels/list-qbd-price-levels.d.mts.map +1 -1
- package/tools/qbd/price-levels/list-qbd-price-levels.d.ts +4 -0
- package/tools/qbd/price-levels/list-qbd-price-levels.d.ts.map +1 -1
- package/tools/qbd/price-levels/list-qbd-price-levels.js +3 -3
- package/tools/qbd/price-levels/list-qbd-price-levels.js.map +1 -1
- package/tools/qbd/price-levels/list-qbd-price-levels.mjs +3 -3
- package/tools/qbd/price-levels/list-qbd-price-levels.mjs.map +1 -1
- package/tools/qbd/price-levels/retrieve-qbd-price-levels.d.mts +4 -0
- package/tools/qbd/price-levels/retrieve-qbd-price-levels.d.mts.map +1 -1
- package/tools/qbd/price-levels/retrieve-qbd-price-levels.d.ts +4 -0
- package/tools/qbd/price-levels/retrieve-qbd-price-levels.d.ts.map +1 -1
- package/tools/qbd/price-levels/update-qbd-price-levels.d.mts +4 -0
- package/tools/qbd/price-levels/update-qbd-price-levels.d.mts.map +1 -1
- package/tools/qbd/price-levels/update-qbd-price-levels.d.ts +4 -0
- package/tools/qbd/price-levels/update-qbd-price-levels.d.ts.map +1 -1
- package/tools/qbd/price-levels/update-qbd-price-levels.js +5 -5
- package/tools/qbd/price-levels/update-qbd-price-levels.js.map +1 -1
- package/tools/qbd/price-levels/update-qbd-price-levels.mjs +5 -5
- package/tools/qbd/price-levels/update-qbd-price-levels.mjs.map +1 -1
- package/tools/qbd/purchase-orders/create-qbd-purchase-orders.d.mts +4 -0
- package/tools/qbd/purchase-orders/create-qbd-purchase-orders.d.mts.map +1 -1
- package/tools/qbd/purchase-orders/create-qbd-purchase-orders.d.ts +4 -0
- package/tools/qbd/purchase-orders/create-qbd-purchase-orders.d.ts.map +1 -1
- package/tools/qbd/purchase-orders/delete-qbd-purchase-orders.d.mts +4 -0
- package/tools/qbd/purchase-orders/delete-qbd-purchase-orders.d.mts.map +1 -1
- package/tools/qbd/purchase-orders/delete-qbd-purchase-orders.d.ts +4 -0
- package/tools/qbd/purchase-orders/delete-qbd-purchase-orders.d.ts.map +1 -1
- package/tools/qbd/purchase-orders/list-qbd-purchase-orders.d.mts +4 -0
- package/tools/qbd/purchase-orders/list-qbd-purchase-orders.d.mts.map +1 -1
- package/tools/qbd/purchase-orders/list-qbd-purchase-orders.d.ts +4 -0
- package/tools/qbd/purchase-orders/list-qbd-purchase-orders.d.ts.map +1 -1
- package/tools/qbd/purchase-orders/list-qbd-purchase-orders.js +3 -3
- package/tools/qbd/purchase-orders/list-qbd-purchase-orders.js.map +1 -1
- package/tools/qbd/purchase-orders/list-qbd-purchase-orders.mjs +3 -3
- package/tools/qbd/purchase-orders/list-qbd-purchase-orders.mjs.map +1 -1
- package/tools/qbd/purchase-orders/retrieve-qbd-purchase-orders.d.mts +4 -0
- package/tools/qbd/purchase-orders/retrieve-qbd-purchase-orders.d.mts.map +1 -1
- package/tools/qbd/purchase-orders/retrieve-qbd-purchase-orders.d.ts +4 -0
- package/tools/qbd/purchase-orders/retrieve-qbd-purchase-orders.d.ts.map +1 -1
- package/tools/qbd/purchase-orders/update-qbd-purchase-orders.d.mts +4 -0
- package/tools/qbd/purchase-orders/update-qbd-purchase-orders.d.mts.map +1 -1
- package/tools/qbd/purchase-orders/update-qbd-purchase-orders.d.ts +4 -0
- package/tools/qbd/purchase-orders/update-qbd-purchase-orders.d.ts.map +1 -1
- package/tools/qbd/receive-payments/create-qbd-receive-payments.d.mts +4 -0
- package/tools/qbd/receive-payments/create-qbd-receive-payments.d.mts.map +1 -1
- package/tools/qbd/receive-payments/create-qbd-receive-payments.d.ts +4 -0
- package/tools/qbd/receive-payments/create-qbd-receive-payments.d.ts.map +1 -1
- package/tools/qbd/receive-payments/delete-qbd-receive-payments.d.mts +4 -0
- package/tools/qbd/receive-payments/delete-qbd-receive-payments.d.mts.map +1 -1
- package/tools/qbd/receive-payments/delete-qbd-receive-payments.d.ts +4 -0
- package/tools/qbd/receive-payments/delete-qbd-receive-payments.d.ts.map +1 -1
- package/tools/qbd/receive-payments/list-qbd-receive-payments.d.mts +4 -0
- package/tools/qbd/receive-payments/list-qbd-receive-payments.d.mts.map +1 -1
- package/tools/qbd/receive-payments/list-qbd-receive-payments.d.ts +4 -0
- package/tools/qbd/receive-payments/list-qbd-receive-payments.d.ts.map +1 -1
- package/tools/qbd/receive-payments/list-qbd-receive-payments.js +3 -3
- package/tools/qbd/receive-payments/list-qbd-receive-payments.js.map +1 -1
- package/tools/qbd/receive-payments/list-qbd-receive-payments.mjs +3 -3
- package/tools/qbd/receive-payments/list-qbd-receive-payments.mjs.map +1 -1
- package/tools/qbd/receive-payments/retrieve-qbd-receive-payments.d.mts +4 -0
- package/tools/qbd/receive-payments/retrieve-qbd-receive-payments.d.mts.map +1 -1
- package/tools/qbd/receive-payments/retrieve-qbd-receive-payments.d.ts +4 -0
- package/tools/qbd/receive-payments/retrieve-qbd-receive-payments.d.ts.map +1 -1
- package/tools/qbd/receive-payments/update-qbd-receive-payments.d.mts +4 -0
- package/tools/qbd/receive-payments/update-qbd-receive-payments.d.mts.map +1 -1
- package/tools/qbd/receive-payments/update-qbd-receive-payments.d.ts +4 -0
- package/tools/qbd/receive-payments/update-qbd-receive-payments.d.ts.map +1 -1
- package/tools/qbd/sales-orders/create-qbd-sales-orders.d.mts +4 -0
- package/tools/qbd/sales-orders/create-qbd-sales-orders.d.mts.map +1 -1
- package/tools/qbd/sales-orders/create-qbd-sales-orders.d.ts +4 -0
- package/tools/qbd/sales-orders/create-qbd-sales-orders.d.ts.map +1 -1
- package/tools/qbd/sales-orders/delete-qbd-sales-orders.d.mts +4 -0
- package/tools/qbd/sales-orders/delete-qbd-sales-orders.d.mts.map +1 -1
- package/tools/qbd/sales-orders/delete-qbd-sales-orders.d.ts +4 -0
- package/tools/qbd/sales-orders/delete-qbd-sales-orders.d.ts.map +1 -1
- package/tools/qbd/sales-orders/list-qbd-sales-orders.d.mts +4 -0
- package/tools/qbd/sales-orders/list-qbd-sales-orders.d.mts.map +1 -1
- package/tools/qbd/sales-orders/list-qbd-sales-orders.d.ts +4 -0
- package/tools/qbd/sales-orders/list-qbd-sales-orders.d.ts.map +1 -1
- package/tools/qbd/sales-orders/list-qbd-sales-orders.js +3 -3
- package/tools/qbd/sales-orders/list-qbd-sales-orders.js.map +1 -1
- package/tools/qbd/sales-orders/list-qbd-sales-orders.mjs +3 -3
- package/tools/qbd/sales-orders/list-qbd-sales-orders.mjs.map +1 -1
- package/tools/qbd/sales-orders/retrieve-qbd-sales-orders.d.mts +4 -0
- package/tools/qbd/sales-orders/retrieve-qbd-sales-orders.d.mts.map +1 -1
- package/tools/qbd/sales-orders/retrieve-qbd-sales-orders.d.ts +4 -0
- package/tools/qbd/sales-orders/retrieve-qbd-sales-orders.d.ts.map +1 -1
- package/tools/qbd/sales-orders/update-qbd-sales-orders.d.mts +4 -0
- package/tools/qbd/sales-orders/update-qbd-sales-orders.d.mts.map +1 -1
- package/tools/qbd/sales-orders/update-qbd-sales-orders.d.ts +4 -0
- package/tools/qbd/sales-orders/update-qbd-sales-orders.d.ts.map +1 -1
- package/tools/qbd/sales-receipts/create-qbd-sales-receipts.d.mts +4 -0
- package/tools/qbd/sales-receipts/create-qbd-sales-receipts.d.mts.map +1 -1
- package/tools/qbd/sales-receipts/create-qbd-sales-receipts.d.ts +4 -0
- package/tools/qbd/sales-receipts/create-qbd-sales-receipts.d.ts.map +1 -1
- package/tools/qbd/sales-receipts/delete-qbd-sales-receipts.d.mts +4 -0
- package/tools/qbd/sales-receipts/delete-qbd-sales-receipts.d.mts.map +1 -1
- package/tools/qbd/sales-receipts/delete-qbd-sales-receipts.d.ts +4 -0
- package/tools/qbd/sales-receipts/delete-qbd-sales-receipts.d.ts.map +1 -1
- package/tools/qbd/sales-receipts/list-qbd-sales-receipts.d.mts +4 -0
- package/tools/qbd/sales-receipts/list-qbd-sales-receipts.d.mts.map +1 -1
- package/tools/qbd/sales-receipts/list-qbd-sales-receipts.d.ts +4 -0
- package/tools/qbd/sales-receipts/list-qbd-sales-receipts.d.ts.map +1 -1
- package/tools/qbd/sales-receipts/list-qbd-sales-receipts.js +3 -3
- package/tools/qbd/sales-receipts/list-qbd-sales-receipts.js.map +1 -1
- package/tools/qbd/sales-receipts/list-qbd-sales-receipts.mjs +3 -3
- package/tools/qbd/sales-receipts/list-qbd-sales-receipts.mjs.map +1 -1
- package/tools/qbd/sales-receipts/retrieve-qbd-sales-receipts.d.mts +4 -0
- package/tools/qbd/sales-receipts/retrieve-qbd-sales-receipts.d.mts.map +1 -1
- package/tools/qbd/sales-receipts/retrieve-qbd-sales-receipts.d.ts +4 -0
- package/tools/qbd/sales-receipts/retrieve-qbd-sales-receipts.d.ts.map +1 -1
- package/tools/qbd/sales-receipts/update-qbd-sales-receipts.d.mts +4 -0
- package/tools/qbd/sales-receipts/update-qbd-sales-receipts.d.mts.map +1 -1
- package/tools/qbd/sales-receipts/update-qbd-sales-receipts.d.ts +4 -0
- package/tools/qbd/sales-receipts/update-qbd-sales-receipts.d.ts.map +1 -1
- package/tools/qbd/sales-representatives/create-qbd-sales-representatives.d.mts +4 -0
- package/tools/qbd/sales-representatives/create-qbd-sales-representatives.d.mts.map +1 -1
- package/tools/qbd/sales-representatives/create-qbd-sales-representatives.d.ts +4 -0
- package/tools/qbd/sales-representatives/create-qbd-sales-representatives.d.ts.map +1 -1
- package/tools/qbd/sales-representatives/list-qbd-sales-representatives.d.mts +4 -0
- package/tools/qbd/sales-representatives/list-qbd-sales-representatives.d.mts.map +1 -1
- package/tools/qbd/sales-representatives/list-qbd-sales-representatives.d.ts +4 -0
- package/tools/qbd/sales-representatives/list-qbd-sales-representatives.d.ts.map +1 -1
- package/tools/qbd/sales-representatives/list-qbd-sales-representatives.js +3 -3
- package/tools/qbd/sales-representatives/list-qbd-sales-representatives.js.map +1 -1
- package/tools/qbd/sales-representatives/list-qbd-sales-representatives.mjs +3 -3
- package/tools/qbd/sales-representatives/list-qbd-sales-representatives.mjs.map +1 -1
- package/tools/qbd/sales-representatives/retrieve-qbd-sales-representatives.d.mts +4 -0
- package/tools/qbd/sales-representatives/retrieve-qbd-sales-representatives.d.mts.map +1 -1
- package/tools/qbd/sales-representatives/retrieve-qbd-sales-representatives.d.ts +4 -0
- package/tools/qbd/sales-representatives/retrieve-qbd-sales-representatives.d.ts.map +1 -1
- package/tools/qbd/sales-representatives/update-qbd-sales-representatives.d.mts +4 -0
- package/tools/qbd/sales-representatives/update-qbd-sales-representatives.d.mts.map +1 -1
- package/tools/qbd/sales-representatives/update-qbd-sales-representatives.d.ts +4 -0
- package/tools/qbd/sales-representatives/update-qbd-sales-representatives.d.ts.map +1 -1
- package/tools/qbd/sales-tax-codes/create-qbd-sales-tax-codes.d.mts +4 -0
- package/tools/qbd/sales-tax-codes/create-qbd-sales-tax-codes.d.mts.map +1 -1
- package/tools/qbd/sales-tax-codes/create-qbd-sales-tax-codes.d.ts +4 -0
- package/tools/qbd/sales-tax-codes/create-qbd-sales-tax-codes.d.ts.map +1 -1
- package/tools/qbd/sales-tax-codes/list-qbd-sales-tax-codes.d.mts +4 -0
- package/tools/qbd/sales-tax-codes/list-qbd-sales-tax-codes.d.mts.map +1 -1
- package/tools/qbd/sales-tax-codes/list-qbd-sales-tax-codes.d.ts +4 -0
- package/tools/qbd/sales-tax-codes/list-qbd-sales-tax-codes.d.ts.map +1 -1
- package/tools/qbd/sales-tax-codes/list-qbd-sales-tax-codes.js +3 -3
- package/tools/qbd/sales-tax-codes/list-qbd-sales-tax-codes.js.map +1 -1
- package/tools/qbd/sales-tax-codes/list-qbd-sales-tax-codes.mjs +3 -3
- package/tools/qbd/sales-tax-codes/list-qbd-sales-tax-codes.mjs.map +1 -1
- package/tools/qbd/sales-tax-codes/retrieve-qbd-sales-tax-codes.d.mts +4 -0
- package/tools/qbd/sales-tax-codes/retrieve-qbd-sales-tax-codes.d.mts.map +1 -1
- package/tools/qbd/sales-tax-codes/retrieve-qbd-sales-tax-codes.d.ts +4 -0
- package/tools/qbd/sales-tax-codes/retrieve-qbd-sales-tax-codes.d.ts.map +1 -1
- package/tools/qbd/sales-tax-codes/update-qbd-sales-tax-codes.d.mts +4 -0
- package/tools/qbd/sales-tax-codes/update-qbd-sales-tax-codes.d.mts.map +1 -1
- package/tools/qbd/sales-tax-codes/update-qbd-sales-tax-codes.d.ts +4 -0
- package/tools/qbd/sales-tax-codes/update-qbd-sales-tax-codes.d.ts.map +1 -1
- package/tools/qbd/sales-tax-items/create-qbd-sales-tax-items.d.mts +4 -0
- package/tools/qbd/sales-tax-items/create-qbd-sales-tax-items.d.mts.map +1 -1
- package/tools/qbd/sales-tax-items/create-qbd-sales-tax-items.d.ts +4 -0
- package/tools/qbd/sales-tax-items/create-qbd-sales-tax-items.d.ts.map +1 -1
- package/tools/qbd/sales-tax-items/list-qbd-sales-tax-items.d.mts +4 -0
- package/tools/qbd/sales-tax-items/list-qbd-sales-tax-items.d.mts.map +1 -1
- package/tools/qbd/sales-tax-items/list-qbd-sales-tax-items.d.ts +4 -0
- package/tools/qbd/sales-tax-items/list-qbd-sales-tax-items.d.ts.map +1 -1
- package/tools/qbd/sales-tax-items/list-qbd-sales-tax-items.js +3 -3
- package/tools/qbd/sales-tax-items/list-qbd-sales-tax-items.js.map +1 -1
- package/tools/qbd/sales-tax-items/list-qbd-sales-tax-items.mjs +3 -3
- package/tools/qbd/sales-tax-items/list-qbd-sales-tax-items.mjs.map +1 -1
- package/tools/qbd/sales-tax-items/retrieve-qbd-sales-tax-items.d.mts +4 -0
- package/tools/qbd/sales-tax-items/retrieve-qbd-sales-tax-items.d.mts.map +1 -1
- package/tools/qbd/sales-tax-items/retrieve-qbd-sales-tax-items.d.ts +4 -0
- package/tools/qbd/sales-tax-items/retrieve-qbd-sales-tax-items.d.ts.map +1 -1
- package/tools/qbd/sales-tax-items/update-qbd-sales-tax-items.d.mts +4 -0
- package/tools/qbd/sales-tax-items/update-qbd-sales-tax-items.d.mts.map +1 -1
- package/tools/qbd/sales-tax-items/update-qbd-sales-tax-items.d.ts +4 -0
- package/tools/qbd/sales-tax-items/update-qbd-sales-tax-items.d.ts.map +1 -1
- package/tools/qbd/service-items/create-qbd-service-items.d.mts +4 -0
- package/tools/qbd/service-items/create-qbd-service-items.d.mts.map +1 -1
- package/tools/qbd/service-items/create-qbd-service-items.d.ts +4 -0
- package/tools/qbd/service-items/create-qbd-service-items.d.ts.map +1 -1
- package/tools/qbd/service-items/list-qbd-service-items.d.mts +4 -0
- package/tools/qbd/service-items/list-qbd-service-items.d.mts.map +1 -1
- package/tools/qbd/service-items/list-qbd-service-items.d.ts +4 -0
- package/tools/qbd/service-items/list-qbd-service-items.d.ts.map +1 -1
- package/tools/qbd/service-items/list-qbd-service-items.js +3 -3
- package/tools/qbd/service-items/list-qbd-service-items.js.map +1 -1
- package/tools/qbd/service-items/list-qbd-service-items.mjs +3 -3
- package/tools/qbd/service-items/list-qbd-service-items.mjs.map +1 -1
- package/tools/qbd/service-items/retrieve-qbd-service-items.d.mts +4 -0
- package/tools/qbd/service-items/retrieve-qbd-service-items.d.mts.map +1 -1
- package/tools/qbd/service-items/retrieve-qbd-service-items.d.ts +4 -0
- package/tools/qbd/service-items/retrieve-qbd-service-items.d.ts.map +1 -1
- package/tools/qbd/service-items/update-qbd-service-items.d.mts +4 -0
- package/tools/qbd/service-items/update-qbd-service-items.d.mts.map +1 -1
- package/tools/qbd/service-items/update-qbd-service-items.d.ts +4 -0
- package/tools/qbd/service-items/update-qbd-service-items.d.ts.map +1 -1
- package/tools/qbd/standard-terms/create-qbd-standard-terms.d.mts +4 -0
- package/tools/qbd/standard-terms/create-qbd-standard-terms.d.mts.map +1 -1
- package/tools/qbd/standard-terms/create-qbd-standard-terms.d.ts +4 -0
- package/tools/qbd/standard-terms/create-qbd-standard-terms.d.ts.map +1 -1
- package/tools/qbd/standard-terms/list-qbd-standard-terms.d.mts +4 -0
- package/tools/qbd/standard-terms/list-qbd-standard-terms.d.mts.map +1 -1
- package/tools/qbd/standard-terms/list-qbd-standard-terms.d.ts +4 -0
- package/tools/qbd/standard-terms/list-qbd-standard-terms.d.ts.map +1 -1
- package/tools/qbd/standard-terms/list-qbd-standard-terms.js +3 -3
- package/tools/qbd/standard-terms/list-qbd-standard-terms.js.map +1 -1
- package/tools/qbd/standard-terms/list-qbd-standard-terms.mjs +3 -3
- package/tools/qbd/standard-terms/list-qbd-standard-terms.mjs.map +1 -1
- package/tools/qbd/standard-terms/retrieve-qbd-standard-terms.d.mts +4 -0
- package/tools/qbd/standard-terms/retrieve-qbd-standard-terms.d.mts.map +1 -1
- package/tools/qbd/standard-terms/retrieve-qbd-standard-terms.d.ts +4 -0
- package/tools/qbd/standard-terms/retrieve-qbd-standard-terms.d.ts.map +1 -1
- package/tools/qbd/subtotal-items/create-qbd-subtotal-items.d.mts +4 -0
- package/tools/qbd/subtotal-items/create-qbd-subtotal-items.d.mts.map +1 -1
- package/tools/qbd/subtotal-items/create-qbd-subtotal-items.d.ts +4 -0
- package/tools/qbd/subtotal-items/create-qbd-subtotal-items.d.ts.map +1 -1
- package/tools/qbd/subtotal-items/list-qbd-subtotal-items.d.mts +4 -0
- package/tools/qbd/subtotal-items/list-qbd-subtotal-items.d.mts.map +1 -1
- package/tools/qbd/subtotal-items/list-qbd-subtotal-items.d.ts +4 -0
- package/tools/qbd/subtotal-items/list-qbd-subtotal-items.d.ts.map +1 -1
- package/tools/qbd/subtotal-items/list-qbd-subtotal-items.js +3 -3
- package/tools/qbd/subtotal-items/list-qbd-subtotal-items.js.map +1 -1
- package/tools/qbd/subtotal-items/list-qbd-subtotal-items.mjs +3 -3
- package/tools/qbd/subtotal-items/list-qbd-subtotal-items.mjs.map +1 -1
- package/tools/qbd/subtotal-items/retrieve-qbd-subtotal-items.d.mts +4 -0
- package/tools/qbd/subtotal-items/retrieve-qbd-subtotal-items.d.mts.map +1 -1
- package/tools/qbd/subtotal-items/retrieve-qbd-subtotal-items.d.ts +4 -0
- package/tools/qbd/subtotal-items/retrieve-qbd-subtotal-items.d.ts.map +1 -1
- package/tools/qbd/subtotal-items/update-qbd-subtotal-items.d.mts +4 -0
- package/tools/qbd/subtotal-items/update-qbd-subtotal-items.d.mts.map +1 -1
- package/tools/qbd/subtotal-items/update-qbd-subtotal-items.d.ts +4 -0
- package/tools/qbd/subtotal-items/update-qbd-subtotal-items.d.ts.map +1 -1
- package/tools/qbd/time-tracking-activities/create-qbd-time-tracking-activities.d.mts +4 -0
- package/tools/qbd/time-tracking-activities/create-qbd-time-tracking-activities.d.mts.map +1 -1
- package/tools/qbd/time-tracking-activities/create-qbd-time-tracking-activities.d.ts +4 -0
- package/tools/qbd/time-tracking-activities/create-qbd-time-tracking-activities.d.ts.map +1 -1
- package/tools/qbd/time-tracking-activities/delete-qbd-time-tracking-activities.d.mts +4 -0
- package/tools/qbd/time-tracking-activities/delete-qbd-time-tracking-activities.d.mts.map +1 -1
- package/tools/qbd/time-tracking-activities/delete-qbd-time-tracking-activities.d.ts +4 -0
- package/tools/qbd/time-tracking-activities/delete-qbd-time-tracking-activities.d.ts.map +1 -1
- package/tools/qbd/time-tracking-activities/list-qbd-time-tracking-activities.d.mts +4 -0
- package/tools/qbd/time-tracking-activities/list-qbd-time-tracking-activities.d.mts.map +1 -1
- package/tools/qbd/time-tracking-activities/list-qbd-time-tracking-activities.d.ts +4 -0
- package/tools/qbd/time-tracking-activities/list-qbd-time-tracking-activities.d.ts.map +1 -1
- package/tools/qbd/time-tracking-activities/retrieve-qbd-time-tracking-activities.d.mts +4 -0
- package/tools/qbd/time-tracking-activities/retrieve-qbd-time-tracking-activities.d.mts.map +1 -1
- package/tools/qbd/time-tracking-activities/retrieve-qbd-time-tracking-activities.d.ts +4 -0
- package/tools/qbd/time-tracking-activities/retrieve-qbd-time-tracking-activities.d.ts.map +1 -1
- package/tools/qbd/time-tracking-activities/update-qbd-time-tracking-activities.d.mts +4 -0
- package/tools/qbd/time-tracking-activities/update-qbd-time-tracking-activities.d.mts.map +1 -1
- package/tools/qbd/time-tracking-activities/update-qbd-time-tracking-activities.d.ts +4 -0
- package/tools/qbd/time-tracking-activities/update-qbd-time-tracking-activities.d.ts.map +1 -1
- package/tools/qbd/transactions/list-qbd-transactions.d.mts +4 -0
- package/tools/qbd/transactions/list-qbd-transactions.d.mts.map +1 -1
- package/tools/qbd/transactions/list-qbd-transactions.d.ts +4 -0
- package/tools/qbd/transactions/list-qbd-transactions.d.ts.map +1 -1
- package/tools/qbd/transactions/list-qbd-transactions.js +3 -3
- package/tools/qbd/transactions/list-qbd-transactions.js.map +1 -1
- package/tools/qbd/transactions/list-qbd-transactions.mjs +3 -3
- package/tools/qbd/transactions/list-qbd-transactions.mjs.map +1 -1
- package/tools/qbd/transactions/retrieve-qbd-transactions.d.mts +4 -0
- package/tools/qbd/transactions/retrieve-qbd-transactions.d.mts.map +1 -1
- package/tools/qbd/transactions/retrieve-qbd-transactions.d.ts +4 -0
- package/tools/qbd/transactions/retrieve-qbd-transactions.d.ts.map +1 -1
- package/tools/qbd/transfers/create-qbd-transfers.d.mts +4 -0
- package/tools/qbd/transfers/create-qbd-transfers.d.mts.map +1 -1
- package/tools/qbd/transfers/create-qbd-transfers.d.ts +4 -0
- package/tools/qbd/transfers/create-qbd-transfers.d.ts.map +1 -1
- package/tools/qbd/transfers/list-qbd-transfers.d.mts +4 -0
- package/tools/qbd/transfers/list-qbd-transfers.d.mts.map +1 -1
- package/tools/qbd/transfers/list-qbd-transfers.d.ts +4 -0
- package/tools/qbd/transfers/list-qbd-transfers.d.ts.map +1 -1
- package/tools/qbd/transfers/retrieve-qbd-transfers.d.mts +4 -0
- package/tools/qbd/transfers/retrieve-qbd-transfers.d.mts.map +1 -1
- package/tools/qbd/transfers/retrieve-qbd-transfers.d.ts +4 -0
- package/tools/qbd/transfers/retrieve-qbd-transfers.d.ts.map +1 -1
- package/tools/qbd/transfers/update-qbd-transfers.d.mts +4 -0
- package/tools/qbd/transfers/update-qbd-transfers.d.mts.map +1 -1
- package/tools/qbd/transfers/update-qbd-transfers.d.ts +4 -0
- package/tools/qbd/transfers/update-qbd-transfers.d.ts.map +1 -1
- package/tools/qbd/vendor-credits/create-qbd-vendor-credits.d.mts +4 -0
- package/tools/qbd/vendor-credits/create-qbd-vendor-credits.d.mts.map +1 -1
- package/tools/qbd/vendor-credits/create-qbd-vendor-credits.d.ts +4 -0
- package/tools/qbd/vendor-credits/create-qbd-vendor-credits.d.ts.map +1 -1
- package/tools/qbd/vendor-credits/delete-qbd-vendor-credits.d.mts +4 -0
- package/tools/qbd/vendor-credits/delete-qbd-vendor-credits.d.mts.map +1 -1
- package/tools/qbd/vendor-credits/delete-qbd-vendor-credits.d.ts +4 -0
- package/tools/qbd/vendor-credits/delete-qbd-vendor-credits.d.ts.map +1 -1
- package/tools/qbd/vendor-credits/list-qbd-vendor-credits.d.mts +4 -0
- package/tools/qbd/vendor-credits/list-qbd-vendor-credits.d.mts.map +1 -1
- package/tools/qbd/vendor-credits/list-qbd-vendor-credits.d.ts +4 -0
- package/tools/qbd/vendor-credits/list-qbd-vendor-credits.d.ts.map +1 -1
- package/tools/qbd/vendor-credits/list-qbd-vendor-credits.js +3 -3
- package/tools/qbd/vendor-credits/list-qbd-vendor-credits.js.map +1 -1
- package/tools/qbd/vendor-credits/list-qbd-vendor-credits.mjs +3 -3
- package/tools/qbd/vendor-credits/list-qbd-vendor-credits.mjs.map +1 -1
- package/tools/qbd/vendor-credits/retrieve-qbd-vendor-credits.d.mts +4 -0
- package/tools/qbd/vendor-credits/retrieve-qbd-vendor-credits.d.mts.map +1 -1
- package/tools/qbd/vendor-credits/retrieve-qbd-vendor-credits.d.ts +4 -0
- package/tools/qbd/vendor-credits/retrieve-qbd-vendor-credits.d.ts.map +1 -1
- package/tools/qbd/vendor-credits/update-qbd-vendor-credits.d.mts +4 -0
- package/tools/qbd/vendor-credits/update-qbd-vendor-credits.d.mts.map +1 -1
- package/tools/qbd/vendor-credits/update-qbd-vendor-credits.d.ts +4 -0
- package/tools/qbd/vendor-credits/update-qbd-vendor-credits.d.ts.map +1 -1
- package/tools/qbd/vendors/create-qbd-vendors.d.mts +4 -0
- package/tools/qbd/vendors/create-qbd-vendors.d.mts.map +1 -1
- package/tools/qbd/vendors/create-qbd-vendors.d.ts +4 -0
- package/tools/qbd/vendors/create-qbd-vendors.d.ts.map +1 -1
- package/tools/qbd/vendors/list-qbd-vendors.d.mts +4 -0
- package/tools/qbd/vendors/list-qbd-vendors.d.mts.map +1 -1
- package/tools/qbd/vendors/list-qbd-vendors.d.ts +4 -0
- package/tools/qbd/vendors/list-qbd-vendors.d.ts.map +1 -1
- package/tools/qbd/vendors/list-qbd-vendors.js +3 -3
- package/tools/qbd/vendors/list-qbd-vendors.js.map +1 -1
- package/tools/qbd/vendors/list-qbd-vendors.mjs +3 -3
- package/tools/qbd/vendors/list-qbd-vendors.mjs.map +1 -1
- package/tools/qbd/vendors/retrieve-qbd-vendors.d.mts +4 -0
- package/tools/qbd/vendors/retrieve-qbd-vendors.d.mts.map +1 -1
- package/tools/qbd/vendors/retrieve-qbd-vendors.d.ts +4 -0
- package/tools/qbd/vendors/retrieve-qbd-vendors.d.ts.map +1 -1
- package/tools/qbd/vendors/update-qbd-vendors.d.mts +4 -0
- package/tools/qbd/vendors/update-qbd-vendors.d.mts.map +1 -1
- package/tools/qbd/vendors/update-qbd-vendors.d.ts +4 -0
- package/tools/qbd/vendors/update-qbd-vendors.d.ts.map +1 -1
|
@@ -17,6 +17,7 @@ declare const _default: {
|
|
|
17
17
|
} | undefined;
|
|
18
18
|
required?: string[] | undefined;
|
|
19
19
|
};
|
|
20
|
+
title?: string | undefined;
|
|
20
21
|
description?: string | undefined;
|
|
21
22
|
outputSchema?: {
|
|
22
23
|
[x: string]: unknown;
|
|
@@ -34,6 +35,9 @@ declare const _default: {
|
|
|
34
35
|
idempotentHint?: boolean | undefined;
|
|
35
36
|
openWorldHint?: boolean | undefined;
|
|
36
37
|
} | undefined;
|
|
38
|
+
_meta?: {
|
|
39
|
+
[x: string]: unknown;
|
|
40
|
+
} | undefined;
|
|
37
41
|
};
|
|
38
42
|
handler: (conductor: Conductor, args: Record<string, unknown> | undefined) => Promise<import("conductor-node-mcp/tools/types").ToolCallResult>;
|
|
39
43
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list-qbd-bills.d.mts","sourceRoot":"","sources":["../../../src/tools/qbd/bills/list-qbd-bills.ts"],"names":[],"mappings":"OAIO,EAAE,IAAI,EAAE,MAAM,oCAAoC;OAClD,KAAK,EAAE,QAAQ,EAAE;OACjB,SAAS,MAAM,gBAAgB;AAEtC,eAAO,MAAM,QAAQ,EAAE,QAMtB,CAAC;AAEF,eAAO,MAAM,IAAI,EAAE,IAyHlB,CAAC;AAEF,eAAO,MAAM,OAAO,GAAU,WAAW,SAAS,EAAE,MAAM,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS,qEAG5F,CAAC
|
|
1
|
+
{"version":3,"file":"list-qbd-bills.d.mts","sourceRoot":"","sources":["../../../src/tools/qbd/bills/list-qbd-bills.ts"],"names":[],"mappings":"OAIO,EAAE,IAAI,EAAE,MAAM,oCAAoC;OAClD,KAAK,EAAE,QAAQ,EAAE;OACjB,SAAS,MAAM,gBAAgB;AAEtC,eAAO,MAAM,QAAQ,EAAE,QAMtB,CAAC;AAEF,eAAO,MAAM,IAAI,EAAE,IAyHlB,CAAC;AAEF,eAAO,MAAM,OAAO,GAAU,WAAW,SAAS,EAAE,MAAM,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS,qEAG5F,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;yBAHuC,SAAS,QAAQ,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS;;AAK7F,wBAA2C"}
|
|
@@ -17,6 +17,7 @@ declare const _default: {
|
|
|
17
17
|
} | undefined;
|
|
18
18
|
required?: string[] | undefined;
|
|
19
19
|
};
|
|
20
|
+
title?: string | undefined;
|
|
20
21
|
description?: string | undefined;
|
|
21
22
|
outputSchema?: {
|
|
22
23
|
[x: string]: unknown;
|
|
@@ -34,6 +35,9 @@ declare const _default: {
|
|
|
34
35
|
idempotentHint?: boolean | undefined;
|
|
35
36
|
openWorldHint?: boolean | undefined;
|
|
36
37
|
} | undefined;
|
|
38
|
+
_meta?: {
|
|
39
|
+
[x: string]: unknown;
|
|
40
|
+
} | undefined;
|
|
37
41
|
};
|
|
38
42
|
handler: (conductor: Conductor, args: Record<string, unknown> | undefined) => Promise<import("conductor-node-mcp/tools/types").ToolCallResult>;
|
|
39
43
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list-qbd-bills.d.ts","sourceRoot":"","sources":["../../../src/tools/qbd/bills/list-qbd-bills.ts"],"names":[],"mappings":"OAIO,EAAE,IAAI,EAAE,MAAM,oCAAoC;OAClD,KAAK,EAAE,QAAQ,EAAE;OACjB,SAAS,MAAM,gBAAgB;AAEtC,eAAO,MAAM,QAAQ,EAAE,QAMtB,CAAC;AAEF,eAAO,MAAM,IAAI,EAAE,IAyHlB,CAAC;AAEF,eAAO,MAAM,OAAO,GAAU,WAAW,SAAS,EAAE,MAAM,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS,qEAG5F,CAAC
|
|
1
|
+
{"version":3,"file":"list-qbd-bills.d.ts","sourceRoot":"","sources":["../../../src/tools/qbd/bills/list-qbd-bills.ts"],"names":[],"mappings":"OAIO,EAAE,IAAI,EAAE,MAAM,oCAAoC;OAClD,KAAK,EAAE,QAAQ,EAAE;OACjB,SAAS,MAAM,gBAAgB;AAEtC,eAAO,MAAM,QAAQ,EAAE,QAMtB,CAAC;AAEF,eAAO,MAAM,IAAI,EAAE,IAyHlB,CAAC;AAEF,eAAO,MAAM,OAAO,GAAU,WAAW,SAAS,EAAE,MAAM,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS,qEAG5F,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;yBAHuC,SAAS,QAAQ,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS;;AAK7F,wBAA2C"}
|
|
@@ -64,11 +64,11 @@ exports.tool = {
|
|
|
64
64
|
},
|
|
65
65
|
refNumberContains: {
|
|
66
66
|
type: 'string',
|
|
67
|
-
description: 'Filter for bills whose `refNumber` contains this substring
|
|
67
|
+
description: 'Filter for bills whose `refNumber` contains this substring.\n\n**NOTE**: If you use this parameter, you cannot also use `refNumberStartsWith` or `refNumberEndsWith`.',
|
|
68
68
|
},
|
|
69
69
|
refNumberEndsWith: {
|
|
70
70
|
type: 'string',
|
|
71
|
-
description: 'Filter for bills whose `refNumber` ends with this substring
|
|
71
|
+
description: 'Filter for bills whose `refNumber` ends with this substring.\n\n**NOTE**: If you use this parameter, you cannot also use `refNumberContains` or `refNumberStartsWith`.',
|
|
72
72
|
},
|
|
73
73
|
refNumberFrom: {
|
|
74
74
|
type: 'string',
|
|
@@ -83,7 +83,7 @@ exports.tool = {
|
|
|
83
83
|
},
|
|
84
84
|
refNumberStartsWith: {
|
|
85
85
|
type: 'string',
|
|
86
|
-
description: 'Filter for bills whose `refNumber` starts with this substring
|
|
86
|
+
description: 'Filter for bills whose `refNumber` starts with this substring.\n\n**NOTE**: If you use this parameter, you cannot also use `refNumberContains` or `refNumberEndsWith`.',
|
|
87
87
|
},
|
|
88
88
|
refNumberTo: {
|
|
89
89
|
type: 'string',
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list-qbd-bills.js","sourceRoot":"","sources":["../../../src/tools/qbd/bills/list-qbd-bills.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,0DAAqE;AAMxD,QAAA,QAAQ,GAAa;IAChC,QAAQ,EAAE,WAAW;IACrB,SAAS,EAAE,MAAM;IACjB,IAAI,EAAE,EAAE;IACR,UAAU,EAAE,KAAK;IACjB,QAAQ,EAAE,2BAA2B;CACtC,CAAC;AAEW,QAAA,IAAI,GAAS;IACxB,IAAI,EAAE,gBAAgB;IACtB,WAAW,EAAE,sFAAsF;IACnG,WAAW,EAAE;QACX,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE;YACV,uBAAuB,EAAE;gBACvB,IAAI,EAAE,QAAQ;gBACd,WAAW,EACT,mGAAmG;aACtG;YACD,UAAU,EAAE;gBACV,IAAI,EAAE,OAAO;gBACb,WAAW,EAAE,kDAAkD;gBAC/D,KAAK,EAAE;oBACL,IAAI,EAAE,QAAQ;iBACf;aACF;YACD,WAAW,EAAE;gBACX,IAAI,EAAE,OAAO;gBACb,WAAW,EAAE,uCAAuC;gBACpD,KAAK,EAAE;oBACL,IAAI,EAAE,QAAQ;iBACf;aACF;YACD,MAAM,EAAE;gBACN,IAAI,EAAE,QAAQ;gBACd,WAAW,EACT,gPAAgP;aACnP;YACD,GAAG,EAAE;gBACH,IAAI,EAAE,OAAO;gBACb,WAAW,EACT,oTAAoT;gBACtT,KAAK,EAAE;oBACL,IAAI,EAAE,QAAQ;iBACf;aACF;YACD,gBAAgB,EAAE;gBAChB,IAAI,EAAE,SAAS;gBACf,WAAW,EAAE,oEAAoE;aAClF;YACD,yBAAyB,EAAE;gBACzB,IAAI,EAAE,SAAS;gBACf,WAAW,EACT,uIAAuI;aAC1I;YACD,KAAK,EAAE;gBACL,IAAI,EAAE,SAAS;gBACf,WAAW,EACT,gZAAgZ;aACnZ;YACD,aAAa,EAAE;gBACb,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,oDAAoD;gBACjE,IAAI,EAAE,CAAC,KAAK,EAAE,MAAM,EAAE,UAAU,CAAC;aAClC;YACD,iBAAiB,EAAE;gBACjB,IAAI,EAAE,QAAQ;gBACd,WAAW,EACT,
|
|
1
|
+
{"version":3,"file":"list-qbd-bills.js","sourceRoot":"","sources":["../../../src/tools/qbd/bills/list-qbd-bills.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,0DAAqE;AAMxD,QAAA,QAAQ,GAAa;IAChC,QAAQ,EAAE,WAAW;IACrB,SAAS,EAAE,MAAM;IACjB,IAAI,EAAE,EAAE;IACR,UAAU,EAAE,KAAK;IACjB,QAAQ,EAAE,2BAA2B;CACtC,CAAC;AAEW,QAAA,IAAI,GAAS;IACxB,IAAI,EAAE,gBAAgB;IACtB,WAAW,EAAE,sFAAsF;IACnG,WAAW,EAAE;QACX,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE;YACV,uBAAuB,EAAE;gBACvB,IAAI,EAAE,QAAQ;gBACd,WAAW,EACT,mGAAmG;aACtG;YACD,UAAU,EAAE;gBACV,IAAI,EAAE,OAAO;gBACb,WAAW,EAAE,kDAAkD;gBAC/D,KAAK,EAAE;oBACL,IAAI,EAAE,QAAQ;iBACf;aACF;YACD,WAAW,EAAE;gBACX,IAAI,EAAE,OAAO;gBACb,WAAW,EAAE,uCAAuC;gBACpD,KAAK,EAAE;oBACL,IAAI,EAAE,QAAQ;iBACf;aACF;YACD,MAAM,EAAE;gBACN,IAAI,EAAE,QAAQ;gBACd,WAAW,EACT,gPAAgP;aACnP;YACD,GAAG,EAAE;gBACH,IAAI,EAAE,OAAO;gBACb,WAAW,EACT,oTAAoT;gBACtT,KAAK,EAAE;oBACL,IAAI,EAAE,QAAQ;iBACf;aACF;YACD,gBAAgB,EAAE;gBAChB,IAAI,EAAE,SAAS;gBACf,WAAW,EAAE,oEAAoE;aAClF;YACD,yBAAyB,EAAE;gBACzB,IAAI,EAAE,SAAS;gBACf,WAAW,EACT,uIAAuI;aAC1I;YACD,KAAK,EAAE;gBACL,IAAI,EAAE,SAAS;gBACf,WAAW,EACT,gZAAgZ;aACnZ;YACD,aAAa,EAAE;gBACb,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,oDAAoD;gBACjE,IAAI,EAAE,CAAC,KAAK,EAAE,MAAM,EAAE,UAAU,CAAC;aAClC;YACD,iBAAiB,EAAE;gBACjB,IAAI,EAAE,QAAQ;gBACd,WAAW,EACT,uKAAuK;aAC1K;YACD,iBAAiB,EAAE;gBACjB,IAAI,EAAE,QAAQ;gBACd,WAAW,EACT,wKAAwK;aAC3K;YACD,aAAa,EAAE;gBACb,IAAI,EAAE,QAAQ;gBACd,WAAW,EACT,+PAA+P;aAClQ;YACD,UAAU,EAAE;gBACV,IAAI,EAAE,OAAO;gBACb,WAAW,EACT,yZAAyZ;gBAC3Z,KAAK,EAAE;oBACL,IAAI,EAAE,QAAQ;iBACf;aACF;YACD,mBAAmB,EAAE;gBACnB,IAAI,EAAE,QAAQ;gBACd,WAAW,EACT,wKAAwK;aAC3K;YACD,WAAW,EAAE;gBACX,IAAI,EAAE,QAAQ;gBACd,WAAW,EACT,yPAAyP;aAC5P;YACD,mBAAmB,EAAE;gBACnB,IAAI,EAAE,QAAQ;gBACd,WAAW,EACT,gGAAgG;gBAClG,MAAM,EAAE,MAAM;aACf;YACD,iBAAiB,EAAE;gBACjB,IAAI,EAAE,QAAQ;gBACd,WAAW,EACT,iGAAiG;gBACnG,MAAM,EAAE,MAAM;aACf;YACD,YAAY,EAAE;gBACZ,IAAI,EAAE,QAAQ;gBACd,WAAW,EACT,6LAA6L;aAChM;YACD,aAAa,EAAE;gBACb,IAAI,EAAE,QAAQ;gBACd,WAAW,EACT,8LAA8L;aACjM;YACD,SAAS,EAAE;gBACT,IAAI,EAAE,OAAO;gBACb,WAAW,EAAE,+CAA+C;gBAC5D,KAAK,EAAE;oBACL,IAAI,EAAE,QAAQ;iBACf;aACF;SACF;KACF;CACF,CAAC;AAEK,MAAM,OAAO,GAAG,KAAK,EAAE,SAAoB,EAAE,IAAyC,EAAE,EAAE;IAC/F,MAAM,IAAI,GAAG,IAAW,CAAC;IACzB,OAAO,IAAA,2BAAmB,EAAC,MAAM,SAAS,CAAC,GAAG,CAAC,KAAK,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC;AACnE,CAAC,CAAC;AAHW,QAAA,OAAO,WAGlB;AAEF,kBAAe,EAAE,QAAQ,EAAR,gBAAQ,EAAE,IAAI,EAAJ,YAAI,EAAE,OAAO,EAAP,eAAO,EAAE,CAAC"}
|
|
@@ -61,11 +61,11 @@ export const tool = {
|
|
|
61
61
|
},
|
|
62
62
|
refNumberContains: {
|
|
63
63
|
type: 'string',
|
|
64
|
-
description: 'Filter for bills whose `refNumber` contains this substring
|
|
64
|
+
description: 'Filter for bills whose `refNumber` contains this substring.\n\n**NOTE**: If you use this parameter, you cannot also use `refNumberStartsWith` or `refNumberEndsWith`.',
|
|
65
65
|
},
|
|
66
66
|
refNumberEndsWith: {
|
|
67
67
|
type: 'string',
|
|
68
|
-
description: 'Filter for bills whose `refNumber` ends with this substring
|
|
68
|
+
description: 'Filter for bills whose `refNumber` ends with this substring.\n\n**NOTE**: If you use this parameter, you cannot also use `refNumberContains` or `refNumberStartsWith`.',
|
|
69
69
|
},
|
|
70
70
|
refNumberFrom: {
|
|
71
71
|
type: 'string',
|
|
@@ -80,7 +80,7 @@ export const tool = {
|
|
|
80
80
|
},
|
|
81
81
|
refNumberStartsWith: {
|
|
82
82
|
type: 'string',
|
|
83
|
-
description: 'Filter for bills whose `refNumber` starts with this substring
|
|
83
|
+
description: 'Filter for bills whose `refNumber` starts with this substring.\n\n**NOTE**: If you use this parameter, you cannot also use `refNumberContains` or `refNumberEndsWith`.',
|
|
84
84
|
},
|
|
85
85
|
refNumberTo: {
|
|
86
86
|
type: 'string',
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list-qbd-bills.mjs","sourceRoot":"","sources":["../../../src/tools/qbd/bills/list-qbd-bills.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAE/E,EAAE,mBAAmB,EAAE,MAAM,gCAAgC;AAMpE,MAAM,CAAC,MAAM,QAAQ,GAAa;IAChC,QAAQ,EAAE,WAAW;IACrB,SAAS,EAAE,MAAM;IACjB,IAAI,EAAE,EAAE;IACR,UAAU,EAAE,KAAK;IACjB,QAAQ,EAAE,2BAA2B;CACtC,CAAC;AAEF,MAAM,CAAC,MAAM,IAAI,GAAS;IACxB,IAAI,EAAE,gBAAgB;IACtB,WAAW,EAAE,sFAAsF;IACnG,WAAW,EAAE;QACX,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE;YACV,uBAAuB,EAAE;gBACvB,IAAI,EAAE,QAAQ;gBACd,WAAW,EACT,mGAAmG;aACtG;YACD,UAAU,EAAE;gBACV,IAAI,EAAE,OAAO;gBACb,WAAW,EAAE,kDAAkD;gBAC/D,KAAK,EAAE;oBACL,IAAI,EAAE,QAAQ;iBACf;aACF;YACD,WAAW,EAAE;gBACX,IAAI,EAAE,OAAO;gBACb,WAAW,EAAE,uCAAuC;gBACpD,KAAK,EAAE;oBACL,IAAI,EAAE,QAAQ;iBACf;aACF;YACD,MAAM,EAAE;gBACN,IAAI,EAAE,QAAQ;gBACd,WAAW,EACT,gPAAgP;aACnP;YACD,GAAG,EAAE;gBACH,IAAI,EAAE,OAAO;gBACb,WAAW,EACT,oTAAoT;gBACtT,KAAK,EAAE;oBACL,IAAI,EAAE,QAAQ;iBACf;aACF;YACD,gBAAgB,EAAE;gBAChB,IAAI,EAAE,SAAS;gBACf,WAAW,EAAE,oEAAoE;aAClF;YACD,yBAAyB,EAAE;gBACzB,IAAI,EAAE,SAAS;gBACf,WAAW,EACT,uIAAuI;aAC1I;YACD,KAAK,EAAE;gBACL,IAAI,EAAE,SAAS;gBACf,WAAW,EACT,gZAAgZ;aACnZ;YACD,aAAa,EAAE;gBACb,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,oDAAoD;gBACjE,IAAI,EAAE,CAAC,KAAK,EAAE,MAAM,EAAE,UAAU,CAAC;aAClC;YACD,iBAAiB,EAAE;gBACjB,IAAI,EAAE,QAAQ;gBACd,WAAW,EACT,
|
|
1
|
+
{"version":3,"file":"list-qbd-bills.mjs","sourceRoot":"","sources":["../../../src/tools/qbd/bills/list-qbd-bills.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAE/E,EAAE,mBAAmB,EAAE,MAAM,gCAAgC;AAMpE,MAAM,CAAC,MAAM,QAAQ,GAAa;IAChC,QAAQ,EAAE,WAAW;IACrB,SAAS,EAAE,MAAM;IACjB,IAAI,EAAE,EAAE;IACR,UAAU,EAAE,KAAK;IACjB,QAAQ,EAAE,2BAA2B;CACtC,CAAC;AAEF,MAAM,CAAC,MAAM,IAAI,GAAS;IACxB,IAAI,EAAE,gBAAgB;IACtB,WAAW,EAAE,sFAAsF;IACnG,WAAW,EAAE;QACX,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE;YACV,uBAAuB,EAAE;gBACvB,IAAI,EAAE,QAAQ;gBACd,WAAW,EACT,mGAAmG;aACtG;YACD,UAAU,EAAE;gBACV,IAAI,EAAE,OAAO;gBACb,WAAW,EAAE,kDAAkD;gBAC/D,KAAK,EAAE;oBACL,IAAI,EAAE,QAAQ;iBACf;aACF;YACD,WAAW,EAAE;gBACX,IAAI,EAAE,OAAO;gBACb,WAAW,EAAE,uCAAuC;gBACpD,KAAK,EAAE;oBACL,IAAI,EAAE,QAAQ;iBACf;aACF;YACD,MAAM,EAAE;gBACN,IAAI,EAAE,QAAQ;gBACd,WAAW,EACT,gPAAgP;aACnP;YACD,GAAG,EAAE;gBACH,IAAI,EAAE,OAAO;gBACb,WAAW,EACT,oTAAoT;gBACtT,KAAK,EAAE;oBACL,IAAI,EAAE,QAAQ;iBACf;aACF;YACD,gBAAgB,EAAE;gBAChB,IAAI,EAAE,SAAS;gBACf,WAAW,EAAE,oEAAoE;aAClF;YACD,yBAAyB,EAAE;gBACzB,IAAI,EAAE,SAAS;gBACf,WAAW,EACT,uIAAuI;aAC1I;YACD,KAAK,EAAE;gBACL,IAAI,EAAE,SAAS;gBACf,WAAW,EACT,gZAAgZ;aACnZ;YACD,aAAa,EAAE;gBACb,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,oDAAoD;gBACjE,IAAI,EAAE,CAAC,KAAK,EAAE,MAAM,EAAE,UAAU,CAAC;aAClC;YACD,iBAAiB,EAAE;gBACjB,IAAI,EAAE,QAAQ;gBACd,WAAW,EACT,uKAAuK;aAC1K;YACD,iBAAiB,EAAE;gBACjB,IAAI,EAAE,QAAQ;gBACd,WAAW,EACT,wKAAwK;aAC3K;YACD,aAAa,EAAE;gBACb,IAAI,EAAE,QAAQ;gBACd,WAAW,EACT,+PAA+P;aAClQ;YACD,UAAU,EAAE;gBACV,IAAI,EAAE,OAAO;gBACb,WAAW,EACT,yZAAyZ;gBAC3Z,KAAK,EAAE;oBACL,IAAI,EAAE,QAAQ;iBACf;aACF;YACD,mBAAmB,EAAE;gBACnB,IAAI,EAAE,QAAQ;gBACd,WAAW,EACT,wKAAwK;aAC3K;YACD,WAAW,EAAE;gBACX,IAAI,EAAE,QAAQ;gBACd,WAAW,EACT,yPAAyP;aAC5P;YACD,mBAAmB,EAAE;gBACnB,IAAI,EAAE,QAAQ;gBACd,WAAW,EACT,gGAAgG;gBAClG,MAAM,EAAE,MAAM;aACf;YACD,iBAAiB,EAAE;gBACjB,IAAI,EAAE,QAAQ;gBACd,WAAW,EACT,iGAAiG;gBACnG,MAAM,EAAE,MAAM;aACf;YACD,YAAY,EAAE;gBACZ,IAAI,EAAE,QAAQ;gBACd,WAAW,EACT,6LAA6L;aAChM;YACD,aAAa,EAAE;gBACb,IAAI,EAAE,QAAQ;gBACd,WAAW,EACT,8LAA8L;aACjM;YACD,SAAS,EAAE;gBACT,IAAI,EAAE,OAAO;gBACb,WAAW,EAAE,+CAA+C;gBAC5D,KAAK,EAAE;oBACL,IAAI,EAAE,QAAQ;iBACf;aACF;SACF;KACF;CACF,CAAC;AAEF,MAAM,CAAC,MAAM,OAAO,GAAG,KAAK,EAAE,SAAoB,EAAE,IAAyC,EAAE,EAAE;IAC/F,MAAM,IAAI,GAAG,IAAW,CAAC;IACzB,OAAO,mBAAmB,CAAC,MAAM,SAAS,CAAC,GAAG,CAAC,KAAK,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC;AACnE,CAAC,CAAC;AAEF,eAAe,EAAE,QAAQ,EAAE,IAAI,EAAE,OAAO,EAAE,CAAC"}
|
|
@@ -17,6 +17,7 @@ declare const _default: {
|
|
|
17
17
|
} | undefined;
|
|
18
18
|
required?: string[] | undefined;
|
|
19
19
|
};
|
|
20
|
+
title?: string | undefined;
|
|
20
21
|
description?: string | undefined;
|
|
21
22
|
outputSchema?: {
|
|
22
23
|
[x: string]: unknown;
|
|
@@ -34,6 +35,9 @@ declare const _default: {
|
|
|
34
35
|
idempotentHint?: boolean | undefined;
|
|
35
36
|
openWorldHint?: boolean | undefined;
|
|
36
37
|
} | undefined;
|
|
38
|
+
_meta?: {
|
|
39
|
+
[x: string]: unknown;
|
|
40
|
+
} | undefined;
|
|
37
41
|
};
|
|
38
42
|
handler: (conductor: Conductor, args: Record<string, unknown> | undefined) => Promise<import("conductor-node-mcp/tools/types").ToolCallResult>;
|
|
39
43
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"retrieve-qbd-bills.d.mts","sourceRoot":"","sources":["../../../src/tools/qbd/bills/retrieve-qbd-bills.ts"],"names":[],"mappings":"OAIO,EAAE,IAAI,EAAE,MAAM,oCAAoC;OAClD,KAAK,EAAE,QAAQ,EAAE;OACjB,SAAS,MAAM,gBAAgB;AAEtC,eAAO,MAAM,QAAQ,EAAE,QAMtB,CAAC;AAEF,eAAO,MAAM,IAAI,EAAE,IAiBlB,CAAC;AAEF,eAAO,MAAM,OAAO,GAAU,WAAW,SAAS,EAAE,MAAM,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS,qEAG5F,CAAC
|
|
1
|
+
{"version":3,"file":"retrieve-qbd-bills.d.mts","sourceRoot":"","sources":["../../../src/tools/qbd/bills/retrieve-qbd-bills.ts"],"names":[],"mappings":"OAIO,EAAE,IAAI,EAAE,MAAM,oCAAoC;OAClD,KAAK,EAAE,QAAQ,EAAE;OACjB,SAAS,MAAM,gBAAgB;AAEtC,eAAO,MAAM,QAAQ,EAAE,QAMtB,CAAC;AAEF,eAAO,MAAM,IAAI,EAAE,IAiBlB,CAAC;AAEF,eAAO,MAAM,OAAO,GAAU,WAAW,SAAS,EAAE,MAAM,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS,qEAG5F,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;yBAHuC,SAAS,QAAQ,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS;;AAK7F,wBAA2C"}
|
|
@@ -17,6 +17,7 @@ declare const _default: {
|
|
|
17
17
|
} | undefined;
|
|
18
18
|
required?: string[] | undefined;
|
|
19
19
|
};
|
|
20
|
+
title?: string | undefined;
|
|
20
21
|
description?: string | undefined;
|
|
21
22
|
outputSchema?: {
|
|
22
23
|
[x: string]: unknown;
|
|
@@ -34,6 +35,9 @@ declare const _default: {
|
|
|
34
35
|
idempotentHint?: boolean | undefined;
|
|
35
36
|
openWorldHint?: boolean | undefined;
|
|
36
37
|
} | undefined;
|
|
38
|
+
_meta?: {
|
|
39
|
+
[x: string]: unknown;
|
|
40
|
+
} | undefined;
|
|
37
41
|
};
|
|
38
42
|
handler: (conductor: Conductor, args: Record<string, unknown> | undefined) => Promise<import("conductor-node-mcp/tools/types").ToolCallResult>;
|
|
39
43
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"retrieve-qbd-bills.d.ts","sourceRoot":"","sources":["../../../src/tools/qbd/bills/retrieve-qbd-bills.ts"],"names":[],"mappings":"OAIO,EAAE,IAAI,EAAE,MAAM,oCAAoC;OAClD,KAAK,EAAE,QAAQ,EAAE;OACjB,SAAS,MAAM,gBAAgB;AAEtC,eAAO,MAAM,QAAQ,EAAE,QAMtB,CAAC;AAEF,eAAO,MAAM,IAAI,EAAE,IAiBlB,CAAC;AAEF,eAAO,MAAM,OAAO,GAAU,WAAW,SAAS,EAAE,MAAM,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS,qEAG5F,CAAC
|
|
1
|
+
{"version":3,"file":"retrieve-qbd-bills.d.ts","sourceRoot":"","sources":["../../../src/tools/qbd/bills/retrieve-qbd-bills.ts"],"names":[],"mappings":"OAIO,EAAE,IAAI,EAAE,MAAM,oCAAoC;OAClD,KAAK,EAAE,QAAQ,EAAE;OACjB,SAAS,MAAM,gBAAgB;AAEtC,eAAO,MAAM,QAAQ,EAAE,QAMtB,CAAC;AAEF,eAAO,MAAM,IAAI,EAAE,IAiBlB,CAAC;AAEF,eAAO,MAAM,OAAO,GAAU,WAAW,SAAS,EAAE,MAAM,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS,qEAG5F,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;yBAHuC,SAAS,QAAQ,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS;;AAK7F,wBAA2C"}
|
|
@@ -17,6 +17,7 @@ declare const _default: {
|
|
|
17
17
|
} | undefined;
|
|
18
18
|
required?: string[] | undefined;
|
|
19
19
|
};
|
|
20
|
+
title?: string | undefined;
|
|
20
21
|
description?: string | undefined;
|
|
21
22
|
outputSchema?: {
|
|
22
23
|
[x: string]: unknown;
|
|
@@ -34,6 +35,9 @@ declare const _default: {
|
|
|
34
35
|
idempotentHint?: boolean | undefined;
|
|
35
36
|
openWorldHint?: boolean | undefined;
|
|
36
37
|
} | undefined;
|
|
38
|
+
_meta?: {
|
|
39
|
+
[x: string]: unknown;
|
|
40
|
+
} | undefined;
|
|
37
41
|
};
|
|
38
42
|
handler: (conductor: Conductor, args: Record<string, unknown> | undefined) => Promise<import("conductor-node-mcp/tools/types").ToolCallResult>;
|
|
39
43
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"update-qbd-bills.d.mts","sourceRoot":"","sources":["../../../src/tools/qbd/bills/update-qbd-bills.ts"],"names":[],"mappings":"OAIO,EAAE,IAAI,EAAE,MAAM,oCAAoC;OAClD,KAAK,EAAE,QAAQ,EAAE;OACjB,SAAS,MAAM,gBAAgB;AAEtC,eAAO,MAAM,QAAQ,EAAE,QAMtB,CAAC;AAEF,eAAO,MAAM,IAAI,EAAE,IA2alB,CAAC;AAEF,eAAO,MAAM,OAAO,GAAU,WAAW,SAAS,EAAE,MAAM,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS,qEAG5F,CAAC
|
|
1
|
+
{"version":3,"file":"update-qbd-bills.d.mts","sourceRoot":"","sources":["../../../src/tools/qbd/bills/update-qbd-bills.ts"],"names":[],"mappings":"OAIO,EAAE,IAAI,EAAE,MAAM,oCAAoC;OAClD,KAAK,EAAE,QAAQ,EAAE;OACjB,SAAS,MAAM,gBAAgB;AAEtC,eAAO,MAAM,QAAQ,EAAE,QAMtB,CAAC;AAEF,eAAO,MAAM,IAAI,EAAE,IA2alB,CAAC;AAEF,eAAO,MAAM,OAAO,GAAU,WAAW,SAAS,EAAE,MAAM,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS,qEAG5F,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;yBAHuC,SAAS,QAAQ,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS;;AAK7F,wBAA2C"}
|
|
@@ -17,6 +17,7 @@ declare const _default: {
|
|
|
17
17
|
} | undefined;
|
|
18
18
|
required?: string[] | undefined;
|
|
19
19
|
};
|
|
20
|
+
title?: string | undefined;
|
|
20
21
|
description?: string | undefined;
|
|
21
22
|
outputSchema?: {
|
|
22
23
|
[x: string]: unknown;
|
|
@@ -34,6 +35,9 @@ declare const _default: {
|
|
|
34
35
|
idempotentHint?: boolean | undefined;
|
|
35
36
|
openWorldHint?: boolean | undefined;
|
|
36
37
|
} | undefined;
|
|
38
|
+
_meta?: {
|
|
39
|
+
[x: string]: unknown;
|
|
40
|
+
} | undefined;
|
|
37
41
|
};
|
|
38
42
|
handler: (conductor: Conductor, args: Record<string, unknown> | undefined) => Promise<import("conductor-node-mcp/tools/types").ToolCallResult>;
|
|
39
43
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"update-qbd-bills.d.ts","sourceRoot":"","sources":["../../../src/tools/qbd/bills/update-qbd-bills.ts"],"names":[],"mappings":"OAIO,EAAE,IAAI,EAAE,MAAM,oCAAoC;OAClD,KAAK,EAAE,QAAQ,EAAE;OACjB,SAAS,MAAM,gBAAgB;AAEtC,eAAO,MAAM,QAAQ,EAAE,QAMtB,CAAC;AAEF,eAAO,MAAM,IAAI,EAAE,IA2alB,CAAC;AAEF,eAAO,MAAM,OAAO,GAAU,WAAW,SAAS,EAAE,MAAM,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS,qEAG5F,CAAC
|
|
1
|
+
{"version":3,"file":"update-qbd-bills.d.ts","sourceRoot":"","sources":["../../../src/tools/qbd/bills/update-qbd-bills.ts"],"names":[],"mappings":"OAIO,EAAE,IAAI,EAAE,MAAM,oCAAoC;OAClD,KAAK,EAAE,QAAQ,EAAE;OACjB,SAAS,MAAM,gBAAgB;AAEtC,eAAO,MAAM,QAAQ,EAAE,QAMtB,CAAC;AAEF,eAAO,MAAM,IAAI,EAAE,IA2alB,CAAC;AAEF,eAAO,MAAM,OAAO,GAAU,WAAW,SAAS,EAAE,MAAM,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS,qEAG5F,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;yBAHuC,SAAS,QAAQ,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS;;AAK7F,wBAA2C"}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import { Tool } from '@modelcontextprotocol/sdk/types.js';
|
|
2
|
+
import type { Metadata } from "../..//index.mjs";
|
|
3
|
+
import Conductor from 'conductor-node';
|
|
4
|
+
export declare const metadata: Metadata;
|
|
5
|
+
export declare const tool: Tool;
|
|
6
|
+
export declare const handler: (conductor: Conductor, args: Record<string, unknown> | undefined) => Promise<import("conductor-node-mcp/tools/types").ToolCallResult>;
|
|
7
|
+
declare const _default: {
|
|
8
|
+
metadata: Metadata;
|
|
9
|
+
tool: {
|
|
10
|
+
[x: string]: unknown;
|
|
11
|
+
name: string;
|
|
12
|
+
inputSchema: {
|
|
13
|
+
[x: string]: unknown;
|
|
14
|
+
type: "object";
|
|
15
|
+
properties?: {
|
|
16
|
+
[x: string]: unknown;
|
|
17
|
+
} | undefined;
|
|
18
|
+
required?: string[] | undefined;
|
|
19
|
+
};
|
|
20
|
+
title?: string | undefined;
|
|
21
|
+
description?: string | undefined;
|
|
22
|
+
outputSchema?: {
|
|
23
|
+
[x: string]: unknown;
|
|
24
|
+
type: "object";
|
|
25
|
+
properties?: {
|
|
26
|
+
[x: string]: unknown;
|
|
27
|
+
} | undefined;
|
|
28
|
+
required?: string[] | undefined;
|
|
29
|
+
} | undefined;
|
|
30
|
+
annotations?: {
|
|
31
|
+
[x: string]: unknown;
|
|
32
|
+
title?: string | undefined;
|
|
33
|
+
readOnlyHint?: boolean | undefined;
|
|
34
|
+
destructiveHint?: boolean | undefined;
|
|
35
|
+
idempotentHint?: boolean | undefined;
|
|
36
|
+
openWorldHint?: boolean | undefined;
|
|
37
|
+
} | undefined;
|
|
38
|
+
_meta?: {
|
|
39
|
+
[x: string]: unknown;
|
|
40
|
+
} | undefined;
|
|
41
|
+
};
|
|
42
|
+
handler: (conductor: Conductor, args: Record<string, unknown> | undefined) => Promise<import("conductor-node-mcp/tools/types").ToolCallResult>;
|
|
43
|
+
};
|
|
44
|
+
export default _default;
|
|
45
|
+
//# sourceMappingURL=create-qbd-build-assemblies.d.mts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"create-qbd-build-assemblies.d.mts","sourceRoot":"","sources":["../../../src/tools/qbd/build-assemblies/create-qbd-build-assemblies.ts"],"names":[],"mappings":"OAIO,EAAE,IAAI,EAAE,MAAM,oCAAoC;OAClD,KAAK,EAAE,QAAQ,EAAE;OACjB,SAAS,MAAM,gBAAgB;AAEtC,eAAO,MAAM,QAAQ,EAAE,QAMtB,CAAC;AAEF,eAAO,MAAM,IAAI,EAAE,IAyElB,CAAC;AAEF,eAAO,MAAM,OAAO,GAAU,WAAW,SAAS,EAAE,MAAM,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS,qEAG5F,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;yBAHuC,SAAS,QAAQ,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS;;AAK7F,wBAA2C"}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import { Tool } from '@modelcontextprotocol/sdk/types.js';
|
|
2
|
+
import type { Metadata } from "../..//index.js";
|
|
3
|
+
import Conductor from 'conductor-node';
|
|
4
|
+
export declare const metadata: Metadata;
|
|
5
|
+
export declare const tool: Tool;
|
|
6
|
+
export declare const handler: (conductor: Conductor, args: Record<string, unknown> | undefined) => Promise<import("conductor-node-mcp/tools/types").ToolCallResult>;
|
|
7
|
+
declare const _default: {
|
|
8
|
+
metadata: Metadata;
|
|
9
|
+
tool: {
|
|
10
|
+
[x: string]: unknown;
|
|
11
|
+
name: string;
|
|
12
|
+
inputSchema: {
|
|
13
|
+
[x: string]: unknown;
|
|
14
|
+
type: "object";
|
|
15
|
+
properties?: {
|
|
16
|
+
[x: string]: unknown;
|
|
17
|
+
} | undefined;
|
|
18
|
+
required?: string[] | undefined;
|
|
19
|
+
};
|
|
20
|
+
title?: string | undefined;
|
|
21
|
+
description?: string | undefined;
|
|
22
|
+
outputSchema?: {
|
|
23
|
+
[x: string]: unknown;
|
|
24
|
+
type: "object";
|
|
25
|
+
properties?: {
|
|
26
|
+
[x: string]: unknown;
|
|
27
|
+
} | undefined;
|
|
28
|
+
required?: string[] | undefined;
|
|
29
|
+
} | undefined;
|
|
30
|
+
annotations?: {
|
|
31
|
+
[x: string]: unknown;
|
|
32
|
+
title?: string | undefined;
|
|
33
|
+
readOnlyHint?: boolean | undefined;
|
|
34
|
+
destructiveHint?: boolean | undefined;
|
|
35
|
+
idempotentHint?: boolean | undefined;
|
|
36
|
+
openWorldHint?: boolean | undefined;
|
|
37
|
+
} | undefined;
|
|
38
|
+
_meta?: {
|
|
39
|
+
[x: string]: unknown;
|
|
40
|
+
} | undefined;
|
|
41
|
+
};
|
|
42
|
+
handler: (conductor: Conductor, args: Record<string, unknown> | undefined) => Promise<import("conductor-node-mcp/tools/types").ToolCallResult>;
|
|
43
|
+
};
|
|
44
|
+
export default _default;
|
|
45
|
+
//# sourceMappingURL=create-qbd-build-assemblies.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"create-qbd-build-assemblies.d.ts","sourceRoot":"","sources":["../../../src/tools/qbd/build-assemblies/create-qbd-build-assemblies.ts"],"names":[],"mappings":"OAIO,EAAE,IAAI,EAAE,MAAM,oCAAoC;OAClD,KAAK,EAAE,QAAQ,EAAE;OACjB,SAAS,MAAM,gBAAgB;AAEtC,eAAO,MAAM,QAAQ,EAAE,QAMtB,CAAC;AAEF,eAAO,MAAM,IAAI,EAAE,IAyElB,CAAC;AAEF,eAAO,MAAM,OAAO,GAAU,WAAW,SAAS,EAAE,MAAM,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS,qEAG5F,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;yBAHuC,SAAS,QAAQ,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS;;AAK7F,wBAA2C"}
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
3
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
+
exports.handler = exports.tool = exports.metadata = void 0;
|
|
5
|
+
const types_1 = require("conductor-node-mcp/tools/types");
|
|
6
|
+
exports.metadata = {
|
|
7
|
+
resource: 'qbd.build_assemblies',
|
|
8
|
+
operation: 'write',
|
|
9
|
+
tags: [],
|
|
10
|
+
httpMethod: 'post',
|
|
11
|
+
httpPath: '/quickbooks-desktop/build-assemblies',
|
|
12
|
+
};
|
|
13
|
+
exports.tool = {
|
|
14
|
+
name: 'create_qbd_build_assemblies',
|
|
15
|
+
description: 'Creates a new build assembly.',
|
|
16
|
+
inputSchema: {
|
|
17
|
+
type: 'object',
|
|
18
|
+
properties: {
|
|
19
|
+
inventoryAssemblyItemId: {
|
|
20
|
+
type: 'string',
|
|
21
|
+
description: 'The inventory assembly item associated with this build assembly. An inventory assembly item is assembled or manufactured from other inventory items, and the items and/or assemblies that make up the assembly are called components.',
|
|
22
|
+
},
|
|
23
|
+
quantityToBuild: {
|
|
24
|
+
type: 'number',
|
|
25
|
+
description: 'The number of build assembly to be built. The transaction will fail if the number specified here exceeds the number of on-hand components.',
|
|
26
|
+
},
|
|
27
|
+
transactionDate: {
|
|
28
|
+
type: 'string',
|
|
29
|
+
description: 'The date of this build assembly, in ISO 8601 format (YYYY-MM-DD).',
|
|
30
|
+
format: 'date',
|
|
31
|
+
},
|
|
32
|
+
'Conductor-End-User-Id': {
|
|
33
|
+
type: 'string',
|
|
34
|
+
description: 'The ID of the EndUser to receive this request (e.g., `"Conductor-End-User-Id: {{END_USER_ID}}"`).',
|
|
35
|
+
},
|
|
36
|
+
expirationDate: {
|
|
37
|
+
type: 'string',
|
|
38
|
+
description: 'The expiration date for the serial number or lot number of the item associated with this build assembly, in ISO 8601 format (YYYY-MM-DD). This is particularly relevant for perishable or time-sensitive inventory items. Note that this field is only supported on QuickBooks Desktop 2023 or later.',
|
|
39
|
+
format: 'date',
|
|
40
|
+
},
|
|
41
|
+
externalId: {
|
|
42
|
+
type: 'string',
|
|
43
|
+
description: 'A globally unique identifier (GUID) you, the developer, can provide for tracking this object in your external system. This field is immutable and can only be set during object creation.\n\n**IMPORTANT**: This field must be formatted as a valid GUID; otherwise, QuickBooks will return an error.',
|
|
44
|
+
},
|
|
45
|
+
inventorySiteId: {
|
|
46
|
+
type: 'string',
|
|
47
|
+
description: 'The site location where inventory for the item associated with this build assembly is stored.',
|
|
48
|
+
},
|
|
49
|
+
inventorySiteLocationId: {
|
|
50
|
+
type: 'string',
|
|
51
|
+
description: 'The specific location (e.g., bin or shelf) within the inventory site where the item associated with this build assembly is stored.',
|
|
52
|
+
},
|
|
53
|
+
lotNumber: {
|
|
54
|
+
type: 'string',
|
|
55
|
+
description: 'The lot number of the item associated with this build assembly. Used for tracking groups of inventory items that are purchased or manufactured together.',
|
|
56
|
+
},
|
|
57
|
+
markPendingIfRequired: {
|
|
58
|
+
type: 'boolean',
|
|
59
|
+
description: 'When `true`, the build assembly will be marked pending if there are insufficient quantities to complete the build assembly.',
|
|
60
|
+
},
|
|
61
|
+
memo: {
|
|
62
|
+
type: 'string',
|
|
63
|
+
description: 'A memo or note for this build assembly.',
|
|
64
|
+
},
|
|
65
|
+
refNumber: {
|
|
66
|
+
type: 'string',
|
|
67
|
+
description: 'The case-sensitive user-defined reference number for this build assembly, which can be used to identify the transaction in QuickBooks. This value is not required to be unique and can be arbitrarily changed by the QuickBooks user. When left blank in this create request, this field will be left blank in QuickBooks (i.e., it does *not* auto-increment).',
|
|
68
|
+
},
|
|
69
|
+
serialNumber: {
|
|
70
|
+
type: 'string',
|
|
71
|
+
description: 'The serial number of the item associated with this build assembly. This is used for tracking individual units of serialized inventory items.',
|
|
72
|
+
},
|
|
73
|
+
},
|
|
74
|
+
},
|
|
75
|
+
};
|
|
76
|
+
const handler = async (conductor, args) => {
|
|
77
|
+
const body = args;
|
|
78
|
+
return (0, types_1.asTextContentResult)(await conductor.qbd.buildAssemblies.create(body));
|
|
79
|
+
};
|
|
80
|
+
exports.handler = handler;
|
|
81
|
+
exports.default = { metadata: exports.metadata, tool: exports.tool, handler: exports.handler };
|
|
82
|
+
//# sourceMappingURL=create-qbd-build-assemblies.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"create-qbd-build-assemblies.js","sourceRoot":"","sources":["../../../src/tools/qbd/build-assemblies/create-qbd-build-assemblies.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,0DAAqE;AAMxD,QAAA,QAAQ,GAAa;IAChC,QAAQ,EAAE,sBAAsB;IAChC,SAAS,EAAE,OAAO;IAClB,IAAI,EAAE,EAAE;IACR,UAAU,EAAE,MAAM;IAClB,QAAQ,EAAE,sCAAsC;CACjD,CAAC;AAEW,QAAA,IAAI,GAAS;IACxB,IAAI,EAAE,6BAA6B;IACnC,WAAW,EAAE,+BAA+B;IAC5C,WAAW,EAAE;QACX,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE;YACV,uBAAuB,EAAE;gBACvB,IAAI,EAAE,QAAQ;gBACd,WAAW,EACT,uOAAuO;aAC1O;YACD,eAAe,EAAE;gBACf,IAAI,EAAE,QAAQ;gBACd,WAAW,EACT,4IAA4I;aAC/I;YACD,eAAe,EAAE;gBACf,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,mEAAmE;gBAChF,MAAM,EAAE,MAAM;aACf;YACD,uBAAuB,EAAE;gBACvB,IAAI,EAAE,QAAQ;gBACd,WAAW,EACT,mGAAmG;aACtG;YACD,cAAc,EAAE;gBACd,IAAI,EAAE,QAAQ;gBACd,WAAW,EACT,uSAAuS;gBACzS,MAAM,EAAE,MAAM;aACf;YACD,UAAU,EAAE;gBACV,IAAI,EAAE,QAAQ;gBACd,WAAW,EACT,uSAAuS;aAC1S;YACD,eAAe,EAAE;gBACf,IAAI,EAAE,QAAQ;gBACd,WAAW,EACT,+FAA+F;aAClG;YACD,uBAAuB,EAAE;gBACvB,IAAI,EAAE,QAAQ;gBACd,WAAW,EACT,oIAAoI;aACvI;YACD,SAAS,EAAE;gBACT,IAAI,EAAE,QAAQ;gBACd,WAAW,EACT,0JAA0J;aAC7J;YACD,qBAAqB,EAAE;gBACrB,IAAI,EAAE,SAAS;gBACf,WAAW,EACT,6HAA6H;aAChI;YACD,IAAI,EAAE;gBACJ,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,yCAAyC;aACvD;YACD,SAAS,EAAE;gBACT,IAAI,EAAE,QAAQ;gBACd,WAAW,EACT,iWAAiW;aACpW;YACD,YAAY,EAAE;gBACZ,IAAI,EAAE,QAAQ;gBACd,WAAW,EACT,8IAA8I;aACjJ;SACF;KACF;CACF,CAAC;AAEK,MAAM,OAAO,GAAG,KAAK,EAAE,SAAoB,EAAE,IAAyC,EAAE,EAAE;IAC/F,MAAM,IAAI,GAAG,IAAW,CAAC;IACzB,OAAO,IAAA,2BAAmB,EAAC,MAAM,SAAS,CAAC,GAAG,CAAC,eAAe,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC;AAC/E,CAAC,CAAC;AAHW,QAAA,OAAO,WAGlB;AAEF,kBAAe,EAAE,QAAQ,EAAR,gBAAQ,EAAE,IAAI,EAAJ,YAAI,EAAE,OAAO,EAAP,eAAO,EAAE,CAAC"}
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
import { asTextContentResult } from 'conductor-node-mcp/tools/types';
|
|
3
|
+
export const metadata = {
|
|
4
|
+
resource: 'qbd.build_assemblies',
|
|
5
|
+
operation: 'write',
|
|
6
|
+
tags: [],
|
|
7
|
+
httpMethod: 'post',
|
|
8
|
+
httpPath: '/quickbooks-desktop/build-assemblies',
|
|
9
|
+
};
|
|
10
|
+
export const tool = {
|
|
11
|
+
name: 'create_qbd_build_assemblies',
|
|
12
|
+
description: 'Creates a new build assembly.',
|
|
13
|
+
inputSchema: {
|
|
14
|
+
type: 'object',
|
|
15
|
+
properties: {
|
|
16
|
+
inventoryAssemblyItemId: {
|
|
17
|
+
type: 'string',
|
|
18
|
+
description: 'The inventory assembly item associated with this build assembly. An inventory assembly item is assembled or manufactured from other inventory items, and the items and/or assemblies that make up the assembly are called components.',
|
|
19
|
+
},
|
|
20
|
+
quantityToBuild: {
|
|
21
|
+
type: 'number',
|
|
22
|
+
description: 'The number of build assembly to be built. The transaction will fail if the number specified here exceeds the number of on-hand components.',
|
|
23
|
+
},
|
|
24
|
+
transactionDate: {
|
|
25
|
+
type: 'string',
|
|
26
|
+
description: 'The date of this build assembly, in ISO 8601 format (YYYY-MM-DD).',
|
|
27
|
+
format: 'date',
|
|
28
|
+
},
|
|
29
|
+
'Conductor-End-User-Id': {
|
|
30
|
+
type: 'string',
|
|
31
|
+
description: 'The ID of the EndUser to receive this request (e.g., `"Conductor-End-User-Id: {{END_USER_ID}}"`).',
|
|
32
|
+
},
|
|
33
|
+
expirationDate: {
|
|
34
|
+
type: 'string',
|
|
35
|
+
description: 'The expiration date for the serial number or lot number of the item associated with this build assembly, in ISO 8601 format (YYYY-MM-DD). This is particularly relevant for perishable or time-sensitive inventory items. Note that this field is only supported on QuickBooks Desktop 2023 or later.',
|
|
36
|
+
format: 'date',
|
|
37
|
+
},
|
|
38
|
+
externalId: {
|
|
39
|
+
type: 'string',
|
|
40
|
+
description: 'A globally unique identifier (GUID) you, the developer, can provide for tracking this object in your external system. This field is immutable and can only be set during object creation.\n\n**IMPORTANT**: This field must be formatted as a valid GUID; otherwise, QuickBooks will return an error.',
|
|
41
|
+
},
|
|
42
|
+
inventorySiteId: {
|
|
43
|
+
type: 'string',
|
|
44
|
+
description: 'The site location where inventory for the item associated with this build assembly is stored.',
|
|
45
|
+
},
|
|
46
|
+
inventorySiteLocationId: {
|
|
47
|
+
type: 'string',
|
|
48
|
+
description: 'The specific location (e.g., bin or shelf) within the inventory site where the item associated with this build assembly is stored.',
|
|
49
|
+
},
|
|
50
|
+
lotNumber: {
|
|
51
|
+
type: 'string',
|
|
52
|
+
description: 'The lot number of the item associated with this build assembly. Used for tracking groups of inventory items that are purchased or manufactured together.',
|
|
53
|
+
},
|
|
54
|
+
markPendingIfRequired: {
|
|
55
|
+
type: 'boolean',
|
|
56
|
+
description: 'When `true`, the build assembly will be marked pending if there are insufficient quantities to complete the build assembly.',
|
|
57
|
+
},
|
|
58
|
+
memo: {
|
|
59
|
+
type: 'string',
|
|
60
|
+
description: 'A memo or note for this build assembly.',
|
|
61
|
+
},
|
|
62
|
+
refNumber: {
|
|
63
|
+
type: 'string',
|
|
64
|
+
description: 'The case-sensitive user-defined reference number for this build assembly, which can be used to identify the transaction in QuickBooks. This value is not required to be unique and can be arbitrarily changed by the QuickBooks user. When left blank in this create request, this field will be left blank in QuickBooks (i.e., it does *not* auto-increment).',
|
|
65
|
+
},
|
|
66
|
+
serialNumber: {
|
|
67
|
+
type: 'string',
|
|
68
|
+
description: 'The serial number of the item associated with this build assembly. This is used for tracking individual units of serialized inventory items.',
|
|
69
|
+
},
|
|
70
|
+
},
|
|
71
|
+
},
|
|
72
|
+
};
|
|
73
|
+
export const handler = async (conductor, args) => {
|
|
74
|
+
const body = args;
|
|
75
|
+
return asTextContentResult(await conductor.qbd.buildAssemblies.create(body));
|
|
76
|
+
};
|
|
77
|
+
export default { metadata, tool, handler };
|
|
78
|
+
//# sourceMappingURL=create-qbd-build-assemblies.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"create-qbd-build-assemblies.mjs","sourceRoot":"","sources":["../../../src/tools/qbd/build-assemblies/create-qbd-build-assemblies.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAE/E,EAAE,mBAAmB,EAAE,MAAM,gCAAgC;AAMpE,MAAM,CAAC,MAAM,QAAQ,GAAa;IAChC,QAAQ,EAAE,sBAAsB;IAChC,SAAS,EAAE,OAAO;IAClB,IAAI,EAAE,EAAE;IACR,UAAU,EAAE,MAAM;IAClB,QAAQ,EAAE,sCAAsC;CACjD,CAAC;AAEF,MAAM,CAAC,MAAM,IAAI,GAAS;IACxB,IAAI,EAAE,6BAA6B;IACnC,WAAW,EAAE,+BAA+B;IAC5C,WAAW,EAAE;QACX,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE;YACV,uBAAuB,EAAE;gBACvB,IAAI,EAAE,QAAQ;gBACd,WAAW,EACT,uOAAuO;aAC1O;YACD,eAAe,EAAE;gBACf,IAAI,EAAE,QAAQ;gBACd,WAAW,EACT,4IAA4I;aAC/I;YACD,eAAe,EAAE;gBACf,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,mEAAmE;gBAChF,MAAM,EAAE,MAAM;aACf;YACD,uBAAuB,EAAE;gBACvB,IAAI,EAAE,QAAQ;gBACd,WAAW,EACT,mGAAmG;aACtG;YACD,cAAc,EAAE;gBACd,IAAI,EAAE,QAAQ;gBACd,WAAW,EACT,uSAAuS;gBACzS,MAAM,EAAE,MAAM;aACf;YACD,UAAU,EAAE;gBACV,IAAI,EAAE,QAAQ;gBACd,WAAW,EACT,uSAAuS;aAC1S;YACD,eAAe,EAAE;gBACf,IAAI,EAAE,QAAQ;gBACd,WAAW,EACT,+FAA+F;aAClG;YACD,uBAAuB,EAAE;gBACvB,IAAI,EAAE,QAAQ;gBACd,WAAW,EACT,oIAAoI;aACvI;YACD,SAAS,EAAE;gBACT,IAAI,EAAE,QAAQ;gBACd,WAAW,EACT,0JAA0J;aAC7J;YACD,qBAAqB,EAAE;gBACrB,IAAI,EAAE,SAAS;gBACf,WAAW,EACT,6HAA6H;aAChI;YACD,IAAI,EAAE;gBACJ,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,yCAAyC;aACvD;YACD,SAAS,EAAE;gBACT,IAAI,EAAE,QAAQ;gBACd,WAAW,EACT,iWAAiW;aACpW;YACD,YAAY,EAAE;gBACZ,IAAI,EAAE,QAAQ;gBACd,WAAW,EACT,8IAA8I;aACjJ;SACF;KACF;CACF,CAAC;AAEF,MAAM,CAAC,MAAM,OAAO,GAAG,KAAK,EAAE,SAAoB,EAAE,IAAyC,EAAE,EAAE;IAC/F,MAAM,IAAI,GAAG,IAAW,CAAC;IACzB,OAAO,mBAAmB,CAAC,MAAM,SAAS,CAAC,GAAG,CAAC,eAAe,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC;AAC/E,CAAC,CAAC;AAEF,eAAe,EAAE,QAAQ,EAAE,IAAI,EAAE,OAAO,EAAE,CAAC"}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import { Tool } from '@modelcontextprotocol/sdk/types.js';
|
|
2
|
+
import type { Metadata } from "../..//index.mjs";
|
|
3
|
+
import Conductor from 'conductor-node';
|
|
4
|
+
export declare const metadata: Metadata;
|
|
5
|
+
export declare const tool: Tool;
|
|
6
|
+
export declare const handler: (conductor: Conductor, args: Record<string, unknown> | undefined) => Promise<import("conductor-node-mcp/tools/types").ToolCallResult>;
|
|
7
|
+
declare const _default: {
|
|
8
|
+
metadata: Metadata;
|
|
9
|
+
tool: {
|
|
10
|
+
[x: string]: unknown;
|
|
11
|
+
name: string;
|
|
12
|
+
inputSchema: {
|
|
13
|
+
[x: string]: unknown;
|
|
14
|
+
type: "object";
|
|
15
|
+
properties?: {
|
|
16
|
+
[x: string]: unknown;
|
|
17
|
+
} | undefined;
|
|
18
|
+
required?: string[] | undefined;
|
|
19
|
+
};
|
|
20
|
+
title?: string | undefined;
|
|
21
|
+
description?: string | undefined;
|
|
22
|
+
outputSchema?: {
|
|
23
|
+
[x: string]: unknown;
|
|
24
|
+
type: "object";
|
|
25
|
+
properties?: {
|
|
26
|
+
[x: string]: unknown;
|
|
27
|
+
} | undefined;
|
|
28
|
+
required?: string[] | undefined;
|
|
29
|
+
} | undefined;
|
|
30
|
+
annotations?: {
|
|
31
|
+
[x: string]: unknown;
|
|
32
|
+
title?: string | undefined;
|
|
33
|
+
readOnlyHint?: boolean | undefined;
|
|
34
|
+
destructiveHint?: boolean | undefined;
|
|
35
|
+
idempotentHint?: boolean | undefined;
|
|
36
|
+
openWorldHint?: boolean | undefined;
|
|
37
|
+
} | undefined;
|
|
38
|
+
_meta?: {
|
|
39
|
+
[x: string]: unknown;
|
|
40
|
+
} | undefined;
|
|
41
|
+
};
|
|
42
|
+
handler: (conductor: Conductor, args: Record<string, unknown> | undefined) => Promise<import("conductor-node-mcp/tools/types").ToolCallResult>;
|
|
43
|
+
};
|
|
44
|
+
export default _default;
|
|
45
|
+
//# sourceMappingURL=delete-qbd-build-assemblies.d.mts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"delete-qbd-build-assemblies.d.mts","sourceRoot":"","sources":["../../../src/tools/qbd/build-assemblies/delete-qbd-build-assemblies.ts"],"names":[],"mappings":"OAIO,EAAE,IAAI,EAAE,MAAM,oCAAoC;OAClD,KAAK,EAAE,QAAQ,EAAE;OACjB,SAAS,MAAM,gBAAgB;AAEtC,eAAO,MAAM,QAAQ,EAAE,QAMtB,CAAC;AAEF,eAAO,MAAM,IAAI,EAAE,IAkBlB,CAAC;AAEF,eAAO,MAAM,OAAO,GAAU,WAAW,SAAS,EAAE,MAAM,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS,qEAG5F,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;yBAHuC,SAAS,QAAQ,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS;;AAK7F,wBAA2C"}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import { Tool } from '@modelcontextprotocol/sdk/types.js';
|
|
2
|
+
import type { Metadata } from "../..//index.js";
|
|
3
|
+
import Conductor from 'conductor-node';
|
|
4
|
+
export declare const metadata: Metadata;
|
|
5
|
+
export declare const tool: Tool;
|
|
6
|
+
export declare const handler: (conductor: Conductor, args: Record<string, unknown> | undefined) => Promise<import("conductor-node-mcp/tools/types").ToolCallResult>;
|
|
7
|
+
declare const _default: {
|
|
8
|
+
metadata: Metadata;
|
|
9
|
+
tool: {
|
|
10
|
+
[x: string]: unknown;
|
|
11
|
+
name: string;
|
|
12
|
+
inputSchema: {
|
|
13
|
+
[x: string]: unknown;
|
|
14
|
+
type: "object";
|
|
15
|
+
properties?: {
|
|
16
|
+
[x: string]: unknown;
|
|
17
|
+
} | undefined;
|
|
18
|
+
required?: string[] | undefined;
|
|
19
|
+
};
|
|
20
|
+
title?: string | undefined;
|
|
21
|
+
description?: string | undefined;
|
|
22
|
+
outputSchema?: {
|
|
23
|
+
[x: string]: unknown;
|
|
24
|
+
type: "object";
|
|
25
|
+
properties?: {
|
|
26
|
+
[x: string]: unknown;
|
|
27
|
+
} | undefined;
|
|
28
|
+
required?: string[] | undefined;
|
|
29
|
+
} | undefined;
|
|
30
|
+
annotations?: {
|
|
31
|
+
[x: string]: unknown;
|
|
32
|
+
title?: string | undefined;
|
|
33
|
+
readOnlyHint?: boolean | undefined;
|
|
34
|
+
destructiveHint?: boolean | undefined;
|
|
35
|
+
idempotentHint?: boolean | undefined;
|
|
36
|
+
openWorldHint?: boolean | undefined;
|
|
37
|
+
} | undefined;
|
|
38
|
+
_meta?: {
|
|
39
|
+
[x: string]: unknown;
|
|
40
|
+
} | undefined;
|
|
41
|
+
};
|
|
42
|
+
handler: (conductor: Conductor, args: Record<string, unknown> | undefined) => Promise<import("conductor-node-mcp/tools/types").ToolCallResult>;
|
|
43
|
+
};
|
|
44
|
+
export default _default;
|
|
45
|
+
//# sourceMappingURL=delete-qbd-build-assemblies.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"delete-qbd-build-assemblies.d.ts","sourceRoot":"","sources":["../../../src/tools/qbd/build-assemblies/delete-qbd-build-assemblies.ts"],"names":[],"mappings":"OAIO,EAAE,IAAI,EAAE,MAAM,oCAAoC;OAClD,KAAK,EAAE,QAAQ,EAAE;OACjB,SAAS,MAAM,gBAAgB;AAEtC,eAAO,MAAM,QAAQ,EAAE,QAMtB,CAAC;AAEF,eAAO,MAAM,IAAI,EAAE,IAkBlB,CAAC;AAEF,eAAO,MAAM,OAAO,GAAU,WAAW,SAAS,EAAE,MAAM,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS,qEAG5F,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;yBAHuC,SAAS,QAAQ,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS;;AAK7F,wBAA2C"}
|