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.
Files changed (82) hide show
  1. package/CHANGELOG.md +15 -0
  2. package/README.md +4 -4
  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
@@ -5,7 +5,7 @@ export {
5
5
  type AccountTaxLine,
6
6
  type AccountTaxLineListResponse,
7
7
  type AccountTaxLineListParams,
8
- } from './account-tax-lines';
8
+ } from "./account-tax-lines.js";
9
9
  export {
10
10
  Accounts,
11
11
  type Account,
@@ -14,7 +14,7 @@ export {
14
14
  type AccountRetrieveParams,
15
15
  type AccountUpdateParams,
16
16
  type AccountListParams,
17
- } from './accounts';
17
+ } from "./accounts.js";
18
18
  export {
19
19
  BillCheckPaymentsCursorPage,
20
20
  BillCheckPayments,
@@ -25,7 +25,7 @@ export {
25
25
  type BillCheckPaymentUpdateParams,
26
26
  type BillCheckPaymentListParams,
27
27
  type BillCheckPaymentDeleteParams,
28
- } from './bill-check-payments';
28
+ } from "./bill-check-payments.js";
29
29
  export {
30
30
  BillCreditCardPaymentsCursorPage,
31
31
  BillCreditCardPayments,
@@ -35,7 +35,7 @@ export {
35
35
  type BillCreditCardPaymentRetrieveParams,
36
36
  type BillCreditCardPaymentListParams,
37
37
  type BillCreditCardPaymentDeleteParams,
38
- } from './bill-credit-card-payments';
38
+ } from "./bill-credit-card-payments.js";
39
39
  export {
40
40
  BillsCursorPage,
41
41
  Bills,
@@ -46,7 +46,7 @@ export {
46
46
  type BillUpdateParams,
47
47
  type BillListParams,
48
48
  type BillDeleteParams,
49
- } from './bills';
49
+ } from "./bills.js";
50
50
  export {
51
51
  ChecksCursorPage,
52
52
  Checks,
@@ -57,7 +57,7 @@ export {
57
57
  type CheckUpdateParams,
58
58
  type CheckListParams,
59
59
  type CheckDeleteParams,
60
- } from './checks';
60
+ } from "./checks.js";
61
61
  export {
62
62
  Classes,
63
63
  type Class,
@@ -66,8 +66,8 @@ export {
66
66
  type ClassRetrieveParams,
67
67
  type ClassUpdateParams,
68
68
  type ClassListParams,
69
- } from './classes';
70
- export { CompanyResource, type Company, type CompanyRetrieveParams } from './company';
69
+ } from "./classes.js";
70
+ export { CompanyResource, type Company, type CompanyRetrieveParams } from "./company.js";
71
71
  export {
72
72
  CreditCardChargesCursorPage,
73
73
  CreditCardCharges,
@@ -78,7 +78,7 @@ export {
78
78
  type CreditCardChargeUpdateParams,
79
79
  type CreditCardChargeListParams,
80
80
  type CreditCardChargeDeleteParams,
81
- } from './credit-card-charges';
81
+ } from "./credit-card-charges.js";
82
82
  export {
83
83
  CreditCardCreditsCursorPage,
84
84
  CreditCardCredits,
@@ -89,7 +89,7 @@ export {
89
89
  type CreditCardCreditUpdateParams,
90
90
  type CreditCardCreditListParams,
91
91
  type CreditCardCreditDeleteParams,
92
- } from './credit-card-credits';
92
+ } from "./credit-card-credits.js";
93
93
  export {
94
94
  CreditMemosCursorPage,
95
95
  CreditMemos,
@@ -100,7 +100,7 @@ export {
100
100
  type CreditMemoUpdateParams,
101
101
  type CreditMemoListParams,
102
102
  type CreditMemoDeleteParams,
103
- } from './credit-memos';
103
+ } from "./credit-memos.js";
104
104
  export {
105
105
  CustomersCursorPage,
106
106
  Customers,
@@ -109,7 +109,7 @@ export {
109
109
  type CustomerRetrieveParams,
110
110
  type CustomerUpdateParams,
111
111
  type CustomerListParams,
112
- } from './customers';
112
+ } from "./customers.js";
113
113
  export {
114
114
  DateDrivenTerms,
115
115
  type DateDrivenTerm,
@@ -117,7 +117,7 @@ export {
117
117
  type DateDrivenTermCreateParams,
118
118
  type DateDrivenTermRetrieveParams,
119
119
  type DateDrivenTermListParams,
120
- } from './date-driven-terms';
120
+ } from "./date-driven-terms.js";
121
121
  export {
122
122
  DiscountItemsCursorPage,
123
123
  DiscountItems,
@@ -126,7 +126,7 @@ export {
126
126
  type DiscountItemRetrieveParams,
127
127
  type DiscountItemUpdateParams,
128
128
  type DiscountItemListParams,
129
- } from './discount-items';
129
+ } from "./discount-items.js";
130
130
  export {
131
131
  EmployeesCursorPage,
132
132
  Employees,
@@ -135,7 +135,7 @@ export {
135
135
  type EmployeeRetrieveParams,
136
136
  type EmployeeUpdateParams,
137
137
  type EmployeeListParams,
138
- } from './employees';
138
+ } from "./employees.js";
139
139
  export {
140
140
  EstimatesCursorPage,
141
141
  Estimates,
@@ -146,7 +146,7 @@ export {
146
146
  type EstimateUpdateParams,
147
147
  type EstimateListParams,
148
148
  type EstimateDeleteParams,
149
- } from './estimates';
149
+ } from "./estimates.js";
150
150
  export {
151
151
  InventoryAdjustments,
152
152
  type InventoryAdjustment,
@@ -157,7 +157,7 @@ export {
157
157
  type InventoryAdjustmentUpdateParams,
158
158
  type InventoryAdjustmentListParams,
159
159
  type InventoryAdjustmentDeleteParams,
160
- } from './inventory-adjustments';
160
+ } from "./inventory-adjustments.js";
161
161
  export {
162
162
  InventoryAssemblyItemsCursorPage,
163
163
  InventoryAssemblyItems,
@@ -166,7 +166,7 @@ export {
166
166
  type InventoryAssemblyItemRetrieveParams,
167
167
  type InventoryAssemblyItemUpdateParams,
168
168
  type InventoryAssemblyItemListParams,
169
- } from './inventory-assembly-items';
169
+ } from "./inventory-assembly-items.js";
170
170
  export {
171
171
  InventoryItemsCursorPage,
172
172
  InventoryItems,
@@ -175,7 +175,7 @@ export {
175
175
  type InventoryItemRetrieveParams,
176
176
  type InventoryItemUpdateParams,
177
177
  type InventoryItemListParams,
178
- } from './inventory-items';
178
+ } from "./inventory-items.js";
179
179
  export {
180
180
  InventorySites,
181
181
  type InventorySite,
@@ -184,7 +184,7 @@ export {
184
184
  type InventorySiteRetrieveParams,
185
185
  type InventorySiteUpdateParams,
186
186
  type InventorySiteListParams,
187
- } from './inventory-sites';
187
+ } from "./inventory-sites.js";
188
188
  export {
189
189
  InvoicesCursorPage,
190
190
  Invoices,
@@ -195,7 +195,7 @@ export {
195
195
  type InvoiceUpdateParams,
196
196
  type InvoiceListParams,
197
197
  type InvoiceDeleteParams,
198
- } from './invoices';
198
+ } from "./invoices.js";
199
199
  export {
200
200
  ItemGroupsCursorPage,
201
201
  ItemGroups,
@@ -204,7 +204,7 @@ export {
204
204
  type ItemGroupRetrieveParams,
205
205
  type ItemGroupUpdateParams,
206
206
  type ItemGroupListParams,
207
- } from './item-groups';
207
+ } from "./item-groups.js";
208
208
  export {
209
209
  ItemReceiptsCursorPage,
210
210
  ItemReceipts,
@@ -215,14 +215,14 @@ export {
215
215
  type ItemReceiptUpdateParams,
216
216
  type ItemReceiptListParams,
217
217
  type ItemReceiptDeleteParams,
218
- } from './item-receipts';
218
+ } from "./item-receipts.js";
219
219
  export {
220
220
  ItemSitesCursorPage,
221
221
  ItemSites,
222
222
  type ItemSite,
223
223
  type ItemSiteRetrieveParams,
224
224
  type ItemSiteListParams,
225
- } from './item-sites';
225
+ } from "./item-sites.js";
226
226
  export {
227
227
  JournalEntriesCursorPage,
228
228
  JournalEntries,
@@ -233,7 +233,7 @@ export {
233
233
  type JournalEntryUpdateParams,
234
234
  type JournalEntryListParams,
235
235
  type JournalEntryDeleteParams,
236
- } from './journal-entries';
236
+ } from "./journal-entries.js";
237
237
  export {
238
238
  NonInventoryItemsCursorPage,
239
239
  NonInventoryItems,
@@ -242,7 +242,7 @@ export {
242
242
  type NonInventoryItemRetrieveParams,
243
243
  type NonInventoryItemUpdateParams,
244
244
  type NonInventoryItemListParams,
245
- } from './non-inventory-items';
245
+ } from "./non-inventory-items.js";
246
246
  export {
247
247
  OtherNames,
248
248
  type OtherName,
@@ -251,7 +251,7 @@ export {
251
251
  type OtherNameRetrieveParams,
252
252
  type OtherNameUpdateParams,
253
253
  type OtherNameListParams,
254
- } from './other-names';
254
+ } from "./other-names.js";
255
255
  export {
256
256
  PaymentMethods,
257
257
  type PaymentMethod,
@@ -259,7 +259,7 @@ export {
259
259
  type PaymentMethodCreateParams,
260
260
  type PaymentMethodRetrieveParams,
261
261
  type PaymentMethodListParams,
262
- } from './payment-methods';
262
+ } from "./payment-methods.js";
263
263
  export {
264
264
  PayrollWageItemsCursorPage,
265
265
  PayrollWageItems,
@@ -267,8 +267,8 @@ export {
267
267
  type PayrollWageItemCreateParams,
268
268
  type PayrollWageItemRetrieveParams,
269
269
  type PayrollWageItemListParams,
270
- } from './payroll-wage-items';
271
- export { Preferences, type PreferenceRetrieveParams } from './preferences';
270
+ } from "./payroll-wage-items.js";
271
+ export { Preferences, type PreferenceRetrieveParams } from "./preferences.js";
272
272
  export {
273
273
  PriceLevels,
274
274
  type PriceLevel,
@@ -277,7 +277,7 @@ export {
277
277
  type PriceLevelRetrieveParams,
278
278
  type PriceLevelUpdateParams,
279
279
  type PriceLevelListParams,
280
- } from './price-levels';
280
+ } from "./price-levels.js";
281
281
  export {
282
282
  PurchaseOrdersCursorPage,
283
283
  PurchaseOrders,
@@ -288,8 +288,8 @@ export {
288
288
  type PurchaseOrderUpdateParams,
289
289
  type PurchaseOrderListParams,
290
290
  type PurchaseOrderDeleteParams,
291
- } from './purchase-orders';
292
- export { Qbd, type QbdHealthCheckResponse, type QbdHealthCheckParams } from './qbd';
291
+ } from "./purchase-orders.js";
292
+ export { Qbd, type QbdHealthCheckResponse, type QbdHealthCheckParams } from "./qbd.js";
293
293
  export {
294
294
  ReceivePaymentsCursorPage,
295
295
  ReceivePayments,
@@ -300,7 +300,7 @@ export {
300
300
  type ReceivePaymentUpdateParams,
301
301
  type ReceivePaymentListParams,
302
302
  type ReceivePaymentDeleteParams,
303
- } from './receive-payments';
303
+ } from "./receive-payments.js";
304
304
  export {
305
305
  SalesOrdersCursorPage,
306
306
  SalesOrders,
@@ -311,7 +311,7 @@ export {
311
311
  type SalesOrderUpdateParams,
312
312
  type SalesOrderListParams,
313
313
  type SalesOrderDeleteParams,
314
- } from './sales-orders';
314
+ } from "./sales-orders.js";
315
315
  export {
316
316
  SalesReceiptsCursorPage,
317
317
  SalesReceipts,
@@ -322,7 +322,7 @@ export {
322
322
  type SalesReceiptUpdateParams,
323
323
  type SalesReceiptListParams,
324
324
  type SalesReceiptDeleteParams,
325
- } from './sales-receipts';
325
+ } from "./sales-receipts.js";
326
326
  export {
327
327
  SalesRepresentatives,
328
328
  type SalesRepresentative,
@@ -331,7 +331,7 @@ export {
331
331
  type SalesRepresentativeRetrieveParams,
332
332
  type SalesRepresentativeUpdateParams,
333
333
  type SalesRepresentativeListParams,
334
- } from './sales-representatives';
334
+ } from "./sales-representatives.js";
335
335
  export {
336
336
  SalesTaxCodes,
337
337
  type SalesTaxCode,
@@ -340,7 +340,7 @@ export {
340
340
  type SalesTaxCodeRetrieveParams,
341
341
  type SalesTaxCodeUpdateParams,
342
342
  type SalesTaxCodeListParams,
343
- } from './sales-tax-codes';
343
+ } from "./sales-tax-codes.js";
344
344
  export {
345
345
  SalesTaxItemsCursorPage,
346
346
  SalesTaxItems,
@@ -349,7 +349,7 @@ export {
349
349
  type SalesTaxItemRetrieveParams,
350
350
  type SalesTaxItemUpdateParams,
351
351
  type SalesTaxItemListParams,
352
- } from './sales-tax-items';
352
+ } from "./sales-tax-items.js";
353
353
  export {
354
354
  ServiceItemsCursorPage,
355
355
  ServiceItems,
@@ -358,7 +358,7 @@ export {
358
358
  type ServiceItemRetrieveParams,
359
359
  type ServiceItemUpdateParams,
360
360
  type ServiceItemListParams,
361
- } from './service-items';
361
+ } from "./service-items.js";
362
362
  export {
363
363
  StandardTerms,
364
364
  type StandardTerm,
@@ -366,7 +366,7 @@ export {
366
366
  type StandardTermCreateParams,
367
367
  type StandardTermRetrieveParams,
368
368
  type StandardTermListParams,
369
- } from './standard-terms';
369
+ } from "./standard-terms.js";
370
370
  export {
371
371
  SubtotalItemsCursorPage,
372
372
  SubtotalItems,
@@ -375,7 +375,7 @@ export {
375
375
  type SubtotalItemRetrieveParams,
376
376
  type SubtotalItemUpdateParams,
377
377
  type SubtotalItemListParams,
378
- } from './subtotal-items';
378
+ } from "./subtotal-items.js";
379
379
  export {
380
380
  TimeTrackingActivitiesCursorPage,
381
381
  TimeTrackingActivities,
@@ -386,14 +386,14 @@ export {
386
386
  type TimeTrackingActivityUpdateParams,
387
387
  type TimeTrackingActivityListParams,
388
388
  type TimeTrackingActivityDeleteParams,
389
- } from './time-tracking-activities';
389
+ } from "./time-tracking-activities.js";
390
390
  export {
391
391
  TransactionsCursorPage,
392
392
  Transactions,
393
393
  type Transaction,
394
394
  type TransactionRetrieveParams,
395
395
  type TransactionListParams,
396
- } from './transactions';
396
+ } from "./transactions.js";
397
397
  export {
398
398
  TransfersCursorPage,
399
399
  Transfers,
@@ -402,7 +402,7 @@ export {
402
402
  type TransferRetrieveParams,
403
403
  type TransferUpdateParams,
404
404
  type TransferListParams,
405
- } from './transfers';
405
+ } from "./transfers.js";
406
406
  export {
407
407
  VendorCreditsCursorPage,
408
408
  VendorCredits,
@@ -413,7 +413,7 @@ export {
413
413
  type VendorCreditUpdateParams,
414
414
  type VendorCreditListParams,
415
415
  type VendorCreditDeleteParams,
416
- } from './vendor-credits';
416
+ } from "./vendor-credits.js";
417
417
  export {
418
418
  VendorsCursorPage,
419
419
  Vendors,
@@ -422,4 +422,4 @@ export {
422
422
  type VendorRetrieveParams,
423
423
  type VendorUpdateParams,
424
424
  type VendorListParams,
425
- } from './vendors';
425
+ } from "./vendors.js";
@@ -1,7 +1,7 @@
1
1
  // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
2
 
3
- import { APIResource } from '../../resource';
4
- import * as Core from '../../core';
3
+ import { APIResource } from "../../resource.js";
4
+ import * as Core from "../../core.js";
5
5
 
6
6
  export class InventoryAdjustments extends APIResource {
7
7
  /**
@@ -1,8 +1,8 @@
1
1
  // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
2
 
3
- import { APIResource } from '../../resource';
4
- import * as Core from '../../core';
5
- import { CursorPage, type CursorPageParams } from '../../pagination';
3
+ import { APIResource } from "../../resource.js";
4
+ import * as Core from "../../core.js";
5
+ import { CursorPage, type CursorPageParams } from "../../pagination.js";
6
6
 
7
7
  export class InventoryAssemblyItems extends APIResource {
8
8
  /**
@@ -1,8 +1,8 @@
1
1
  // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
2
 
3
- import { APIResource } from '../../resource';
4
- import * as Core from '../../core';
5
- import { CursorPage, type CursorPageParams } from '../../pagination';
3
+ import { APIResource } from "../../resource.js";
4
+ import * as Core from "../../core.js";
5
+ import { CursorPage, type CursorPageParams } from "../../pagination.js";
6
6
 
7
7
  export class InventoryItems extends APIResource {
8
8
  /**
@@ -1,7 +1,7 @@
1
1
  // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
2
 
3
- import { APIResource } from '../../resource';
4
- import * as Core from '../../core';
3
+ import { APIResource } from "../../resource.js";
4
+ import * as Core from "../../core.js";
5
5
 
6
6
  export class InventorySites extends APIResource {
7
7
  /**
@@ -1,8 +1,8 @@
1
1
  // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
2
 
3
- import { APIResource } from '../../resource';
4
- import * as Core from '../../core';
5
- import { CursorPage, type CursorPageParams } from '../../pagination';
3
+ import { APIResource } from "../../resource.js";
4
+ import * as Core from "../../core.js";
5
+ import { CursorPage, type CursorPageParams } from "../../pagination.js";
6
6
 
7
7
  export class Invoices extends APIResource {
8
8
  /**
@@ -1,8 +1,8 @@
1
1
  // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
2
 
3
- import { APIResource } from '../../resource';
4
- import * as Core from '../../core';
5
- import { CursorPage, type CursorPageParams } from '../../pagination';
3
+ import { APIResource } from "../../resource.js";
4
+ import * as Core from "../../core.js";
5
+ import { CursorPage, type CursorPageParams } from "../../pagination.js";
6
6
 
7
7
  export class ItemGroups extends APIResource {
8
8
  /**
@@ -1,8 +1,8 @@
1
1
  // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
2
 
3
- import { APIResource } from '../../resource';
4
- import * as Core from '../../core';
5
- import { CursorPage, type CursorPageParams } from '../../pagination';
3
+ import { APIResource } from "../../resource.js";
4
+ import * as Core from "../../core.js";
5
+ import { CursorPage, type CursorPageParams } from "../../pagination.js";
6
6
 
7
7
  export class ItemReceipts extends APIResource {
8
8
  /**
@@ -1,8 +1,8 @@
1
1
  // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
2
 
3
- import { APIResource } from '../../resource';
4
- import * as Core from '../../core';
5
- import { CursorPage, type CursorPageParams } from '../../pagination';
3
+ import { APIResource } from "../../resource.js";
4
+ import * as Core from "../../core.js";
5
+ import { CursorPage, type CursorPageParams } from "../../pagination.js";
6
6
 
7
7
  export class ItemSites extends APIResource {
8
8
  /**
@@ -1,8 +1,8 @@
1
1
  // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
2
 
3
- import { APIResource } from '../../resource';
4
- import * as Core from '../../core';
5
- import { CursorPage, type CursorPageParams } from '../../pagination';
3
+ import { APIResource } from "../../resource.js";
4
+ import * as Core from "../../core.js";
5
+ import { CursorPage, type CursorPageParams } from "../../pagination.js";
6
6
 
7
7
  export class JournalEntries extends APIResource {
8
8
  /**
@@ -1,8 +1,8 @@
1
1
  // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
2
 
3
- import { APIResource } from '../../resource';
4
- import * as Core from '../../core';
5
- import { CursorPage, type CursorPageParams } from '../../pagination';
3
+ import { APIResource } from "../../resource.js";
4
+ import * as Core from "../../core.js";
5
+ import { CursorPage, type CursorPageParams } from "../../pagination.js";
6
6
 
7
7
  export class NonInventoryItems extends APIResource {
8
8
  /**
@@ -1,7 +1,7 @@
1
1
  // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
2
 
3
- import { APIResource } from '../../resource';
4
- import * as Core from '../../core';
3
+ import { APIResource } from "../../resource.js";
4
+ import * as Core from "../../core.js";
5
5
 
6
6
  export class OtherNames extends APIResource {
7
7
  /**
@@ -1,7 +1,7 @@
1
1
  // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
2
 
3
- import { APIResource } from '../../resource';
4
- import * as Core from '../../core';
3
+ import { APIResource } from "../../resource.js";
4
+ import * as Core from "../../core.js";
5
5
 
6
6
  export class PaymentMethods extends APIResource {
7
7
  /**
@@ -1,8 +1,8 @@
1
1
  // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
2
 
3
- import { APIResource } from '../../resource';
4
- import * as Core from '../../core';
5
- import { CursorPage, type CursorPageParams } from '../../pagination';
3
+ import { APIResource } from "../../resource.js";
4
+ import * as Core from "../../core.js";
5
+ import { CursorPage, type CursorPageParams } from "../../pagination.js";
6
6
 
7
7
  export class PayrollWageItems extends APIResource {
8
8
  /**
@@ -1,7 +1,7 @@
1
1
  // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
2
 
3
- import { APIResource } from '../../resource';
4
- import * as Core from '../../core';
3
+ import { APIResource } from "../../resource.js";
4
+ import * as Core from "../../core.js";
5
5
 
6
6
  export class Preferences extends APIResource {
7
7
  /**
@@ -1,7 +1,7 @@
1
1
  // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
2
 
3
- import { APIResource } from '../../resource';
4
- import * as Core from '../../core';
3
+ import { APIResource } from "../../resource.js";
4
+ import * as Core from "../../core.js";
5
5
 
6
6
  export class PriceLevels extends APIResource {
7
7
  /**
@@ -1,8 +1,8 @@
1
1
  // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
2
 
3
- import { APIResource } from '../../resource';
4
- import * as Core from '../../core';
5
- import { CursorPage, type CursorPageParams } from '../../pagination';
3
+ import { APIResource } from "../../resource.js";
4
+ import * as Core from "../../core.js";
5
+ import { CursorPage, type CursorPageParams } from "../../pagination.js";
6
6
 
7
7
  export class PurchaseOrders extends APIResource {
8
8
  /**