@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.
@@ -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,3 @@
1
+ /// <reference types="react" />
2
+ declare const BenefitWrapper: ({ content, metadata, setGenericErrorModalDetails, loginSuccess, basicConfigUrl, setLoginSuccess }: any) => JSX.Element;
3
+ export default BenefitWrapper;
@@ -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';
@@ -6,6 +6,7 @@ export interface ProductTableSchema {
6
6
  lineCheckCallBack?: () => void;
7
7
  changeAddressClicked?: any;
8
8
  tabCheckCallBack?: (tabId: string) => void;
9
+ ratePlansToRemove?: string[];
9
10
  }
10
11
  export interface ProductRequestBase {
11
12
  id: string;