conductor-node 12.8.0 → 12.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (82) hide show
  1. package/CHANGELOG.md +28 -0
  2. package/README.md +18 -32
  3. package/package.json +1 -1
  4. package/src/_shims/auto/runtime-bun.ts +1 -1
  5. package/src/_shims/auto/runtime-node.ts +1 -1
  6. package/src/_shims/auto/runtime.ts +1 -1
  7. package/src/_shims/auto/types-node.ts +1 -1
  8. package/src/_shims/bun-runtime.ts +2 -2
  9. package/src/_shims/index.d.ts +3 -3
  10. package/src/_shims/index.mjs +1 -1
  11. package/src/_shims/node-runtime.ts +3 -3
  12. package/src/_shims/registry.ts +1 -1
  13. package/src/_shims/web-runtime.ts +3 -3
  14. package/src/core.ts +5 -5
  15. package/src/error.ts +1 -1
  16. package/src/index.ts +13 -13
  17. package/src/internal/qs/formats.ts +1 -1
  18. package/src/internal/qs/index.ts +3 -3
  19. package/src/internal/qs/stringify.ts +3 -3
  20. package/src/internal/qs/utils.ts +2 -2
  21. package/src/pagination.ts +1 -1
  22. package/src/resource.ts +1 -1
  23. package/src/resources/auth-sessions.ts +2 -2
  24. package/src/resources/end-users.ts +3 -3
  25. package/src/resources/index.ts +3 -3
  26. package/src/resources/qbd/account-tax-lines.ts +2 -2
  27. package/src/resources/qbd/accounts.ts +2 -2
  28. package/src/resources/qbd/bill-check-payments.ts +3 -3
  29. package/src/resources/qbd/bill-credit-card-payments.ts +3 -3
  30. package/src/resources/qbd/bills.ts +3 -3
  31. package/src/resources/qbd/checks.ts +3 -3
  32. package/src/resources/qbd/classes.ts +2 -2
  33. package/src/resources/qbd/company.ts +2 -2
  34. package/src/resources/qbd/credit-card-charges.ts +3 -3
  35. package/src/resources/qbd/credit-card-credits.ts +3 -3
  36. package/src/resources/qbd/credit-memos.ts +3 -3
  37. package/src/resources/qbd/customers.ts +3 -3
  38. package/src/resources/qbd/date-driven-terms.ts +2 -2
  39. package/src/resources/qbd/discount-items.ts +3 -3
  40. package/src/resources/qbd/employees.ts +3 -3
  41. package/src/resources/qbd/estimates.ts +3 -3
  42. package/src/resources/qbd/index.ts +47 -47
  43. package/src/resources/qbd/inventory-adjustments.ts +2 -2
  44. package/src/resources/qbd/inventory-assembly-items.ts +3 -3
  45. package/src/resources/qbd/inventory-items.ts +3 -3
  46. package/src/resources/qbd/inventory-sites.ts +2 -2
  47. package/src/resources/qbd/invoices.ts +3 -3
  48. package/src/resources/qbd/item-groups.ts +3 -3
  49. package/src/resources/qbd/item-receipts.ts +3 -3
  50. package/src/resources/qbd/item-sites.ts +3 -3
  51. package/src/resources/qbd/journal-entries.ts +3 -3
  52. package/src/resources/qbd/non-inventory-items.ts +3 -3
  53. package/src/resources/qbd/other-names.ts +2 -2
  54. package/src/resources/qbd/payment-methods.ts +2 -2
  55. package/src/resources/qbd/payroll-wage-items.ts +3 -3
  56. package/src/resources/qbd/preferences.ts +2 -2
  57. package/src/resources/qbd/price-levels.ts +2 -2
  58. package/src/resources/qbd/purchase-orders.ts +3 -3
  59. package/src/resources/qbd/qbd.ts +94 -94
  60. package/src/resources/qbd/receive-payments.ts +3 -3
  61. package/src/resources/qbd/sales-orders.ts +3 -3
  62. package/src/resources/qbd/sales-receipts.ts +3 -3
  63. package/src/resources/qbd/sales-representatives.ts +2 -2
  64. package/src/resources/qbd/sales-tax-codes.ts +2 -2
  65. package/src/resources/qbd/sales-tax-items.ts +3 -3
  66. package/src/resources/qbd/service-items.ts +3 -3
  67. package/src/resources/qbd/standard-terms.ts +2 -2
  68. package/src/resources/qbd/subtotal-items.ts +3 -3
  69. package/src/resources/qbd/time-tracking-activities.ts +3 -3
  70. package/src/resources/qbd/transactions.ts +3 -3
  71. package/src/resources/qbd/transfers.ts +3 -3
  72. package/src/resources/qbd/vendor-credits.ts +3 -3
  73. package/src/resources/qbd/vendors.ts +3 -3
  74. package/src/resources/qbd.ts +1 -1
  75. package/src/resources.ts +1 -1
  76. package/src/shims/node.ts +3 -3
  77. package/src/shims/web.ts +3 -3
  78. package/src/uploads.ts +4 -4
  79. package/src/version.ts +1 -1
  80. package/version.d.ts +1 -1
  81. package/version.js +1 -1
  82. package/version.mjs +1 -1
@@ -1,3 +1,3 @@
1
1
  // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
2
 
3
- export * from './qbd/index';
3
+ export * from "./qbd/index.js";
package/src/resources.ts CHANGED
@@ -1 +1 @@
1
- export * from './resources/index';
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 '../_shims/node-types';
3
- import { setShims } from '../_shims/registry';
4
- import { getRuntime } from '../_shims/node-runtime';
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 '../_shims/web-types';
3
- import { setShims } from '../_shims/registry';
4
- import { getRuntime } from '../_shims/web-runtime';
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 './core';
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 './_shims/index';
11
- import { MultipartBody } from './_shims/MultipartBody';
12
- export { fileFromPath } from './_shims/index';
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.0'; // x-release-please-version
1
+ export const VERSION = '12.9.0'; // x-release-please-version
package/version.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "12.8.0";
1
+ export declare const VERSION = "12.9.0";
2
2
  //# sourceMappingURL=version.d.ts.map
package/version.js CHANGED
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.VERSION = void 0;
4
- exports.VERSION = '12.8.0'; // x-release-please-version
4
+ exports.VERSION = '12.9.0'; // x-release-please-version
5
5
  //# sourceMappingURL=version.js.map
package/version.mjs CHANGED
@@ -1,2 +1,2 @@
1
- export const VERSION = '12.8.0'; // x-release-please-version
1
+ export const VERSION = '12.9.0'; // x-release-please-version
2
2
  //# sourceMappingURL=version.mjs.map