@sunrise-upc/mobile-prod-card 4.7.6 → 4.7.7-beta.0
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 +2 -0
- package/dist/cjs/components/StaticLineTable/StaticProductDatatypes.d.ts +8 -0
- package/dist/cjs/components/lineTable/lineTable.types.d.ts +13 -0
- package/dist/cjs/index.js +2 -2
- package/dist/cjs/services/LineTableService.d.ts +1 -1
- package/dist/cjs/services/api-constants.d.ts +1 -0
- package/dist/esm/components/StaticLineTable/Product.utils.d.ts +2 -0
- package/dist/esm/components/StaticLineTable/StaticProductDatatypes.d.ts +8 -0
- package/dist/esm/components/lineTable/lineTable.types.d.ts +13 -0
- package/dist/esm/index.js +2 -2
- package/dist/esm/services/LineTableService.d.ts +1 -1
- package/dist/esm/services/api-constants.d.ts +1 -0
- package/dist/index.d.ts +3 -0
- package/package.json +1 -1
@@ -3,7 +3,7 @@ export declare const fetchOfferingDataV2: (requestBody: any, url: any, returnPro
|
|
3
3
|
export declare const createCartV2: (productData: any, radioValue: string, defaultPromo: string, cartUrl: string, productType: string, chooseGift?: any, enabledP2P?: any, P2PData?: any, isQoqaFlow?: boolean, qVoucher?: any, deviceDetails?: any, tvOptions?: 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, enableReturnPromo?: boolean, P2PEnabled?: boolean) => Promise<any>;
|
6
|
+
export declare const fetchOfferingDataLineTableV2: (params: any, uniqueId: any, endpoint: any, existingCustomer?: boolean, subscriptionType?: string, enableReturnPromo?: boolean, P2PEnabled?: boolean, pegaIntegration?: boolean) => Promise<any>;
|
7
7
|
export declare const fetchSubscriptionData: (category: any, endpoint: any) => Promise<any>;
|
8
8
|
export declare const getVocherPromotion: (productID: string, voucher: string) => Promise<void>;
|
9
9
|
export declare const validateP2P: (msisdn: any, endpoint: any) => Promise<any>;
|
package/dist/index.d.ts
CHANGED
@@ -172,6 +172,9 @@ interface StaticLinetableSchema {
|
|
172
172
|
deviceFlowCallBack?: any;
|
173
173
|
ubRatePlanObj?: any;
|
174
174
|
lineCheckOnClear?: any;
|
175
|
+
pegaIntegration?: boolean;
|
176
|
+
pegaRequestOfferCount?: number;
|
177
|
+
pegaCustomerInterest?: string;
|
175
178
|
}
|
176
179
|
|
177
180
|
declare const StaticLineTable: FC<StaticLinetableSchema>;
|