conductor-node 12.8.0 → 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/CHANGELOG.md +15 -0
- package/README.md +4 -4
- package/package.json +1 -1
- package/src/_shims/auto/runtime-bun.ts +1 -1
- package/src/_shims/auto/runtime-node.ts +1 -1
- package/src/_shims/auto/runtime.ts +1 -1
- package/src/_shims/auto/types-node.ts +1 -1
- package/src/_shims/bun-runtime.ts +2 -2
- package/src/_shims/index.d.ts +3 -3
- package/src/_shims/index.mjs +1 -1
- package/src/_shims/node-runtime.ts +3 -3
- package/src/_shims/registry.ts +1 -1
- package/src/_shims/web-runtime.ts +3 -3
- package/src/core.ts +5 -5
- package/src/error.ts +1 -1
- package/src/index.ts +13 -13
- package/src/internal/qs/formats.ts +1 -1
- package/src/internal/qs/index.ts +3 -3
- package/src/internal/qs/stringify.ts +3 -3
- package/src/internal/qs/utils.ts +2 -2
- package/src/pagination.ts +1 -1
- package/src/resource.ts +1 -1
- package/src/resources/auth-sessions.ts +2 -2
- package/src/resources/end-users.ts +3 -3
- package/src/resources/index.ts +3 -3
- package/src/resources/qbd/account-tax-lines.ts +2 -2
- package/src/resources/qbd/accounts.ts +2 -2
- package/src/resources/qbd/bill-check-payments.ts +3 -3
- package/src/resources/qbd/bill-credit-card-payments.ts +3 -3
- package/src/resources/qbd/bills.ts +3 -3
- package/src/resources/qbd/checks.ts +3 -3
- package/src/resources/qbd/classes.ts +2 -2
- package/src/resources/qbd/company.ts +2 -2
- package/src/resources/qbd/credit-card-charges.ts +3 -3
- package/src/resources/qbd/credit-card-credits.ts +3 -3
- package/src/resources/qbd/credit-memos.ts +3 -3
- package/src/resources/qbd/customers.ts +3 -3
- package/src/resources/qbd/date-driven-terms.ts +2 -2
- package/src/resources/qbd/discount-items.ts +3 -3
- package/src/resources/qbd/employees.ts +3 -3
- package/src/resources/qbd/estimates.ts +3 -3
- package/src/resources/qbd/index.ts +47 -47
- package/src/resources/qbd/inventory-adjustments.ts +2 -2
- package/src/resources/qbd/inventory-assembly-items.ts +3 -3
- package/src/resources/qbd/inventory-items.ts +3 -3
- package/src/resources/qbd/inventory-sites.ts +2 -2
- package/src/resources/qbd/invoices.ts +3 -3
- package/src/resources/qbd/item-groups.ts +3 -3
- package/src/resources/qbd/item-receipts.ts +3 -3
- package/src/resources/qbd/item-sites.ts +3 -3
- package/src/resources/qbd/journal-entries.ts +3 -3
- package/src/resources/qbd/non-inventory-items.ts +3 -3
- package/src/resources/qbd/other-names.ts +2 -2
- package/src/resources/qbd/payment-methods.ts +2 -2
- package/src/resources/qbd/payroll-wage-items.ts +3 -3
- package/src/resources/qbd/preferences.ts +2 -2
- package/src/resources/qbd/price-levels.ts +2 -2
- package/src/resources/qbd/purchase-orders.ts +3 -3
- package/src/resources/qbd/qbd.ts +94 -94
- package/src/resources/qbd/receive-payments.ts +3 -3
- package/src/resources/qbd/sales-orders.ts +3 -3
- package/src/resources/qbd/sales-receipts.ts +3 -3
- package/src/resources/qbd/sales-representatives.ts +2 -2
- package/src/resources/qbd/sales-tax-codes.ts +2 -2
- package/src/resources/qbd/sales-tax-items.ts +3 -3
- package/src/resources/qbd/service-items.ts +3 -3
- package/src/resources/qbd/standard-terms.ts +2 -2
- package/src/resources/qbd/subtotal-items.ts +3 -3
- package/src/resources/qbd/time-tracking-activities.ts +3 -3
- package/src/resources/qbd/transactions.ts +3 -3
- package/src/resources/qbd/transfers.ts +3 -3
- package/src/resources/qbd/vendor-credits.ts +3 -3
- package/src/resources/qbd/vendors.ts +3 -3
- package/src/resources/qbd.ts +1 -1
- package/src/resources.ts +1 -1
- package/src/shims/node.ts +3 -3
- package/src/shims/web.ts +3 -3
- package/src/uploads.ts +4 -4
- package/src/version.ts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
package/src/resources/qbd.ts
CHANGED
package/src/resources.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from
|
|
1
|
+
export * from "./resources/index.js";
|
package/src/shims/node.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// @ts-ignore
|
|
2
|
-
import * as types from
|
|
3
|
-
import { setShims } from
|
|
4
|
-
import { getRuntime } from
|
|
2
|
+
import * as types from "../_shims/node-types.js";
|
|
3
|
+
import { setShims } from "../_shims/registry.js";
|
|
4
|
+
import { getRuntime } from "../_shims/node-runtime.js";
|
|
5
5
|
setShims(getRuntime());
|
|
6
6
|
|
|
7
7
|
declare module '../_shims/manual-types' {
|
package/src/shims/web.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// @ts-ignore
|
|
2
|
-
import * as types from
|
|
3
|
-
import { setShims } from
|
|
4
|
-
import { getRuntime } from
|
|
2
|
+
import * as types from "../_shims/web-types.js";
|
|
3
|
+
import { setShims } from "../_shims/registry.js";
|
|
4
|
+
import { getRuntime } from "../_shims/web-runtime.js";
|
|
5
5
|
setShims(getRuntime({ manuallyImported: true }));
|
|
6
6
|
|
|
7
7
|
declare module '../_shims/manual-types' {
|
package/src/uploads.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { type RequestOptions } from
|
|
1
|
+
import { type RequestOptions } from "./core.js";
|
|
2
2
|
import {
|
|
3
3
|
FormData,
|
|
4
4
|
File,
|
|
@@ -7,9 +7,9 @@ import {
|
|
|
7
7
|
getMultipartRequestOptions,
|
|
8
8
|
type FsReadStream,
|
|
9
9
|
isFsReadStream,
|
|
10
|
-
} from
|
|
11
|
-
import { MultipartBody } from
|
|
12
|
-
export { fileFromPath } from
|
|
10
|
+
} from "./_shims/index.js";
|
|
11
|
+
import { MultipartBody } from "./_shims/MultipartBody.js";
|
|
12
|
+
export { fileFromPath } from "./_shims/index.js";
|
|
13
13
|
|
|
14
14
|
type BlobLikePart = string | ArrayBuffer | ArrayBufferView | BlobLike | Uint8Array | DataView;
|
|
15
15
|
export type BlobPart = string | ArrayBuffer | ArrayBufferView | Blob | Uint8Array | DataView;
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '12.8.
|
|
1
|
+
export const VERSION = '12.8.1'; // x-release-please-version
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "12.8.
|
|
1
|
+
export declare const VERSION = "12.8.1";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '12.8.
|
|
1
|
+
export const VERSION = '12.8.1'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|