@sunrise-upc/mobile-prod-card 4.4.1-beta.0 → 4.4.1-beta.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -21,6 +21,14 @@ export declare const AFTER = "after";
21
21
  export declare const BEFORE = "before";
22
22
  export declare const SMARTPHONEDEVICE = "smartphone";
23
23
  export declare const ONE_ECOMMERCE_HARDWARE_SUMMARY = "one-ecommerce-hardwareSummary";
24
+ export declare const BASE_PRICE = "basePrice";
25
+ export declare const INSTALLMENTS = "installments";
26
+ export declare const SMARTUPGRADEINSTALLMENTS = "smartUpgradeInstallments";
27
+ export declare const BASE = "BASE";
28
+ export declare const CONTRACT = "CONTRACT";
29
+ export declare const HARDWARE = "HARDWARE";
30
+ export declare const DEFAULT_AVAILABILITY_TEXT = "dd_delivery_details";
31
+ export declare const DEVICE_INSURANCE = "DEVICE_INSURANCE";
24
32
  export declare const MOBILE = "mobile";
25
33
  export declare const DESKTOP = "desktop";
26
34
  export declare const LARGE_DESKTOP = "large-desktop";
@@ -1,13 +1,11 @@
1
1
  /// <reference types="react" />
2
2
  interface LoginPopupSchema {
3
3
  content: any;
4
- customerSection?: any;
5
4
  metadata: any;
6
5
  togglePopup?: any;
7
6
  isOpen?: any;
8
7
  validation?: any;
9
- noNewSubscriptionCheck?: any;
10
8
  onLoginSuccessRedirection?: any;
11
9
  }
12
- declare const checkoutRedirectionPopup: ({ content, metadata, togglePopup, isOpen, validation, noNewSubscriptionCheck, onLoginSuccessRedirection, customerSection }: LoginPopupSchema) => JSX.Element;
10
+ declare const checkoutRedirectionPopup: ({ content, metadata, togglePopup, isOpen, validation, onLoginSuccessRedirection, }: LoginPopupSchema) => JSX.Element;
13
11
  export default checkoutRedirectionPopup;
@@ -31,13 +31,14 @@ export declare const getDeviceWithVarients: (deviceData: any) => {
31
31
  defaultMemorySelected: undefined;
32
32
  };
33
33
  export declare const getOptionsList: (options: string[]) => any[];
34
- export declare const dpTableCreateCart: (setShowLoader: any, mobileData: any, deviceData: any, cartEndPoint: any, redirectionUrl: any, productData: any) => void;
35
- export declare const getDeviceCartItem: (deviceDetails: any, productData?: any) => {
34
+ export declare const dpTableCreateCart: (setShowLoader: any, mainContent: any, mobileData: any, deviceData: any, cartEndPoint: any, redirectionUrl: any) => void;
35
+ export declare const getDeviceCartItem: (deviceDetails: any) => {
36
36
  itemType: string;
37
37
  id: any;
38
38
  }[] | null;
39
- export declare const setDeviceSessionObject: (productData: any, offerDataList: any, deviceDetails: any, redirectionUrl: any) => void;
39
+ export declare const setDeviceSessionObject: (mainContent: any, productData: any, offerDataList: any, deviceDetails: any, redirectionUrl: any) => void;
40
40
  export declare const getDeviceNotes: (deviceDetails: any, upFrontValue: string) => {
41
41
  author: string;
42
42
  text: any;
43
43
  }[];
44
+ export declare const alterHardwarePriceFormatDeviceDetail: (hardwarePrices: any[]) => void;