@sunrise-upc/mobile-prod-card 6.0.5 → 6.1.0
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/cjs/components/BenefitWrapper/BenefitValidate.d.ts +1 -1
- package/dist/cjs/components/BenefitWrapper/BenefitWrapper.d.ts +1 -1
- package/dist/cjs/components/BenefitWrapper/BenefitsValidateWrapper.d.ts +1 -1
- package/dist/cjs/components/StaticLineTable/StaticProductDatatypes.d.ts +0 -3
- package/dist/cjs/components/UltimateBundleLinetable/DpLinetableContainer.d.ts +1 -1
- package/dist/cjs/components/UltimateBundleLinetable/DpProduct.d.ts +1 -1
- package/dist/cjs/components/UltimateBundleLinetable/DpTabContainer.d.ts +1 -1
- package/dist/cjs/components/UltimateBundleLinetable/checkoutRedirectionPopup/checkoutRedirectionPopup.d.ts +1 -2
- package/dist/cjs/components/lineTable/lineTable.types.d.ts +0 -2
- package/dist/cjs/index.js +3 -3
- package/dist/esm/components/BenefitWrapper/BenefitValidate.d.ts +1 -1
- package/dist/esm/components/BenefitWrapper/BenefitWrapper.d.ts +1 -1
- package/dist/esm/components/BenefitWrapper/BenefitsValidateWrapper.d.ts +1 -1
- package/dist/esm/components/StaticLineTable/StaticProductDatatypes.d.ts +0 -3
- package/dist/esm/components/UltimateBundleLinetable/DpLinetableContainer.d.ts +1 -1
- package/dist/esm/components/UltimateBundleLinetable/DpProduct.d.ts +1 -1
- package/dist/esm/components/UltimateBundleLinetable/DpTabContainer.d.ts +1 -1
- package/dist/esm/components/UltimateBundleLinetable/checkoutRedirectionPopup/checkoutRedirectionPopup.d.ts +1 -2
- package/dist/esm/components/lineTable/lineTable.types.d.ts +0 -2
- package/dist/esm/index.js +3 -3
- package/dist/index.d.ts +2 -4
- package/package.json +2 -1
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
declare const BenefitsValidate: ({ content, authData, loginContent, metadata, afterLoginContent, createCartCall, extraContent, basicConfigUrl, selectedExistingOption, setShowBenefit, setLoginSuccess
|
|
2
|
+
declare const BenefitsValidate: ({ content, authData, loginContent, metadata, afterLoginContent, createCartCall, extraContent, basicConfigUrl, selectedExistingOption, setShowBenefit, setLoginSuccess }: any) => JSX.Element;
|
|
3
3
|
export default BenefitsValidate;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
declare const BenefitWrapper: ({ content, metadata, setGenericErrorModalDetails, loginSuccess, basicConfigUrl, setLoginSuccess
|
|
2
|
+
declare const BenefitWrapper: ({ content, metadata, setGenericErrorModalDetails, loginSuccess, basicConfigUrl, setLoginSuccess }: any) => JSX.Element;
|
|
3
3
|
export default BenefitWrapper;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
declare const BenefitsValidateWrapper: ({ content, loginContent, metadata, createCartCall, fetchOfferData, basicConfigUrl, selectedExistingOption, setShowBenefit, setLoginSuccess
|
|
2
|
+
declare const BenefitsValidateWrapper: ({ content, loginContent, metadata, createCartCall, fetchOfferData, basicConfigUrl, selectedExistingOption, setShowBenefit, setLoginSuccess }: any) => JSX.Element;
|
|
3
3
|
export default BenefitsValidateWrapper;
|
|
@@ -18,7 +18,6 @@ export interface StaticLinetableSchema {
|
|
|
18
18
|
pegaIntegration?: boolean;
|
|
19
19
|
pegaCustomerInterest?: string;
|
|
20
20
|
useStoryblokOrder?: boolean;
|
|
21
|
-
isProdEnv?: boolean;
|
|
22
21
|
}
|
|
23
22
|
export interface StaticProductSchema {
|
|
24
23
|
content: any;
|
|
@@ -51,7 +50,6 @@ export interface StaticProductSchema {
|
|
|
51
50
|
continueCart?: any;
|
|
52
51
|
lineCheckOnClear?: any;
|
|
53
52
|
pegaIntegration?: boolean;
|
|
54
|
-
isProdEnv?: boolean;
|
|
55
53
|
}
|
|
56
54
|
export interface DynamicPriceSchema {
|
|
57
55
|
priceCollection: any;
|
|
@@ -91,7 +89,6 @@ export interface StaticProductContainerSchema {
|
|
|
91
89
|
useStoryblokOrder?: boolean;
|
|
92
90
|
isFetching?: boolean;
|
|
93
91
|
setIsFetching?: any;
|
|
94
|
-
isProdEnv?: boolean;
|
|
95
92
|
}
|
|
96
93
|
export interface StaticProductDetailsSchema {
|
|
97
94
|
content: any;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
declare const DpProduct: ({ productData, mainContent, tabIndex, indexKey, cardsLength, offerDataList, activeTab, deviceModelsList, deviceDetailsList, fetchDeviceDetails, metadata
|
|
2
|
+
declare const DpProduct: ({ productData, mainContent, tabIndex, indexKey, cardsLength, offerDataList, activeTab, deviceModelsList, deviceDetailsList, fetchDeviceDetails, metadata }: any) => JSX.Element;
|
|
3
3
|
export default DpProduct;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
declare const DpTabContainer: ({ tabData, tabIndex, mainContent, activeTab, metadata
|
|
2
|
+
declare const DpTabContainer: ({ tabData, tabIndex, mainContent, activeTab, metadata }: any) => JSX.Element;
|
|
3
3
|
export default DpTabContainer;
|
|
@@ -7,7 +7,6 @@ interface LoginPopupSchema {
|
|
|
7
7
|
isOpen?: any;
|
|
8
8
|
validation?: any;
|
|
9
9
|
onLoginSuccessRedirection?: any;
|
|
10
|
-
isProdEnv?: boolean;
|
|
11
10
|
}
|
|
12
|
-
declare const checkoutRedirectionPopup: ({ content, metadata, wafIdentifier, togglePopup, isOpen, validation, onLoginSuccessRedirection
|
|
11
|
+
declare const checkoutRedirectionPopup: ({ content, metadata, wafIdentifier, togglePopup, isOpen, validation, onLoginSuccessRedirection }: LoginPopupSchema) => JSX.Element;
|
|
13
12
|
export default checkoutRedirectionPopup;
|
|
@@ -7,7 +7,6 @@ export interface ProductTableSchema {
|
|
|
7
7
|
changeAddressClicked?: any;
|
|
8
8
|
tabCheckCallBack?: (tabId: string) => void;
|
|
9
9
|
ratePlansToRemove?: string[];
|
|
10
|
-
isProdEnv?: boolean;
|
|
11
10
|
}
|
|
12
11
|
export interface ProductRequestBase {
|
|
13
12
|
id: string;
|
|
@@ -32,5 +31,4 @@ export interface ProductContainerSchema extends ProductTableSchema {
|
|
|
32
31
|
sbStaticConstants: any;
|
|
33
32
|
address: any;
|
|
34
33
|
eligibleBundle: any;
|
|
35
|
-
isProdEnv?: boolean;
|
|
36
34
|
}
|