yellowgrid-api-ts 3.2.225-dev.0 → 3.2.226-dev.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/api.ts CHANGED
@@ -6733,7 +6733,14 @@ export interface RmaOrderItemDTO {
6733
6733
  * Item Name
6734
6734
  */
6735
6735
  'name'?: string;
6736
- 'serialInfo'?: ProductSerialInfoDTO;
6736
+ /**
6737
+ * Item Sku
6738
+ */
6739
+ 'sku'?: string;
6740
+ /**
6741
+ * Ordered Quantity
6742
+ */
6743
+ 'orderedQuantity'?: number;
6737
6744
  /**
6738
6745
  * Returned Quantity
6739
6746
  */
@@ -6742,6 +6749,7 @@ export interface RmaOrderItemDTO {
6742
6749
  * Available Return Quantity
6743
6750
  */
6744
6751
  'availableReturnQuantity'?: number;
6752
+ 'serialInfo'?: ProductSerialInfoDTO;
6745
6753
  /**
6746
6754
  * End of Life
6747
6755
  */
package/dist/api.d.ts CHANGED
@@ -6619,7 +6619,14 @@ export interface RmaOrderItemDTO {
6619
6619
  * Item Name
6620
6620
  */
6621
6621
  'name'?: string;
6622
- 'serialInfo'?: ProductSerialInfoDTO;
6622
+ /**
6623
+ * Item Sku
6624
+ */
6625
+ 'sku'?: string;
6626
+ /**
6627
+ * Ordered Quantity
6628
+ */
6629
+ 'orderedQuantity'?: number;
6623
6630
  /**
6624
6631
  * Returned Quantity
6625
6632
  */
@@ -6628,6 +6635,7 @@ export interface RmaOrderItemDTO {
6628
6635
  * Available Return Quantity
6629
6636
  */
6630
6637
  'availableReturnQuantity'?: number;
6638
+ 'serialInfo'?: ProductSerialInfoDTO;
6631
6639
  /**
6632
6640
  * End of Life
6633
6641
  */
@@ -8,9 +8,11 @@ Name | Type | Description | Notes
8
8
  ------------ | ------------- | ------------- | -------------
9
9
  **itemId** | **number** | Item ID | [optional] [default to undefined]
10
10
  **name** | **string** | Item Name | [optional] [default to undefined]
11
- **serialInfo** | [**ProductSerialInfoDTO**](ProductSerialInfoDTO.md) | | [optional] [default to undefined]
11
+ **sku** | **string** | Item Sku | [optional] [default to undefined]
12
+ **orderedQuantity** | **number** | Ordered Quantity | [optional] [default to undefined]
12
13
  **alreadyReturnedQuantity** | **number** | Returned Quantity | [optional] [default to undefined]
13
14
  **availableReturnQuantity** | **number** | Available Return Quantity | [optional] [default to undefined]
15
+ **serialInfo** | [**ProductSerialInfoDTO**](ProductSerialInfoDTO.md) | | [optional] [default to undefined]
14
16
  **endOfLife** | **boolean** | End of Life | [optional] [default to undefined]
15
17
  **unlikelyReturn** | **boolean** | Unlikely Return | [optional] [default to undefined]
16
18
 
@@ -22,9 +24,11 @@ import { RmaOrderItemDTO } from 'yellowgrid-api-ts';
22
24
  const instance: RmaOrderItemDTO = {
23
25
  itemId,
24
26
  name,
25
- serialInfo,
27
+ sku,
28
+ orderedQuantity,
26
29
  alreadyReturnedQuantity,
27
30
  availableReturnQuantity,
31
+ serialInfo,
28
32
  endOfLife,
29
33
  unlikelyReturn,
30
34
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "yellowgrid-api-ts",
3
- "version": "3.2.225-dev.0",
3
+ "version": "3.2.226-dev.0",
4
4
  "description": "OpenAPI client for yellowgrid-api-ts",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {