@erp-galoper/types 1.0.1845 → 1.0.1847
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 +13 -1
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -760,7 +760,9 @@ export interface paths {
|
|
|
760
760
|
* "defaultSellingPrice": 15,
|
|
761
761
|
* "transactionalGroup": 2,
|
|
762
762
|
* "allowSales": true,
|
|
763
|
-
* "hasExpiryDate": true
|
|
763
|
+
* "hasExpiryDate": true,
|
|
764
|
+
* "onlinePrice": 15,
|
|
765
|
+
* "onlinePriceBeforeDiscount": 20
|
|
764
766
|
* }
|
|
765
767
|
* ]
|
|
766
768
|
*/
|
|
@@ -28165,6 +28167,16 @@ export interface components {
|
|
|
28165
28167
|
minimumQuantityOrder?: number | null;
|
|
28166
28168
|
/** Isexchangeable */
|
|
28167
28169
|
isExchangeable?: boolean | null;
|
|
28170
|
+
/**
|
|
28171
|
+
* Onlineprice
|
|
28172
|
+
* @description Price for online store sales; may be set regardless of per-store listing.
|
|
28173
|
+
*/
|
|
28174
|
+
onlinePrice?: number | null;
|
|
28175
|
+
/**
|
|
28176
|
+
* Onlinepricebeforediscount
|
|
28177
|
+
* @description Original price before discount for online store; may be set regardless of per-store listing.
|
|
28178
|
+
*/
|
|
28179
|
+
onlinePriceBeforeDiscount?: number | null;
|
|
28168
28180
|
/** Hasexpirydate */
|
|
28169
28181
|
hasExpiryDate?: boolean | null;
|
|
28170
28182
|
/** Returnableitem */
|