@erp-galoper/types 1.0.814 → 1.0.816

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 +13 -0
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -39004,6 +39004,7 @@ export interface components {
39004
39004
  item: components["schemas"]["ItemMinimalSchema"];
39005
39005
  /** @description incase itemPackage is selected, price will be applied to the itemPackage */
39006
39006
  itemPackage: components["schemas"]["ItemPackageSchema"] | null;
39007
+ unitOfMeasure: components["schemas"]["UnitOfMeasureSummaryInfo"];
39007
39008
  /**
39008
39009
  * Cost
39009
39010
  * @description This field is a number
@@ -39157,6 +39158,15 @@ export interface components {
39157
39158
  * @description ID of the item package to which the pricing is applied. Required when the item has packages.
39158
39159
  */
39159
39160
  itemPackage?: string;
39161
+ /**
39162
+ * Unitofmeasure
39163
+ * @description
39164
+ * ID of the unit of measure for the item.
39165
+ * - incase of retail price list type unit of measure should the default_sale_unit_of_measure of the item
39166
+ * - If itemPackage this field is required and should match the unit of measure of the item package.
39167
+ *
39168
+ */
39169
+ unitOfMeasure: number;
39160
39170
  /**
39161
39171
  * Companyrate
39162
39172
  * @description
@@ -76194,6 +76204,7 @@ export interface operations {
76194
76204
  parameters: {
76195
76205
  query: {
76196
76206
  item: number;
76207
+ unit_of_measure: number;
76197
76208
  currency: number;
76198
76209
  item_package?: string;
76199
76210
  usd_rate?: number;
@@ -76249,6 +76260,7 @@ export interface operations {
76249
76260
  usd_rate: number;
76250
76261
  company_rate: number;
76251
76262
  customer: number;
76263
+ unit_of_measure_id: number;
76252
76264
  price_list_id?: string;
76253
76265
  item_package_id?: string;
76254
76266
  };
@@ -76286,6 +76298,7 @@ export interface operations {
76286
76298
  usd_rate: number;
76287
76299
  company_rate: number;
76288
76300
  customer_id: number;
76301
+ unit_of_measure_id: number;
76289
76302
  price_list_id?: string;
76290
76303
  item_package_id?: string;
76291
76304
  /** @description Subtotal of the item after discount */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.814",
3
+ "version": "1.0.816",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],