yellowgrid-api-ts 3.2.226-dev.0 → 3.2.227-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 +13 -0
- package/dist/api.d.ts +13 -0
- package/docs/AdminRmaItemDTO.md +8 -0
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -886,6 +886,19 @@ export interface AdminRmaItemDTO {
|
|
|
886
886
|
* RMA Item Replacement SKU
|
|
887
887
|
*/
|
|
888
888
|
'replacementSku'?: string | null;
|
|
889
|
+
'productSerialInfo'?: ProductSerialInfoDTO;
|
|
890
|
+
/**
|
|
891
|
+
* Is End of Life
|
|
892
|
+
*/
|
|
893
|
+
'endOfLife'?: boolean;
|
|
894
|
+
/**
|
|
895
|
+
* MAC address found on associated order
|
|
896
|
+
*/
|
|
897
|
+
'macFoundOnOrder'?: boolean;
|
|
898
|
+
/**
|
|
899
|
+
* Serial Number found on associated order
|
|
900
|
+
*/
|
|
901
|
+
'serialFoundOnOrder'?: boolean;
|
|
889
902
|
}
|
|
890
903
|
|
|
891
904
|
export const AdminRmaItemDTOStatusEnum = {
|
package/dist/api.d.ts
CHANGED
|
@@ -866,6 +866,19 @@ export interface AdminRmaItemDTO {
|
|
|
866
866
|
* RMA Item Replacement SKU
|
|
867
867
|
*/
|
|
868
868
|
'replacementSku'?: string | null;
|
|
869
|
+
'productSerialInfo'?: ProductSerialInfoDTO;
|
|
870
|
+
/**
|
|
871
|
+
* Is End of Life
|
|
872
|
+
*/
|
|
873
|
+
'endOfLife'?: boolean;
|
|
874
|
+
/**
|
|
875
|
+
* MAC address found on associated order
|
|
876
|
+
*/
|
|
877
|
+
'macFoundOnOrder'?: boolean;
|
|
878
|
+
/**
|
|
879
|
+
* Serial Number found on associated order
|
|
880
|
+
*/
|
|
881
|
+
'serialFoundOnOrder'?: boolean;
|
|
869
882
|
}
|
|
870
883
|
export declare const AdminRmaItemDTOStatusEnum: {
|
|
871
884
|
readonly NUMBER_1: 1;
|
package/docs/AdminRmaItemDTO.md
CHANGED
|
@@ -17,6 +17,10 @@ Name | Type | Description | Notes
|
|
|
17
17
|
**note** | **string** | RMA Item Note | [optional] [default to undefined]
|
|
18
18
|
**resolution** | **number** | RMA Item Resolution | [optional] [default to undefined]
|
|
19
19
|
**replacementSku** | **string** | RMA Item Replacement SKU | [optional] [default to undefined]
|
|
20
|
+
**productSerialInfo** | [**ProductSerialInfoDTO**](ProductSerialInfoDTO.md) | | [optional] [default to undefined]
|
|
21
|
+
**endOfLife** | **boolean** | Is End of Life | [optional] [default to undefined]
|
|
22
|
+
**macFoundOnOrder** | **boolean** | MAC address found on associated order | [optional] [default to undefined]
|
|
23
|
+
**serialFoundOnOrder** | **boolean** | Serial Number found on associated order | [optional] [default to undefined]
|
|
20
24
|
|
|
21
25
|
## Example
|
|
22
26
|
|
|
@@ -35,6 +39,10 @@ const instance: AdminRmaItemDTO = {
|
|
|
35
39
|
note,
|
|
36
40
|
resolution,
|
|
37
41
|
replacementSku,
|
|
42
|
+
productSerialInfo,
|
|
43
|
+
endOfLife,
|
|
44
|
+
macFoundOnOrder,
|
|
45
|
+
serialFoundOnOrder,
|
|
38
46
|
};
|
|
39
47
|
```
|
|
40
48
|
|