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.
- package/CHANGELOG.md +23 -0
- package/README.md +4 -4
- package/package.json +1 -1
- package/resources/qbd/index.d.ts +2 -1
- package/resources/qbd/index.d.ts.map +1 -1
- package/resources/qbd/index.js +3 -2
- package/resources/qbd/index.js.map +1 -1
- package/resources/qbd/index.mjs +2 -1
- package/resources/qbd/index.mjs.map +1 -1
- package/resources/qbd/other-names.d.ts +690 -0
- package/resources/qbd/other-names.d.ts.map +1 -0
- package/resources/qbd/other-names.js +88 -0
- package/resources/qbd/other-names.js.map +1 -0
- package/resources/qbd/other-names.mjs +84 -0
- package/resources/qbd/other-names.mjs.map +1 -0
- package/resources/qbd/payment-methods.d.ts +35 -13
- package/resources/qbd/payment-methods.d.ts.map +1 -1
- package/resources/qbd/payment-methods.js +7 -14
- package/resources/qbd/payment-methods.js.map +1 -1
- package/resources/qbd/payment-methods.mjs +6 -12
- package/resources/qbd/payment-methods.mjs.map +1 -1
- package/resources/qbd/qbd.d.ts +6 -2
- package/resources/qbd/qbd.d.ts.map +1 -1
- package/resources/qbd/qbd.js +4 -1
- package/resources/qbd/qbd.js.map +1 -1
- package/resources/qbd/qbd.mjs +5 -2
- package/resources/qbd/qbd.mjs.map +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 +56 -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 +855 -0
- package/src/resources/qbd/payment-methods.ts +42 -18
- 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 +116 -95
- 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
|
@@ -5,7 +5,7 @@ export {
|
|
|
5
5
|
type AccountTaxLine,
|
|
6
6
|
type AccountTaxLineListResponse,
|
|
7
7
|
type AccountTaxLineListParams,
|
|
8
|
-
} from
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
70
|
-
export { CompanyResource, type Company, type CompanyRetrieveParams } from
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
262
|
-
export { Preferences, type PreferenceRetrieveParams } from
|
|
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
|
|
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
|
|
283
|
-
export { Qbd, type QbdHealthCheckResponse, type QbdHealthCheckParams } from
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
4
|
-
import * as Core from
|
|
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
|
|
4
|
-
import * as Core from
|
|
5
|
-
import { CursorPage, type CursorPageParams } from
|
|
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
|
|
4
|
-
import * as Core from
|
|
5
|
-
import { CursorPage, type CursorPageParams } from
|
|
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
|
|
4
|
-
import * as Core from
|
|
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
|
|
4
|
-
import * as Core from
|
|
5
|
-
import { CursorPage, type CursorPageParams } from
|
|
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
|
|
4
|
-
import * as Core from
|
|
5
|
-
import { CursorPage, type CursorPageParams } from
|
|
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
|
|
4
|
-
import * as Core from
|
|
5
|
-
import { CursorPage, type CursorPageParams } from
|
|
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
|
|
4
|
-
import * as Core from
|
|
5
|
-
import { CursorPage, type CursorPageParams } from
|
|
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
|
|
4
|
-
import * as Core from
|
|
5
|
-
import { CursorPage, type CursorPageParams } from
|
|
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
|
|
4
|
-
import * as Core from
|
|
5
|
-
import { CursorPage, type CursorPageParams } from
|
|
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
|
/**
|