@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.
Files changed (2) hide show
  1. package/openapi.ts +7 -7
  2. 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
- * Expirydate
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
- /** Itempackage */
25354
- itemPackage?: number;
25350
+ /**
25351
+ * Itempackage
25352
+ * Format: uuid
25353
+ */
25354
+ itemPackage?: string;
25355
25355
  /** Quantity */
25356
25356
  quantity: number;
25357
25357
  type: components["schemas"]["ResourceType"];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.1007",
3
+ "version": "1.0.1008",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],