@sunrise-upc/mobile-prod-card 1.0.26-beta.9 → 1.0.27-beta.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,6 +1,6 @@
1
1
  export declare const fetchCountryList: (name: string, lang: string, url: string, TTL: number) => Promise<any>;
2
2
  export declare const fetchOfferingDataV2: (params: any, url: any) => Promise<any>;
3
- export declare const createCartV2: (productData: any, radioValue: string, defaultPromo: string, cartUrl: string, productType: string, giftItem?: any) => Promise<any>;
3
+ export declare const createCartV2: (productData: any, radioValue: string, defaultPromo: string, cartUrl: string, productType: string, chooseGift?: any) => Promise<any>;
4
4
  export declare const fetchLinetableContent: (slugurl: string, params: any) => Promise<any>;
5
5
  export declare const getStaticContent: (language: any, endPoints: any) => Promise<any>;
6
6
  export declare const fetchOfferingDataLineTableV2: (params: any, uniqueId: any, endpoint: any) => Promise<any>;
@@ -11,3 +11,5 @@ export declare const STAGETEASER = "Stage Teaser";
11
11
  export declare const LINETABLE = "Line Table";
12
12
  export declare const COMBINEDEVICE = "combine_with_device";
13
13
  export declare const TABCLICK = "tab_click";
14
+ export declare const TOGGLE_ON_CONFIGURATOR = "toggle_on_configurator";
15
+ export declare const TOGGLE_OFF_CONFIGURATOR = "toggle_off_configurator";
@@ -28,3 +28,5 @@ export declare const getItemData: (item: any, data?: any) => itemInfoEvent;
28
28
  export declare const getEcomInfo: (items: any, category?: any, location?: any) => any;
29
29
  export declare const getEcomCartInfo: (items: any, category: any, location: any) => ecomAddCartInfo;
30
30
  export declare const trackEligibleItem: (type: string, prodData?: any, category?: any, location?: any) => void;
31
+ export declare const clickEvent: (eventName: string, text: string) => void;
32
+ export declare const toggleEvent: (eventName: string, headline: string, selection: string) => void;
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ declare const CashbackV2: ({ content }: any) => JSX.Element;
3
+ export default CashbackV2;
@@ -2,6 +2,7 @@ import { FC } from 'react';
2
2
  import './row.css';
3
3
  interface RowInterface {
4
4
  children: JSX.Element;
5
+ resuablelineTable?: boolean;
5
6
  }
6
7
  declare const Row: FC<RowInterface>;
7
8
  export default Row;
@@ -1,3 +1,3 @@
1
1
  /// <reference types="react" />
2
- declare const OrderButton: ({ content, isMobileFlow, sbStaticConstants, address, isAvailable, showPrice, isSkeletonLoading, createCartCall }: any) => JSX.Element;
2
+ declare const OrderButton: ({ content, isMobileFlow, sbStaticConstants, address, isAvailable, showPrice, createCartCall }: any) => JSX.Element;
3
3
  export default OrderButton;
@@ -1,6 +1,7 @@
1
1
  export interface ProductTableSchema {
2
2
  content: any;
3
3
  metadata: any;
4
+ setGenericErrorModalDetails: any;
4
5
  lineCheckCallBack?: () => void;
5
6
  changeAddressClicked?: any;
6
7
  }