@sunrise-upc/mobile-prod-card 7.1.3 → 8.0.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.
@@ -2,8 +2,8 @@ export declare const fetchCountryList: (name: string, lang: string, url: string,
2
2
  export declare const fetchOfferingDataV2: (requestBody: any, url: any, returnPromo?: boolean) => Promise<any>;
3
3
  export declare const createCartV2: (productData: any, radioValue: string, defaultPromo: string, cartUrl: string, productType: string, chooseGift?: any, enabledP2P?: any, P2PData?: any, isQoqaFlow?: boolean, qVoucher?: any, deviceDetails?: any, tvOptions?: any, discountRef?: string, discountVersion?: string) => Promise<any>;
4
4
  export declare const fetchLinetableContent: (slugurl: string, params: any) => Promise<any>;
5
- export declare const getStaticContent: (language: any, endPoints: any) => Promise<any>;
6
- export declare const fetchOfferingDataLineTableV2: (params: any, uniqueId: any, endpoint: any, existingCustomer?: boolean, subscriptionType?: string, enableReturnPromo?: boolean, P2PEnabled?: boolean, pegaIntegration?: boolean) => Promise<any>;
5
+ export declare const getStaticContent: (language: any, endPoints: any) => any;
6
+ export declare const fetchOfferingDataLineTableV2: (params: any, uniqueId: any, endpoint: any, existingCustomer?: boolean, subscriptionType?: string, enableReturnPromo?: boolean, P2PEnabled?: boolean, pegaIntegration?: boolean, deviceUltimateBundle?: boolean) => Promise<any>;
7
7
  export declare const fetchSubscriptionData: (category: any, endpoint: any) => Promise<any>;
8
8
  export declare const getVocherPromotion: (productID: string, voucher: string) => Promise<void>;
9
9
  export declare const validateP2P: (msisdn: any, endpoint: any) => Promise<any>;
@@ -30,6 +30,12 @@ export declare const HARDWARE = "HARDWARE";
30
30
  export declare const DEFAULT_AVAILABILITY_TEXT = "dd_delivery_details";
31
31
  export declare const DEVICE_INSURANCE = "DEVICE_INSURANCE";
32
32
  export declare const NOT_AVAILABLE = "NOT_AVAILABLE";
33
+ export declare const EPIC_FLEX_UPGRADE_BENEFIT = "EPIC_FLEX_UPGRADE_BENEFIT";
34
+ export declare const FLEX_UPGRADE = "Flex Upgrade";
35
+ export declare const WP_FLEX_UPGRADE = "FLEX_UPGRADE";
36
+ export declare const WP_FLEX_UPGRADE_NOT = "FLEX_UPGRADE_NOT";
37
+ export declare const EXCLUSIVE_BENEFIT_COLOR = "#008187";
38
+ export declare const ULTIMATEBUNDLE = "ultimateBundle";
33
39
  export declare const MOBILE = "mobile";
34
40
  export declare const DESKTOP = "desktop";
35
41
  export declare const LARGE_DESKTOP = "large-desktop";
@@ -15,3 +15,4 @@ export declare const isModemPresent: () => boolean;
15
15
  export declare const iconHandler: (type: string) => string;
16
16
  export declare const checkLinkWithLang: (url: string) => string | undefined;
17
17
  export declare const getSBAssetUrl: (wafIdentifier: any, image?: string) => string;
18
+ export declare const getNoteValues: (hardwareProducts: any, key: string) => undefined;
@@ -1,4 +1,4 @@
1
- export declare const getLineCheckService: (selectedAdd: any) => unknown;
1
+ export declare const getLineCheckService: (selectedAdd: any) => any;
2
2
  export declare const fetchLineCheck: (payload: any) => Promise<{
3
3
  corelationaId: any;
4
4
  lineCheckResponse: any;
@@ -5,7 +5,7 @@ export declare const fetchAddress: (address: any, controllerRef: any, setAddErr:
5
5
  error: boolean;
6
6
  abortError?: undefined;
7
7
  } | undefined>;
8
- export declare const getLineCheckService: (selectedAdd: any, setLcData: any, lcData: any) => unknown;
8
+ export declare const getLineCheckService: (selectedAdd: any, setLcData: any, lcData: any) => any;
9
9
  export declare const fetchLineCheck: (payload: any, setLcData: any, lcData: any) => Promise<{
10
10
  corelationaId: any;
11
11
  lineCheckResponse: any;
@@ -0,0 +1,4 @@
1
+ import { FC } from 'react';
2
+ import { StaticExclusiveBenefitsSchema } from './StaticProductDatatypes';
3
+ declare const StaticBenefit: FC<StaticExclusiveBenefitsSchema>;
4
+ export default StaticBenefit;
@@ -52,6 +52,7 @@ export interface StaticProductSchema {
52
52
  lineCheckOnClear?: any;
53
53
  pegaIntegration?: boolean;
54
54
  isProdEnv?: boolean;
55
+ deviceUltimateBundle?: boolean;
55
56
  toggleContent?: toggleContentSchema;
56
57
  pricesToggleState?: boolean;
57
58
  }
@@ -112,6 +113,11 @@ export interface StaticBenefitsSchema {
112
113
  content: any;
113
114
  benefitData: any;
114
115
  constants: any;
116
+ pricesToggleState?: boolean;
117
+ togglePriceLabel?: string;
118
+ }
119
+ export interface StaticExclusiveBenefitsSchema {
120
+ content: any;
115
121
  }
116
122
  export interface CheckoutButtonSchema {
117
123
  isMobileFlow: boolean;
@@ -124,8 +130,11 @@ export interface CheckoutButtonSchema {
124
130
  deviceFlow?: any;
125
131
  deviceFlowCallBack?: any;
126
132
  alwaysActive?: boolean;
133
+ uniqueProductData?: any;
134
+ flexUpgradeFreePopup: any;
127
135
  }
128
136
  export interface toggleContentSchema {
129
137
  enableLoggedInPrice: string;
130
138
  togglePosition: string;
139
+ togglePriceLabel?: string;
131
140
  }
@@ -0,0 +1,8 @@
1
+ import { FC } from 'react';
2
+ interface WorldPassPopupSchema {
3
+ storyContent: any;
4
+ createCartCall: () => void;
5
+ setPassPopUp: (a: boolean) => void;
6
+ }
7
+ declare const WorldPassPopup: FC<WorldPassPopupSchema>;
8
+ export default WorldPassPopup;