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
|
@@ -73,12 +73,12 @@ export const tool: Tool = {
|
|
|
73
73
|
refNumberContains: {
|
|
74
74
|
type: 'string',
|
|
75
75
|
description:
|
|
76
|
-
'Filter for credit card charges whose `refNumber` contains this substring
|
|
76
|
+
'Filter for credit card charges whose `refNumber` contains this substring.\n\n**NOTE**: If you use this parameter, you cannot also use `refNumberStartsWith` or `refNumberEndsWith`.',
|
|
77
77
|
},
|
|
78
78
|
refNumberEndsWith: {
|
|
79
79
|
type: 'string',
|
|
80
80
|
description:
|
|
81
|
-
'Filter for credit card charges whose `refNumber` ends with this substring
|
|
81
|
+
'Filter for credit card charges whose `refNumber` ends with this substring.\n\n**NOTE**: If you use this parameter, you cannot also use `refNumberContains` or `refNumberStartsWith`.',
|
|
82
82
|
},
|
|
83
83
|
refNumberFrom: {
|
|
84
84
|
type: 'string',
|
|
@@ -96,7 +96,7 @@ export const tool: Tool = {
|
|
|
96
96
|
refNumberStartsWith: {
|
|
97
97
|
type: 'string',
|
|
98
98
|
description:
|
|
99
|
-
'Filter for credit card charges whose `refNumber` starts with this substring
|
|
99
|
+
'Filter for credit card charges whose `refNumber` starts with this substring.\n\n**NOTE**: If you use this parameter, you cannot also use `refNumberContains` or `refNumberEndsWith`.',
|
|
100
100
|
},
|
|
101
101
|
refNumberTo: {
|
|
102
102
|
type: 'string',
|
|
@@ -73,12 +73,12 @@ export const tool: Tool = {
|
|
|
73
73
|
refNumberContains: {
|
|
74
74
|
type: 'string',
|
|
75
75
|
description:
|
|
76
|
-
'Filter for credit card credits whose `refNumber` contains this substring
|
|
76
|
+
'Filter for credit card credits whose `refNumber` contains this substring.\n\n**NOTE**: If you use this parameter, you cannot also use `refNumberStartsWith` or `refNumberEndsWith`.',
|
|
77
77
|
},
|
|
78
78
|
refNumberEndsWith: {
|
|
79
79
|
type: 'string',
|
|
80
80
|
description:
|
|
81
|
-
'Filter for credit card credits whose `refNumber` ends with this substring
|
|
81
|
+
'Filter for credit card credits whose `refNumber` ends with this substring.\n\n**NOTE**: If you use this parameter, you cannot also use `refNumberContains` or `refNumberStartsWith`.',
|
|
82
82
|
},
|
|
83
83
|
refNumberFrom: {
|
|
84
84
|
type: 'string',
|
|
@@ -96,7 +96,7 @@ export const tool: Tool = {
|
|
|
96
96
|
refNumberStartsWith: {
|
|
97
97
|
type: 'string',
|
|
98
98
|
description:
|
|
99
|
-
'Filter for credit card credits whose `refNumber` starts with this substring
|
|
99
|
+
'Filter for credit card credits whose `refNumber` starts with this substring.\n\n**NOTE**: If you use this parameter, you cannot also use `refNumberContains` or `refNumberEndsWith`.',
|
|
100
100
|
},
|
|
101
101
|
refNumberTo: {
|
|
102
102
|
type: 'string',
|
|
@@ -77,12 +77,12 @@ export const tool: Tool = {
|
|
|
77
77
|
refNumberContains: {
|
|
78
78
|
type: 'string',
|
|
79
79
|
description:
|
|
80
|
-
'Filter for credit memos whose `refNumber` contains this substring
|
|
80
|
+
'Filter for credit memos whose `refNumber` contains this substring.\n\n**NOTE**: If you use this parameter, you cannot also use `refNumberStartsWith` or `refNumberEndsWith`.',
|
|
81
81
|
},
|
|
82
82
|
refNumberEndsWith: {
|
|
83
83
|
type: 'string',
|
|
84
84
|
description:
|
|
85
|
-
'Filter for credit memos whose `refNumber` ends with this substring
|
|
85
|
+
'Filter for credit memos whose `refNumber` ends with this substring.\n\n**NOTE**: If you use this parameter, you cannot also use `refNumberContains` or `refNumberStartsWith`.',
|
|
86
86
|
},
|
|
87
87
|
refNumberFrom: {
|
|
88
88
|
type: 'string',
|
|
@@ -100,7 +100,7 @@ export const tool: Tool = {
|
|
|
100
100
|
refNumberStartsWith: {
|
|
101
101
|
type: 'string',
|
|
102
102
|
description:
|
|
103
|
-
'Filter for credit memos whose `refNumber` starts with this substring
|
|
103
|
+
'Filter for credit memos whose `refNumber` starts with this substring.\n\n**NOTE**: If you use this parameter, you cannot also use `refNumberContains` or `refNumberEndsWith`.',
|
|
104
104
|
},
|
|
105
105
|
refNumberTo: {
|
|
106
106
|
type: 'string',
|
|
@@ -69,12 +69,12 @@ export const tool: Tool = {
|
|
|
69
69
|
nameContains: {
|
|
70
70
|
type: 'string',
|
|
71
71
|
description:
|
|
72
|
-
'Filter for customers whose `name` contains this substring, case-insensitive
|
|
72
|
+
'Filter for customers whose `name` contains this substring, case-insensitive.\n\n**NOTE**: If you use this parameter, you cannot also use `nameStartsWith` or `nameEndsWith`.',
|
|
73
73
|
},
|
|
74
74
|
nameEndsWith: {
|
|
75
75
|
type: 'string',
|
|
76
76
|
description:
|
|
77
|
-
'Filter for customers whose `name` ends with this substring, case-insensitive
|
|
77
|
+
'Filter for customers whose `name` ends with this substring, case-insensitive.\n\n**NOTE**: If you use this parameter, you cannot also use `nameContains` or `nameStartsWith`.',
|
|
78
78
|
},
|
|
79
79
|
nameFrom: {
|
|
80
80
|
type: 'string',
|
|
@@ -84,7 +84,7 @@ export const tool: Tool = {
|
|
|
84
84
|
nameStartsWith: {
|
|
85
85
|
type: 'string',
|
|
86
86
|
description:
|
|
87
|
-
'Filter for customers whose `name` starts with this substring, case-insensitive
|
|
87
|
+
'Filter for customers whose `name` starts with this substring, case-insensitive.\n\n**NOTE**: If you use this parameter, you cannot also use `nameContains` or `nameEndsWith`.',
|
|
88
88
|
},
|
|
89
89
|
nameTo: {
|
|
90
90
|
type: 'string',
|
|
@@ -42,12 +42,12 @@ export const tool: Tool = {
|
|
|
42
42
|
nameContains: {
|
|
43
43
|
type: 'string',
|
|
44
44
|
description:
|
|
45
|
-
'Filter for date-driven terms whose `name` contains this substring, case-insensitive
|
|
45
|
+
'Filter for date-driven terms whose `name` contains this substring, case-insensitive.\n\n**NOTE**: If you use this parameter, you cannot also use `nameStartsWith` or `nameEndsWith`.',
|
|
46
46
|
},
|
|
47
47
|
nameEndsWith: {
|
|
48
48
|
type: 'string',
|
|
49
49
|
description:
|
|
50
|
-
'Filter for date-driven terms whose `name` ends with this substring, case-insensitive
|
|
50
|
+
'Filter for date-driven terms whose `name` ends with this substring, case-insensitive.\n\n**NOTE**: If you use this parameter, you cannot also use `nameContains` or `nameStartsWith`.',
|
|
51
51
|
},
|
|
52
52
|
nameFrom: {
|
|
53
53
|
type: 'string',
|
|
@@ -65,7 +65,7 @@ export const tool: Tool = {
|
|
|
65
65
|
nameStartsWith: {
|
|
66
66
|
type: 'string',
|
|
67
67
|
description:
|
|
68
|
-
'Filter for date-driven terms whose `name` starts with this substring, case-insensitive
|
|
68
|
+
'Filter for date-driven terms whose `name` starts with this substring, case-insensitive.\n\n**NOTE**: If you use this parameter, you cannot also use `nameContains` or `nameEndsWith`.',
|
|
69
69
|
},
|
|
70
70
|
nameTo: {
|
|
71
71
|
type: 'string',
|
|
@@ -63,12 +63,12 @@ export const tool: Tool = {
|
|
|
63
63
|
nameContains: {
|
|
64
64
|
type: 'string',
|
|
65
65
|
description:
|
|
66
|
-
'Filter for discount items whose `name` contains this substring, case-insensitive
|
|
66
|
+
'Filter for discount items whose `name` contains this substring, case-insensitive.\n\n**NOTE**: If you use this parameter, you cannot also use `nameStartsWith` or `nameEndsWith`.',
|
|
67
67
|
},
|
|
68
68
|
nameEndsWith: {
|
|
69
69
|
type: 'string',
|
|
70
70
|
description:
|
|
71
|
-
'Filter for discount items whose `name` ends with this substring, case-insensitive
|
|
71
|
+
'Filter for discount items whose `name` ends with this substring, case-insensitive.\n\n**NOTE**: If you use this parameter, you cannot also use `nameContains` or `nameStartsWith`.',
|
|
72
72
|
},
|
|
73
73
|
nameFrom: {
|
|
74
74
|
type: 'string',
|
|
@@ -78,7 +78,7 @@ export const tool: Tool = {
|
|
|
78
78
|
nameStartsWith: {
|
|
79
79
|
type: 'string',
|
|
80
80
|
description:
|
|
81
|
-
'Filter for discount items whose `name` starts with this substring, case-insensitive
|
|
81
|
+
'Filter for discount items whose `name` starts with this substring, case-insensitive.\n\n**NOTE**: If you use this parameter, you cannot also use `nameContains` or `nameEndsWith`.',
|
|
82
82
|
},
|
|
83
83
|
nameTo: {
|
|
84
84
|
type: 'string',
|
|
@@ -46,12 +46,12 @@ export const tool: Tool = {
|
|
|
46
46
|
nameContains: {
|
|
47
47
|
type: 'string',
|
|
48
48
|
description:
|
|
49
|
-
'Filter for employees whose `name` contains this substring, case-insensitive
|
|
49
|
+
'Filter for employees whose `name` contains this substring, case-insensitive.\n\n**NOTE**: If you use this parameter, you cannot also use `nameStartsWith` or `nameEndsWith`.',
|
|
50
50
|
},
|
|
51
51
|
nameEndsWith: {
|
|
52
52
|
type: 'string',
|
|
53
53
|
description:
|
|
54
|
-
'Filter for employees whose `name` ends with this substring, case-insensitive
|
|
54
|
+
'Filter for employees whose `name` ends with this substring, case-insensitive.\n\n**NOTE**: If you use this parameter, you cannot also use `nameContains` or `nameStartsWith`.',
|
|
55
55
|
},
|
|
56
56
|
nameFrom: {
|
|
57
57
|
type: 'string',
|
|
@@ -69,7 +69,7 @@ export const tool: Tool = {
|
|
|
69
69
|
nameStartsWith: {
|
|
70
70
|
type: 'string',
|
|
71
71
|
description:
|
|
72
|
-
'Filter for employees whose `name` starts with this substring, case-insensitive
|
|
72
|
+
'Filter for employees whose `name` starts with this substring, case-insensitive.\n\n**NOTE**: If you use this parameter, you cannot also use `nameContains` or `nameEndsWith`.',
|
|
73
73
|
},
|
|
74
74
|
nameTo: {
|
|
75
75
|
type: 'string',
|
|
@@ -76,12 +76,12 @@ export const tool: Tool = {
|
|
|
76
76
|
refNumberContains: {
|
|
77
77
|
type: 'string',
|
|
78
78
|
description:
|
|
79
|
-
'Filter for estimates whose `refNumber` contains this substring
|
|
79
|
+
'Filter for estimates whose `refNumber` contains this substring.\n\n**NOTE**: If you use this parameter, you cannot also use `refNumberStartsWith` or `refNumberEndsWith`.',
|
|
80
80
|
},
|
|
81
81
|
refNumberEndsWith: {
|
|
82
82
|
type: 'string',
|
|
83
83
|
description:
|
|
84
|
-
'Filter for estimates whose `refNumber` ends with this substring
|
|
84
|
+
'Filter for estimates whose `refNumber` ends with this substring.\n\n**NOTE**: If you use this parameter, you cannot also use `refNumberContains` or `refNumberStartsWith`.',
|
|
85
85
|
},
|
|
86
86
|
refNumberFrom: {
|
|
87
87
|
type: 'string',
|
|
@@ -99,7 +99,7 @@ export const tool: Tool = {
|
|
|
99
99
|
refNumberStartsWith: {
|
|
100
100
|
type: 'string',
|
|
101
101
|
description:
|
|
102
|
-
'Filter for estimates whose `refNumber` starts with this substring
|
|
102
|
+
'Filter for estimates whose `refNumber` starts with this substring.\n\n**NOTE**: If you use this parameter, you cannot also use `refNumberContains` or `refNumberEndsWith`.',
|
|
103
103
|
},
|
|
104
104
|
refNumberTo: {
|
|
105
105
|
type: 'string',
|
|
@@ -61,6 +61,10 @@ export const tool: Tool = {
|
|
|
61
61
|
items: {
|
|
62
62
|
type: 'object',
|
|
63
63
|
properties: {
|
|
64
|
+
itemId: {
|
|
65
|
+
type: 'string',
|
|
66
|
+
description: 'The inventory item associated with this inventory adjustment line.',
|
|
67
|
+
},
|
|
64
68
|
adjustLotNumber: {
|
|
65
69
|
type: 'object',
|
|
66
70
|
description: 'Adjusts the lot number of this inventory adjustment line.',
|
|
@@ -185,12 +189,8 @@ export const tool: Tool = {
|
|
|
185
189
|
},
|
|
186
190
|
required: [],
|
|
187
191
|
},
|
|
188
|
-
itemId: {
|
|
189
|
-
type: 'string',
|
|
190
|
-
description: 'The inventory item associated with this inventory adjustment line.',
|
|
191
|
-
},
|
|
192
192
|
},
|
|
193
|
-
required: [],
|
|
193
|
+
required: ['itemId'],
|
|
194
194
|
},
|
|
195
195
|
},
|
|
196
196
|
memo: {
|
|
@@ -67,12 +67,12 @@ export const tool: Tool = {
|
|
|
67
67
|
refNumberContains: {
|
|
68
68
|
type: 'string',
|
|
69
69
|
description:
|
|
70
|
-
'Filter for inventory adjustments whose `refNumber` contains this substring
|
|
70
|
+
'Filter for inventory adjustments whose `refNumber` contains this substring.\n\n**NOTE**: If you use this parameter, you cannot also use `refNumberStartsWith` or `refNumberEndsWith`.',
|
|
71
71
|
},
|
|
72
72
|
refNumberEndsWith: {
|
|
73
73
|
type: 'string',
|
|
74
74
|
description:
|
|
75
|
-
'Filter for inventory adjustments whose `refNumber` ends with this substring
|
|
75
|
+
'Filter for inventory adjustments whose `refNumber` ends with this substring.\n\n**NOTE**: If you use this parameter, you cannot also use `refNumberContains` or `refNumberStartsWith`.',
|
|
76
76
|
},
|
|
77
77
|
refNumberFrom: {
|
|
78
78
|
type: 'string',
|
|
@@ -90,7 +90,7 @@ export const tool: Tool = {
|
|
|
90
90
|
refNumberStartsWith: {
|
|
91
91
|
type: 'string',
|
|
92
92
|
description:
|
|
93
|
-
'Filter for inventory adjustments whose `refNumber` starts with this substring
|
|
93
|
+
'Filter for inventory adjustments whose `refNumber` starts with this substring.\n\n**NOTE**: If you use this parameter, you cannot also use `refNumberContains` or `refNumberEndsWith`.',
|
|
94
94
|
},
|
|
95
95
|
refNumberTo: {
|
|
96
96
|
type: 'string',
|
|
@@ -63,12 +63,12 @@ export const tool: Tool = {
|
|
|
63
63
|
nameContains: {
|
|
64
64
|
type: 'string',
|
|
65
65
|
description:
|
|
66
|
-
'Filter for inventory assembly items whose `name` contains this substring, case-insensitive
|
|
66
|
+
'Filter for inventory assembly items whose `name` contains this substring, case-insensitive.\n\n**NOTE**: If you use this parameter, you cannot also use `nameStartsWith` or `nameEndsWith`.',
|
|
67
67
|
},
|
|
68
68
|
nameEndsWith: {
|
|
69
69
|
type: 'string',
|
|
70
70
|
description:
|
|
71
|
-
'Filter for inventory assembly items whose `name` ends with this substring, case-insensitive
|
|
71
|
+
'Filter for inventory assembly items whose `name` ends with this substring, case-insensitive.\n\n**NOTE**: If you use this parameter, you cannot also use `nameContains` or `nameStartsWith`.',
|
|
72
72
|
},
|
|
73
73
|
nameFrom: {
|
|
74
74
|
type: 'string',
|
|
@@ -78,7 +78,7 @@ export const tool: Tool = {
|
|
|
78
78
|
nameStartsWith: {
|
|
79
79
|
type: 'string',
|
|
80
80
|
description:
|
|
81
|
-
'Filter for inventory assembly items whose `name` starts with this substring, case-insensitive
|
|
81
|
+
'Filter for inventory assembly items whose `name` starts with this substring, case-insensitive.\n\n**NOTE**: If you use this parameter, you cannot also use `nameContains` or `nameEndsWith`.',
|
|
82
82
|
},
|
|
83
83
|
nameTo: {
|
|
84
84
|
type: 'string',
|
|
@@ -63,12 +63,12 @@ export const tool: Tool = {
|
|
|
63
63
|
nameContains: {
|
|
64
64
|
type: 'string',
|
|
65
65
|
description:
|
|
66
|
-
'Filter for inventory items whose `name` contains this substring, case-insensitive
|
|
66
|
+
'Filter for inventory items whose `name` contains this substring, case-insensitive.\n\n**NOTE**: If you use this parameter, you cannot also use `nameStartsWith` or `nameEndsWith`.',
|
|
67
67
|
},
|
|
68
68
|
nameEndsWith: {
|
|
69
69
|
type: 'string',
|
|
70
70
|
description:
|
|
71
|
-
'Filter for inventory items whose `name` ends with this substring, case-insensitive
|
|
71
|
+
'Filter for inventory items whose `name` ends with this substring, case-insensitive.\n\n**NOTE**: If you use this parameter, you cannot also use `nameContains` or `nameStartsWith`.',
|
|
72
72
|
},
|
|
73
73
|
nameFrom: {
|
|
74
74
|
type: 'string',
|
|
@@ -78,7 +78,7 @@ export const tool: Tool = {
|
|
|
78
78
|
nameStartsWith: {
|
|
79
79
|
type: 'string',
|
|
80
80
|
description:
|
|
81
|
-
'Filter for inventory items whose `name` starts with this substring, case-insensitive
|
|
81
|
+
'Filter for inventory items whose `name` starts with this substring, case-insensitive.\n\n**NOTE**: If you use this parameter, you cannot also use `nameContains` or `nameEndsWith`.',
|
|
82
82
|
},
|
|
83
83
|
nameTo: {
|
|
84
84
|
type: 'string',
|
|
@@ -37,12 +37,12 @@ export const tool: Tool = {
|
|
|
37
37
|
nameContains: {
|
|
38
38
|
type: 'string',
|
|
39
39
|
description:
|
|
40
|
-
'Filter for inventory sites whose `name` contains this substring, case-insensitive
|
|
40
|
+
'Filter for inventory sites whose `name` contains this substring, case-insensitive.\n\n**NOTE**: If you use this parameter, you cannot also use `nameStartsWith` or `nameEndsWith`.',
|
|
41
41
|
},
|
|
42
42
|
nameEndsWith: {
|
|
43
43
|
type: 'string',
|
|
44
44
|
description:
|
|
45
|
-
'Filter for inventory sites whose `name` ends with this substring, case-insensitive
|
|
45
|
+
'Filter for inventory sites whose `name` ends with this substring, case-insensitive.\n\n**NOTE**: If you use this parameter, you cannot also use `nameContains` or `nameStartsWith`.',
|
|
46
46
|
},
|
|
47
47
|
nameFrom: {
|
|
48
48
|
type: 'string',
|
|
@@ -60,7 +60,7 @@ export const tool: Tool = {
|
|
|
60
60
|
nameStartsWith: {
|
|
61
61
|
type: 'string',
|
|
62
62
|
description:
|
|
63
|
-
'Filter for inventory sites whose `name` starts with this substring, case-insensitive
|
|
63
|
+
'Filter for inventory sites whose `name` starts with this substring, case-insensitive.\n\n**NOTE**: If you use this parameter, you cannot also use `nameContains` or `nameEndsWith`.',
|
|
64
64
|
},
|
|
65
65
|
nameTo: {
|
|
66
66
|
type: 'string',
|
|
@@ -81,12 +81,12 @@ export const tool: Tool = {
|
|
|
81
81
|
refNumberContains: {
|
|
82
82
|
type: 'string',
|
|
83
83
|
description:
|
|
84
|
-
'Filter for invoices whose `refNumber` contains this substring
|
|
84
|
+
'Filter for invoices whose `refNumber` contains this substring.\n\n**NOTE**: If you use this parameter, you cannot also use `refNumberStartsWith` or `refNumberEndsWith`.',
|
|
85
85
|
},
|
|
86
86
|
refNumberEndsWith: {
|
|
87
87
|
type: 'string',
|
|
88
88
|
description:
|
|
89
|
-
'Filter for invoices whose `refNumber` ends with this substring
|
|
89
|
+
'Filter for invoices whose `refNumber` ends with this substring.\n\n**NOTE**: If you use this parameter, you cannot also use `refNumberContains` or `refNumberStartsWith`.',
|
|
90
90
|
},
|
|
91
91
|
refNumberFrom: {
|
|
92
92
|
type: 'string',
|
|
@@ -104,7 +104,7 @@ export const tool: Tool = {
|
|
|
104
104
|
refNumberStartsWith: {
|
|
105
105
|
type: 'string',
|
|
106
106
|
description:
|
|
107
|
-
'Filter for invoices whose `refNumber` starts with this substring
|
|
107
|
+
'Filter for invoices whose `refNumber` starts with this substring.\n\n**NOTE**: If you use this parameter, you cannot also use `refNumberContains` or `refNumberEndsWith`.',
|
|
108
108
|
},
|
|
109
109
|
refNumberTo: {
|
|
110
110
|
type: 'string',
|
|
@@ -46,12 +46,12 @@ export const tool: Tool = {
|
|
|
46
46
|
nameContains: {
|
|
47
47
|
type: 'string',
|
|
48
48
|
description:
|
|
49
|
-
'Filter for item groups whose `name` contains this substring, case-insensitive
|
|
49
|
+
'Filter for item groups whose `name` contains this substring, case-insensitive.\n\n**NOTE**: If you use this parameter, you cannot also use `nameStartsWith` or `nameEndsWith`.',
|
|
50
50
|
},
|
|
51
51
|
nameEndsWith: {
|
|
52
52
|
type: 'string',
|
|
53
53
|
description:
|
|
54
|
-
'Filter for item groups whose `name` ends with this substring, case-insensitive
|
|
54
|
+
'Filter for item groups whose `name` ends with this substring, case-insensitive.\n\n**NOTE**: If you use this parameter, you cannot also use `nameContains` or `nameStartsWith`.',
|
|
55
55
|
},
|
|
56
56
|
nameFrom: {
|
|
57
57
|
type: 'string',
|
|
@@ -69,7 +69,7 @@ export const tool: Tool = {
|
|
|
69
69
|
nameStartsWith: {
|
|
70
70
|
type: 'string',
|
|
71
71
|
description:
|
|
72
|
-
'Filter for item groups whose `name` starts with this substring, case-insensitive
|
|
72
|
+
'Filter for item groups whose `name` starts with this substring, case-insensitive.\n\n**NOTE**: If you use this parameter, you cannot also use `nameContains` or `nameEndsWith`.',
|
|
73
73
|
},
|
|
74
74
|
nameTo: {
|
|
75
75
|
type: 'string',
|
|
@@ -69,12 +69,12 @@ export const tool: Tool = {
|
|
|
69
69
|
refNumberContains: {
|
|
70
70
|
type: 'string',
|
|
71
71
|
description:
|
|
72
|
-
'Filter for item receipts whose `refNumber` contains this substring
|
|
72
|
+
'Filter for item receipts whose `refNumber` contains this substring.\n\n**NOTE**: If you use this parameter, you cannot also use `refNumberStartsWith` or `refNumberEndsWith`.',
|
|
73
73
|
},
|
|
74
74
|
refNumberEndsWith: {
|
|
75
75
|
type: 'string',
|
|
76
76
|
description:
|
|
77
|
-
'Filter for item receipts whose `refNumber` ends with this substring
|
|
77
|
+
'Filter for item receipts whose `refNumber` ends with this substring.\n\n**NOTE**: If you use this parameter, you cannot also use `refNumberContains` or `refNumberStartsWith`.',
|
|
78
78
|
},
|
|
79
79
|
refNumberFrom: {
|
|
80
80
|
type: 'string',
|
|
@@ -92,7 +92,7 @@ export const tool: Tool = {
|
|
|
92
92
|
refNumberStartsWith: {
|
|
93
93
|
type: 'string',
|
|
94
94
|
description:
|
|
95
|
-
'Filter for item receipts whose `refNumber` starts with this substring
|
|
95
|
+
'Filter for item receipts whose `refNumber` starts with this substring.\n\n**NOTE**: If you use this parameter, you cannot also use `refNumberContains` or `refNumberEndsWith`.',
|
|
96
96
|
},
|
|
97
97
|
refNumberTo: {
|
|
98
98
|
type: 'string',
|
|
@@ -73,12 +73,12 @@ export const tool: Tool = {
|
|
|
73
73
|
refNumberContains: {
|
|
74
74
|
type: 'string',
|
|
75
75
|
description:
|
|
76
|
-
'Filter for journal entries whose `refNumber` contains this substring
|
|
76
|
+
'Filter for journal entries whose `refNumber` contains this substring.\n\n**NOTE**: If you use this parameter, you cannot also use `refNumberStartsWith` or `refNumberEndsWith`.',
|
|
77
77
|
},
|
|
78
78
|
refNumberEndsWith: {
|
|
79
79
|
type: 'string',
|
|
80
80
|
description:
|
|
81
|
-
'Filter for journal entries whose `refNumber` ends with this substring
|
|
81
|
+
'Filter for journal entries whose `refNumber` ends with this substring.\n\n**NOTE**: If you use this parameter, you cannot also use `refNumberContains` or `refNumberStartsWith`.',
|
|
82
82
|
},
|
|
83
83
|
refNumberFrom: {
|
|
84
84
|
type: 'string',
|
|
@@ -96,7 +96,7 @@ export const tool: Tool = {
|
|
|
96
96
|
refNumberStartsWith: {
|
|
97
97
|
type: 'string',
|
|
98
98
|
description:
|
|
99
|
-
'Filter for journal entries whose `refNumber` starts with this substring
|
|
99
|
+
'Filter for journal entries whose `refNumber` starts with this substring.\n\n**NOTE**: If you use this parameter, you cannot also use `refNumberContains` or `refNumberEndsWith`.',
|
|
100
100
|
},
|
|
101
101
|
refNumberTo: {
|
|
102
102
|
type: 'string',
|
|
@@ -63,12 +63,12 @@ export const tool: Tool = {
|
|
|
63
63
|
nameContains: {
|
|
64
64
|
type: 'string',
|
|
65
65
|
description:
|
|
66
|
-
'Filter for non-inventory items whose `name` contains this substring, case-insensitive
|
|
66
|
+
'Filter for non-inventory items whose `name` contains this substring, case-insensitive.\n\n**NOTE**: If you use this parameter, you cannot also use `nameStartsWith` or `nameEndsWith`.',
|
|
67
67
|
},
|
|
68
68
|
nameEndsWith: {
|
|
69
69
|
type: 'string',
|
|
70
70
|
description:
|
|
71
|
-
'Filter for non-inventory items whose `name` ends with this substring, case-insensitive
|
|
71
|
+
'Filter for non-inventory items whose `name` ends with this substring, case-insensitive.\n\n**NOTE**: If you use this parameter, you cannot also use `nameContains` or `nameStartsWith`.',
|
|
72
72
|
},
|
|
73
73
|
nameFrom: {
|
|
74
74
|
type: 'string',
|
|
@@ -78,7 +78,7 @@ export const tool: Tool = {
|
|
|
78
78
|
nameStartsWith: {
|
|
79
79
|
type: 'string',
|
|
80
80
|
description:
|
|
81
|
-
'Filter for non-inventory items whose `name` starts with this substring, case-insensitive
|
|
81
|
+
'Filter for non-inventory items whose `name` starts with this substring, case-insensitive.\n\n**NOTE**: If you use this parameter, you cannot also use `nameContains` or `nameEndsWith`.',
|
|
82
82
|
},
|
|
83
83
|
nameTo: {
|
|
84
84
|
type: 'string',
|
|
@@ -42,12 +42,12 @@ export const tool: Tool = {
|
|
|
42
42
|
nameContains: {
|
|
43
43
|
type: 'string',
|
|
44
44
|
description:
|
|
45
|
-
'Filter for other-names whose `name` contains this substring, case-insensitive
|
|
45
|
+
'Filter for other-names whose `name` contains this substring, case-insensitive.\n\n**NOTE**: If you use this parameter, you cannot also use `nameStartsWith` or `nameEndsWith`.',
|
|
46
46
|
},
|
|
47
47
|
nameEndsWith: {
|
|
48
48
|
type: 'string',
|
|
49
49
|
description:
|
|
50
|
-
'Filter for other-names whose `name` ends with this substring, case-insensitive
|
|
50
|
+
'Filter for other-names whose `name` ends with this substring, case-insensitive.\n\n**NOTE**: If you use this parameter, you cannot also use `nameContains` or `nameStartsWith`.',
|
|
51
51
|
},
|
|
52
52
|
nameFrom: {
|
|
53
53
|
type: 'string',
|
|
@@ -65,7 +65,7 @@ export const tool: Tool = {
|
|
|
65
65
|
nameStartsWith: {
|
|
66
66
|
type: 'string',
|
|
67
67
|
description:
|
|
68
|
-
'Filter for other-names whose `name` starts with this substring, case-insensitive
|
|
68
|
+
'Filter for other-names whose `name` starts with this substring, case-insensitive.\n\n**NOTE**: If you use this parameter, you cannot also use `nameContains` or `nameEndsWith`.',
|
|
69
69
|
},
|
|
70
70
|
nameTo: {
|
|
71
71
|
type: 'string',
|
|
@@ -42,12 +42,12 @@ export const tool: Tool = {
|
|
|
42
42
|
nameContains: {
|
|
43
43
|
type: 'string',
|
|
44
44
|
description:
|
|
45
|
-
'Filter for payment methods whose `name` contains this substring, case-insensitive
|
|
45
|
+
'Filter for payment methods whose `name` contains this substring, case-insensitive.\n\n**NOTE**: If you use this parameter, you cannot also use `nameStartsWith` or `nameEndsWith`.',
|
|
46
46
|
},
|
|
47
47
|
nameEndsWith: {
|
|
48
48
|
type: 'string',
|
|
49
49
|
description:
|
|
50
|
-
'Filter for payment methods whose `name` ends with this substring, case-insensitive
|
|
50
|
+
'Filter for payment methods whose `name` ends with this substring, case-insensitive.\n\n**NOTE**: If you use this parameter, you cannot also use `nameContains` or `nameStartsWith`.',
|
|
51
51
|
},
|
|
52
52
|
nameFrom: {
|
|
53
53
|
type: 'string',
|
|
@@ -65,7 +65,7 @@ export const tool: Tool = {
|
|
|
65
65
|
nameStartsWith: {
|
|
66
66
|
type: 'string',
|
|
67
67
|
description:
|
|
68
|
-
'Filter for payment methods whose `name` starts with this substring, case-insensitive
|
|
68
|
+
'Filter for payment methods whose `name` starts with this substring, case-insensitive.\n\n**NOTE**: If you use this parameter, you cannot also use `nameContains` or `nameEndsWith`.',
|
|
69
69
|
},
|
|
70
70
|
nameTo: {
|
|
71
71
|
type: 'string',
|
|
@@ -47,12 +47,12 @@ export const tool: Tool = {
|
|
|
47
47
|
nameContains: {
|
|
48
48
|
type: 'string',
|
|
49
49
|
description:
|
|
50
|
-
'Filter for payroll wage items whose `name` contains this substring, case-insensitive
|
|
50
|
+
'Filter for payroll wage items whose `name` contains this substring, case-insensitive.\n\n**NOTE**: If you use this parameter, you cannot also use `nameStartsWith` or `nameEndsWith`.',
|
|
51
51
|
},
|
|
52
52
|
nameEndsWith: {
|
|
53
53
|
type: 'string',
|
|
54
54
|
description:
|
|
55
|
-
'Filter for payroll wage items whose `name` ends with this substring, case-insensitive
|
|
55
|
+
'Filter for payroll wage items whose `name` ends with this substring, case-insensitive.\n\n**NOTE**: If you use this parameter, you cannot also use `nameContains` or `nameStartsWith`.',
|
|
56
56
|
},
|
|
57
57
|
nameFrom: {
|
|
58
58
|
type: 'string',
|
|
@@ -70,7 +70,7 @@ export const tool: Tool = {
|
|
|
70
70
|
nameStartsWith: {
|
|
71
71
|
type: 'string',
|
|
72
72
|
description:
|
|
73
|
-
'Filter for payroll wage items whose `name` starts with this substring, case-insensitive
|
|
73
|
+
'Filter for payroll wage items whose `name` starts with this substring, case-insensitive.\n\n**NOTE**: If you use this parameter, you cannot also use `nameContains` or `nameEndsWith`.',
|
|
74
74
|
},
|
|
75
75
|
nameTo: {
|
|
76
76
|
type: 'string',
|
|
@@ -62,6 +62,11 @@ export const tool: Tool = {
|
|
|
62
62
|
"The base value reference for this per-item price level's percentage adjustment. Specifies which price to use as the starting point for the adjustment calculation in the price level.\n\n**NOTE:** The price level must use either a fixed pricing approach (`customPrice` or `customPricePercent`) or a relative adjustment approach (`adjustPercentage` with `adjustRelativeTo`) when configuring per-item price levels.",
|
|
63
63
|
enum: ['cost', 'current_custom_price', 'standard_price'],
|
|
64
64
|
},
|
|
65
|
+
itemId: {
|
|
66
|
+
type: 'string',
|
|
67
|
+
description:
|
|
68
|
+
'The item associated with this per-item price level. This can refer to any good or service that the business buys or sells, including item types such as a service item, inventory item, or special calculation item like a discount item or sales-tax item.',
|
|
69
|
+
},
|
|
65
70
|
customPrice: {
|
|
66
71
|
type: 'string',
|
|
67
72
|
description:
|
|
@@ -72,13 +77,8 @@ export const tool: Tool = {
|
|
|
72
77
|
description:
|
|
73
78
|
"The fixed discount percentage for this per-item price level that modifies the specified item's standard price. Used to create a fixed percentage markup or discount specific to this item within this price level.",
|
|
74
79
|
},
|
|
75
|
-
itemId: {
|
|
76
|
-
type: 'string',
|
|
77
|
-
description:
|
|
78
|
-
'The item associated with this per-item price level. This can refer to any good or service that the business buys or sells, including item types such as a service item, inventory item, or special calculation item like a discount item or sales-tax item.',
|
|
79
|
-
},
|
|
80
80
|
},
|
|
81
|
-
required: ['adjustPercentage', 'adjustRelativeTo'],
|
|
81
|
+
required: ['adjustPercentage', 'adjustRelativeTo', 'itemId'],
|
|
82
82
|
},
|
|
83
83
|
},
|
|
84
84
|
},
|
|
@@ -56,12 +56,12 @@ export const tool: Tool = {
|
|
|
56
56
|
nameContains: {
|
|
57
57
|
type: 'string',
|
|
58
58
|
description:
|
|
59
|
-
'Filter for price levels whose `name` contains this substring, case-insensitive
|
|
59
|
+
'Filter for price levels whose `name` contains this substring, case-insensitive.\n\n**NOTE**: If you use this parameter, you cannot also use `nameStartsWith` or `nameEndsWith`.',
|
|
60
60
|
},
|
|
61
61
|
nameEndsWith: {
|
|
62
62
|
type: 'string',
|
|
63
63
|
description:
|
|
64
|
-
'Filter for price levels whose `name` ends with this substring, case-insensitive
|
|
64
|
+
'Filter for price levels whose `name` ends with this substring, case-insensitive.\n\n**NOTE**: If you use this parameter, you cannot also use `nameContains` or `nameStartsWith`.',
|
|
65
65
|
},
|
|
66
66
|
nameFrom: {
|
|
67
67
|
type: 'string',
|
|
@@ -79,7 +79,7 @@ export const tool: Tool = {
|
|
|
79
79
|
nameStartsWith: {
|
|
80
80
|
type: 'string',
|
|
81
81
|
description:
|
|
82
|
-
'Filter for price levels whose `name` starts with this substring, case-insensitive
|
|
82
|
+
'Filter for price levels whose `name` starts with this substring, case-insensitive.\n\n**NOTE**: If you use this parameter, you cannot also use `nameContains` or `nameEndsWith`.',
|
|
83
83
|
},
|
|
84
84
|
nameTo: {
|
|
85
85
|
type: 'string',
|
|
@@ -71,6 +71,11 @@ export const tool: Tool = {
|
|
|
71
71
|
"The base value reference for this per-item price level's percentage adjustment. Specifies which price to use as the starting point for the adjustment calculation in the price level.\n\n**NOTE:** The price level must use either a fixed pricing approach (`customPrice` or `customPricePercent`) or a relative adjustment approach (`adjustPercentage` with `adjustRelativeTo`) when configuring per-item price levels.",
|
|
72
72
|
enum: ['cost', 'current_custom_price', 'standard_price'],
|
|
73
73
|
},
|
|
74
|
+
itemId: {
|
|
75
|
+
type: 'string',
|
|
76
|
+
description:
|
|
77
|
+
'The item associated with this per-item price level. This can refer to any good or service that the business buys or sells, including item types such as a service item, inventory item, or special calculation item like a discount item or sales-tax item.',
|
|
78
|
+
},
|
|
74
79
|
customPrice: {
|
|
75
80
|
type: 'string',
|
|
76
81
|
description:
|
|
@@ -81,13 +86,8 @@ export const tool: Tool = {
|
|
|
81
86
|
description:
|
|
82
87
|
"The fixed discount percentage for this per-item price level that modifies the specified item's standard price. Used to create a fixed percentage markup or discount specific to this item within this price level.",
|
|
83
88
|
},
|
|
84
|
-
itemId: {
|
|
85
|
-
type: 'string',
|
|
86
|
-
description:
|
|
87
|
-
'The item associated with this per-item price level. This can refer to any good or service that the business buys or sells, including item types such as a service item, inventory item, or special calculation item like a discount item or sales-tax item.',
|
|
88
|
-
},
|
|
89
89
|
},
|
|
90
|
-
required: ['adjustPercentage', 'adjustRelativeTo'],
|
|
90
|
+
required: ['adjustPercentage', 'adjustRelativeTo', 'itemId'],
|
|
91
91
|
},
|
|
92
92
|
},
|
|
93
93
|
},
|