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
@@ -88,7 +88,7 @@ export interface CreditCardCharge {
88
88
  * items bundled together because they are commonly purchased together or grouped
89
89
  * for faster entry.
90
90
  */
91
- itemLineGroups: Array<CreditCardCharge.ItemLineGroup>;
91
+ itemGroupLines: Array<CreditCardCharge.ItemGroupLine>;
92
92
  /**
93
93
  * The credit card charge's item lines, each representing the purchase of a
94
94
  * specific item or service.
@@ -401,47 +401,47 @@ export declare namespace CreditCardCharge {
401
401
  fullName: string | null;
402
402
  }
403
403
  }
404
- interface ItemLineGroup {
404
+ interface ItemGroupLine {
405
405
  /**
406
- * The unique identifier assigned by QuickBooks to this item line group. This ID is
406
+ * The unique identifier assigned by QuickBooks to this item group line. This ID is
407
407
  * unique across all transaction line types.
408
408
  */
409
409
  id: string;
410
410
  /**
411
- * The custom fields for the item line group object, added as user-defined data
411
+ * The custom fields for the item group line object, added as user-defined data
412
412
  * extensions, not included in the standard QuickBooks object.
413
413
  */
414
- customFields: Array<ItemLineGroup.CustomField>;
414
+ customFields: Array<ItemGroupLine.CustomField>;
415
415
  /**
416
- * A description of this item line group.
416
+ * A description of this item group line.
417
417
  */
418
418
  description: string | null;
419
419
  /**
420
- * The item line group's item group, representing a predefined set of items bundled
420
+ * The item group line's item group, representing a predefined set of items bundled
421
421
  * because they are commonly purchased together or grouped for faster entry.
422
422
  */
423
- itemGroup: ItemLineGroup.ItemGroup;
423
+ itemGroup: ItemGroupLine.ItemGroup;
424
424
  /**
425
- * The item line group's item lines, each representing the purchase of a specific
425
+ * The item group line's item lines, each representing the purchase of a specific
426
426
  * item or service.
427
427
  */
428
- itemLines: Array<ItemLineGroup.ItemLine>;
428
+ itemLines: Array<ItemGroupLine.ItemLine>;
429
429
  /**
430
- * The type of object. This value is always `"qbd_item_line_group"`.
430
+ * The type of object. This value is always `"qbd_item_group_line"`.
431
431
  */
432
- objectType: 'qbd_item_line_group';
432
+ objectType: 'qbd_item_group_line';
433
433
  /**
434
- * Specifies an alternative unit-of-measure set when updating this item line
435
- * group's `unitOfMeasure` field (e.g., "pound" or "kilogram"). This allows you to
434
+ * Specifies an alternative unit-of-measure set when updating this item group
435
+ * line's `unitOfMeasure` field (e.g., "pound" or "kilogram"). This allows you to
436
436
  * select units from a different set than the item's default unit-of-measure set,
437
437
  * which remains unchanged on the item itself. The override applies only to this
438
438
  * specific line. For example, you can sell an item typically measured in volume
439
439
  * units using weight units in a specific transaction by specifying a different
440
440
  * unit-of-measure set with this field.
441
441
  */
442
- overrideUnitOfMeasureSet: ItemLineGroup.OverrideUnitOfMeasureSet | null;
442
+ overrideUnitOfMeasureSet: ItemGroupLine.OverrideUnitOfMeasureSet | null;
443
443
  /**
444
- * The quantity of the item group associated with this item line group. This field
444
+ * The quantity of the item group associated with this item group line. This field
445
445
  * cannot be cleared.
446
446
  *
447
447
  * **NOTE**: Do not use this field if the associated item group is a discount item
@@ -449,17 +449,17 @@ export declare namespace CreditCardCharge {
449
449
  */
450
450
  quantity: number | null;
451
451
  /**
452
- * The total monetary amount of this item line group, equivalent to the sum of the
452
+ * The total monetary amount of this item group line, equivalent to the sum of the
453
453
  * amounts in `lines`, represented as a decimal string.
454
454
  */
455
455
  totalAmount: string;
456
456
  /**
457
- * The unit-of-measure used for the `quantity` in this item line group. Must be a
457
+ * The unit-of-measure used for the `quantity` in this item group line. Must be a
458
458
  * valid unit within the item's available units of measure.
459
459
  */
460
460
  unitOfMeasure: string | null;
461
461
  }
462
- namespace ItemLineGroup {
462
+ namespace ItemGroupLine {
463
463
  interface CustomField {
464
464
  /**
465
465
  * The name of the custom field, unique for the specified `ownerId`. For public
@@ -487,7 +487,7 @@ export declare namespace CreditCardCharge {
487
487
  value: string;
488
488
  }
489
489
  /**
490
- * The item line group's item group, representing a predefined set of items bundled
490
+ * The item group line's item group, representing a predefined set of items bundled
491
491
  * because they are commonly purchased together or grouped for faster entry.
492
492
  */
493
493
  interface ItemGroup {
@@ -814,8 +814,8 @@ export declare namespace CreditCardCharge {
814
814
  }
815
815
  }
816
816
  /**
817
- * Specifies an alternative unit-of-measure set when updating this item line
818
- * group's `unitOfMeasure` field (e.g., "pound" or "kilogram"). This allows you to
817
+ * Specifies an alternative unit-of-measure set when updating this item group
818
+ * line's `unitOfMeasure` field (e.g., "pound" or "kilogram"). This allows you to
819
819
  * select units from a different set than the item's default unit-of-measure set,
820
820
  * which remains unchanged on the item itself. The override applies only to this
821
821
  * specific line. For example, you can sell an item typically measured in volume
@@ -1250,7 +1250,7 @@ export interface CreditCardChargeCreateParams {
1250
1250
  * predefined set of items bundled together because they are commonly purchased
1251
1251
  * together or grouped for faster entry.
1252
1252
  */
1253
- itemLineGroups?: Array<CreditCardChargeCreateParams.ItemLineGroup>;
1253
+ itemGroupLines?: Array<CreditCardChargeCreateParams.ItemGroupLine>;
1254
1254
  /**
1255
1255
  * Body param: The credit card charge's item lines, each representing the purchase
1256
1256
  * of a specific item or service.
@@ -1367,29 +1367,29 @@ export declare namespace CreditCardChargeCreateParams {
1367
1367
  value: string;
1368
1368
  }
1369
1369
  }
1370
- interface ItemLineGroup {
1370
+ interface ItemGroupLine {
1371
1371
  /**
1372
- * The item line group's item group, representing a predefined set of items bundled
1372
+ * The item group line's item group, representing a predefined set of items bundled
1373
1373
  * because they are commonly purchased together or grouped for faster entry.
1374
1374
  */
1375
1375
  itemGroupId: string;
1376
1376
  /**
1377
- * The custom fields for the item line group object, added as user-defined data
1377
+ * The custom fields for the item group line object, added as user-defined data
1378
1378
  * extensions, not included in the standard QuickBooks object.
1379
1379
  */
1380
- customFields?: Array<ItemLineGroup.CustomField>;
1380
+ customFields?: Array<ItemGroupLine.CustomField>;
1381
1381
  /**
1382
1382
  * The site location where inventory for the item group associated with this item
1383
- * line group is stored.
1383
+ * group line is stored.
1384
1384
  */
1385
1385
  inventorySiteId?: string;
1386
1386
  /**
1387
1387
  * The specific location (e.g., bin or shelf) within the inventory site where the
1388
- * item group associated with this item line group is stored.
1388
+ * item group associated with this item group line is stored.
1389
1389
  */
1390
1390
  inventorySiteLocationId?: string;
1391
1391
  /**
1392
- * The quantity of the item group associated with this item line group. This field
1392
+ * The quantity of the item group associated with this item group line. This field
1393
1393
  * cannot be cleared.
1394
1394
  *
1395
1395
  * **NOTE**: Do not use this field if the associated item group is a discount item
@@ -1397,12 +1397,12 @@ export declare namespace CreditCardChargeCreateParams {
1397
1397
  */
1398
1398
  quantity?: number;
1399
1399
  /**
1400
- * The unit-of-measure used for the `quantity` in this item line group. Must be a
1400
+ * The unit-of-measure used for the `quantity` in this item group line. Must be a
1401
1401
  * valid unit within the item's available units of measure.
1402
1402
  */
1403
1403
  unitOfMeasure?: string;
1404
1404
  }
1405
- namespace ItemLineGroup {
1405
+ namespace ItemGroupLine {
1406
1406
  interface CustomField {
1407
1407
  /**
1408
1408
  * The name of the custom field, unique for the specified `ownerId`. For public
@@ -1713,7 +1713,7 @@ export interface CreditCardChargeUpdateParams {
1713
1713
  * 3. If you do not wish to modify any item group lines, omit this field entirely
1714
1714
  * to keep them unchanged.
1715
1715
  */
1716
- itemLineGroups?: Array<CreditCardChargeUpdateParams.ItemLineGroup>;
1716
+ itemGroupLines?: Array<CreditCardChargeUpdateParams.ItemGroupLine>;
1717
1717
  /**
1718
1718
  * Body param: The credit card charge's item lines, each representing the purchase
1719
1719
  * of a specific item or service.
@@ -1824,27 +1824,27 @@ export declare namespace CreditCardChargeUpdateParams {
1824
1824
  */
1825
1825
  salesTaxCodeId?: string;
1826
1826
  }
1827
- interface ItemLineGroup {
1827
+ interface ItemGroupLine {
1828
1828
  /**
1829
- * The QuickBooks-assigned unique identifier of an existing item line group you
1829
+ * The QuickBooks-assigned unique identifier of an existing item group line you
1830
1830
  * wish to retain or update.
1831
1831
  *
1832
- * **IMPORTANT**: Set this field to `-1` for new item line groups you wish to add.
1832
+ * **IMPORTANT**: Set this field to `-1` for new item group lines you wish to add.
1833
1833
  */
1834
1834
  id: string;
1835
1835
  /**
1836
- * The item line group's item group, representing a predefined set of items bundled
1836
+ * The item group line's item group, representing a predefined set of items bundled
1837
1837
  * because they are commonly purchased together or grouped for faster entry.
1838
1838
  */
1839
1839
  itemGroupId?: string;
1840
1840
  /**
1841
- * The item line group's item lines, each representing the purchase of a specific
1841
+ * The item group line's item lines, each representing the purchase of a specific
1842
1842
  * item or service.
1843
1843
  *
1844
1844
  * **IMPORTANT**:
1845
1845
  *
1846
1846
  * 1. Including this array in your update request will **REPLACE** all existing
1847
- * item lines for the item line group with this array. To keep any existing item
1847
+ * item lines for the item group line with this array. To keep any existing item
1848
1848
  * lines, you must include them in this array even if they have not changed.
1849
1849
  * **Any item lines not included will be removed.**
1850
1850
  *
@@ -1853,10 +1853,10 @@ export declare namespace CreditCardChargeUpdateParams {
1853
1853
  * 3. If you do not wish to modify any item lines, omit this field entirely to keep
1854
1854
  * them unchanged.
1855
1855
  */
1856
- itemLines?: Array<ItemLineGroup.ItemLine>;
1856
+ itemLines?: Array<ItemGroupLine.ItemLine>;
1857
1857
  /**
1858
- * Specifies an alternative unit-of-measure set when updating this item line
1859
- * group's `unitOfMeasure` field (e.g., "pound" or "kilogram"). This allows you to
1858
+ * Specifies an alternative unit-of-measure set when updating this item group
1859
+ * line's `unitOfMeasure` field (e.g., "pound" or "kilogram"). This allows you to
1860
1860
  * select units from a different set than the item's default unit-of-measure set,
1861
1861
  * which remains unchanged on the item itself. The override applies only to this
1862
1862
  * specific line. For example, you can sell an item typically measured in volume
@@ -1865,7 +1865,7 @@ export declare namespace CreditCardChargeUpdateParams {
1865
1865
  */
1866
1866
  overrideUnitOfMeasureSetId?: string;
1867
1867
  /**
1868
- * The quantity of the item group associated with this item line group. This field
1868
+ * The quantity of the item group associated with this item group line. This field
1869
1869
  * cannot be cleared.
1870
1870
  *
1871
1871
  * **NOTE**: Do not use this field if the associated item group is a discount item
@@ -1873,12 +1873,12 @@ export declare namespace CreditCardChargeUpdateParams {
1873
1873
  */
1874
1874
  quantity?: number;
1875
1875
  /**
1876
- * The unit-of-measure used for the `quantity` in this item line group. Must be a
1876
+ * The unit-of-measure used for the `quantity` in this item group line. Must be a
1877
1877
  * valid unit within the item's available units of measure.
1878
1878
  */
1879
1879
  unitOfMeasure?: string;
1880
1880
  }
1881
- namespace ItemLineGroup {
1881
+ namespace ItemGroupLine {
1882
1882
  interface ItemLine {
1883
1883
  /**
1884
1884
  * The QuickBooks-assigned unique identifier of an existing item line you wish to
@@ -87,7 +87,7 @@ export interface CreditCardCredit {
87
87
  * items bundled together because they are commonly purchased together or grouped
88
88
  * for faster entry.
89
89
  */
90
- itemLineGroups: Array<CreditCardCredit.ItemLineGroup>;
90
+ itemGroupLines: Array<CreditCardCredit.ItemGroupLine>;
91
91
  /**
92
92
  * The credit card credit's item lines, each representing the purchase of a
93
93
  * specific item or service.
@@ -399,47 +399,47 @@ export declare namespace CreditCardCredit {
399
399
  fullName: string | null;
400
400
  }
401
401
  }
402
- interface ItemLineGroup {
402
+ interface ItemGroupLine {
403
403
  /**
404
- * The unique identifier assigned by QuickBooks to this item line group. This ID is
404
+ * The unique identifier assigned by QuickBooks to this item group line. This ID is
405
405
  * unique across all transaction line types.
406
406
  */
407
407
  id: string;
408
408
  /**
409
- * The custom fields for the item line group object, added as user-defined data
409
+ * The custom fields for the item group line object, added as user-defined data
410
410
  * extensions, not included in the standard QuickBooks object.
411
411
  */
412
- customFields: Array<ItemLineGroup.CustomField>;
412
+ customFields: Array<ItemGroupLine.CustomField>;
413
413
  /**
414
- * A description of this item line group.
414
+ * A description of this item group line.
415
415
  */
416
416
  description: string | null;
417
417
  /**
418
- * The item line group's item group, representing a predefined set of items bundled
418
+ * The item group line's item group, representing a predefined set of items bundled
419
419
  * because they are commonly purchased together or grouped for faster entry.
420
420
  */
421
- itemGroup: ItemLineGroup.ItemGroup;
421
+ itemGroup: ItemGroupLine.ItemGroup;
422
422
  /**
423
- * The item line group's item lines, each representing the purchase of a specific
423
+ * The item group line's item lines, each representing the purchase of a specific
424
424
  * item or service.
425
425
  */
426
- itemLines: Array<ItemLineGroup.ItemLine>;
426
+ itemLines: Array<ItemGroupLine.ItemLine>;
427
427
  /**
428
- * The type of object. This value is always `"qbd_item_line_group"`.
428
+ * The type of object. This value is always `"qbd_item_group_line"`.
429
429
  */
430
- objectType: 'qbd_item_line_group';
430
+ objectType: 'qbd_item_group_line';
431
431
  /**
432
- * Specifies an alternative unit-of-measure set when updating this item line
433
- * group's `unitOfMeasure` field (e.g., "pound" or "kilogram"). This allows you to
432
+ * Specifies an alternative unit-of-measure set when updating this item group
433
+ * line's `unitOfMeasure` field (e.g., "pound" or "kilogram"). This allows you to
434
434
  * select units from a different set than the item's default unit-of-measure set,
435
435
  * which remains unchanged on the item itself. The override applies only to this
436
436
  * specific line. For example, you can sell an item typically measured in volume
437
437
  * units using weight units in a specific transaction by specifying a different
438
438
  * unit-of-measure set with this field.
439
439
  */
440
- overrideUnitOfMeasureSet: ItemLineGroup.OverrideUnitOfMeasureSet | null;
440
+ overrideUnitOfMeasureSet: ItemGroupLine.OverrideUnitOfMeasureSet | null;
441
441
  /**
442
- * The quantity of the item group associated with this item line group. This field
442
+ * The quantity of the item group associated with this item group line. This field
443
443
  * cannot be cleared.
444
444
  *
445
445
  * **NOTE**: Do not use this field if the associated item group is a discount item
@@ -447,17 +447,17 @@ export declare namespace CreditCardCredit {
447
447
  */
448
448
  quantity: number | null;
449
449
  /**
450
- * The total monetary amount of this item line group, equivalent to the sum of the
450
+ * The total monetary amount of this item group line, equivalent to the sum of the
451
451
  * amounts in `lines`, represented as a decimal string.
452
452
  */
453
453
  totalAmount: string;
454
454
  /**
455
- * The unit-of-measure used for the `quantity` in this item line group. Must be a
455
+ * The unit-of-measure used for the `quantity` in this item group line. Must be a
456
456
  * valid unit within the item's available units of measure.
457
457
  */
458
458
  unitOfMeasure: string | null;
459
459
  }
460
- namespace ItemLineGroup {
460
+ namespace ItemGroupLine {
461
461
  interface CustomField {
462
462
  /**
463
463
  * The name of the custom field, unique for the specified `ownerId`. For public
@@ -485,7 +485,7 @@ export declare namespace CreditCardCredit {
485
485
  value: string;
486
486
  }
487
487
  /**
488
- * The item line group's item group, representing a predefined set of items bundled
488
+ * The item group line's item group, representing a predefined set of items bundled
489
489
  * because they are commonly purchased together or grouped for faster entry.
490
490
  */
491
491
  interface ItemGroup {
@@ -812,8 +812,8 @@ export declare namespace CreditCardCredit {
812
812
  }
813
813
  }
814
814
  /**
815
- * Specifies an alternative unit-of-measure set when updating this item line
816
- * group's `unitOfMeasure` field (e.g., "pound" or "kilogram"). This allows you to
815
+ * Specifies an alternative unit-of-measure set when updating this item group
816
+ * line's `unitOfMeasure` field (e.g., "pound" or "kilogram"). This allows you to
817
817
  * select units from a different set than the item's default unit-of-measure set,
818
818
  * which remains unchanged on the item itself. The override applies only to this
819
819
  * specific line. For example, you can sell an item typically measured in volume
@@ -1248,7 +1248,7 @@ export interface CreditCardCreditCreateParams {
1248
1248
  * predefined set of items bundled together because they are commonly purchased
1249
1249
  * together or grouped for faster entry.
1250
1250
  */
1251
- itemLineGroups?: Array<CreditCardCreditCreateParams.ItemLineGroup>;
1251
+ itemGroupLines?: Array<CreditCardCreditCreateParams.ItemGroupLine>;
1252
1252
  /**
1253
1253
  * Body param: The credit card credit's item lines, each representing the purchase
1254
1254
  * of a specific item or service.
@@ -1365,29 +1365,29 @@ export declare namespace CreditCardCreditCreateParams {
1365
1365
  value: string;
1366
1366
  }
1367
1367
  }
1368
- interface ItemLineGroup {
1368
+ interface ItemGroupLine {
1369
1369
  /**
1370
- * The item line group's item group, representing a predefined set of items bundled
1370
+ * The item group line's item group, representing a predefined set of items bundled
1371
1371
  * because they are commonly purchased together or grouped for faster entry.
1372
1372
  */
1373
1373
  itemGroupId: string;
1374
1374
  /**
1375
- * The custom fields for the item line group object, added as user-defined data
1375
+ * The custom fields for the item group line object, added as user-defined data
1376
1376
  * extensions, not included in the standard QuickBooks object.
1377
1377
  */
1378
- customFields?: Array<ItemLineGroup.CustomField>;
1378
+ customFields?: Array<ItemGroupLine.CustomField>;
1379
1379
  /**
1380
1380
  * The site location where inventory for the item group associated with this item
1381
- * line group is stored.
1381
+ * group line is stored.
1382
1382
  */
1383
1383
  inventorySiteId?: string;
1384
1384
  /**
1385
1385
  * The specific location (e.g., bin or shelf) within the inventory site where the
1386
- * item group associated with this item line group is stored.
1386
+ * item group associated with this item group line is stored.
1387
1387
  */
1388
1388
  inventorySiteLocationId?: string;
1389
1389
  /**
1390
- * The quantity of the item group associated with this item line group. This field
1390
+ * The quantity of the item group associated with this item group line. This field
1391
1391
  * cannot be cleared.
1392
1392
  *
1393
1393
  * **NOTE**: Do not use this field if the associated item group is a discount item
@@ -1395,12 +1395,12 @@ export declare namespace CreditCardCreditCreateParams {
1395
1395
  */
1396
1396
  quantity?: number;
1397
1397
  /**
1398
- * The unit-of-measure used for the `quantity` in this item line group. Must be a
1398
+ * The unit-of-measure used for the `quantity` in this item group line. Must be a
1399
1399
  * valid unit within the item's available units of measure.
1400
1400
  */
1401
1401
  unitOfMeasure?: string;
1402
1402
  }
1403
- namespace ItemLineGroup {
1403
+ namespace ItemGroupLine {
1404
1404
  interface CustomField {
1405
1405
  /**
1406
1406
  * The name of the custom field, unique for the specified `ownerId`. For public
@@ -1711,7 +1711,7 @@ export interface CreditCardCreditUpdateParams {
1711
1711
  * 3. If you do not wish to modify any item group lines, omit this field entirely
1712
1712
  * to keep them unchanged.
1713
1713
  */
1714
- itemLineGroups?: Array<CreditCardCreditUpdateParams.ItemLineGroup>;
1714
+ itemGroupLines?: Array<CreditCardCreditUpdateParams.ItemGroupLine>;
1715
1715
  /**
1716
1716
  * Body param: The credit card credit's item lines, each representing the purchase
1717
1717
  * of a specific item or service.
@@ -1822,27 +1822,27 @@ export declare namespace CreditCardCreditUpdateParams {
1822
1822
  */
1823
1823
  salesTaxCodeId?: string;
1824
1824
  }
1825
- interface ItemLineGroup {
1825
+ interface ItemGroupLine {
1826
1826
  /**
1827
- * The QuickBooks-assigned unique identifier of an existing item line group you
1827
+ * The QuickBooks-assigned unique identifier of an existing item group line you
1828
1828
  * wish to retain or update.
1829
1829
  *
1830
- * **IMPORTANT**: Set this field to `-1` for new item line groups you wish to add.
1830
+ * **IMPORTANT**: Set this field to `-1` for new item group lines you wish to add.
1831
1831
  */
1832
1832
  id: string;
1833
1833
  /**
1834
- * The item line group's item group, representing a predefined set of items bundled
1834
+ * The item group line's item group, representing a predefined set of items bundled
1835
1835
  * because they are commonly purchased together or grouped for faster entry.
1836
1836
  */
1837
1837
  itemGroupId?: string;
1838
1838
  /**
1839
- * The item line group's item lines, each representing the purchase of a specific
1839
+ * The item group line's item lines, each representing the purchase of a specific
1840
1840
  * item or service.
1841
1841
  *
1842
1842
  * **IMPORTANT**:
1843
1843
  *
1844
1844
  * 1. Including this array in your update request will **REPLACE** all existing
1845
- * item lines for the item line group with this array. To keep any existing item
1845
+ * item lines for the item group line with this array. To keep any existing item
1846
1846
  * lines, you must include them in this array even if they have not changed.
1847
1847
  * **Any item lines not included will be removed.**
1848
1848
  *
@@ -1851,10 +1851,10 @@ export declare namespace CreditCardCreditUpdateParams {
1851
1851
  * 3. If you do not wish to modify any item lines, omit this field entirely to keep
1852
1852
  * them unchanged.
1853
1853
  */
1854
- itemLines?: Array<ItemLineGroup.ItemLine>;
1854
+ itemLines?: Array<ItemGroupLine.ItemLine>;
1855
1855
  /**
1856
- * Specifies an alternative unit-of-measure set when updating this item line
1857
- * group's `unitOfMeasure` field (e.g., "pound" or "kilogram"). This allows you to
1856
+ * Specifies an alternative unit-of-measure set when updating this item group
1857
+ * line's `unitOfMeasure` field (e.g., "pound" or "kilogram"). This allows you to
1858
1858
  * select units from a different set than the item's default unit-of-measure set,
1859
1859
  * which remains unchanged on the item itself. The override applies only to this
1860
1860
  * specific line. For example, you can sell an item typically measured in volume
@@ -1863,7 +1863,7 @@ export declare namespace CreditCardCreditUpdateParams {
1863
1863
  */
1864
1864
  overrideUnitOfMeasureSetId?: string;
1865
1865
  /**
1866
- * The quantity of the item group associated with this item line group. This field
1866
+ * The quantity of the item group associated with this item group line. This field
1867
1867
  * cannot be cleared.
1868
1868
  *
1869
1869
  * **NOTE**: Do not use this field if the associated item group is a discount item
@@ -1871,12 +1871,12 @@ export declare namespace CreditCardCreditUpdateParams {
1871
1871
  */
1872
1872
  quantity?: number;
1873
1873
  /**
1874
- * The unit-of-measure used for the `quantity` in this item line group. Must be a
1874
+ * The unit-of-measure used for the `quantity` in this item group line. Must be a
1875
1875
  * valid unit within the item's available units of measure.
1876
1876
  */
1877
1877
  unitOfMeasure?: string;
1878
1878
  }
1879
- namespace ItemLineGroup {
1879
+ namespace ItemGroupLine {
1880
1880
  interface ItemLine {
1881
1881
  /**
1882
1882
  * The QuickBooks-assigned unique identifier of an existing item line you wish to
@@ -19,7 +19,9 @@ export { InventoryAssemblyItemsCursorPage, InventoryAssemblyItems, type Inventor
19
19
  export { InventoryItemsCursorPage, InventoryItems, type InventoryItem, type InventoryItemCreateParams, type InventoryItemRetrieveParams, type InventoryItemUpdateParams, type InventoryItemListParams, } from "./inventory-items.js";
20
20
  export { InventorySites, type InventorySite, type InventorySiteListResponse, type InventorySiteCreateParams, type InventorySiteRetrieveParams, type InventorySiteUpdateParams, type InventorySiteListParams, } from "./inventory-sites.js";
21
21
  export { InvoicesCursorPage, Invoices, type Invoice, type InvoiceDeleteResponse, type InvoiceCreateParams, type InvoiceRetrieveParams, type InvoiceUpdateParams, type InvoiceListParams, type InvoiceDeleteParams, } from "./invoices.js";
22
+ export { ItemGroupsCursorPage, ItemGroups, type ItemGroup, type ItemGroupCreateParams, type ItemGroupRetrieveParams, type ItemGroupUpdateParams, type ItemGroupListParams, } from "./item-groups.js";
22
23
  export { ItemReceiptsCursorPage, ItemReceipts, type ItemReceipt, type ItemReceiptDeleteResponse, type ItemReceiptCreateParams, type ItemReceiptRetrieveParams, type ItemReceiptUpdateParams, type ItemReceiptListParams, type ItemReceiptDeleteParams, } from "./item-receipts.js";
24
+ export { ItemSitesCursorPage, ItemSites, type ItemSite, type ItemSiteRetrieveParams, type ItemSiteListParams, } from "./item-sites.js";
23
25
  export { JournalEntriesCursorPage, JournalEntries, type JournalEntry, type JournalEntryDeleteResponse, type JournalEntryCreateParams, type JournalEntryRetrieveParams, type JournalEntryUpdateParams, type JournalEntryListParams, type JournalEntryDeleteParams, } from "./journal-entries.js";
24
26
  export { NonInventoryItemsCursorPage, NonInventoryItems, type NonInventoryItem, type NonInventoryItemCreateParams, type NonInventoryItemRetrieveParams, type NonInventoryItemUpdateParams, type NonInventoryItemListParams, } from "./non-inventory-items.js";
25
27
  export { PayrollWageItemsCursorPage, PayrollWageItems, type PayrollWageItem, type PayrollWageItemCreateParams, type PayrollWageItemRetrieveParams, type PayrollWageItemListParams, } from "./payroll-wage-items.js";
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/resources/qbd/index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/resources/qbd/index.ts"],"names":[],"mappings":"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"}
@@ -1,8 +1,8 @@
1
1
  "use strict";
2
2
  // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
3
3
  Object.defineProperty(exports, "__esModule", { value: true });
4
- exports.ReceivePayments = exports.ReceivePaymentsCursorPage = exports.Qbd = exports.PurchaseOrders = exports.PurchaseOrdersCursorPage = exports.PriceLevels = exports.Preferences = exports.PayrollWageItems = exports.PayrollWageItemsCursorPage = exports.NonInventoryItems = exports.NonInventoryItemsCursorPage = exports.JournalEntries = exports.JournalEntriesCursorPage = exports.ItemReceipts = exports.ItemReceiptsCursorPage = exports.Invoices = exports.InvoicesCursorPage = exports.InventorySites = exports.InventoryItems = exports.InventoryItemsCursorPage = exports.InventoryAssemblyItems = exports.InventoryAssemblyItemsCursorPage = exports.InventoryAdjustments = exports.Estimates = exports.EstimatesCursorPage = exports.Employees = exports.EmployeesCursorPage = exports.DiscountItems = exports.DiscountItemsCursorPage = exports.DateDrivenTerms = exports.Customers = exports.CustomersCursorPage = exports.CreditMemos = exports.CreditMemosCursorPage = exports.CreditCardCredits = exports.CreditCardCreditsCursorPage = exports.CreditCardCharges = exports.CreditCardChargesCursorPage = exports.CompanyResource = exports.Classes = exports.Checks = exports.ChecksCursorPage = exports.Bills = exports.BillsCursorPage = exports.BillCreditCardPayments = exports.BillCreditCardPaymentsCursorPage = exports.BillCheckPayments = exports.BillCheckPaymentsCursorPage = exports.Accounts = exports.AccountTaxLines = void 0;
5
- exports.Vendors = exports.VendorsCursorPage = exports.VendorCredits = exports.VendorCreditsCursorPage = exports.Transfers = exports.TransfersCursorPage = exports.Transactions = exports.TransactionsCursorPage = exports.TimeTrackingActivities = exports.TimeTrackingActivitiesCursorPage = exports.SubtotalItems = exports.SubtotalItemsCursorPage = exports.StandardTerms = exports.ServiceItems = exports.ServiceItemsCursorPage = exports.SalesTaxItems = exports.SalesTaxItemsCursorPage = exports.SalesTaxCodes = exports.SalesRepresentatives = exports.SalesReceipts = exports.SalesReceiptsCursorPage = exports.SalesOrders = exports.SalesOrdersCursorPage = void 0;
4
+ exports.PurchaseOrdersCursorPage = exports.PriceLevels = exports.Preferences = exports.PayrollWageItems = exports.PayrollWageItemsCursorPage = exports.NonInventoryItems = exports.NonInventoryItemsCursorPage = exports.JournalEntries = exports.JournalEntriesCursorPage = exports.ItemSites = exports.ItemSitesCursorPage = exports.ItemReceipts = exports.ItemReceiptsCursorPage = exports.ItemGroups = exports.ItemGroupsCursorPage = exports.Invoices = exports.InvoicesCursorPage = exports.InventorySites = exports.InventoryItems = exports.InventoryItemsCursorPage = exports.InventoryAssemblyItems = exports.InventoryAssemblyItemsCursorPage = exports.InventoryAdjustments = exports.Estimates = exports.EstimatesCursorPage = exports.Employees = exports.EmployeesCursorPage = exports.DiscountItems = exports.DiscountItemsCursorPage = exports.DateDrivenTerms = exports.Customers = exports.CustomersCursorPage = exports.CreditMemos = exports.CreditMemosCursorPage = exports.CreditCardCredits = exports.CreditCardCreditsCursorPage = exports.CreditCardCharges = exports.CreditCardChargesCursorPage = exports.CompanyResource = exports.Classes = exports.Checks = exports.ChecksCursorPage = exports.Bills = exports.BillsCursorPage = exports.BillCreditCardPayments = exports.BillCreditCardPaymentsCursorPage = exports.BillCheckPayments = exports.BillCheckPaymentsCursorPage = exports.Accounts = exports.AccountTaxLines = void 0;
5
+ exports.Vendors = exports.VendorsCursorPage = exports.VendorCredits = exports.VendorCreditsCursorPage = exports.Transfers = exports.TransfersCursorPage = exports.Transactions = exports.TransactionsCursorPage = exports.TimeTrackingActivities = exports.TimeTrackingActivitiesCursorPage = exports.SubtotalItems = exports.SubtotalItemsCursorPage = exports.StandardTerms = exports.ServiceItems = exports.ServiceItemsCursorPage = exports.SalesTaxItems = exports.SalesTaxItemsCursorPage = exports.SalesTaxCodes = exports.SalesRepresentatives = exports.SalesReceipts = exports.SalesReceiptsCursorPage = exports.SalesOrders = exports.SalesOrdersCursorPage = exports.ReceivePayments = exports.ReceivePaymentsCursorPage = exports.Qbd = exports.PurchaseOrders = void 0;
6
6
  var account_tax_lines_1 = require("./account-tax-lines.js");
7
7
  Object.defineProperty(exports, "AccountTaxLines", { enumerable: true, get: function () { return account_tax_lines_1.AccountTaxLines; } });
8
8
  var accounts_1 = require("./accounts.js");
@@ -59,9 +59,15 @@ Object.defineProperty(exports, "InventorySites", { enumerable: true, get: functi
59
59
  var invoices_1 = require("./invoices.js");
60
60
  Object.defineProperty(exports, "InvoicesCursorPage", { enumerable: true, get: function () { return invoices_1.InvoicesCursorPage; } });
61
61
  Object.defineProperty(exports, "Invoices", { enumerable: true, get: function () { return invoices_1.Invoices; } });
62
+ var item_groups_1 = require("./item-groups.js");
63
+ Object.defineProperty(exports, "ItemGroupsCursorPage", { enumerable: true, get: function () { return item_groups_1.ItemGroupsCursorPage; } });
64
+ Object.defineProperty(exports, "ItemGroups", { enumerable: true, get: function () { return item_groups_1.ItemGroups; } });
62
65
  var item_receipts_1 = require("./item-receipts.js");
63
66
  Object.defineProperty(exports, "ItemReceiptsCursorPage", { enumerable: true, get: function () { return item_receipts_1.ItemReceiptsCursorPage; } });
64
67
  Object.defineProperty(exports, "ItemReceipts", { enumerable: true, get: function () { return item_receipts_1.ItemReceipts; } });
68
+ var item_sites_1 = require("./item-sites.js");
69
+ Object.defineProperty(exports, "ItemSitesCursorPage", { enumerable: true, get: function () { return item_sites_1.ItemSitesCursorPage; } });
70
+ Object.defineProperty(exports, "ItemSites", { enumerable: true, get: function () { return item_sites_1.ItemSites; } });
65
71
  var journal_entries_1 = require("./journal-entries.js");
66
72
  Object.defineProperty(exports, "JournalEntriesCursorPage", { enumerable: true, get: function () { return journal_entries_1.JournalEntriesCursorPage; } });
67
73
  Object.defineProperty(exports, "JournalEntries", { enumerable: true, get: function () { return journal_entries_1.JournalEntries; } });
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/resources/qbd/index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/resources/qbd/index.ts"],"names":[],"mappings":"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"}
@@ -20,7 +20,9 @@ export { InventoryAssemblyItemsCursorPage, InventoryAssemblyItems, } from "./inv
20
20
  export { InventoryItemsCursorPage, InventoryItems, } from "./inventory-items.mjs";
21
21
  export { InventorySites, } from "./inventory-sites.mjs";
22
22
  export { InvoicesCursorPage, Invoices, } from "./invoices.mjs";
23
+ export { ItemGroupsCursorPage, ItemGroups, } from "./item-groups.mjs";
23
24
  export { ItemReceiptsCursorPage, ItemReceipts, } from "./item-receipts.mjs";
25
+ export { ItemSitesCursorPage, ItemSites, } from "./item-sites.mjs";
24
26
  export { JournalEntriesCursorPage, JournalEntries, } from "./journal-entries.mjs";
25
27
  export { NonInventoryItemsCursorPage, NonInventoryItems, } from "./non-inventory-items.mjs";
26
28
  export { PayrollWageItemsCursorPage, PayrollWageItems, } from "./payroll-wage-items.mjs";
@@ -1 +1 @@
1
- {"version":3,"file":"index.mjs","sourceRoot":"","sources":["../../src/resources/qbd/index.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAE/E,EACL,eAAe,GAIhB;OACM,EACL,QAAQ,GAOT;OACM,EACL,2BAA2B,EAC3B,iBAAiB,GAQlB;OACM,EACL,gCAAgC,EAChC,sBAAsB,GAOvB;OACM,EACL,eAAe,EACf,KAAK,GAQN;OACM,EACL,gBAAgB,EAChB,MAAM,GAQP;OACM,EACL,OAAO,GAOR;OACM,EAAE,eAAe,EAA4C;OAC7D,EACL,2BAA2B,EAC3B,iBAAiB,GAQlB;OACM,EACL,2BAA2B,EAC3B,iBAAiB,GAQlB;OACM,EACL,qBAAqB,EACrB,WAAW,GAQZ;OACM,EACL,mBAAmB,EACnB,SAAS,GAMV;OACM,EACL,eAAe,GAMhB;OACM,EACL,uBAAuB,EACvB,aAAa,GAMd;OACM,EACL,mBAAmB,EACnB,SAAS,GAMV;OACM,EACL,mBAAmB,EACnB,SAAS,GAQV;OACM,EACL,oBAAoB,GASrB;OACM,EACL,gCAAgC,EAChC,sBAAsB,GAMvB;OACM,EACL,wBAAwB,EACxB,cAAc,GAMf;OACM,EACL,cAAc,GAOf;OACM,EACL,kBAAkB,EAClB,QAAQ,GAQT;OACM,EACL,sBAAsB,EACtB,YAAY,GAQb;OACM,EACL,wBAAwB,EACxB,cAAc,GAQf;OACM,EACL,2BAA2B,EAC3B,iBAAiB,GAMlB;OACM,EACL,0BAA0B,EAC1B,gBAAgB,GAKjB;OACM,EAAE,WAAW,EAAiC;OAC9C,EACL,WAAW,GAOZ;OACM,EACL,wBAAwB,EACxB,cAAc,GAQf;OACM,EAAE,GAAG,EAA0D;OAC/D,EACL,yBAAyB,EACzB,eAAe,GAQhB;OACM,EACL,qBAAqB,EACrB,WAAW,GAQZ;OACM,EACL,uBAAuB,EACvB,aAAa,GAQd;OACM,EACL,oBAAoB,GAOrB;OACM,EACL,aAAa,GAOd;OACM,EACL,uBAAuB,EACvB,aAAa,GAMd;OACM,EACL,sBAAsB,EACtB,YAAY,GAMb;OACM,EACL,aAAa,GAMd;OACM,EACL,uBAAuB,EACvB,aAAa,GAMd;OACM,EACL,gCAAgC,EAChC,sBAAsB,GAQvB;OACM,EACL,sBAAsB,EACtB,YAAY,GAIb;OACM,EACL,mBAAmB,EACnB,SAAS,GAMV;OACM,EACL,uBAAuB,EACvB,aAAa,GAQd;OACM,EACL,iBAAiB,EACjB,OAAO,GAMR"}
1
+ {"version":3,"file":"index.mjs","sourceRoot":"","sources":["../../src/resources/qbd/index.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAE/E,EACL,eAAe,GAIhB;OACM,EACL,QAAQ,GAOT;OACM,EACL,2BAA2B,EAC3B,iBAAiB,GAQlB;OACM,EACL,gCAAgC,EAChC,sBAAsB,GAOvB;OACM,EACL,eAAe,EACf,KAAK,GAQN;OACM,EACL,gBAAgB,EAChB,MAAM,GAQP;OACM,EACL,OAAO,GAOR;OACM,EAAE,eAAe,EAA4C;OAC7D,EACL,2BAA2B,EAC3B,iBAAiB,GAQlB;OACM,EACL,2BAA2B,EAC3B,iBAAiB,GAQlB;OACM,EACL,qBAAqB,EACrB,WAAW,GAQZ;OACM,EACL,mBAAmB,EACnB,SAAS,GAMV;OACM,EACL,eAAe,GAMhB;OACM,EACL,uBAAuB,EACvB,aAAa,GAMd;OACM,EACL,mBAAmB,EACnB,SAAS,GAMV;OACM,EACL,mBAAmB,EACnB,SAAS,GAQV;OACM,EACL,oBAAoB,GASrB;OACM,EACL,gCAAgC,EAChC,sBAAsB,GAMvB;OACM,EACL,wBAAwB,EACxB,cAAc,GAMf;OACM,EACL,cAAc,GAOf;OACM,EACL,kBAAkB,EAClB,QAAQ,GAQT;OACM,EACL,oBAAoB,EACpB,UAAU,GAMX;OACM,EACL,sBAAsB,EACtB,YAAY,GAQb;OACM,EACL,mBAAmB,EACnB,SAAS,GAIV;OACM,EACL,wBAAwB,EACxB,cAAc,GAQf;OACM,EACL,2BAA2B,EAC3B,iBAAiB,GAMlB;OACM,EACL,0BAA0B,EAC1B,gBAAgB,GAKjB;OACM,EAAE,WAAW,EAAiC;OAC9C,EACL,WAAW,GAOZ;OACM,EACL,wBAAwB,EACxB,cAAc,GAQf;OACM,EAAE,GAAG,EAA0D;OAC/D,EACL,yBAAyB,EACzB,eAAe,GAQhB;OACM,EACL,qBAAqB,EACrB,WAAW,GAQZ;OACM,EACL,uBAAuB,EACvB,aAAa,GAQd;OACM,EACL,oBAAoB,GAOrB;OACM,EACL,aAAa,GAOd;OACM,EACL,uBAAuB,EACvB,aAAa,GAMd;OACM,EACL,sBAAsB,EACtB,YAAY,GAMb;OACM,EACL,aAAa,GAMd;OACM,EACL,uBAAuB,EACvB,aAAa,GAMd;OACM,EACL,gCAAgC,EAChC,sBAAsB,GAQvB;OACM,EACL,sBAAsB,EACtB,YAAY,GAIb;OACM,EACL,mBAAmB,EACnB,SAAS,GAMV;OACM,EACL,uBAAuB,EACvB,aAAa,GAQd;OACM,EACL,iBAAiB,EACjB,OAAO,GAMR"}