shopoflex-types 1.0.227 → 1.0.228
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/dist/common.d.ts +5 -0
- package/dist/productCart.d.ts +1 -0
- package/package.json +1 -1
package/dist/common.d.ts
CHANGED
|
@@ -139,6 +139,10 @@ export interface AdditionalPrice {
|
|
|
139
139
|
name: string;
|
|
140
140
|
price: number;
|
|
141
141
|
}
|
|
142
|
+
export interface BranchPricing {
|
|
143
|
+
price?: number;
|
|
144
|
+
additionalPrices?: AdditionalPrice[];
|
|
145
|
+
}
|
|
142
146
|
export interface PriceModel {
|
|
143
147
|
price: number;
|
|
144
148
|
discountedPrice?: number;
|
|
@@ -149,6 +153,7 @@ export interface PriceModel {
|
|
|
149
153
|
unit: UnitTypeValue;
|
|
150
154
|
packaging?: PackagingOption[];
|
|
151
155
|
additionalPrices?: AdditionalPrice[];
|
|
156
|
+
priceByBranch?: Record<string, BranchPricing>;
|
|
152
157
|
}
|
|
153
158
|
export interface Dimensions {
|
|
154
159
|
active: boolean;
|
package/dist/productCart.d.ts
CHANGED