@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.
- package/dist/cjs/components/NewLineCheck/AdvanceSearch.d.ts +3 -0
- package/dist/cjs/components/NewLineCheck/CheckCoverage.d.ts +3 -0
- package/dist/cjs/components/NewLineCheck/CoverageCheckUtils.d.ts +10 -0
- package/dist/cjs/components/NewLineCheck/CovercheckWrapper.d.ts +3 -0
- package/dist/cjs/components/NewLineCheck/NewLCInput.d.ts +3 -0
- package/dist/cjs/components/NewLineCheck/SuccessCoverage.d.ts +3 -0
- package/dist/cjs/components/NewLineCheck/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/index.js +2 -2
- package/dist/esm/components/NewLineCheck/AdvanceSearch.d.ts +3 -0
- package/dist/esm/components/NewLineCheck/CheckCoverage.d.ts +3 -0
- package/dist/esm/components/NewLineCheck/CoverageCheckUtils.d.ts +10 -0
- package/dist/esm/components/NewLineCheck/CovercheckWrapper.d.ts +3 -0
- package/dist/esm/components/NewLineCheck/NewLCInput.d.ts +3 -0
- package/dist/esm/components/NewLineCheck/SuccessCoverage.d.ts +3 -0
- package/dist/esm/components/NewLineCheck/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/index.js +2 -2
- package/dist/index.d.ts +6 -1
- package/package.json +2 -1
|
@@ -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 @@
|
|
|
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';
|