yellowgrid-api-ts 3.2.55-dev.0 → 3.2.57-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/BatchDTO.md +2 -0
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -1343,6 +1343,12 @@ export interface BatchDTO {
|
|
|
1343
1343
|
* @memberof BatchDTO
|
|
1344
1344
|
*/
|
|
1345
1345
|
'items'?: Array<OrderedItemModel>;
|
|
1346
|
+
/**
|
|
1347
|
+
*
|
|
1348
|
+
* @type {SupplierModel}
|
|
1349
|
+
* @memberof BatchDTO
|
|
1350
|
+
*/
|
|
1351
|
+
'supplier'?: SupplierModel;
|
|
1346
1352
|
}
|
|
1347
1353
|
/**
|
|
1348
1354
|
* BatchesEntity
|
package/dist/api.d.ts
CHANGED
|
@@ -1326,6 +1326,12 @@ export interface BatchDTO {
|
|
|
1326
1326
|
* @memberof BatchDTO
|
|
1327
1327
|
*/
|
|
1328
1328
|
'items'?: Array<OrderedItemModel>;
|
|
1329
|
+
/**
|
|
1330
|
+
*
|
|
1331
|
+
* @type {SupplierModel}
|
|
1332
|
+
* @memberof BatchDTO
|
|
1333
|
+
*/
|
|
1334
|
+
'supplier'?: SupplierModel;
|
|
1329
1335
|
}
|
|
1330
1336
|
/**
|
|
1331
1337
|
* BatchesEntity
|
package/docs/BatchDTO.md
CHANGED
|
@@ -25,6 +25,7 @@ Name | Type | Description | Notes
|
|
|
25
25
|
**mac** | **string** | mac | [optional] [default to undefined]
|
|
26
26
|
**shipments** | [**Array<ShipmentDTO>**](ShipmentDTO.md) | Shipments | [optional] [default to undefined]
|
|
27
27
|
**items** | [**Array<OrderedItemModel>**](OrderedItemModel.md) | Items | [optional] [default to undefined]
|
|
28
|
+
**supplier** | [**SupplierModel**](SupplierModel.md) | | [optional] [default to undefined]
|
|
28
29
|
|
|
29
30
|
## Example
|
|
30
31
|
|
|
@@ -51,6 +52,7 @@ const instance: BatchDTO = {
|
|
|
51
52
|
mac,
|
|
52
53
|
shipments,
|
|
53
54
|
items,
|
|
55
|
+
supplier,
|
|
54
56
|
};
|
|
55
57
|
```
|
|
56
58
|
|