@srimandir/hanuman-chalisa 1.5.9 → 1.5.11

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.
@@ -18,7 +18,7 @@ export interface LandingPageProps {
18
18
  /** Callback when user submits the form */
19
19
  onSubmit?: (data: {
20
20
  name: string;
21
- fullPhoneNumber: string;
21
+ whatsappNumber: string;
22
22
  }) => void;
23
23
  /** If true, uses +1 country code; if false, uses +91 */
24
24
  isGlobal?: boolean;
@@ -1,3 +1,2 @@
1
1
  export { EXPECTATION_ITEMS } from './expectations';
2
2
  export type { ExpectationItem } from './expectations';
3
- export { ISD_COUNTRY_OPTIONS } from './countrycode';
@@ -1,7 +1,7 @@
1
1
  import { default as React, ReactNode } from 'react';
2
2
  interface UserData {
3
3
  name: string;
4
- fullPhoneNumber: string;
4
+ whatsappNumber: string;
5
5
  }
6
6
  interface AppContextValue {
7
7
  userData: UserData | null;