@sunrise-upc/mobile-prod-card 1.2.5-beta.9 → 1.2.6-beta.0
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/cjs/Analytics/AnalyticsConstants.d.ts +8 -0
- package/dist/cjs/components/BenefitWrapper/BenefitValidate.d.ts +3 -0
- package/dist/cjs/components/BenefitWrapper/BenefitWrapper.d.ts +3 -0
- package/dist/cjs/components/BenefitWrapper/Benefits.d.ts +1 -0
- package/dist/cjs/components/BenefitWrapper/BenefitsValidateWrapper.d.ts +3 -0
- package/dist/cjs/components/BenefitWrapper/index.d.ts +1 -0
- package/dist/cjs/components/StaticLineTable/StaticProductDatatypes.d.ts +13 -0
- package/dist/cjs/components/index.d.ts +1 -0
- package/dist/cjs/components/lineTable/lineTable.types.d.ts +1 -0
- package/dist/cjs/index.js +2 -2
- package/dist/cjs/services/LineTableService.d.ts +1 -0
- package/dist/esm/Analytics/AnalyticsConstants.d.ts +8 -0
- package/dist/esm/components/BenefitWrapper/BenefitValidate.d.ts +3 -0
- package/dist/esm/components/BenefitWrapper/BenefitWrapper.d.ts +3 -0
- package/dist/esm/components/BenefitWrapper/Benefits.d.ts +1 -0
- package/dist/esm/components/BenefitWrapper/BenefitsValidateWrapper.d.ts +3 -0
- package/dist/esm/components/BenefitWrapper/index.d.ts +1 -0
- package/dist/esm/components/StaticLineTable/StaticProductDatatypes.d.ts +13 -0
- package/dist/esm/components/index.d.ts +1 -0
- package/dist/esm/components/lineTable/lineTable.types.d.ts +1 -0
- package/dist/esm/index.js +2 -2
- package/dist/esm/services/LineTableService.d.ts +1 -0
- package/dist/index.d.ts +8 -1
- package/package.json +1 -1
@@ -4,3 +4,4 @@ export declare const createCartV2: (productData: any, radioValue: string, defaul
|
|
4
4
|
export declare const fetchLinetableContent: (slugurl: string, params: any) => Promise<any>;
|
5
5
|
export declare const getStaticContent: (language: any, endPoints: any) => Promise<any>;
|
6
6
|
export declare const fetchOfferingDataLineTableV2: (params: any, uniqueId: any, endpoint: any, existingCustomer?: boolean, subscriptionType?: string, enableReturnPromo?: boolean) => Promise<any>;
|
7
|
+
export declare const fetchSubscriptionData: (category: any, endpoint: any) => Promise<any>;
|
@@ -30,3 +30,11 @@ export declare const ERRORMESSAGE = "Missing or Invalid Error";
|
|
30
30
|
export declare const ERRORTYPE = "error";
|
31
31
|
export declare const FIXNET = "fixnet";
|
32
32
|
export declare const AUTHCOOKIE = "sunriseAuth";
|
33
|
+
export declare const EXISTINGCUSTOMER = "existing-customer";
|
34
|
+
export declare const NEWCUSTOMER = "new-customer";
|
35
|
+
export declare const DEFAULT = "default";
|
36
|
+
export declare const SUNRISEINTERNET = "Internet";
|
37
|
+
export declare const SUNRISEMOBILE = "Mobile";
|
38
|
+
export declare const SUNRISEBOTHSUBSCRIPTION = "Mobile,Internet";
|
39
|
+
export declare const POSTPAID = "POSTPAID";
|
40
|
+
export declare const CAPSINTERNET = "INTERNET";
|
@@ -0,0 +1,3 @@
|
|
1
|
+
/// <reference types="react" />
|
2
|
+
declare const BenefitsValidate: ({ content, authData, loginContent, metadata, afterLoginContent, createCartCall, extraContent, basicConfigUrl, selectedExistingOption, setShowBenefit, setLoginSuccess }: any) => JSX.Element;
|
3
|
+
export default BenefitsValidate;
|
@@ -0,0 +1 @@
|
|
1
|
+
export declare const CheckBenefitsMatch: (userBenefitsSelectedCheckBox: any[], userSubscriptionData: any[]) => boolean;
|
@@ -0,0 +1,3 @@
|
|
1
|
+
/// <reference types="react" />
|
2
|
+
declare const BenefitsValidateWrapper: ({ content, loginContent, metadata, createCartCall, fetchOfferData, basicConfigUrl, selectedExistingOption, setShowBenefit, setLoginSuccess }: any) => JSX.Element;
|
3
|
+
export default BenefitsValidateWrapper;
|
@@ -0,0 +1 @@
|
|
1
|
+
export { default } from './BenefitWrapper';
|
@@ -6,6 +6,10 @@ export interface StaticLinetableSchema {
|
|
6
6
|
loginSuccess?: boolean;
|
7
7
|
changeAddressClicked?: any;
|
8
8
|
linecheckSuccessCallBack?: any;
|
9
|
+
selectedOption?: string;
|
10
|
+
basicConfigUrl?: string;
|
11
|
+
selectedExistingOption?: any;
|
12
|
+
setLoginSuccess?: any;
|
9
13
|
}
|
10
14
|
export interface StaticProductSchema {
|
11
15
|
content: any;
|
@@ -21,6 +25,11 @@ export interface StaticProductSchema {
|
|
21
25
|
address?: any;
|
22
26
|
linecheckSuccessCallBack?: any;
|
23
27
|
eligibleBundle?: any;
|
28
|
+
selectedOption?: string;
|
29
|
+
fetchOfferData?: any;
|
30
|
+
basicConfigUrl?: string;
|
31
|
+
selectedExistingOption?: any;
|
32
|
+
setLoginSuccess?: any;
|
24
33
|
}
|
25
34
|
export interface DynamicPriceSchema {
|
26
35
|
priceCollection: any;
|
@@ -39,6 +48,10 @@ export interface StaticProductContainerSchema {
|
|
39
48
|
address?: any;
|
40
49
|
eligibleBundle?: any;
|
41
50
|
linecheckSuccessCallBack?: any;
|
51
|
+
selectedOption?: string;
|
52
|
+
basicConfigUrl?: string;
|
53
|
+
selectedExistingOption?: any;
|
54
|
+
setLoginSuccess?: any;
|
42
55
|
}
|
43
56
|
export interface StaticProductDetailsSchema {
|
44
57
|
content: any;
|
@@ -8,3 +8,4 @@ export { default as ProductTableV3 } from './lineTable';
|
|
8
8
|
export { default as StickyProductAnchor } from './StickyProductAnchor';
|
9
9
|
export { default as StaticLineTable } from './StaticLineTable';
|
10
10
|
export { default as LinecheckModal } from './LineCheckV3';
|
11
|
+
export { default as BenefitWrapper } from './BenefitWrapper';
|