@sunrise-upc/mobile-prod-card 4.2.0 → 4.3.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.
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ declare const AdvanceSearch: ({ content, setAdvData, advData, setLcData, lcData }: any) => JSX.Element;
3
+ export default AdvanceSearch;
@@ -0,0 +1,3 @@
1
+ import { FC } from 'react';
2
+ declare const CheckCoverageComponent: FC<any>;
3
+ export default CheckCoverageComponent;
@@ -0,0 +1,10 @@
1
+ export declare const fetchAddress: (address: any, controllerRef: any, setAddErr: any) => Promise<any[] | undefined>;
2
+ export declare const getLineCheckService: (selectedAdd: any, setLcData: any, lcData: any) => unknown;
3
+ export declare const fetchLineCheck: (payload: any, setLcData: any, lcData: any) => Promise<{
4
+ corelationaId: any;
5
+ lineCheckResponse: any;
6
+ eligibleBundle: any;
7
+ maxUploadDownloadSpeed: any;
8
+ configEligibleBundle: string[];
9
+ plannedUpgrade: any;
10
+ }>;
@@ -0,0 +1,3 @@
1
+ import { FC } from 'react';
2
+ declare const CheckCoverage: FC<any>;
3
+ export default CheckCoverage;
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ declare const NewLCInput: ({ content, setLcData, lcData, advData, setAdvData }: any) => JSX.Element;
3
+ export default NewLCInput;
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ declare const SuccessCoverage: ({ content, data, lcData, setLcData, advData, desktopOverlay, mobileOverlay, handleModal, setAdvData }: any) => JSX.Element;
3
+ export default SuccessCoverage;
@@ -0,0 +1 @@
1
+ export { default } from './CovercheckWrapper';
@@ -11,6 +11,9 @@ export interface StaticLinetableSchema {
11
11
  basicConfigUrl?: string;
12
12
  selectedExistingOption?: any;
13
13
  setLoginSuccess?: any;
14
+ deviceFlow?: any;
15
+ deviceFlowCallBack?: any;
16
+ ubRatePlanObj?: any;
14
17
  }
15
18
  export interface StaticProductSchema {
16
19
  content: any;
@@ -37,11 +40,16 @@ export interface StaticProductSchema {
37
40
  setToggleState?: any;
38
41
  toggleState?: any;
39
42
  noTabs?: boolean;
43
+ deviceFlow?: any;
44
+ deviceFlowCallBack?: any;
45
+ selectedRP?: any;
46
+ continueCart?: any;
40
47
  }
41
48
  export interface DynamicPriceSchema {
42
49
  priceCollection: any;
43
50
  constants: any;
44
51
  promoText?: string;
52
+ deviceFlow?: any;
45
53
  }
46
54
  export interface StaticProductContainerSchema {
47
55
  content: any;
@@ -63,6 +71,9 @@ export interface StaticProductContainerSchema {
63
71
  setToggleState?: any;
64
72
  toggleState?: any;
65
73
  noTabs?: boolean;
74
+ deviceFlow?: any;
75
+ deviceFlowCallBack?: any;
76
+ ubRatePlanObj?: any;
66
77
  }
67
78
  export interface StaticProductDetailsSchema {
68
79
  content: any;
@@ -89,4 +100,6 @@ export interface CheckoutButtonSchema {
89
100
  showPrice: any;
90
101
  isAvailable?: boolean;
91
102
  address?: any;
103
+ deviceFlow?: any;
104
+ deviceFlowCallBack?: any;
92
105
  }
@@ -12,3 +12,4 @@ export { default as BenefitWrapper } from './BenefitWrapper';
12
12
  export { default as Breadcrumb } from './Breadcrumb';
13
13
  export { default as PretoPostSubsPopup } from './PretoPost';
14
14
  export { default as HeroLogin } from './HeroLogin';
15
+ export { default as CheckCoverage } from './NewLineCheck';