@experteam-mx/ngx-services 20.7.0-dev1.14 → 20.7.0-dev1.16
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/index.d.ts +3 -3
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1334,7 +1334,7 @@ interface PriceOverrideReason extends SymfonyModel {
|
|
|
1334
1334
|
}
|
|
1335
1335
|
interface UpsellingIndicator extends SymfonyModel {
|
|
1336
1336
|
name: string;
|
|
1337
|
-
|
|
1337
|
+
upsellingIndicatorMethod: UpsellingIndicatorMethod;
|
|
1338
1338
|
countryIds: UpsellingIndicatorCountry[];
|
|
1339
1339
|
productIds: UpsellingIndicatorProduct[];
|
|
1340
1340
|
flagName: string;
|
|
@@ -1636,12 +1636,12 @@ type UpsellingIndicatorOut = {
|
|
|
1636
1636
|
};
|
|
1637
1637
|
type UpsellingIndicatorIn = {
|
|
1638
1638
|
name: string;
|
|
1639
|
-
upsellingIndicatorMethod:
|
|
1639
|
+
upsellingIndicatorMethod: number;
|
|
1640
1640
|
flagName: string;
|
|
1641
1641
|
flagTextColor: string;
|
|
1642
1642
|
flagColor: string;
|
|
1643
1643
|
countryIds: number[];
|
|
1644
|
-
|
|
1644
|
+
productsIds: number[];
|
|
1645
1645
|
isActive: boolean;
|
|
1646
1646
|
};
|
|
1647
1647
|
type UpsellingIndicatorMethodsOut = {
|