conductor-node 12.7.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 (106) hide show
  1. package/CHANGELOG.md +23 -0
  2. package/README.md +4 -4
  3. package/package.json +1 -1
  4. package/resources/qbd/index.d.ts +2 -1
  5. package/resources/qbd/index.d.ts.map +1 -1
  6. package/resources/qbd/index.js +3 -2
  7. package/resources/qbd/index.js.map +1 -1
  8. package/resources/qbd/index.mjs +2 -1
  9. package/resources/qbd/index.mjs.map +1 -1
  10. package/resources/qbd/other-names.d.ts +690 -0
  11. package/resources/qbd/other-names.d.ts.map +1 -0
  12. package/resources/qbd/other-names.js +88 -0
  13. package/resources/qbd/other-names.js.map +1 -0
  14. package/resources/qbd/other-names.mjs +84 -0
  15. package/resources/qbd/other-names.mjs.map +1 -0
  16. package/resources/qbd/payment-methods.d.ts +35 -13
  17. package/resources/qbd/payment-methods.d.ts.map +1 -1
  18. package/resources/qbd/payment-methods.js +7 -14
  19. package/resources/qbd/payment-methods.js.map +1 -1
  20. package/resources/qbd/payment-methods.mjs +6 -12
  21. package/resources/qbd/payment-methods.mjs.map +1 -1
  22. package/resources/qbd/qbd.d.ts +6 -2
  23. package/resources/qbd/qbd.d.ts.map +1 -1
  24. package/resources/qbd/qbd.js +4 -1
  25. package/resources/qbd/qbd.js.map +1 -1
  26. package/resources/qbd/qbd.mjs +5 -2
  27. package/resources/qbd/qbd.mjs.map +1 -1
  28. package/src/_shims/auto/runtime-bun.ts +1 -1
  29. package/src/_shims/auto/runtime-node.ts +1 -1
  30. package/src/_shims/auto/runtime.ts +1 -1
  31. package/src/_shims/auto/types-node.ts +1 -1
  32. package/src/_shims/bun-runtime.ts +2 -2
  33. package/src/_shims/index.d.ts +3 -3
  34. package/src/_shims/index.mjs +1 -1
  35. package/src/_shims/node-runtime.ts +3 -3
  36. package/src/_shims/registry.ts +1 -1
  37. package/src/_shims/web-runtime.ts +3 -3
  38. package/src/core.ts +5 -5
  39. package/src/error.ts +1 -1
  40. package/src/index.ts +13 -13
  41. package/src/internal/qs/formats.ts +1 -1
  42. package/src/internal/qs/index.ts +3 -3
  43. package/src/internal/qs/stringify.ts +3 -3
  44. package/src/internal/qs/utils.ts +2 -2
  45. package/src/pagination.ts +1 -1
  46. package/src/resource.ts +1 -1
  47. package/src/resources/auth-sessions.ts +2 -2
  48. package/src/resources/end-users.ts +3 -3
  49. package/src/resources/index.ts +3 -3
  50. package/src/resources/qbd/account-tax-lines.ts +2 -2
  51. package/src/resources/qbd/accounts.ts +2 -2
  52. package/src/resources/qbd/bill-check-payments.ts +3 -3
  53. package/src/resources/qbd/bill-credit-card-payments.ts +3 -3
  54. package/src/resources/qbd/bills.ts +3 -3
  55. package/src/resources/qbd/checks.ts +3 -3
  56. package/src/resources/qbd/classes.ts +2 -2
  57. package/src/resources/qbd/company.ts +2 -2
  58. package/src/resources/qbd/credit-card-charges.ts +3 -3
  59. package/src/resources/qbd/credit-card-credits.ts +3 -3
  60. package/src/resources/qbd/credit-memos.ts +3 -3
  61. package/src/resources/qbd/customers.ts +3 -3
  62. package/src/resources/qbd/date-driven-terms.ts +2 -2
  63. package/src/resources/qbd/discount-items.ts +3 -3
  64. package/src/resources/qbd/employees.ts +3 -3
  65. package/src/resources/qbd/estimates.ts +3 -3
  66. package/src/resources/qbd/index.ts +56 -47
  67. package/src/resources/qbd/inventory-adjustments.ts +2 -2
  68. package/src/resources/qbd/inventory-assembly-items.ts +3 -3
  69. package/src/resources/qbd/inventory-items.ts +3 -3
  70. package/src/resources/qbd/inventory-sites.ts +2 -2
  71. package/src/resources/qbd/invoices.ts +3 -3
  72. package/src/resources/qbd/item-groups.ts +3 -3
  73. package/src/resources/qbd/item-receipts.ts +3 -3
  74. package/src/resources/qbd/item-sites.ts +3 -3
  75. package/src/resources/qbd/journal-entries.ts +3 -3
  76. package/src/resources/qbd/non-inventory-items.ts +3 -3
  77. package/src/resources/qbd/other-names.ts +855 -0
  78. package/src/resources/qbd/payment-methods.ts +42 -18
  79. package/src/resources/qbd/payroll-wage-items.ts +3 -3
  80. package/src/resources/qbd/preferences.ts +2 -2
  81. package/src/resources/qbd/price-levels.ts +2 -2
  82. package/src/resources/qbd/purchase-orders.ts +3 -3
  83. package/src/resources/qbd/qbd.ts +116 -95
  84. package/src/resources/qbd/receive-payments.ts +3 -3
  85. package/src/resources/qbd/sales-orders.ts +3 -3
  86. package/src/resources/qbd/sales-receipts.ts +3 -3
  87. package/src/resources/qbd/sales-representatives.ts +2 -2
  88. package/src/resources/qbd/sales-tax-codes.ts +2 -2
  89. package/src/resources/qbd/sales-tax-items.ts +3 -3
  90. package/src/resources/qbd/service-items.ts +3 -3
  91. package/src/resources/qbd/standard-terms.ts +2 -2
  92. package/src/resources/qbd/subtotal-items.ts +3 -3
  93. package/src/resources/qbd/time-tracking-activities.ts +3 -3
  94. package/src/resources/qbd/transactions.ts +3 -3
  95. package/src/resources/qbd/transfers.ts +3 -3
  96. package/src/resources/qbd/vendor-credits.ts +3 -3
  97. package/src/resources/qbd/vendors.ts +3 -3
  98. package/src/resources/qbd.ts +1 -1
  99. package/src/resources.ts +1 -1
  100. package/src/shims/node.ts +3 -3
  101. package/src/shims/web.ts +3 -3
  102. package/src/uploads.ts +4 -4
  103. package/src/version.ts +1 -1
  104. package/version.d.ts +1 -1
  105. package/version.js +1 -1
  106. 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,15 +242,24 @@ 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
+ export {
247
+ OtherNames,
248
+ type OtherName,
249
+ type OtherNameListResponse,
250
+ type OtherNameCreateParams,
251
+ type OtherNameRetrieveParams,
252
+ type OtherNameUpdateParams,
253
+ type OtherNameListParams,
254
+ } from "./other-names.js";
246
255
  export {
247
- PaymentMethodsCursorPage,
248
256
  PaymentMethods,
249
257
  type PaymentMethod,
258
+ type PaymentMethodListResponse,
250
259
  type PaymentMethodCreateParams,
251
260
  type PaymentMethodRetrieveParams,
252
261
  type PaymentMethodListParams,
253
- } from './payment-methods';
262
+ } from "./payment-methods.js";
254
263
  export {
255
264
  PayrollWageItemsCursorPage,
256
265
  PayrollWageItems,
@@ -258,8 +267,8 @@ export {
258
267
  type PayrollWageItemCreateParams,
259
268
  type PayrollWageItemRetrieveParams,
260
269
  type PayrollWageItemListParams,
261
- } from './payroll-wage-items';
262
- export { Preferences, type PreferenceRetrieveParams } from './preferences';
270
+ } from "./payroll-wage-items.js";
271
+ export { Preferences, type PreferenceRetrieveParams } from "./preferences.js";
263
272
  export {
264
273
  PriceLevels,
265
274
  type PriceLevel,
@@ -268,7 +277,7 @@ export {
268
277
  type PriceLevelRetrieveParams,
269
278
  type PriceLevelUpdateParams,
270
279
  type PriceLevelListParams,
271
- } from './price-levels';
280
+ } from "./price-levels.js";
272
281
  export {
273
282
  PurchaseOrdersCursorPage,
274
283
  PurchaseOrders,
@@ -279,8 +288,8 @@ export {
279
288
  type PurchaseOrderUpdateParams,
280
289
  type PurchaseOrderListParams,
281
290
  type PurchaseOrderDeleteParams,
282
- } from './purchase-orders';
283
- export { Qbd, type QbdHealthCheckResponse, type QbdHealthCheckParams } from './qbd';
291
+ } from "./purchase-orders.js";
292
+ export { Qbd, type QbdHealthCheckResponse, type QbdHealthCheckParams } from "./qbd.js";
284
293
  export {
285
294
  ReceivePaymentsCursorPage,
286
295
  ReceivePayments,
@@ -291,7 +300,7 @@ export {
291
300
  type ReceivePaymentUpdateParams,
292
301
  type ReceivePaymentListParams,
293
302
  type ReceivePaymentDeleteParams,
294
- } from './receive-payments';
303
+ } from "./receive-payments.js";
295
304
  export {
296
305
  SalesOrdersCursorPage,
297
306
  SalesOrders,
@@ -302,7 +311,7 @@ export {
302
311
  type SalesOrderUpdateParams,
303
312
  type SalesOrderListParams,
304
313
  type SalesOrderDeleteParams,
305
- } from './sales-orders';
314
+ } from "./sales-orders.js";
306
315
  export {
307
316
  SalesReceiptsCursorPage,
308
317
  SalesReceipts,
@@ -313,7 +322,7 @@ export {
313
322
  type SalesReceiptUpdateParams,
314
323
  type SalesReceiptListParams,
315
324
  type SalesReceiptDeleteParams,
316
- } from './sales-receipts';
325
+ } from "./sales-receipts.js";
317
326
  export {
318
327
  SalesRepresentatives,
319
328
  type SalesRepresentative,
@@ -322,7 +331,7 @@ export {
322
331
  type SalesRepresentativeRetrieveParams,
323
332
  type SalesRepresentativeUpdateParams,
324
333
  type SalesRepresentativeListParams,
325
- } from './sales-representatives';
334
+ } from "./sales-representatives.js";
326
335
  export {
327
336
  SalesTaxCodes,
328
337
  type SalesTaxCode,
@@ -331,7 +340,7 @@ export {
331
340
  type SalesTaxCodeRetrieveParams,
332
341
  type SalesTaxCodeUpdateParams,
333
342
  type SalesTaxCodeListParams,
334
- } from './sales-tax-codes';
343
+ } from "./sales-tax-codes.js";
335
344
  export {
336
345
  SalesTaxItemsCursorPage,
337
346
  SalesTaxItems,
@@ -340,7 +349,7 @@ export {
340
349
  type SalesTaxItemRetrieveParams,
341
350
  type SalesTaxItemUpdateParams,
342
351
  type SalesTaxItemListParams,
343
- } from './sales-tax-items';
352
+ } from "./sales-tax-items.js";
344
353
  export {
345
354
  ServiceItemsCursorPage,
346
355
  ServiceItems,
@@ -349,7 +358,7 @@ export {
349
358
  type ServiceItemRetrieveParams,
350
359
  type ServiceItemUpdateParams,
351
360
  type ServiceItemListParams,
352
- } from './service-items';
361
+ } from "./service-items.js";
353
362
  export {
354
363
  StandardTerms,
355
364
  type StandardTerm,
@@ -357,7 +366,7 @@ export {
357
366
  type StandardTermCreateParams,
358
367
  type StandardTermRetrieveParams,
359
368
  type StandardTermListParams,
360
- } from './standard-terms';
369
+ } from "./standard-terms.js";
361
370
  export {
362
371
  SubtotalItemsCursorPage,
363
372
  SubtotalItems,
@@ -366,7 +375,7 @@ export {
366
375
  type SubtotalItemRetrieveParams,
367
376
  type SubtotalItemUpdateParams,
368
377
  type SubtotalItemListParams,
369
- } from './subtotal-items';
378
+ } from "./subtotal-items.js";
370
379
  export {
371
380
  TimeTrackingActivitiesCursorPage,
372
381
  TimeTrackingActivities,
@@ -377,14 +386,14 @@ export {
377
386
  type TimeTrackingActivityUpdateParams,
378
387
  type TimeTrackingActivityListParams,
379
388
  type TimeTrackingActivityDeleteParams,
380
- } from './time-tracking-activities';
389
+ } from "./time-tracking-activities.js";
381
390
  export {
382
391
  TransactionsCursorPage,
383
392
  Transactions,
384
393
  type Transaction,
385
394
  type TransactionRetrieveParams,
386
395
  type TransactionListParams,
387
- } from './transactions';
396
+ } from "./transactions.js";
388
397
  export {
389
398
  TransfersCursorPage,
390
399
  Transfers,
@@ -393,7 +402,7 @@ export {
393
402
  type TransferRetrieveParams,
394
403
  type TransferUpdateParams,
395
404
  type TransferListParams,
396
- } from './transfers';
405
+ } from "./transfers.js";
397
406
  export {
398
407
  VendorCreditsCursorPage,
399
408
  VendorCredits,
@@ -404,7 +413,7 @@ export {
404
413
  type VendorCreditUpdateParams,
405
414
  type VendorCreditListParams,
406
415
  type VendorCreditDeleteParams,
407
- } from './vendor-credits';
416
+ } from "./vendor-credits.js";
408
417
  export {
409
418
  VendorsCursorPage,
410
419
  Vendors,
@@ -413,4 +422,4 @@ export {
413
422
  type VendorRetrieveParams,
414
423
  type VendorUpdateParams,
415
424
  type VendorListParams,
416
- } 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
  /**