@srimandir/daily-live-puja 1.2.0 → 1.3.0

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.
@@ -23,8 +23,6 @@ export interface StoreSectionA4BApiLike {
23
23
  };
24
24
  }
25
25
  export interface StoreSectionProps {
26
- /** List of store cards to display */
27
- cards: StoreCard[];
28
26
  /** Called when a card is tapped — receives the card data */
29
27
  onCardClick?: (card: StoreCard) => void;
30
28
  /** Host app API client (same instance pattern as web app pages). */
@@ -35,10 +33,5 @@ export interface StoreSectionProps {
35
33
  storeCardsHeaders?: Record<string, string>;
36
34
  /** Maximum cards for Explore Sri Mandir. */
37
35
  storeCardsLimit?: number;
38
- /**
39
- * Fetch store cards from the host app.
40
- * Host should call puja API first, then chadhava API, and return combined array.
41
- */
42
- onFetchStoreCards?: () => Promise<StoreCard[]>;
43
36
  }
44
37
  export declare const StoreSection: React.FC<StoreSectionProps>;
@@ -19,8 +19,6 @@ interface VideoPageProps {
19
19
  attendedDays?: number[];
20
20
  /** Current day in the 7-day journey (1-indexed). */
21
21
  currentDay?: number;
22
- /** Store cards for the Explore Sri Mandir section. */
23
- storeCards?: StoreCard[];
24
22
  /** Called when a store card is tapped. */
25
23
  onStoreCardClick?: (card: StoreCard) => void;
26
24
  /** Host app API client (same instance pattern as web app pages). */
@@ -31,12 +29,6 @@ interface VideoPageProps {
31
29
  storeCardsHeaders?: Record<string, string>;
32
30
  /** Maximum cards for Explore Sri Mandir. */
33
31
  storeCardsLimit?: number;
34
- /**
35
- * Fetch store cards from the host app.
36
- * Host should call puja API first, then chadhava API, and return combined array.
37
- * When provided, overrides the static `storeCards` prop.
38
- */
39
- onFetchStoreCards?: () => Promise<StoreCard[]>;
40
32
  /** Called when Share on WhatsApp is tapped. */
41
33
  onShare?: () => void;
42
34
  /** Show Subscription tab (D6+ and not yet subscribed). */