@sunrise-upc/mobile-prod-card 1.2.5-beta.9 → 1.2.5
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/cjs/Analytics/AnalyticsConstants.d.ts +8 -0
- package/dist/cjs/components/BenefitWrapper/BenefitValidate.d.ts +3 -0
- package/dist/cjs/components/BenefitWrapper/BenefitWrapper.d.ts +3 -0
- package/dist/cjs/components/BenefitWrapper/Benefits.d.ts +1 -0
- package/dist/cjs/components/BenefitWrapper/BenefitsValidateWrapper.d.ts +3 -0
- package/dist/cjs/components/BenefitWrapper/index.d.ts +1 -0
- package/dist/cjs/components/StaticLineTable/StaticProductDatatypes.d.ts +13 -0
- package/dist/cjs/components/index.d.ts +1 -0
- package/dist/cjs/index.js +2 -2
- package/dist/cjs/services/LineTableService.d.ts +1 -0
- package/dist/esm/Analytics/AnalyticsConstants.d.ts +8 -0
- package/dist/esm/components/BenefitWrapper/BenefitValidate.d.ts +3 -0
- package/dist/esm/components/BenefitWrapper/BenefitWrapper.d.ts +3 -0
- package/dist/esm/components/BenefitWrapper/Benefits.d.ts +1 -0
- package/dist/esm/components/BenefitWrapper/BenefitsValidateWrapper.d.ts +3 -0
- package/dist/esm/components/BenefitWrapper/index.d.ts +1 -0
- package/dist/esm/components/StaticLineTable/StaticProductDatatypes.d.ts +13 -0
- package/dist/esm/components/index.d.ts +1 -0
- package/dist/esm/index.js +2 -2
- package/dist/esm/services/LineTableService.d.ts +1 -0
- package/dist/index.d.ts +7 -1
- package/package.json +1 -1
@@ -4,3 +4,4 @@ export declare const createCartV2: (productData: any, radioValue: string, defaul
|
|
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
6
|
export declare const fetchOfferingDataLineTableV2: (params: any, uniqueId: any, endpoint: any, existingCustomer?: boolean, subscriptionType?: string, enableReturnPromo?: boolean) => Promise<any>;
|
7
|
+
export declare const fetchSubscriptionData: (category: any, endpoint: any) => Promise<any>;
|
package/dist/index.d.ts
CHANGED
@@ -160,12 +160,18 @@ interface StaticLinetableSchema {
|
|
160
160
|
loginSuccess?: boolean;
|
161
161
|
changeAddressClicked?: any;
|
162
162
|
linecheckSuccessCallBack?: any;
|
163
|
+
selectedOption?: string;
|
164
|
+
basicConfigUrl?: string;
|
165
|
+
selectedExistingOption?: any;
|
166
|
+
setLoginSuccess?: any;
|
163
167
|
}
|
164
168
|
|
165
169
|
declare const StaticLineTable: FC<StaticLinetableSchema>;
|
166
170
|
|
167
171
|
declare const LincheckModal: FC<any>;
|
168
172
|
|
173
|
+
declare const BenefitWrapper: ({ content, metadata, setGenericErrorModalDetails, loginSuccess, basicConfigUrl, setLoginSuccess }: any) => JSX.Element;
|
174
|
+
|
169
175
|
interface LineTableBasicPropConfigSchema {
|
170
176
|
baseURL: string | '';
|
171
177
|
cartURL?: string | '';
|
@@ -222,4 +228,4 @@ declare class LinecheckBasicPropConfig {
|
|
222
228
|
static create: (p_config: LinecheckBasicPropConfigSchema) => void;
|
223
229
|
}
|
224
230
|
|
225
|
-
export { AssetPathPropConfig, AssetPathPropConfigSchema, Button, Card, CardEntitlement, CarouselComp, LineTableBasicPropConfig, LineTableBasicPropConfigSchema, LinecheckBasicPropConfig, LinecheckBasicPropConfigSchema, LincheckModal as LinecheckModal, LoginModal, ProductTableV3, ProductTeaser, ProductTeaserPropConfig, ProductTeaserPropConfigSchema, StaticLineTable, StickyProductAnchor };
|
231
|
+
export { AssetPathPropConfig, AssetPathPropConfigSchema, BenefitWrapper, Button, Card, CardEntitlement, CarouselComp, LineTableBasicPropConfig, LineTableBasicPropConfigSchema, LinecheckBasicPropConfig, LinecheckBasicPropConfigSchema, LincheckModal as LinecheckModal, LoginModal, ProductTableV3, ProductTeaser, ProductTeaserPropConfig, ProductTeaserPropConfigSchema, StaticLineTable, StickyProductAnchor };
|