@erp-galoper/types 1.0.1007 → 1.0.1009

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 +9 -9
  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"];
@@ -26266,7 +26266,7 @@ export interface components {
26266
26266
  /**
26267
26267
  * Fromwarehouse
26268
26268
  * @description
26269
- * - Select from user's assigned warehouses
26269
+ * - Select from user's assigned warehouses from /api/v1/auth/users/me/
26270
26270
  * - Must be different from destination warehouse
26271
26271
  * - Must have items available for transfer
26272
26272
  *
@@ -26275,7 +26275,7 @@ export interface components {
26275
26275
  /**
26276
26276
  * Towarehouse
26277
26277
  * @description
26278
- * - Select from any warehouse
26278
+ * - Select from any warehouse /api/v1/inventory/warehouses/
26279
26279
  * - Must be different from source warehouse
26280
26280
  *
26281
26281
  */
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.1009",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],