@sunrise-upc/mobile-prod-card 1.2.5-beta.10 → 1.2.5-beta.12
Sign up to get free protection for your applications and to get access to all the features.
- 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 +3 -0
- package/dist/cjs/index.js +2 -2
- 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 +3 -0
- package/dist/esm/index.js +2 -2
- package/dist/index.d.ts +2 -1
- package/package.json +1 -1
@@ -1,3 +1,3 @@
|
|
1
1
|
/// <reference types="react" />
|
2
|
-
declare const BenefitsValidate: ({ content, authData, loginContent, metadata, afterLoginContent, createCartCall,
|
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 }: any) => JSX.Element;
|
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 }: any) => JSX.Element;
|
2
|
+
declare const BenefitsValidateWrapper: ({ content, loginContent, metadata, createCartCall, fetchOfferData, basicConfigUrl, selectedExistingOption, setShowBenefit, setLoginSuccess }: any) => JSX.Element;
|
3
3
|
export default BenefitsValidateWrapper;
|
@@ -9,6 +9,7 @@ export interface StaticLinetableSchema {
|
|
9
9
|
selectedOption?: string;
|
10
10
|
basicConfigUrl?: string;
|
11
11
|
selectedExistingOption?: any;
|
12
|
+
setLoginSuccess?: any;
|
12
13
|
}
|
13
14
|
export interface StaticProductSchema {
|
14
15
|
content: any;
|
@@ -28,6 +29,7 @@ export interface StaticProductSchema {
|
|
28
29
|
fetchOfferData?: any;
|
29
30
|
basicConfigUrl?: string;
|
30
31
|
selectedExistingOption?: any;
|
32
|
+
setLoginSuccess?: any;
|
31
33
|
}
|
32
34
|
export interface DynamicPriceSchema {
|
33
35
|
priceCollection: any;
|
@@ -49,6 +51,7 @@ export interface StaticProductContainerSchema {
|
|
49
51
|
selectedOption?: string;
|
50
52
|
basicConfigUrl?: string;
|
51
53
|
selectedExistingOption?: any;
|
54
|
+
setLoginSuccess?: any;
|
52
55
|
}
|
53
56
|
export interface StaticProductDetailsSchema {
|
54
57
|
content: any;
|