@sunrise-upc/mobile-prod-card 1.0.37 → 1.0.38

Sign up to get free protection for your applications and to get access to all the features.
@@ -3,4 +3,4 @@ export declare const fetchOfferingDataV2: (params: any, url: any) => Promise<any
3
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
- export declare const fetchOfferingDataLineTableV2: (params: any, uniqueId: any, endpoint: any) => Promise<any>;
6
+ export declare const fetchOfferingDataLineTableV2: (params: any, uniqueId: any, endpoint: any, existingCustomer?: boolean, subscriptionType?: string) => Promise<any>;
@@ -3,5 +3,6 @@ export declare const APIResourceConstants: {
3
3
  X_SUN_CHAL: string;
4
4
  LINE_TABLEV2: string;
5
5
  CREATE_CARTV2: string;
6
+ SUBSCRIPTION: string;
6
7
  };
7
8
  export declare const SBENDPOINT: any;
@@ -39,6 +39,7 @@ export interface ProductTeaserSchema {
39
39
  changeAddressClicked?: boolean;
40
40
  offerDataCallBack?: (a: any, b: any, c?: string) => void;
41
41
  productCallBack?: (a: string) => void;
42
+ tableSelectedTab?: string;
42
43
  }
43
44
  declare const ProductTeaser: FC<ProductTeaserSchema>;
44
45
  export default ProductTeaser;
@@ -7,6 +7,7 @@ export interface ProductTeaserSlidesSchema {
7
7
  offeringData: any;
8
8
  lineCheckCallBack?: () => void;
9
9
  setEnableToggle?: any;
10
+ tableSelectedTab?: string;
10
11
  }
11
12
  declare const ProductTeaserSlides: FC<ProductTeaserSlidesSchema>;
12
13
  export default ProductTeaserSlides;
@@ -2,3 +2,9 @@ export declare const formattedContent: (content: any, isMobileFlow: boolean, upd
2
2
  export declare const sortProductDetails: (prodDetails: any) => any;
3
3
  export declare const checkGift: (data: any) => any;
4
4
  export declare const checkCashback: (data: any) => any;
5
+ /**
6
+ * retrieves access data from the line check data based on provided product id
7
+ * @param productId the id to search for in the line check response
8
+ * @returns accessData for the particular product
9
+ */
10
+ export declare const getAccessDataFromLineCheck: (productId: any) => any;