@erp-galoper/types 1.0.921 → 1.0.922

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 +20 -4
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -37338,13 +37338,21 @@ export interface components {
37338
37338
  OfferedItemCreateSchema: {
37339
37339
  /**
37340
37340
  * Item
37341
- * @description item id, to get items : /api/v1/inventory/items/?active=true&role!=template&allowSales=true
37341
+ * @description
37342
+ * - item id
37343
+ * - to get items : /api/v1/inventory/items/?active=true&role!=template&allowSales=true
37344
+ * - item should not be duplicated with quantity in the list of offered items in the same offer and promotion
37345
+ *
37342
37346
  */
37343
37347
  item?: number;
37344
37348
  /**
37345
37349
  * Itempackage
37346
37350
  * Format: uuid
37347
- * @description item package id, to get item package : /api/v1/inventory/items/?active=true&role!=template&allowSales=true, field is item_packages
37351
+ * @description
37352
+ * - item package id
37353
+ * - to get item package : /api/v1/inventory/items/?active=true&role!=template&allowSales=true, field is item_packages"
37354
+ * - item package should not be duplicated with quantity in the list of offered items in the same offer and promotion
37355
+ *
37348
37356
  */
37349
37357
  itemPackage?: string;
37350
37358
  /** Discount */
@@ -37643,13 +37651,21 @@ export interface components {
37643
37651
  OfferedItemUpdateSchema: {
37644
37652
  /**
37645
37653
  * Item
37646
- * @description item id, to get items : /api/v1/inventory/items/?active=true&role!=template&allowSales=true
37654
+ * @description
37655
+ * - item id
37656
+ * - to get items : /api/v1/inventory/items/?active=true&role!=template&allowSales=true
37657
+ * - item should not be duplicated with quantity in the list of offered items in the same offer and promotion
37658
+ *
37647
37659
  */
37648
37660
  item?: number;
37649
37661
  /**
37650
37662
  * Itempackage
37651
37663
  * Format: uuid
37652
- * @description item package id, to get item package : /api/v1/inventory/items/?active=true&role!=template&allowSales=true, field is item_packages
37664
+ * @description
37665
+ * - item package id
37666
+ * - to get item package : /api/v1/inventory/items/?active=true&role!=template&allowSales=true, field is item_packages"
37667
+ * - item package should not be duplicated with quantity in the list of offered items in the same offer and promotion
37668
+ *
37653
37669
  */
37654
37670
  itemPackage?: string;
37655
37671
  /** Discount */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.921",
3
+ "version": "1.0.922",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],