conductor-node 12.0.2 → 12.2.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.
- package/CHANGELOG.md +16 -0
- package/package.json +1 -1
- package/resources/qbd/bills.d.ts +45 -45
- package/resources/qbd/checks.d.ts +45 -45
- package/resources/qbd/credit-card-charges.d.ts +45 -45
- package/resources/qbd/credit-card-credits.d.ts +45 -45
- package/resources/qbd/index.d.ts +2 -0
- package/resources/qbd/index.d.ts.map +1 -1
- package/resources/qbd/index.js +8 -2
- package/resources/qbd/index.js.map +1 -1
- package/resources/qbd/index.mjs +2 -0
- package/resources/qbd/index.mjs.map +1 -1
- package/resources/qbd/inventory-assembly-items.d.ts +10 -7
- package/resources/qbd/inventory-assembly-items.d.ts.map +1 -1
- package/resources/qbd/inventory-assembly-items.js.map +1 -1
- package/resources/qbd/inventory-assembly-items.mjs.map +1 -1
- package/resources/qbd/inventory-items.d.ts +8 -6
- package/resources/qbd/inventory-items.d.ts.map +1 -1
- package/resources/qbd/inventory-items.js.map +1 -1
- package/resources/qbd/inventory-items.mjs.map +1 -1
- package/resources/qbd/item-groups.d.ts +490 -0
- package/resources/qbd/item-groups.d.ts.map +1 -0
- package/resources/qbd/item-groups.js +58 -0
- package/resources/qbd/item-groups.js.map +1 -0
- package/resources/qbd/item-groups.mjs +53 -0
- package/resources/qbd/item-groups.mjs.map +1 -0
- package/resources/qbd/item-receipts.d.ts +45 -45
- package/resources/qbd/item-sites.d.ts +227 -0
- package/resources/qbd/item-sites.d.ts.map +1 -0
- package/resources/qbd/item-sites.js +36 -0
- package/resources/qbd/item-sites.js.map +1 -0
- package/resources/qbd/item-sites.mjs +31 -0
- package/resources/qbd/item-sites.mjs.map +1 -0
- package/resources/qbd/qbd.d.ts +8 -0
- package/resources/qbd/qbd.d.ts.map +1 -1
- package/resources/qbd/qbd.js +10 -0
- package/resources/qbd/qbd.js.map +1 -1
- package/resources/qbd/qbd.mjs +10 -0
- package/resources/qbd/qbd.mjs.map +1 -1
- package/resources/qbd/vendor-credits.d.ts +45 -45
- package/src/resources/qbd/bills.ts +45 -45
- package/src/resources/qbd/checks.ts +45 -45
- package/src/resources/qbd/credit-card-charges.ts +45 -45
- package/src/resources/qbd/credit-card-credits.ts +45 -45
- package/src/resources/qbd/index.ts +16 -0
- package/src/resources/qbd/inventory-assembly-items.ts +10 -7
- package/src/resources/qbd/inventory-items.ts +8 -6
- package/src/resources/qbd/item-groups.ts +621 -0
- package/src/resources/qbd/item-receipts.ts +45 -45
- package/src/resources/qbd/item-sites.ts +302 -0
- package/src/resources/qbd/qbd.ts +42 -0
- package/src/resources/qbd/vendor-credits.ts +45 -45
- package/src/version.ts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
|
@@ -71,7 +71,7 @@ export interface ItemReceipt {
|
|
|
71
71
|
* bundled together because they are commonly purchased together or grouped for
|
|
72
72
|
* faster entry.
|
|
73
73
|
*/
|
|
74
|
-
|
|
74
|
+
itemGroupLines: Array<ItemReceipt.ItemGroupLine>;
|
|
75
75
|
/**
|
|
76
76
|
* The item receipt's item lines, each representing the purchase of a specific item
|
|
77
77
|
* or service.
|
|
@@ -398,47 +398,47 @@ export declare namespace ItemReceipt {
|
|
|
398
398
|
fullName: string | null;
|
|
399
399
|
}
|
|
400
400
|
}
|
|
401
|
-
interface
|
|
401
|
+
interface ItemGroupLine {
|
|
402
402
|
/**
|
|
403
|
-
* The unique identifier assigned by QuickBooks to this item line
|
|
403
|
+
* The unique identifier assigned by QuickBooks to this item group line. This ID is
|
|
404
404
|
* unique across all transaction line types.
|
|
405
405
|
*/
|
|
406
406
|
id: string;
|
|
407
407
|
/**
|
|
408
|
-
* The custom fields for the item line
|
|
408
|
+
* The custom fields for the item group line object, added as user-defined data
|
|
409
409
|
* extensions, not included in the standard QuickBooks object.
|
|
410
410
|
*/
|
|
411
|
-
customFields: Array<
|
|
411
|
+
customFields: Array<ItemGroupLine.CustomField>;
|
|
412
412
|
/**
|
|
413
|
-
* A description of this item line
|
|
413
|
+
* A description of this item group line.
|
|
414
414
|
*/
|
|
415
415
|
description: string | null;
|
|
416
416
|
/**
|
|
417
|
-
* The item line
|
|
417
|
+
* The item group line's item group, representing a predefined set of items bundled
|
|
418
418
|
* because they are commonly purchased together or grouped for faster entry.
|
|
419
419
|
*/
|
|
420
|
-
itemGroup:
|
|
420
|
+
itemGroup: ItemGroupLine.ItemGroup;
|
|
421
421
|
/**
|
|
422
|
-
* The item line
|
|
422
|
+
* The item group line's item lines, each representing the purchase of a specific
|
|
423
423
|
* item or service.
|
|
424
424
|
*/
|
|
425
|
-
itemLines: Array<
|
|
425
|
+
itemLines: Array<ItemGroupLine.ItemLine>;
|
|
426
426
|
/**
|
|
427
|
-
* The type of object. This value is always `"
|
|
427
|
+
* The type of object. This value is always `"qbd_item_group_line"`.
|
|
428
428
|
*/
|
|
429
|
-
objectType: '
|
|
429
|
+
objectType: 'qbd_item_group_line';
|
|
430
430
|
/**
|
|
431
|
-
* Specifies an alternative unit-of-measure set when updating this item
|
|
432
|
-
*
|
|
431
|
+
* Specifies an alternative unit-of-measure set when updating this item group
|
|
432
|
+
* line's `unitOfMeasure` field (e.g., "pound" or "kilogram"). This allows you to
|
|
433
433
|
* select units from a different set than the item's default unit-of-measure set,
|
|
434
434
|
* which remains unchanged on the item itself. The override applies only to this
|
|
435
435
|
* specific line. For example, you can sell an item typically measured in volume
|
|
436
436
|
* units using weight units in a specific transaction by specifying a different
|
|
437
437
|
* unit-of-measure set with this field.
|
|
438
438
|
*/
|
|
439
|
-
overrideUnitOfMeasureSet:
|
|
439
|
+
overrideUnitOfMeasureSet: ItemGroupLine.OverrideUnitOfMeasureSet | null;
|
|
440
440
|
/**
|
|
441
|
-
* The quantity of the item group associated with this item line
|
|
441
|
+
* The quantity of the item group associated with this item group line. This field
|
|
442
442
|
* cannot be cleared.
|
|
443
443
|
*
|
|
444
444
|
* **NOTE**: Do not use this field if the associated item group is a discount item
|
|
@@ -446,17 +446,17 @@ export declare namespace ItemReceipt {
|
|
|
446
446
|
*/
|
|
447
447
|
quantity: number | null;
|
|
448
448
|
/**
|
|
449
|
-
* The total monetary amount of this item line
|
|
449
|
+
* The total monetary amount of this item group line, equivalent to the sum of the
|
|
450
450
|
* amounts in `lines`, represented as a decimal string.
|
|
451
451
|
*/
|
|
452
452
|
totalAmount: string;
|
|
453
453
|
/**
|
|
454
|
-
* The unit-of-measure used for the `quantity` in this item line
|
|
454
|
+
* The unit-of-measure used for the `quantity` in this item group line. Must be a
|
|
455
455
|
* valid unit within the item's available units of measure.
|
|
456
456
|
*/
|
|
457
457
|
unitOfMeasure: string | null;
|
|
458
458
|
}
|
|
459
|
-
namespace
|
|
459
|
+
namespace ItemGroupLine {
|
|
460
460
|
interface CustomField {
|
|
461
461
|
/**
|
|
462
462
|
* The name of the custom field, unique for the specified `ownerId`. For public
|
|
@@ -484,7 +484,7 @@ export declare namespace ItemReceipt {
|
|
|
484
484
|
value: string;
|
|
485
485
|
}
|
|
486
486
|
/**
|
|
487
|
-
* The item line
|
|
487
|
+
* The item group line's item group, representing a predefined set of items bundled
|
|
488
488
|
* because they are commonly purchased together or grouped for faster entry.
|
|
489
489
|
*/
|
|
490
490
|
interface ItemGroup {
|
|
@@ -811,8 +811,8 @@ export declare namespace ItemReceipt {
|
|
|
811
811
|
}
|
|
812
812
|
}
|
|
813
813
|
/**
|
|
814
|
-
* Specifies an alternative unit-of-measure set when updating this item
|
|
815
|
-
*
|
|
814
|
+
* Specifies an alternative unit-of-measure set when updating this item group
|
|
815
|
+
* line's `unitOfMeasure` field (e.g., "pound" or "kilogram"). This allows you to
|
|
816
816
|
* select units from a different set than the item's default unit-of-measure set,
|
|
817
817
|
* which remains unchanged on the item itself. The override applies only to this
|
|
818
818
|
* specific line. For example, you can sell an item typically measured in volume
|
|
@@ -1319,7 +1319,7 @@ export interface ItemReceiptCreateParams {
|
|
|
1319
1319
|
* set of items bundled together because they are commonly purchased together or
|
|
1320
1320
|
* grouped for faster entry.
|
|
1321
1321
|
*/
|
|
1322
|
-
|
|
1322
|
+
itemGroupLines?: Array<ItemReceiptCreateParams.ItemGroupLine>;
|
|
1323
1323
|
/**
|
|
1324
1324
|
* Body param: The item receipt's item lines, each representing the purchase of a
|
|
1325
1325
|
* specific item or service.
|
|
@@ -1462,29 +1462,29 @@ export declare namespace ItemReceiptCreateParams {
|
|
|
1462
1462
|
value: string;
|
|
1463
1463
|
}
|
|
1464
1464
|
}
|
|
1465
|
-
interface
|
|
1465
|
+
interface ItemGroupLine {
|
|
1466
1466
|
/**
|
|
1467
|
-
* The item line
|
|
1467
|
+
* The item group line's item group, representing a predefined set of items bundled
|
|
1468
1468
|
* because they are commonly purchased together or grouped for faster entry.
|
|
1469
1469
|
*/
|
|
1470
1470
|
itemGroupId: string;
|
|
1471
1471
|
/**
|
|
1472
|
-
* The custom fields for the item line
|
|
1472
|
+
* The custom fields for the item group line object, added as user-defined data
|
|
1473
1473
|
* extensions, not included in the standard QuickBooks object.
|
|
1474
1474
|
*/
|
|
1475
|
-
customFields?: Array<
|
|
1475
|
+
customFields?: Array<ItemGroupLine.CustomField>;
|
|
1476
1476
|
/**
|
|
1477
1477
|
* The site location where inventory for the item group associated with this item
|
|
1478
|
-
* line
|
|
1478
|
+
* group line is stored.
|
|
1479
1479
|
*/
|
|
1480
1480
|
inventorySiteId?: string;
|
|
1481
1481
|
/**
|
|
1482
1482
|
* The specific location (e.g., bin or shelf) within the inventory site where the
|
|
1483
|
-
* item group associated with this item line
|
|
1483
|
+
* item group associated with this item group line is stored.
|
|
1484
1484
|
*/
|
|
1485
1485
|
inventorySiteLocationId?: string;
|
|
1486
1486
|
/**
|
|
1487
|
-
* The quantity of the item group associated with this item line
|
|
1487
|
+
* The quantity of the item group associated with this item group line. This field
|
|
1488
1488
|
* cannot be cleared.
|
|
1489
1489
|
*
|
|
1490
1490
|
* **NOTE**: Do not use this field if the associated item group is a discount item
|
|
@@ -1492,12 +1492,12 @@ export declare namespace ItemReceiptCreateParams {
|
|
|
1492
1492
|
*/
|
|
1493
1493
|
quantity?: number;
|
|
1494
1494
|
/**
|
|
1495
|
-
* The unit-of-measure used for the `quantity` in this item line
|
|
1495
|
+
* The unit-of-measure used for the `quantity` in this item group line. Must be a
|
|
1496
1496
|
* valid unit within the item's available units of measure.
|
|
1497
1497
|
*/
|
|
1498
1498
|
unitOfMeasure?: string;
|
|
1499
1499
|
}
|
|
1500
|
-
namespace
|
|
1500
|
+
namespace ItemGroupLine {
|
|
1501
1501
|
interface CustomField {
|
|
1502
1502
|
/**
|
|
1503
1503
|
* The name of the custom field, unique for the specified `ownerId`. For public
|
|
@@ -1803,7 +1803,7 @@ export interface ItemReceiptUpdateParams {
|
|
|
1803
1803
|
* 3. If you do not wish to modify any item group lines, omit this field entirely
|
|
1804
1804
|
* to keep them unchanged.
|
|
1805
1805
|
*/
|
|
1806
|
-
|
|
1806
|
+
itemGroupLines?: Array<ItemReceiptUpdateParams.ItemGroupLine>;
|
|
1807
1807
|
/**
|
|
1808
1808
|
* Body param: The item receipt's item lines, each representing the purchase of a
|
|
1809
1809
|
* specific item or service.
|
|
@@ -1921,27 +1921,27 @@ export declare namespace ItemReceiptUpdateParams {
|
|
|
1921
1921
|
*/
|
|
1922
1922
|
salesTaxCodeId?: string;
|
|
1923
1923
|
}
|
|
1924
|
-
interface
|
|
1924
|
+
interface ItemGroupLine {
|
|
1925
1925
|
/**
|
|
1926
|
-
* The QuickBooks-assigned unique identifier of an existing item line
|
|
1926
|
+
* The QuickBooks-assigned unique identifier of an existing item group line you
|
|
1927
1927
|
* wish to retain or update.
|
|
1928
1928
|
*
|
|
1929
|
-
* **IMPORTANT**: Set this field to `-1` for new item
|
|
1929
|
+
* **IMPORTANT**: Set this field to `-1` for new item group lines you wish to add.
|
|
1930
1930
|
*/
|
|
1931
1931
|
id: string;
|
|
1932
1932
|
/**
|
|
1933
|
-
* The item line
|
|
1933
|
+
* The item group line's item group, representing a predefined set of items bundled
|
|
1934
1934
|
* because they are commonly purchased together or grouped for faster entry.
|
|
1935
1935
|
*/
|
|
1936
1936
|
itemGroupId?: string;
|
|
1937
1937
|
/**
|
|
1938
|
-
* The item line
|
|
1938
|
+
* The item group line's item lines, each representing the purchase of a specific
|
|
1939
1939
|
* item or service.
|
|
1940
1940
|
*
|
|
1941
1941
|
* **IMPORTANT**:
|
|
1942
1942
|
*
|
|
1943
1943
|
* 1. Including this array in your update request will **REPLACE** all existing
|
|
1944
|
-
* item lines for the item line
|
|
1944
|
+
* item lines for the item group line with this array. To keep any existing item
|
|
1945
1945
|
* lines, you must include them in this array even if they have not changed.
|
|
1946
1946
|
* **Any item lines not included will be removed.**
|
|
1947
1947
|
*
|
|
@@ -1950,10 +1950,10 @@ export declare namespace ItemReceiptUpdateParams {
|
|
|
1950
1950
|
* 3. If you do not wish to modify any item lines, omit this field entirely to keep
|
|
1951
1951
|
* them unchanged.
|
|
1952
1952
|
*/
|
|
1953
|
-
itemLines?: Array<
|
|
1953
|
+
itemLines?: Array<ItemGroupLine.ItemLine>;
|
|
1954
1954
|
/**
|
|
1955
|
-
* Specifies an alternative unit-of-measure set when updating this item
|
|
1956
|
-
*
|
|
1955
|
+
* Specifies an alternative unit-of-measure set when updating this item group
|
|
1956
|
+
* line's `unitOfMeasure` field (e.g., "pound" or "kilogram"). This allows you to
|
|
1957
1957
|
* select units from a different set than the item's default unit-of-measure set,
|
|
1958
1958
|
* which remains unchanged on the item itself. The override applies only to this
|
|
1959
1959
|
* specific line. For example, you can sell an item typically measured in volume
|
|
@@ -1962,7 +1962,7 @@ export declare namespace ItemReceiptUpdateParams {
|
|
|
1962
1962
|
*/
|
|
1963
1963
|
overrideUnitOfMeasureSetId?: string;
|
|
1964
1964
|
/**
|
|
1965
|
-
* The quantity of the item group associated with this item line
|
|
1965
|
+
* The quantity of the item group associated with this item group line. This field
|
|
1966
1966
|
* cannot be cleared.
|
|
1967
1967
|
*
|
|
1968
1968
|
* **NOTE**: Do not use this field if the associated item group is a discount item
|
|
@@ -1970,12 +1970,12 @@ export declare namespace ItemReceiptUpdateParams {
|
|
|
1970
1970
|
*/
|
|
1971
1971
|
quantity?: number;
|
|
1972
1972
|
/**
|
|
1973
|
-
* The unit-of-measure used for the `quantity` in this item line
|
|
1973
|
+
* The unit-of-measure used for the `quantity` in this item group line. Must be a
|
|
1974
1974
|
* valid unit within the item's available units of measure.
|
|
1975
1975
|
*/
|
|
1976
1976
|
unitOfMeasure?: string;
|
|
1977
1977
|
}
|
|
1978
|
-
namespace
|
|
1978
|
+
namespace ItemGroupLine {
|
|
1979
1979
|
interface ItemLine {
|
|
1980
1980
|
/**
|
|
1981
1981
|
* The QuickBooks-assigned unique identifier of an existing item line you wish to
|
|
@@ -0,0 +1,227 @@
|
|
|
1
|
+
import { APIResource } from "../../resource.js";
|
|
2
|
+
import * as Core from "../../core.js";
|
|
3
|
+
import { CursorPage, type CursorPageParams } from "../../pagination.js";
|
|
4
|
+
export declare class ItemSites extends APIResource {
|
|
5
|
+
/**
|
|
6
|
+
* Retrieves an item site by ID.
|
|
7
|
+
*/
|
|
8
|
+
retrieve(id: string, params: ItemSiteRetrieveParams, options?: Core.RequestOptions): Core.APIPromise<ItemSite>;
|
|
9
|
+
/**
|
|
10
|
+
* Returns a list of item sites. Use the `cursor` parameter to paginate through the
|
|
11
|
+
* results.
|
|
12
|
+
*/
|
|
13
|
+
list(params: ItemSiteListParams, options?: Core.RequestOptions): Core.PagePromise<ItemSitesCursorPage, ItemSite>;
|
|
14
|
+
}
|
|
15
|
+
export declare class ItemSitesCursorPage extends CursorPage<ItemSite> {
|
|
16
|
+
}
|
|
17
|
+
export interface ItemSite {
|
|
18
|
+
/**
|
|
19
|
+
* The unique identifier assigned by QuickBooks to this item site. This ID is
|
|
20
|
+
* unique across all item sites but not across different QuickBooks object types.
|
|
21
|
+
*/
|
|
22
|
+
id: string;
|
|
23
|
+
/**
|
|
24
|
+
* The inventory level of this item site at which a new build assembly should
|
|
25
|
+
* begin. When the combined `quantityOnHand` and `quantityOnPurchaseOrders` drops
|
|
26
|
+
* below this point, QuickBooks flags the need to build additional units.
|
|
27
|
+
*/
|
|
28
|
+
assemblyBuildPoint: number | null;
|
|
29
|
+
/**
|
|
30
|
+
* The date and time when this item site was created, in ISO 8601 format
|
|
31
|
+
* (YYYY-MM-DDThh:mm:ss±hh:mm). The time zone is the same as the user's time zone
|
|
32
|
+
* in QuickBooks.
|
|
33
|
+
*/
|
|
34
|
+
createdAt: string;
|
|
35
|
+
/**
|
|
36
|
+
* The inventory assembly item associated with this item site. An inventory
|
|
37
|
+
* assembly item is assembled or manufactured from other inventory items, and the
|
|
38
|
+
* items and/or assemblies that make up the assembly are called components.
|
|
39
|
+
*/
|
|
40
|
+
inventoryAssemblyItem: ItemSite.InventoryAssemblyItem | null;
|
|
41
|
+
/**
|
|
42
|
+
* The inventory item associated with this item site.
|
|
43
|
+
*/
|
|
44
|
+
inventoryItem: ItemSite.InventoryItem | null;
|
|
45
|
+
/**
|
|
46
|
+
* The site location where inventory for the item associated with this item site is
|
|
47
|
+
* stored.
|
|
48
|
+
*/
|
|
49
|
+
inventorySite: ItemSite.InventorySite | null;
|
|
50
|
+
/**
|
|
51
|
+
* The specific location (e.g., bin or shelf) within the inventory site where the
|
|
52
|
+
* item associated with this item site is stored.
|
|
53
|
+
*/
|
|
54
|
+
inventorySiteLocation: ItemSite.InventorySiteLocation | null;
|
|
55
|
+
/**
|
|
56
|
+
* The type of object. This value is always `"qbd_item_site"`.
|
|
57
|
+
*/
|
|
58
|
+
objectType: 'qbd_item_site';
|
|
59
|
+
/**
|
|
60
|
+
* The number of units of this item site currently in inventory. `quantityOnHand`
|
|
61
|
+
* multiplied by `averageCost` equals `totalValue` for inventory item lists. To
|
|
62
|
+
* change the `quantityOnHand` for an item site, you must use an
|
|
63
|
+
* inventory-adjustment instead of updating the item site directly.
|
|
64
|
+
*/
|
|
65
|
+
quantityOnHand: number | null;
|
|
66
|
+
/**
|
|
67
|
+
* The number of units of this item site that are currently on pending inventory
|
|
68
|
+
* transfer transactions.
|
|
69
|
+
*/
|
|
70
|
+
quantityOnPendingTransfers: number | null;
|
|
71
|
+
/**
|
|
72
|
+
* The number of units of this item site that are currently listed on outstanding
|
|
73
|
+
* purchase orders and have not yet been received.
|
|
74
|
+
*/
|
|
75
|
+
quantityOnPurchaseOrders: number | null;
|
|
76
|
+
/**
|
|
77
|
+
* The number of units of this item site that are currently listed on outstanding
|
|
78
|
+
* sales orders and have not yet been fulfilled or delivered to customers.
|
|
79
|
+
*/
|
|
80
|
+
quantityOnSalesOrders: number | null;
|
|
81
|
+
/**
|
|
82
|
+
* The number of units of this item site required by pending build transactions.
|
|
83
|
+
*/
|
|
84
|
+
quantityRequiredByPendingBuildTransactions: number | null;
|
|
85
|
+
/**
|
|
86
|
+
* The number of units of this item site that are scheduled to be built on pending
|
|
87
|
+
* build transactions.
|
|
88
|
+
*/
|
|
89
|
+
quantityToBeBuiltByPendingBuildTransactions: number | null;
|
|
90
|
+
/**
|
|
91
|
+
* The inventory level at which QuickBooks prompts you to reorder this item site.
|
|
92
|
+
*/
|
|
93
|
+
reorderLevel: number | null;
|
|
94
|
+
/**
|
|
95
|
+
* The current QuickBooks-assigned revision number of this item site object, which
|
|
96
|
+
* changes each time the object is modified. When updating this object, you must
|
|
97
|
+
* provide the most recent `revisionNumber` to ensure you're working with the
|
|
98
|
+
* latest data; otherwise, the update will return an error.
|
|
99
|
+
*/
|
|
100
|
+
revisionNumber: string;
|
|
101
|
+
/**
|
|
102
|
+
* The date and time when this item site was last updated, in ISO 8601 format
|
|
103
|
+
* (YYYY-MM-DDThh:mm:ss±hh:mm). The time zone is the same as the user's time zone
|
|
104
|
+
* in QuickBooks.
|
|
105
|
+
*/
|
|
106
|
+
updatedAt: string;
|
|
107
|
+
}
|
|
108
|
+
export declare namespace ItemSite {
|
|
109
|
+
/**
|
|
110
|
+
* The inventory assembly item associated with this item site. An inventory
|
|
111
|
+
* assembly item is assembled or manufactured from other inventory items, and the
|
|
112
|
+
* items and/or assemblies that make up the assembly are called components.
|
|
113
|
+
*/
|
|
114
|
+
interface InventoryAssemblyItem {
|
|
115
|
+
/**
|
|
116
|
+
* The unique identifier assigned by QuickBooks to this object. This ID is unique
|
|
117
|
+
* across all objects of the same type, but not across different QuickBooks object
|
|
118
|
+
* types.
|
|
119
|
+
*/
|
|
120
|
+
id: string | null;
|
|
121
|
+
/**
|
|
122
|
+
* The fully-qualified unique name for this object, formed by combining the names
|
|
123
|
+
* of its parent objects with its own `name`, separated by colons. Not
|
|
124
|
+
* case-sensitive.
|
|
125
|
+
*/
|
|
126
|
+
fullName: string | null;
|
|
127
|
+
}
|
|
128
|
+
/**
|
|
129
|
+
* The inventory item associated with this item site.
|
|
130
|
+
*/
|
|
131
|
+
interface InventoryItem {
|
|
132
|
+
/**
|
|
133
|
+
* The unique identifier assigned by QuickBooks to this object. This ID is unique
|
|
134
|
+
* across all objects of the same type, but not across different QuickBooks object
|
|
135
|
+
* types.
|
|
136
|
+
*/
|
|
137
|
+
id: string | null;
|
|
138
|
+
/**
|
|
139
|
+
* The fully-qualified unique name for this object, formed by combining the names
|
|
140
|
+
* of its parent objects with its own `name`, separated by colons. Not
|
|
141
|
+
* case-sensitive.
|
|
142
|
+
*/
|
|
143
|
+
fullName: string | null;
|
|
144
|
+
}
|
|
145
|
+
/**
|
|
146
|
+
* The site location where inventory for the item associated with this item site is
|
|
147
|
+
* stored.
|
|
148
|
+
*/
|
|
149
|
+
interface InventorySite {
|
|
150
|
+
/**
|
|
151
|
+
* The unique identifier assigned by QuickBooks to this object. This ID is unique
|
|
152
|
+
* across all objects of the same type, but not across different QuickBooks object
|
|
153
|
+
* types.
|
|
154
|
+
*/
|
|
155
|
+
id: string | null;
|
|
156
|
+
/**
|
|
157
|
+
* The fully-qualified unique name for this object, formed by combining the names
|
|
158
|
+
* of its parent objects with its own `name`, separated by colons. Not
|
|
159
|
+
* case-sensitive.
|
|
160
|
+
*/
|
|
161
|
+
fullName: string | null;
|
|
162
|
+
}
|
|
163
|
+
/**
|
|
164
|
+
* The specific location (e.g., bin or shelf) within the inventory site where the
|
|
165
|
+
* item associated with this item site is stored.
|
|
166
|
+
*/
|
|
167
|
+
interface InventorySiteLocation {
|
|
168
|
+
/**
|
|
169
|
+
* The unique identifier assigned by QuickBooks to this object. This ID is unique
|
|
170
|
+
* across all objects of the same type, but not across different QuickBooks object
|
|
171
|
+
* types.
|
|
172
|
+
*/
|
|
173
|
+
id: string | null;
|
|
174
|
+
/**
|
|
175
|
+
* The fully-qualified unique name for this object, formed by combining the names
|
|
176
|
+
* of its parent objects with its own `name`, separated by colons. Not
|
|
177
|
+
* case-sensitive.
|
|
178
|
+
*/
|
|
179
|
+
fullName: string | null;
|
|
180
|
+
}
|
|
181
|
+
}
|
|
182
|
+
export interface ItemSiteRetrieveParams {
|
|
183
|
+
/**
|
|
184
|
+
* The ID of the EndUser to receive this request (e.g.,
|
|
185
|
+
* `"Conductor-End-User-Id: {{END_USER_ID}}"`).
|
|
186
|
+
*/
|
|
187
|
+
conductorEndUserId: string;
|
|
188
|
+
}
|
|
189
|
+
export interface ItemSiteListParams extends CursorPageParams {
|
|
190
|
+
/**
|
|
191
|
+
* Header param: The ID of the EndUser to receive this request (e.g.,
|
|
192
|
+
* `"Conductor-End-User-Id: {{END_USER_ID}}"`).
|
|
193
|
+
*/
|
|
194
|
+
conductorEndUserId: string;
|
|
195
|
+
/**
|
|
196
|
+
* Query param: Filter for specific item sites by their QuickBooks-assigned unique
|
|
197
|
+
* identifier(s).
|
|
198
|
+
*
|
|
199
|
+
* **IMPORTANT**: If you include this parameter, QuickBooks will ignore all other
|
|
200
|
+
* query parameters for this request.
|
|
201
|
+
*
|
|
202
|
+
* **NOTE**: If any of the values you specify in this parameter are not found, the
|
|
203
|
+
* request will return an error.
|
|
204
|
+
*/
|
|
205
|
+
ids?: Array<string>;
|
|
206
|
+
/**
|
|
207
|
+
* Query param: Filter for item sites for these items.
|
|
208
|
+
*/
|
|
209
|
+
itemIds?: Array<string>;
|
|
210
|
+
/**
|
|
211
|
+
* Query param: Filter for item sites that match this item type.
|
|
212
|
+
*/
|
|
213
|
+
itemType?: 'all_except_fixed_asset' | 'assembly' | 'discount' | 'fixed_asset' | 'inventory' | 'inventory_and_assembly' | 'non_inventory' | 'other_charge' | 'payment' | 'sales' | 'sales_tax' | 'service';
|
|
214
|
+
/**
|
|
215
|
+
* Query param: Filter for item sites at these sites. A site represents a physical
|
|
216
|
+
* location, such as a warehouse or store.
|
|
217
|
+
*/
|
|
218
|
+
siteIds?: Array<string>;
|
|
219
|
+
/**
|
|
220
|
+
* Query param: Filter for item sites that are active, inactive, or both.
|
|
221
|
+
*/
|
|
222
|
+
status?: 'active' | 'all' | 'inactive';
|
|
223
|
+
}
|
|
224
|
+
export declare namespace ItemSites {
|
|
225
|
+
export { type ItemSite as ItemSite, ItemSitesCursorPage as ItemSitesCursorPage, type ItemSiteRetrieveParams as ItemSiteRetrieveParams, type ItemSiteListParams as ItemSiteListParams, };
|
|
226
|
+
}
|
|
227
|
+
//# sourceMappingURL=item-sites.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"item-sites.d.ts","sourceRoot":"","sources":["../../src/resources/qbd/item-sites.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
3
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
+
exports.ItemSitesCursorPage = exports.ItemSites = void 0;
|
|
5
|
+
const resource_1 = require("../../resource.js");
|
|
6
|
+
const pagination_1 = require("../../pagination.js");
|
|
7
|
+
class ItemSites extends resource_1.APIResource {
|
|
8
|
+
/**
|
|
9
|
+
* Retrieves an item site by ID.
|
|
10
|
+
*/
|
|
11
|
+
retrieve(id, params, options) {
|
|
12
|
+
const { conductorEndUserId } = params;
|
|
13
|
+
return this._client.get(`/quickbooks-desktop/item-sites/${id}`, {
|
|
14
|
+
...options,
|
|
15
|
+
headers: { 'Conductor-End-User-Id': conductorEndUserId, ...options?.headers },
|
|
16
|
+
});
|
|
17
|
+
}
|
|
18
|
+
/**
|
|
19
|
+
* Returns a list of item sites. Use the `cursor` parameter to paginate through the
|
|
20
|
+
* results.
|
|
21
|
+
*/
|
|
22
|
+
list(params, options) {
|
|
23
|
+
const { conductorEndUserId, ...query } = params;
|
|
24
|
+
return this._client.getAPIList('/quickbooks-desktop/item-sites', ItemSitesCursorPage, {
|
|
25
|
+
query,
|
|
26
|
+
...options,
|
|
27
|
+
headers: { 'Conductor-End-User-Id': conductorEndUserId, ...options?.headers },
|
|
28
|
+
});
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
exports.ItemSites = ItemSites;
|
|
32
|
+
class ItemSitesCursorPage extends pagination_1.CursorPage {
|
|
33
|
+
}
|
|
34
|
+
exports.ItemSitesCursorPage = ItemSitesCursorPage;
|
|
35
|
+
ItemSites.ItemSitesCursorPage = ItemSitesCursorPage;
|
|
36
|
+
//# sourceMappingURL=item-sites.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"item-sites.js","sourceRoot":"","sources":["../../src/resources/qbd/item-sites.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,gDAA6C;AAE7C,oDAAqE;AAErE,MAAa,SAAU,SAAQ,sBAAW;IACxC;;OAEG;IACH,QAAQ,CACN,EAAU,EACV,MAA8B,EAC9B,OAA6B;QAE7B,MAAM,EAAE,kBAAkB,EAAE,GAAG,MAAM,CAAC;QACtC,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,kCAAkC,EAAE,EAAE,EAAE;YAC9D,GAAG,OAAO;YACV,OAAO,EAAE,EAAE,uBAAuB,EAAE,kBAAkB,EAAE,GAAG,OAAO,EAAE,OAAO,EAAE;SAC9E,CAAC,CAAC;IACL,CAAC;IAED;;;OAGG;IACH,IAAI,CACF,MAA0B,EAC1B,OAA6B;QAE7B,MAAM,EAAE,kBAAkB,EAAE,GAAG,KAAK,EAAE,GAAG,MAAM,CAAC;QAChD,OAAO,IAAI,CAAC,OAAO,CAAC,UAAU,CAAC,gCAAgC,EAAE,mBAAmB,EAAE;YACpF,KAAK;YACL,GAAG,OAAO;YACV,OAAO,EAAE,EAAE,uBAAuB,EAAE,kBAAkB,EAAE,GAAG,OAAO,EAAE,OAAO,EAAE;SAC9E,CAAC,CAAC;IACL,CAAC;CACF;AA/BD,8BA+BC;AAED,MAAa,mBAAoB,SAAQ,uBAAoB;CAAG;AAAhE,kDAAgE;AA6PhE,SAAS,CAAC,mBAAmB,GAAG,mBAAmB,CAAC"}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
import { APIResource } from "../../resource.mjs";
|
|
3
|
+
import { CursorPage } from "../../pagination.mjs";
|
|
4
|
+
export class ItemSites extends APIResource {
|
|
5
|
+
/**
|
|
6
|
+
* Retrieves an item site by ID.
|
|
7
|
+
*/
|
|
8
|
+
retrieve(id, params, options) {
|
|
9
|
+
const { conductorEndUserId } = params;
|
|
10
|
+
return this._client.get(`/quickbooks-desktop/item-sites/${id}`, {
|
|
11
|
+
...options,
|
|
12
|
+
headers: { 'Conductor-End-User-Id': conductorEndUserId, ...options?.headers },
|
|
13
|
+
});
|
|
14
|
+
}
|
|
15
|
+
/**
|
|
16
|
+
* Returns a list of item sites. Use the `cursor` parameter to paginate through the
|
|
17
|
+
* results.
|
|
18
|
+
*/
|
|
19
|
+
list(params, options) {
|
|
20
|
+
const { conductorEndUserId, ...query } = params;
|
|
21
|
+
return this._client.getAPIList('/quickbooks-desktop/item-sites', ItemSitesCursorPage, {
|
|
22
|
+
query,
|
|
23
|
+
...options,
|
|
24
|
+
headers: { 'Conductor-End-User-Id': conductorEndUserId, ...options?.headers },
|
|
25
|
+
});
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
export class ItemSitesCursorPage extends CursorPage {
|
|
29
|
+
}
|
|
30
|
+
ItemSites.ItemSitesCursorPage = ItemSitesCursorPage;
|
|
31
|
+
//# sourceMappingURL=item-sites.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"item-sites.mjs","sourceRoot":"","sources":["../../src/resources/qbd/item-sites.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAE/E,EAAE,WAAW,EAAE;OAEf,EAAE,UAAU,EAAyB;AAE5C,MAAM,OAAO,SAAU,SAAQ,WAAW;IACxC;;OAEG;IACH,QAAQ,CACN,EAAU,EACV,MAA8B,EAC9B,OAA6B;QAE7B,MAAM,EAAE,kBAAkB,EAAE,GAAG,MAAM,CAAC;QACtC,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,kCAAkC,EAAE,EAAE,EAAE;YAC9D,GAAG,OAAO;YACV,OAAO,EAAE,EAAE,uBAAuB,EAAE,kBAAkB,EAAE,GAAG,OAAO,EAAE,OAAO,EAAE;SAC9E,CAAC,CAAC;IACL,CAAC;IAED;;;OAGG;IACH,IAAI,CACF,MAA0B,EAC1B,OAA6B;QAE7B,MAAM,EAAE,kBAAkB,EAAE,GAAG,KAAK,EAAE,GAAG,MAAM,CAAC;QAChD,OAAO,IAAI,CAAC,OAAO,CAAC,UAAU,CAAC,gCAAgC,EAAE,mBAAmB,EAAE;YACpF,KAAK;YACL,GAAG,OAAO;YACV,OAAO,EAAE,EAAE,uBAAuB,EAAE,kBAAkB,EAAE,GAAG,OAAO,EAAE,OAAO,EAAE;SAC9E,CAAC,CAAC;IACL,CAAC;CACF;AAED,MAAM,OAAO,mBAAoB,SAAQ,UAAoB;CAAG;AA6PhE,SAAS,CAAC,mBAAmB,GAAG,mBAAmB,CAAC"}
|
package/resources/qbd/qbd.d.ts
CHANGED
|
@@ -42,8 +42,12 @@ import * as InventorySitesAPI from "./inventory-sites.js";
|
|
|
42
42
|
import { InventorySite, InventorySiteCreateParams, InventorySiteListParams, InventorySiteListResponse, InventorySiteRetrieveParams, InventorySiteUpdateParams, InventorySites } from "./inventory-sites.js";
|
|
43
43
|
import * as InvoicesAPI from "./invoices.js";
|
|
44
44
|
import { Invoice, InvoiceCreateParams, InvoiceDeleteParams, InvoiceDeleteResponse, InvoiceListParams, InvoiceRetrieveParams, InvoiceUpdateParams, Invoices, InvoicesCursorPage } from "./invoices.js";
|
|
45
|
+
import * as ItemGroupsAPI from "./item-groups.js";
|
|
46
|
+
import { ItemGroup, ItemGroupCreateParams, ItemGroupListParams, ItemGroupRetrieveParams, ItemGroupUpdateParams, ItemGroups, ItemGroupsCursorPage } from "./item-groups.js";
|
|
45
47
|
import * as ItemReceiptsAPI from "./item-receipts.js";
|
|
46
48
|
import { ItemReceipt, ItemReceiptCreateParams, ItemReceiptDeleteParams, ItemReceiptDeleteResponse, ItemReceiptListParams, ItemReceiptRetrieveParams, ItemReceiptUpdateParams, ItemReceipts, ItemReceiptsCursorPage } from "./item-receipts.js";
|
|
49
|
+
import * as ItemSitesAPI from "./item-sites.js";
|
|
50
|
+
import { ItemSite, ItemSiteListParams, ItemSiteRetrieveParams, ItemSites, ItemSitesCursorPage } from "./item-sites.js";
|
|
47
51
|
import * as JournalEntriesAPI from "./journal-entries.js";
|
|
48
52
|
import { JournalEntries, JournalEntriesCursorPage, JournalEntry, JournalEntryCreateParams, JournalEntryDeleteParams, JournalEntryDeleteResponse, JournalEntryListParams, JournalEntryRetrieveParams, JournalEntryUpdateParams } from "./journal-entries.js";
|
|
49
53
|
import * as NonInventoryItemsAPI from "./non-inventory-items.js";
|
|
@@ -106,7 +110,9 @@ export declare class Qbd extends APIResource {
|
|
|
106
110
|
inventoryItems: InventoryItemsAPI.InventoryItems;
|
|
107
111
|
inventorySites: InventorySitesAPI.InventorySites;
|
|
108
112
|
invoices: InvoicesAPI.Invoices;
|
|
113
|
+
itemGroups: ItemGroupsAPI.ItemGroups;
|
|
109
114
|
itemReceipts: ItemReceiptsAPI.ItemReceipts;
|
|
115
|
+
itemSites: ItemSitesAPI.ItemSites;
|
|
110
116
|
journalEntries: JournalEntriesAPI.JournalEntries;
|
|
111
117
|
nonInventoryItems: NonInventoryItemsAPI.NonInventoryItems;
|
|
112
118
|
payrollWageItems: PayrollWageItemsAPI.PayrollWageItems;
|
|
@@ -177,7 +183,9 @@ export declare namespace Qbd {
|
|
|
177
183
|
export { InventoryItems as InventoryItems, type InventoryItem as InventoryItem, InventoryItemsCursorPage as InventoryItemsCursorPage, type InventoryItemCreateParams as InventoryItemCreateParams, type InventoryItemRetrieveParams as InventoryItemRetrieveParams, type InventoryItemUpdateParams as InventoryItemUpdateParams, type InventoryItemListParams as InventoryItemListParams, };
|
|
178
184
|
export { InventorySites as InventorySites, type InventorySite as InventorySite, type InventorySiteListResponse as InventorySiteListResponse, type InventorySiteCreateParams as InventorySiteCreateParams, type InventorySiteRetrieveParams as InventorySiteRetrieveParams, type InventorySiteUpdateParams as InventorySiteUpdateParams, type InventorySiteListParams as InventorySiteListParams, };
|
|
179
185
|
export { Invoices as Invoices, type Invoice as Invoice, type InvoiceDeleteResponse as InvoiceDeleteResponse, InvoicesCursorPage as InvoicesCursorPage, type InvoiceCreateParams as InvoiceCreateParams, type InvoiceRetrieveParams as InvoiceRetrieveParams, type InvoiceUpdateParams as InvoiceUpdateParams, type InvoiceListParams as InvoiceListParams, type InvoiceDeleteParams as InvoiceDeleteParams, };
|
|
186
|
+
export { ItemGroups as ItemGroups, type ItemGroup as ItemGroup, ItemGroupsCursorPage as ItemGroupsCursorPage, type ItemGroupCreateParams as ItemGroupCreateParams, type ItemGroupRetrieveParams as ItemGroupRetrieveParams, type ItemGroupUpdateParams as ItemGroupUpdateParams, type ItemGroupListParams as ItemGroupListParams, };
|
|
180
187
|
export { ItemReceipts as ItemReceipts, type ItemReceipt as ItemReceipt, type ItemReceiptDeleteResponse as ItemReceiptDeleteResponse, ItemReceiptsCursorPage as ItemReceiptsCursorPage, type ItemReceiptCreateParams as ItemReceiptCreateParams, type ItemReceiptRetrieveParams as ItemReceiptRetrieveParams, type ItemReceiptUpdateParams as ItemReceiptUpdateParams, type ItemReceiptListParams as ItemReceiptListParams, type ItemReceiptDeleteParams as ItemReceiptDeleteParams, };
|
|
188
|
+
export { ItemSites as ItemSites, type ItemSite as ItemSite, ItemSitesCursorPage as ItemSitesCursorPage, type ItemSiteRetrieveParams as ItemSiteRetrieveParams, type ItemSiteListParams as ItemSiteListParams, };
|
|
181
189
|
export { JournalEntries as JournalEntries, type JournalEntry as JournalEntry, type JournalEntryDeleteResponse as JournalEntryDeleteResponse, JournalEntriesCursorPage as JournalEntriesCursorPage, type JournalEntryCreateParams as JournalEntryCreateParams, type JournalEntryRetrieveParams as JournalEntryRetrieveParams, type JournalEntryUpdateParams as JournalEntryUpdateParams, type JournalEntryListParams as JournalEntryListParams, type JournalEntryDeleteParams as JournalEntryDeleteParams, };
|
|
182
190
|
export { NonInventoryItems as NonInventoryItems, type NonInventoryItem as NonInventoryItem, NonInventoryItemsCursorPage as NonInventoryItemsCursorPage, type NonInventoryItemCreateParams as NonInventoryItemCreateParams, type NonInventoryItemRetrieveParams as NonInventoryItemRetrieveParams, type NonInventoryItemUpdateParams as NonInventoryItemUpdateParams, type NonInventoryItemListParams as NonInventoryItemListParams, };
|
|
183
191
|
export { PayrollWageItems as PayrollWageItems, type PayrollWageItem as PayrollWageItem, PayrollWageItemsCursorPage as PayrollWageItemsCursorPage, type PayrollWageItemCreateParams as PayrollWageItemCreateParams, type PayrollWageItemRetrieveParams as PayrollWageItemRetrieveParams, type PayrollWageItemListParams as PayrollWageItemListParams, };
|