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

Sign up to get free protection for your applications and to get access to all the features.
@@ -30,11 +30,11 @@ export interface ecomAddCartInfo {
30
30
  value: string | number;
31
31
  items: itemInfoEvent[];
32
32
  }
33
- export declare const getItemData: (item: any, data?: any, itemType?: any) => itemInfoEvent;
34
- export declare const getEcomInfo: (items: any, category?: any, location?: any) => any;
33
+ export declare const getItemData: (item: any, data?: any, itemType?: any, isAvailable?: any) => itemInfoEvent;
34
+ export declare const getEcomInfo: (items: any, category?: any, location?: any, eligibleBundle?: any) => any;
35
35
  export declare const getViewCartInfo: (items: any, category: any, location: any) => ecomViewCartInfo;
36
- export declare const getEcomCartInfo: (items: any, category: any, location: any) => ecomAddCartInfo;
37
- export declare const trackEligibleItem: (type: string, prodData?: any, category?: any, location?: any) => void;
36
+ export declare const getEcomCartInfo: (items: any, category: any, location: any, eligibleBundle?: any) => any;
37
+ export declare const trackEligibleItem: (type: string, prodData?: any, category?: any, location?: any, eligibleBundle?: any) => void;
38
38
  export declare const getItemInfo: (products: any, showPrice: any, isEligible?: any) => itemInfoEvent;
39
39
  export declare const getBundleItemInfo: (products: any, showPrice: any, isEligible?: any) => any;
40
40
  export declare const getItemEventValueArray: (products: any, showPrice: any, isEligible?: any) => void;
@@ -10,3 +10,4 @@ export declare const GAEVENT = "gaEvent";
10
10
  export declare const STAGETEASER = "Stage Teaser";
11
11
  export declare const LINETABLE = "Line Table";
12
12
  export declare const COMBINEDEVICE = "combine_with_device";
13
+ export declare const TABCLICK = "tab_click";
@@ -7,6 +7,7 @@ interface ProductDetailsSchema {
7
7
  addToCart: any;
8
8
  sbStaticConstants: any;
9
9
  createCartCall: any;
10
+ contractDuration: any;
10
11
  }
11
- declare const ProductDetailsV2: ({ products, showProductDetail, setShowProductDetail, content, priceCollection, addToCart, sbStaticConstants, createCartCall }: ProductDetailsSchema) => any;
12
+ declare const ProductDetailsV2: ({ products, showProductDetail, setShowProductDetail, content, priceCollection, addToCart, sbStaticConstants, createCartCall, contractDuration }: ProductDetailsSchema) => any;
12
13
  export default ProductDetailsV2;