@timardex/cluemart-shared 1.5.522 → 1.5.523

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.
package/dist/index.d.mts CHANGED
@@ -2373,8 +2373,10 @@ declare const useGetSchool: (_id: string) => {
2373
2373
  school: SchoolType | null;
2374
2374
  users: SchoolRegisteredUserType[] | null;
2375
2375
  }>>;
2376
- school: SchoolType | null;
2377
- users: SchoolRegisteredUserType[];
2376
+ school: {
2377
+ mySchool: SchoolType | null;
2378
+ users: SchoolRegisteredUserType[];
2379
+ };
2378
2380
  };
2379
2381
 
2380
2382
  interface PlacePrediction {
package/dist/index.d.ts CHANGED
@@ -2373,8 +2373,10 @@ declare const useGetSchool: (_id: string) => {
2373
2373
  school: SchoolType | null;
2374
2374
  users: SchoolRegisteredUserType[] | null;
2375
2375
  }>>;
2376
- school: SchoolType | null;
2377
- users: SchoolRegisteredUserType[];
2376
+ school: {
2377
+ mySchool: SchoolType | null;
2378
+ users: SchoolRegisteredUserType[];
2379
+ };
2378
2380
  };
2379
2381
 
2380
2382
  interface PlacePrediction {
package/dist/index.mjs CHANGED
@@ -6314,8 +6314,10 @@ var useGetSchool = (_id) => {
6314
6314
  error,
6315
6315
  loading,
6316
6316
  refetch,
6317
- school: data?.school || null,
6318
- users: data?.users || []
6317
+ school: {
6318
+ mySchool: data?.school || null,
6319
+ users: data?.users || []
6320
+ }
6319
6321
  };
6320
6322
  };
6321
6323