yellowgrid-api-ts 3.2.54-dev.0 → 3.2.55-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 +6 -0
- package/dist/api.d.ts +6 -0
- package/docs/OrderItemDTO.md +2 -0
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -4754,6 +4754,12 @@ export interface OrderItemDTO {
|
|
|
4754
4754
|
* @memberof OrderItemDTO
|
|
4755
4755
|
*/
|
|
4756
4756
|
'suppliers'?: Array<SupplierModel>;
|
|
4757
|
+
/**
|
|
4758
|
+
* Allocated
|
|
4759
|
+
* @type {number}
|
|
4760
|
+
* @memberof OrderItemDTO
|
|
4761
|
+
*/
|
|
4762
|
+
'allocated'?: number | null;
|
|
4757
4763
|
}
|
|
4758
4764
|
/**
|
|
4759
4765
|
* EdTechPro Order Request
|
package/dist/api.d.ts
CHANGED
|
@@ -4719,6 +4719,12 @@ export interface OrderItemDTO {
|
|
|
4719
4719
|
* @memberof OrderItemDTO
|
|
4720
4720
|
*/
|
|
4721
4721
|
'suppliers'?: Array<SupplierModel>;
|
|
4722
|
+
/**
|
|
4723
|
+
* Allocated
|
|
4724
|
+
* @type {number}
|
|
4725
|
+
* @memberof OrderItemDTO
|
|
4726
|
+
*/
|
|
4727
|
+
'allocated'?: number | null;
|
|
4722
4728
|
}
|
|
4723
4729
|
/**
|
|
4724
4730
|
* EdTechPro Order Request
|
package/docs/OrderItemDTO.md
CHANGED
|
@@ -22,6 +22,7 @@ Name | Type | Description | Notes
|
|
|
22
22
|
**readonly** | **boolean** | Readonly | [optional] [default to undefined]
|
|
23
23
|
**tcxSalesCode** | **string** | 3CX Sales Code | [optional] [default to undefined]
|
|
24
24
|
**suppliers** | [**Array<SupplierModel>**](SupplierModel.md) | Suppliers | [optional] [default to undefined]
|
|
25
|
+
**allocated** | **number** | Allocated | [optional] [default to undefined]
|
|
25
26
|
|
|
26
27
|
## Example
|
|
27
28
|
|
|
@@ -45,6 +46,7 @@ const instance: OrderItemDTO = {
|
|
|
45
46
|
readonly,
|
|
46
47
|
tcxSalesCode,
|
|
47
48
|
suppliers,
|
|
49
|
+
allocated,
|
|
48
50
|
};
|
|
49
51
|
```
|
|
50
52
|
|