@erp-galoper/types 1.0.1386 → 1.0.1388

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 +3 -1
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -25693,11 +25693,13 @@ export interface components {
25693
25693
  /**
25694
25694
  * Candelete
25695
25695
  * @description Indicates if the item package can be deleted
25696
+ * @default false
25696
25697
  */
25697
25698
  canDelete: boolean;
25698
25699
  /**
25699
25700
  * Canupdatequantityoruom
25700
25701
  * @description Indicates if the quantity or UOM can be updated
25702
+ * @default false
25701
25703
  */
25702
25704
  canUpdateQuantityOrUom: boolean;
25703
25705
  /**
@@ -25716,7 +25718,7 @@ export interface components {
25716
25718
  */
25717
25719
  supplierPurchasedPrices: components["schemas"]["SupplierPurchasedPricesSchema"][];
25718
25720
  /** Lastpurchasedprice */
25719
- lastPurchasedPrice: number | string | null;
25721
+ lastPurchasedPrice?: number | string | null;
25720
25722
  };
25721
25723
  /** ItemSchema */
25722
25724
  ItemSchema: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.1386",
3
+ "version": "1.0.1388",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],