@srimandir/daily-live-puja 1.5.2 → 1.6.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.
@@ -1,7 +1,9 @@
1
- import { DailyAttendanceStreakApiResponse, StreakApiBaseInstanceLike } from '../types/streak.types';
2
- export declare const createStreakApiClient: (apiBaseInstance?: StreakApiBaseInstanceLike) => {
1
+ import { StreakA4BApiLike, DailyAttendanceStreakApiResponse, StreakApiBaseInstanceLike } from '../types/streak.types';
2
+ type StreakContentEnvironment = "sbox" | "prod";
3
+ export declare const createStreakApiClient: (apiBaseInstance?: StreakApiBaseInstanceLike, a4bApi?: StreakA4BApiLike, contentEnvironment?: StreakContentEnvironment) => {
3
4
  getDailyAttendanceStreak: () => Promise<{
4
5
  payload: DailyAttendanceStreakApiResponse;
5
6
  isMock: boolean;
6
7
  }>;
7
8
  };
9
+ export {};
@@ -0,0 +1,8 @@
1
+ import { default as React } from 'react';
2
+ interface WhatsappVerificationSheetProps {
3
+ open: boolean;
4
+ onClose: () => void;
5
+ onVerifyWhatsapp: () => void;
6
+ }
7
+ export declare const WhatsappVerificationSheet: React.FC<WhatsappVerificationSheetProps>;
8
+ export {};