@sunrise-upc/mobile-prod-card 1.2.4-beta.0 → 1.2.4-beta.1
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/cjs/components/StaticLineTable/Product.utils.d.ts +2 -1
- package/dist/cjs/components/StaticLineTable/StaticProductDatatypes.d.ts +12 -0
- package/dist/cjs/components/StaticLineTable/TVChannelModal.d.ts +3 -0
- package/dist/cjs/index.js +1 -1
- package/dist/esm/components/StaticLineTable/Product.utils.d.ts +2 -1
- package/dist/esm/components/StaticLineTable/StaticProductDatatypes.d.ts +12 -0
- package/dist/esm/components/StaticLineTable/TVChannelModal.d.ts +3 -0
- package/dist/esm/index.js +1 -1
- package/dist/index.d.ts +2 -0
- package/package.json +1 -1
@@ -4,6 +4,7 @@ export declare const checkGiftOrCashback: (data: any) => any;
|
|
4
4
|
export declare const staticCreateCart: (setShowLoader: {
|
5
5
|
(value: SetStateAction<boolean>): void;
|
6
6
|
(arg0: boolean): void;
|
7
|
-
}, cartEndPoint: string, giftItem: any, uniqueProductData: any, mainContent: any, showPrice: any) => any;
|
7
|
+
}, cartEndPoint: string, giftItem: any, uniqueProductData: any, mainContent: any, showPrice: any, isMobileFlow: boolean, radioValue: any) => any;
|
8
8
|
export declare const findHeight: (tabIndex: number, cardsLength: number) => void;
|
9
9
|
export declare const combineWithSmartPhone: (showPrice: any, storyContent: any, uniqueProductData: any) => void;
|
10
|
+
export declare const fetchServiceOptions: (entitlement: any, isMobileFlow: boolean) => any;
|
@@ -4,6 +4,8 @@ export interface StaticLinetableSchema {
|
|
4
4
|
setGenericErrorModalDetails: any;
|
5
5
|
metadata: any;
|
6
6
|
loginSuccess?: boolean;
|
7
|
+
changeAddressClicked?: any;
|
8
|
+
lineCheckCallBack?: any;
|
7
9
|
}
|
8
10
|
export interface StaticProductSchema {
|
9
11
|
content: any;
|
@@ -16,6 +18,9 @@ export interface StaticProductSchema {
|
|
16
18
|
indexKey: number;
|
17
19
|
constants: any;
|
18
20
|
mainContent?: any;
|
21
|
+
address?: any;
|
22
|
+
lineCheckCallBack?: any;
|
23
|
+
eligibleBundle?: any;
|
19
24
|
}
|
20
25
|
export interface DynamicPriceSchema {
|
21
26
|
priceCollection: any;
|
@@ -31,6 +36,9 @@ export interface StaticProductContainerSchema {
|
|
31
36
|
loginSuccess?: any;
|
32
37
|
activeIndex: number;
|
33
38
|
mainContent?: any;
|
39
|
+
address?: any;
|
40
|
+
eligibleBundle?: any;
|
41
|
+
lineCheckCallBack?: any;
|
34
42
|
}
|
35
43
|
export interface StaticProductDetailsSchema {
|
36
44
|
content: any;
|
@@ -41,6 +49,8 @@ export interface StaticProductDetailsSchema {
|
|
41
49
|
isMobileFlow: boolean;
|
42
50
|
createCartCall: any;
|
43
51
|
storyContent: any;
|
52
|
+
isAvailable?: boolean;
|
53
|
+
address?: any;
|
44
54
|
}
|
45
55
|
export interface StaticBenefitsSchema {
|
46
56
|
content: any;
|
@@ -53,4 +63,6 @@ export interface CheckoutButtonSchema {
|
|
53
63
|
constants: any;
|
54
64
|
storyContent: any;
|
55
65
|
showPrice: any;
|
66
|
+
isAvailable?: boolean;
|
67
|
+
address?: any;
|
56
68
|
}
|