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.
Files changed (56) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/package.json +1 -1
  3. package/resources/qbd/bills.d.ts +45 -45
  4. package/resources/qbd/checks.d.ts +45 -45
  5. package/resources/qbd/credit-card-charges.d.ts +45 -45
  6. package/resources/qbd/credit-card-credits.d.ts +45 -45
  7. package/resources/qbd/index.d.ts +2 -0
  8. package/resources/qbd/index.d.ts.map +1 -1
  9. package/resources/qbd/index.js +8 -2
  10. package/resources/qbd/index.js.map +1 -1
  11. package/resources/qbd/index.mjs +2 -0
  12. package/resources/qbd/index.mjs.map +1 -1
  13. package/resources/qbd/inventory-assembly-items.d.ts +10 -7
  14. package/resources/qbd/inventory-assembly-items.d.ts.map +1 -1
  15. package/resources/qbd/inventory-assembly-items.js.map +1 -1
  16. package/resources/qbd/inventory-assembly-items.mjs.map +1 -1
  17. package/resources/qbd/inventory-items.d.ts +8 -6
  18. package/resources/qbd/inventory-items.d.ts.map +1 -1
  19. package/resources/qbd/inventory-items.js.map +1 -1
  20. package/resources/qbd/inventory-items.mjs.map +1 -1
  21. package/resources/qbd/item-groups.d.ts +490 -0
  22. package/resources/qbd/item-groups.d.ts.map +1 -0
  23. package/resources/qbd/item-groups.js +58 -0
  24. package/resources/qbd/item-groups.js.map +1 -0
  25. package/resources/qbd/item-groups.mjs +53 -0
  26. package/resources/qbd/item-groups.mjs.map +1 -0
  27. package/resources/qbd/item-receipts.d.ts +45 -45
  28. package/resources/qbd/item-sites.d.ts +227 -0
  29. package/resources/qbd/item-sites.d.ts.map +1 -0
  30. package/resources/qbd/item-sites.js +36 -0
  31. package/resources/qbd/item-sites.js.map +1 -0
  32. package/resources/qbd/item-sites.mjs +31 -0
  33. package/resources/qbd/item-sites.mjs.map +1 -0
  34. package/resources/qbd/qbd.d.ts +8 -0
  35. package/resources/qbd/qbd.d.ts.map +1 -1
  36. package/resources/qbd/qbd.js +10 -0
  37. package/resources/qbd/qbd.js.map +1 -1
  38. package/resources/qbd/qbd.mjs +10 -0
  39. package/resources/qbd/qbd.mjs.map +1 -1
  40. package/resources/qbd/vendor-credits.d.ts +45 -45
  41. package/src/resources/qbd/bills.ts +45 -45
  42. package/src/resources/qbd/checks.ts +45 -45
  43. package/src/resources/qbd/credit-card-charges.ts +45 -45
  44. package/src/resources/qbd/credit-card-credits.ts +45 -45
  45. package/src/resources/qbd/index.ts +16 -0
  46. package/src/resources/qbd/inventory-assembly-items.ts +10 -7
  47. package/src/resources/qbd/inventory-items.ts +8 -6
  48. package/src/resources/qbd/item-groups.ts +621 -0
  49. package/src/resources/qbd/item-receipts.ts +45 -45
  50. package/src/resources/qbd/item-sites.ts +302 -0
  51. package/src/resources/qbd/qbd.ts +42 -0
  52. package/src/resources/qbd/vendor-credits.ts +45 -45
  53. package/src/version.ts +1 -1
  54. package/version.d.ts +1 -1
  55. package/version.js +1 -1
  56. package/version.mjs +1 -1
@@ -157,7 +157,7 @@ export interface CreditCardCharge {
157
157
  * items bundled together because they are commonly purchased together or grouped
158
158
  * for faster entry.
159
159
  */
160
- itemLineGroups: Array<CreditCardCharge.ItemLineGroup>;
160
+ itemGroupLines: Array<CreditCardCharge.ItemGroupLine>;
161
161
 
162
162
  /**
163
163
  * The credit card charge's item lines, each representing the purchase of a
@@ -529,54 +529,54 @@ export namespace CreditCardCharge {
529
529
  }
530
530
  }
531
531
 
532
- export interface ItemLineGroup {
532
+ export interface ItemGroupLine {
533
533
  /**
534
- * The unique identifier assigned by QuickBooks to this item line group. This ID is
534
+ * The unique identifier assigned by QuickBooks to this item group line. This ID is
535
535
  * unique across all transaction line types.
536
536
  */
537
537
  id: string;
538
538
 
539
539
  /**
540
- * The custom fields for the item line group object, added as user-defined data
540
+ * The custom fields for the item group line object, added as user-defined data
541
541
  * extensions, not included in the standard QuickBooks object.
542
542
  */
543
- customFields: Array<ItemLineGroup.CustomField>;
543
+ customFields: Array<ItemGroupLine.CustomField>;
544
544
 
545
545
  /**
546
- * A description of this item line group.
546
+ * A description of this item group line.
547
547
  */
548
548
  description: string | null;
549
549
 
550
550
  /**
551
- * The item line group's item group, representing a predefined set of items bundled
551
+ * The item group line's item group, representing a predefined set of items bundled
552
552
  * because they are commonly purchased together or grouped for faster entry.
553
553
  */
554
- itemGroup: ItemLineGroup.ItemGroup;
554
+ itemGroup: ItemGroupLine.ItemGroup;
555
555
 
556
556
  /**
557
- * The item line group's item lines, each representing the purchase of a specific
557
+ * The item group line's item lines, each representing the purchase of a specific
558
558
  * item or service.
559
559
  */
560
- itemLines: Array<ItemLineGroup.ItemLine>;
560
+ itemLines: Array<ItemGroupLine.ItemLine>;
561
561
 
562
562
  /**
563
- * The type of object. This value is always `"qbd_item_line_group"`.
563
+ * The type of object. This value is always `"qbd_item_group_line"`.
564
564
  */
565
- objectType: 'qbd_item_line_group';
565
+ objectType: 'qbd_item_group_line';
566
566
 
567
567
  /**
568
- * Specifies an alternative unit-of-measure set when updating this item line
569
- * group's `unitOfMeasure` field (e.g., "pound" or "kilogram"). This allows you to
568
+ * Specifies an alternative unit-of-measure set when updating this item group
569
+ * line's `unitOfMeasure` field (e.g., "pound" or "kilogram"). This allows you to
570
570
  * select units from a different set than the item's default unit-of-measure set,
571
571
  * which remains unchanged on the item itself. The override applies only to this
572
572
  * specific line. For example, you can sell an item typically measured in volume
573
573
  * units using weight units in a specific transaction by specifying a different
574
574
  * unit-of-measure set with this field.
575
575
  */
576
- overrideUnitOfMeasureSet: ItemLineGroup.OverrideUnitOfMeasureSet | null;
576
+ overrideUnitOfMeasureSet: ItemGroupLine.OverrideUnitOfMeasureSet | null;
577
577
 
578
578
  /**
579
- * The quantity of the item group associated with this item line group. This field
579
+ * The quantity of the item group associated with this item group line. This field
580
580
  * cannot be cleared.
581
581
  *
582
582
  * **NOTE**: Do not use this field if the associated item group is a discount item
@@ -585,19 +585,19 @@ export namespace CreditCardCharge {
585
585
  quantity: number | null;
586
586
 
587
587
  /**
588
- * The total monetary amount of this item line group, equivalent to the sum of the
588
+ * The total monetary amount of this item group line, equivalent to the sum of the
589
589
  * amounts in `lines`, represented as a decimal string.
590
590
  */
591
591
  totalAmount: string;
592
592
 
593
593
  /**
594
- * The unit-of-measure used for the `quantity` in this item line group. Must be a
594
+ * The unit-of-measure used for the `quantity` in this item group line. Must be a
595
595
  * valid unit within the item's available units of measure.
596
596
  */
597
597
  unitOfMeasure: string | null;
598
598
  }
599
599
 
600
- export namespace ItemLineGroup {
600
+ export namespace ItemGroupLine {
601
601
  export interface CustomField {
602
602
  /**
603
603
  * The name of the custom field, unique for the specified `ownerId`. For public
@@ -637,7 +637,7 @@ export namespace CreditCardCharge {
637
637
  }
638
638
 
639
639
  /**
640
- * The item line group's item group, representing a predefined set of items bundled
640
+ * The item group line's item group, representing a predefined set of items bundled
641
641
  * because they are commonly purchased together or grouped for faster entry.
642
642
  */
643
643
  export interface ItemGroup {
@@ -1014,8 +1014,8 @@ export namespace CreditCardCharge {
1014
1014
  }
1015
1015
 
1016
1016
  /**
1017
- * Specifies an alternative unit-of-measure set when updating this item line
1018
- * group's `unitOfMeasure` field (e.g., "pound" or "kilogram"). This allows you to
1017
+ * Specifies an alternative unit-of-measure set when updating this item group
1018
+ * line's `unitOfMeasure` field (e.g., "pound" or "kilogram"). This allows you to
1019
1019
  * select units from a different set than the item's default unit-of-measure set,
1020
1020
  * which remains unchanged on the item itself. The override applies only to this
1021
1021
  * specific line. For example, you can sell an item typically measured in volume
@@ -1514,7 +1514,7 @@ export interface CreditCardChargeCreateParams {
1514
1514
  * predefined set of items bundled together because they are commonly purchased
1515
1515
  * together or grouped for faster entry.
1516
1516
  */
1517
- itemLineGroups?: Array<CreditCardChargeCreateParams.ItemLineGroup>;
1517
+ itemGroupLines?: Array<CreditCardChargeCreateParams.ItemGroupLine>;
1518
1518
 
1519
1519
  /**
1520
1520
  * Body param: The credit card charge's item lines, each representing the purchase
@@ -1649,33 +1649,33 @@ export namespace CreditCardChargeCreateParams {
1649
1649
  }
1650
1650
  }
1651
1651
 
1652
- export interface ItemLineGroup {
1652
+ export interface ItemGroupLine {
1653
1653
  /**
1654
- * The item line group's item group, representing a predefined set of items bundled
1654
+ * The item group line's item group, representing a predefined set of items bundled
1655
1655
  * because they are commonly purchased together or grouped for faster entry.
1656
1656
  */
1657
1657
  itemGroupId: string;
1658
1658
 
1659
1659
  /**
1660
- * The custom fields for the item line group object, added as user-defined data
1660
+ * The custom fields for the item group line object, added as user-defined data
1661
1661
  * extensions, not included in the standard QuickBooks object.
1662
1662
  */
1663
- customFields?: Array<ItemLineGroup.CustomField>;
1663
+ customFields?: Array<ItemGroupLine.CustomField>;
1664
1664
 
1665
1665
  /**
1666
1666
  * The site location where inventory for the item group associated with this item
1667
- * line group is stored.
1667
+ * group line is stored.
1668
1668
  */
1669
1669
  inventorySiteId?: string;
1670
1670
 
1671
1671
  /**
1672
1672
  * The specific location (e.g., bin or shelf) within the inventory site where the
1673
- * item group associated with this item line group is stored.
1673
+ * item group associated with this item group line is stored.
1674
1674
  */
1675
1675
  inventorySiteLocationId?: string;
1676
1676
 
1677
1677
  /**
1678
- * The quantity of the item group associated with this item line group. This field
1678
+ * The quantity of the item group associated with this item group line. This field
1679
1679
  * cannot be cleared.
1680
1680
  *
1681
1681
  * **NOTE**: Do not use this field if the associated item group is a discount item
@@ -1684,13 +1684,13 @@ export namespace CreditCardChargeCreateParams {
1684
1684
  quantity?: number;
1685
1685
 
1686
1686
  /**
1687
- * The unit-of-measure used for the `quantity` in this item line group. Must be a
1687
+ * The unit-of-measure used for the `quantity` in this item group line. Must be a
1688
1688
  * valid unit within the item's available units of measure.
1689
1689
  */
1690
1690
  unitOfMeasure?: string;
1691
1691
  }
1692
1692
 
1693
- export namespace ItemLineGroup {
1693
+ export namespace ItemGroupLine {
1694
1694
  export interface CustomField {
1695
1695
  /**
1696
1696
  * The name of the custom field, unique for the specified `ownerId`. For public
@@ -2036,7 +2036,7 @@ export interface CreditCardChargeUpdateParams {
2036
2036
  * 3. If you do not wish to modify any item group lines, omit this field entirely
2037
2037
  * to keep them unchanged.
2038
2038
  */
2039
- itemLineGroups?: Array<CreditCardChargeUpdateParams.ItemLineGroup>;
2039
+ itemGroupLines?: Array<CreditCardChargeUpdateParams.ItemGroupLine>;
2040
2040
 
2041
2041
  /**
2042
2042
  * Body param: The credit card charge's item lines, each representing the purchase
@@ -2163,29 +2163,29 @@ export namespace CreditCardChargeUpdateParams {
2163
2163
  salesTaxCodeId?: string;
2164
2164
  }
2165
2165
 
2166
- export interface ItemLineGroup {
2166
+ export interface ItemGroupLine {
2167
2167
  /**
2168
- * The QuickBooks-assigned unique identifier of an existing item line group you
2168
+ * The QuickBooks-assigned unique identifier of an existing item group line you
2169
2169
  * wish to retain or update.
2170
2170
  *
2171
- * **IMPORTANT**: Set this field to `-1` for new item line groups you wish to add.
2171
+ * **IMPORTANT**: Set this field to `-1` for new item group lines you wish to add.
2172
2172
  */
2173
2173
  id: string;
2174
2174
 
2175
2175
  /**
2176
- * The item line group's item group, representing a predefined set of items bundled
2176
+ * The item group line's item group, representing a predefined set of items bundled
2177
2177
  * because they are commonly purchased together or grouped for faster entry.
2178
2178
  */
2179
2179
  itemGroupId?: string;
2180
2180
 
2181
2181
  /**
2182
- * The item line group's item lines, each representing the purchase of a specific
2182
+ * The item group line's item lines, each representing the purchase of a specific
2183
2183
  * item or service.
2184
2184
  *
2185
2185
  * **IMPORTANT**:
2186
2186
  *
2187
2187
  * 1. Including this array in your update request will **REPLACE** all existing
2188
- * item lines for the item line group with this array. To keep any existing item
2188
+ * item lines for the item group line with this array. To keep any existing item
2189
2189
  * lines, you must include them in this array even if they have not changed.
2190
2190
  * **Any item lines not included will be removed.**
2191
2191
  *
@@ -2194,11 +2194,11 @@ export namespace CreditCardChargeUpdateParams {
2194
2194
  * 3. If you do not wish to modify any item lines, omit this field entirely to keep
2195
2195
  * them unchanged.
2196
2196
  */
2197
- itemLines?: Array<ItemLineGroup.ItemLine>;
2197
+ itemLines?: Array<ItemGroupLine.ItemLine>;
2198
2198
 
2199
2199
  /**
2200
- * Specifies an alternative unit-of-measure set when updating this item line
2201
- * group's `unitOfMeasure` field (e.g., "pound" or "kilogram"). This allows you to
2200
+ * Specifies an alternative unit-of-measure set when updating this item group
2201
+ * line's `unitOfMeasure` field (e.g., "pound" or "kilogram"). This allows you to
2202
2202
  * select units from a different set than the item's default unit-of-measure set,
2203
2203
  * which remains unchanged on the item itself. The override applies only to this
2204
2204
  * specific line. For example, you can sell an item typically measured in volume
@@ -2208,7 +2208,7 @@ export namespace CreditCardChargeUpdateParams {
2208
2208
  overrideUnitOfMeasureSetId?: string;
2209
2209
 
2210
2210
  /**
2211
- * The quantity of the item group associated with this item line group. This field
2211
+ * The quantity of the item group associated with this item group line. This field
2212
2212
  * cannot be cleared.
2213
2213
  *
2214
2214
  * **NOTE**: Do not use this field if the associated item group is a discount item
@@ -2217,13 +2217,13 @@ export namespace CreditCardChargeUpdateParams {
2217
2217
  quantity?: number;
2218
2218
 
2219
2219
  /**
2220
- * The unit-of-measure used for the `quantity` in this item line group. Must be a
2220
+ * The unit-of-measure used for the `quantity` in this item group line. Must be a
2221
2221
  * valid unit within the item's available units of measure.
2222
2222
  */
2223
2223
  unitOfMeasure?: string;
2224
2224
  }
2225
2225
 
2226
- export namespace ItemLineGroup {
2226
+ export namespace ItemGroupLine {
2227
2227
  export interface ItemLine {
2228
2228
  /**
2229
2229
  * The QuickBooks-assigned unique identifier of an existing item line you wish to
@@ -156,7 +156,7 @@ export interface CreditCardCredit {
156
156
  * items bundled together because they are commonly purchased together or grouped
157
157
  * for faster entry.
158
158
  */
159
- itemLineGroups: Array<CreditCardCredit.ItemLineGroup>;
159
+ itemGroupLines: Array<CreditCardCredit.ItemGroupLine>;
160
160
 
161
161
  /**
162
162
  * The credit card credit's item lines, each representing the purchase of a
@@ -527,54 +527,54 @@ export namespace CreditCardCredit {
527
527
  }
528
528
  }
529
529
 
530
- export interface ItemLineGroup {
530
+ export interface ItemGroupLine {
531
531
  /**
532
- * The unique identifier assigned by QuickBooks to this item line group. This ID is
532
+ * The unique identifier assigned by QuickBooks to this item group line. This ID is
533
533
  * unique across all transaction line types.
534
534
  */
535
535
  id: string;
536
536
 
537
537
  /**
538
- * The custom fields for the item line group object, added as user-defined data
538
+ * The custom fields for the item group line object, added as user-defined data
539
539
  * extensions, not included in the standard QuickBooks object.
540
540
  */
541
- customFields: Array<ItemLineGroup.CustomField>;
541
+ customFields: Array<ItemGroupLine.CustomField>;
542
542
 
543
543
  /**
544
- * A description of this item line group.
544
+ * A description of this item group line.
545
545
  */
546
546
  description: string | null;
547
547
 
548
548
  /**
549
- * The item line group's item group, representing a predefined set of items bundled
549
+ * The item group line's item group, representing a predefined set of items bundled
550
550
  * because they are commonly purchased together or grouped for faster entry.
551
551
  */
552
- itemGroup: ItemLineGroup.ItemGroup;
552
+ itemGroup: ItemGroupLine.ItemGroup;
553
553
 
554
554
  /**
555
- * The item line group's item lines, each representing the purchase of a specific
555
+ * The item group line's item lines, each representing the purchase of a specific
556
556
  * item or service.
557
557
  */
558
- itemLines: Array<ItemLineGroup.ItemLine>;
558
+ itemLines: Array<ItemGroupLine.ItemLine>;
559
559
 
560
560
  /**
561
- * The type of object. This value is always `"qbd_item_line_group"`.
561
+ * The type of object. This value is always `"qbd_item_group_line"`.
562
562
  */
563
- objectType: 'qbd_item_line_group';
563
+ objectType: 'qbd_item_group_line';
564
564
 
565
565
  /**
566
- * Specifies an alternative unit-of-measure set when updating this item line
567
- * group's `unitOfMeasure` field (e.g., "pound" or "kilogram"). This allows you to
566
+ * Specifies an alternative unit-of-measure set when updating this item group
567
+ * line's `unitOfMeasure` field (e.g., "pound" or "kilogram"). This allows you to
568
568
  * select units from a different set than the item's default unit-of-measure set,
569
569
  * which remains unchanged on the item itself. The override applies only to this
570
570
  * specific line. For example, you can sell an item typically measured in volume
571
571
  * units using weight units in a specific transaction by specifying a different
572
572
  * unit-of-measure set with this field.
573
573
  */
574
- overrideUnitOfMeasureSet: ItemLineGroup.OverrideUnitOfMeasureSet | null;
574
+ overrideUnitOfMeasureSet: ItemGroupLine.OverrideUnitOfMeasureSet | null;
575
575
 
576
576
  /**
577
- * The quantity of the item group associated with this item line group. This field
577
+ * The quantity of the item group associated with this item group line. This field
578
578
  * cannot be cleared.
579
579
  *
580
580
  * **NOTE**: Do not use this field if the associated item group is a discount item
@@ -583,19 +583,19 @@ export namespace CreditCardCredit {
583
583
  quantity: number | null;
584
584
 
585
585
  /**
586
- * The total monetary amount of this item line group, equivalent to the sum of the
586
+ * The total monetary amount of this item group line, equivalent to the sum of the
587
587
  * amounts in `lines`, represented as a decimal string.
588
588
  */
589
589
  totalAmount: string;
590
590
 
591
591
  /**
592
- * The unit-of-measure used for the `quantity` in this item line group. Must be a
592
+ * The unit-of-measure used for the `quantity` in this item group line. Must be a
593
593
  * valid unit within the item's available units of measure.
594
594
  */
595
595
  unitOfMeasure: string | null;
596
596
  }
597
597
 
598
- export namespace ItemLineGroup {
598
+ export namespace ItemGroupLine {
599
599
  export interface CustomField {
600
600
  /**
601
601
  * The name of the custom field, unique for the specified `ownerId`. For public
@@ -635,7 +635,7 @@ export namespace CreditCardCredit {
635
635
  }
636
636
 
637
637
  /**
638
- * The item line group's item group, representing a predefined set of items bundled
638
+ * The item group line's item group, representing a predefined set of items bundled
639
639
  * because they are commonly purchased together or grouped for faster entry.
640
640
  */
641
641
  export interface ItemGroup {
@@ -1012,8 +1012,8 @@ export namespace CreditCardCredit {
1012
1012
  }
1013
1013
 
1014
1014
  /**
1015
- * Specifies an alternative unit-of-measure set when updating this item line
1016
- * group's `unitOfMeasure` field (e.g., "pound" or "kilogram"). This allows you to
1015
+ * Specifies an alternative unit-of-measure set when updating this item group
1016
+ * line's `unitOfMeasure` field (e.g., "pound" or "kilogram"). This allows you to
1017
1017
  * select units from a different set than the item's default unit-of-measure set,
1018
1018
  * which remains unchanged on the item itself. The override applies only to this
1019
1019
  * specific line. For example, you can sell an item typically measured in volume
@@ -1512,7 +1512,7 @@ export interface CreditCardCreditCreateParams {
1512
1512
  * predefined set of items bundled together because they are commonly purchased
1513
1513
  * together or grouped for faster entry.
1514
1514
  */
1515
- itemLineGroups?: Array<CreditCardCreditCreateParams.ItemLineGroup>;
1515
+ itemGroupLines?: Array<CreditCardCreditCreateParams.ItemGroupLine>;
1516
1516
 
1517
1517
  /**
1518
1518
  * Body param: The credit card credit's item lines, each representing the purchase
@@ -1647,33 +1647,33 @@ export namespace CreditCardCreditCreateParams {
1647
1647
  }
1648
1648
  }
1649
1649
 
1650
- export interface ItemLineGroup {
1650
+ export interface ItemGroupLine {
1651
1651
  /**
1652
- * The item line group's item group, representing a predefined set of items bundled
1652
+ * The item group line's item group, representing a predefined set of items bundled
1653
1653
  * because they are commonly purchased together or grouped for faster entry.
1654
1654
  */
1655
1655
  itemGroupId: string;
1656
1656
 
1657
1657
  /**
1658
- * The custom fields for the item line group object, added as user-defined data
1658
+ * The custom fields for the item group line object, added as user-defined data
1659
1659
  * extensions, not included in the standard QuickBooks object.
1660
1660
  */
1661
- customFields?: Array<ItemLineGroup.CustomField>;
1661
+ customFields?: Array<ItemGroupLine.CustomField>;
1662
1662
 
1663
1663
  /**
1664
1664
  * The site location where inventory for the item group associated with this item
1665
- * line group is stored.
1665
+ * group line is stored.
1666
1666
  */
1667
1667
  inventorySiteId?: string;
1668
1668
 
1669
1669
  /**
1670
1670
  * The specific location (e.g., bin or shelf) within the inventory site where the
1671
- * item group associated with this item line group is stored.
1671
+ * item group associated with this item group line is stored.
1672
1672
  */
1673
1673
  inventorySiteLocationId?: string;
1674
1674
 
1675
1675
  /**
1676
- * The quantity of the item group associated with this item line group. This field
1676
+ * The quantity of the item group associated with this item group line. This field
1677
1677
  * cannot be cleared.
1678
1678
  *
1679
1679
  * **NOTE**: Do not use this field if the associated item group is a discount item
@@ -1682,13 +1682,13 @@ export namespace CreditCardCreditCreateParams {
1682
1682
  quantity?: number;
1683
1683
 
1684
1684
  /**
1685
- * The unit-of-measure used for the `quantity` in this item line group. Must be a
1685
+ * The unit-of-measure used for the `quantity` in this item group line. Must be a
1686
1686
  * valid unit within the item's available units of measure.
1687
1687
  */
1688
1688
  unitOfMeasure?: string;
1689
1689
  }
1690
1690
 
1691
- export namespace ItemLineGroup {
1691
+ export namespace ItemGroupLine {
1692
1692
  export interface CustomField {
1693
1693
  /**
1694
1694
  * The name of the custom field, unique for the specified `ownerId`. For public
@@ -2034,7 +2034,7 @@ export interface CreditCardCreditUpdateParams {
2034
2034
  * 3. If you do not wish to modify any item group lines, omit this field entirely
2035
2035
  * to keep them unchanged.
2036
2036
  */
2037
- itemLineGroups?: Array<CreditCardCreditUpdateParams.ItemLineGroup>;
2037
+ itemGroupLines?: Array<CreditCardCreditUpdateParams.ItemGroupLine>;
2038
2038
 
2039
2039
  /**
2040
2040
  * Body param: The credit card credit's item lines, each representing the purchase
@@ -2161,29 +2161,29 @@ export namespace CreditCardCreditUpdateParams {
2161
2161
  salesTaxCodeId?: string;
2162
2162
  }
2163
2163
 
2164
- export interface ItemLineGroup {
2164
+ export interface ItemGroupLine {
2165
2165
  /**
2166
- * The QuickBooks-assigned unique identifier of an existing item line group you
2166
+ * The QuickBooks-assigned unique identifier of an existing item group line you
2167
2167
  * wish to retain or update.
2168
2168
  *
2169
- * **IMPORTANT**: Set this field to `-1` for new item line groups you wish to add.
2169
+ * **IMPORTANT**: Set this field to `-1` for new item group lines you wish to add.
2170
2170
  */
2171
2171
  id: string;
2172
2172
 
2173
2173
  /**
2174
- * The item line group's item group, representing a predefined set of items bundled
2174
+ * The item group line's item group, representing a predefined set of items bundled
2175
2175
  * because they are commonly purchased together or grouped for faster entry.
2176
2176
  */
2177
2177
  itemGroupId?: string;
2178
2178
 
2179
2179
  /**
2180
- * The item line group's item lines, each representing the purchase of a specific
2180
+ * The item group line's item lines, each representing the purchase of a specific
2181
2181
  * item or service.
2182
2182
  *
2183
2183
  * **IMPORTANT**:
2184
2184
  *
2185
2185
  * 1. Including this array in your update request will **REPLACE** all existing
2186
- * item lines for the item line group with this array. To keep any existing item
2186
+ * item lines for the item group line with this array. To keep any existing item
2187
2187
  * lines, you must include them in this array even if they have not changed.
2188
2188
  * **Any item lines not included will be removed.**
2189
2189
  *
@@ -2192,11 +2192,11 @@ export namespace CreditCardCreditUpdateParams {
2192
2192
  * 3. If you do not wish to modify any item lines, omit this field entirely to keep
2193
2193
  * them unchanged.
2194
2194
  */
2195
- itemLines?: Array<ItemLineGroup.ItemLine>;
2195
+ itemLines?: Array<ItemGroupLine.ItemLine>;
2196
2196
 
2197
2197
  /**
2198
- * Specifies an alternative unit-of-measure set when updating this item line
2199
- * group's `unitOfMeasure` field (e.g., "pound" or "kilogram"). This allows you to
2198
+ * Specifies an alternative unit-of-measure set when updating this item group
2199
+ * line's `unitOfMeasure` field (e.g., "pound" or "kilogram"). This allows you to
2200
2200
  * select units from a different set than the item's default unit-of-measure set,
2201
2201
  * which remains unchanged on the item itself. The override applies only to this
2202
2202
  * specific line. For example, you can sell an item typically measured in volume
@@ -2206,7 +2206,7 @@ export namespace CreditCardCreditUpdateParams {
2206
2206
  overrideUnitOfMeasureSetId?: string;
2207
2207
 
2208
2208
  /**
2209
- * The quantity of the item group associated with this item line group. This field
2209
+ * The quantity of the item group associated with this item group line. This field
2210
2210
  * cannot be cleared.
2211
2211
  *
2212
2212
  * **NOTE**: Do not use this field if the associated item group is a discount item
@@ -2215,13 +2215,13 @@ export namespace CreditCardCreditUpdateParams {
2215
2215
  quantity?: number;
2216
2216
 
2217
2217
  /**
2218
- * The unit-of-measure used for the `quantity` in this item line group. Must be a
2218
+ * The unit-of-measure used for the `quantity` in this item group line. Must be a
2219
2219
  * valid unit within the item's available units of measure.
2220
2220
  */
2221
2221
  unitOfMeasure?: string;
2222
2222
  }
2223
2223
 
2224
- export namespace ItemLineGroup {
2224
+ export namespace ItemGroupLine {
2225
2225
  export interface ItemLine {
2226
2226
  /**
2227
2227
  * The QuickBooks-assigned unique identifier of an existing item line you wish to
@@ -196,6 +196,15 @@ export {
196
196
  type InvoiceListParams,
197
197
  type InvoiceDeleteParams,
198
198
  } from './invoices';
199
+ export {
200
+ ItemGroupsCursorPage,
201
+ ItemGroups,
202
+ type ItemGroup,
203
+ type ItemGroupCreateParams,
204
+ type ItemGroupRetrieveParams,
205
+ type ItemGroupUpdateParams,
206
+ type ItemGroupListParams,
207
+ } from './item-groups';
199
208
  export {
200
209
  ItemReceiptsCursorPage,
201
210
  ItemReceipts,
@@ -207,6 +216,13 @@ export {
207
216
  type ItemReceiptListParams,
208
217
  type ItemReceiptDeleteParams,
209
218
  } from './item-receipts';
219
+ export {
220
+ ItemSitesCursorPage,
221
+ ItemSites,
222
+ type ItemSite,
223
+ type ItemSiteRetrieveParams,
224
+ type ItemSiteListParams,
225
+ } from './item-sites';
210
226
  export {
211
227
  JournalEntriesCursorPage,
212
228
  JournalEntries,
@@ -219,9 +219,11 @@ export interface InventoryAssemblyItem {
219
219
  purchaseTaxCode: InventoryAssemblyItem.PurchaseTaxCode | null;
220
220
 
221
221
  /**
222
- * The current quantity of this inventory assembly item available in inventory. To
223
- * change the `quantityOnHand` for an inventory assembly item, you must create an
224
- * inventory-adjustment instead of updating this inventory assembly item directly.
222
+ * The number of units of this inventory assembly item currently in inventory.
223
+ * `quantityOnHand` multiplied by `averageCost` equals `totalValue` for inventory
224
+ * item lists. To change the `quantityOnHand` for an inventory assembly item, you
225
+ * must use an inventory-adjustment instead of updating the inventory assembly item
226
+ * directly.
225
227
  */
226
228
  quantityOnHand: number | null;
227
229
 
@@ -689,10 +691,11 @@ export interface InventoryAssemblyItemCreateParams {
689
691
  purchaseTaxCodeId?: string;
690
692
 
691
693
  /**
692
- * Body param: The current quantity of this inventory assembly item available in
693
- * inventory. To change the `quantityOnHand` for an inventory assembly item, you
694
- * must create an inventory-adjustment instead of updating this inventory assembly
695
- * item directly.
694
+ * Body param: The number of units of this inventory assembly item currently in
695
+ * inventory. `quantityOnHand` multiplied by `averageCost` equals `totalValue` for
696
+ * inventory item lists. To change the `quantityOnHand` for an inventory assembly
697
+ * item, you must use an inventory-adjustment instead of updating the inventory
698
+ * assembly item directly.
696
699
  */
697
700
  quantityOnHand?: number;
698
701
 
@@ -200,9 +200,10 @@ export interface InventoryItem {
200
200
  purchaseTaxCode: InventoryItem.PurchaseTaxCode | null;
201
201
 
202
202
  /**
203
- * The current quantity of this inventory item available in inventory. To change
204
- * the `quantityOnHand` for an inventory item, you must create an
205
- * inventory-adjustment instead of updating this inventory item directly.
203
+ * The number of units of this inventory item currently in inventory.
204
+ * `quantityOnHand` multiplied by `averageCost` equals `totalValue` for inventory
205
+ * item lists. To change the `quantityOnHand` for an inventory item, you must use
206
+ * an inventory-adjustment instead of updating the inventory item directly.
206
207
  */
207
208
  quantityOnHand: number | null;
208
209
 
@@ -618,9 +619,10 @@ export interface InventoryItemCreateParams {
618
619
  purchaseTaxCodeId?: string;
619
620
 
620
621
  /**
621
- * Body param: The current quantity of this inventory item available in inventory.
622
- * To change the `quantityOnHand` for an inventory item, you must create an
623
- * inventory-adjustment instead of updating this inventory item directly.
622
+ * Body param: The number of units of this inventory item currently in inventory.
623
+ * `quantityOnHand` multiplied by `averageCost` equals `totalValue` for inventory
624
+ * item lists. To change the `quantityOnHand` for an inventory item, you must use
625
+ * an inventory-adjustment instead of updating the inventory item directly.
624
626
  */
625
627
  quantityOnHand?: number;
626
628