@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.
- package/openapi.ts +20 -4
- 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
|
|
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
|
|
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
|
|
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
|
|
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 */
|