@sunrise-upc/mobile-prod-card 4.7.7-beta.0 → 4.7.7-beta.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -41,3 +41,4 @@ export declare const SUNRISEBOTHSUBSCRIPTION = "Mobile,Internet";
41
41
  export declare const POSTPAID = "POSTPAID";
42
42
  export declare const CAPSINTERNET = "INTERNET";
43
43
  export declare const HEROBANNER = "HeroBanner";
44
+ export declare const STICKYBOTTOMSHEET = "StickyBottomSheet";
@@ -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, pegaRequestOfferCount?: number, pegaCustomerInterest?: string, placements?: string) => PegaProductRequestBase;
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
  }
@@ -0,0 +1,6 @@
1
+ import { FC } from 'react';
2
+ export interface FalconTitleInterface {
3
+ text: string;
4
+ }
5
+ declare const StickyBottomSheet: FC<any>;
6
+ export default StickyBottomSheet;
@@ -0,0 +1 @@
1
+ export { default } from './StickyBottomSheet';
@@ -15,3 +15,4 @@ export { default as HeroLogin } from './HeroLogin';
15
15
  export { default as CheckCoverage } from './NewLineCheck/CovercheckWrapper';
16
16
  export { default as DpLinetable } from './UltimateBundleLinetable';
17
17
  export { default as CoverageCheckModal } from './NewLineCheck/CoverageCheckModal';
18
+ export { default as StickyBottomSheet } from "./StickyBottomSheet";