@sunrise-upc/mobile-prod-card 4.7.7-beta.4 → 4.7.7-beta.6
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/cjs/components/StaticLineTable/Product.utils.d.ts +1 -1
- package/dist/cjs/components/StaticLineTable/StaticProductDatatypes.d.ts +2 -2
- package/dist/cjs/index.js +4 -2
- package/dist/cjs/services/LineTableService.d.ts +1 -0
- package/dist/cjs/services/api-constants.d.ts +1 -0
- package/dist/esm/components/StaticLineTable/Product.utils.d.ts +1 -1
- package/dist/esm/components/StaticLineTable/StaticProductDatatypes.d.ts +2 -2
- package/dist/esm/index.js +4 -2
- package/dist/esm/services/LineTableService.d.ts +1 -0
- package/dist/esm/services/api-constants.d.ts +1 -0
- package/dist/index.d.ts +1 -1
- package/package.json +4 -1
@@ -9,3 +9,4 @@ export declare const getVocherPromotion: (productID: string, voucher: string) =>
|
|
9
9
|
export declare const validateP2P: (msisdn: any, endpoint: any) => Promise<any>;
|
10
10
|
export declare const getDeviceDetails: (deviceID: any, endpoint: any) => Promise<any>;
|
11
11
|
export declare const getDeviceModelsList: (brandId: any, endpoint: any) => Promise<any>;
|
12
|
+
export declare const trackPegaEvents: (endpoint: any, payload: {} | undefined, prospectId: string) => Promise<any>;
|
@@ -1,7 +1,7 @@
|
|
1
1
|
import { SetStateAction } from 'react';
|
2
2
|
import { PegaProductRequestBase } from '../lineTable/lineTable.types';
|
3
3
|
export declare const fetchStaticProductIds: (productList: any, productId: any, bundle4PProduct?: boolean, tvOptionIds?: any) => any;
|
4
|
-
export declare const fetchPegaProducts: (content: any,
|
4
|
+
export declare const fetchPegaProducts: (content: any, pegaCustomerInterest?: string, placements?: string) => PegaProductRequestBase;
|
5
5
|
export declare const checkGiftOrCashback: (data: any) => any;
|
6
6
|
export declare const staticCreateCart: (setShowLoader: {
|
7
7
|
(value: SetStateAction<boolean>): void;
|
@@ -16,8 +16,8 @@ export interface StaticLinetableSchema {
|
|
16
16
|
ubRatePlanObj?: any;
|
17
17
|
lineCheckOnClear?: any;
|
18
18
|
pegaIntegration?: boolean;
|
19
|
-
pegaRequestOfferCount?: number;
|
20
19
|
pegaCustomerInterest?: string;
|
20
|
+
useStoryblokOrder?: boolean;
|
21
21
|
}
|
22
22
|
export interface StaticProductSchema {
|
23
23
|
content: any;
|
@@ -81,8 +81,8 @@ export interface StaticProductContainerSchema {
|
|
81
81
|
ubRatePlanObj?: any;
|
82
82
|
lineCheckOnClear?: any;
|
83
83
|
pegaIntegration?: boolean;
|
84
|
-
pegaRequestOfferCount?: number;
|
85
84
|
pegaCustomerInterest?: string;
|
85
|
+
useStoryblokOrder?: boolean;
|
86
86
|
isFetching?: boolean;
|
87
87
|
setIsFetching?: any;
|
88
88
|
}
|