@erp-galoper/types 1.0.982 → 1.0.984

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 +53 -4
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -21014,8 +21014,8 @@ export interface components {
21014
21014
  /** Allownegativestock */
21015
21015
  allowNegativeStock: boolean;
21016
21016
  };
21017
- /** ItemPackageSchema */
21018
- ItemPackageSchema: {
21017
+ /** ItemPackageWithCanDeleteAndCanUpdateQuantityOrUomSchema */
21018
+ ItemPackageWithCanDeleteAndCanUpdateQuantityOrUomSchema: {
21019
21019
  /**
21020
21020
  * Id
21021
21021
  * Format: uuid
@@ -21052,6 +21052,16 @@ export interface components {
21052
21052
  defaultSellingPriceCurrency: components["schemas"]["CurrencySummaryInfo"] | null;
21053
21053
  /** @description ID of the unit of measure for the packed item */
21054
21054
  unitOfMeasure: components["schemas"]["UnitOfMeasureSummaryInfo"];
21055
+ /**
21056
+ * Candelete
21057
+ * @description Indicates if the item package can be deleted
21058
+ */
21059
+ canDelete: boolean;
21060
+ /**
21061
+ * Canupdatequantityoruom
21062
+ * @description Indicates if the quantity or UOM can be updated
21063
+ */
21064
+ canUpdateQuantityOrUom: boolean;
21055
21065
  };
21056
21066
  /** ItemSchema */
21057
21067
  ItemSchema: {
@@ -21221,7 +21231,7 @@ export interface components {
21221
21231
  * Itempackages
21222
21232
  * @default []
21223
21233
  */
21224
- itemPackages: components["schemas"]["ItemPackageSchema"][];
21234
+ itemPackages: components["schemas"]["ItemPackageWithCanDeleteAndCanUpdateQuantityOrUomSchema"][];
21225
21235
  /** Quantity */
21226
21236
  quantity?: components["schemas"]["ItemsWarehouseQuantitySchema"][] | null;
21227
21237
  costStrategy: components["schemas"]["GetCostStrategy"] | null;
@@ -21408,7 +21418,7 @@ export interface components {
21408
21418
  * Itempackages
21409
21419
  * @default []
21410
21420
  */
21411
- itemPackages: components["schemas"]["ItemPackageSchema"][];
21421
+ itemPackages: components["schemas"]["ItemPackageWithCanDeleteAndCanUpdateQuantityOrUomSchema"][];
21412
21422
  /** Quantity */
21413
21423
  quantity?: components["schemas"]["ItemsWarehouseQuantitySchema"][] | null;
21414
21424
  costStrategy: components["schemas"]["GetCostStrategy"] | null;
@@ -39121,6 +39131,45 @@ export interface components {
39121
39131
  */
39122
39132
  commissionLevels?: components["schemas"]["UpdateCommissionLevels"][];
39123
39133
  };
39134
+ /** ItemPackageSchema */
39135
+ ItemPackageSchema: {
39136
+ /**
39137
+ * Id
39138
+ * Format: uuid
39139
+ * @description ID of the package item
39140
+ */
39141
+ id: string;
39142
+ /** @description the package it belongs to */
39143
+ package: components["schemas"]["PackageSummarySchema"];
39144
+ /** @description Type of barcode used for the package */
39145
+ barcodeType: components["schemas"]["BarcodeTypeValues"] | null;
39146
+ /**
39147
+ * Barcode
39148
+ * @description Unique barcode for the package
39149
+ */
39150
+ barcode: string | null;
39151
+ /**
39152
+ * Quantity
39153
+ * @description Quantity of the packed item
39154
+ */
39155
+ quantity: number;
39156
+ /**
39157
+ * Purchaseprice
39158
+ * @description purchased price of the packed item
39159
+ */
39160
+ purchasePrice: number | null;
39161
+ /** @description Price of the packed item */
39162
+ defaultPurchasePriceCurrency: components["schemas"]["CurrencySummaryInfo"] | null;
39163
+ /**
39164
+ * Defaultsellingprice
39165
+ * @description Price of the packed item
39166
+ */
39167
+ defaultSellingPrice: number | null;
39168
+ /** @description Price of the packed item */
39169
+ defaultSellingPriceCurrency: components["schemas"]["CurrencySummaryInfo"] | null;
39170
+ /** @description ID of the unit of measure for the packed item */
39171
+ unitOfMeasure: components["schemas"]["UnitOfMeasureSummaryInfo"];
39172
+ };
39124
39173
  /**
39125
39174
  * PRICE_LIST_TYPE_CHOICES
39126
39175
  * @enum {string}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.982",
3
+ "version": "1.0.984",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],