@timardex/cluemart-shared 1.5.519 → 1.5.520

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.
Files changed (38) hide show
  1. package/dist/{chunk-6FBQIZD5.mjs → chunk-6ZSNB2Y7.mjs} +19 -1
  2. package/dist/{chunk-6FBQIZD5.mjs.map → chunk-6ZSNB2Y7.mjs.map} +1 -1
  3. package/dist/{chunk-U3RFZUPB.mjs → chunk-LZ2KFVBV.mjs} +2 -2
  4. package/dist/{chunk-TZBKOYFM.mjs → chunk-RWA5G6NG.mjs} +1 -1
  5. package/dist/{chunk-TZBKOYFM.mjs.map → chunk-RWA5G6NG.mjs.map} +1 -1
  6. package/dist/{chunk-Z6YIR3MO.mjs → chunk-XEIQR6NA.mjs} +2 -2
  7. package/dist/formFields/index.mjs +3 -3
  8. package/dist/{game-BunlgBR3.d.mts → game-CC5mxG64.d.mts} +2 -0
  9. package/dist/{game-BkJDVMMI.d.ts → game-DhiKOr9_.d.ts} +2 -0
  10. package/dist/graphql/index.cjs +19 -0
  11. package/dist/graphql/index.cjs.map +1 -1
  12. package/dist/graphql/index.d.mts +8 -3
  13. package/dist/graphql/index.d.ts +8 -3
  14. package/dist/graphql/index.mjs +3 -1
  15. package/dist/hooks/index.cjs +11 -0
  16. package/dist/hooks/index.cjs.map +1 -1
  17. package/dist/hooks/index.d.mts +2 -2
  18. package/dist/hooks/index.d.ts +2 -2
  19. package/dist/hooks/index.mjs +4 -4
  20. package/dist/index.cjs +19 -0
  21. package/dist/index.cjs.map +1 -1
  22. package/dist/index.d.mts +12 -1
  23. package/dist/index.d.ts +12 -1
  24. package/dist/index.mjs +18 -0
  25. package/dist/index.mjs.map +1 -1
  26. package/dist/{post-B8c9JmOJ.d.ts → post-6SB9oo7r.d.ts} +6 -2
  27. package/dist/{post-DAYG3h_p.d.mts → post-B8Gk54ul.d.mts} +6 -2
  28. package/dist/types/index.cjs.map +1 -1
  29. package/dist/types/index.d.mts +2 -2
  30. package/dist/types/index.d.ts +2 -2
  31. package/dist/types/index.mjs +1 -1
  32. package/dist/utils/index.cjs.map +1 -1
  33. package/dist/utils/index.d.mts +1 -1
  34. package/dist/utils/index.d.ts +1 -1
  35. package/dist/utils/index.mjs +2 -2
  36. package/package.json +1 -1
  37. /package/dist/{chunk-U3RFZUPB.mjs.map → chunk-LZ2KFVBV.mjs.map} +0 -0
  38. /package/dist/{chunk-Z6YIR3MO.mjs.map → chunk-XEIQR6NA.mjs.map} +0 -0
@@ -3231,6 +3231,7 @@ var DAILY_CLUE_GAME_DATA_FIELDS_FRAGMENT = gql29`
3231
3231
  `;
3232
3232
  var GAME_HISTORY_FIELDS_FRAGMENT = gql29`
3233
3233
  fragment GameHistoryFields on GameHistoryType {
3234
+ createdAt
3234
3235
  gameDate {
3235
3236
  ...GameDateFields
3236
3237
  }
@@ -3250,6 +3251,7 @@ var GAME_DATA_FIELDS_FRAGMENT = gql29`
3250
3251
  `;
3251
3252
  var GAME_FIELDS_FRAGMENT = gql29`
3252
3253
  fragment GameFields on GameType {
3254
+ _id
3253
3255
  active
3254
3256
  createdAt
3255
3257
  gameData {
@@ -3739,6 +3741,15 @@ var DELETE_SCHOOL_MUTATION = gql36`
3739
3741
  deleteSchool(_id: $_id)
3740
3742
  }
3741
3743
  `;
3744
+ var REQUEST_MARKETING_MATERIAL_MUTATION = gql36`
3745
+ mutation requestMarketingMaterial(
3746
+ $input: MarketingMaterialRequestInputType!
3747
+ ) {
3748
+ requestMarketingMaterial(input: $input) {
3749
+ message
3750
+ }
3751
+ }
3752
+ `;
3742
3753
 
3743
3754
  // src/graphql/hooks/school/hooksMutation.ts
3744
3755
  var useCreateSchool = () => {
@@ -3771,6 +3782,12 @@ var useDeleteSchool = () => {
3771
3782
  );
3772
3783
  return { deleteSchool, error, loading };
3773
3784
  };
3785
+ var useRequestMarketingMaterial = () => {
3786
+ const [requestMarketingMaterial, { loading, error }] = useMutation19(
3787
+ REQUEST_MARKETING_MATERIAL_MUTATION
3788
+ );
3789
+ return { error, loading, requestMarketingMaterial };
3790
+ };
3774
3791
 
3775
3792
  // src/graphql/hooks/school/hooksQuery.ts
3776
3793
  import { useQuery as useQuery14 } from "@apollo/client";
@@ -3933,7 +3950,8 @@ export {
3933
3950
  useCreateSchool,
3934
3951
  useUpdateSchool,
3935
3952
  useDeleteSchool,
3953
+ useRequestMarketingMaterial,
3936
3954
  useGetSchools,
3937
3955
  useGetSchool
3938
3956
  };
3939
- //# sourceMappingURL=chunk-6FBQIZD5.mjs.map
3957
+ //# sourceMappingURL=chunk-6ZSNB2Y7.mjs.map