@sunrise-upc/mobile-prod-card 1.2.5-beta.9 → 1.2.6-beta.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 +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/components/lineTable/lineTable.types.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/components/lineTable/lineTable.types.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 +8 -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
@@ -146,6 +146,7 @@ interface ProductTableSchema {
|
|
146
146
|
lineCheckCallBack?: () => void;
|
147
147
|
changeAddressClicked?: any;
|
148
148
|
tabCheckCallBack?: (tabId: string) => void;
|
149
|
+
ratePlansToRemove?: string[];
|
149
150
|
}
|
150
151
|
|
151
152
|
declare const ProductTableV3: FC<ProductTableSchema>;
|
@@ -160,12 +161,18 @@ interface StaticLinetableSchema {
|
|
160
161
|
loginSuccess?: boolean;
|
161
162
|
changeAddressClicked?: any;
|
162
163
|
linecheckSuccessCallBack?: any;
|
164
|
+
selectedOption?: string;
|
165
|
+
basicConfigUrl?: string;
|
166
|
+
selectedExistingOption?: any;
|
167
|
+
setLoginSuccess?: any;
|
163
168
|
}
|
164
169
|
|
165
170
|
declare const StaticLineTable: FC<StaticLinetableSchema>;
|
166
171
|
|
167
172
|
declare const LincheckModal: FC<any>;
|
168
173
|
|
174
|
+
declare const BenefitWrapper: ({ content, metadata, setGenericErrorModalDetails, loginSuccess, basicConfigUrl, setLoginSuccess }: any) => JSX.Element;
|
175
|
+
|
169
176
|
interface LineTableBasicPropConfigSchema {
|
170
177
|
baseURL: string | '';
|
171
178
|
cartURL?: string | '';
|
@@ -222,4 +229,4 @@ declare class LinecheckBasicPropConfig {
|
|
222
229
|
static create: (p_config: LinecheckBasicPropConfigSchema) => void;
|
223
230
|
}
|
224
231
|
|
225
|
-
export { AssetPathPropConfig, AssetPathPropConfigSchema, Button, Card, CardEntitlement, CarouselComp, LineTableBasicPropConfig, LineTableBasicPropConfigSchema, LinecheckBasicPropConfig, LinecheckBasicPropConfigSchema, LincheckModal as LinecheckModal, LoginModal, ProductTableV3, ProductTeaser, ProductTeaserPropConfig, ProductTeaserPropConfigSchema, StaticLineTable, StickyProductAnchor };
|
232
|
+
export { AssetPathPropConfig, AssetPathPropConfigSchema, BenefitWrapper, Button, Card, CardEntitlement, CarouselComp, LineTableBasicPropConfig, LineTableBasicPropConfigSchema, LinecheckBasicPropConfig, LinecheckBasicPropConfigSchema, LincheckModal as LinecheckModal, LoginModal, ProductTableV3, ProductTeaser, ProductTeaserPropConfig, ProductTeaserPropConfigSchema, StaticLineTable, StickyProductAnchor };
|
package/package.json
CHANGED