conductor-node 12.0.0-beta.20 → 12.0.0-beta.22
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 +16 -0
- package/package.json +1 -1
- package/resources/qbd/bills.d.ts +3 -4
- package/resources/qbd/bills.d.ts.map +1 -1
- package/resources/qbd/bills.js.map +1 -1
- package/resources/qbd/bills.mjs.map +1 -1
- package/resources/qbd/index.d.ts +1 -0
- package/resources/qbd/index.d.ts.map +1 -1
- package/resources/qbd/index.js +5 -2
- package/resources/qbd/index.js.map +1 -1
- package/resources/qbd/index.mjs +1 -0
- package/resources/qbd/index.mjs.map +1 -1
- package/resources/qbd/item-receipts.d.ts +2336 -0
- package/resources/qbd/item-receipts.d.ts.map +1 -0
- package/resources/qbd/item-receipts.js +69 -0
- package/resources/qbd/item-receipts.js.map +1 -0
- package/resources/qbd/item-receipts.mjs +64 -0
- package/resources/qbd/item-receipts.mjs.map +1 -0
- package/resources/qbd/qbd.d.ts +4 -0
- package/resources/qbd/qbd.d.ts.map +1 -1
- package/resources/qbd/qbd.js +5 -0
- package/resources/qbd/qbd.js.map +1 -1
- package/resources/qbd/qbd.mjs +5 -0
- package/resources/qbd/qbd.mjs.map +1 -1
- package/src/resources/qbd/bills.ts +3 -4
- package/src/resources/qbd/index.ts +11 -0
- package/src/resources/qbd/item-receipts.ts +2783 -0
- package/src/resources/qbd/qbd.ts +27 -0
- 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/qbd.ts
CHANGED
|
@@ -212,6 +212,18 @@ import {
|
|
|
212
212
|
Invoices,
|
|
213
213
|
InvoicesCursorPage,
|
|
214
214
|
} from './invoices';
|
|
215
|
+
import * as ItemReceiptsAPI from './item-receipts';
|
|
216
|
+
import {
|
|
217
|
+
ItemReceipt,
|
|
218
|
+
ItemReceiptCreateParams,
|
|
219
|
+
ItemReceiptDeleteParams,
|
|
220
|
+
ItemReceiptDeleteResponse,
|
|
221
|
+
ItemReceiptListParams,
|
|
222
|
+
ItemReceiptRetrieveParams,
|
|
223
|
+
ItemReceiptUpdateParams,
|
|
224
|
+
ItemReceipts,
|
|
225
|
+
ItemReceiptsCursorPage,
|
|
226
|
+
} from './item-receipts';
|
|
215
227
|
import * as JournalEntriesAPI from './journal-entries';
|
|
216
228
|
import {
|
|
217
229
|
JournalEntries,
|
|
@@ -445,6 +457,7 @@ export class Qbd extends APIResource {
|
|
|
445
457
|
inventoryItems: InventoryItemsAPI.InventoryItems = new InventoryItemsAPI.InventoryItems(this._client);
|
|
446
458
|
inventorySites: InventorySitesAPI.InventorySites = new InventorySitesAPI.InventorySites(this._client);
|
|
447
459
|
invoices: InvoicesAPI.Invoices = new InvoicesAPI.Invoices(this._client);
|
|
460
|
+
itemReceipts: ItemReceiptsAPI.ItemReceipts = new ItemReceiptsAPI.ItemReceipts(this._client);
|
|
448
461
|
journalEntries: JournalEntriesAPI.JournalEntries = new JournalEntriesAPI.JournalEntries(this._client);
|
|
449
462
|
nonInventoryItems: NonInventoryItemsAPI.NonInventoryItems = new NonInventoryItemsAPI.NonInventoryItems(
|
|
450
463
|
this._client,
|
|
@@ -546,6 +559,8 @@ Qbd.InventoryItemsCursorPage = InventoryItemsCursorPage;
|
|
|
546
559
|
Qbd.InventorySites = InventorySites;
|
|
547
560
|
Qbd.Invoices = Invoices;
|
|
548
561
|
Qbd.InvoicesCursorPage = InvoicesCursorPage;
|
|
562
|
+
Qbd.ItemReceipts = ItemReceipts;
|
|
563
|
+
Qbd.ItemReceiptsCursorPage = ItemReceiptsCursorPage;
|
|
549
564
|
Qbd.JournalEntries = JournalEntries;
|
|
550
565
|
Qbd.JournalEntriesCursorPage = JournalEntriesCursorPage;
|
|
551
566
|
Qbd.NonInventoryItems = NonInventoryItems;
|
|
@@ -801,6 +816,18 @@ export declare namespace Qbd {
|
|
|
801
816
|
type InvoiceDeleteParams as InvoiceDeleteParams,
|
|
802
817
|
};
|
|
803
818
|
|
|
819
|
+
export {
|
|
820
|
+
ItemReceipts as ItemReceipts,
|
|
821
|
+
type ItemReceipt as ItemReceipt,
|
|
822
|
+
type ItemReceiptDeleteResponse as ItemReceiptDeleteResponse,
|
|
823
|
+
ItemReceiptsCursorPage as ItemReceiptsCursorPage,
|
|
824
|
+
type ItemReceiptCreateParams as ItemReceiptCreateParams,
|
|
825
|
+
type ItemReceiptRetrieveParams as ItemReceiptRetrieveParams,
|
|
826
|
+
type ItemReceiptUpdateParams as ItemReceiptUpdateParams,
|
|
827
|
+
type ItemReceiptListParams as ItemReceiptListParams,
|
|
828
|
+
type ItemReceiptDeleteParams as ItemReceiptDeleteParams,
|
|
829
|
+
};
|
|
830
|
+
|
|
804
831
|
export {
|
|
805
832
|
JournalEntries as JournalEntries,
|
|
806
833
|
type JournalEntry as JournalEntry,
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '12.0.0-beta.
|
|
1
|
+
export const VERSION = '12.0.0-beta.22'; // x-release-please-version
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "12.0.0-beta.
|
|
1
|
+
export declare const VERSION = "12.0.0-beta.22";
|
|
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.0.0-beta.
|
|
4
|
+
exports.VERSION = '12.0.0-beta.22'; // x-release-please-version
|
|
5
5
|
//# sourceMappingURL=version.js.map
|
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '12.0.0-beta.
|
|
1
|
+
export const VERSION = '12.0.0-beta.22'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|