conductor-node-mcp 12.8.1
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/LICENSE +201 -0
- package/README.md +502 -0
- package/compat.d.mts +54 -0
- package/compat.d.mts.map +1 -0
- package/compat.d.ts +54 -0
- package/compat.d.ts.map +1 -0
- package/compat.js +345 -0
- package/compat.js.map +1 -0
- package/compat.mjs +336 -0
- package/compat.mjs.map +1 -0
- package/dynamic-tools.d.mts +12 -0
- package/dynamic-tools.d.mts.map +1 -0
- package/dynamic-tools.d.ts +12 -0
- package/dynamic-tools.d.ts.map +1 -0
- package/dynamic-tools.js +134 -0
- package/dynamic-tools.js.map +1 -0
- package/dynamic-tools.mjs +131 -0
- package/dynamic-tools.mjs.map +1 -0
- package/index.d.mts +2 -0
- package/index.d.mts.map +1 -0
- package/index.d.ts +2 -0
- package/index.d.ts.map +1 -0
- package/index.js +86 -0
- package/index.js.map +1 -0
- package/index.mjs +83 -0
- package/index.mjs.map +1 -0
- package/options.d.mts +11 -0
- package/options.d.mts.map +1 -0
- package/options.d.ts +11 -0
- package/options.d.ts.map +1 -0
- package/options.js +337 -0
- package/options.js.map +1 -0
- package/options.mjs +331 -0
- package/options.mjs.map +1 -0
- package/package.json +53 -0
- package/server.d.mts +38 -0
- package/server.d.mts.map +1 -0
- package/server.d.ts +38 -0
- package/server.d.ts.map +1 -0
- package/server.js +104 -0
- package/server.js.map +1 -0
- package/server.mjs +92 -0
- package/server.mjs.map +1 -0
- package/src/compat.ts +438 -0
- package/src/dynamic-tools.ts +153 -0
- package/src/index.ts +102 -0
- package/src/options.ts +361 -0
- package/src/server.ts +128 -0
- package/src/tools/auth-sessions/create-auth-sessions.ts +50 -0
- package/src/tools/end-users/create-end-users.ts +44 -0
- package/src/tools/end-users/delete-end-users.ts +34 -0
- package/src/tools/end-users/list-end-users.ts +28 -0
- package/src/tools/end-users/passthrough-end-users.ts +44 -0
- package/src/tools/end-users/retrieve-end-users.ts +34 -0
- package/src/tools/index.ts +467 -0
- package/src/tools/qbd/account-tax-lines/list-qbd-account-tax-lines.ts +36 -0
- package/src/tools/qbd/accounts/create-qbd-accounts.ts +112 -0
- package/src/tools/qbd/accounts/list-qbd-accounts.ts +125 -0
- package/src/tools/qbd/accounts/retrieve-qbd-accounts.ts +39 -0
- package/src/tools/qbd/accounts/update-qbd-accounts.ts +121 -0
- package/src/tools/qbd/bill-check-payments/create-qbd-bill-check-payments.ts +137 -0
- package/src/tools/qbd/bill-check-payments/delete-qbd-bill-check-payments.ts +40 -0
- package/src/tools/qbd/bill-check-payments/list-qbd-bill-check-payments.ts +135 -0
- package/src/tools/qbd/bill-check-payments/retrieve-qbd-bill-check-payments.ts +39 -0
- package/src/tools/qbd/bill-check-payments/update-qbd-bill-check-payments.ts +135 -0
- package/src/tools/qbd/bill-credit-card-payments/create-qbd-bill-credit-card-payments.ts +132 -0
- package/src/tools/qbd/bill-credit-card-payments/delete-qbd-bill-credit-card-payments.ts +40 -0
- package/src/tools/qbd/bill-credit-card-payments/list-qbd-bill-credit-card-payments.ts +135 -0
- package/src/tools/qbd/bill-credit-card-payments/retrieve-qbd-bill-credit-card-payments.ts +39 -0
- package/src/tools/qbd/bills/create-qbd-bills.ts +415 -0
- package/src/tools/qbd/bills/delete-qbd-bills.ts +40 -0
- package/src/tools/qbd/bills/list-qbd-bills.ts +143 -0
- package/src/tools/qbd/bills/retrieve-qbd-bills.ts +39 -0
- package/src/tools/qbd/bills/update-qbd-bills.ts +449 -0
- package/src/tools/qbd/checks/create-qbd-checks.ts +422 -0
- package/src/tools/qbd/checks/delete-qbd-checks.ts +40 -0
- package/src/tools/qbd/checks/list-qbd-checks.ts +139 -0
- package/src/tools/qbd/checks/retrieve-qbd-checks.ts +39 -0
- package/src/tools/qbd/checks/update-qbd-checks.ts +464 -0
- package/src/tools/qbd/classes/create-qbd-classes.ts +50 -0
- package/src/tools/qbd/classes/list-qbd-classes.ts +95 -0
- package/src/tools/qbd/classes/retrieve-qbd-classes.ts +39 -0
- package/src/tools/qbd/classes/update-qbd-classes.ts +59 -0
- package/src/tools/qbd/company/retrieve-qbd-company.ts +36 -0
- package/src/tools/qbd/credit-card-charges/create-qbd-credit-card-charges.ts +346 -0
- package/src/tools/qbd/credit-card-charges/delete-qbd-credit-card-charges.ts +40 -0
- package/src/tools/qbd/credit-card-charges/list-qbd-credit-card-charges.ts +135 -0
- package/src/tools/qbd/credit-card-charges/retrieve-qbd-credit-card-charges.ts +39 -0
- package/src/tools/qbd/credit-card-charges/update-qbd-credit-card-charges.ts +387 -0
- package/src/tools/qbd/credit-card-credits/create-qbd-credit-card-credits.ts +346 -0
- package/src/tools/qbd/credit-card-credits/delete-qbd-credit-card-credits.ts +40 -0
- package/src/tools/qbd/credit-card-credits/list-qbd-credit-card-credits.ts +135 -0
- package/src/tools/qbd/credit-card-credits/retrieve-qbd-credit-card-credits.ts +39 -0
- package/src/tools/qbd/credit-card-credits/update-qbd-credit-card-credits.ts +387 -0
- package/src/tools/qbd/credit-memos/create-qbd-credit-memos.ts +441 -0
- package/src/tools/qbd/credit-memos/delete-qbd-credit-memos.ts +40 -0
- package/src/tools/qbd/credit-memos/list-qbd-credit-memos.ts +139 -0
- package/src/tools/qbd/credit-memos/retrieve-qbd-credit-memos.ts +39 -0
- package/src/tools/qbd/credit-memos/update-qbd-credit-memos.ts +514 -0
- package/src/tools/qbd/customers/create-qbd-customers.ts +520 -0
- package/src/tools/qbd/customers/list-qbd-customers.ts +140 -0
- package/src/tools/qbd/customers/retrieve-qbd-customers.ts +39 -0
- package/src/tools/qbd/customers/update-qbd-customers.ts +527 -0
- package/src/tools/qbd/date-driven-terms/create-qbd-date-driven-terms.ts +64 -0
- package/src/tools/qbd/date-driven-terms/list-qbd-date-driven-terms.ts +97 -0
- package/src/tools/qbd/date-driven-terms/retrieve-qbd-date-driven-terms.ts +39 -0
- package/src/tools/qbd/discount-items/create-qbd-discount-items.ts +104 -0
- package/src/tools/qbd/discount-items/list-qbd-discount-items.ts +110 -0
- package/src/tools/qbd/discount-items/retrieve-qbd-discount-items.ts +39 -0
- package/src/tools/qbd/discount-items/update-qbd-discount-items.ts +113 -0
- package/src/tools/qbd/employees/create-qbd-employees.ts +573 -0
- package/src/tools/qbd/employees/list-qbd-employees.ts +100 -0
- package/src/tools/qbd/employees/retrieve-qbd-employees.ts +39 -0
- package/src/tools/qbd/employees/update-qbd-employees.ts +576 -0
- package/src/tools/qbd/estimates/create-qbd-estimates.ts +421 -0
- package/src/tools/qbd/estimates/delete-qbd-estimates.ts +40 -0
- package/src/tools/qbd/estimates/list-qbd-estimates.ts +138 -0
- package/src/tools/qbd/estimates/retrieve-qbd-estimates.ts +39 -0
- package/src/tools/qbd/estimates/update-qbd-estimates.ts +489 -0
- package/src/tools/qbd/health-check-qbd.ts +36 -0
- package/src/tools/qbd/inventory-adjustments/create-qbd-inventory-adjustments.ts +212 -0
- package/src/tools/qbd/inventory-adjustments/delete-qbd-inventory-adjustments.ts +40 -0
- package/src/tools/qbd/inventory-adjustments/list-qbd-inventory-adjustments.ts +129 -0
- package/src/tools/qbd/inventory-adjustments/retrieve-qbd-inventory-adjustments.ts +39 -0
- package/src/tools/qbd/inventory-adjustments/update-qbd-inventory-adjustments.ts +133 -0
- package/src/tools/qbd/inventory-assembly-items/create-qbd-inventory-assembly-items.ts +176 -0
- package/src/tools/qbd/inventory-assembly-items/list-qbd-inventory-assembly-items.ts +110 -0
- package/src/tools/qbd/inventory-assembly-items/retrieve-qbd-inventory-assembly-items.ts +39 -0
- package/src/tools/qbd/inventory-assembly-items/update-qbd-inventory-assembly-items.ts +184 -0
- package/src/tools/qbd/inventory-items/create-qbd-inventory-items.ts +161 -0
- package/src/tools/qbd/inventory-items/list-qbd-inventory-items.ts +110 -0
- package/src/tools/qbd/inventory-items/retrieve-qbd-inventory-items.ts +39 -0
- package/src/tools/qbd/inventory-items/update-qbd-inventory-items.ts +164 -0
- package/src/tools/qbd/inventory-sites/create-qbd-inventory-sites.ts +104 -0
- package/src/tools/qbd/inventory-sites/list-qbd-inventory-sites.ts +92 -0
- package/src/tools/qbd/inventory-sites/retrieve-qbd-inventory-sites.ts +39 -0
- package/src/tools/qbd/inventory-sites/update-qbd-inventory-sites.ts +125 -0
- package/src/tools/qbd/invoices/create-qbd-invoices.ts +500 -0
- package/src/tools/qbd/invoices/delete-qbd-invoices.ts +40 -0
- package/src/tools/qbd/invoices/list-qbd-invoices.ts +143 -0
- package/src/tools/qbd/invoices/retrieve-qbd-invoices.ts +39 -0
- package/src/tools/qbd/invoices/update-qbd-invoices.ts +551 -0
- package/src/tools/qbd/item-groups/create-qbd-item-groups.ts +108 -0
- package/src/tools/qbd/item-groups/list-qbd-item-groups.ts +101 -0
- package/src/tools/qbd/item-groups/retrieve-qbd-item-groups.ts +39 -0
- package/src/tools/qbd/item-groups/update-qbd-item-groups.ts +122 -0
- package/src/tools/qbd/item-receipts/create-qbd-item-receipts.ts +354 -0
- package/src/tools/qbd/item-receipts/delete-qbd-item-receipts.ts +40 -0
- package/src/tools/qbd/item-receipts/list-qbd-item-receipts.ts +138 -0
- package/src/tools/qbd/item-receipts/retrieve-qbd-item-receipts.ts +39 -0
- package/src/tools/qbd/item-receipts/update-qbd-item-receipts.ts +387 -0
- package/src/tools/qbd/item-sites/list-qbd-item-sites.ts +91 -0
- package/src/tools/qbd/item-sites/retrieve-qbd-item-sites.ts +39 -0
- package/src/tools/qbd/journal-entries/create-qbd-journal-entries.ts +162 -0
- package/src/tools/qbd/journal-entries/delete-qbd-journal-entries.ts +40 -0
- package/src/tools/qbd/journal-entries/list-qbd-journal-entries.ts +135 -0
- package/src/tools/qbd/journal-entries/retrieve-qbd-journal-entries.ts +39 -0
- package/src/tools/qbd/journal-entries/update-qbd-journal-entries.ts +127 -0
- package/src/tools/qbd/non-inventory-items/create-qbd-non-inventory-items.ts +166 -0
- package/src/tools/qbd/non-inventory-items/list-qbd-non-inventory-items.ts +110 -0
- package/src/tools/qbd/non-inventory-items/retrieve-qbd-non-inventory-items.ts +39 -0
- package/src/tools/qbd/non-inventory-items/update-qbd-non-inventory-items.ts +190 -0
- package/src/tools/qbd/other-names/create-qbd-other-names.ts +160 -0
- package/src/tools/qbd/other-names/list-qbd-other-names.ts +97 -0
- package/src/tools/qbd/other-names/retrieve-qbd-other-names.ts +39 -0
- package/src/tools/qbd/other-names/update-qbd-other-names.ts +164 -0
- package/src/tools/qbd/payment-methods/create-qbd-payment-methods.ts +62 -0
- package/src/tools/qbd/payment-methods/list-qbd-payment-methods.ts +114 -0
- package/src/tools/qbd/payment-methods/retrieve-qbd-payment-methods.ts +39 -0
- package/src/tools/qbd/payroll-wage-items/create-qbd-payroll-wage-items.ts +65 -0
- package/src/tools/qbd/payroll-wage-items/list-qbd-payroll-wage-items.ts +102 -0
- package/src/tools/qbd/payroll-wage-items/retrieve-qbd-payroll-wage-items.ts +39 -0
- package/src/tools/qbd/preferences/retrieve-qbd-preferences.ts +36 -0
- package/src/tools/qbd/price-levels/create-qbd-price-levels.ts +91 -0
- package/src/tools/qbd/price-levels/list-qbd-price-levels.ts +111 -0
- package/src/tools/qbd/price-levels/retrieve-qbd-price-levels.ts +39 -0
- package/src/tools/qbd/price-levels/update-qbd-price-levels.ts +100 -0
- package/src/tools/qbd/purchase-orders/create-qbd-purchase-orders.ts +412 -0
- package/src/tools/qbd/purchase-orders/delete-qbd-purchase-orders.ts +40 -0
- package/src/tools/qbd/purchase-orders/list-qbd-purchase-orders.ts +139 -0
- package/src/tools/qbd/purchase-orders/retrieve-qbd-purchase-orders.ts +39 -0
- package/src/tools/qbd/purchase-orders/update-qbd-purchase-orders.ts +490 -0
- package/src/tools/qbd/receive-payments/create-qbd-receive-payments.ts +293 -0
- package/src/tools/qbd/receive-payments/delete-qbd-receive-payments.ts +40 -0
- package/src/tools/qbd/receive-payments/list-qbd-receive-payments.ts +134 -0
- package/src/tools/qbd/receive-payments/retrieve-qbd-receive-payments.ts +39 -0
- package/src/tools/qbd/receive-payments/update-qbd-receive-payments.ts +283 -0
- package/src/tools/qbd/sales-orders/create-qbd-sales-orders.ts +449 -0
- package/src/tools/qbd/sales-orders/delete-qbd-sales-orders.ts +40 -0
- package/src/tools/qbd/sales-orders/list-qbd-sales-orders.ts +131 -0
- package/src/tools/qbd/sales-orders/retrieve-qbd-sales-orders.ts +39 -0
- package/src/tools/qbd/sales-orders/update-qbd-sales-orders.ts +522 -0
- package/src/tools/qbd/sales-receipts/create-qbd-sales-receipts.ts +738 -0
- package/src/tools/qbd/sales-receipts/delete-qbd-sales-receipts.ts +40 -0
- package/src/tools/qbd/sales-receipts/list-qbd-sales-receipts.ts +134 -0
- package/src/tools/qbd/sales-receipts/retrieve-qbd-sales-receipts.ts +39 -0
- package/src/tools/qbd/sales-receipts/update-qbd-sales-receipts.ts +524 -0
- package/src/tools/qbd/sales-representatives/create-qbd-sales-representatives.ts +49 -0
- package/src/tools/qbd/sales-representatives/list-qbd-sales-representatives.ts +97 -0
- package/src/tools/qbd/sales-representatives/retrieve-qbd-sales-representatives.ts +39 -0
- package/src/tools/qbd/sales-representatives/update-qbd-sales-representatives.ts +58 -0
- package/src/tools/qbd/sales-tax-codes/create-qbd-sales-tax-codes.ts +59 -0
- package/src/tools/qbd/sales-tax-codes/list-qbd-sales-tax-codes.ts +97 -0
- package/src/tools/qbd/sales-tax-codes/retrieve-qbd-sales-tax-codes.ts +39 -0
- package/src/tools/qbd/sales-tax-codes/update-qbd-sales-tax-codes.ts +68 -0
- package/src/tools/qbd/sales-tax-items/create-qbd-sales-tax-items.ts +94 -0
- package/src/tools/qbd/sales-tax-items/list-qbd-sales-tax-items.ts +110 -0
- package/src/tools/qbd/sales-tax-items/retrieve-qbd-sales-tax-items.ts +39 -0
- package/src/tools/qbd/sales-tax-items/update-qbd-sales-tax-items.ts +98 -0
- package/src/tools/qbd/service-items/create-qbd-service-items.ts +161 -0
- package/src/tools/qbd/service-items/list-qbd-service-items.ts +109 -0
- package/src/tools/qbd/service-items/retrieve-qbd-service-items.ts +39 -0
- package/src/tools/qbd/service-items/update-qbd-service-items.ts +185 -0
- package/src/tools/qbd/standard-terms/create-qbd-standard-terms.ts +59 -0
- package/src/tools/qbd/standard-terms/list-qbd-standard-terms.ts +97 -0
- package/src/tools/qbd/standard-terms/retrieve-qbd-standard-terms.ts +39 -0
- package/src/tools/qbd/subtotal-items/create-qbd-subtotal-items.ts +74 -0
- package/src/tools/qbd/subtotal-items/list-qbd-subtotal-items.ts +102 -0
- package/src/tools/qbd/subtotal-items/retrieve-qbd-subtotal-items.ts +39 -0
- package/src/tools/qbd/subtotal-items/update-qbd-subtotal-items.ts +78 -0
- package/src/tools/qbd/time-tracking-activities/create-qbd-time-tracking-activities.ts +85 -0
- package/src/tools/qbd/time-tracking-activities/delete-qbd-time-tracking-activities.ts +40 -0
- package/src/tools/qbd/time-tracking-activities/list-qbd-time-tracking-activities.ts +84 -0
- package/src/tools/qbd/time-tracking-activities/retrieve-qbd-time-tracking-activities.ts +39 -0
- package/src/tools/qbd/time-tracking-activities/update-qbd-time-tracking-activities.ts +89 -0
- package/src/tools/qbd/transactions/list-qbd-transactions.ts +204 -0
- package/src/tools/qbd/transactions/retrieve-qbd-transactions.ts +39 -0
- package/src/tools/qbd/transfers/create-qbd-transfers.ts +61 -0
- package/src/tools/qbd/transfers/list-qbd-transfers.ts +75 -0
- package/src/tools/qbd/transfers/retrieve-qbd-transfers.ts +39 -0
- package/src/tools/qbd/transfers/update-qbd-transfers.ts +70 -0
- package/src/tools/qbd/vendor-credits/create-qbd-vendor-credits.ts +346 -0
- package/src/tools/qbd/vendor-credits/delete-qbd-vendor-credits.ts +40 -0
- package/src/tools/qbd/vendor-credits/list-qbd-vendor-credits.ts +140 -0
- package/src/tools/qbd/vendor-credits/retrieve-qbd-vendor-credits.ts +39 -0
- package/src/tools/qbd/vendor-credits/update-qbd-vendor-credits.ts +387 -0
- package/src/tools/qbd/vendors/create-qbd-vendors.ts +414 -0
- package/src/tools/qbd/vendors/list-qbd-vendors.ts +139 -0
- package/src/tools/qbd/vendors/retrieve-qbd-vendors.ts +39 -0
- package/src/tools/qbd/vendors/update-qbd-vendors.ts +421 -0
- package/src/tools.ts +1 -0
- package/src/tsconfig.json +11 -0
- package/tools/auth-sessions/create-auth-sessions.d.mts +32 -0
- package/tools/auth-sessions/create-auth-sessions.d.mts.map +1 -0
- package/tools/auth-sessions/create-auth-sessions.d.ts +32 -0
- package/tools/auth-sessions/create-auth-sessions.d.ts.map +1 -0
- package/tools/auth-sessions/create-auth-sessions.js +43 -0
- package/tools/auth-sessions/create-auth-sessions.js.map +1 -0
- package/tools/auth-sessions/create-auth-sessions.mjs +39 -0
- package/tools/auth-sessions/create-auth-sessions.mjs.map +1 -0
- package/tools/end-users/create-end-users.d.mts +32 -0
- package/tools/end-users/create-end-users.d.mts.map +1 -0
- package/tools/end-users/create-end-users.d.ts +32 -0
- package/tools/end-users/create-end-users.d.ts.map +1 -0
- package/tools/end-users/create-end-users.js +39 -0
- package/tools/end-users/create-end-users.js.map +1 -0
- package/tools/end-users/create-end-users.mjs +35 -0
- package/tools/end-users/create-end-users.mjs.map +1 -0
- package/tools/end-users/delete-end-users.d.mts +32 -0
- package/tools/end-users/delete-end-users.d.mts.map +1 -0
- package/tools/end-users/delete-end-users.d.ts +32 -0
- package/tools/end-users/delete-end-users.d.ts.map +1 -0
- package/tools/end-users/delete-end-users.js +31 -0
- package/tools/end-users/delete-end-users.js.map +1 -0
- package/tools/end-users/delete-end-users.mjs +27 -0
- package/tools/end-users/delete-end-users.mjs.map +1 -0
- package/tools/end-users/list-end-users.d.mts +32 -0
- package/tools/end-users/list-end-users.d.mts.map +1 -0
- package/tools/end-users/list-end-users.d.ts +32 -0
- package/tools/end-users/list-end-users.d.ts.map +1 -0
- package/tools/end-users/list-end-users.js +25 -0
- package/tools/end-users/list-end-users.js.map +1 -0
- package/tools/end-users/list-end-users.mjs +21 -0
- package/tools/end-users/list-end-users.mjs.map +1 -0
- package/tools/end-users/passthrough-end-users.d.mts +32 -0
- package/tools/end-users/passthrough-end-users.d.mts.map +1 -0
- package/tools/end-users/passthrough-end-users.d.ts +32 -0
- package/tools/end-users/passthrough-end-users.d.ts.map +1 -0
- package/tools/end-users/passthrough-end-users.js +40 -0
- package/tools/end-users/passthrough-end-users.js.map +1 -0
- package/tools/end-users/passthrough-end-users.mjs +36 -0
- package/tools/end-users/passthrough-end-users.mjs.map +1 -0
- package/tools/end-users/retrieve-end-users.d.mts +32 -0
- package/tools/end-users/retrieve-end-users.d.mts.map +1 -0
- package/tools/end-users/retrieve-end-users.d.ts +32 -0
- package/tools/end-users/retrieve-end-users.d.ts.map +1 -0
- package/tools/end-users/retrieve-end-users.js +31 -0
- package/tools/end-users/retrieve-end-users.js.map +1 -0
- package/tools/end-users/retrieve-end-users.mjs +27 -0
- package/tools/end-users/retrieve-end-users.mjs.map +1 -0
- package/tools/index.d.mts +24 -0
- package/tools/index.d.mts.map +1 -0
- package/tools/index.d.ts +24 -0
- package/tools/index.d.ts.map +1 -0
- package/tools/index.js +434 -0
- package/tools/index.js.map +1 -0
- package/tools/index.mjs +427 -0
- package/tools/index.mjs.map +1 -0
- package/tools/qbd/account-tax-lines/list-qbd-account-tax-lines.d.mts +32 -0
- package/tools/qbd/account-tax-lines/list-qbd-account-tax-lines.d.mts.map +1 -0
- package/tools/qbd/account-tax-lines/list-qbd-account-tax-lines.d.ts +32 -0
- package/tools/qbd/account-tax-lines/list-qbd-account-tax-lines.d.ts.map +1 -0
- package/tools/qbd/account-tax-lines/list-qbd-account-tax-lines.js +31 -0
- package/tools/qbd/account-tax-lines/list-qbd-account-tax-lines.js.map +1 -0
- package/tools/qbd/account-tax-lines/list-qbd-account-tax-lines.mjs +27 -0
- package/tools/qbd/account-tax-lines/list-qbd-account-tax-lines.mjs.map +1 -0
- package/tools/qbd/accounts/create-qbd-accounts.d.mts +32 -0
- package/tools/qbd/accounts/create-qbd-accounts.d.mts.map +1 -0
- package/tools/qbd/accounts/create-qbd-accounts.d.ts +32 -0
- package/tools/qbd/accounts/create-qbd-accounts.d.ts.map +1 -0
- package/tools/qbd/accounts/create-qbd-accounts.js +98 -0
- package/tools/qbd/accounts/create-qbd-accounts.js.map +1 -0
- package/tools/qbd/accounts/create-qbd-accounts.mjs +94 -0
- package/tools/qbd/accounts/create-qbd-accounts.mjs.map +1 -0
- package/tools/qbd/accounts/list-qbd-accounts.d.mts +32 -0
- package/tools/qbd/accounts/list-qbd-accounts.d.mts.map +1 -0
- package/tools/qbd/accounts/list-qbd-accounts.d.ts +32 -0
- package/tools/qbd/accounts/list-qbd-accounts.d.ts.map +1 -0
- package/tools/qbd/accounts/list-qbd-accounts.js +111 -0
- package/tools/qbd/accounts/list-qbd-accounts.js.map +1 -0
- package/tools/qbd/accounts/list-qbd-accounts.mjs +107 -0
- package/tools/qbd/accounts/list-qbd-accounts.mjs.map +1 -0
- package/tools/qbd/accounts/retrieve-qbd-accounts.d.mts +32 -0
- package/tools/qbd/accounts/retrieve-qbd-accounts.d.mts.map +1 -0
- package/tools/qbd/accounts/retrieve-qbd-accounts.d.ts +32 -0
- package/tools/qbd/accounts/retrieve-qbd-accounts.d.ts.map +1 -0
- package/tools/qbd/accounts/retrieve-qbd-accounts.js +35 -0
- package/tools/qbd/accounts/retrieve-qbd-accounts.js.map +1 -0
- package/tools/qbd/accounts/retrieve-qbd-accounts.mjs +31 -0
- package/tools/qbd/accounts/retrieve-qbd-accounts.mjs.map +1 -0
- package/tools/qbd/accounts/update-qbd-accounts.d.mts +32 -0
- package/tools/qbd/accounts/update-qbd-accounts.d.mts.map +1 -0
- package/tools/qbd/accounts/update-qbd-accounts.d.ts +32 -0
- package/tools/qbd/accounts/update-qbd-accounts.d.ts.map +1 -0
- package/tools/qbd/accounts/update-qbd-accounts.js +106 -0
- package/tools/qbd/accounts/update-qbd-accounts.js.map +1 -0
- package/tools/qbd/accounts/update-qbd-accounts.mjs +102 -0
- package/tools/qbd/accounts/update-qbd-accounts.mjs.map +1 -0
- package/tools/qbd/bill-check-payments/create-qbd-bill-check-payments.d.mts +32 -0
- package/tools/qbd/bill-check-payments/create-qbd-bill-check-payments.d.mts.map +1 -0
- package/tools/qbd/bill-check-payments/create-qbd-bill-check-payments.d.ts +32 -0
- package/tools/qbd/bill-check-payments/create-qbd-bill-check-payments.d.ts.map +1 -0
- package/tools/qbd/bill-check-payments/create-qbd-bill-check-payments.js +120 -0
- package/tools/qbd/bill-check-payments/create-qbd-bill-check-payments.js.map +1 -0
- package/tools/qbd/bill-check-payments/create-qbd-bill-check-payments.mjs +116 -0
- package/tools/qbd/bill-check-payments/create-qbd-bill-check-payments.mjs.map +1 -0
- package/tools/qbd/bill-check-payments/delete-qbd-bill-check-payments.d.mts +32 -0
- package/tools/qbd/bill-check-payments/delete-qbd-bill-check-payments.d.mts.map +1 -0
- package/tools/qbd/bill-check-payments/delete-qbd-bill-check-payments.d.ts +32 -0
- package/tools/qbd/bill-check-payments/delete-qbd-bill-check-payments.d.ts.map +1 -0
- package/tools/qbd/bill-check-payments/delete-qbd-bill-check-payments.js +35 -0
- package/tools/qbd/bill-check-payments/delete-qbd-bill-check-payments.js.map +1 -0
- package/tools/qbd/bill-check-payments/delete-qbd-bill-check-payments.mjs +31 -0
- package/tools/qbd/bill-check-payments/delete-qbd-bill-check-payments.mjs.map +1 -0
- package/tools/qbd/bill-check-payments/list-qbd-bill-check-payments.d.mts +32 -0
- package/tools/qbd/bill-check-payments/list-qbd-bill-check-payments.d.mts.map +1 -0
- package/tools/qbd/bill-check-payments/list-qbd-bill-check-payments.d.ts +32 -0
- package/tools/qbd/bill-check-payments/list-qbd-bill-check-payments.d.ts.map +1 -0
- package/tools/qbd/bill-check-payments/list-qbd-bill-check-payments.js +116 -0
- package/tools/qbd/bill-check-payments/list-qbd-bill-check-payments.js.map +1 -0
- package/tools/qbd/bill-check-payments/list-qbd-bill-check-payments.mjs +112 -0
- package/tools/qbd/bill-check-payments/list-qbd-bill-check-payments.mjs.map +1 -0
- package/tools/qbd/bill-check-payments/retrieve-qbd-bill-check-payments.d.mts +32 -0
- package/tools/qbd/bill-check-payments/retrieve-qbd-bill-check-payments.d.mts.map +1 -0
- package/tools/qbd/bill-check-payments/retrieve-qbd-bill-check-payments.d.ts +32 -0
- package/tools/qbd/bill-check-payments/retrieve-qbd-bill-check-payments.d.ts.map +1 -0
- package/tools/qbd/bill-check-payments/retrieve-qbd-bill-check-payments.js +35 -0
- package/tools/qbd/bill-check-payments/retrieve-qbd-bill-check-payments.js.map +1 -0
- package/tools/qbd/bill-check-payments/retrieve-qbd-bill-check-payments.mjs +31 -0
- package/tools/qbd/bill-check-payments/retrieve-qbd-bill-check-payments.mjs.map +1 -0
- package/tools/qbd/bill-check-payments/update-qbd-bill-check-payments.d.mts +32 -0
- package/tools/qbd/bill-check-payments/update-qbd-bill-check-payments.d.mts.map +1 -0
- package/tools/qbd/bill-check-payments/update-qbd-bill-check-payments.d.ts +32 -0
- package/tools/qbd/bill-check-payments/update-qbd-bill-check-payments.d.ts.map +1 -0
- package/tools/qbd/bill-check-payments/update-qbd-bill-check-payments.js +120 -0
- package/tools/qbd/bill-check-payments/update-qbd-bill-check-payments.js.map +1 -0
- package/tools/qbd/bill-check-payments/update-qbd-bill-check-payments.mjs +116 -0
- package/tools/qbd/bill-check-payments/update-qbd-bill-check-payments.mjs.map +1 -0
- package/tools/qbd/bill-credit-card-payments/create-qbd-bill-credit-card-payments.d.mts +32 -0
- package/tools/qbd/bill-credit-card-payments/create-qbd-bill-credit-card-payments.d.mts.map +1 -0
- package/tools/qbd/bill-credit-card-payments/create-qbd-bill-credit-card-payments.d.ts +32 -0
- package/tools/qbd/bill-credit-card-payments/create-qbd-bill-credit-card-payments.d.ts.map +1 -0
- package/tools/qbd/bill-credit-card-payments/create-qbd-bill-credit-card-payments.js +116 -0
- package/tools/qbd/bill-credit-card-payments/create-qbd-bill-credit-card-payments.js.map +1 -0
- package/tools/qbd/bill-credit-card-payments/create-qbd-bill-credit-card-payments.mjs +112 -0
- package/tools/qbd/bill-credit-card-payments/create-qbd-bill-credit-card-payments.mjs.map +1 -0
- package/tools/qbd/bill-credit-card-payments/delete-qbd-bill-credit-card-payments.d.mts +32 -0
- package/tools/qbd/bill-credit-card-payments/delete-qbd-bill-credit-card-payments.d.mts.map +1 -0
- package/tools/qbd/bill-credit-card-payments/delete-qbd-bill-credit-card-payments.d.ts +32 -0
- package/tools/qbd/bill-credit-card-payments/delete-qbd-bill-credit-card-payments.d.ts.map +1 -0
- package/tools/qbd/bill-credit-card-payments/delete-qbd-bill-credit-card-payments.js +35 -0
- package/tools/qbd/bill-credit-card-payments/delete-qbd-bill-credit-card-payments.js.map +1 -0
- package/tools/qbd/bill-credit-card-payments/delete-qbd-bill-credit-card-payments.mjs +31 -0
- package/tools/qbd/bill-credit-card-payments/delete-qbd-bill-credit-card-payments.mjs.map +1 -0
- package/tools/qbd/bill-credit-card-payments/list-qbd-bill-credit-card-payments.d.mts +32 -0
- package/tools/qbd/bill-credit-card-payments/list-qbd-bill-credit-card-payments.d.mts.map +1 -0
- package/tools/qbd/bill-credit-card-payments/list-qbd-bill-credit-card-payments.d.ts +32 -0
- package/tools/qbd/bill-credit-card-payments/list-qbd-bill-credit-card-payments.d.ts.map +1 -0
- package/tools/qbd/bill-credit-card-payments/list-qbd-bill-credit-card-payments.js +116 -0
- package/tools/qbd/bill-credit-card-payments/list-qbd-bill-credit-card-payments.js.map +1 -0
- package/tools/qbd/bill-credit-card-payments/list-qbd-bill-credit-card-payments.mjs +112 -0
- package/tools/qbd/bill-credit-card-payments/list-qbd-bill-credit-card-payments.mjs.map +1 -0
- package/tools/qbd/bill-credit-card-payments/retrieve-qbd-bill-credit-card-payments.d.mts +32 -0
- package/tools/qbd/bill-credit-card-payments/retrieve-qbd-bill-credit-card-payments.d.mts.map +1 -0
- package/tools/qbd/bill-credit-card-payments/retrieve-qbd-bill-credit-card-payments.d.ts +32 -0
- package/tools/qbd/bill-credit-card-payments/retrieve-qbd-bill-credit-card-payments.d.ts.map +1 -0
- package/tools/qbd/bill-credit-card-payments/retrieve-qbd-bill-credit-card-payments.js +35 -0
- package/tools/qbd/bill-credit-card-payments/retrieve-qbd-bill-credit-card-payments.js.map +1 -0
- package/tools/qbd/bill-credit-card-payments/retrieve-qbd-bill-credit-card-payments.mjs +31 -0
- package/tools/qbd/bill-credit-card-payments/retrieve-qbd-bill-credit-card-payments.mjs.map +1 -0
- package/tools/qbd/bills/create-qbd-bills.d.mts +32 -0
- package/tools/qbd/bills/create-qbd-bills.d.mts.map +1 -0
- package/tools/qbd/bills/create-qbd-bills.d.ts +32 -0
- package/tools/qbd/bills/create-qbd-bills.d.ts.map +1 -0
- package/tools/qbd/bills/create-qbd-bills.js +361 -0
- package/tools/qbd/bills/create-qbd-bills.js.map +1 -0
- package/tools/qbd/bills/create-qbd-bills.mjs +357 -0
- package/tools/qbd/bills/create-qbd-bills.mjs.map +1 -0
- package/tools/qbd/bills/delete-qbd-bills.d.mts +32 -0
- package/tools/qbd/bills/delete-qbd-bills.d.mts.map +1 -0
- package/tools/qbd/bills/delete-qbd-bills.d.ts +32 -0
- package/tools/qbd/bills/delete-qbd-bills.d.ts.map +1 -0
- package/tools/qbd/bills/delete-qbd-bills.js +35 -0
- package/tools/qbd/bills/delete-qbd-bills.js.map +1 -0
- package/tools/qbd/bills/delete-qbd-bills.mjs +31 -0
- package/tools/qbd/bills/delete-qbd-bills.mjs.map +1 -0
- package/tools/qbd/bills/list-qbd-bills.d.mts +32 -0
- package/tools/qbd/bills/list-qbd-bills.d.mts.map +1 -0
- package/tools/qbd/bills/list-qbd-bills.d.ts +32 -0
- package/tools/qbd/bills/list-qbd-bills.d.ts.map +1 -0
- package/tools/qbd/bills/list-qbd-bills.js +125 -0
- package/tools/qbd/bills/list-qbd-bills.js.map +1 -0
- package/tools/qbd/bills/list-qbd-bills.mjs +121 -0
- package/tools/qbd/bills/list-qbd-bills.mjs.map +1 -0
- package/tools/qbd/bills/retrieve-qbd-bills.d.mts +32 -0
- package/tools/qbd/bills/retrieve-qbd-bills.d.mts.map +1 -0
- package/tools/qbd/bills/retrieve-qbd-bills.d.ts +32 -0
- package/tools/qbd/bills/retrieve-qbd-bills.d.ts.map +1 -0
- package/tools/qbd/bills/retrieve-qbd-bills.js +35 -0
- package/tools/qbd/bills/retrieve-qbd-bills.js.map +1 -0
- package/tools/qbd/bills/retrieve-qbd-bills.mjs +31 -0
- package/tools/qbd/bills/retrieve-qbd-bills.mjs.map +1 -0
- package/tools/qbd/bills/update-qbd-bills.d.mts +32 -0
- package/tools/qbd/bills/update-qbd-bills.d.mts.map +1 -0
- package/tools/qbd/bills/update-qbd-bills.d.ts +32 -0
- package/tools/qbd/bills/update-qbd-bills.d.ts.map +1 -0
- package/tools/qbd/bills/update-qbd-bills.js +385 -0
- package/tools/qbd/bills/update-qbd-bills.js.map +1 -0
- package/tools/qbd/bills/update-qbd-bills.mjs +381 -0
- package/tools/qbd/bills/update-qbd-bills.mjs.map +1 -0
- package/tools/qbd/checks/create-qbd-checks.d.mts +32 -0
- package/tools/qbd/checks/create-qbd-checks.d.mts.map +1 -0
- package/tools/qbd/checks/create-qbd-checks.d.ts +32 -0
- package/tools/qbd/checks/create-qbd-checks.d.ts.map +1 -0
- package/tools/qbd/checks/create-qbd-checks.js +367 -0
- package/tools/qbd/checks/create-qbd-checks.js.map +1 -0
- package/tools/qbd/checks/create-qbd-checks.mjs +363 -0
- package/tools/qbd/checks/create-qbd-checks.mjs.map +1 -0
- package/tools/qbd/checks/delete-qbd-checks.d.mts +32 -0
- package/tools/qbd/checks/delete-qbd-checks.d.mts.map +1 -0
- package/tools/qbd/checks/delete-qbd-checks.d.ts +32 -0
- package/tools/qbd/checks/delete-qbd-checks.d.ts.map +1 -0
- package/tools/qbd/checks/delete-qbd-checks.js +35 -0
- package/tools/qbd/checks/delete-qbd-checks.js.map +1 -0
- package/tools/qbd/checks/delete-qbd-checks.mjs +31 -0
- package/tools/qbd/checks/delete-qbd-checks.mjs.map +1 -0
- package/tools/qbd/checks/list-qbd-checks.d.mts +32 -0
- package/tools/qbd/checks/list-qbd-checks.d.mts.map +1 -0
- package/tools/qbd/checks/list-qbd-checks.d.ts +32 -0
- package/tools/qbd/checks/list-qbd-checks.d.ts.map +1 -0
- package/tools/qbd/checks/list-qbd-checks.js +120 -0
- package/tools/qbd/checks/list-qbd-checks.js.map +1 -0
- package/tools/qbd/checks/list-qbd-checks.mjs +116 -0
- package/tools/qbd/checks/list-qbd-checks.mjs.map +1 -0
- package/tools/qbd/checks/retrieve-qbd-checks.d.mts +32 -0
- package/tools/qbd/checks/retrieve-qbd-checks.d.mts.map +1 -0
- package/tools/qbd/checks/retrieve-qbd-checks.d.ts +32 -0
- package/tools/qbd/checks/retrieve-qbd-checks.d.ts.map +1 -0
- package/tools/qbd/checks/retrieve-qbd-checks.js +35 -0
- package/tools/qbd/checks/retrieve-qbd-checks.js.map +1 -0
- package/tools/qbd/checks/retrieve-qbd-checks.mjs +31 -0
- package/tools/qbd/checks/retrieve-qbd-checks.mjs.map +1 -0
- package/tools/qbd/checks/update-qbd-checks.d.mts +32 -0
- package/tools/qbd/checks/update-qbd-checks.d.mts.map +1 -0
- package/tools/qbd/checks/update-qbd-checks.d.ts +32 -0
- package/tools/qbd/checks/update-qbd-checks.d.ts.map +1 -0
- package/tools/qbd/checks/update-qbd-checks.js +398 -0
- package/tools/qbd/checks/update-qbd-checks.js.map +1 -0
- package/tools/qbd/checks/update-qbd-checks.mjs +394 -0
- package/tools/qbd/checks/update-qbd-checks.mjs.map +1 -0
- package/tools/qbd/classes/create-qbd-classes.d.mts +32 -0
- package/tools/qbd/classes/create-qbd-classes.d.mts.map +1 -0
- package/tools/qbd/classes/create-qbd-classes.d.ts +32 -0
- package/tools/qbd/classes/create-qbd-classes.d.ts.map +1 -0
- package/tools/qbd/classes/create-qbd-classes.js +43 -0
- package/tools/qbd/classes/create-qbd-classes.js.map +1 -0
- package/tools/qbd/classes/create-qbd-classes.mjs +39 -0
- package/tools/qbd/classes/create-qbd-classes.mjs.map +1 -0
- package/tools/qbd/classes/list-qbd-classes.d.mts +32 -0
- package/tools/qbd/classes/list-qbd-classes.d.mts.map +1 -0
- package/tools/qbd/classes/list-qbd-classes.d.ts +32 -0
- package/tools/qbd/classes/list-qbd-classes.d.ts.map +1 -0
- package/tools/qbd/classes/list-qbd-classes.js +82 -0
- package/tools/qbd/classes/list-qbd-classes.js.map +1 -0
- package/tools/qbd/classes/list-qbd-classes.mjs +78 -0
- package/tools/qbd/classes/list-qbd-classes.mjs.map +1 -0
- package/tools/qbd/classes/retrieve-qbd-classes.d.mts +32 -0
- package/tools/qbd/classes/retrieve-qbd-classes.d.mts.map +1 -0
- package/tools/qbd/classes/retrieve-qbd-classes.d.ts +32 -0
- package/tools/qbd/classes/retrieve-qbd-classes.d.ts.map +1 -0
- package/tools/qbd/classes/retrieve-qbd-classes.js +35 -0
- package/tools/qbd/classes/retrieve-qbd-classes.js.map +1 -0
- package/tools/qbd/classes/retrieve-qbd-classes.mjs +31 -0
- package/tools/qbd/classes/retrieve-qbd-classes.mjs.map +1 -0
- package/tools/qbd/classes/update-qbd-classes.d.mts +32 -0
- package/tools/qbd/classes/update-qbd-classes.d.mts.map +1 -0
- package/tools/qbd/classes/update-qbd-classes.d.ts +32 -0
- package/tools/qbd/classes/update-qbd-classes.d.ts.map +1 -0
- package/tools/qbd/classes/update-qbd-classes.js +51 -0
- package/tools/qbd/classes/update-qbd-classes.js.map +1 -0
- package/tools/qbd/classes/update-qbd-classes.mjs +47 -0
- package/tools/qbd/classes/update-qbd-classes.mjs.map +1 -0
- package/tools/qbd/company/retrieve-qbd-company.d.mts +32 -0
- package/tools/qbd/company/retrieve-qbd-company.d.mts.map +1 -0
- package/tools/qbd/company/retrieve-qbd-company.d.ts +32 -0
- package/tools/qbd/company/retrieve-qbd-company.d.ts.map +1 -0
- package/tools/qbd/company/retrieve-qbd-company.js +31 -0
- package/tools/qbd/company/retrieve-qbd-company.js.map +1 -0
- package/tools/qbd/company/retrieve-qbd-company.mjs +27 -0
- package/tools/qbd/company/retrieve-qbd-company.mjs.map +1 -0
- package/tools/qbd/credit-card-charges/create-qbd-credit-card-charges.d.mts +32 -0
- package/tools/qbd/credit-card-charges/create-qbd-credit-card-charges.d.mts.map +1 -0
- package/tools/qbd/credit-card-charges/create-qbd-credit-card-charges.d.ts +32 -0
- package/tools/qbd/credit-card-charges/create-qbd-credit-card-charges.d.ts.map +1 -0
- package/tools/qbd/credit-card-charges/create-qbd-credit-card-charges.js +298 -0
- package/tools/qbd/credit-card-charges/create-qbd-credit-card-charges.js.map +1 -0
- package/tools/qbd/credit-card-charges/create-qbd-credit-card-charges.mjs +294 -0
- package/tools/qbd/credit-card-charges/create-qbd-credit-card-charges.mjs.map +1 -0
- package/tools/qbd/credit-card-charges/delete-qbd-credit-card-charges.d.mts +32 -0
- package/tools/qbd/credit-card-charges/delete-qbd-credit-card-charges.d.mts.map +1 -0
- package/tools/qbd/credit-card-charges/delete-qbd-credit-card-charges.d.ts +32 -0
- package/tools/qbd/credit-card-charges/delete-qbd-credit-card-charges.d.ts.map +1 -0
- package/tools/qbd/credit-card-charges/delete-qbd-credit-card-charges.js +35 -0
- package/tools/qbd/credit-card-charges/delete-qbd-credit-card-charges.js.map +1 -0
- package/tools/qbd/credit-card-charges/delete-qbd-credit-card-charges.mjs +31 -0
- package/tools/qbd/credit-card-charges/delete-qbd-credit-card-charges.mjs.map +1 -0
- package/tools/qbd/credit-card-charges/list-qbd-credit-card-charges.d.mts +32 -0
- package/tools/qbd/credit-card-charges/list-qbd-credit-card-charges.d.mts.map +1 -0
- package/tools/qbd/credit-card-charges/list-qbd-credit-card-charges.d.ts +32 -0
- package/tools/qbd/credit-card-charges/list-qbd-credit-card-charges.d.ts.map +1 -0
- package/tools/qbd/credit-card-charges/list-qbd-credit-card-charges.js +116 -0
- package/tools/qbd/credit-card-charges/list-qbd-credit-card-charges.js.map +1 -0
- package/tools/qbd/credit-card-charges/list-qbd-credit-card-charges.mjs +112 -0
- package/tools/qbd/credit-card-charges/list-qbd-credit-card-charges.mjs.map +1 -0
- package/tools/qbd/credit-card-charges/retrieve-qbd-credit-card-charges.d.mts +32 -0
- package/tools/qbd/credit-card-charges/retrieve-qbd-credit-card-charges.d.mts.map +1 -0
- package/tools/qbd/credit-card-charges/retrieve-qbd-credit-card-charges.d.ts +32 -0
- package/tools/qbd/credit-card-charges/retrieve-qbd-credit-card-charges.d.ts.map +1 -0
- package/tools/qbd/credit-card-charges/retrieve-qbd-credit-card-charges.js +35 -0
- package/tools/qbd/credit-card-charges/retrieve-qbd-credit-card-charges.js.map +1 -0
- package/tools/qbd/credit-card-charges/retrieve-qbd-credit-card-charges.mjs +31 -0
- package/tools/qbd/credit-card-charges/retrieve-qbd-credit-card-charges.mjs.map +1 -0
- package/tools/qbd/credit-card-charges/update-qbd-credit-card-charges.d.mts +32 -0
- package/tools/qbd/credit-card-charges/update-qbd-credit-card-charges.d.mts.map +1 -0
- package/tools/qbd/credit-card-charges/update-qbd-credit-card-charges.d.ts +32 -0
- package/tools/qbd/credit-card-charges/update-qbd-credit-card-charges.d.ts.map +1 -0
- package/tools/qbd/credit-card-charges/update-qbd-credit-card-charges.js +329 -0
- package/tools/qbd/credit-card-charges/update-qbd-credit-card-charges.js.map +1 -0
- package/tools/qbd/credit-card-charges/update-qbd-credit-card-charges.mjs +325 -0
- package/tools/qbd/credit-card-charges/update-qbd-credit-card-charges.mjs.map +1 -0
- package/tools/qbd/credit-card-credits/create-qbd-credit-card-credits.d.mts +32 -0
- package/tools/qbd/credit-card-credits/create-qbd-credit-card-credits.d.mts.map +1 -0
- package/tools/qbd/credit-card-credits/create-qbd-credit-card-credits.d.ts +32 -0
- package/tools/qbd/credit-card-credits/create-qbd-credit-card-credits.d.ts.map +1 -0
- package/tools/qbd/credit-card-credits/create-qbd-credit-card-credits.js +298 -0
- package/tools/qbd/credit-card-credits/create-qbd-credit-card-credits.js.map +1 -0
- package/tools/qbd/credit-card-credits/create-qbd-credit-card-credits.mjs +294 -0
- package/tools/qbd/credit-card-credits/create-qbd-credit-card-credits.mjs.map +1 -0
- package/tools/qbd/credit-card-credits/delete-qbd-credit-card-credits.d.mts +32 -0
- package/tools/qbd/credit-card-credits/delete-qbd-credit-card-credits.d.mts.map +1 -0
- package/tools/qbd/credit-card-credits/delete-qbd-credit-card-credits.d.ts +32 -0
- package/tools/qbd/credit-card-credits/delete-qbd-credit-card-credits.d.ts.map +1 -0
- package/tools/qbd/credit-card-credits/delete-qbd-credit-card-credits.js +35 -0
- package/tools/qbd/credit-card-credits/delete-qbd-credit-card-credits.js.map +1 -0
- package/tools/qbd/credit-card-credits/delete-qbd-credit-card-credits.mjs +31 -0
- package/tools/qbd/credit-card-credits/delete-qbd-credit-card-credits.mjs.map +1 -0
- package/tools/qbd/credit-card-credits/list-qbd-credit-card-credits.d.mts +32 -0
- package/tools/qbd/credit-card-credits/list-qbd-credit-card-credits.d.mts.map +1 -0
- package/tools/qbd/credit-card-credits/list-qbd-credit-card-credits.d.ts +32 -0
- package/tools/qbd/credit-card-credits/list-qbd-credit-card-credits.d.ts.map +1 -0
- package/tools/qbd/credit-card-credits/list-qbd-credit-card-credits.js +116 -0
- package/tools/qbd/credit-card-credits/list-qbd-credit-card-credits.js.map +1 -0
- package/tools/qbd/credit-card-credits/list-qbd-credit-card-credits.mjs +112 -0
- package/tools/qbd/credit-card-credits/list-qbd-credit-card-credits.mjs.map +1 -0
- package/tools/qbd/credit-card-credits/retrieve-qbd-credit-card-credits.d.mts +32 -0
- package/tools/qbd/credit-card-credits/retrieve-qbd-credit-card-credits.d.mts.map +1 -0
- package/tools/qbd/credit-card-credits/retrieve-qbd-credit-card-credits.d.ts +32 -0
- package/tools/qbd/credit-card-credits/retrieve-qbd-credit-card-credits.d.ts.map +1 -0
- package/tools/qbd/credit-card-credits/retrieve-qbd-credit-card-credits.js +35 -0
- package/tools/qbd/credit-card-credits/retrieve-qbd-credit-card-credits.js.map +1 -0
- package/tools/qbd/credit-card-credits/retrieve-qbd-credit-card-credits.mjs +31 -0
- package/tools/qbd/credit-card-credits/retrieve-qbd-credit-card-credits.mjs.map +1 -0
- package/tools/qbd/credit-card-credits/update-qbd-credit-card-credits.d.mts +32 -0
- package/tools/qbd/credit-card-credits/update-qbd-credit-card-credits.d.mts.map +1 -0
- package/tools/qbd/credit-card-credits/update-qbd-credit-card-credits.d.ts +32 -0
- package/tools/qbd/credit-card-credits/update-qbd-credit-card-credits.d.ts.map +1 -0
- package/tools/qbd/credit-card-credits/update-qbd-credit-card-credits.js +329 -0
- package/tools/qbd/credit-card-credits/update-qbd-credit-card-credits.js.map +1 -0
- package/tools/qbd/credit-card-credits/update-qbd-credit-card-credits.mjs +325 -0
- package/tools/qbd/credit-card-credits/update-qbd-credit-card-credits.mjs.map +1 -0
- package/tools/qbd/credit-memos/create-qbd-credit-memos.d.mts +32 -0
- package/tools/qbd/credit-memos/create-qbd-credit-memos.d.mts.map +1 -0
- package/tools/qbd/credit-memos/create-qbd-credit-memos.d.ts +32 -0
- package/tools/qbd/credit-memos/create-qbd-credit-memos.d.ts.map +1 -0
- package/tools/qbd/credit-memos/create-qbd-credit-memos.js +377 -0
- package/tools/qbd/credit-memos/create-qbd-credit-memos.js.map +1 -0
- package/tools/qbd/credit-memos/create-qbd-credit-memos.mjs +373 -0
- package/tools/qbd/credit-memos/create-qbd-credit-memos.mjs.map +1 -0
- package/tools/qbd/credit-memos/delete-qbd-credit-memos.d.mts +32 -0
- package/tools/qbd/credit-memos/delete-qbd-credit-memos.d.mts.map +1 -0
- package/tools/qbd/credit-memos/delete-qbd-credit-memos.d.ts +32 -0
- package/tools/qbd/credit-memos/delete-qbd-credit-memos.d.ts.map +1 -0
- package/tools/qbd/credit-memos/delete-qbd-credit-memos.js +35 -0
- package/tools/qbd/credit-memos/delete-qbd-credit-memos.js.map +1 -0
- package/tools/qbd/credit-memos/delete-qbd-credit-memos.mjs +31 -0
- package/tools/qbd/credit-memos/delete-qbd-credit-memos.mjs.map +1 -0
- package/tools/qbd/credit-memos/list-qbd-credit-memos.d.mts +32 -0
- package/tools/qbd/credit-memos/list-qbd-credit-memos.d.mts.map +1 -0
- package/tools/qbd/credit-memos/list-qbd-credit-memos.d.ts +32 -0
- package/tools/qbd/credit-memos/list-qbd-credit-memos.d.ts.map +1 -0
- package/tools/qbd/credit-memos/list-qbd-credit-memos.js +120 -0
- package/tools/qbd/credit-memos/list-qbd-credit-memos.js.map +1 -0
- package/tools/qbd/credit-memos/list-qbd-credit-memos.mjs +116 -0
- package/tools/qbd/credit-memos/list-qbd-credit-memos.mjs.map +1 -0
- package/tools/qbd/credit-memos/retrieve-qbd-credit-memos.d.mts +32 -0
- package/tools/qbd/credit-memos/retrieve-qbd-credit-memos.d.mts.map +1 -0
- package/tools/qbd/credit-memos/retrieve-qbd-credit-memos.d.ts +32 -0
- package/tools/qbd/credit-memos/retrieve-qbd-credit-memos.d.ts.map +1 -0
- package/tools/qbd/credit-memos/retrieve-qbd-credit-memos.js +35 -0
- package/tools/qbd/credit-memos/retrieve-qbd-credit-memos.js.map +1 -0
- package/tools/qbd/credit-memos/retrieve-qbd-credit-memos.mjs +31 -0
- package/tools/qbd/credit-memos/retrieve-qbd-credit-memos.mjs.map +1 -0
- package/tools/qbd/credit-memos/update-qbd-credit-memos.d.mts +32 -0
- package/tools/qbd/credit-memos/update-qbd-credit-memos.d.mts.map +1 -0
- package/tools/qbd/credit-memos/update-qbd-credit-memos.d.ts +32 -0
- package/tools/qbd/credit-memos/update-qbd-credit-memos.d.ts.map +1 -0
- package/tools/qbd/credit-memos/update-qbd-credit-memos.js +436 -0
- package/tools/qbd/credit-memos/update-qbd-credit-memos.js.map +1 -0
- package/tools/qbd/credit-memos/update-qbd-credit-memos.mjs +432 -0
- package/tools/qbd/credit-memos/update-qbd-credit-memos.mjs.map +1 -0
- package/tools/qbd/customers/create-qbd-customers.d.mts +32 -0
- package/tools/qbd/customers/create-qbd-customers.d.mts.map +1 -0
- package/tools/qbd/customers/create-qbd-customers.d.ts +32 -0
- package/tools/qbd/customers/create-qbd-customers.d.ts.map +1 -0
- package/tools/qbd/customers/create-qbd-customers.js +465 -0
- package/tools/qbd/customers/create-qbd-customers.js.map +1 -0
- package/tools/qbd/customers/create-qbd-customers.mjs +461 -0
- package/tools/qbd/customers/create-qbd-customers.mjs.map +1 -0
- package/tools/qbd/customers/list-qbd-customers.d.mts +32 -0
- package/tools/qbd/customers/list-qbd-customers.d.mts.map +1 -0
- package/tools/qbd/customers/list-qbd-customers.d.ts +32 -0
- package/tools/qbd/customers/list-qbd-customers.d.ts.map +1 -0
- package/tools/qbd/customers/list-qbd-customers.js +120 -0
- package/tools/qbd/customers/list-qbd-customers.js.map +1 -0
- package/tools/qbd/customers/list-qbd-customers.mjs +116 -0
- package/tools/qbd/customers/list-qbd-customers.mjs.map +1 -0
- package/tools/qbd/customers/retrieve-qbd-customers.d.mts +32 -0
- package/tools/qbd/customers/retrieve-qbd-customers.d.mts.map +1 -0
- package/tools/qbd/customers/retrieve-qbd-customers.d.ts +32 -0
- package/tools/qbd/customers/retrieve-qbd-customers.d.ts.map +1 -0
- package/tools/qbd/customers/retrieve-qbd-customers.js +35 -0
- package/tools/qbd/customers/retrieve-qbd-customers.js.map +1 -0
- package/tools/qbd/customers/retrieve-qbd-customers.mjs +31 -0
- package/tools/qbd/customers/retrieve-qbd-customers.mjs.map +1 -0
- package/tools/qbd/customers/update-qbd-customers.d.mts +32 -0
- package/tools/qbd/customers/update-qbd-customers.d.mts.map +1 -0
- package/tools/qbd/customers/update-qbd-customers.d.ts +32 -0
- package/tools/qbd/customers/update-qbd-customers.d.ts.map +1 -0
- package/tools/qbd/customers/update-qbd-customers.js +472 -0
- package/tools/qbd/customers/update-qbd-customers.js.map +1 -0
- package/tools/qbd/customers/update-qbd-customers.mjs +468 -0
- package/tools/qbd/customers/update-qbd-customers.mjs.map +1 -0
- package/tools/qbd/date-driven-terms/create-qbd-date-driven-terms.d.mts +32 -0
- package/tools/qbd/date-driven-terms/create-qbd-date-driven-terms.d.mts.map +1 -0
- package/tools/qbd/date-driven-terms/create-qbd-date-driven-terms.d.ts +32 -0
- package/tools/qbd/date-driven-terms/create-qbd-date-driven-terms.d.ts.map +1 -0
- package/tools/qbd/date-driven-terms/create-qbd-date-driven-terms.js +55 -0
- package/tools/qbd/date-driven-terms/create-qbd-date-driven-terms.js.map +1 -0
- package/tools/qbd/date-driven-terms/create-qbd-date-driven-terms.mjs +51 -0
- package/tools/qbd/date-driven-terms/create-qbd-date-driven-terms.mjs.map +1 -0
- package/tools/qbd/date-driven-terms/list-qbd-date-driven-terms.d.mts +32 -0
- package/tools/qbd/date-driven-terms/list-qbd-date-driven-terms.d.mts.map +1 -0
- package/tools/qbd/date-driven-terms/list-qbd-date-driven-terms.d.ts +32 -0
- package/tools/qbd/date-driven-terms/list-qbd-date-driven-terms.d.ts.map +1 -0
- package/tools/qbd/date-driven-terms/list-qbd-date-driven-terms.js +82 -0
- package/tools/qbd/date-driven-terms/list-qbd-date-driven-terms.js.map +1 -0
- package/tools/qbd/date-driven-terms/list-qbd-date-driven-terms.mjs +78 -0
- package/tools/qbd/date-driven-terms/list-qbd-date-driven-terms.mjs.map +1 -0
- package/tools/qbd/date-driven-terms/retrieve-qbd-date-driven-terms.d.mts +32 -0
- package/tools/qbd/date-driven-terms/retrieve-qbd-date-driven-terms.d.mts.map +1 -0
- package/tools/qbd/date-driven-terms/retrieve-qbd-date-driven-terms.d.ts +32 -0
- package/tools/qbd/date-driven-terms/retrieve-qbd-date-driven-terms.d.ts.map +1 -0
- package/tools/qbd/date-driven-terms/retrieve-qbd-date-driven-terms.js +35 -0
- package/tools/qbd/date-driven-terms/retrieve-qbd-date-driven-terms.js.map +1 -0
- package/tools/qbd/date-driven-terms/retrieve-qbd-date-driven-terms.mjs +31 -0
- package/tools/qbd/date-driven-terms/retrieve-qbd-date-driven-terms.mjs.map +1 -0
- package/tools/qbd/discount-items/create-qbd-discount-items.d.mts +32 -0
- package/tools/qbd/discount-items/create-qbd-discount-items.d.mts.map +1 -0
- package/tools/qbd/discount-items/create-qbd-discount-items.d.ts +32 -0
- package/tools/qbd/discount-items/create-qbd-discount-items.d.ts.map +1 -0
- package/tools/qbd/discount-items/create-qbd-discount-items.js +90 -0
- package/tools/qbd/discount-items/create-qbd-discount-items.js.map +1 -0
- package/tools/qbd/discount-items/create-qbd-discount-items.mjs +86 -0
- package/tools/qbd/discount-items/create-qbd-discount-items.mjs.map +1 -0
- package/tools/qbd/discount-items/list-qbd-discount-items.d.mts +32 -0
- package/tools/qbd/discount-items/list-qbd-discount-items.d.mts.map +1 -0
- package/tools/qbd/discount-items/list-qbd-discount-items.d.ts +32 -0
- package/tools/qbd/discount-items/list-qbd-discount-items.d.ts.map +1 -0
- package/tools/qbd/discount-items/list-qbd-discount-items.js +93 -0
- package/tools/qbd/discount-items/list-qbd-discount-items.js.map +1 -0
- package/tools/qbd/discount-items/list-qbd-discount-items.mjs +89 -0
- package/tools/qbd/discount-items/list-qbd-discount-items.mjs.map +1 -0
- package/tools/qbd/discount-items/retrieve-qbd-discount-items.d.mts +32 -0
- package/tools/qbd/discount-items/retrieve-qbd-discount-items.d.mts.map +1 -0
- package/tools/qbd/discount-items/retrieve-qbd-discount-items.d.ts +32 -0
- package/tools/qbd/discount-items/retrieve-qbd-discount-items.d.ts.map +1 -0
- package/tools/qbd/discount-items/retrieve-qbd-discount-items.js +35 -0
- package/tools/qbd/discount-items/retrieve-qbd-discount-items.js.map +1 -0
- package/tools/qbd/discount-items/retrieve-qbd-discount-items.mjs +31 -0
- package/tools/qbd/discount-items/retrieve-qbd-discount-items.mjs.map +1 -0
- package/tools/qbd/discount-items/update-qbd-discount-items.d.mts +32 -0
- package/tools/qbd/discount-items/update-qbd-discount-items.d.mts.map +1 -0
- package/tools/qbd/discount-items/update-qbd-discount-items.d.ts +32 -0
- package/tools/qbd/discount-items/update-qbd-discount-items.d.ts.map +1 -0
- package/tools/qbd/discount-items/update-qbd-discount-items.js +98 -0
- package/tools/qbd/discount-items/update-qbd-discount-items.js.map +1 -0
- package/tools/qbd/discount-items/update-qbd-discount-items.mjs +94 -0
- package/tools/qbd/discount-items/update-qbd-discount-items.mjs.map +1 -0
- package/tools/qbd/employees/create-qbd-employees.d.mts +32 -0
- package/tools/qbd/employees/create-qbd-employees.d.mts.map +1 -0
- package/tools/qbd/employees/create-qbd-employees.d.ts +32 -0
- package/tools/qbd/employees/create-qbd-employees.d.ts.map +1 -0
- package/tools/qbd/employees/create-qbd-employees.js +528 -0
- package/tools/qbd/employees/create-qbd-employees.js.map +1 -0
- package/tools/qbd/employees/create-qbd-employees.mjs +524 -0
- package/tools/qbd/employees/create-qbd-employees.mjs.map +1 -0
- package/tools/qbd/employees/list-qbd-employees.d.mts +32 -0
- package/tools/qbd/employees/list-qbd-employees.d.mts.map +1 -0
- package/tools/qbd/employees/list-qbd-employees.d.ts +32 -0
- package/tools/qbd/employees/list-qbd-employees.d.ts.map +1 -0
- package/tools/qbd/employees/list-qbd-employees.js +86 -0
- package/tools/qbd/employees/list-qbd-employees.js.map +1 -0
- package/tools/qbd/employees/list-qbd-employees.mjs +82 -0
- package/tools/qbd/employees/list-qbd-employees.mjs.map +1 -0
- package/tools/qbd/employees/retrieve-qbd-employees.d.mts +32 -0
- package/tools/qbd/employees/retrieve-qbd-employees.d.mts.map +1 -0
- package/tools/qbd/employees/retrieve-qbd-employees.d.ts +32 -0
- package/tools/qbd/employees/retrieve-qbd-employees.d.ts.map +1 -0
- package/tools/qbd/employees/retrieve-qbd-employees.js +35 -0
- package/tools/qbd/employees/retrieve-qbd-employees.js.map +1 -0
- package/tools/qbd/employees/retrieve-qbd-employees.mjs +31 -0
- package/tools/qbd/employees/retrieve-qbd-employees.mjs.map +1 -0
- package/tools/qbd/employees/update-qbd-employees.d.mts +32 -0
- package/tools/qbd/employees/update-qbd-employees.d.mts.map +1 -0
- package/tools/qbd/employees/update-qbd-employees.d.ts +32 -0
- package/tools/qbd/employees/update-qbd-employees.d.ts.map +1 -0
- package/tools/qbd/employees/update-qbd-employees.js +531 -0
- package/tools/qbd/employees/update-qbd-employees.js.map +1 -0
- package/tools/qbd/employees/update-qbd-employees.mjs +527 -0
- package/tools/qbd/employees/update-qbd-employees.mjs.map +1 -0
- package/tools/qbd/estimates/create-qbd-estimates.d.mts +32 -0
- package/tools/qbd/estimates/create-qbd-estimates.d.mts.map +1 -0
- package/tools/qbd/estimates/create-qbd-estimates.d.ts +32 -0
- package/tools/qbd/estimates/create-qbd-estimates.d.ts.map +1 -0
- package/tools/qbd/estimates/create-qbd-estimates.js +360 -0
- package/tools/qbd/estimates/create-qbd-estimates.js.map +1 -0
- package/tools/qbd/estimates/create-qbd-estimates.mjs +356 -0
- package/tools/qbd/estimates/create-qbd-estimates.mjs.map +1 -0
- package/tools/qbd/estimates/delete-qbd-estimates.d.mts +32 -0
- package/tools/qbd/estimates/delete-qbd-estimates.d.mts.map +1 -0
- package/tools/qbd/estimates/delete-qbd-estimates.d.ts +32 -0
- package/tools/qbd/estimates/delete-qbd-estimates.d.ts.map +1 -0
- package/tools/qbd/estimates/delete-qbd-estimates.js +35 -0
- package/tools/qbd/estimates/delete-qbd-estimates.js.map +1 -0
- package/tools/qbd/estimates/delete-qbd-estimates.mjs +31 -0
- package/tools/qbd/estimates/delete-qbd-estimates.mjs.map +1 -0
- package/tools/qbd/estimates/list-qbd-estimates.d.mts +32 -0
- package/tools/qbd/estimates/list-qbd-estimates.d.mts.map +1 -0
- package/tools/qbd/estimates/list-qbd-estimates.d.ts +32 -0
- package/tools/qbd/estimates/list-qbd-estimates.d.ts.map +1 -0
- package/tools/qbd/estimates/list-qbd-estimates.js +120 -0
- package/tools/qbd/estimates/list-qbd-estimates.js.map +1 -0
- package/tools/qbd/estimates/list-qbd-estimates.mjs +116 -0
- package/tools/qbd/estimates/list-qbd-estimates.mjs.map +1 -0
- package/tools/qbd/estimates/retrieve-qbd-estimates.d.mts +32 -0
- package/tools/qbd/estimates/retrieve-qbd-estimates.d.mts.map +1 -0
- package/tools/qbd/estimates/retrieve-qbd-estimates.d.ts +32 -0
- package/tools/qbd/estimates/retrieve-qbd-estimates.d.ts.map +1 -0
- package/tools/qbd/estimates/retrieve-qbd-estimates.js +35 -0
- package/tools/qbd/estimates/retrieve-qbd-estimates.js.map +1 -0
- package/tools/qbd/estimates/retrieve-qbd-estimates.mjs +31 -0
- package/tools/qbd/estimates/retrieve-qbd-estimates.mjs.map +1 -0
- package/tools/qbd/estimates/update-qbd-estimates.d.mts +32 -0
- package/tools/qbd/estimates/update-qbd-estimates.d.mts.map +1 -0
- package/tools/qbd/estimates/update-qbd-estimates.d.ts +32 -0
- package/tools/qbd/estimates/update-qbd-estimates.d.ts.map +1 -0
- package/tools/qbd/estimates/update-qbd-estimates.js +415 -0
- package/tools/qbd/estimates/update-qbd-estimates.js.map +1 -0
- package/tools/qbd/estimates/update-qbd-estimates.mjs +411 -0
- package/tools/qbd/estimates/update-qbd-estimates.mjs.map +1 -0
- package/tools/qbd/health-check-qbd.d.mts +32 -0
- package/tools/qbd/health-check-qbd.d.mts.map +1 -0
- package/tools/qbd/health-check-qbd.d.ts +32 -0
- package/tools/qbd/health-check-qbd.d.ts.map +1 -0
- package/tools/qbd/health-check-qbd.js +31 -0
- package/tools/qbd/health-check-qbd.js.map +1 -0
- package/tools/qbd/health-check-qbd.mjs +27 -0
- package/tools/qbd/health-check-qbd.mjs.map +1 -0
- package/tools/qbd/inventory-adjustments/create-qbd-inventory-adjustments.d.mts +32 -0
- package/tools/qbd/inventory-adjustments/create-qbd-inventory-adjustments.d.mts.map +1 -0
- package/tools/qbd/inventory-adjustments/create-qbd-inventory-adjustments.d.ts +32 -0
- package/tools/qbd/inventory-adjustments/create-qbd-inventory-adjustments.d.ts.map +1 -0
- package/tools/qbd/inventory-adjustments/create-qbd-inventory-adjustments.js +181 -0
- package/tools/qbd/inventory-adjustments/create-qbd-inventory-adjustments.js.map +1 -0
- package/tools/qbd/inventory-adjustments/create-qbd-inventory-adjustments.mjs +177 -0
- package/tools/qbd/inventory-adjustments/create-qbd-inventory-adjustments.mjs.map +1 -0
- package/tools/qbd/inventory-adjustments/delete-qbd-inventory-adjustments.d.mts +32 -0
- package/tools/qbd/inventory-adjustments/delete-qbd-inventory-adjustments.d.mts.map +1 -0
- package/tools/qbd/inventory-adjustments/delete-qbd-inventory-adjustments.d.ts +32 -0
- package/tools/qbd/inventory-adjustments/delete-qbd-inventory-adjustments.d.ts.map +1 -0
- package/tools/qbd/inventory-adjustments/delete-qbd-inventory-adjustments.js +35 -0
- package/tools/qbd/inventory-adjustments/delete-qbd-inventory-adjustments.js.map +1 -0
- package/tools/qbd/inventory-adjustments/delete-qbd-inventory-adjustments.mjs +31 -0
- package/tools/qbd/inventory-adjustments/delete-qbd-inventory-adjustments.mjs.map +1 -0
- package/tools/qbd/inventory-adjustments/list-qbd-inventory-adjustments.d.mts +32 -0
- package/tools/qbd/inventory-adjustments/list-qbd-inventory-adjustments.d.mts.map +1 -0
- package/tools/qbd/inventory-adjustments/list-qbd-inventory-adjustments.d.ts +32 -0
- package/tools/qbd/inventory-adjustments/list-qbd-inventory-adjustments.d.ts.map +1 -0
- package/tools/qbd/inventory-adjustments/list-qbd-inventory-adjustments.js +112 -0
- package/tools/qbd/inventory-adjustments/list-qbd-inventory-adjustments.js.map +1 -0
- package/tools/qbd/inventory-adjustments/list-qbd-inventory-adjustments.mjs +108 -0
- package/tools/qbd/inventory-adjustments/list-qbd-inventory-adjustments.mjs.map +1 -0
- package/tools/qbd/inventory-adjustments/retrieve-qbd-inventory-adjustments.d.mts +32 -0
- package/tools/qbd/inventory-adjustments/retrieve-qbd-inventory-adjustments.d.mts.map +1 -0
- package/tools/qbd/inventory-adjustments/retrieve-qbd-inventory-adjustments.d.ts +32 -0
- package/tools/qbd/inventory-adjustments/retrieve-qbd-inventory-adjustments.d.ts.map +1 -0
- package/tools/qbd/inventory-adjustments/retrieve-qbd-inventory-adjustments.js +35 -0
- package/tools/qbd/inventory-adjustments/retrieve-qbd-inventory-adjustments.js.map +1 -0
- package/tools/qbd/inventory-adjustments/retrieve-qbd-inventory-adjustments.mjs +31 -0
- package/tools/qbd/inventory-adjustments/retrieve-qbd-inventory-adjustments.mjs.map +1 -0
- package/tools/qbd/inventory-adjustments/update-qbd-inventory-adjustments.d.mts +32 -0
- package/tools/qbd/inventory-adjustments/update-qbd-inventory-adjustments.d.mts.map +1 -0
- package/tools/qbd/inventory-adjustments/update-qbd-inventory-adjustments.d.ts +32 -0
- package/tools/qbd/inventory-adjustments/update-qbd-inventory-adjustments.d.ts.map +1 -0
- package/tools/qbd/inventory-adjustments/update-qbd-inventory-adjustments.js +115 -0
- package/tools/qbd/inventory-adjustments/update-qbd-inventory-adjustments.js.map +1 -0
- package/tools/qbd/inventory-adjustments/update-qbd-inventory-adjustments.mjs +111 -0
- package/tools/qbd/inventory-adjustments/update-qbd-inventory-adjustments.mjs.map +1 -0
- package/tools/qbd/inventory-assembly-items/create-qbd-inventory-assembly-items.d.mts +32 -0
- package/tools/qbd/inventory-assembly-items/create-qbd-inventory-assembly-items.d.mts.map +1 -0
- package/tools/qbd/inventory-assembly-items/create-qbd-inventory-assembly-items.d.ts +32 -0
- package/tools/qbd/inventory-assembly-items/create-qbd-inventory-assembly-items.d.ts.map +1 -0
- package/tools/qbd/inventory-assembly-items/create-qbd-inventory-assembly-items.js +153 -0
- package/tools/qbd/inventory-assembly-items/create-qbd-inventory-assembly-items.js.map +1 -0
- package/tools/qbd/inventory-assembly-items/create-qbd-inventory-assembly-items.mjs +149 -0
- package/tools/qbd/inventory-assembly-items/create-qbd-inventory-assembly-items.mjs.map +1 -0
- package/tools/qbd/inventory-assembly-items/list-qbd-inventory-assembly-items.d.mts +32 -0
- package/tools/qbd/inventory-assembly-items/list-qbd-inventory-assembly-items.d.mts.map +1 -0
- package/tools/qbd/inventory-assembly-items/list-qbd-inventory-assembly-items.d.ts +32 -0
- package/tools/qbd/inventory-assembly-items/list-qbd-inventory-assembly-items.d.ts.map +1 -0
- package/tools/qbd/inventory-assembly-items/list-qbd-inventory-assembly-items.js +93 -0
- package/tools/qbd/inventory-assembly-items/list-qbd-inventory-assembly-items.js.map +1 -0
- package/tools/qbd/inventory-assembly-items/list-qbd-inventory-assembly-items.mjs +89 -0
- package/tools/qbd/inventory-assembly-items/list-qbd-inventory-assembly-items.mjs.map +1 -0
- package/tools/qbd/inventory-assembly-items/retrieve-qbd-inventory-assembly-items.d.mts +32 -0
- package/tools/qbd/inventory-assembly-items/retrieve-qbd-inventory-assembly-items.d.mts.map +1 -0
- package/tools/qbd/inventory-assembly-items/retrieve-qbd-inventory-assembly-items.d.ts +32 -0
- package/tools/qbd/inventory-assembly-items/retrieve-qbd-inventory-assembly-items.d.ts.map +1 -0
- package/tools/qbd/inventory-assembly-items/retrieve-qbd-inventory-assembly-items.js +35 -0
- package/tools/qbd/inventory-assembly-items/retrieve-qbd-inventory-assembly-items.js.map +1 -0
- package/tools/qbd/inventory-assembly-items/retrieve-qbd-inventory-assembly-items.mjs +31 -0
- package/tools/qbd/inventory-assembly-items/retrieve-qbd-inventory-assembly-items.mjs.map +1 -0
- package/tools/qbd/inventory-assembly-items/update-qbd-inventory-assembly-items.d.mts +32 -0
- package/tools/qbd/inventory-assembly-items/update-qbd-inventory-assembly-items.d.mts.map +1 -0
- package/tools/qbd/inventory-assembly-items/update-qbd-inventory-assembly-items.d.ts +32 -0
- package/tools/qbd/inventory-assembly-items/update-qbd-inventory-assembly-items.d.ts.map +1 -0
- package/tools/qbd/inventory-assembly-items/update-qbd-inventory-assembly-items.js +160 -0
- package/tools/qbd/inventory-assembly-items/update-qbd-inventory-assembly-items.js.map +1 -0
- package/tools/qbd/inventory-assembly-items/update-qbd-inventory-assembly-items.mjs +156 -0
- package/tools/qbd/inventory-assembly-items/update-qbd-inventory-assembly-items.mjs.map +1 -0
- package/tools/qbd/inventory-items/create-qbd-inventory-items.d.mts +32 -0
- package/tools/qbd/inventory-items/create-qbd-inventory-items.d.mts.map +1 -0
- package/tools/qbd/inventory-items/create-qbd-inventory-items.d.ts +32 -0
- package/tools/qbd/inventory-items/create-qbd-inventory-items.d.ts.map +1 -0
- package/tools/qbd/inventory-items/create-qbd-inventory-items.js +139 -0
- package/tools/qbd/inventory-items/create-qbd-inventory-items.js.map +1 -0
- package/tools/qbd/inventory-items/create-qbd-inventory-items.mjs +135 -0
- package/tools/qbd/inventory-items/create-qbd-inventory-items.mjs.map +1 -0
- package/tools/qbd/inventory-items/list-qbd-inventory-items.d.mts +32 -0
- package/tools/qbd/inventory-items/list-qbd-inventory-items.d.mts.map +1 -0
- package/tools/qbd/inventory-items/list-qbd-inventory-items.d.ts +32 -0
- package/tools/qbd/inventory-items/list-qbd-inventory-items.d.ts.map +1 -0
- package/tools/qbd/inventory-items/list-qbd-inventory-items.js +93 -0
- package/tools/qbd/inventory-items/list-qbd-inventory-items.js.map +1 -0
- package/tools/qbd/inventory-items/list-qbd-inventory-items.mjs +89 -0
- package/tools/qbd/inventory-items/list-qbd-inventory-items.mjs.map +1 -0
- package/tools/qbd/inventory-items/retrieve-qbd-inventory-items.d.mts +32 -0
- package/tools/qbd/inventory-items/retrieve-qbd-inventory-items.d.mts.map +1 -0
- package/tools/qbd/inventory-items/retrieve-qbd-inventory-items.d.ts +32 -0
- package/tools/qbd/inventory-items/retrieve-qbd-inventory-items.d.ts.map +1 -0
- package/tools/qbd/inventory-items/retrieve-qbd-inventory-items.js +35 -0
- package/tools/qbd/inventory-items/retrieve-qbd-inventory-items.js.map +1 -0
- package/tools/qbd/inventory-items/retrieve-qbd-inventory-items.mjs +31 -0
- package/tools/qbd/inventory-items/retrieve-qbd-inventory-items.mjs.map +1 -0
- package/tools/qbd/inventory-items/update-qbd-inventory-items.d.mts +32 -0
- package/tools/qbd/inventory-items/update-qbd-inventory-items.d.mts.map +1 -0
- package/tools/qbd/inventory-items/update-qbd-inventory-items.d.ts +32 -0
- package/tools/qbd/inventory-items/update-qbd-inventory-items.d.ts.map +1 -0
- package/tools/qbd/inventory-items/update-qbd-inventory-items.js +142 -0
- package/tools/qbd/inventory-items/update-qbd-inventory-items.js.map +1 -0
- package/tools/qbd/inventory-items/update-qbd-inventory-items.mjs +138 -0
- package/tools/qbd/inventory-items/update-qbd-inventory-items.mjs.map +1 -0
- package/tools/qbd/inventory-sites/create-qbd-inventory-sites.d.mts +32 -0
- package/tools/qbd/inventory-sites/create-qbd-inventory-sites.d.mts.map +1 -0
- package/tools/qbd/inventory-sites/create-qbd-inventory-sites.d.ts +32 -0
- package/tools/qbd/inventory-sites/create-qbd-inventory-sites.d.ts.map +1 -0
- package/tools/qbd/inventory-sites/create-qbd-inventory-sites.js +94 -0
- package/tools/qbd/inventory-sites/create-qbd-inventory-sites.js.map +1 -0
- package/tools/qbd/inventory-sites/create-qbd-inventory-sites.mjs +90 -0
- package/tools/qbd/inventory-sites/create-qbd-inventory-sites.mjs.map +1 -0
- package/tools/qbd/inventory-sites/list-qbd-inventory-sites.d.mts +32 -0
- package/tools/qbd/inventory-sites/list-qbd-inventory-sites.d.mts.map +1 -0
- package/tools/qbd/inventory-sites/list-qbd-inventory-sites.d.ts +32 -0
- package/tools/qbd/inventory-sites/list-qbd-inventory-sites.d.ts.map +1 -0
- package/tools/qbd/inventory-sites/list-qbd-inventory-sites.js +78 -0
- package/tools/qbd/inventory-sites/list-qbd-inventory-sites.js.map +1 -0
- package/tools/qbd/inventory-sites/list-qbd-inventory-sites.mjs +74 -0
- package/tools/qbd/inventory-sites/list-qbd-inventory-sites.mjs.map +1 -0
- package/tools/qbd/inventory-sites/retrieve-qbd-inventory-sites.d.mts +32 -0
- package/tools/qbd/inventory-sites/retrieve-qbd-inventory-sites.d.mts.map +1 -0
- package/tools/qbd/inventory-sites/retrieve-qbd-inventory-sites.d.ts +32 -0
- package/tools/qbd/inventory-sites/retrieve-qbd-inventory-sites.d.ts.map +1 -0
- package/tools/qbd/inventory-sites/retrieve-qbd-inventory-sites.js +35 -0
- package/tools/qbd/inventory-sites/retrieve-qbd-inventory-sites.js.map +1 -0
- package/tools/qbd/inventory-sites/retrieve-qbd-inventory-sites.mjs +31 -0
- package/tools/qbd/inventory-sites/retrieve-qbd-inventory-sites.mjs.map +1 -0
- package/tools/qbd/inventory-sites/update-qbd-inventory-sites.d.mts +32 -0
- package/tools/qbd/inventory-sites/update-qbd-inventory-sites.d.mts.map +1 -0
- package/tools/qbd/inventory-sites/update-qbd-inventory-sites.d.ts +32 -0
- package/tools/qbd/inventory-sites/update-qbd-inventory-sites.d.ts.map +1 -0
- package/tools/qbd/inventory-sites/update-qbd-inventory-sites.js +114 -0
- package/tools/qbd/inventory-sites/update-qbd-inventory-sites.js.map +1 -0
- package/tools/qbd/inventory-sites/update-qbd-inventory-sites.mjs +110 -0
- package/tools/qbd/inventory-sites/update-qbd-inventory-sites.mjs.map +1 -0
- package/tools/qbd/invoices/create-qbd-invoices.d.mts +32 -0
- package/tools/qbd/invoices/create-qbd-invoices.d.mts.map +1 -0
- package/tools/qbd/invoices/create-qbd-invoices.d.ts +32 -0
- package/tools/qbd/invoices/create-qbd-invoices.d.ts.map +1 -0
- package/tools/qbd/invoices/create-qbd-invoices.js +430 -0
- package/tools/qbd/invoices/create-qbd-invoices.js.map +1 -0
- package/tools/qbd/invoices/create-qbd-invoices.mjs +426 -0
- package/tools/qbd/invoices/create-qbd-invoices.mjs.map +1 -0
- package/tools/qbd/invoices/delete-qbd-invoices.d.mts +32 -0
- package/tools/qbd/invoices/delete-qbd-invoices.d.mts.map +1 -0
- package/tools/qbd/invoices/delete-qbd-invoices.d.ts +32 -0
- package/tools/qbd/invoices/delete-qbd-invoices.d.ts.map +1 -0
- package/tools/qbd/invoices/delete-qbd-invoices.js +35 -0
- package/tools/qbd/invoices/delete-qbd-invoices.js.map +1 -0
- package/tools/qbd/invoices/delete-qbd-invoices.mjs +31 -0
- package/tools/qbd/invoices/delete-qbd-invoices.mjs.map +1 -0
- package/tools/qbd/invoices/list-qbd-invoices.d.mts +32 -0
- package/tools/qbd/invoices/list-qbd-invoices.d.mts.map +1 -0
- package/tools/qbd/invoices/list-qbd-invoices.d.ts +32 -0
- package/tools/qbd/invoices/list-qbd-invoices.d.ts.map +1 -0
- package/tools/qbd/invoices/list-qbd-invoices.js +125 -0
- package/tools/qbd/invoices/list-qbd-invoices.js.map +1 -0
- package/tools/qbd/invoices/list-qbd-invoices.mjs +121 -0
- package/tools/qbd/invoices/list-qbd-invoices.mjs.map +1 -0
- package/tools/qbd/invoices/retrieve-qbd-invoices.d.mts +32 -0
- package/tools/qbd/invoices/retrieve-qbd-invoices.d.mts.map +1 -0
- package/tools/qbd/invoices/retrieve-qbd-invoices.d.ts +32 -0
- package/tools/qbd/invoices/retrieve-qbd-invoices.d.ts.map +1 -0
- package/tools/qbd/invoices/retrieve-qbd-invoices.js +35 -0
- package/tools/qbd/invoices/retrieve-qbd-invoices.js.map +1 -0
- package/tools/qbd/invoices/retrieve-qbd-invoices.mjs +31 -0
- package/tools/qbd/invoices/retrieve-qbd-invoices.mjs.map +1 -0
- package/tools/qbd/invoices/update-qbd-invoices.d.mts +32 -0
- package/tools/qbd/invoices/update-qbd-invoices.d.mts.map +1 -0
- package/tools/qbd/invoices/update-qbd-invoices.d.ts +32 -0
- package/tools/qbd/invoices/update-qbd-invoices.d.ts.map +1 -0
- package/tools/qbd/invoices/update-qbd-invoices.js +468 -0
- package/tools/qbd/invoices/update-qbd-invoices.js.map +1 -0
- package/tools/qbd/invoices/update-qbd-invoices.mjs +464 -0
- package/tools/qbd/invoices/update-qbd-invoices.mjs.map +1 -0
- package/tools/qbd/item-groups/create-qbd-item-groups.d.mts +32 -0
- package/tools/qbd/item-groups/create-qbd-item-groups.d.mts.map +1 -0
- package/tools/qbd/item-groups/create-qbd-item-groups.d.ts +32 -0
- package/tools/qbd/item-groups/create-qbd-item-groups.d.ts.map +1 -0
- package/tools/qbd/item-groups/create-qbd-item-groups.js +96 -0
- package/tools/qbd/item-groups/create-qbd-item-groups.js.map +1 -0
- package/tools/qbd/item-groups/create-qbd-item-groups.mjs +92 -0
- package/tools/qbd/item-groups/create-qbd-item-groups.mjs.map +1 -0
- package/tools/qbd/item-groups/list-qbd-item-groups.d.mts +32 -0
- package/tools/qbd/item-groups/list-qbd-item-groups.d.mts.map +1 -0
- package/tools/qbd/item-groups/list-qbd-item-groups.d.ts +32 -0
- package/tools/qbd/item-groups/list-qbd-item-groups.d.ts.map +1 -0
- package/tools/qbd/item-groups/list-qbd-item-groups.js +86 -0
- package/tools/qbd/item-groups/list-qbd-item-groups.js.map +1 -0
- package/tools/qbd/item-groups/list-qbd-item-groups.mjs +82 -0
- package/tools/qbd/item-groups/list-qbd-item-groups.mjs.map +1 -0
- package/tools/qbd/item-groups/retrieve-qbd-item-groups.d.mts +32 -0
- package/tools/qbd/item-groups/retrieve-qbd-item-groups.d.mts.map +1 -0
- package/tools/qbd/item-groups/retrieve-qbd-item-groups.d.ts +32 -0
- package/tools/qbd/item-groups/retrieve-qbd-item-groups.d.ts.map +1 -0
- package/tools/qbd/item-groups/retrieve-qbd-item-groups.js +35 -0
- package/tools/qbd/item-groups/retrieve-qbd-item-groups.js.map +1 -0
- package/tools/qbd/item-groups/retrieve-qbd-item-groups.mjs +31 -0
- package/tools/qbd/item-groups/retrieve-qbd-item-groups.mjs.map +1 -0
- package/tools/qbd/item-groups/update-qbd-item-groups.d.mts +32 -0
- package/tools/qbd/item-groups/update-qbd-item-groups.d.mts.map +1 -0
- package/tools/qbd/item-groups/update-qbd-item-groups.d.ts +32 -0
- package/tools/qbd/item-groups/update-qbd-item-groups.d.ts.map +1 -0
- package/tools/qbd/item-groups/update-qbd-item-groups.js +108 -0
- package/tools/qbd/item-groups/update-qbd-item-groups.js.map +1 -0
- package/tools/qbd/item-groups/update-qbd-item-groups.mjs +104 -0
- package/tools/qbd/item-groups/update-qbd-item-groups.mjs.map +1 -0
- package/tools/qbd/item-receipts/create-qbd-item-receipts.d.mts +32 -0
- package/tools/qbd/item-receipts/create-qbd-item-receipts.d.mts.map +1 -0
- package/tools/qbd/item-receipts/create-qbd-item-receipts.d.ts +32 -0
- package/tools/qbd/item-receipts/create-qbd-item-receipts.d.ts.map +1 -0
- package/tools/qbd/item-receipts/create-qbd-item-receipts.js +305 -0
- package/tools/qbd/item-receipts/create-qbd-item-receipts.js.map +1 -0
- package/tools/qbd/item-receipts/create-qbd-item-receipts.mjs +301 -0
- package/tools/qbd/item-receipts/create-qbd-item-receipts.mjs.map +1 -0
- package/tools/qbd/item-receipts/delete-qbd-item-receipts.d.mts +32 -0
- package/tools/qbd/item-receipts/delete-qbd-item-receipts.d.mts.map +1 -0
- package/tools/qbd/item-receipts/delete-qbd-item-receipts.d.ts +32 -0
- package/tools/qbd/item-receipts/delete-qbd-item-receipts.d.ts.map +1 -0
- package/tools/qbd/item-receipts/delete-qbd-item-receipts.js +35 -0
- package/tools/qbd/item-receipts/delete-qbd-item-receipts.js.map +1 -0
- package/tools/qbd/item-receipts/delete-qbd-item-receipts.mjs +31 -0
- package/tools/qbd/item-receipts/delete-qbd-item-receipts.mjs.map +1 -0
- package/tools/qbd/item-receipts/list-qbd-item-receipts.d.mts +32 -0
- package/tools/qbd/item-receipts/list-qbd-item-receipts.d.mts.map +1 -0
- package/tools/qbd/item-receipts/list-qbd-item-receipts.d.ts +32 -0
- package/tools/qbd/item-receipts/list-qbd-item-receipts.d.ts.map +1 -0
- package/tools/qbd/item-receipts/list-qbd-item-receipts.js +120 -0
- package/tools/qbd/item-receipts/list-qbd-item-receipts.js.map +1 -0
- package/tools/qbd/item-receipts/list-qbd-item-receipts.mjs +116 -0
- package/tools/qbd/item-receipts/list-qbd-item-receipts.mjs.map +1 -0
- package/tools/qbd/item-receipts/retrieve-qbd-item-receipts.d.mts +32 -0
- package/tools/qbd/item-receipts/retrieve-qbd-item-receipts.d.mts.map +1 -0
- package/tools/qbd/item-receipts/retrieve-qbd-item-receipts.d.ts +32 -0
- package/tools/qbd/item-receipts/retrieve-qbd-item-receipts.d.ts.map +1 -0
- package/tools/qbd/item-receipts/retrieve-qbd-item-receipts.js +35 -0
- package/tools/qbd/item-receipts/retrieve-qbd-item-receipts.js.map +1 -0
- package/tools/qbd/item-receipts/retrieve-qbd-item-receipts.mjs +31 -0
- package/tools/qbd/item-receipts/retrieve-qbd-item-receipts.mjs.map +1 -0
- package/tools/qbd/item-receipts/update-qbd-item-receipts.d.mts +32 -0
- package/tools/qbd/item-receipts/update-qbd-item-receipts.d.mts.map +1 -0
- package/tools/qbd/item-receipts/update-qbd-item-receipts.d.ts +32 -0
- package/tools/qbd/item-receipts/update-qbd-item-receipts.d.ts.map +1 -0
- package/tools/qbd/item-receipts/update-qbd-item-receipts.js +329 -0
- package/tools/qbd/item-receipts/update-qbd-item-receipts.js.map +1 -0
- package/tools/qbd/item-receipts/update-qbd-item-receipts.mjs +325 -0
- package/tools/qbd/item-receipts/update-qbd-item-receipts.mjs.map +1 -0
- package/tools/qbd/item-sites/list-qbd-item-sites.d.mts +32 -0
- package/tools/qbd/item-sites/list-qbd-item-sites.d.mts.map +1 -0
- package/tools/qbd/item-sites/list-qbd-item-sites.d.ts +32 -0
- package/tools/qbd/item-sites/list-qbd-item-sites.d.ts.map +1 -0
- package/tools/qbd/item-sites/list-qbd-item-sites.js +83 -0
- package/tools/qbd/item-sites/list-qbd-item-sites.js.map +1 -0
- package/tools/qbd/item-sites/list-qbd-item-sites.mjs +79 -0
- package/tools/qbd/item-sites/list-qbd-item-sites.mjs.map +1 -0
- package/tools/qbd/item-sites/retrieve-qbd-item-sites.d.mts +32 -0
- package/tools/qbd/item-sites/retrieve-qbd-item-sites.d.mts.map +1 -0
- package/tools/qbd/item-sites/retrieve-qbd-item-sites.d.ts +32 -0
- package/tools/qbd/item-sites/retrieve-qbd-item-sites.d.ts.map +1 -0
- package/tools/qbd/item-sites/retrieve-qbd-item-sites.js +35 -0
- package/tools/qbd/item-sites/retrieve-qbd-item-sites.js.map +1 -0
- package/tools/qbd/item-sites/retrieve-qbd-item-sites.mjs +31 -0
- package/tools/qbd/item-sites/retrieve-qbd-item-sites.mjs.map +1 -0
- package/tools/qbd/journal-entries/create-qbd-journal-entries.d.mts +32 -0
- package/tools/qbd/journal-entries/create-qbd-journal-entries.d.mts.map +1 -0
- package/tools/qbd/journal-entries/create-qbd-journal-entries.d.ts +32 -0
- package/tools/qbd/journal-entries/create-qbd-journal-entries.d.ts.map +1 -0
- package/tools/qbd/journal-entries/create-qbd-journal-entries.js +142 -0
- package/tools/qbd/journal-entries/create-qbd-journal-entries.js.map +1 -0
- package/tools/qbd/journal-entries/create-qbd-journal-entries.mjs +138 -0
- package/tools/qbd/journal-entries/create-qbd-journal-entries.mjs.map +1 -0
- package/tools/qbd/journal-entries/delete-qbd-journal-entries.d.mts +32 -0
- package/tools/qbd/journal-entries/delete-qbd-journal-entries.d.mts.map +1 -0
- package/tools/qbd/journal-entries/delete-qbd-journal-entries.d.ts +32 -0
- package/tools/qbd/journal-entries/delete-qbd-journal-entries.d.ts.map +1 -0
- package/tools/qbd/journal-entries/delete-qbd-journal-entries.js +35 -0
- package/tools/qbd/journal-entries/delete-qbd-journal-entries.js.map +1 -0
- package/tools/qbd/journal-entries/delete-qbd-journal-entries.mjs +31 -0
- package/tools/qbd/journal-entries/delete-qbd-journal-entries.mjs.map +1 -0
- package/tools/qbd/journal-entries/list-qbd-journal-entries.d.mts +32 -0
- package/tools/qbd/journal-entries/list-qbd-journal-entries.d.mts.map +1 -0
- package/tools/qbd/journal-entries/list-qbd-journal-entries.d.ts +32 -0
- package/tools/qbd/journal-entries/list-qbd-journal-entries.d.ts.map +1 -0
- package/tools/qbd/journal-entries/list-qbd-journal-entries.js +116 -0
- package/tools/qbd/journal-entries/list-qbd-journal-entries.js.map +1 -0
- package/tools/qbd/journal-entries/list-qbd-journal-entries.mjs +112 -0
- package/tools/qbd/journal-entries/list-qbd-journal-entries.mjs.map +1 -0
- package/tools/qbd/journal-entries/retrieve-qbd-journal-entries.d.mts +32 -0
- package/tools/qbd/journal-entries/retrieve-qbd-journal-entries.d.mts.map +1 -0
- package/tools/qbd/journal-entries/retrieve-qbd-journal-entries.d.ts +32 -0
- package/tools/qbd/journal-entries/retrieve-qbd-journal-entries.d.ts.map +1 -0
- package/tools/qbd/journal-entries/retrieve-qbd-journal-entries.js +35 -0
- package/tools/qbd/journal-entries/retrieve-qbd-journal-entries.js.map +1 -0
- package/tools/qbd/journal-entries/retrieve-qbd-journal-entries.mjs +31 -0
- package/tools/qbd/journal-entries/retrieve-qbd-journal-entries.mjs.map +1 -0
- package/tools/qbd/journal-entries/update-qbd-journal-entries.d.mts +32 -0
- package/tools/qbd/journal-entries/update-qbd-journal-entries.d.mts.map +1 -0
- package/tools/qbd/journal-entries/update-qbd-journal-entries.d.ts +32 -0
- package/tools/qbd/journal-entries/update-qbd-journal-entries.d.ts.map +1 -0
- package/tools/qbd/journal-entries/update-qbd-journal-entries.js +112 -0
- package/tools/qbd/journal-entries/update-qbd-journal-entries.js.map +1 -0
- package/tools/qbd/journal-entries/update-qbd-journal-entries.mjs +108 -0
- package/tools/qbd/journal-entries/update-qbd-journal-entries.mjs.map +1 -0
- package/tools/qbd/non-inventory-items/create-qbd-non-inventory-items.d.mts +32 -0
- package/tools/qbd/non-inventory-items/create-qbd-non-inventory-items.d.mts.map +1 -0
- package/tools/qbd/non-inventory-items/create-qbd-non-inventory-items.d.ts +32 -0
- package/tools/qbd/non-inventory-items/create-qbd-non-inventory-items.d.ts.map +1 -0
- package/tools/qbd/non-inventory-items/create-qbd-non-inventory-items.js +144 -0
- package/tools/qbd/non-inventory-items/create-qbd-non-inventory-items.js.map +1 -0
- package/tools/qbd/non-inventory-items/create-qbd-non-inventory-items.mjs +140 -0
- package/tools/qbd/non-inventory-items/create-qbd-non-inventory-items.mjs.map +1 -0
- package/tools/qbd/non-inventory-items/list-qbd-non-inventory-items.d.mts +32 -0
- package/tools/qbd/non-inventory-items/list-qbd-non-inventory-items.d.mts.map +1 -0
- package/tools/qbd/non-inventory-items/list-qbd-non-inventory-items.d.ts +32 -0
- package/tools/qbd/non-inventory-items/list-qbd-non-inventory-items.d.ts.map +1 -0
- package/tools/qbd/non-inventory-items/list-qbd-non-inventory-items.js +93 -0
- package/tools/qbd/non-inventory-items/list-qbd-non-inventory-items.js.map +1 -0
- package/tools/qbd/non-inventory-items/list-qbd-non-inventory-items.mjs +89 -0
- package/tools/qbd/non-inventory-items/list-qbd-non-inventory-items.mjs.map +1 -0
- package/tools/qbd/non-inventory-items/retrieve-qbd-non-inventory-items.d.mts +32 -0
- package/tools/qbd/non-inventory-items/retrieve-qbd-non-inventory-items.d.mts.map +1 -0
- package/tools/qbd/non-inventory-items/retrieve-qbd-non-inventory-items.d.ts +32 -0
- package/tools/qbd/non-inventory-items/retrieve-qbd-non-inventory-items.d.ts.map +1 -0
- package/tools/qbd/non-inventory-items/retrieve-qbd-non-inventory-items.js +35 -0
- package/tools/qbd/non-inventory-items/retrieve-qbd-non-inventory-items.js.map +1 -0
- package/tools/qbd/non-inventory-items/retrieve-qbd-non-inventory-items.mjs +31 -0
- package/tools/qbd/non-inventory-items/retrieve-qbd-non-inventory-items.mjs.map +1 -0
- package/tools/qbd/non-inventory-items/update-qbd-non-inventory-items.d.mts +32 -0
- package/tools/qbd/non-inventory-items/update-qbd-non-inventory-items.d.mts.map +1 -0
- package/tools/qbd/non-inventory-items/update-qbd-non-inventory-items.d.ts +32 -0
- package/tools/qbd/non-inventory-items/update-qbd-non-inventory-items.d.ts.map +1 -0
- package/tools/qbd/non-inventory-items/update-qbd-non-inventory-items.js +164 -0
- package/tools/qbd/non-inventory-items/update-qbd-non-inventory-items.js.map +1 -0
- package/tools/qbd/non-inventory-items/update-qbd-non-inventory-items.mjs +160 -0
- package/tools/qbd/non-inventory-items/update-qbd-non-inventory-items.mjs.map +1 -0
- package/tools/qbd/other-names/create-qbd-other-names.d.mts +32 -0
- package/tools/qbd/other-names/create-qbd-other-names.d.mts.map +1 -0
- package/tools/qbd/other-names/create-qbd-other-names.d.ts +32 -0
- package/tools/qbd/other-names/create-qbd-other-names.d.ts.map +1 -0
- package/tools/qbd/other-names/create-qbd-other-names.js +142 -0
- package/tools/qbd/other-names/create-qbd-other-names.js.map +1 -0
- package/tools/qbd/other-names/create-qbd-other-names.mjs +138 -0
- package/tools/qbd/other-names/create-qbd-other-names.mjs.map +1 -0
- package/tools/qbd/other-names/list-qbd-other-names.d.mts +32 -0
- package/tools/qbd/other-names/list-qbd-other-names.d.mts.map +1 -0
- package/tools/qbd/other-names/list-qbd-other-names.d.ts +32 -0
- package/tools/qbd/other-names/list-qbd-other-names.d.ts.map +1 -0
- package/tools/qbd/other-names/list-qbd-other-names.js +82 -0
- package/tools/qbd/other-names/list-qbd-other-names.js.map +1 -0
- package/tools/qbd/other-names/list-qbd-other-names.mjs +78 -0
- package/tools/qbd/other-names/list-qbd-other-names.mjs.map +1 -0
- package/tools/qbd/other-names/retrieve-qbd-other-names.d.mts +32 -0
- package/tools/qbd/other-names/retrieve-qbd-other-names.d.mts.map +1 -0
- package/tools/qbd/other-names/retrieve-qbd-other-names.d.ts +32 -0
- package/tools/qbd/other-names/retrieve-qbd-other-names.d.ts.map +1 -0
- package/tools/qbd/other-names/retrieve-qbd-other-names.js +35 -0
- package/tools/qbd/other-names/retrieve-qbd-other-names.js.map +1 -0
- package/tools/qbd/other-names/retrieve-qbd-other-names.mjs +31 -0
- package/tools/qbd/other-names/retrieve-qbd-other-names.mjs.map +1 -0
- package/tools/qbd/other-names/update-qbd-other-names.d.mts +32 -0
- package/tools/qbd/other-names/update-qbd-other-names.d.mts.map +1 -0
- package/tools/qbd/other-names/update-qbd-other-names.d.ts +32 -0
- package/tools/qbd/other-names/update-qbd-other-names.d.ts.map +1 -0
- package/tools/qbd/other-names/update-qbd-other-names.js +146 -0
- package/tools/qbd/other-names/update-qbd-other-names.js.map +1 -0
- package/tools/qbd/other-names/update-qbd-other-names.mjs +142 -0
- package/tools/qbd/other-names/update-qbd-other-names.mjs.map +1 -0
- package/tools/qbd/payment-methods/create-qbd-payment-methods.d.mts +32 -0
- package/tools/qbd/payment-methods/create-qbd-payment-methods.d.mts.map +1 -0
- package/tools/qbd/payment-methods/create-qbd-payment-methods.d.ts +32 -0
- package/tools/qbd/payment-methods/create-qbd-payment-methods.d.ts.map +1 -0
- package/tools/qbd/payment-methods/create-qbd-payment-methods.js +56 -0
- package/tools/qbd/payment-methods/create-qbd-payment-methods.js.map +1 -0
- package/tools/qbd/payment-methods/create-qbd-payment-methods.mjs +52 -0
- package/tools/qbd/payment-methods/create-qbd-payment-methods.mjs.map +1 -0
- package/tools/qbd/payment-methods/list-qbd-payment-methods.d.mts +32 -0
- package/tools/qbd/payment-methods/list-qbd-payment-methods.d.mts.map +1 -0
- package/tools/qbd/payment-methods/list-qbd-payment-methods.d.ts +32 -0
- package/tools/qbd/payment-methods/list-qbd-payment-methods.d.ts.map +1 -0
- package/tools/qbd/payment-methods/list-qbd-payment-methods.js +99 -0
- package/tools/qbd/payment-methods/list-qbd-payment-methods.js.map +1 -0
- package/tools/qbd/payment-methods/list-qbd-payment-methods.mjs +95 -0
- package/tools/qbd/payment-methods/list-qbd-payment-methods.mjs.map +1 -0
- package/tools/qbd/payment-methods/retrieve-qbd-payment-methods.d.mts +32 -0
- package/tools/qbd/payment-methods/retrieve-qbd-payment-methods.d.mts.map +1 -0
- package/tools/qbd/payment-methods/retrieve-qbd-payment-methods.d.ts +32 -0
- package/tools/qbd/payment-methods/retrieve-qbd-payment-methods.d.ts.map +1 -0
- package/tools/qbd/payment-methods/retrieve-qbd-payment-methods.js +35 -0
- package/tools/qbd/payment-methods/retrieve-qbd-payment-methods.js.map +1 -0
- package/tools/qbd/payment-methods/retrieve-qbd-payment-methods.mjs +31 -0
- package/tools/qbd/payment-methods/retrieve-qbd-payment-methods.mjs.map +1 -0
- package/tools/qbd/payroll-wage-items/create-qbd-payroll-wage-items.d.mts +32 -0
- package/tools/qbd/payroll-wage-items/create-qbd-payroll-wage-items.d.mts.map +1 -0
- package/tools/qbd/payroll-wage-items/create-qbd-payroll-wage-items.d.ts +32 -0
- package/tools/qbd/payroll-wage-items/create-qbd-payroll-wage-items.d.ts.map +1 -0
- package/tools/qbd/payroll-wage-items/create-qbd-payroll-wage-items.js +58 -0
- package/tools/qbd/payroll-wage-items/create-qbd-payroll-wage-items.js.map +1 -0
- package/tools/qbd/payroll-wage-items/create-qbd-payroll-wage-items.mjs +54 -0
- package/tools/qbd/payroll-wage-items/create-qbd-payroll-wage-items.mjs.map +1 -0
- package/tools/qbd/payroll-wage-items/list-qbd-payroll-wage-items.d.mts +32 -0
- package/tools/qbd/payroll-wage-items/list-qbd-payroll-wage-items.d.mts.map +1 -0
- package/tools/qbd/payroll-wage-items/list-qbd-payroll-wage-items.d.ts +32 -0
- package/tools/qbd/payroll-wage-items/list-qbd-payroll-wage-items.d.ts.map +1 -0
- package/tools/qbd/payroll-wage-items/list-qbd-payroll-wage-items.js +86 -0
- package/tools/qbd/payroll-wage-items/list-qbd-payroll-wage-items.js.map +1 -0
- package/tools/qbd/payroll-wage-items/list-qbd-payroll-wage-items.mjs +82 -0
- package/tools/qbd/payroll-wage-items/list-qbd-payroll-wage-items.mjs.map +1 -0
- package/tools/qbd/payroll-wage-items/retrieve-qbd-payroll-wage-items.d.mts +32 -0
- package/tools/qbd/payroll-wage-items/retrieve-qbd-payroll-wage-items.d.mts.map +1 -0
- package/tools/qbd/payroll-wage-items/retrieve-qbd-payroll-wage-items.d.ts +32 -0
- package/tools/qbd/payroll-wage-items/retrieve-qbd-payroll-wage-items.d.ts.map +1 -0
- package/tools/qbd/payroll-wage-items/retrieve-qbd-payroll-wage-items.js +35 -0
- package/tools/qbd/payroll-wage-items/retrieve-qbd-payroll-wage-items.js.map +1 -0
- package/tools/qbd/payroll-wage-items/retrieve-qbd-payroll-wage-items.mjs +31 -0
- package/tools/qbd/payroll-wage-items/retrieve-qbd-payroll-wage-items.mjs.map +1 -0
- package/tools/qbd/preferences/retrieve-qbd-preferences.d.mts +32 -0
- package/tools/qbd/preferences/retrieve-qbd-preferences.d.mts.map +1 -0
- package/tools/qbd/preferences/retrieve-qbd-preferences.d.ts +32 -0
- package/tools/qbd/preferences/retrieve-qbd-preferences.d.ts.map +1 -0
- package/tools/qbd/preferences/retrieve-qbd-preferences.js +31 -0
- package/tools/qbd/preferences/retrieve-qbd-preferences.js.map +1 -0
- package/tools/qbd/preferences/retrieve-qbd-preferences.mjs +27 -0
- package/tools/qbd/preferences/retrieve-qbd-preferences.mjs.map +1 -0
- package/tools/qbd/price-levels/create-qbd-price-levels.d.mts +32 -0
- package/tools/qbd/price-levels/create-qbd-price-levels.d.mts.map +1 -0
- package/tools/qbd/price-levels/create-qbd-price-levels.d.ts +32 -0
- package/tools/qbd/price-levels/create-qbd-price-levels.d.ts.map +1 -0
- package/tools/qbd/price-levels/create-qbd-price-levels.js +78 -0
- package/tools/qbd/price-levels/create-qbd-price-levels.js.map +1 -0
- package/tools/qbd/price-levels/create-qbd-price-levels.mjs +74 -0
- package/tools/qbd/price-levels/create-qbd-price-levels.mjs.map +1 -0
- package/tools/qbd/price-levels/list-qbd-price-levels.d.mts +32 -0
- package/tools/qbd/price-levels/list-qbd-price-levels.d.mts.map +1 -0
- package/tools/qbd/price-levels/list-qbd-price-levels.d.ts +32 -0
- package/tools/qbd/price-levels/list-qbd-price-levels.d.ts.map +1 -0
- package/tools/qbd/price-levels/list-qbd-price-levels.js +96 -0
- package/tools/qbd/price-levels/list-qbd-price-levels.js.map +1 -0
- package/tools/qbd/price-levels/list-qbd-price-levels.mjs +92 -0
- package/tools/qbd/price-levels/list-qbd-price-levels.mjs.map +1 -0
- package/tools/qbd/price-levels/retrieve-qbd-price-levels.d.mts +32 -0
- package/tools/qbd/price-levels/retrieve-qbd-price-levels.d.mts.map +1 -0
- package/tools/qbd/price-levels/retrieve-qbd-price-levels.d.ts +32 -0
- package/tools/qbd/price-levels/retrieve-qbd-price-levels.d.ts.map +1 -0
- package/tools/qbd/price-levels/retrieve-qbd-price-levels.js +35 -0
- package/tools/qbd/price-levels/retrieve-qbd-price-levels.js.map +1 -0
- package/tools/qbd/price-levels/retrieve-qbd-price-levels.mjs +31 -0
- package/tools/qbd/price-levels/retrieve-qbd-price-levels.mjs.map +1 -0
- package/tools/qbd/price-levels/update-qbd-price-levels.d.mts +32 -0
- package/tools/qbd/price-levels/update-qbd-price-levels.d.mts.map +1 -0
- package/tools/qbd/price-levels/update-qbd-price-levels.d.ts +32 -0
- package/tools/qbd/price-levels/update-qbd-price-levels.d.ts.map +1 -0
- package/tools/qbd/price-levels/update-qbd-price-levels.js +86 -0
- package/tools/qbd/price-levels/update-qbd-price-levels.js.map +1 -0
- package/tools/qbd/price-levels/update-qbd-price-levels.mjs +82 -0
- package/tools/qbd/price-levels/update-qbd-price-levels.mjs.map +1 -0
- package/tools/qbd/purchase-orders/create-qbd-purchase-orders.d.mts +32 -0
- package/tools/qbd/purchase-orders/create-qbd-purchase-orders.d.mts.map +1 -0
- package/tools/qbd/purchase-orders/create-qbd-purchase-orders.d.ts +32 -0
- package/tools/qbd/purchase-orders/create-qbd-purchase-orders.d.ts.map +1 -0
- package/tools/qbd/purchase-orders/create-qbd-purchase-orders.js +353 -0
- package/tools/qbd/purchase-orders/create-qbd-purchase-orders.js.map +1 -0
- package/tools/qbd/purchase-orders/create-qbd-purchase-orders.mjs +349 -0
- package/tools/qbd/purchase-orders/create-qbd-purchase-orders.mjs.map +1 -0
- package/tools/qbd/purchase-orders/delete-qbd-purchase-orders.d.mts +32 -0
- package/tools/qbd/purchase-orders/delete-qbd-purchase-orders.d.mts.map +1 -0
- package/tools/qbd/purchase-orders/delete-qbd-purchase-orders.d.ts +32 -0
- package/tools/qbd/purchase-orders/delete-qbd-purchase-orders.d.ts.map +1 -0
- package/tools/qbd/purchase-orders/delete-qbd-purchase-orders.js +35 -0
- package/tools/qbd/purchase-orders/delete-qbd-purchase-orders.js.map +1 -0
- package/tools/qbd/purchase-orders/delete-qbd-purchase-orders.mjs +31 -0
- package/tools/qbd/purchase-orders/delete-qbd-purchase-orders.mjs.map +1 -0
- package/tools/qbd/purchase-orders/list-qbd-purchase-orders.d.mts +32 -0
- package/tools/qbd/purchase-orders/list-qbd-purchase-orders.d.mts.map +1 -0
- package/tools/qbd/purchase-orders/list-qbd-purchase-orders.d.ts +32 -0
- package/tools/qbd/purchase-orders/list-qbd-purchase-orders.d.ts.map +1 -0
- package/tools/qbd/purchase-orders/list-qbd-purchase-orders.js +120 -0
- package/tools/qbd/purchase-orders/list-qbd-purchase-orders.js.map +1 -0
- package/tools/qbd/purchase-orders/list-qbd-purchase-orders.mjs +116 -0
- package/tools/qbd/purchase-orders/list-qbd-purchase-orders.mjs.map +1 -0
- package/tools/qbd/purchase-orders/retrieve-qbd-purchase-orders.d.mts +32 -0
- package/tools/qbd/purchase-orders/retrieve-qbd-purchase-orders.d.mts.map +1 -0
- package/tools/qbd/purchase-orders/retrieve-qbd-purchase-orders.d.ts +32 -0
- package/tools/qbd/purchase-orders/retrieve-qbd-purchase-orders.d.ts.map +1 -0
- package/tools/qbd/purchase-orders/retrieve-qbd-purchase-orders.js +35 -0
- package/tools/qbd/purchase-orders/retrieve-qbd-purchase-orders.js.map +1 -0
- package/tools/qbd/purchase-orders/retrieve-qbd-purchase-orders.mjs +31 -0
- package/tools/qbd/purchase-orders/retrieve-qbd-purchase-orders.mjs.map +1 -0
- package/tools/qbd/purchase-orders/update-qbd-purchase-orders.d.mts +32 -0
- package/tools/qbd/purchase-orders/update-qbd-purchase-orders.d.mts.map +1 -0
- package/tools/qbd/purchase-orders/update-qbd-purchase-orders.d.ts +32 -0
- package/tools/qbd/purchase-orders/update-qbd-purchase-orders.d.ts.map +1 -0
- package/tools/qbd/purchase-orders/update-qbd-purchase-orders.js +416 -0
- package/tools/qbd/purchase-orders/update-qbd-purchase-orders.js.map +1 -0
- package/tools/qbd/purchase-orders/update-qbd-purchase-orders.mjs +412 -0
- package/tools/qbd/purchase-orders/update-qbd-purchase-orders.mjs.map +1 -0
- package/tools/qbd/receive-payments/create-qbd-receive-payments.d.mts +32 -0
- package/tools/qbd/receive-payments/create-qbd-receive-payments.d.mts.map +1 -0
- package/tools/qbd/receive-payments/create-qbd-receive-payments.d.ts +32 -0
- package/tools/qbd/receive-payments/create-qbd-receive-payments.d.ts.map +1 -0
- package/tools/qbd/receive-payments/create-qbd-receive-payments.js +254 -0
- package/tools/qbd/receive-payments/create-qbd-receive-payments.js.map +1 -0
- package/tools/qbd/receive-payments/create-qbd-receive-payments.mjs +250 -0
- package/tools/qbd/receive-payments/create-qbd-receive-payments.mjs.map +1 -0
- package/tools/qbd/receive-payments/delete-qbd-receive-payments.d.mts +32 -0
- package/tools/qbd/receive-payments/delete-qbd-receive-payments.d.mts.map +1 -0
- package/tools/qbd/receive-payments/delete-qbd-receive-payments.d.ts +32 -0
- package/tools/qbd/receive-payments/delete-qbd-receive-payments.d.ts.map +1 -0
- package/tools/qbd/receive-payments/delete-qbd-receive-payments.js +35 -0
- package/tools/qbd/receive-payments/delete-qbd-receive-payments.js.map +1 -0
- package/tools/qbd/receive-payments/delete-qbd-receive-payments.mjs +31 -0
- package/tools/qbd/receive-payments/delete-qbd-receive-payments.mjs.map +1 -0
- package/tools/qbd/receive-payments/list-qbd-receive-payments.d.mts +32 -0
- package/tools/qbd/receive-payments/list-qbd-receive-payments.d.mts.map +1 -0
- package/tools/qbd/receive-payments/list-qbd-receive-payments.d.ts +32 -0
- package/tools/qbd/receive-payments/list-qbd-receive-payments.d.ts.map +1 -0
- package/tools/qbd/receive-payments/list-qbd-receive-payments.js +116 -0
- package/tools/qbd/receive-payments/list-qbd-receive-payments.js.map +1 -0
- package/tools/qbd/receive-payments/list-qbd-receive-payments.mjs +112 -0
- package/tools/qbd/receive-payments/list-qbd-receive-payments.mjs.map +1 -0
- package/tools/qbd/receive-payments/retrieve-qbd-receive-payments.d.mts +32 -0
- package/tools/qbd/receive-payments/retrieve-qbd-receive-payments.d.mts.map +1 -0
- package/tools/qbd/receive-payments/retrieve-qbd-receive-payments.d.ts +32 -0
- package/tools/qbd/receive-payments/retrieve-qbd-receive-payments.d.ts.map +1 -0
- package/tools/qbd/receive-payments/retrieve-qbd-receive-payments.js +35 -0
- package/tools/qbd/receive-payments/retrieve-qbd-receive-payments.js.map +1 -0
- package/tools/qbd/receive-payments/retrieve-qbd-receive-payments.mjs +31 -0
- package/tools/qbd/receive-payments/retrieve-qbd-receive-payments.mjs.map +1 -0
- package/tools/qbd/receive-payments/update-qbd-receive-payments.d.mts +32 -0
- package/tools/qbd/receive-payments/update-qbd-receive-payments.d.mts.map +1 -0
- package/tools/qbd/receive-payments/update-qbd-receive-payments.d.ts +32 -0
- package/tools/qbd/receive-payments/update-qbd-receive-payments.d.ts.map +1 -0
- package/tools/qbd/receive-payments/update-qbd-receive-payments.js +247 -0
- package/tools/qbd/receive-payments/update-qbd-receive-payments.js.map +1 -0
- package/tools/qbd/receive-payments/update-qbd-receive-payments.mjs +243 -0
- package/tools/qbd/receive-payments/update-qbd-receive-payments.mjs.map +1 -0
- package/tools/qbd/sales-orders/create-qbd-sales-orders.d.mts +32 -0
- package/tools/qbd/sales-orders/create-qbd-sales-orders.d.mts.map +1 -0
- package/tools/qbd/sales-orders/create-qbd-sales-orders.d.ts +32 -0
- package/tools/qbd/sales-orders/create-qbd-sales-orders.d.ts.map +1 -0
- package/tools/qbd/sales-orders/create-qbd-sales-orders.js +386 -0
- package/tools/qbd/sales-orders/create-qbd-sales-orders.js.map +1 -0
- package/tools/qbd/sales-orders/create-qbd-sales-orders.mjs +382 -0
- package/tools/qbd/sales-orders/create-qbd-sales-orders.mjs.map +1 -0
- package/tools/qbd/sales-orders/delete-qbd-sales-orders.d.mts +32 -0
- package/tools/qbd/sales-orders/delete-qbd-sales-orders.d.mts.map +1 -0
- package/tools/qbd/sales-orders/delete-qbd-sales-orders.d.ts +32 -0
- package/tools/qbd/sales-orders/delete-qbd-sales-orders.d.ts.map +1 -0
- package/tools/qbd/sales-orders/delete-qbd-sales-orders.js +35 -0
- package/tools/qbd/sales-orders/delete-qbd-sales-orders.js.map +1 -0
- package/tools/qbd/sales-orders/delete-qbd-sales-orders.mjs +31 -0
- package/tools/qbd/sales-orders/delete-qbd-sales-orders.mjs.map +1 -0
- package/tools/qbd/sales-orders/list-qbd-sales-orders.d.mts +32 -0
- package/tools/qbd/sales-orders/list-qbd-sales-orders.d.mts.map +1 -0
- package/tools/qbd/sales-orders/list-qbd-sales-orders.d.ts +32 -0
- package/tools/qbd/sales-orders/list-qbd-sales-orders.d.ts.map +1 -0
- package/tools/qbd/sales-orders/list-qbd-sales-orders.js +113 -0
- package/tools/qbd/sales-orders/list-qbd-sales-orders.js.map +1 -0
- package/tools/qbd/sales-orders/list-qbd-sales-orders.mjs +109 -0
- package/tools/qbd/sales-orders/list-qbd-sales-orders.mjs.map +1 -0
- package/tools/qbd/sales-orders/retrieve-qbd-sales-orders.d.mts +32 -0
- package/tools/qbd/sales-orders/retrieve-qbd-sales-orders.d.mts.map +1 -0
- package/tools/qbd/sales-orders/retrieve-qbd-sales-orders.d.ts +32 -0
- package/tools/qbd/sales-orders/retrieve-qbd-sales-orders.d.ts.map +1 -0
- package/tools/qbd/sales-orders/retrieve-qbd-sales-orders.js +35 -0
- package/tools/qbd/sales-orders/retrieve-qbd-sales-orders.js.map +1 -0
- package/tools/qbd/sales-orders/retrieve-qbd-sales-orders.mjs +31 -0
- package/tools/qbd/sales-orders/retrieve-qbd-sales-orders.mjs.map +1 -0
- package/tools/qbd/sales-orders/update-qbd-sales-orders.d.mts +32 -0
- package/tools/qbd/sales-orders/update-qbd-sales-orders.d.mts.map +1 -0
- package/tools/qbd/sales-orders/update-qbd-sales-orders.d.ts +32 -0
- package/tools/qbd/sales-orders/update-qbd-sales-orders.d.ts.map +1 -0
- package/tools/qbd/sales-orders/update-qbd-sales-orders.js +445 -0
- package/tools/qbd/sales-orders/update-qbd-sales-orders.js.map +1 -0
- package/tools/qbd/sales-orders/update-qbd-sales-orders.mjs +441 -0
- package/tools/qbd/sales-orders/update-qbd-sales-orders.mjs.map +1 -0
- package/tools/qbd/sales-receipts/create-qbd-sales-receipts.d.mts +32 -0
- package/tools/qbd/sales-receipts/create-qbd-sales-receipts.d.mts.map +1 -0
- package/tools/qbd/sales-receipts/create-qbd-sales-receipts.d.ts +32 -0
- package/tools/qbd/sales-receipts/create-qbd-sales-receipts.d.ts.map +1 -0
- package/tools/qbd/sales-receipts/create-qbd-sales-receipts.js +634 -0
- package/tools/qbd/sales-receipts/create-qbd-sales-receipts.js.map +1 -0
- package/tools/qbd/sales-receipts/create-qbd-sales-receipts.mjs +630 -0
- package/tools/qbd/sales-receipts/create-qbd-sales-receipts.mjs.map +1 -0
- package/tools/qbd/sales-receipts/delete-qbd-sales-receipts.d.mts +32 -0
- package/tools/qbd/sales-receipts/delete-qbd-sales-receipts.d.mts.map +1 -0
- package/tools/qbd/sales-receipts/delete-qbd-sales-receipts.d.ts +32 -0
- package/tools/qbd/sales-receipts/delete-qbd-sales-receipts.d.ts.map +1 -0
- package/tools/qbd/sales-receipts/delete-qbd-sales-receipts.js +35 -0
- package/tools/qbd/sales-receipts/delete-qbd-sales-receipts.js.map +1 -0
- package/tools/qbd/sales-receipts/delete-qbd-sales-receipts.mjs +31 -0
- package/tools/qbd/sales-receipts/delete-qbd-sales-receipts.mjs.map +1 -0
- package/tools/qbd/sales-receipts/list-qbd-sales-receipts.d.mts +32 -0
- package/tools/qbd/sales-receipts/list-qbd-sales-receipts.d.mts.map +1 -0
- package/tools/qbd/sales-receipts/list-qbd-sales-receipts.d.ts +32 -0
- package/tools/qbd/sales-receipts/list-qbd-sales-receipts.d.ts.map +1 -0
- package/tools/qbd/sales-receipts/list-qbd-sales-receipts.js +116 -0
- package/tools/qbd/sales-receipts/list-qbd-sales-receipts.js.map +1 -0
- package/tools/qbd/sales-receipts/list-qbd-sales-receipts.mjs +112 -0
- package/tools/qbd/sales-receipts/list-qbd-sales-receipts.mjs.map +1 -0
- package/tools/qbd/sales-receipts/retrieve-qbd-sales-receipts.d.mts +32 -0
- package/tools/qbd/sales-receipts/retrieve-qbd-sales-receipts.d.mts.map +1 -0
- package/tools/qbd/sales-receipts/retrieve-qbd-sales-receipts.d.ts +32 -0
- package/tools/qbd/sales-receipts/retrieve-qbd-sales-receipts.d.ts.map +1 -0
- package/tools/qbd/sales-receipts/retrieve-qbd-sales-receipts.js +35 -0
- package/tools/qbd/sales-receipts/retrieve-qbd-sales-receipts.js.map +1 -0
- package/tools/qbd/sales-receipts/retrieve-qbd-sales-receipts.mjs +31 -0
- package/tools/qbd/sales-receipts/retrieve-qbd-sales-receipts.mjs.map +1 -0
- package/tools/qbd/sales-receipts/update-qbd-sales-receipts.d.mts +32 -0
- package/tools/qbd/sales-receipts/update-qbd-sales-receipts.d.mts.map +1 -0
- package/tools/qbd/sales-receipts/update-qbd-sales-receipts.d.ts +32 -0
- package/tools/qbd/sales-receipts/update-qbd-sales-receipts.d.ts.map +1 -0
- package/tools/qbd/sales-receipts/update-qbd-sales-receipts.js +446 -0
- package/tools/qbd/sales-receipts/update-qbd-sales-receipts.js.map +1 -0
- package/tools/qbd/sales-receipts/update-qbd-sales-receipts.mjs +442 -0
- package/tools/qbd/sales-receipts/update-qbd-sales-receipts.mjs.map +1 -0
- package/tools/qbd/sales-representatives/create-qbd-sales-representatives.d.mts +32 -0
- package/tools/qbd/sales-representatives/create-qbd-sales-representatives.d.mts.map +1 -0
- package/tools/qbd/sales-representatives/create-qbd-sales-representatives.d.ts +32 -0
- package/tools/qbd/sales-representatives/create-qbd-sales-representatives.d.ts.map +1 -0
- package/tools/qbd/sales-representatives/create-qbd-sales-representatives.js +43 -0
- package/tools/qbd/sales-representatives/create-qbd-sales-representatives.js.map +1 -0
- package/tools/qbd/sales-representatives/create-qbd-sales-representatives.mjs +39 -0
- package/tools/qbd/sales-representatives/create-qbd-sales-representatives.mjs.map +1 -0
- package/tools/qbd/sales-representatives/list-qbd-sales-representatives.d.mts +32 -0
- package/tools/qbd/sales-representatives/list-qbd-sales-representatives.d.mts.map +1 -0
- package/tools/qbd/sales-representatives/list-qbd-sales-representatives.d.ts +32 -0
- package/tools/qbd/sales-representatives/list-qbd-sales-representatives.d.ts.map +1 -0
- package/tools/qbd/sales-representatives/list-qbd-sales-representatives.js +82 -0
- package/tools/qbd/sales-representatives/list-qbd-sales-representatives.js.map +1 -0
- package/tools/qbd/sales-representatives/list-qbd-sales-representatives.mjs +78 -0
- package/tools/qbd/sales-representatives/list-qbd-sales-representatives.mjs.map +1 -0
- package/tools/qbd/sales-representatives/retrieve-qbd-sales-representatives.d.mts +32 -0
- package/tools/qbd/sales-representatives/retrieve-qbd-sales-representatives.d.mts.map +1 -0
- package/tools/qbd/sales-representatives/retrieve-qbd-sales-representatives.d.ts +32 -0
- package/tools/qbd/sales-representatives/retrieve-qbd-sales-representatives.d.ts.map +1 -0
- package/tools/qbd/sales-representatives/retrieve-qbd-sales-representatives.js +35 -0
- package/tools/qbd/sales-representatives/retrieve-qbd-sales-representatives.js.map +1 -0
- package/tools/qbd/sales-representatives/retrieve-qbd-sales-representatives.mjs +31 -0
- package/tools/qbd/sales-representatives/retrieve-qbd-sales-representatives.mjs.map +1 -0
- package/tools/qbd/sales-representatives/update-qbd-sales-representatives.d.mts +32 -0
- package/tools/qbd/sales-representatives/update-qbd-sales-representatives.d.mts.map +1 -0
- package/tools/qbd/sales-representatives/update-qbd-sales-representatives.d.ts +32 -0
- package/tools/qbd/sales-representatives/update-qbd-sales-representatives.d.ts.map +1 -0
- package/tools/qbd/sales-representatives/update-qbd-sales-representatives.js +51 -0
- package/tools/qbd/sales-representatives/update-qbd-sales-representatives.js.map +1 -0
- package/tools/qbd/sales-representatives/update-qbd-sales-representatives.mjs +47 -0
- package/tools/qbd/sales-representatives/update-qbd-sales-representatives.mjs.map +1 -0
- package/tools/qbd/sales-tax-codes/create-qbd-sales-tax-codes.d.mts +32 -0
- package/tools/qbd/sales-tax-codes/create-qbd-sales-tax-codes.d.mts.map +1 -0
- package/tools/qbd/sales-tax-codes/create-qbd-sales-tax-codes.d.ts +32 -0
- package/tools/qbd/sales-tax-codes/create-qbd-sales-tax-codes.d.ts.map +1 -0
- package/tools/qbd/sales-tax-codes/create-qbd-sales-tax-codes.js +51 -0
- package/tools/qbd/sales-tax-codes/create-qbd-sales-tax-codes.js.map +1 -0
- package/tools/qbd/sales-tax-codes/create-qbd-sales-tax-codes.mjs +47 -0
- package/tools/qbd/sales-tax-codes/create-qbd-sales-tax-codes.mjs.map +1 -0
- package/tools/qbd/sales-tax-codes/list-qbd-sales-tax-codes.d.mts +32 -0
- package/tools/qbd/sales-tax-codes/list-qbd-sales-tax-codes.d.mts.map +1 -0
- package/tools/qbd/sales-tax-codes/list-qbd-sales-tax-codes.d.ts +32 -0
- package/tools/qbd/sales-tax-codes/list-qbd-sales-tax-codes.d.ts.map +1 -0
- package/tools/qbd/sales-tax-codes/list-qbd-sales-tax-codes.js +82 -0
- package/tools/qbd/sales-tax-codes/list-qbd-sales-tax-codes.js.map +1 -0
- package/tools/qbd/sales-tax-codes/list-qbd-sales-tax-codes.mjs +78 -0
- package/tools/qbd/sales-tax-codes/list-qbd-sales-tax-codes.mjs.map +1 -0
- package/tools/qbd/sales-tax-codes/retrieve-qbd-sales-tax-codes.d.mts +32 -0
- package/tools/qbd/sales-tax-codes/retrieve-qbd-sales-tax-codes.d.mts.map +1 -0
- package/tools/qbd/sales-tax-codes/retrieve-qbd-sales-tax-codes.d.ts +32 -0
- package/tools/qbd/sales-tax-codes/retrieve-qbd-sales-tax-codes.d.ts.map +1 -0
- package/tools/qbd/sales-tax-codes/retrieve-qbd-sales-tax-codes.js +35 -0
- package/tools/qbd/sales-tax-codes/retrieve-qbd-sales-tax-codes.js.map +1 -0
- package/tools/qbd/sales-tax-codes/retrieve-qbd-sales-tax-codes.mjs +31 -0
- package/tools/qbd/sales-tax-codes/retrieve-qbd-sales-tax-codes.mjs.map +1 -0
- package/tools/qbd/sales-tax-codes/update-qbd-sales-tax-codes.d.mts +32 -0
- package/tools/qbd/sales-tax-codes/update-qbd-sales-tax-codes.d.mts.map +1 -0
- package/tools/qbd/sales-tax-codes/update-qbd-sales-tax-codes.d.ts +32 -0
- package/tools/qbd/sales-tax-codes/update-qbd-sales-tax-codes.d.ts.map +1 -0
- package/tools/qbd/sales-tax-codes/update-qbd-sales-tax-codes.js +59 -0
- package/tools/qbd/sales-tax-codes/update-qbd-sales-tax-codes.js.map +1 -0
- package/tools/qbd/sales-tax-codes/update-qbd-sales-tax-codes.mjs +55 -0
- package/tools/qbd/sales-tax-codes/update-qbd-sales-tax-codes.mjs.map +1 -0
- package/tools/qbd/sales-tax-items/create-qbd-sales-tax-items.d.mts +32 -0
- package/tools/qbd/sales-tax-items/create-qbd-sales-tax-items.d.mts.map +1 -0
- package/tools/qbd/sales-tax-items/create-qbd-sales-tax-items.d.ts +32 -0
- package/tools/qbd/sales-tax-items/create-qbd-sales-tax-items.d.ts.map +1 -0
- package/tools/qbd/sales-tax-items/create-qbd-sales-tax-items.js +82 -0
- package/tools/qbd/sales-tax-items/create-qbd-sales-tax-items.js.map +1 -0
- package/tools/qbd/sales-tax-items/create-qbd-sales-tax-items.mjs +78 -0
- package/tools/qbd/sales-tax-items/create-qbd-sales-tax-items.mjs.map +1 -0
- package/tools/qbd/sales-tax-items/list-qbd-sales-tax-items.d.mts +32 -0
- package/tools/qbd/sales-tax-items/list-qbd-sales-tax-items.d.mts.map +1 -0
- package/tools/qbd/sales-tax-items/list-qbd-sales-tax-items.d.ts +32 -0
- package/tools/qbd/sales-tax-items/list-qbd-sales-tax-items.d.ts.map +1 -0
- package/tools/qbd/sales-tax-items/list-qbd-sales-tax-items.js +93 -0
- package/tools/qbd/sales-tax-items/list-qbd-sales-tax-items.js.map +1 -0
- package/tools/qbd/sales-tax-items/list-qbd-sales-tax-items.mjs +89 -0
- package/tools/qbd/sales-tax-items/list-qbd-sales-tax-items.mjs.map +1 -0
- package/tools/qbd/sales-tax-items/retrieve-qbd-sales-tax-items.d.mts +32 -0
- package/tools/qbd/sales-tax-items/retrieve-qbd-sales-tax-items.d.mts.map +1 -0
- package/tools/qbd/sales-tax-items/retrieve-qbd-sales-tax-items.d.ts +32 -0
- package/tools/qbd/sales-tax-items/retrieve-qbd-sales-tax-items.d.ts.map +1 -0
- package/tools/qbd/sales-tax-items/retrieve-qbd-sales-tax-items.js +35 -0
- package/tools/qbd/sales-tax-items/retrieve-qbd-sales-tax-items.js.map +1 -0
- package/tools/qbd/sales-tax-items/retrieve-qbd-sales-tax-items.mjs +31 -0
- package/tools/qbd/sales-tax-items/retrieve-qbd-sales-tax-items.mjs.map +1 -0
- package/tools/qbd/sales-tax-items/update-qbd-sales-tax-items.d.mts +32 -0
- package/tools/qbd/sales-tax-items/update-qbd-sales-tax-items.d.mts.map +1 -0
- package/tools/qbd/sales-tax-items/update-qbd-sales-tax-items.d.ts +32 -0
- package/tools/qbd/sales-tax-items/update-qbd-sales-tax-items.d.ts.map +1 -0
- package/tools/qbd/sales-tax-items/update-qbd-sales-tax-items.js +86 -0
- package/tools/qbd/sales-tax-items/update-qbd-sales-tax-items.js.map +1 -0
- package/tools/qbd/sales-tax-items/update-qbd-sales-tax-items.mjs +82 -0
- package/tools/qbd/sales-tax-items/update-qbd-sales-tax-items.mjs.map +1 -0
- package/tools/qbd/service-items/create-qbd-service-items.d.mts +32 -0
- package/tools/qbd/service-items/create-qbd-service-items.d.mts.map +1 -0
- package/tools/qbd/service-items/create-qbd-service-items.d.ts +32 -0
- package/tools/qbd/service-items/create-qbd-service-items.d.ts.map +1 -0
- package/tools/qbd/service-items/create-qbd-service-items.js +140 -0
- package/tools/qbd/service-items/create-qbd-service-items.js.map +1 -0
- package/tools/qbd/service-items/create-qbd-service-items.mjs +136 -0
- package/tools/qbd/service-items/create-qbd-service-items.mjs.map +1 -0
- package/tools/qbd/service-items/list-qbd-service-items.d.mts +32 -0
- package/tools/qbd/service-items/list-qbd-service-items.d.mts.map +1 -0
- package/tools/qbd/service-items/list-qbd-service-items.d.ts +32 -0
- package/tools/qbd/service-items/list-qbd-service-items.d.ts.map +1 -0
- package/tools/qbd/service-items/list-qbd-service-items.js +93 -0
- package/tools/qbd/service-items/list-qbd-service-items.js.map +1 -0
- package/tools/qbd/service-items/list-qbd-service-items.mjs +89 -0
- package/tools/qbd/service-items/list-qbd-service-items.mjs.map +1 -0
- package/tools/qbd/service-items/retrieve-qbd-service-items.d.mts +32 -0
- package/tools/qbd/service-items/retrieve-qbd-service-items.d.mts.map +1 -0
- package/tools/qbd/service-items/retrieve-qbd-service-items.d.ts +32 -0
- package/tools/qbd/service-items/retrieve-qbd-service-items.d.ts.map +1 -0
- package/tools/qbd/service-items/retrieve-qbd-service-items.js +35 -0
- package/tools/qbd/service-items/retrieve-qbd-service-items.js.map +1 -0
- package/tools/qbd/service-items/retrieve-qbd-service-items.mjs +31 -0
- package/tools/qbd/service-items/retrieve-qbd-service-items.mjs.map +1 -0
- package/tools/qbd/service-items/update-qbd-service-items.d.mts +32 -0
- package/tools/qbd/service-items/update-qbd-service-items.d.mts.map +1 -0
- package/tools/qbd/service-items/update-qbd-service-items.d.ts +32 -0
- package/tools/qbd/service-items/update-qbd-service-items.d.ts.map +1 -0
- package/tools/qbd/service-items/update-qbd-service-items.js +160 -0
- package/tools/qbd/service-items/update-qbd-service-items.js.map +1 -0
- package/tools/qbd/service-items/update-qbd-service-items.mjs +156 -0
- package/tools/qbd/service-items/update-qbd-service-items.mjs.map +1 -0
- package/tools/qbd/standard-terms/create-qbd-standard-terms.d.mts +32 -0
- package/tools/qbd/standard-terms/create-qbd-standard-terms.d.mts.map +1 -0
- package/tools/qbd/standard-terms/create-qbd-standard-terms.d.ts +32 -0
- package/tools/qbd/standard-terms/create-qbd-standard-terms.d.ts.map +1 -0
- package/tools/qbd/standard-terms/create-qbd-standard-terms.js +51 -0
- package/tools/qbd/standard-terms/create-qbd-standard-terms.js.map +1 -0
- package/tools/qbd/standard-terms/create-qbd-standard-terms.mjs +47 -0
- package/tools/qbd/standard-terms/create-qbd-standard-terms.mjs.map +1 -0
- package/tools/qbd/standard-terms/list-qbd-standard-terms.d.mts +32 -0
- package/tools/qbd/standard-terms/list-qbd-standard-terms.d.mts.map +1 -0
- package/tools/qbd/standard-terms/list-qbd-standard-terms.d.ts +32 -0
- package/tools/qbd/standard-terms/list-qbd-standard-terms.d.ts.map +1 -0
- package/tools/qbd/standard-terms/list-qbd-standard-terms.js +82 -0
- package/tools/qbd/standard-terms/list-qbd-standard-terms.js.map +1 -0
- package/tools/qbd/standard-terms/list-qbd-standard-terms.mjs +78 -0
- package/tools/qbd/standard-terms/list-qbd-standard-terms.mjs.map +1 -0
- package/tools/qbd/standard-terms/retrieve-qbd-standard-terms.d.mts +32 -0
- package/tools/qbd/standard-terms/retrieve-qbd-standard-terms.d.mts.map +1 -0
- package/tools/qbd/standard-terms/retrieve-qbd-standard-terms.d.ts +32 -0
- package/tools/qbd/standard-terms/retrieve-qbd-standard-terms.d.ts.map +1 -0
- package/tools/qbd/standard-terms/retrieve-qbd-standard-terms.js +35 -0
- package/tools/qbd/standard-terms/retrieve-qbd-standard-terms.js.map +1 -0
- package/tools/qbd/standard-terms/retrieve-qbd-standard-terms.mjs +31 -0
- package/tools/qbd/standard-terms/retrieve-qbd-standard-terms.mjs.map +1 -0
- package/tools/qbd/subtotal-items/create-qbd-subtotal-items.d.mts +32 -0
- package/tools/qbd/subtotal-items/create-qbd-subtotal-items.d.mts.map +1 -0
- package/tools/qbd/subtotal-items/create-qbd-subtotal-items.d.ts +32 -0
- package/tools/qbd/subtotal-items/create-qbd-subtotal-items.d.ts.map +1 -0
- package/tools/qbd/subtotal-items/create-qbd-subtotal-items.js +66 -0
- package/tools/qbd/subtotal-items/create-qbd-subtotal-items.js.map +1 -0
- package/tools/qbd/subtotal-items/create-qbd-subtotal-items.mjs +62 -0
- package/tools/qbd/subtotal-items/create-qbd-subtotal-items.mjs.map +1 -0
- package/tools/qbd/subtotal-items/list-qbd-subtotal-items.d.mts +32 -0
- package/tools/qbd/subtotal-items/list-qbd-subtotal-items.d.mts.map +1 -0
- package/tools/qbd/subtotal-items/list-qbd-subtotal-items.d.ts +32 -0
- package/tools/qbd/subtotal-items/list-qbd-subtotal-items.d.ts.map +1 -0
- package/tools/qbd/subtotal-items/list-qbd-subtotal-items.js +86 -0
- package/tools/qbd/subtotal-items/list-qbd-subtotal-items.js.map +1 -0
- package/tools/qbd/subtotal-items/list-qbd-subtotal-items.mjs +82 -0
- package/tools/qbd/subtotal-items/list-qbd-subtotal-items.mjs.map +1 -0
- package/tools/qbd/subtotal-items/retrieve-qbd-subtotal-items.d.mts +32 -0
- package/tools/qbd/subtotal-items/retrieve-qbd-subtotal-items.d.mts.map +1 -0
- package/tools/qbd/subtotal-items/retrieve-qbd-subtotal-items.d.ts +32 -0
- package/tools/qbd/subtotal-items/retrieve-qbd-subtotal-items.d.ts.map +1 -0
- package/tools/qbd/subtotal-items/retrieve-qbd-subtotal-items.js +35 -0
- package/tools/qbd/subtotal-items/retrieve-qbd-subtotal-items.js.map +1 -0
- package/tools/qbd/subtotal-items/retrieve-qbd-subtotal-items.mjs +31 -0
- package/tools/qbd/subtotal-items/retrieve-qbd-subtotal-items.mjs.map +1 -0
- package/tools/qbd/subtotal-items/update-qbd-subtotal-items.d.mts +32 -0
- package/tools/qbd/subtotal-items/update-qbd-subtotal-items.d.mts.map +1 -0
- package/tools/qbd/subtotal-items/update-qbd-subtotal-items.d.ts +32 -0
- package/tools/qbd/subtotal-items/update-qbd-subtotal-items.d.ts.map +1 -0
- package/tools/qbd/subtotal-items/update-qbd-subtotal-items.js +70 -0
- package/tools/qbd/subtotal-items/update-qbd-subtotal-items.js.map +1 -0
- package/tools/qbd/subtotal-items/update-qbd-subtotal-items.mjs +66 -0
- package/tools/qbd/subtotal-items/update-qbd-subtotal-items.mjs.map +1 -0
- package/tools/qbd/time-tracking-activities/create-qbd-time-tracking-activities.d.mts +32 -0
- package/tools/qbd/time-tracking-activities/create-qbd-time-tracking-activities.d.mts.map +1 -0
- package/tools/qbd/time-tracking-activities/create-qbd-time-tracking-activities.d.ts +32 -0
- package/tools/qbd/time-tracking-activities/create-qbd-time-tracking-activities.d.ts.map +1 -0
- package/tools/qbd/time-tracking-activities/create-qbd-time-tracking-activities.js +73 -0
- package/tools/qbd/time-tracking-activities/create-qbd-time-tracking-activities.js.map +1 -0
- package/tools/qbd/time-tracking-activities/create-qbd-time-tracking-activities.mjs +69 -0
- package/tools/qbd/time-tracking-activities/create-qbd-time-tracking-activities.mjs.map +1 -0
- package/tools/qbd/time-tracking-activities/delete-qbd-time-tracking-activities.d.mts +32 -0
- package/tools/qbd/time-tracking-activities/delete-qbd-time-tracking-activities.d.mts.map +1 -0
- package/tools/qbd/time-tracking-activities/delete-qbd-time-tracking-activities.d.ts +32 -0
- package/tools/qbd/time-tracking-activities/delete-qbd-time-tracking-activities.d.ts.map +1 -0
- package/tools/qbd/time-tracking-activities/delete-qbd-time-tracking-activities.js +35 -0
- package/tools/qbd/time-tracking-activities/delete-qbd-time-tracking-activities.js.map +1 -0
- package/tools/qbd/time-tracking-activities/delete-qbd-time-tracking-activities.mjs +31 -0
- package/tools/qbd/time-tracking-activities/delete-qbd-time-tracking-activities.mjs.map +1 -0
- package/tools/qbd/time-tracking-activities/list-qbd-time-tracking-activities.d.mts +32 -0
- package/tools/qbd/time-tracking-activities/list-qbd-time-tracking-activities.d.mts.map +1 -0
- package/tools/qbd/time-tracking-activities/list-qbd-time-tracking-activities.d.ts +32 -0
- package/tools/qbd/time-tracking-activities/list-qbd-time-tracking-activities.d.ts.map +1 -0
- package/tools/qbd/time-tracking-activities/list-qbd-time-tracking-activities.js +71 -0
- package/tools/qbd/time-tracking-activities/list-qbd-time-tracking-activities.js.map +1 -0
- package/tools/qbd/time-tracking-activities/list-qbd-time-tracking-activities.mjs +67 -0
- package/tools/qbd/time-tracking-activities/list-qbd-time-tracking-activities.mjs.map +1 -0
- package/tools/qbd/time-tracking-activities/retrieve-qbd-time-tracking-activities.d.mts +32 -0
- package/tools/qbd/time-tracking-activities/retrieve-qbd-time-tracking-activities.d.mts.map +1 -0
- package/tools/qbd/time-tracking-activities/retrieve-qbd-time-tracking-activities.d.ts +32 -0
- package/tools/qbd/time-tracking-activities/retrieve-qbd-time-tracking-activities.d.ts.map +1 -0
- package/tools/qbd/time-tracking-activities/retrieve-qbd-time-tracking-activities.js +35 -0
- package/tools/qbd/time-tracking-activities/retrieve-qbd-time-tracking-activities.js.map +1 -0
- package/tools/qbd/time-tracking-activities/retrieve-qbd-time-tracking-activities.mjs +31 -0
- package/tools/qbd/time-tracking-activities/retrieve-qbd-time-tracking-activities.mjs.map +1 -0
- package/tools/qbd/time-tracking-activities/update-qbd-time-tracking-activities.d.mts +32 -0
- package/tools/qbd/time-tracking-activities/update-qbd-time-tracking-activities.d.mts.map +1 -0
- package/tools/qbd/time-tracking-activities/update-qbd-time-tracking-activities.d.ts +32 -0
- package/tools/qbd/time-tracking-activities/update-qbd-time-tracking-activities.d.ts.map +1 -0
- package/tools/qbd/time-tracking-activities/update-qbd-time-tracking-activities.js +77 -0
- package/tools/qbd/time-tracking-activities/update-qbd-time-tracking-activities.js.map +1 -0
- package/tools/qbd/time-tracking-activities/update-qbd-time-tracking-activities.mjs +73 -0
- package/tools/qbd/time-tracking-activities/update-qbd-time-tracking-activities.mjs.map +1 -0
- package/tools/qbd/transactions/list-qbd-transactions.d.mts +32 -0
- package/tools/qbd/transactions/list-qbd-transactions.d.mts.map +1 -0
- package/tools/qbd/transactions/list-qbd-transactions.d.ts +32 -0
- package/tools/qbd/transactions/list-qbd-transactions.d.ts.map +1 -0
- package/tools/qbd/transactions/list-qbd-transactions.js +178 -0
- package/tools/qbd/transactions/list-qbd-transactions.js.map +1 -0
- package/tools/qbd/transactions/list-qbd-transactions.mjs +174 -0
- package/tools/qbd/transactions/list-qbd-transactions.mjs.map +1 -0
- package/tools/qbd/transactions/retrieve-qbd-transactions.d.mts +32 -0
- package/tools/qbd/transactions/retrieve-qbd-transactions.d.mts.map +1 -0
- package/tools/qbd/transactions/retrieve-qbd-transactions.d.ts +32 -0
- package/tools/qbd/transactions/retrieve-qbd-transactions.d.ts.map +1 -0
- package/tools/qbd/transactions/retrieve-qbd-transactions.js +35 -0
- package/tools/qbd/transactions/retrieve-qbd-transactions.js.map +1 -0
- package/tools/qbd/transactions/retrieve-qbd-transactions.mjs +31 -0
- package/tools/qbd/transactions/retrieve-qbd-transactions.mjs.map +1 -0
- package/tools/qbd/transfers/create-qbd-transfers.d.mts +32 -0
- package/tools/qbd/transfers/create-qbd-transfers.d.mts.map +1 -0
- package/tools/qbd/transfers/create-qbd-transfers.d.ts +32 -0
- package/tools/qbd/transfers/create-qbd-transfers.d.ts.map +1 -0
- package/tools/qbd/transfers/create-qbd-transfers.js +56 -0
- package/tools/qbd/transfers/create-qbd-transfers.js.map +1 -0
- package/tools/qbd/transfers/create-qbd-transfers.mjs +52 -0
- package/tools/qbd/transfers/create-qbd-transfers.mjs.map +1 -0
- package/tools/qbd/transfers/list-qbd-transfers.d.mts +32 -0
- package/tools/qbd/transfers/list-qbd-transfers.d.mts.map +1 -0
- package/tools/qbd/transfers/list-qbd-transfers.d.ts +32 -0
- package/tools/qbd/transfers/list-qbd-transfers.d.ts.map +1 -0
- package/tools/qbd/transfers/list-qbd-transfers.js +64 -0
- package/tools/qbd/transfers/list-qbd-transfers.js.map +1 -0
- package/tools/qbd/transfers/list-qbd-transfers.mjs +60 -0
- package/tools/qbd/transfers/list-qbd-transfers.mjs.map +1 -0
- package/tools/qbd/transfers/retrieve-qbd-transfers.d.mts +32 -0
- package/tools/qbd/transfers/retrieve-qbd-transfers.d.mts.map +1 -0
- package/tools/qbd/transfers/retrieve-qbd-transfers.d.ts +32 -0
- package/tools/qbd/transfers/retrieve-qbd-transfers.d.ts.map +1 -0
- package/tools/qbd/transfers/retrieve-qbd-transfers.js +35 -0
- package/tools/qbd/transfers/retrieve-qbd-transfers.js.map +1 -0
- package/tools/qbd/transfers/retrieve-qbd-transfers.mjs +31 -0
- package/tools/qbd/transfers/retrieve-qbd-transfers.mjs.map +1 -0
- package/tools/qbd/transfers/update-qbd-transfers.d.mts +32 -0
- package/tools/qbd/transfers/update-qbd-transfers.d.mts.map +1 -0
- package/tools/qbd/transfers/update-qbd-transfers.d.ts +32 -0
- package/tools/qbd/transfers/update-qbd-transfers.d.ts.map +1 -0
- package/tools/qbd/transfers/update-qbd-transfers.js +64 -0
- package/tools/qbd/transfers/update-qbd-transfers.js.map +1 -0
- package/tools/qbd/transfers/update-qbd-transfers.mjs +60 -0
- package/tools/qbd/transfers/update-qbd-transfers.mjs.map +1 -0
- package/tools/qbd/vendor-credits/create-qbd-vendor-credits.d.mts +32 -0
- package/tools/qbd/vendor-credits/create-qbd-vendor-credits.d.mts.map +1 -0
- package/tools/qbd/vendor-credits/create-qbd-vendor-credits.d.ts +32 -0
- package/tools/qbd/vendor-credits/create-qbd-vendor-credits.d.ts.map +1 -0
- package/tools/qbd/vendor-credits/create-qbd-vendor-credits.js +298 -0
- package/tools/qbd/vendor-credits/create-qbd-vendor-credits.js.map +1 -0
- package/tools/qbd/vendor-credits/create-qbd-vendor-credits.mjs +294 -0
- package/tools/qbd/vendor-credits/create-qbd-vendor-credits.mjs.map +1 -0
- package/tools/qbd/vendor-credits/delete-qbd-vendor-credits.d.mts +32 -0
- package/tools/qbd/vendor-credits/delete-qbd-vendor-credits.d.mts.map +1 -0
- package/tools/qbd/vendor-credits/delete-qbd-vendor-credits.d.ts +32 -0
- package/tools/qbd/vendor-credits/delete-qbd-vendor-credits.d.ts.map +1 -0
- package/tools/qbd/vendor-credits/delete-qbd-vendor-credits.js +35 -0
- package/tools/qbd/vendor-credits/delete-qbd-vendor-credits.js.map +1 -0
- package/tools/qbd/vendor-credits/delete-qbd-vendor-credits.mjs +31 -0
- package/tools/qbd/vendor-credits/delete-qbd-vendor-credits.mjs.map +1 -0
- package/tools/qbd/vendor-credits/list-qbd-vendor-credits.d.mts +32 -0
- package/tools/qbd/vendor-credits/list-qbd-vendor-credits.d.mts.map +1 -0
- package/tools/qbd/vendor-credits/list-qbd-vendor-credits.d.ts +32 -0
- package/tools/qbd/vendor-credits/list-qbd-vendor-credits.d.ts.map +1 -0
- package/tools/qbd/vendor-credits/list-qbd-vendor-credits.js +120 -0
- package/tools/qbd/vendor-credits/list-qbd-vendor-credits.js.map +1 -0
- package/tools/qbd/vendor-credits/list-qbd-vendor-credits.mjs +116 -0
- package/tools/qbd/vendor-credits/list-qbd-vendor-credits.mjs.map +1 -0
- package/tools/qbd/vendor-credits/retrieve-qbd-vendor-credits.d.mts +32 -0
- package/tools/qbd/vendor-credits/retrieve-qbd-vendor-credits.d.mts.map +1 -0
- package/tools/qbd/vendor-credits/retrieve-qbd-vendor-credits.d.ts +32 -0
- package/tools/qbd/vendor-credits/retrieve-qbd-vendor-credits.d.ts.map +1 -0
- package/tools/qbd/vendor-credits/retrieve-qbd-vendor-credits.js +35 -0
- package/tools/qbd/vendor-credits/retrieve-qbd-vendor-credits.js.map +1 -0
- package/tools/qbd/vendor-credits/retrieve-qbd-vendor-credits.mjs +31 -0
- package/tools/qbd/vendor-credits/retrieve-qbd-vendor-credits.mjs.map +1 -0
- package/tools/qbd/vendor-credits/update-qbd-vendor-credits.d.mts +32 -0
- package/tools/qbd/vendor-credits/update-qbd-vendor-credits.d.mts.map +1 -0
- package/tools/qbd/vendor-credits/update-qbd-vendor-credits.d.ts +32 -0
- package/tools/qbd/vendor-credits/update-qbd-vendor-credits.d.ts.map +1 -0
- package/tools/qbd/vendor-credits/update-qbd-vendor-credits.js +329 -0
- package/tools/qbd/vendor-credits/update-qbd-vendor-credits.js.map +1 -0
- package/tools/qbd/vendor-credits/update-qbd-vendor-credits.mjs +325 -0
- package/tools/qbd/vendor-credits/update-qbd-vendor-credits.mjs.map +1 -0
- package/tools/qbd/vendors/create-qbd-vendors.d.mts +32 -0
- package/tools/qbd/vendors/create-qbd-vendors.d.mts.map +1 -0
- package/tools/qbd/vendors/create-qbd-vendors.d.ts +32 -0
- package/tools/qbd/vendors/create-qbd-vendors.d.ts.map +1 -0
- package/tools/qbd/vendors/create-qbd-vendors.js +375 -0
- package/tools/qbd/vendors/create-qbd-vendors.js.map +1 -0
- package/tools/qbd/vendors/create-qbd-vendors.mjs +371 -0
- package/tools/qbd/vendors/create-qbd-vendors.mjs.map +1 -0
- package/tools/qbd/vendors/list-qbd-vendors.d.mts +32 -0
- package/tools/qbd/vendors/list-qbd-vendors.d.mts.map +1 -0
- package/tools/qbd/vendors/list-qbd-vendors.d.ts +32 -0
- package/tools/qbd/vendors/list-qbd-vendors.d.ts.map +1 -0
- package/tools/qbd/vendors/list-qbd-vendors.js +120 -0
- package/tools/qbd/vendors/list-qbd-vendors.js.map +1 -0
- package/tools/qbd/vendors/list-qbd-vendors.mjs +116 -0
- package/tools/qbd/vendors/list-qbd-vendors.mjs.map +1 -0
- package/tools/qbd/vendors/retrieve-qbd-vendors.d.mts +32 -0
- package/tools/qbd/vendors/retrieve-qbd-vendors.d.mts.map +1 -0
- package/tools/qbd/vendors/retrieve-qbd-vendors.d.ts +32 -0
- package/tools/qbd/vendors/retrieve-qbd-vendors.d.ts.map +1 -0
- package/tools/qbd/vendors/retrieve-qbd-vendors.js +35 -0
- package/tools/qbd/vendors/retrieve-qbd-vendors.js.map +1 -0
- package/tools/qbd/vendors/retrieve-qbd-vendors.mjs +31 -0
- package/tools/qbd/vendors/retrieve-qbd-vendors.mjs.map +1 -0
- package/tools/qbd/vendors/update-qbd-vendors.d.mts +32 -0
- package/tools/qbd/vendors/update-qbd-vendors.d.mts.map +1 -0
- package/tools/qbd/vendors/update-qbd-vendors.d.ts +32 -0
- package/tools/qbd/vendors/update-qbd-vendors.d.ts.map +1 -0
- package/tools/qbd/vendors/update-qbd-vendors.js +382 -0
- package/tools/qbd/vendors/update-qbd-vendors.js.map +1 -0
- package/tools/qbd/vendors/update-qbd-vendors.mjs +378 -0
- package/tools/qbd/vendors/update-qbd-vendors.mjs.map +1 -0
- package/tools.d.mts +2 -0
- package/tools.d.mts.map +1 -0
- package/tools.d.ts +2 -0
- package/tools.d.ts.map +1 -0
- package/tools.js +18 -0
- package/tools.js.map +1 -0
- package/tools.mjs +2 -0
- package/tools.mjs.map +1 -0
|
@@ -0,0 +1,426 @@
|
|
|
1
|
+
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
export const metadata = {
|
|
3
|
+
resource: 'qbd.invoices',
|
|
4
|
+
operation: 'write',
|
|
5
|
+
tags: [],
|
|
6
|
+
httpMethod: 'post',
|
|
7
|
+
httpPath: '/quickbooks-desktop/invoices',
|
|
8
|
+
};
|
|
9
|
+
export const tool = {
|
|
10
|
+
name: 'create_qbd_invoices',
|
|
11
|
+
description: 'Creates a new invoice.',
|
|
12
|
+
inputSchema: {
|
|
13
|
+
type: 'object',
|
|
14
|
+
properties: {
|
|
15
|
+
customerId: {
|
|
16
|
+
type: 'string',
|
|
17
|
+
description: 'The customer or customer-job associated with this invoice.',
|
|
18
|
+
},
|
|
19
|
+
transactionDate: {
|
|
20
|
+
type: 'string',
|
|
21
|
+
description: 'The date of this invoice, in ISO 8601 format (YYYY-MM-DD).',
|
|
22
|
+
format: 'date',
|
|
23
|
+
},
|
|
24
|
+
'Conductor-End-User-Id': {
|
|
25
|
+
type: 'string',
|
|
26
|
+
description: 'The ID of the EndUser to receive this request (e.g., `"Conductor-End-User-Id: {{END_USER_ID}}"`).',
|
|
27
|
+
},
|
|
28
|
+
applyCredits: {
|
|
29
|
+
type: 'array',
|
|
30
|
+
description: "Credit memos to apply to this invoice, reducing its balance. This creates a link between this invoice and the specified credit memos.\n\n**IMPORTANT**: By default, QuickBooks will not return any information about the linked transactions in this endpoint's response even when this request is successful. To see the transactions linked via this field, refetch the invoice and check the `linkedTransactions` response field. If fetching a list of invoices, you must also specify the parameter `includeLinkedTransactions=true` to see the `linkedTransactions` response field.",
|
|
31
|
+
items: {
|
|
32
|
+
type: 'object',
|
|
33
|
+
properties: {
|
|
34
|
+
appliedAmount: {
|
|
35
|
+
type: 'string',
|
|
36
|
+
description: 'The amount of credit applied to this transaction. This could include customer deposits, payments, or credits. Represented as a decimal string.',
|
|
37
|
+
},
|
|
38
|
+
creditTransactionId: {
|
|
39
|
+
type: 'string',
|
|
40
|
+
description: 'The unique identifier of the credit transaction (credit memo or vendor credit) to apply to this transaction.',
|
|
41
|
+
},
|
|
42
|
+
overrideCreditApplication: {
|
|
43
|
+
type: 'boolean',
|
|
44
|
+
description: 'Indicates whether to override the credit.',
|
|
45
|
+
},
|
|
46
|
+
},
|
|
47
|
+
required: ['appliedAmount', 'creditTransactionId'],
|
|
48
|
+
},
|
|
49
|
+
},
|
|
50
|
+
billingAddress: {
|
|
51
|
+
type: 'object',
|
|
52
|
+
description: "The invoice's billing address.",
|
|
53
|
+
properties: {
|
|
54
|
+
city: {
|
|
55
|
+
type: 'string',
|
|
56
|
+
description: 'The city, district, suburb, town, or village name of the address.\n\nMaximum length: 31 characters.',
|
|
57
|
+
},
|
|
58
|
+
country: {
|
|
59
|
+
type: 'string',
|
|
60
|
+
description: 'The country name of the address.',
|
|
61
|
+
},
|
|
62
|
+
line1: {
|
|
63
|
+
type: 'string',
|
|
64
|
+
description: 'The first line of the address (e.g., street, PO Box, or company name).\n\nMaximum length: 41 characters.',
|
|
65
|
+
},
|
|
66
|
+
line2: {
|
|
67
|
+
type: 'string',
|
|
68
|
+
description: 'The second line of the address, if needed (e.g., apartment, suite, unit, or building).\n\nMaximum length: 41 characters.',
|
|
69
|
+
},
|
|
70
|
+
line3: {
|
|
71
|
+
type: 'string',
|
|
72
|
+
description: 'The third line of the address, if needed.\n\nMaximum length: 41 characters.',
|
|
73
|
+
},
|
|
74
|
+
line4: {
|
|
75
|
+
type: 'string',
|
|
76
|
+
description: 'The fourth line of the address, if needed.\n\nMaximum length: 41 characters.',
|
|
77
|
+
},
|
|
78
|
+
line5: {
|
|
79
|
+
type: 'string',
|
|
80
|
+
description: 'The fifth line of the address, if needed.\n\nMaximum length: 41 characters.',
|
|
81
|
+
},
|
|
82
|
+
note: {
|
|
83
|
+
type: 'string',
|
|
84
|
+
description: 'A note written at the bottom of the address in the form in which it appears, such as the invoice form.',
|
|
85
|
+
},
|
|
86
|
+
postalCode: {
|
|
87
|
+
type: 'string',
|
|
88
|
+
description: 'The postal code or ZIP code of the address.\n\nMaximum length: 13 characters.',
|
|
89
|
+
},
|
|
90
|
+
state: {
|
|
91
|
+
type: 'string',
|
|
92
|
+
description: 'The state, county, province, or region name of the address.\n\nMaximum length: 21 characters.',
|
|
93
|
+
},
|
|
94
|
+
},
|
|
95
|
+
required: [],
|
|
96
|
+
},
|
|
97
|
+
classId: {
|
|
98
|
+
type: 'string',
|
|
99
|
+
description: "The invoice's class. Classes can be used to categorize objects into meaningful segments, such as department, location, or type of work. In QuickBooks, class tracking is off by default. A class defined here is automatically used in this invoice's line items unless overridden at the line item level.",
|
|
100
|
+
},
|
|
101
|
+
customerMessageId: {
|
|
102
|
+
type: 'string',
|
|
103
|
+
description: 'The message to display to the customer on the invoice.',
|
|
104
|
+
},
|
|
105
|
+
documentTemplateId: {
|
|
106
|
+
type: 'string',
|
|
107
|
+
description: 'The predefined template in QuickBooks that determines the layout and formatting for this invoice when printed or displayed.',
|
|
108
|
+
},
|
|
109
|
+
dueDate: {
|
|
110
|
+
type: 'string',
|
|
111
|
+
description: 'The date by which this invoice must be paid, in ISO 8601 format (YYYY-MM-DD).\n\n**NOTE**: If `dueDate` is excluded when creating this invoice, QuickBooks might determine the due date according to the terms set for this customer.',
|
|
112
|
+
format: 'date',
|
|
113
|
+
},
|
|
114
|
+
exchangeRate: {
|
|
115
|
+
type: 'number',
|
|
116
|
+
description: "The market exchange rate between this invoice's currency and the home currency in QuickBooks at the time of this transaction. Represented as a decimal value (e.g., 1.2345 for 1 EUR = 1.2345 USD if USD is the home currency).",
|
|
117
|
+
},
|
|
118
|
+
externalId: {
|
|
119
|
+
type: 'string',
|
|
120
|
+
description: 'A globally unique identifier (GUID) you, the developer, can provide for tracking this object in your external system. This field is immutable and can only be set during object creation.\n\n**IMPORTANT**: This field must be formatted as a valid GUID; otherwise, QuickBooks will return an error.',
|
|
121
|
+
},
|
|
122
|
+
isFinanceCharge: {
|
|
123
|
+
type: 'boolean',
|
|
124
|
+
description: 'Whether this invoice includes a finance charge. This field is immutable and can only be set during invoice creation.',
|
|
125
|
+
},
|
|
126
|
+
isPending: {
|
|
127
|
+
type: 'boolean',
|
|
128
|
+
description: 'Indicates whether this invoice has not been completed or is in a draft version.',
|
|
129
|
+
},
|
|
130
|
+
isQueuedForEmail: {
|
|
131
|
+
type: 'boolean',
|
|
132
|
+
description: 'Indicates whether this invoice is included in the queue of documents for QuickBooks to email to the customer.',
|
|
133
|
+
},
|
|
134
|
+
isQueuedForPrint: {
|
|
135
|
+
type: 'boolean',
|
|
136
|
+
description: 'Indicates whether this invoice is included in the queue of documents for QuickBooks to print.',
|
|
137
|
+
},
|
|
138
|
+
lineGroups: {
|
|
139
|
+
type: 'array',
|
|
140
|
+
description: "The invoice's line item groups, each representing a predefined set of related items.",
|
|
141
|
+
items: {
|
|
142
|
+
type: 'object',
|
|
143
|
+
properties: {
|
|
144
|
+
itemGroupId: {
|
|
145
|
+
type: 'string',
|
|
146
|
+
description: "The invoice line group's item group, representing a predefined set of items bundled because they are commonly purchased together or grouped for faster entry.",
|
|
147
|
+
},
|
|
148
|
+
customFields: {
|
|
149
|
+
type: 'array',
|
|
150
|
+
description: 'The custom fields for the invoice line group object, added as user-defined data extensions, not included in the standard QuickBooks object.',
|
|
151
|
+
items: {
|
|
152
|
+
type: 'object',
|
|
153
|
+
properties: {
|
|
154
|
+
name: {
|
|
155
|
+
type: 'string',
|
|
156
|
+
description: 'The name of the custom field, unique for the specified `ownerId`. For public custom fields, this name is visible as a label in the QuickBooks UI.',
|
|
157
|
+
},
|
|
158
|
+
ownerId: {
|
|
159
|
+
type: 'string',
|
|
160
|
+
description: 'The identifier of the owner of the custom field, which QuickBooks internally calls a "data extension". For public custom fields visible in the UI, such as those added by the QuickBooks user, this is always "0". For private custom fields that are only visible to the application that created them, this is a valid GUID identifying the owning application. Internally, Conductor always fetches all public custom fields (those with an `ownerId` of "0") for all objects.',
|
|
161
|
+
},
|
|
162
|
+
value: {
|
|
163
|
+
type: 'string',
|
|
164
|
+
description: "The value of this custom field. The maximum length depends on the field's data type.",
|
|
165
|
+
},
|
|
166
|
+
},
|
|
167
|
+
required: ['name', 'ownerId', 'value'],
|
|
168
|
+
},
|
|
169
|
+
},
|
|
170
|
+
inventorySiteId: {
|
|
171
|
+
type: 'string',
|
|
172
|
+
description: 'The site location where inventory for the item group associated with this invoice line group is stored.',
|
|
173
|
+
},
|
|
174
|
+
inventorySiteLocationId: {
|
|
175
|
+
type: 'string',
|
|
176
|
+
description: 'The specific location (e.g., bin or shelf) within the inventory site where the item group associated with this invoice line group is stored.',
|
|
177
|
+
},
|
|
178
|
+
quantity: {
|
|
179
|
+
type: 'number',
|
|
180
|
+
description: 'The quantity of the item group associated with this invoice line group. This field cannot be cleared.\n\n**NOTE**: Do not use this field if the associated item group is a discount item group.',
|
|
181
|
+
},
|
|
182
|
+
unitOfMeasure: {
|
|
183
|
+
type: 'string',
|
|
184
|
+
description: "The unit-of-measure used for the `quantity` in this invoice line group. Must be a valid unit within the item's available units of measure.",
|
|
185
|
+
},
|
|
186
|
+
},
|
|
187
|
+
required: ['itemGroupId'],
|
|
188
|
+
},
|
|
189
|
+
},
|
|
190
|
+
lines: {
|
|
191
|
+
type: 'array',
|
|
192
|
+
description: "The invoice's line items, each representing a single product or service sold.",
|
|
193
|
+
items: {
|
|
194
|
+
type: 'object',
|
|
195
|
+
properties: {
|
|
196
|
+
amount: {
|
|
197
|
+
type: 'string',
|
|
198
|
+
description: 'The monetary amount of this invoice line, represented as a decimal string. If both `quantity` and `rate` are specified but not `amount`, QuickBooks will use them to calculate `amount`. If `amount`, `rate`, and `quantity` are all unspecified, then QuickBooks will calculate `amount` based on a `quantity` of `1` and the suggested `rate`. This field cannot be cleared.',
|
|
199
|
+
},
|
|
200
|
+
classId: {
|
|
201
|
+
type: 'string',
|
|
202
|
+
description: "The invoice line's class. Classes can be used to categorize objects into meaningful segments, such as department, location, or type of work. In QuickBooks, class tracking is off by default. If a class is specified for the entire parent transaction, it is automatically applied to all invoice lines unless overridden here, at the transaction line level.",
|
|
203
|
+
},
|
|
204
|
+
customFields: {
|
|
205
|
+
type: 'array',
|
|
206
|
+
description: 'The custom fields for the invoice line object, added as user-defined data extensions, not included in the standard QuickBooks object.',
|
|
207
|
+
items: {
|
|
208
|
+
type: 'object',
|
|
209
|
+
properties: {
|
|
210
|
+
name: {
|
|
211
|
+
type: 'string',
|
|
212
|
+
description: 'The name of the custom field, unique for the specified `ownerId`. For public custom fields, this name is visible as a label in the QuickBooks UI.',
|
|
213
|
+
},
|
|
214
|
+
ownerId: {
|
|
215
|
+
type: 'string',
|
|
216
|
+
description: 'The identifier of the owner of the custom field, which QuickBooks internally calls a "data extension". For public custom fields visible in the UI, such as those added by the QuickBooks user, this is always "0". For private custom fields that are only visible to the application that created them, this is a valid GUID identifying the owning application. Internally, Conductor always fetches all public custom fields (those with an `ownerId` of "0") for all objects.',
|
|
217
|
+
},
|
|
218
|
+
value: {
|
|
219
|
+
type: 'string',
|
|
220
|
+
description: "The value of this custom field. The maximum length depends on the field's data type.",
|
|
221
|
+
},
|
|
222
|
+
},
|
|
223
|
+
required: ['name', 'ownerId', 'value'],
|
|
224
|
+
},
|
|
225
|
+
},
|
|
226
|
+
description: {
|
|
227
|
+
type: 'string',
|
|
228
|
+
description: 'A description of this invoice line.',
|
|
229
|
+
},
|
|
230
|
+
inventorySiteId: {
|
|
231
|
+
type: 'string',
|
|
232
|
+
description: 'The site location where inventory for the item associated with this invoice line is stored.',
|
|
233
|
+
},
|
|
234
|
+
inventorySiteLocationId: {
|
|
235
|
+
type: 'string',
|
|
236
|
+
description: 'The specific location (e.g., bin or shelf) within the inventory site where the item associated with this invoice line is stored.',
|
|
237
|
+
},
|
|
238
|
+
itemId: {
|
|
239
|
+
type: 'string',
|
|
240
|
+
description: 'The item associated with this invoice line. 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.',
|
|
241
|
+
},
|
|
242
|
+
linkToTransactionLine: {
|
|
243
|
+
type: 'object',
|
|
244
|
+
description: "An existing transaction line that you wish to link to this invoice line. Note that this only links to a single transaction line item, not an entire transaction. If you want to link an entire transaction and bring in all its lines, instead use the field `linkToTransactionIds` on the parent transaction, if available. For invoice lines, you can only link to sales orders; QuickBooks does not support linking invoice lines to other transaction types.\n\nTransaction lines can only be linked when creating this invoice line and cannot be unlinked later.\n\n**IMPORTANT**: If you use `linkToTransactionLine` on this invoice line, you cannot use the field `item` on this line (QuickBooks will return an error) because this field brings in all of the item information you need. You can, however, specify whatever `quantity` or `rate` that you want, or any other transaction line element other than `item`.\n\nIf the parent transaction supports the `linkToTransactionIds` field, you can use both `linkToTransactionLine` (on this invoice line) and `linkToTransactionIds` (on its parent transaction) in the same request as long as they do NOT link to the same transaction (otherwise, QuickBooks will return an error). QuickBooks will also return an error if you attempt to link a transaction that is empty or already closed.\n\n**IMPORTANT**: By default, QuickBooks will not return any information about the linked transaction line in this endpoint's response even when this request is successful. To see the transaction line linked via this field, refetch the parent invoice and check the `linkedTransactions` response field. If fetching a list of invoices, you must also specify the parameter `includeLinkedTransactions=true` to see the `linkedTransactions` response field.",
|
|
245
|
+
properties: {
|
|
246
|
+
transactionId: {
|
|
247
|
+
type: 'string',
|
|
248
|
+
description: 'The ID of the transaction to which to link this transaction.',
|
|
249
|
+
},
|
|
250
|
+
transactionLineId: {
|
|
251
|
+
type: 'string',
|
|
252
|
+
description: 'The ID of the transaction line to which to link this transaction.',
|
|
253
|
+
},
|
|
254
|
+
},
|
|
255
|
+
required: ['transactionId', 'transactionLineId'],
|
|
256
|
+
},
|
|
257
|
+
lotNumber: {
|
|
258
|
+
type: 'string',
|
|
259
|
+
description: 'The lot number of the item associated with this invoice line. Used for tracking groups of inventory items that are purchased or manufactured together.',
|
|
260
|
+
},
|
|
261
|
+
otherCustomField1: {
|
|
262
|
+
type: 'string',
|
|
263
|
+
description: "A built-in custom field for additional information specific to this invoice line. Unlike the user-defined fields in the `customFields` array, this is a standard QuickBooks field that exists for all invoice lines for convenience. Developers often use this field for tracking information that doesn't fit into other standard QuickBooks fields. Hidden by default in the QuickBooks UI.",
|
|
264
|
+
},
|
|
265
|
+
otherCustomField2: {
|
|
266
|
+
type: 'string',
|
|
267
|
+
description: "A second built-in custom field for additional information specific to this invoice line. Unlike the user-defined fields in the `customFields` array, this is a standard QuickBooks field that exists for all invoice lines for convenience. Like `otherCustomField1`, developers often use this field for tracking information that doesn't fit into other standard QuickBooks fields. Hidden by default in the QuickBooks UI.",
|
|
268
|
+
},
|
|
269
|
+
overrideItemAccountId: {
|
|
270
|
+
type: 'string',
|
|
271
|
+
description: 'The account to use for this invoice line, overriding the default account associated with the item.',
|
|
272
|
+
},
|
|
273
|
+
priceLevelId: {
|
|
274
|
+
type: 'string',
|
|
275
|
+
description: 'The price level applied to this invoice line. This overrides any price level set on the corresponding customer. The resulting invoice line will not show this price level, only the final `rate` calculated from it.',
|
|
276
|
+
},
|
|
277
|
+
priceRuleConflictStrategy: {
|
|
278
|
+
type: 'string',
|
|
279
|
+
description: 'Specifies how to resolve price rule conflicts when adding or modifying this invoice line.',
|
|
280
|
+
enum: ['base_price', 'zero'],
|
|
281
|
+
},
|
|
282
|
+
quantity: {
|
|
283
|
+
type: 'number',
|
|
284
|
+
description: 'The quantity of the item associated with this invoice line. This field cannot be cleared.\n\n**NOTE**: Do not use this field if the associated item is a discount item.',
|
|
285
|
+
},
|
|
286
|
+
rate: {
|
|
287
|
+
type: 'string',
|
|
288
|
+
description: 'The price per unit for this invoice line. If both `rate` and `amount` are specified, `rate` will be ignored. If both `quantity` and `amount` are specified but not `rate`, QuickBooks will use them to calculate `rate`. Represented as a decimal string. This field cannot be cleared.',
|
|
289
|
+
},
|
|
290
|
+
ratePercent: {
|
|
291
|
+
type: 'string',
|
|
292
|
+
description: 'The price of this invoice line expressed as a percentage. Typically used for discount or markup items.',
|
|
293
|
+
},
|
|
294
|
+
salesTaxCodeId: {
|
|
295
|
+
type: 'string',
|
|
296
|
+
description: 'The sales-tax code for this invoice line, determining whether it is taxable or non-taxable. If set, this overrides any sales-tax codes defined on the parent transaction or the associated item.\n\nDefault codes include "Non" (non-taxable) and "Tax" (taxable), but custom codes can also be created in QuickBooks. If QuickBooks is not set up to charge sales tax (via the "Do You Charge Sales Tax?" preference), it will assign the default non-taxable code to all sales.',
|
|
297
|
+
},
|
|
298
|
+
serialNumber: {
|
|
299
|
+
type: 'string',
|
|
300
|
+
description: 'The serial number of the item associated with this invoice line. This is used for tracking individual units of serialized inventory items.',
|
|
301
|
+
},
|
|
302
|
+
serviceDate: {
|
|
303
|
+
type: 'string',
|
|
304
|
+
description: 'The date on which the service for this invoice line was or will be performed, in ISO 8601 format (YYYY-MM-DD). This is particularly relevant for service items.',
|
|
305
|
+
format: 'date',
|
|
306
|
+
},
|
|
307
|
+
unitOfMeasure: {
|
|
308
|
+
type: 'string',
|
|
309
|
+
description: "The unit-of-measure used for the `quantity` in this invoice line. Must be a valid unit within the item's available units of measure.",
|
|
310
|
+
},
|
|
311
|
+
},
|
|
312
|
+
required: [],
|
|
313
|
+
},
|
|
314
|
+
},
|
|
315
|
+
linkToTransactionIds: {
|
|
316
|
+
type: 'array',
|
|
317
|
+
description: "IDs of existing transactions that you wish to link to this invoice, such as payments applied, credits used, or associated purchase orders. Note that this links entire transactions, not individual transaction lines. If you want to link individual lines in a transaction, instead use the field `linkToTransactionLine` on this invoice's lines, if available.\n\nTransactions can only be linked when creating this invoice and cannot be unlinked later.\n\nYou can use both `linkToTransactionIds` (on this invoice) and `linkToTransactionLine` (on its transaction lines) as long as they do NOT link to the same transaction (otherwise, QuickBooks will return an error). QuickBooks will also return an error if you attempt to link a transaction that is empty or already closed.\n\n**IMPORTANT**: By default, QuickBooks will not return any information about the linked transactions in this endpoint's response even when this request is successful. To see the transactions linked via this field, refetch the invoice and check the `linkedTransactions` response field. If fetching a list of invoices, you must also specify the parameter `includeLinkedTransactions=true` to see the `linkedTransactions` response field.",
|
|
318
|
+
items: {
|
|
319
|
+
type: 'string',
|
|
320
|
+
},
|
|
321
|
+
},
|
|
322
|
+
memo: {
|
|
323
|
+
type: 'string',
|
|
324
|
+
description: 'A memo or note for this invoice that appears in reports, but not on the invoice. Use `customerMessage` to add a note to this invoice.',
|
|
325
|
+
},
|
|
326
|
+
otherCustomField: {
|
|
327
|
+
type: 'string',
|
|
328
|
+
description: "A built-in custom field for additional information specific to this invoice. Unlike the user-defined fields in the `customFields` array, this is a standard QuickBooks field that exists for all invoices for convenience. Developers often use this field for tracking information that doesn't fit into other standard QuickBooks fields. Unlike `otherCustomField1` and `otherCustomField2`, which are line item fields, this exists at the transaction level. Hidden by default in the QuickBooks UI.",
|
|
329
|
+
},
|
|
330
|
+
purchaseOrderNumber: {
|
|
331
|
+
type: 'string',
|
|
332
|
+
description: "The customer's Purchase Order (PO) number associated with this invoice. This field is often used to cross-reference the invoice with the customer's purchasing system.",
|
|
333
|
+
},
|
|
334
|
+
receivablesAccountId: {
|
|
335
|
+
type: 'string',
|
|
336
|
+
description: 'The Accounts-Receivable (A/R) account to which this invoice is assigned, used to track the amount owed. If not specified, QuickBooks Desktop will use its default A/R account.\n\n**IMPORTANT**: If this invoice is linked to other transactions, this A/R account must match the `receivablesAccount` used in all linked transactions. For example, when refunding a credit card payment, the A/R account must match the one used in the original credit transactions being refunded.',
|
|
337
|
+
},
|
|
338
|
+
refNumber: {
|
|
339
|
+
type: 'string',
|
|
340
|
+
description: 'The case-sensitive user-defined reference number for this invoice, which can be used to identify the transaction in QuickBooks. This value is not required to be unique and can be arbitrarily changed by the QuickBooks user. When left blank in this create request, this field will be left blank in QuickBooks (i.e., it does *not* auto-increment).',
|
|
341
|
+
},
|
|
342
|
+
salesRepresentativeId: {
|
|
343
|
+
type: 'string',
|
|
344
|
+
description: "The invoice's sales representative. Sales representatives can be employees, vendors, or other names in QuickBooks.",
|
|
345
|
+
},
|
|
346
|
+
salesTaxCodeId: {
|
|
347
|
+
type: 'string',
|
|
348
|
+
description: 'The sales-tax code for this invoice, determining whether it is taxable or non-taxable. This can be overridden at the transaction-line level.\n\nDefault codes include "Non" (non-taxable) and "Tax" (taxable), but custom codes can also be created in QuickBooks. If QuickBooks is not set up to charge sales tax (via the "Do You Charge Sales Tax?" preference), it will assign the default non-taxable code to all sales.',
|
|
349
|
+
},
|
|
350
|
+
salesTaxItemId: {
|
|
351
|
+
type: 'string',
|
|
352
|
+
description: 'The sales-tax item used to calculate the actual tax amount for this invoice\'s transactions by applying a specific tax rate collected for a single tax agency. Unlike `salesTaxCode`, which only indicates general taxability, this field drives the actual tax calculation and reporting.\n\nFor invoices, while using this field to specify a single tax item/group that applies uniformly is recommended, complex tax scenarios may require alternative approaches. In such cases, you can set this field to a 0% tax item (conventionally named "Tax Calculated On Invoice") and handle tax calculations through line items instead. When using line items for taxes, note that only individual tax items (not tax groups) can be used, subtotals can help apply a tax to multiple items but only the first tax line after a subtotal is calculated automatically (subsequent tax lines require manual amounts), and the rate column will always display the actual tax amount rather than the rate percentage.',
|
|
353
|
+
},
|
|
354
|
+
shipmentOrigin: {
|
|
355
|
+
type: 'string',
|
|
356
|
+
description: 'The origin location from where the product associated with this invoice is shipped. This is the point at which ownership and liability for goods transfer from seller to buyer. Internally, QuickBooks uses the term "FOB" for this field, which stands for "freight on board". This field is informational and has no accounting implications.',
|
|
357
|
+
},
|
|
358
|
+
shippingAddress: {
|
|
359
|
+
type: 'object',
|
|
360
|
+
description: "The invoice's shipping address.",
|
|
361
|
+
properties: {
|
|
362
|
+
city: {
|
|
363
|
+
type: 'string',
|
|
364
|
+
description: 'The city, district, suburb, town, or village name of the address.\n\nMaximum length: 31 characters.',
|
|
365
|
+
},
|
|
366
|
+
country: {
|
|
367
|
+
type: 'string',
|
|
368
|
+
description: 'The country name of the address.',
|
|
369
|
+
},
|
|
370
|
+
line1: {
|
|
371
|
+
type: 'string',
|
|
372
|
+
description: 'The first line of the address (e.g., street, PO Box, or company name).\n\nMaximum length: 41 characters.',
|
|
373
|
+
},
|
|
374
|
+
line2: {
|
|
375
|
+
type: 'string',
|
|
376
|
+
description: 'The second line of the address, if needed (e.g., apartment, suite, unit, or building).\n\nMaximum length: 41 characters.',
|
|
377
|
+
},
|
|
378
|
+
line3: {
|
|
379
|
+
type: 'string',
|
|
380
|
+
description: 'The third line of the address, if needed.\n\nMaximum length: 41 characters.',
|
|
381
|
+
},
|
|
382
|
+
line4: {
|
|
383
|
+
type: 'string',
|
|
384
|
+
description: 'The fourth line of the address, if needed.\n\nMaximum length: 41 characters.',
|
|
385
|
+
},
|
|
386
|
+
line5: {
|
|
387
|
+
type: 'string',
|
|
388
|
+
description: 'The fifth line of the address, if needed.\n\nMaximum length: 41 characters.',
|
|
389
|
+
},
|
|
390
|
+
note: {
|
|
391
|
+
type: 'string',
|
|
392
|
+
description: 'A note written at the bottom of the address in the form in which it appears, such as the invoice form.',
|
|
393
|
+
},
|
|
394
|
+
postalCode: {
|
|
395
|
+
type: 'string',
|
|
396
|
+
description: 'The postal code or ZIP code of the address.\n\nMaximum length: 13 characters.',
|
|
397
|
+
},
|
|
398
|
+
state: {
|
|
399
|
+
type: 'string',
|
|
400
|
+
description: 'The state, county, province, or region name of the address.\n\nMaximum length: 21 characters.',
|
|
401
|
+
},
|
|
402
|
+
},
|
|
403
|
+
required: [],
|
|
404
|
+
},
|
|
405
|
+
shippingDate: {
|
|
406
|
+
type: 'string',
|
|
407
|
+
description: 'The date when the products or services for this invoice were shipped or are expected to be shipped, in ISO 8601 format (YYYY-MM-DD).',
|
|
408
|
+
format: 'date',
|
|
409
|
+
},
|
|
410
|
+
shippingMethodId: {
|
|
411
|
+
type: 'string',
|
|
412
|
+
description: 'The shipping method used for this invoice, such as standard mail or overnight delivery.',
|
|
413
|
+
},
|
|
414
|
+
termsId: {
|
|
415
|
+
type: 'string',
|
|
416
|
+
description: "The invoice's payment terms, defining when payment is due and any applicable discounts.",
|
|
417
|
+
},
|
|
418
|
+
},
|
|
419
|
+
},
|
|
420
|
+
};
|
|
421
|
+
export const handler = (client, args) => {
|
|
422
|
+
const body = args;
|
|
423
|
+
return client.qbd.invoices.create(body);
|
|
424
|
+
};
|
|
425
|
+
export default { metadata, tool, handler };
|
|
426
|
+
//# sourceMappingURL=create-qbd-invoices.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"create-qbd-invoices.mjs","sourceRoot":"","sources":["../../../src/tools/qbd/invoices/create-qbd-invoices.ts"],"names":[],"mappings":"AAAA,sFAAsF;AAMtF,MAAM,CAAC,MAAM,QAAQ,GAAa;IAChC,QAAQ,EAAE,cAAc;IACxB,SAAS,EAAE,OAAO;IAClB,IAAI,EAAE,EAAE;IACR,UAAU,EAAE,MAAM;IAClB,QAAQ,EAAE,8BAA8B;CACzC,CAAC;AAEF,MAAM,CAAC,MAAM,IAAI,GAAS;IACxB,IAAI,EAAE,qBAAqB;IAC3B,WAAW,EAAE,wBAAwB;IACrC,WAAW,EAAE;QACX,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE;YACV,UAAU,EAAE;gBACV,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,4DAA4D;aAC1E;YACD,eAAe,EAAE;gBACf,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,4DAA4D;gBACzE,MAAM,EAAE,MAAM;aACf;YACD,uBAAuB,EAAE;gBACvB,IAAI,EAAE,QAAQ;gBACd,WAAW,EACT,mGAAmG;aACtG;YACD,YAAY,EAAE;gBACZ,IAAI,EAAE,OAAO;gBACb,WAAW,EACT,2jBAA2jB;gBAC7jB,KAAK,EAAE;oBACL,IAAI,EAAE,QAAQ;oBACd,UAAU,EAAE;wBACV,aAAa,EAAE;4BACb,IAAI,EAAE,QAAQ;4BACd,WAAW,EACT,gJAAgJ;yBACnJ;wBACD,mBAAmB,EAAE;4BACnB,IAAI,EAAE,QAAQ;4BACd,WAAW,EACT,8GAA8G;yBACjH;wBACD,yBAAyB,EAAE;4BACzB,IAAI,EAAE,SAAS;4BACf,WAAW,EAAE,2CAA2C;yBACzD;qBACF;oBACD,QAAQ,EAAE,CAAC,eAAe,EAAE,qBAAqB,CAAC;iBACnD;aACF;YACD,cAAc,EAAE;gBACd,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,gCAAgC;gBAC7C,UAAU,EAAE;oBACV,IAAI,EAAE;wBACJ,IAAI,EAAE,QAAQ;wBACd,WAAW,EACT,qGAAqG;qBACxG;oBACD,OAAO,EAAE;wBACP,IAAI,EAAE,QAAQ;wBACd,WAAW,EAAE,kCAAkC;qBAChD;oBACD,KAAK,EAAE;wBACL,IAAI,EAAE,QAAQ;wBACd,WAAW,EACT,0GAA0G;qBAC7G;oBACD,KAAK,EAAE;wBACL,IAAI,EAAE,QAAQ;wBACd,WAAW,EACT,0HAA0H;qBAC7H;oBACD,KAAK,EAAE;wBACL,IAAI,EAAE,QAAQ;wBACd,WAAW,EAAE,6EAA6E;qBAC3F;oBACD,KAAK,EAAE;wBACL,IAAI,EAAE,QAAQ;wBACd,WAAW,EAAE,8EAA8E;qBAC5F;oBACD,KAAK,EAAE;wBACL,IAAI,EAAE,QAAQ;wBACd,WAAW,EAAE,6EAA6E;qBAC3F;oBACD,IAAI,EAAE;wBACJ,IAAI,EAAE,QAAQ;wBACd,WAAW,EACT,wGAAwG;qBAC3G;oBACD,UAAU,EAAE;wBACV,IAAI,EAAE,QAAQ;wBACd,WAAW,EAAE,+EAA+E;qBAC7F;oBACD,KAAK,EAAE;wBACL,IAAI,EAAE,QAAQ;wBACd,WAAW,EACT,+FAA+F;qBAClG;iBACF;gBACD,QAAQ,EAAE,EAAE;aACb;YACD,OAAO,EAAE;gBACP,IAAI,EAAE,QAAQ;gBACd,WAAW,EACT,4SAA4S;aAC/S;YACD,iBAAiB,EAAE;gBACjB,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,wDAAwD;aACtE;YACD,kBAAkB,EAAE;gBAClB,IAAI,EAAE,QAAQ;gBACd,WAAW,EACT,6HAA6H;aAChI;YACD,OAAO,EAAE;gBACP,IAAI,EAAE,QAAQ;gBACd,WAAW,EACT,uOAAuO;gBACzO,MAAM,EAAE,MAAM;aACf;YACD,YAAY,EAAE;gBACZ,IAAI,EAAE,QAAQ;gBACd,WAAW,EACT,iOAAiO;aACpO;YACD,UAAU,EAAE;gBACV,IAAI,EAAE,QAAQ;gBACd,WAAW,EACT,uSAAuS;aAC1S;YACD,eAAe,EAAE;gBACf,IAAI,EAAE,SAAS;gBACf,WAAW,EACT,sHAAsH;aACzH;YACD,SAAS,EAAE;gBACT,IAAI,EAAE,SAAS;gBACf,WAAW,EAAE,iFAAiF;aAC/F;YACD,gBAAgB,EAAE;gBAChB,IAAI,EAAE,SAAS;gBACf,WAAW,EACT,+GAA+G;aAClH;YACD,gBAAgB,EAAE;gBAChB,IAAI,EAAE,SAAS;gBACf,WAAW,EACT,+FAA+F;aAClG;YACD,UAAU,EAAE;gBACV,IAAI,EAAE,OAAO;gBACb,WAAW,EAAE,sFAAsF;gBACnG,KAAK,EAAE;oBACL,IAAI,EAAE,QAAQ;oBACd,UAAU,EAAE;wBACV,WAAW,EAAE;4BACX,IAAI,EAAE,QAAQ;4BACd,WAAW,EACT,+JAA+J;yBAClK;wBACD,YAAY,EAAE;4BACZ,IAAI,EAAE,OAAO;4BACb,WAAW,EACT,6IAA6I;4BAC/I,KAAK,EAAE;gCACL,IAAI,EAAE,QAAQ;gCACd,UAAU,EAAE;oCACV,IAAI,EAAE;wCACJ,IAAI,EAAE,QAAQ;wCACd,WAAW,EACT,mJAAmJ;qCACtJ;oCACD,OAAO,EAAE;wCACP,IAAI,EAAE,QAAQ;wCACd,WAAW,EACT,mdAAmd;qCACtd;oCACD,KAAK,EAAE;wCACL,IAAI,EAAE,QAAQ;wCACd,WAAW,EACT,sFAAsF;qCACzF;iCACF;gCACD,QAAQ,EAAE,CAAC,MAAM,EAAE,SAAS,EAAE,OAAO,CAAC;6BACvC;yBACF;wBACD,eAAe,EAAE;4BACf,IAAI,EAAE,QAAQ;4BACd,WAAW,EACT,yGAAyG;yBAC5G;wBACD,uBAAuB,EAAE;4BACvB,IAAI,EAAE,QAAQ;4BACd,WAAW,EACT,8IAA8I;yBACjJ;wBACD,QAAQ,EAAE;4BACR,IAAI,EAAE,QAAQ;4BACd,WAAW,EACT,iMAAiM;yBACpM;wBACD,aAAa,EAAE;4BACb,IAAI,EAAE,QAAQ;4BACd,WAAW,EACT,4IAA4I;yBAC/I;qBACF;oBACD,QAAQ,EAAE,CAAC,aAAa,CAAC;iBAC1B;aACF;YACD,KAAK,EAAE;gBACL,IAAI,EAAE,OAAO;gBACb,WAAW,EAAE,+EAA+E;gBAC5F,KAAK,EAAE;oBACL,IAAI,EAAE,QAAQ;oBACd,UAAU,EAAE;wBACV,MAAM,EAAE;4BACN,IAAI,EAAE,QAAQ;4BACd,WAAW,EACT,gXAAgX;yBACnX;wBACD,OAAO,EAAE;4BACP,IAAI,EAAE,QAAQ;4BACd,WAAW,EACT,kWAAkW;yBACrW;wBACD,YAAY,EAAE;4BACZ,IAAI,EAAE,OAAO;4BACb,WAAW,EACT,uIAAuI;4BACzI,KAAK,EAAE;gCACL,IAAI,EAAE,QAAQ;gCACd,UAAU,EAAE;oCACV,IAAI,EAAE;wCACJ,IAAI,EAAE,QAAQ;wCACd,WAAW,EACT,mJAAmJ;qCACtJ;oCACD,OAAO,EAAE;wCACP,IAAI,EAAE,QAAQ;wCACd,WAAW,EACT,mdAAmd;qCACtd;oCACD,KAAK,EAAE;wCACL,IAAI,EAAE,QAAQ;wCACd,WAAW,EACT,sFAAsF;qCACzF;iCACF;gCACD,QAAQ,EAAE,CAAC,MAAM,EAAE,SAAS,EAAE,OAAO,CAAC;6BACvC;yBACF;wBACD,WAAW,EAAE;4BACX,IAAI,EAAE,QAAQ;4BACd,WAAW,EAAE,qCAAqC;yBACnD;wBACD,eAAe,EAAE;4BACf,IAAI,EAAE,QAAQ;4BACd,WAAW,EACT,6FAA6F;yBAChG;wBACD,uBAAuB,EAAE;4BACvB,IAAI,EAAE,QAAQ;4BACd,WAAW,EACT,kIAAkI;yBACrI;wBACD,MAAM,EAAE;4BACN,IAAI,EAAE,QAAQ;4BACd,WAAW,EACT,qPAAqP;yBACxP;wBACD,qBAAqB,EAAE;4BACrB,IAAI,EAAE,QAAQ;4BACd,WAAW,EACT,wuDAAwuD;4BAC1uD,UAAU,EAAE;gCACV,aAAa,EAAE;oCACb,IAAI,EAAE,QAAQ;oCACd,WAAW,EAAE,8DAA8D;iCAC5E;gCACD,iBAAiB,EAAE;oCACjB,IAAI,EAAE,QAAQ;oCACd,WAAW,EAAE,mEAAmE;iCACjF;6BACF;4BACD,QAAQ,EAAE,CAAC,eAAe,EAAE,mBAAmB,CAAC;yBACjD;wBACD,SAAS,EAAE;4BACT,IAAI,EAAE,QAAQ;4BACd,WAAW,EACT,wJAAwJ;yBAC3J;wBACD,iBAAiB,EAAE;4BACjB,IAAI,EAAE,QAAQ;4BACd,WAAW,EACT,+XAA+X;yBAClY;wBACD,iBAAiB,EAAE;4BACjB,IAAI,EAAE,QAAQ;4BACd,WAAW,EACT,gaAAga;yBACna;wBACD,qBAAqB,EAAE;4BACrB,IAAI,EAAE,QAAQ;4BACd,WAAW,EACT,oGAAoG;yBACvG;wBACD,YAAY,EAAE;4BACZ,IAAI,EAAE,QAAQ;4BACd,WAAW,EACT,sNAAsN;yBACzN;wBACD,yBAAyB,EAAE;4BACzB,IAAI,EAAE,QAAQ;4BACd,WAAW,EACT,2FAA2F;4BAC7F,IAAI,EAAE,CAAC,YAAY,EAAE,MAAM,CAAC;yBAC7B;wBACD,QAAQ,EAAE;4BACR,IAAI,EAAE,QAAQ;4BACd,WAAW,EACT,yKAAyK;yBAC5K;wBACD,IAAI,EAAE;4BACJ,IAAI,EAAE,QAAQ;4BACd,WAAW,EACT,yRAAyR;yBAC5R;wBACD,WAAW,EAAE;4BACX,IAAI,EAAE,QAAQ;4BACd,WAAW,EACT,wGAAwG;yBAC3G;wBACD,cAAc,EAAE;4BACd,IAAI,EAAE,QAAQ;4BACd,WAAW,EACT,mdAAmd;yBACtd;wBACD,YAAY,EAAE;4BACZ,IAAI,EAAE,QAAQ;4BACd,WAAW,EACT,4IAA4I;yBAC/I;wBACD,WAAW,EAAE;4BACX,IAAI,EAAE,QAAQ;4BACd,WAAW,EACT,iKAAiK;4BACnK,MAAM,EAAE,MAAM;yBACf;wBACD,aAAa,EAAE;4BACb,IAAI,EAAE,QAAQ;4BACd,WAAW,EACT,sIAAsI;yBACzI;qBACF;oBACD,QAAQ,EAAE,EAAE;iBACb;aACF;YACD,oBAAoB,EAAE;gBACpB,IAAI,EAAE,OAAO;gBACb,WAAW,EACT,qrCAAqrC;gBACvrC,KAAK,EAAE;oBACL,IAAI,EAAE,QAAQ;iBACf;aACF;YACD,IAAI,EAAE;gBACJ,IAAI,EAAE,QAAQ;gBACd,WAAW,EACT,uIAAuI;aAC1I;YACD,gBAAgB,EAAE;gBAChB,IAAI,EAAE,QAAQ;gBACd,WAAW,EACT,2eAA2e;aAC9e;YACD,mBAAmB,EAAE;gBACnB,IAAI,EAAE,QAAQ;gBACd,WAAW,EACT,wKAAwK;aAC3K;YACD,oBAAoB,EAAE;gBACpB,IAAI,EAAE,QAAQ;gBACd,WAAW,EACT,wdAAwd;aAC3d;YACD,SAAS,EAAE;gBACT,IAAI,EAAE,QAAQ;gBACd,WAAW,EACT,0VAA0V;aAC7V;YACD,qBAAqB,EAAE;gBACrB,IAAI,EAAE,QAAQ;gBACd,WAAW,EACT,oHAAoH;aACvH;YACD,cAAc,EAAE;gBACd,IAAI,EAAE,QAAQ;gBACd,WAAW,EACT,+ZAA+Z;aACla;YACD,cAAc,EAAE;gBACd,IAAI,EAAE,QAAQ;gBACd,WAAW,EACT,q9BAAq9B;aACx9B;YACD,cAAc,EAAE;gBACd,IAAI,EAAE,QAAQ;gBACd,WAAW,EACT,iVAAiV;aACpV;YACD,eAAe,EAAE;gBACf,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,iCAAiC;gBAC9C,UAAU,EAAE;oBACV,IAAI,EAAE;wBACJ,IAAI,EAAE,QAAQ;wBACd,WAAW,EACT,qGAAqG;qBACxG;oBACD,OAAO,EAAE;wBACP,IAAI,EAAE,QAAQ;wBACd,WAAW,EAAE,kCAAkC;qBAChD;oBACD,KAAK,EAAE;wBACL,IAAI,EAAE,QAAQ;wBACd,WAAW,EACT,0GAA0G;qBAC7G;oBACD,KAAK,EAAE;wBACL,IAAI,EAAE,QAAQ;wBACd,WAAW,EACT,0HAA0H;qBAC7H;oBACD,KAAK,EAAE;wBACL,IAAI,EAAE,QAAQ;wBACd,WAAW,EAAE,6EAA6E;qBAC3F;oBACD,KAAK,EAAE;wBACL,IAAI,EAAE,QAAQ;wBACd,WAAW,EAAE,8EAA8E;qBAC5F;oBACD,KAAK,EAAE;wBACL,IAAI,EAAE,QAAQ;wBACd,WAAW,EAAE,6EAA6E;qBAC3F;oBACD,IAAI,EAAE;wBACJ,IAAI,EAAE,QAAQ;wBACd,WAAW,EACT,wGAAwG;qBAC3G;oBACD,UAAU,EAAE;wBACV,IAAI,EAAE,QAAQ;wBACd,WAAW,EAAE,+EAA+E;qBAC7F;oBACD,KAAK,EAAE;wBACL,IAAI,EAAE,QAAQ;wBACd,WAAW,EACT,+FAA+F;qBAClG;iBACF;gBACD,QAAQ,EAAE,EAAE;aACb;YACD,YAAY,EAAE;gBACZ,IAAI,EAAE,QAAQ;gBACd,WAAW,EACT,sIAAsI;gBACxI,MAAM,EAAE,MAAM;aACf;YACD,gBAAgB,EAAE;gBAChB,IAAI,EAAE,QAAQ;gBACd,WAAW,EACT,yFAAyF;aAC5F;YACD,OAAO,EAAE;gBACP,IAAI,EAAE,QAAQ;gBACd,WAAW,EACT,yFAAyF;aAC5F;SACF;KACF;CACF,CAAC;AAEF,MAAM,CAAC,MAAM,OAAO,GAAG,CAAC,MAAiB,EAAE,IAAyC,EAAE,EAAE;IACtF,MAAM,IAAI,GAAG,IAAW,CAAC;IACzB,OAAO,MAAM,CAAC,GAAG,CAAC,QAAQ,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC;AAC1C,CAAC,CAAC;AAEF,eAAe,EAAE,QAAQ,EAAE,IAAI,EAAE,OAAO,EAAE,CAAC"}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { Tool } from '@modelcontextprotocol/sdk/types.js';
|
|
2
|
+
import type { Metadata } from "../..//index.mjs";
|
|
3
|
+
import Conductor from 'conductor-node';
|
|
4
|
+
export declare const metadata: Metadata;
|
|
5
|
+
export declare const tool: Tool;
|
|
6
|
+
export declare const handler: (client: Conductor, args: Record<string, unknown> | undefined) => import("conductor-node/core").APIPromise<Conductor.Qbd.Invoices.InvoiceDeleteResponse>;
|
|
7
|
+
declare const _default: {
|
|
8
|
+
metadata: Metadata;
|
|
9
|
+
tool: {
|
|
10
|
+
[x: string]: unknown;
|
|
11
|
+
name: string;
|
|
12
|
+
inputSchema: {
|
|
13
|
+
[x: string]: unknown;
|
|
14
|
+
type: "object";
|
|
15
|
+
properties?: {
|
|
16
|
+
[x: string]: unknown;
|
|
17
|
+
} | undefined;
|
|
18
|
+
};
|
|
19
|
+
description?: string | undefined;
|
|
20
|
+
annotations?: {
|
|
21
|
+
[x: string]: unknown;
|
|
22
|
+
title?: string | undefined;
|
|
23
|
+
readOnlyHint?: boolean | undefined;
|
|
24
|
+
destructiveHint?: boolean | undefined;
|
|
25
|
+
idempotentHint?: boolean | undefined;
|
|
26
|
+
openWorldHint?: boolean | undefined;
|
|
27
|
+
} | undefined;
|
|
28
|
+
};
|
|
29
|
+
handler: (client: Conductor, args: Record<string, unknown> | undefined) => import("conductor-node/core").APIPromise<Conductor.Qbd.Invoices.InvoiceDeleteResponse>;
|
|
30
|
+
};
|
|
31
|
+
export default _default;
|
|
32
|
+
//# sourceMappingURL=delete-qbd-invoices.d.mts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"delete-qbd-invoices.d.mts","sourceRoot":"","sources":["../../../src/tools/qbd/invoices/delete-qbd-invoices.ts"],"names":[],"mappings":"OAEO,EAAE,IAAI,EAAE,MAAM,oCAAoC;OAClD,KAAK,EAAE,QAAQ,EAAE;OACjB,SAAS,MAAM,gBAAgB;AAEtC,eAAO,MAAM,QAAQ,EAAE,QAMtB,CAAC;AAEF,eAAO,MAAM,IAAI,EAAE,IAkBlB,CAAC;AAEF,eAAO,MAAM,OAAO,GAAI,QAAQ,SAAS,EAAE,MAAM,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS,2FAGnF,CAAC;;;;;;;;;;;;;;;;;;;;;;;sBAH8B,SAAS,QAAQ,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS;;AAKpF,wBAA2C"}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { Tool } from '@modelcontextprotocol/sdk/types.js';
|
|
2
|
+
import type { Metadata } from "../..//index.js";
|
|
3
|
+
import Conductor from 'conductor-node';
|
|
4
|
+
export declare const metadata: Metadata;
|
|
5
|
+
export declare const tool: Tool;
|
|
6
|
+
export declare const handler: (client: Conductor, args: Record<string, unknown> | undefined) => import("conductor-node/core").APIPromise<Conductor.Qbd.Invoices.InvoiceDeleteResponse>;
|
|
7
|
+
declare const _default: {
|
|
8
|
+
metadata: Metadata;
|
|
9
|
+
tool: {
|
|
10
|
+
[x: string]: unknown;
|
|
11
|
+
name: string;
|
|
12
|
+
inputSchema: {
|
|
13
|
+
[x: string]: unknown;
|
|
14
|
+
type: "object";
|
|
15
|
+
properties?: {
|
|
16
|
+
[x: string]: unknown;
|
|
17
|
+
} | undefined;
|
|
18
|
+
};
|
|
19
|
+
description?: string | undefined;
|
|
20
|
+
annotations?: {
|
|
21
|
+
[x: string]: unknown;
|
|
22
|
+
title?: string | undefined;
|
|
23
|
+
readOnlyHint?: boolean | undefined;
|
|
24
|
+
destructiveHint?: boolean | undefined;
|
|
25
|
+
idempotentHint?: boolean | undefined;
|
|
26
|
+
openWorldHint?: boolean | undefined;
|
|
27
|
+
} | undefined;
|
|
28
|
+
};
|
|
29
|
+
handler: (client: Conductor, args: Record<string, unknown> | undefined) => import("conductor-node/core").APIPromise<Conductor.Qbd.Invoices.InvoiceDeleteResponse>;
|
|
30
|
+
};
|
|
31
|
+
export default _default;
|
|
32
|
+
//# sourceMappingURL=delete-qbd-invoices.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"delete-qbd-invoices.d.ts","sourceRoot":"","sources":["../../../src/tools/qbd/invoices/delete-qbd-invoices.ts"],"names":[],"mappings":"OAEO,EAAE,IAAI,EAAE,MAAM,oCAAoC;OAClD,KAAK,EAAE,QAAQ,EAAE;OACjB,SAAS,MAAM,gBAAgB;AAEtC,eAAO,MAAM,QAAQ,EAAE,QAMtB,CAAC;AAEF,eAAO,MAAM,IAAI,EAAE,IAkBlB,CAAC;AAEF,eAAO,MAAM,OAAO,GAAI,QAAQ,SAAS,EAAE,MAAM,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS,2FAGnF,CAAC;;;;;;;;;;;;;;;;;;;;;;;sBAH8B,SAAS,QAAQ,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS;;AAKpF,wBAA2C"}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
3
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
+
exports.handler = exports.tool = exports.metadata = void 0;
|
|
5
|
+
exports.metadata = {
|
|
6
|
+
resource: 'qbd.invoices',
|
|
7
|
+
operation: 'write',
|
|
8
|
+
tags: [],
|
|
9
|
+
httpMethod: 'delete',
|
|
10
|
+
httpPath: '/quickbooks-desktop/invoices/{id}',
|
|
11
|
+
};
|
|
12
|
+
exports.tool = {
|
|
13
|
+
name: 'delete_qbd_invoices',
|
|
14
|
+
description: 'Permanently deletes a an invoice. The deletion will fail if the invoice is currently in use or has any linked transactions that are in use.',
|
|
15
|
+
inputSchema: {
|
|
16
|
+
type: 'object',
|
|
17
|
+
properties: {
|
|
18
|
+
id: {
|
|
19
|
+
type: 'string',
|
|
20
|
+
description: 'The QuickBooks-assigned unique identifier of the invoice to delete.',
|
|
21
|
+
},
|
|
22
|
+
'Conductor-End-User-Id': {
|
|
23
|
+
type: 'string',
|
|
24
|
+
description: 'The ID of the EndUser to receive this request (e.g., `"Conductor-End-User-Id: {{END_USER_ID}}"`).',
|
|
25
|
+
},
|
|
26
|
+
},
|
|
27
|
+
},
|
|
28
|
+
};
|
|
29
|
+
const handler = (client, args) => {
|
|
30
|
+
const { id, ...body } = args;
|
|
31
|
+
return client.qbd.invoices.delete(id, body);
|
|
32
|
+
};
|
|
33
|
+
exports.handler = handler;
|
|
34
|
+
exports.default = { metadata: exports.metadata, tool: exports.tool, handler: exports.handler };
|
|
35
|
+
//# sourceMappingURL=delete-qbd-invoices.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"delete-qbd-invoices.js","sourceRoot":"","sources":["../../../src/tools/qbd/invoices/delete-qbd-invoices.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAMzE,QAAA,QAAQ,GAAa;IAChC,QAAQ,EAAE,cAAc;IACxB,SAAS,EAAE,OAAO;IAClB,IAAI,EAAE,EAAE;IACR,UAAU,EAAE,QAAQ;IACpB,QAAQ,EAAE,mCAAmC;CAC9C,CAAC;AAEW,QAAA,IAAI,GAAS;IACxB,IAAI,EAAE,qBAAqB;IAC3B,WAAW,EACT,6IAA6I;IAC/I,WAAW,EAAE;QACX,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE;YACV,EAAE,EAAE;gBACF,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,qEAAqE;aACnF;YACD,uBAAuB,EAAE;gBACvB,IAAI,EAAE,QAAQ;gBACd,WAAW,EACT,mGAAmG;aACtG;SACF;KACF;CACF,CAAC;AAEK,MAAM,OAAO,GAAG,CAAC,MAAiB,EAAE,IAAyC,EAAE,EAAE;IACtF,MAAM,EAAE,EAAE,EAAE,GAAG,IAAI,EAAE,GAAG,IAAW,CAAC;IACpC,OAAO,MAAM,CAAC,GAAG,CAAC,QAAQ,CAAC,MAAM,CAAC,EAAE,EAAE,IAAI,CAAC,CAAC;AAC9C,CAAC,CAAC;AAHW,QAAA,OAAO,WAGlB;AAEF,kBAAe,EAAE,QAAQ,EAAR,gBAAQ,EAAE,IAAI,EAAJ,YAAI,EAAE,OAAO,EAAP,eAAO,EAAE,CAAC"}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
export const metadata = {
|
|
3
|
+
resource: 'qbd.invoices',
|
|
4
|
+
operation: 'write',
|
|
5
|
+
tags: [],
|
|
6
|
+
httpMethod: 'delete',
|
|
7
|
+
httpPath: '/quickbooks-desktop/invoices/{id}',
|
|
8
|
+
};
|
|
9
|
+
export const tool = {
|
|
10
|
+
name: 'delete_qbd_invoices',
|
|
11
|
+
description: 'Permanently deletes a an invoice. The deletion will fail if the invoice is currently in use or has any linked transactions that are in use.',
|
|
12
|
+
inputSchema: {
|
|
13
|
+
type: 'object',
|
|
14
|
+
properties: {
|
|
15
|
+
id: {
|
|
16
|
+
type: 'string',
|
|
17
|
+
description: 'The QuickBooks-assigned unique identifier of the invoice to delete.',
|
|
18
|
+
},
|
|
19
|
+
'Conductor-End-User-Id': {
|
|
20
|
+
type: 'string',
|
|
21
|
+
description: 'The ID of the EndUser to receive this request (e.g., `"Conductor-End-User-Id: {{END_USER_ID}}"`).',
|
|
22
|
+
},
|
|
23
|
+
},
|
|
24
|
+
},
|
|
25
|
+
};
|
|
26
|
+
export const handler = (client, args) => {
|
|
27
|
+
const { id, ...body } = args;
|
|
28
|
+
return client.qbd.invoices.delete(id, body);
|
|
29
|
+
};
|
|
30
|
+
export default { metadata, tool, handler };
|
|
31
|
+
//# sourceMappingURL=delete-qbd-invoices.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"delete-qbd-invoices.mjs","sourceRoot":"","sources":["../../../src/tools/qbd/invoices/delete-qbd-invoices.ts"],"names":[],"mappings":"AAAA,sFAAsF;AAMtF,MAAM,CAAC,MAAM,QAAQ,GAAa;IAChC,QAAQ,EAAE,cAAc;IACxB,SAAS,EAAE,OAAO;IAClB,IAAI,EAAE,EAAE;IACR,UAAU,EAAE,QAAQ;IACpB,QAAQ,EAAE,mCAAmC;CAC9C,CAAC;AAEF,MAAM,CAAC,MAAM,IAAI,GAAS;IACxB,IAAI,EAAE,qBAAqB;IAC3B,WAAW,EACT,6IAA6I;IAC/I,WAAW,EAAE;QACX,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE;YACV,EAAE,EAAE;gBACF,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,qEAAqE;aACnF;YACD,uBAAuB,EAAE;gBACvB,IAAI,EAAE,QAAQ;gBACd,WAAW,EACT,mGAAmG;aACtG;SACF;KACF;CACF,CAAC;AAEF,MAAM,CAAC,MAAM,OAAO,GAAG,CAAC,MAAiB,EAAE,IAAyC,EAAE,EAAE;IACtF,MAAM,EAAE,EAAE,EAAE,GAAG,IAAI,EAAE,GAAG,IAAW,CAAC;IACpC,OAAO,MAAM,CAAC,GAAG,CAAC,QAAQ,CAAC,MAAM,CAAC,EAAE,EAAE,IAAI,CAAC,CAAC;AAC9C,CAAC,CAAC;AAEF,eAAe,EAAE,QAAQ,EAAE,IAAI,EAAE,OAAO,EAAE,CAAC"}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { Tool } from '@modelcontextprotocol/sdk/types.js';
|
|
2
|
+
import type { Metadata } from "../..//index.mjs";
|
|
3
|
+
import Conductor from 'conductor-node';
|
|
4
|
+
export declare const metadata: Metadata;
|
|
5
|
+
export declare const tool: Tool;
|
|
6
|
+
export declare const handler: (client: Conductor, args: Record<string, unknown> | undefined) => import("conductor-node/core").PagePromise<Conductor.Qbd.Invoices.InvoicesCursorPage, Conductor.Qbd.Invoices.Invoice>;
|
|
7
|
+
declare const _default: {
|
|
8
|
+
metadata: Metadata;
|
|
9
|
+
tool: {
|
|
10
|
+
[x: string]: unknown;
|
|
11
|
+
name: string;
|
|
12
|
+
inputSchema: {
|
|
13
|
+
[x: string]: unknown;
|
|
14
|
+
type: "object";
|
|
15
|
+
properties?: {
|
|
16
|
+
[x: string]: unknown;
|
|
17
|
+
} | undefined;
|
|
18
|
+
};
|
|
19
|
+
description?: string | undefined;
|
|
20
|
+
annotations?: {
|
|
21
|
+
[x: string]: unknown;
|
|
22
|
+
title?: string | undefined;
|
|
23
|
+
readOnlyHint?: boolean | undefined;
|
|
24
|
+
destructiveHint?: boolean | undefined;
|
|
25
|
+
idempotentHint?: boolean | undefined;
|
|
26
|
+
openWorldHint?: boolean | undefined;
|
|
27
|
+
} | undefined;
|
|
28
|
+
};
|
|
29
|
+
handler: (client: Conductor, args: Record<string, unknown> | undefined) => import("conductor-node/core").PagePromise<Conductor.Qbd.Invoices.InvoicesCursorPage, Conductor.Qbd.Invoices.Invoice>;
|
|
30
|
+
};
|
|
31
|
+
export default _default;
|
|
32
|
+
//# sourceMappingURL=list-qbd-invoices.d.mts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"list-qbd-invoices.d.mts","sourceRoot":"","sources":["../../../src/tools/qbd/invoices/list-qbd-invoices.ts"],"names":[],"mappings":"OAEO,EAAE,IAAI,EAAE,MAAM,oCAAoC;OAClD,KAAK,EAAE,QAAQ,EAAE;OACjB,SAAS,MAAM,gBAAgB;AAEtC,eAAO,MAAM,QAAQ,EAAE,QAMtB,CAAC;AAEF,eAAO,MAAM,IAAI,EAAE,IAyHlB,CAAC;AAEF,eAAO,MAAM,OAAO,GAAI,QAAQ,SAAS,EAAE,MAAM,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS,yHAGnF,CAAC;;;;;;;;;;;;;;;;;;;;;;;sBAH8B,SAAS,QAAQ,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS;;AAKpF,wBAA2C"}
|