@erp-galoper/types 1.0.1007 → 1.0.1008
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/openapi.ts +7 -7
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -25334,11 +25334,8 @@ export interface components {
|
|
|
25334
25334
|
* Format: uuid
|
|
25335
25335
|
*/
|
|
25336
25336
|
id: string;
|
|
25337
|
-
/**
|
|
25338
|
-
|
|
25339
|
-
* Format: date
|
|
25340
|
-
*/
|
|
25341
|
-
expiryDate: string;
|
|
25337
|
+
/** Expirydate */
|
|
25338
|
+
expiryDate: string | null;
|
|
25342
25339
|
/** Number */
|
|
25343
25340
|
number: string;
|
|
25344
25341
|
/** Quantity */
|
|
@@ -25350,8 +25347,11 @@ export interface components {
|
|
|
25350
25347
|
BatchAllocationRequest: {
|
|
25351
25348
|
/** Item */
|
|
25352
25349
|
item: number;
|
|
25353
|
-
/**
|
|
25354
|
-
|
|
25350
|
+
/**
|
|
25351
|
+
* Itempackage
|
|
25352
|
+
* Format: uuid
|
|
25353
|
+
*/
|
|
25354
|
+
itemPackage?: string;
|
|
25355
25355
|
/** Quantity */
|
|
25356
25356
|
quantity: number;
|
|
25357
25357
|
type: components["schemas"]["ResourceType"];
|