@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/{chunk-5Y3LQWZ5.mjs → chunk-EXP4MK3S.mjs} +5 -3
- package/dist/{chunk-5Y3LQWZ5.mjs.map → chunk-EXP4MK3S.mjs.map} +1 -1
- package/dist/graphql/index.cjs +4 -2
- package/dist/graphql/index.cjs.map +1 -1
- package/dist/graphql/index.d.mts +4 -2
- package/dist/graphql/index.d.ts +4 -2
- package/dist/graphql/index.mjs +1 -1
- package/dist/hooks/index.cjs.map +1 -1
- package/dist/hooks/index.mjs +1 -1
- package/dist/index.cjs +4 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +4 -2
- package/dist/index.d.ts +4 -2
- package/dist/index.mjs +4 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
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:
|
|
2377
|
-
|
|
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:
|
|
2377
|
-
|
|
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:
|
|
6318
|
-
|
|
6317
|
+
school: {
|
|
6318
|
+
mySchool: data?.school || null,
|
|
6319
|
+
users: data?.users || []
|
|
6320
|
+
}
|
|
6319
6321
|
};
|
|
6320
6322
|
};
|
|
6321
6323
|
|