@sunrise-upc/mobile-prod-card 3.0.3-beta.4 → 3.0.3-beta.6
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/cjs/components/PretoPost/PreToPostSubsPopup.d.ts +3 -0
- package/dist/cjs/components/PretoPost/index.d.ts +1 -0
- package/dist/cjs/components/StaticLineTable/ExsistingSubscriptionCards.d.ts +11 -0
- package/dist/cjs/components/StaticLineTable/ExsistingSubscriptionModal.d.ts +8 -0
- package/dist/cjs/components/StaticLineTable/Product.utils.d.ts +1 -1
- package/dist/cjs/components/StaticLineTable/StaticProductDatatypes.d.ts +2 -0
- package/dist/cjs/components/index.d.ts +1 -0
- package/dist/cjs/index.js +8 -1
- package/dist/cjs/services/LineTableService.d.ts +2 -2
- package/dist/cjs/utils/constants.d.ts +2 -0
- package/dist/esm/components/PretoPost/PreToPostSubsPopup.d.ts +3 -0
- package/dist/esm/components/PretoPost/index.d.ts +1 -0
- package/dist/esm/components/StaticLineTable/ExsistingSubscriptionCards.d.ts +11 -0
- package/dist/esm/components/StaticLineTable/ExsistingSubscriptionModal.d.ts +8 -0
- package/dist/esm/components/StaticLineTable/Product.utils.d.ts +1 -1
- package/dist/esm/components/StaticLineTable/StaticProductDatatypes.d.ts +2 -0
- package/dist/esm/components/index.d.ts +1 -0
- package/dist/esm/index.js +8 -1
- package/dist/esm/services/LineTableService.d.ts +2 -2
- package/dist/esm/utils/constants.d.ts +2 -0
- package/dist/index.d.ts +3 -1
- package/package.json +1 -1
@@ -1,7 +1,7 @@
|
|
1
1
|
export declare const fetchCountryList: (name: string, lang: string, url: string, TTL: number) => Promise<any>;
|
2
2
|
export declare const fetchOfferingDataV2: (params: any, url: any) => Promise<any>;
|
3
|
-
export declare const createCartV2: (productData: any, radioValue: string, defaultPromo: string, cartUrl: string, productType: string, chooseGift?: any) => Promise<any>;
|
3
|
+
export declare const createCartV2: (productData: any, radioValue: string, defaultPromo: string, cartUrl: string, productType: string, chooseGift?: any, enabledP2P?: any, P2PData?: 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) => Promise<any>;
|
6
|
+
export declare const fetchOfferingDataLineTableV2: (params: any, uniqueId: any, endpoint: any, existingCustomer?: boolean, subscriptionType?: string, enableReturnPromo?: boolean, P2PEnabled?: boolean) => Promise<any>;
|
7
7
|
export declare const fetchSubscriptionData: (category: any, endpoint: any) => Promise<any>;
|
package/dist/index.d.ts
CHANGED
@@ -177,6 +177,8 @@ declare const BenefitWrapper: ({ content, metadata, setGenericErrorModalDetails,
|
|
177
177
|
|
178
178
|
declare const Breadcrumb: FC<any>;
|
179
179
|
|
180
|
+
declare const PreToPostSubsPopup: ({ onClose, content, prepaid, }: any) => JSX.Element;
|
181
|
+
|
180
182
|
interface LineTableBasicPropConfigSchema {
|
181
183
|
baseURL: string | '';
|
182
184
|
cartURL?: string | '';
|
@@ -233,4 +235,4 @@ declare class LinecheckBasicPropConfig {
|
|
233
235
|
static create: (p_config: LinecheckBasicPropConfigSchema) => void;
|
234
236
|
}
|
235
237
|
|
236
|
-
export { AssetPathPropConfig, AssetPathPropConfigSchema, BenefitWrapper, Breadcrumb, Button, Card, CardEntitlement, CarouselComp, LineTableBasicPropConfig, LineTableBasicPropConfigSchema, LinecheckBasicPropConfig, LinecheckBasicPropConfigSchema, LincheckModal as LinecheckModal, LoginModal, ProductTableV3, ProductTeaser, ProductTeaserPropConfig, ProductTeaserPropConfigSchema, StaticLineTable, StickyProductAnchor };
|
238
|
+
export { AssetPathPropConfig, AssetPathPropConfigSchema, BenefitWrapper, Breadcrumb, Button, Card, CardEntitlement, CarouselComp, LineTableBasicPropConfig, LineTableBasicPropConfigSchema, LinecheckBasicPropConfig, LinecheckBasicPropConfigSchema, LincheckModal as LinecheckModal, LoginModal, PreToPostSubsPopup as PretoPostSubsPopup, ProductTableV3, ProductTeaser, ProductTeaserPropConfig, ProductTeaserPropConfigSchema, StaticLineTable, StickyProductAnchor };
|
package/package.json
CHANGED