@sunrise-upc/mobile-prod-card 1.0.41-beta.2 → 1.1.0
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/cjs/Analytics/AnalyticsConstants.d.ts +0 -4
- package/dist/cjs/components/ProductTeaser/ProductTeaser.d.ts +1 -4
- package/dist/cjs/index.js +1 -1
- package/dist/cjs/models/Analytics/items.d.ts +1 -1
- package/dist/cjs/services/LineTableService.d.ts +1 -1
- package/dist/esm/Analytics/AnalyticsConstants.d.ts +0 -4
- package/dist/esm/components/ProductTeaser/ProductTeaser.d.ts +1 -4
- package/dist/esm/index.js +1 -1
- package/dist/esm/models/Analytics/items.d.ts +1 -1
- package/dist/esm/services/LineTableService.d.ts +1 -1
- package/dist/index.d.ts +1 -5
- package/package.json +1 -1
@@ -30,7 +30,7 @@ export interface ecomAddCartInfo {
|
|
30
30
|
value: string | number;
|
31
31
|
items: itemInfoEvent[];
|
32
32
|
}
|
33
|
-
export declare const getItemData: (item: any, data?: any, isAvailable?: any) => itemInfoEvent;
|
33
|
+
export declare const getItemData: (item: any, data?: any, itemType?: any, isAvailable?: any) => itemInfoEvent;
|
34
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
36
|
export declare const getEcomCartInfo: (items: any, category: any, location: any, eligibleBundle?: any) => any;
|
@@ -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, existingCustomer?: boolean, subscriptionType?: string
|
6
|
+
export declare const fetchOfferingDataLineTableV2: (params: any, uniqueId: any, endpoint: any, existingCustomer?: boolean, subscriptionType?: string) => Promise<any>;
|
@@ -13,7 +13,3 @@ export declare const COMBINEDEVICE = "combine_with_device";
|
|
13
13
|
export declare const TABCLICK = "tab_click";
|
14
14
|
export declare const TOGGLE_ON_CONFIGURATOR = "toggle_on_configurator";
|
15
15
|
export declare const TOGGLE_OFF_CONFIGURATOR = "toggle_off_configurator";
|
16
|
-
export declare const MOBILEORDER = "MOBILE_ORDER";
|
17
|
-
export declare const HOMEORDER = "HOME_ORDER";
|
18
|
-
export declare const MOBILESUBSCRIPTION = "Mobile Subscription Only";
|
19
|
-
export declare const INTERNETSUBSCRIPTION = "Internet Subscription Only";
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import { FC } from 'react';
|
2
|
-
import { Asset,
|
2
|
+
import { Asset, GenericSBProps, Links } from '../types';
|
3
3
|
export interface RichTextWithTooltip extends GenericSBProps {
|
4
4
|
icon: Asset;
|
5
5
|
mobIcon: Asset;
|
@@ -26,9 +26,6 @@ export interface ProductTeaserSlideSchema extends GenericSBProps {
|
|
26
26
|
tvPrice: string;
|
27
27
|
tvProductId: string;
|
28
28
|
tvSubHeading: string;
|
29
|
-
textAlignment: any;
|
30
|
-
gradientBackground: FalconGradientTypes;
|
31
|
-
isFullWidthImage: boolean;
|
32
29
|
}
|
33
30
|
export interface ProductTeaserCompSchema extends GenericSBProps {
|
34
31
|
btnIcon: Asset;
|