@constructive-io/react 0.20.3 → 0.20.5

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 (445) hide show
  1. package/admin/hooks/index.d.ts +1 -1
  2. package/admin/hooks/index.js +1 -1
  3. package/admin/hooks/invalidation.d.ts +18 -30
  4. package/admin/hooks/invalidation.js +48 -80
  5. package/admin/hooks/mutation-keys.d.ts +36 -60
  6. package/admin/hooks/mutation-keys.js +22 -36
  7. package/admin/hooks/mutations/index.d.ts +9 -15
  8. package/admin/hooks/mutations/index.js +9 -15
  9. package/admin/hooks/mutations/useCreateAppLimitWarningMutation.d.ts +34 -0
  10. package/admin/hooks/mutations/{useCreateAppLevelMutation.js → useCreateAppLimitWarningMutation.js} +6 -6
  11. package/admin/hooks/mutations/useCreateOrgLimitWarningMutation.d.ts +34 -0
  12. package/admin/hooks/mutations/{useCreateAppAchievementMutation.js → useCreateOrgLimitWarningMutation.js} +6 -6
  13. package/admin/hooks/mutations/useDeleteAppLimitWarningMutation.d.ts +38 -0
  14. package/admin/hooks/mutations/{useDeleteAppAchievementMutation.js → useDeleteAppLimitWarningMutation.js} +7 -7
  15. package/admin/hooks/mutations/useDeleteOrgLimitWarningMutation.d.ts +38 -0
  16. package/{public/hooks/mutations/useDeleteSecretsModuleMutation.js → admin/hooks/mutations/useDeleteOrgLimitWarningMutation.js} +7 -7
  17. package/admin/hooks/mutations/useUpdateAppLimitWarningMutation.d.ts +40 -0
  18. package/admin/hooks/mutations/{useUpdateAppAchievementMutation.js → useUpdateAppLimitWarningMutation.js} +9 -9
  19. package/admin/hooks/mutations/useUpdateOrgLimitWarningMutation.d.ts +40 -0
  20. package/admin/hooks/mutations/{useUpdateAppLevelRequirementMutation.js → useUpdateOrgLimitWarningMutation.js} +9 -9
  21. package/admin/hooks/queries/index.d.ts +6 -12
  22. package/admin/hooks/queries/index.js +6 -12
  23. package/admin/hooks/queries/useAppLimitWarningQuery.d.ts +65 -0
  24. package/admin/hooks/queries/{useAppAchievementQuery.js → useAppLimitWarningQuery.js} +14 -14
  25. package/admin/hooks/queries/useAppLimitWarningsQuery.d.ts +69 -0
  26. package/{public/hooks/queries/useAppStepsQuery.js → admin/hooks/queries/useAppLimitWarningsQuery.js} +14 -14
  27. package/admin/hooks/queries/useOrgLimitWarningQuery.d.ts +65 -0
  28. package/admin/hooks/queries/{useAppStepQuery.js → useOrgLimitWarningQuery.js} +14 -14
  29. package/admin/hooks/queries/useOrgLimitWarningsQuery.d.ts +69 -0
  30. package/admin/hooks/queries/useOrgLimitWarningsQuery.js +38 -0
  31. package/admin/hooks/query-keys.d.ts +42 -74
  32. package/admin/hooks/query-keys.js +25 -43
  33. package/admin/orm/index.d.ts +6 -20
  34. package/admin/orm/index.js +6 -10
  35. package/admin/orm/input-types.d.ts +488 -768
  36. package/admin/orm/models/appLimitWarning.d.ts +54 -0
  37. package/{public/orm/models/secretsModule.js → admin/orm/models/appLimitWarning.js} +27 -27
  38. package/admin/orm/models/index.d.ts +3 -5
  39. package/admin/orm/models/index.js +7 -11
  40. package/admin/orm/models/orgLimitWarning.d.ts +54 -0
  41. package/admin/orm/models/{appAchievement.js → orgLimitWarning.js} +27 -27
  42. package/admin/orm/query/index.d.ts +1 -28
  43. package/admin/orm/query/index.js +0 -44
  44. package/admin/schema-types.d.ts +372 -572
  45. package/admin/types.d.ts +28 -48
  46. package/esm/admin/hooks/index.d.ts +1 -1
  47. package/esm/admin/hooks/index.js +1 -1
  48. package/esm/admin/hooks/invalidation.d.ts +18 -30
  49. package/esm/admin/hooks/invalidation.js +49 -81
  50. package/esm/admin/hooks/mutation-keys.d.ts +36 -60
  51. package/esm/admin/hooks/mutation-keys.js +21 -35
  52. package/esm/admin/hooks/mutations/index.d.ts +9 -15
  53. package/esm/admin/hooks/mutations/index.js +9 -15
  54. package/esm/admin/hooks/mutations/useCreateAppLimitWarningMutation.d.ts +34 -0
  55. package/esm/admin/hooks/mutations/{useCreateAppAchievementMutation.js → useCreateAppLimitWarningMutation.js} +7 -7
  56. package/esm/admin/hooks/mutations/useCreateOrgLimitWarningMutation.d.ts +34 -0
  57. package/esm/admin/hooks/mutations/{useCreateAppLevelRequirementMutation.js → useCreateOrgLimitWarningMutation.js} +7 -7
  58. package/esm/admin/hooks/mutations/useDeleteAppLimitWarningMutation.d.ts +38 -0
  59. package/esm/admin/hooks/mutations/{useDeleteAppAchievementMutation.js → useDeleteAppLimitWarningMutation.js} +8 -8
  60. package/esm/admin/hooks/mutations/useDeleteOrgLimitWarningMutation.d.ts +38 -0
  61. package/esm/admin/hooks/mutations/{useDeleteAppLevelRequirementMutation.js → useDeleteOrgLimitWarningMutation.js} +8 -8
  62. package/esm/admin/hooks/mutations/useUpdateAppLimitWarningMutation.d.ts +40 -0
  63. package/esm/admin/hooks/mutations/{useUpdateAppAchievementMutation.js → useUpdateAppLimitWarningMutation.js} +10 -10
  64. package/esm/admin/hooks/mutations/useUpdateOrgLimitWarningMutation.d.ts +40 -0
  65. package/esm/admin/hooks/mutations/{useUpdateAppLevelRequirementMutation.js → useUpdateOrgLimitWarningMutation.js} +10 -10
  66. package/esm/admin/hooks/queries/index.d.ts +6 -12
  67. package/esm/admin/hooks/queries/index.js +6 -12
  68. package/esm/admin/hooks/queries/useAppLimitWarningQuery.d.ts +65 -0
  69. package/esm/admin/hooks/queries/{useAppLevelRequirementQuery.js → useAppLimitWarningQuery.js} +11 -11
  70. package/esm/admin/hooks/queries/useAppLimitWarningsQuery.d.ts +69 -0
  71. package/esm/admin/hooks/queries/useAppLimitWarningsQuery.js +32 -0
  72. package/esm/admin/hooks/queries/useOrgLimitWarningQuery.d.ts +65 -0
  73. package/esm/admin/hooks/queries/{useAppStepQuery.js → useOrgLimitWarningQuery.js} +11 -11
  74. package/esm/admin/hooks/queries/useOrgLimitWarningsQuery.d.ts +69 -0
  75. package/esm/admin/hooks/queries/useOrgLimitWarningsQuery.js +32 -0
  76. package/esm/admin/hooks/query-keys.d.ts +42 -74
  77. package/esm/admin/hooks/query-keys.js +24 -42
  78. package/esm/admin/orm/index.d.ts +6 -20
  79. package/esm/admin/orm/index.js +6 -10
  80. package/esm/admin/orm/input-types.d.ts +488 -768
  81. package/esm/admin/orm/models/appLimitWarning.d.ts +54 -0
  82. package/esm/admin/orm/models/{appLevel.js → appLimitWarning.js} +25 -25
  83. package/esm/admin/orm/models/index.d.ts +3 -5
  84. package/esm/admin/orm/models/index.js +3 -5
  85. package/esm/admin/orm/models/orgLimitWarning.d.ts +54 -0
  86. package/esm/admin/orm/models/{appAchievement.js → orgLimitWarning.js} +25 -25
  87. package/esm/admin/orm/query/index.d.ts +1 -28
  88. package/esm/admin/orm/query/index.js +0 -44
  89. package/esm/admin/schema-types.d.ts +372 -572
  90. package/esm/admin/types.d.ts +28 -48
  91. package/esm/public/hooks/index.d.ts +1 -1
  92. package/esm/public/hooks/index.js +1 -1
  93. package/esm/public/hooks/invalidation.d.ts +27 -33
  94. package/esm/public/hooks/invalidation.js +60 -76
  95. package/esm/public/hooks/mutation-keys.d.ts +54 -66
  96. package/esm/public/hooks/mutation-keys.js +35 -39
  97. package/esm/public/hooks/mutations/index.d.ts +15 -18
  98. package/esm/public/hooks/mutations/index.js +15 -18
  99. package/esm/public/hooks/mutations/useCreateAppLimitWarningMutation.d.ts +34 -0
  100. package/esm/{admin/hooks/mutations/useCreateAppStepMutation.js → public/hooks/mutations/useCreateAppLimitWarningMutation.js} +7 -7
  101. package/esm/public/hooks/mutations/useCreateEventsModuleMutation.d.ts +34 -0
  102. package/esm/public/hooks/mutations/{useCreateLevelsModuleMutation.js → useCreateEventsModuleMutation.js} +7 -7
  103. package/esm/public/hooks/mutations/useCreateOrgLimitWarningMutation.d.ts +34 -0
  104. package/esm/public/hooks/mutations/useCreateOrgLimitWarningMutation.js +31 -0
  105. package/esm/public/hooks/mutations/useCreateRateLimitMetersModuleMutation.d.ts +34 -0
  106. package/esm/public/hooks/mutations/{useCreateAppLevelMutation.js → useCreateRateLimitMetersModuleMutation.js} +7 -7
  107. package/esm/public/hooks/mutations/useCreateUserStateModuleMutation.d.ts +34 -0
  108. package/esm/{admin/hooks/mutations/useCreateAppLevelMutation.js → public/hooks/mutations/useCreateUserStateModuleMutation.js} +7 -7
  109. package/esm/public/hooks/mutations/useDeleteAppLimitWarningMutation.d.ts +38 -0
  110. package/esm/{admin/hooks/mutations/useDeleteAppStepMutation.js → public/hooks/mutations/useDeleteAppLimitWarningMutation.js} +8 -8
  111. package/esm/public/hooks/mutations/useDeleteEventsModuleMutation.d.ts +38 -0
  112. package/esm/public/hooks/mutations/{useDeleteLevelsModuleMutation.js → useDeleteEventsModuleMutation.js} +8 -8
  113. package/esm/public/hooks/mutations/useDeleteOrgLimitWarningMutation.d.ts +38 -0
  114. package/esm/public/hooks/mutations/useDeleteOrgLimitWarningMutation.js +36 -0
  115. package/esm/public/hooks/mutations/useDeleteRateLimitMetersModuleMutation.d.ts +38 -0
  116. package/esm/{admin/hooks/mutations/useDeleteAppLevelMutation.js → public/hooks/mutations/useDeleteRateLimitMetersModuleMutation.js} +8 -8
  117. package/esm/public/hooks/mutations/useDeleteUserStateModuleMutation.d.ts +38 -0
  118. package/esm/public/hooks/mutations/{useDeleteAppLevelMutation.js → useDeleteUserStateModuleMutation.js} +8 -8
  119. package/esm/public/hooks/mutations/useUpdateAppLimitWarningMutation.d.ts +40 -0
  120. package/esm/{admin/hooks/mutations/useUpdateAppStepMutation.js → public/hooks/mutations/useUpdateAppLimitWarningMutation.js} +10 -10
  121. package/esm/public/hooks/mutations/useUpdateEventsModuleMutation.d.ts +40 -0
  122. package/esm/public/hooks/mutations/{useUpdateLevelsModuleMutation.js → useUpdateEventsModuleMutation.js} +10 -10
  123. package/esm/public/hooks/mutations/useUpdateOrgLimitWarningMutation.d.ts +40 -0
  124. package/esm/public/hooks/mutations/useUpdateOrgLimitWarningMutation.js +37 -0
  125. package/esm/public/hooks/mutations/useUpdateRateLimitMetersModuleMutation.d.ts +40 -0
  126. package/esm/public/hooks/mutations/{useUpdateSecretsModuleMutation.js → useUpdateRateLimitMetersModuleMutation.js} +10 -10
  127. package/esm/public/hooks/mutations/useUpdateUserStateModuleMutation.d.ts +40 -0
  128. package/esm/{admin/hooks/mutations/useUpdateAppLevelMutation.js → public/hooks/mutations/useUpdateUserStateModuleMutation.js} +10 -10
  129. package/esm/public/hooks/queries/index.d.ts +10 -14
  130. package/esm/public/hooks/queries/index.js +10 -14
  131. package/esm/public/hooks/queries/useAppLimitWarningQuery.d.ts +65 -0
  132. package/esm/{admin/hooks/queries/useAppAchievementQuery.js → public/hooks/queries/useAppLimitWarningQuery.js} +11 -11
  133. package/esm/public/hooks/queries/useAppLimitWarningsQuery.d.ts +69 -0
  134. package/esm/public/hooks/queries/useAppLimitWarningsQuery.js +32 -0
  135. package/esm/public/hooks/queries/useEventsModuleQuery.d.ts +65 -0
  136. package/esm/public/hooks/queries/{useLevelsModuleQuery.js → useEventsModuleQuery.js} +11 -11
  137. package/esm/public/hooks/queries/useEventsModulesQuery.d.ts +69 -0
  138. package/esm/public/hooks/queries/{useLevelsModulesQuery.js → useEventsModulesQuery.js} +11 -11
  139. package/esm/public/hooks/queries/useOrgLimitWarningQuery.d.ts +65 -0
  140. package/esm/public/hooks/queries/useOrgLimitWarningQuery.js +47 -0
  141. package/esm/public/hooks/queries/useOrgLimitWarningsQuery.d.ts +69 -0
  142. package/esm/public/hooks/queries/useOrgLimitWarningsQuery.js +32 -0
  143. package/esm/public/hooks/queries/useRateLimitMetersModuleQuery.d.ts +65 -0
  144. package/esm/public/hooks/queries/{useAppLevelQuery.js → useRateLimitMetersModuleQuery.js} +11 -11
  145. package/esm/public/hooks/queries/useRateLimitMetersModulesQuery.d.ts +69 -0
  146. package/esm/public/hooks/queries/useRateLimitMetersModulesQuery.js +32 -0
  147. package/esm/public/hooks/queries/useUserStateModuleQuery.d.ts +65 -0
  148. package/esm/{admin/hooks/queries/useAppLevelQuery.js → public/hooks/queries/useUserStateModuleQuery.js} +11 -11
  149. package/esm/public/hooks/queries/useUserStateModulesQuery.d.ts +69 -0
  150. package/esm/public/hooks/queries/{useAppLevelsQuery.js → useUserStateModulesQuery.js} +11 -11
  151. package/esm/public/hooks/query-keys.d.ts +64 -82
  152. package/esm/public/hooks/query-keys.js +37 -47
  153. package/esm/public/orm/index.d.ts +10 -22
  154. package/esm/public/orm/index.js +10 -12
  155. package/esm/public/orm/input-types.d.ts +1024 -919
  156. package/esm/public/orm/input-types.js +3 -5
  157. package/esm/public/orm/models/appLimitWarning.d.ts +54 -0
  158. package/esm/public/orm/models/{appAchievement.js → appLimitWarning.js} +25 -25
  159. package/esm/public/orm/models/eventsModule.d.ts +54 -0
  160. package/esm/public/orm/models/{levelsModule.js → eventsModule.js} +25 -25
  161. package/esm/public/orm/models/index.d.ts +5 -6
  162. package/esm/public/orm/models/index.js +5 -6
  163. package/esm/public/orm/models/orgLimitWarning.d.ts +54 -0
  164. package/esm/{admin/orm/models/appStep.js → public/orm/models/orgLimitWarning.js} +25 -25
  165. package/esm/public/orm/models/rateLimitMetersModule.d.ts +54 -0
  166. package/esm/{admin/orm/models/appLevelRequirement.js → public/orm/models/rateLimitMetersModule.js} +25 -25
  167. package/esm/public/orm/models/userStateModule.d.ts +54 -0
  168. package/esm/public/orm/models/userStateModule.js +100 -0
  169. package/esm/public/orm/mutation/index.d.ts +2 -2
  170. package/esm/public/orm/query/index.d.ts +1 -28
  171. package/esm/public/orm/query/index.js +0 -44
  172. package/esm/public/schema-types.d.ts +750 -731
  173. package/esm/public/types.d.ts +65 -50
  174. package/package.json +4 -4
  175. package/public/hooks/index.d.ts +1 -1
  176. package/public/hooks/index.js +1 -1
  177. package/public/hooks/invalidation.d.ts +27 -33
  178. package/public/hooks/invalidation.js +59 -75
  179. package/public/hooks/mutation-keys.d.ts +54 -66
  180. package/public/hooks/mutation-keys.js +38 -43
  181. package/public/hooks/mutations/index.d.ts +15 -18
  182. package/public/hooks/mutations/index.js +15 -18
  183. package/public/hooks/mutations/useCreateAppLimitWarningMutation.d.ts +34 -0
  184. package/{admin/hooks/mutations/useCreateAppStepMutation.js → public/hooks/mutations/useCreateAppLimitWarningMutation.js} +6 -6
  185. package/public/hooks/mutations/useCreateEventsModuleMutation.d.ts +34 -0
  186. package/public/hooks/mutations/{useCreateLevelsModuleMutation.js → useCreateEventsModuleMutation.js} +6 -6
  187. package/public/hooks/mutations/useCreateOrgLimitWarningMutation.d.ts +34 -0
  188. package/public/hooks/mutations/useCreateOrgLimitWarningMutation.js +34 -0
  189. package/public/hooks/mutations/useCreateRateLimitMetersModuleMutation.d.ts +34 -0
  190. package/public/hooks/mutations/{useCreateAppStepMutation.js → useCreateRateLimitMetersModuleMutation.js} +6 -6
  191. package/public/hooks/mutations/useCreateUserStateModuleMutation.d.ts +34 -0
  192. package/public/hooks/mutations/{useCreateAppLevelMutation.js → useCreateUserStateModuleMutation.js} +6 -6
  193. package/public/hooks/mutations/useDeleteAppLimitWarningMutation.d.ts +38 -0
  194. package/{admin/hooks/mutations/useDeleteAppLevelRequirementMutation.js → public/hooks/mutations/useDeleteAppLimitWarningMutation.js} +7 -7
  195. package/public/hooks/mutations/useDeleteEventsModuleMutation.d.ts +38 -0
  196. package/public/hooks/mutations/{useDeleteLevelsModuleMutation.js → useDeleteEventsModuleMutation.js} +7 -7
  197. package/public/hooks/mutations/useDeleteOrgLimitWarningMutation.d.ts +38 -0
  198. package/{admin/hooks/mutations/useDeleteAppStepMutation.js → public/hooks/mutations/useDeleteOrgLimitWarningMutation.js} +7 -7
  199. package/public/hooks/mutations/useDeleteRateLimitMetersModuleMutation.d.ts +38 -0
  200. package/{admin/hooks/mutations/useDeleteAppLevelMutation.js → public/hooks/mutations/useDeleteRateLimitMetersModuleMutation.js} +7 -7
  201. package/public/hooks/mutations/useDeleteUserStateModuleMutation.d.ts +38 -0
  202. package/public/hooks/mutations/{useDeleteAppLevelMutation.js → useDeleteUserStateModuleMutation.js} +7 -7
  203. package/public/hooks/mutations/useUpdateAppLimitWarningMutation.d.ts +40 -0
  204. package/{admin/hooks/mutations/useUpdateAppStepMutation.js → public/hooks/mutations/useUpdateAppLimitWarningMutation.js} +9 -9
  205. package/public/hooks/mutations/useUpdateEventsModuleMutation.d.ts +40 -0
  206. package/public/hooks/mutations/{useUpdateLevelsModuleMutation.js → useUpdateEventsModuleMutation.js} +9 -9
  207. package/public/hooks/mutations/useUpdateOrgLimitWarningMutation.d.ts +40 -0
  208. package/public/hooks/mutations/useUpdateOrgLimitWarningMutation.js +40 -0
  209. package/public/hooks/mutations/useUpdateRateLimitMetersModuleMutation.d.ts +40 -0
  210. package/public/hooks/mutations/{useUpdateAppLevelMutation.js → useUpdateRateLimitMetersModuleMutation.js} +9 -9
  211. package/public/hooks/mutations/useUpdateUserStateModuleMutation.d.ts +40 -0
  212. package/{admin/hooks/mutations/useUpdateAppLevelMutation.js → public/hooks/mutations/useUpdateUserStateModuleMutation.js} +9 -9
  213. package/public/hooks/queries/index.d.ts +10 -14
  214. package/public/hooks/queries/index.js +10 -14
  215. package/public/hooks/queries/useAppLimitWarningQuery.d.ts +65 -0
  216. package/{admin/hooks/queries/useAppLevelQuery.js → public/hooks/queries/useAppLimitWarningQuery.js} +14 -14
  217. package/public/hooks/queries/useAppLimitWarningsQuery.d.ts +69 -0
  218. package/{admin/hooks/queries/useAppStepsQuery.js → public/hooks/queries/useAppLimitWarningsQuery.js} +14 -14
  219. package/public/hooks/queries/useEventsModuleQuery.d.ts +65 -0
  220. package/public/hooks/queries/{useLevelsModuleQuery.js → useEventsModuleQuery.js} +14 -14
  221. package/public/hooks/queries/useEventsModulesQuery.d.ts +69 -0
  222. package/public/hooks/queries/{useLevelsModulesQuery.js → useEventsModulesQuery.js} +14 -14
  223. package/public/hooks/queries/useOrgLimitWarningQuery.d.ts +65 -0
  224. package/public/hooks/queries/{useAppAchievementQuery.js → useOrgLimitWarningQuery.js} +14 -14
  225. package/public/hooks/queries/useOrgLimitWarningsQuery.d.ts +69 -0
  226. package/public/hooks/queries/useOrgLimitWarningsQuery.js +38 -0
  227. package/public/hooks/queries/useRateLimitMetersModuleQuery.d.ts +65 -0
  228. package/public/hooks/queries/{useAppLevelRequirementQuery.js → useRateLimitMetersModuleQuery.js} +14 -14
  229. package/public/hooks/queries/useRateLimitMetersModulesQuery.d.ts +69 -0
  230. package/public/hooks/queries/useRateLimitMetersModulesQuery.js +38 -0
  231. package/public/hooks/queries/useUserStateModuleQuery.d.ts +65 -0
  232. package/public/hooks/queries/{useAppLevelQuery.js → useUserStateModuleQuery.js} +14 -14
  233. package/public/hooks/queries/useUserStateModulesQuery.d.ts +69 -0
  234. package/public/hooks/queries/useUserStateModulesQuery.js +38 -0
  235. package/public/hooks/query-keys.d.ts +64 -82
  236. package/public/hooks/query-keys.js +40 -51
  237. package/public/orm/index.d.ts +10 -22
  238. package/public/orm/index.js +10 -12
  239. package/public/orm/input-types.d.ts +1024 -919
  240. package/public/orm/input-types.js +3 -5
  241. package/public/orm/models/appLimitWarning.d.ts +54 -0
  242. package/{admin/orm/models/appStep.js → public/orm/models/appLimitWarning.js} +27 -27
  243. package/public/orm/models/eventsModule.d.ts +54 -0
  244. package/public/orm/models/{levelsModule.js → eventsModule.js} +27 -27
  245. package/public/orm/models/index.d.ts +5 -6
  246. package/public/orm/models/index.js +13 -15
  247. package/public/orm/models/orgLimitWarning.d.ts +54 -0
  248. package/{admin/orm/models/appLevel.js → public/orm/models/orgLimitWarning.js} +27 -27
  249. package/public/orm/models/rateLimitMetersModule.d.ts +54 -0
  250. package/public/orm/models/{appLevel.js → rateLimitMetersModule.js} +27 -27
  251. package/public/orm/models/userStateModule.d.ts +54 -0
  252. package/public/orm/models/{appAchievement.js → userStateModule.js} +27 -27
  253. package/public/orm/mutation/index.d.ts +2 -2
  254. package/public/orm/query/index.d.ts +1 -28
  255. package/public/orm/query/index.js +0 -44
  256. package/public/schema-types.d.ts +750 -731
  257. package/public/types.d.ts +65 -50
  258. package/admin/hooks/mutations/useCreateAppAchievementMutation.d.ts +0 -34
  259. package/admin/hooks/mutations/useCreateAppLevelMutation.d.ts +0 -34
  260. package/admin/hooks/mutations/useCreateAppLevelRequirementMutation.d.ts +0 -34
  261. package/admin/hooks/mutations/useCreateAppLevelRequirementMutation.js +0 -34
  262. package/admin/hooks/mutations/useCreateAppStepMutation.d.ts +0 -34
  263. package/admin/hooks/mutations/useDeleteAppAchievementMutation.d.ts +0 -38
  264. package/admin/hooks/mutations/useDeleteAppLevelMutation.d.ts +0 -38
  265. package/admin/hooks/mutations/useDeleteAppLevelRequirementMutation.d.ts +0 -38
  266. package/admin/hooks/mutations/useDeleteAppStepMutation.d.ts +0 -38
  267. package/admin/hooks/mutations/useUpdateAppAchievementMutation.d.ts +0 -40
  268. package/admin/hooks/mutations/useUpdateAppLevelMutation.d.ts +0 -40
  269. package/admin/hooks/mutations/useUpdateAppLevelRequirementMutation.d.ts +0 -40
  270. package/admin/hooks/mutations/useUpdateAppStepMutation.d.ts +0 -40
  271. package/admin/hooks/queries/useAppAchievementQuery.d.ts +0 -65
  272. package/admin/hooks/queries/useAppAchievementsQuery.d.ts +0 -69
  273. package/admin/hooks/queries/useAppAchievementsQuery.js +0 -38
  274. package/admin/hooks/queries/useAppLevelQuery.d.ts +0 -65
  275. package/admin/hooks/queries/useAppLevelRequirementQuery.d.ts +0 -65
  276. package/admin/hooks/queries/useAppLevelRequirementQuery.js +0 -53
  277. package/admin/hooks/queries/useAppLevelRequirementsQuery.d.ts +0 -69
  278. package/admin/hooks/queries/useAppLevelRequirementsQuery.js +0 -38
  279. package/admin/hooks/queries/useAppLevelsQuery.d.ts +0 -69
  280. package/admin/hooks/queries/useAppLevelsQuery.js +0 -38
  281. package/admin/hooks/queries/useAppStepQuery.d.ts +0 -65
  282. package/admin/hooks/queries/useAppStepsQuery.d.ts +0 -69
  283. package/admin/hooks/queries/useStepsAchievedQuery.d.ts +0 -53
  284. package/admin/hooks/queries/useStepsAchievedQuery.js +0 -53
  285. package/admin/hooks/queries/useStepsRequiredQuery.d.ts +0 -54
  286. package/admin/hooks/queries/useStepsRequiredQuery.js +0 -53
  287. package/admin/orm/models/appAchievement.d.ts +0 -54
  288. package/admin/orm/models/appLevel.d.ts +0 -54
  289. package/admin/orm/models/appLevelRequirement.d.ts +0 -54
  290. package/admin/orm/models/appLevelRequirement.js +0 -104
  291. package/admin/orm/models/appStep.d.ts +0 -54
  292. package/esm/admin/hooks/mutations/useCreateAppAchievementMutation.d.ts +0 -34
  293. package/esm/admin/hooks/mutations/useCreateAppLevelMutation.d.ts +0 -34
  294. package/esm/admin/hooks/mutations/useCreateAppLevelRequirementMutation.d.ts +0 -34
  295. package/esm/admin/hooks/mutations/useCreateAppStepMutation.d.ts +0 -34
  296. package/esm/admin/hooks/mutations/useDeleteAppAchievementMutation.d.ts +0 -38
  297. package/esm/admin/hooks/mutations/useDeleteAppLevelMutation.d.ts +0 -38
  298. package/esm/admin/hooks/mutations/useDeleteAppLevelRequirementMutation.d.ts +0 -38
  299. package/esm/admin/hooks/mutations/useDeleteAppStepMutation.d.ts +0 -38
  300. package/esm/admin/hooks/mutations/useUpdateAppAchievementMutation.d.ts +0 -40
  301. package/esm/admin/hooks/mutations/useUpdateAppLevelMutation.d.ts +0 -40
  302. package/esm/admin/hooks/mutations/useUpdateAppLevelRequirementMutation.d.ts +0 -40
  303. package/esm/admin/hooks/mutations/useUpdateAppStepMutation.d.ts +0 -40
  304. package/esm/admin/hooks/queries/useAppAchievementQuery.d.ts +0 -65
  305. package/esm/admin/hooks/queries/useAppAchievementsQuery.d.ts +0 -69
  306. package/esm/admin/hooks/queries/useAppAchievementsQuery.js +0 -32
  307. package/esm/admin/hooks/queries/useAppLevelQuery.d.ts +0 -65
  308. package/esm/admin/hooks/queries/useAppLevelRequirementQuery.d.ts +0 -65
  309. package/esm/admin/hooks/queries/useAppLevelRequirementsQuery.d.ts +0 -69
  310. package/esm/admin/hooks/queries/useAppLevelRequirementsQuery.js +0 -32
  311. package/esm/admin/hooks/queries/useAppLevelsQuery.d.ts +0 -69
  312. package/esm/admin/hooks/queries/useAppLevelsQuery.js +0 -32
  313. package/esm/admin/hooks/queries/useAppStepQuery.d.ts +0 -65
  314. package/esm/admin/hooks/queries/useAppStepsQuery.d.ts +0 -69
  315. package/esm/admin/hooks/queries/useAppStepsQuery.js +0 -32
  316. package/esm/admin/hooks/queries/useStepsAchievedQuery.d.ts +0 -53
  317. package/esm/admin/hooks/queries/useStepsAchievedQuery.js +0 -47
  318. package/esm/admin/hooks/queries/useStepsRequiredQuery.d.ts +0 -54
  319. package/esm/admin/hooks/queries/useStepsRequiredQuery.js +0 -47
  320. package/esm/admin/orm/models/appAchievement.d.ts +0 -54
  321. package/esm/admin/orm/models/appLevel.d.ts +0 -54
  322. package/esm/admin/orm/models/appLevelRequirement.d.ts +0 -54
  323. package/esm/admin/orm/models/appStep.d.ts +0 -54
  324. package/esm/public/hooks/mutations/useCreateAppAchievementMutation.d.ts +0 -34
  325. package/esm/public/hooks/mutations/useCreateAppAchievementMutation.js +0 -31
  326. package/esm/public/hooks/mutations/useCreateAppLevelMutation.d.ts +0 -34
  327. package/esm/public/hooks/mutations/useCreateAppLevelRequirementMutation.d.ts +0 -34
  328. package/esm/public/hooks/mutations/useCreateAppLevelRequirementMutation.js +0 -31
  329. package/esm/public/hooks/mutations/useCreateAppStepMutation.d.ts +0 -34
  330. package/esm/public/hooks/mutations/useCreateAppStepMutation.js +0 -31
  331. package/esm/public/hooks/mutations/useCreateLevelsModuleMutation.d.ts +0 -34
  332. package/esm/public/hooks/mutations/useCreateSecretsModuleMutation.d.ts +0 -34
  333. package/esm/public/hooks/mutations/useCreateSecretsModuleMutation.js +0 -31
  334. package/esm/public/hooks/mutations/useDeleteAppAchievementMutation.d.ts +0 -38
  335. package/esm/public/hooks/mutations/useDeleteAppAchievementMutation.js +0 -36
  336. package/esm/public/hooks/mutations/useDeleteAppLevelMutation.d.ts +0 -38
  337. package/esm/public/hooks/mutations/useDeleteAppLevelRequirementMutation.d.ts +0 -38
  338. package/esm/public/hooks/mutations/useDeleteAppLevelRequirementMutation.js +0 -36
  339. package/esm/public/hooks/mutations/useDeleteAppStepMutation.d.ts +0 -38
  340. package/esm/public/hooks/mutations/useDeleteAppStepMutation.js +0 -36
  341. package/esm/public/hooks/mutations/useDeleteLevelsModuleMutation.d.ts +0 -38
  342. package/esm/public/hooks/mutations/useDeleteSecretsModuleMutation.d.ts +0 -38
  343. package/esm/public/hooks/mutations/useDeleteSecretsModuleMutation.js +0 -36
  344. package/esm/public/hooks/mutations/useUpdateAppAchievementMutation.d.ts +0 -40
  345. package/esm/public/hooks/mutations/useUpdateAppAchievementMutation.js +0 -37
  346. package/esm/public/hooks/mutations/useUpdateAppLevelMutation.d.ts +0 -40
  347. package/esm/public/hooks/mutations/useUpdateAppLevelMutation.js +0 -37
  348. package/esm/public/hooks/mutations/useUpdateAppLevelRequirementMutation.d.ts +0 -40
  349. package/esm/public/hooks/mutations/useUpdateAppLevelRequirementMutation.js +0 -37
  350. package/esm/public/hooks/mutations/useUpdateAppStepMutation.d.ts +0 -40
  351. package/esm/public/hooks/mutations/useUpdateAppStepMutation.js +0 -37
  352. package/esm/public/hooks/mutations/useUpdateLevelsModuleMutation.d.ts +0 -40
  353. package/esm/public/hooks/mutations/useUpdateSecretsModuleMutation.d.ts +0 -40
  354. package/esm/public/hooks/queries/useAppAchievementQuery.d.ts +0 -65
  355. package/esm/public/hooks/queries/useAppAchievementQuery.js +0 -47
  356. package/esm/public/hooks/queries/useAppAchievementsQuery.d.ts +0 -69
  357. package/esm/public/hooks/queries/useAppAchievementsQuery.js +0 -32
  358. package/esm/public/hooks/queries/useAppLevelQuery.d.ts +0 -65
  359. package/esm/public/hooks/queries/useAppLevelRequirementQuery.d.ts +0 -65
  360. package/esm/public/hooks/queries/useAppLevelRequirementQuery.js +0 -47
  361. package/esm/public/hooks/queries/useAppLevelRequirementsQuery.d.ts +0 -69
  362. package/esm/public/hooks/queries/useAppLevelRequirementsQuery.js +0 -32
  363. package/esm/public/hooks/queries/useAppLevelsQuery.d.ts +0 -69
  364. package/esm/public/hooks/queries/useAppStepQuery.d.ts +0 -65
  365. package/esm/public/hooks/queries/useAppStepQuery.js +0 -47
  366. package/esm/public/hooks/queries/useAppStepsQuery.d.ts +0 -69
  367. package/esm/public/hooks/queries/useAppStepsQuery.js +0 -32
  368. package/esm/public/hooks/queries/useLevelsModuleQuery.d.ts +0 -65
  369. package/esm/public/hooks/queries/useLevelsModulesQuery.d.ts +0 -69
  370. package/esm/public/hooks/queries/useSecretsModuleQuery.d.ts +0 -65
  371. package/esm/public/hooks/queries/useSecretsModuleQuery.js +0 -47
  372. package/esm/public/hooks/queries/useSecretsModulesQuery.d.ts +0 -69
  373. package/esm/public/hooks/queries/useSecretsModulesQuery.js +0 -32
  374. package/esm/public/hooks/queries/useStepsAchievedQuery.d.ts +0 -53
  375. package/esm/public/hooks/queries/useStepsAchievedQuery.js +0 -47
  376. package/esm/public/hooks/queries/useStepsRequiredQuery.d.ts +0 -54
  377. package/esm/public/hooks/queries/useStepsRequiredQuery.js +0 -47
  378. package/esm/public/orm/models/appAchievement.d.ts +0 -54
  379. package/esm/public/orm/models/appLevel.d.ts +0 -54
  380. package/esm/public/orm/models/appLevel.js +0 -100
  381. package/esm/public/orm/models/appLevelRequirement.d.ts +0 -54
  382. package/esm/public/orm/models/appLevelRequirement.js +0 -100
  383. package/esm/public/orm/models/appStep.d.ts +0 -54
  384. package/esm/public/orm/models/appStep.js +0 -100
  385. package/esm/public/orm/models/levelsModule.d.ts +0 -54
  386. package/esm/public/orm/models/secretsModule.d.ts +0 -54
  387. package/esm/public/orm/models/secretsModule.js +0 -100
  388. package/public/hooks/mutations/useCreateAppAchievementMutation.d.ts +0 -34
  389. package/public/hooks/mutations/useCreateAppAchievementMutation.js +0 -34
  390. package/public/hooks/mutations/useCreateAppLevelMutation.d.ts +0 -34
  391. package/public/hooks/mutations/useCreateAppLevelRequirementMutation.d.ts +0 -34
  392. package/public/hooks/mutations/useCreateAppLevelRequirementMutation.js +0 -34
  393. package/public/hooks/mutations/useCreateAppStepMutation.d.ts +0 -34
  394. package/public/hooks/mutations/useCreateLevelsModuleMutation.d.ts +0 -34
  395. package/public/hooks/mutations/useCreateSecretsModuleMutation.d.ts +0 -34
  396. package/public/hooks/mutations/useCreateSecretsModuleMutation.js +0 -34
  397. package/public/hooks/mutations/useDeleteAppAchievementMutation.d.ts +0 -38
  398. package/public/hooks/mutations/useDeleteAppAchievementMutation.js +0 -39
  399. package/public/hooks/mutations/useDeleteAppLevelMutation.d.ts +0 -38
  400. package/public/hooks/mutations/useDeleteAppLevelRequirementMutation.d.ts +0 -38
  401. package/public/hooks/mutations/useDeleteAppLevelRequirementMutation.js +0 -39
  402. package/public/hooks/mutations/useDeleteAppStepMutation.d.ts +0 -38
  403. package/public/hooks/mutations/useDeleteAppStepMutation.js +0 -39
  404. package/public/hooks/mutations/useDeleteLevelsModuleMutation.d.ts +0 -38
  405. package/public/hooks/mutations/useDeleteSecretsModuleMutation.d.ts +0 -38
  406. package/public/hooks/mutations/useUpdateAppAchievementMutation.d.ts +0 -40
  407. package/public/hooks/mutations/useUpdateAppAchievementMutation.js +0 -40
  408. package/public/hooks/mutations/useUpdateAppLevelMutation.d.ts +0 -40
  409. package/public/hooks/mutations/useUpdateAppLevelRequirementMutation.d.ts +0 -40
  410. package/public/hooks/mutations/useUpdateAppLevelRequirementMutation.js +0 -40
  411. package/public/hooks/mutations/useUpdateAppStepMutation.d.ts +0 -40
  412. package/public/hooks/mutations/useUpdateAppStepMutation.js +0 -40
  413. package/public/hooks/mutations/useUpdateLevelsModuleMutation.d.ts +0 -40
  414. package/public/hooks/mutations/useUpdateSecretsModuleMutation.d.ts +0 -40
  415. package/public/hooks/mutations/useUpdateSecretsModuleMutation.js +0 -40
  416. package/public/hooks/queries/useAppAchievementQuery.d.ts +0 -65
  417. package/public/hooks/queries/useAppAchievementsQuery.d.ts +0 -69
  418. package/public/hooks/queries/useAppAchievementsQuery.js +0 -38
  419. package/public/hooks/queries/useAppLevelQuery.d.ts +0 -65
  420. package/public/hooks/queries/useAppLevelRequirementQuery.d.ts +0 -65
  421. package/public/hooks/queries/useAppLevelRequirementsQuery.d.ts +0 -69
  422. package/public/hooks/queries/useAppLevelRequirementsQuery.js +0 -38
  423. package/public/hooks/queries/useAppLevelsQuery.d.ts +0 -69
  424. package/public/hooks/queries/useAppLevelsQuery.js +0 -38
  425. package/public/hooks/queries/useAppStepQuery.d.ts +0 -65
  426. package/public/hooks/queries/useAppStepQuery.js +0 -53
  427. package/public/hooks/queries/useAppStepsQuery.d.ts +0 -69
  428. package/public/hooks/queries/useLevelsModuleQuery.d.ts +0 -65
  429. package/public/hooks/queries/useLevelsModulesQuery.d.ts +0 -69
  430. package/public/hooks/queries/useSecretsModuleQuery.d.ts +0 -65
  431. package/public/hooks/queries/useSecretsModuleQuery.js +0 -53
  432. package/public/hooks/queries/useSecretsModulesQuery.d.ts +0 -69
  433. package/public/hooks/queries/useSecretsModulesQuery.js +0 -38
  434. package/public/hooks/queries/useStepsAchievedQuery.d.ts +0 -53
  435. package/public/hooks/queries/useStepsAchievedQuery.js +0 -53
  436. package/public/hooks/queries/useStepsRequiredQuery.d.ts +0 -54
  437. package/public/hooks/queries/useStepsRequiredQuery.js +0 -53
  438. package/public/orm/models/appAchievement.d.ts +0 -54
  439. package/public/orm/models/appLevel.d.ts +0 -54
  440. package/public/orm/models/appLevelRequirement.d.ts +0 -54
  441. package/public/orm/models/appLevelRequirement.js +0 -104
  442. package/public/orm/models/appStep.d.ts +0 -54
  443. package/public/orm/models/appStep.js +0 -104
  444. package/public/orm/models/levelsModule.d.ts +0 -54
  445. package/public/orm/models/secretsModule.d.ts +0 -54
@@ -0,0 +1,65 @@
1
+ /**
2
+ * Warning configuration for soft limits. Each row defines a warning threshold and the job task to enqueue when usage approaches it.
3
+ * @generated by @constructive-io/graphql-codegen
4
+ * DO NOT EDIT - changes will be overwritten
5
+ */
6
+ import type { UseQueryOptions, UseQueryResult, QueryClient } from '@tanstack/react-query';
7
+ import type { AppLimitWarningSelect, AppLimitWarningWithRelations } from '../../orm/input-types';
8
+ import type { InferSelectResult, HookStrictSelect } from '../../orm/select-types';
9
+ export type { AppLimitWarningSelect, AppLimitWarningWithRelations } from '../../orm/input-types';
10
+ /** Query key factory - re-exported from query-keys.ts */
11
+ export declare const appLimitWarningQueryKey: (id: string | number) => readonly ["applimitwarning", "detail", string | number];
12
+ /**
13
+ * Warning configuration for soft limits. Each row defines a warning threshold and the job task to enqueue when usage approaches it.
14
+ *
15
+ * @example
16
+ * ```tsx
17
+ * const { data, isLoading } = useAppLimitWarningQuery({
18
+ * id: 'some-id',
19
+ * selection: { fields: { id: true, name: true } },
20
+ * });
21
+ * ```
22
+ */
23
+ export declare function useAppLimitWarningQuery<S extends AppLimitWarningSelect, TData = {
24
+ appLimitWarning: InferSelectResult<AppLimitWarningWithRelations, S> | null;
25
+ }>(params: {
26
+ id: string;
27
+ selection: {
28
+ fields: S;
29
+ } & HookStrictSelect<NoInfer<S>, AppLimitWarningSelect>;
30
+ } & Omit<UseQueryOptions<{
31
+ appLimitWarning: InferSelectResult<AppLimitWarningWithRelations, S> | null;
32
+ }, Error, TData>, 'queryKey' | 'queryFn'>): UseQueryResult<TData>;
33
+ /**
34
+ * Warning configuration for soft limits. Each row defines a warning threshold and the job task to enqueue when usage approaches it.
35
+ *
36
+ * @example
37
+ * ```ts
38
+ * const data = await fetchAppLimitWarningQuery({
39
+ * id: 'some-id',
40
+ * selection: { fields: { id: true } },
41
+ * });
42
+ * ```
43
+ */
44
+ export declare function fetchAppLimitWarningQuery<S extends AppLimitWarningSelect>(params: {
45
+ id: string;
46
+ selection: {
47
+ fields: S;
48
+ } & HookStrictSelect<NoInfer<S>, AppLimitWarningSelect>;
49
+ }): Promise<{
50
+ appLimitWarning: InferSelectResult<AppLimitWarningWithRelations, S> | null;
51
+ }>;
52
+ /**
53
+ * Warning configuration for soft limits. Each row defines a warning threshold and the job task to enqueue when usage approaches it.
54
+ *
55
+ * @example
56
+ * ```ts
57
+ * await prefetchAppLimitWarningQuery(queryClient, { id: 'some-id', selection: { fields: { id: true } } });
58
+ * ```
59
+ */
60
+ export declare function prefetchAppLimitWarningQuery<S extends AppLimitWarningSelect>(queryClient: QueryClient, params: {
61
+ id: string;
62
+ selection: {
63
+ fields: S;
64
+ } & HookStrictSelect<NoInfer<S>, AppLimitWarningSelect>;
65
+ }): Promise<void>;
@@ -1,22 +1,22 @@
1
1
  /**
2
- * Aggregated user progress for level requirements, tallying the total count; updated via triggers and should not be modified manually
2
+ * Warning configuration for soft limits. Each row defines a warning threshold and the job task to enqueue when usage approaches it.
3
3
  * @generated by @constructive-io/graphql-codegen
4
4
  * DO NOT EDIT - changes will be overwritten
5
5
  */
6
6
  import { useQuery } from '@tanstack/react-query';
7
7
  import { getClient } from '../client';
8
8
  import { buildSelectionArgs } from '../selection';
9
- import { appAchievementKeys } from '../query-keys';
9
+ import { appLimitWarningKeys } from '../query-keys';
10
10
  /** Query key factory - re-exported from query-keys.ts */
11
- export const appAchievementQueryKey = appAchievementKeys.detail;
12
- export function useAppAchievementQuery(params) {
11
+ export const appLimitWarningQueryKey = appLimitWarningKeys.detail;
12
+ export function useAppLimitWarningQuery(params) {
13
13
  const args = buildSelectionArgs(params.selection);
14
14
  const { selection: _selection, ...queryOptions } = params ?? {};
15
15
  void _selection;
16
16
  return useQuery({
17
- queryKey: appAchievementKeys.detail(params.id),
17
+ queryKey: appLimitWarningKeys.detail(params.id),
18
18
  queryFn: () => getClient()
19
- .appAchievement.findOne({
19
+ .appLimitWarning.findOne({
20
20
  id: params.id,
21
21
  select: args.select,
22
22
  })
@@ -24,21 +24,21 @@ export function useAppAchievementQuery(params) {
24
24
  ...queryOptions,
25
25
  });
26
26
  }
27
- export async function fetchAppAchievementQuery(params) {
27
+ export async function fetchAppLimitWarningQuery(params) {
28
28
  const args = buildSelectionArgs(params.selection);
29
29
  return getClient()
30
- .appAchievement.findOne({
30
+ .appLimitWarning.findOne({
31
31
  id: params.id,
32
32
  select: args.select,
33
33
  })
34
34
  .unwrap();
35
35
  }
36
- export async function prefetchAppAchievementQuery(queryClient, params) {
36
+ export async function prefetchAppLimitWarningQuery(queryClient, params) {
37
37
  const args = buildSelectionArgs(params.selection);
38
38
  await queryClient.prefetchQuery({
39
- queryKey: appAchievementKeys.detail(params.id),
39
+ queryKey: appLimitWarningKeys.detail(params.id),
40
40
  queryFn: () => getClient()
41
- .appAchievement.findOne({
41
+ .appLimitWarning.findOne({
42
42
  id: params.id,
43
43
  select: args.select,
44
44
  })
@@ -0,0 +1,69 @@
1
+ /**
2
+ * Warning configuration for soft limits. Each row defines a warning threshold and the job task to enqueue when usage approaches it.
3
+ * @generated by @constructive-io/graphql-codegen
4
+ * DO NOT EDIT - changes will be overwritten
5
+ */
6
+ import type { UseQueryOptions, UseQueryResult, QueryClient } from '@tanstack/react-query';
7
+ import type { ListSelectionConfig } from '../selection';
8
+ import type { AppLimitWarningSelect, AppLimitWarningWithRelations, AppLimitWarningFilter, AppLimitWarningOrderBy } from '../../orm/input-types';
9
+ import type { InferSelectResult, ConnectionResult, HookStrictSelect } from '../../orm/select-types';
10
+ export type { AppLimitWarningSelect, AppLimitWarningWithRelations, AppLimitWarningFilter, AppLimitWarningOrderBy, } from '../../orm/input-types';
11
+ /** Query key factory - re-exported from query-keys.ts */
12
+ export declare const appLimitWarningsQueryKey: (variables?: object) => readonly ["applimitwarning", "list", object];
13
+ /**
14
+ * Warning configuration for soft limits. Each row defines a warning threshold and the job task to enqueue when usage approaches it.
15
+ *
16
+ * @example
17
+ * ```tsx
18
+ * const { data, isLoading } = useAppLimitWarningsQuery({
19
+ * selection: {
20
+ * fields: { id: true, name: true },
21
+ * where: { name: { equalTo: "example" } },
22
+ * orderBy: ['CREATED_AT_DESC'],
23
+ * first: 10,
24
+ * },
25
+ * });
26
+ * ```
27
+ */
28
+ export declare function useAppLimitWarningsQuery<S extends AppLimitWarningSelect, TData = {
29
+ appLimitWarnings: ConnectionResult<InferSelectResult<AppLimitWarningWithRelations, S>>;
30
+ }>(params: {
31
+ selection: {
32
+ fields: S;
33
+ } & Omit<ListSelectionConfig<S, AppLimitWarningFilter, AppLimitWarningOrderBy>, 'fields'> & HookStrictSelect<NoInfer<S>, AppLimitWarningSelect>;
34
+ } & Omit<UseQueryOptions<{
35
+ appLimitWarnings: ConnectionResult<InferSelectResult<AppLimitWarningWithRelations, S>>;
36
+ }, Error, TData>, 'queryKey' | 'queryFn'>): UseQueryResult<TData>;
37
+ /**
38
+ * Warning configuration for soft limits. Each row defines a warning threshold and the job task to enqueue when usage approaches it.
39
+ *
40
+ * @example
41
+ * ```ts
42
+ * const data = await fetchAppLimitWarningsQuery({
43
+ * selection: {
44
+ * fields: { id: true },
45
+ * first: 10,
46
+ * },
47
+ * });
48
+ * ```
49
+ */
50
+ export declare function fetchAppLimitWarningsQuery<S extends AppLimitWarningSelect>(params: {
51
+ selection: {
52
+ fields: S;
53
+ } & Omit<ListSelectionConfig<S, AppLimitWarningFilter, AppLimitWarningOrderBy>, 'fields'> & HookStrictSelect<NoInfer<S>, AppLimitWarningSelect>;
54
+ }): Promise<{
55
+ appLimitWarnings: ConnectionResult<InferSelectResult<AppLimitWarningWithRelations, S>>;
56
+ }>;
57
+ /**
58
+ * Warning configuration for soft limits. Each row defines a warning threshold and the job task to enqueue when usage approaches it.
59
+ *
60
+ * @example
61
+ * ```ts
62
+ * await prefetchAppLimitWarningsQuery(queryClient, { selection: { fields: { id: true }, first: 10 } });
63
+ * ```
64
+ */
65
+ export declare function prefetchAppLimitWarningsQuery<S extends AppLimitWarningSelect>(queryClient: QueryClient, params: {
66
+ selection: {
67
+ fields: S;
68
+ } & Omit<ListSelectionConfig<S, AppLimitWarningFilter, AppLimitWarningOrderBy>, 'fields'> & HookStrictSelect<NoInfer<S>, AppLimitWarningSelect>;
69
+ }): Promise<void>;
@@ -0,0 +1,32 @@
1
+ /**
2
+ * Warning configuration for soft limits. Each row defines a warning threshold and the job task to enqueue when usage approaches it.
3
+ * @generated by @constructive-io/graphql-codegen
4
+ * DO NOT EDIT - changes will be overwritten
5
+ */
6
+ import { useQuery } from '@tanstack/react-query';
7
+ import { getClient } from '../client';
8
+ import { buildListSelectionArgs } from '../selection';
9
+ import { appLimitWarningKeys } from '../query-keys';
10
+ /** Query key factory - re-exported from query-keys.ts */
11
+ export const appLimitWarningsQueryKey = appLimitWarningKeys.list;
12
+ export function useAppLimitWarningsQuery(params) {
13
+ const args = buildListSelectionArgs(params.selection);
14
+ const { selection: _selection, ...queryOptions } = params ?? {};
15
+ void _selection;
16
+ return useQuery({
17
+ queryKey: appLimitWarningKeys.list(args),
18
+ queryFn: () => getClient().appLimitWarning.findMany(args).unwrap(),
19
+ ...queryOptions,
20
+ });
21
+ }
22
+ export async function fetchAppLimitWarningsQuery(params) {
23
+ const args = buildListSelectionArgs(params.selection);
24
+ return getClient().appLimitWarning.findMany(args).unwrap();
25
+ }
26
+ export async function prefetchAppLimitWarningsQuery(queryClient, params) {
27
+ const args = buildListSelectionArgs(params.selection);
28
+ await queryClient.prefetchQuery({
29
+ queryKey: appLimitWarningKeys.list(args),
30
+ queryFn: () => getClient().appLimitWarning.findMany(args).unwrap(),
31
+ });
32
+ }
@@ -0,0 +1,65 @@
1
+ /**
2
+ * Single item query hook for EventsModule
3
+ * @generated by @constructive-io/graphql-codegen
4
+ * DO NOT EDIT - changes will be overwritten
5
+ */
6
+ import type { UseQueryOptions, UseQueryResult, QueryClient } from '@tanstack/react-query';
7
+ import type { EventsModuleSelect, EventsModuleWithRelations } from '../../orm/input-types';
8
+ import type { InferSelectResult, HookStrictSelect } from '../../orm/select-types';
9
+ export type { EventsModuleSelect, EventsModuleWithRelations } from '../../orm/input-types';
10
+ /** Query key factory - re-exported from query-keys.ts */
11
+ export declare const eventsModuleQueryKey: (id: string | number) => readonly ["eventsmodule", "detail", string | number];
12
+ /**
13
+ * Query hook for fetching a single EventsModule
14
+ *
15
+ * @example
16
+ * ```tsx
17
+ * const { data, isLoading } = useEventsModuleQuery({
18
+ * id: 'some-id',
19
+ * selection: { fields: { id: true, name: true } },
20
+ * });
21
+ * ```
22
+ */
23
+ export declare function useEventsModuleQuery<S extends EventsModuleSelect, TData = {
24
+ eventsModule: InferSelectResult<EventsModuleWithRelations, S> | null;
25
+ }>(params: {
26
+ id: string;
27
+ selection: {
28
+ fields: S;
29
+ } & HookStrictSelect<NoInfer<S>, EventsModuleSelect>;
30
+ } & Omit<UseQueryOptions<{
31
+ eventsModule: InferSelectResult<EventsModuleWithRelations, S> | null;
32
+ }, Error, TData>, 'queryKey' | 'queryFn'>): UseQueryResult<TData>;
33
+ /**
34
+ * Fetch a single EventsModule without React hooks
35
+ *
36
+ * @example
37
+ * ```ts
38
+ * const data = await fetchEventsModuleQuery({
39
+ * id: 'some-id',
40
+ * selection: { fields: { id: true } },
41
+ * });
42
+ * ```
43
+ */
44
+ export declare function fetchEventsModuleQuery<S extends EventsModuleSelect>(params: {
45
+ id: string;
46
+ selection: {
47
+ fields: S;
48
+ } & HookStrictSelect<NoInfer<S>, EventsModuleSelect>;
49
+ }): Promise<{
50
+ eventsModule: InferSelectResult<EventsModuleWithRelations, S> | null;
51
+ }>;
52
+ /**
53
+ * Prefetch a single EventsModule for SSR or cache warming
54
+ *
55
+ * @example
56
+ * ```ts
57
+ * await prefetchEventsModuleQuery(queryClient, { id: 'some-id', selection: { fields: { id: true } } });
58
+ * ```
59
+ */
60
+ export declare function prefetchEventsModuleQuery<S extends EventsModuleSelect>(queryClient: QueryClient, params: {
61
+ id: string;
62
+ selection: {
63
+ fields: S;
64
+ } & HookStrictSelect<NoInfer<S>, EventsModuleSelect>;
65
+ }): Promise<void>;
@@ -1,22 +1,22 @@
1
1
  /**
2
- * Single item query hook for LevelsModule
2
+ * Single item query hook for EventsModule
3
3
  * @generated by @constructive-io/graphql-codegen
4
4
  * DO NOT EDIT - changes will be overwritten
5
5
  */
6
6
  import { useQuery } from '@tanstack/react-query';
7
7
  import { getClient } from '../client';
8
8
  import { buildSelectionArgs } from '../selection';
9
- import { levelsModuleKeys } from '../query-keys';
9
+ import { eventsModuleKeys } from '../query-keys';
10
10
  /** Query key factory - re-exported from query-keys.ts */
11
- export const levelsModuleQueryKey = levelsModuleKeys.detail;
12
- export function useLevelsModuleQuery(params) {
11
+ export const eventsModuleQueryKey = eventsModuleKeys.detail;
12
+ export function useEventsModuleQuery(params) {
13
13
  const args = buildSelectionArgs(params.selection);
14
14
  const { selection: _selection, ...queryOptions } = params ?? {};
15
15
  void _selection;
16
16
  return useQuery({
17
- queryKey: levelsModuleKeys.detail(params.id),
17
+ queryKey: eventsModuleKeys.detail(params.id),
18
18
  queryFn: () => getClient()
19
- .levelsModule.findOne({
19
+ .eventsModule.findOne({
20
20
  id: params.id,
21
21
  select: args.select,
22
22
  })
@@ -24,21 +24,21 @@ export function useLevelsModuleQuery(params) {
24
24
  ...queryOptions,
25
25
  });
26
26
  }
27
- export async function fetchLevelsModuleQuery(params) {
27
+ export async function fetchEventsModuleQuery(params) {
28
28
  const args = buildSelectionArgs(params.selection);
29
29
  return getClient()
30
- .levelsModule.findOne({
30
+ .eventsModule.findOne({
31
31
  id: params.id,
32
32
  select: args.select,
33
33
  })
34
34
  .unwrap();
35
35
  }
36
- export async function prefetchLevelsModuleQuery(queryClient, params) {
36
+ export async function prefetchEventsModuleQuery(queryClient, params) {
37
37
  const args = buildSelectionArgs(params.selection);
38
38
  await queryClient.prefetchQuery({
39
- queryKey: levelsModuleKeys.detail(params.id),
39
+ queryKey: eventsModuleKeys.detail(params.id),
40
40
  queryFn: () => getClient()
41
- .levelsModule.findOne({
41
+ .eventsModule.findOne({
42
42
  id: params.id,
43
43
  select: args.select,
44
44
  })
@@ -0,0 +1,69 @@
1
+ /**
2
+ * List query hook for EventsModule
3
+ * @generated by @constructive-io/graphql-codegen
4
+ * DO NOT EDIT - changes will be overwritten
5
+ */
6
+ import type { UseQueryOptions, UseQueryResult, QueryClient } from '@tanstack/react-query';
7
+ import type { ListSelectionConfig } from '../selection';
8
+ import type { EventsModuleSelect, EventsModuleWithRelations, EventsModuleFilter, EventsModuleOrderBy } from '../../orm/input-types';
9
+ import type { InferSelectResult, ConnectionResult, HookStrictSelect } from '../../orm/select-types';
10
+ export type { EventsModuleSelect, EventsModuleWithRelations, EventsModuleFilter, EventsModuleOrderBy, } from '../../orm/input-types';
11
+ /** Query key factory - re-exported from query-keys.ts */
12
+ export declare const eventsModulesQueryKey: (variables?: object) => readonly ["eventsmodule", "list", object];
13
+ /**
14
+ * Query hook for fetching EventsModule list
15
+ *
16
+ * @example
17
+ * ```tsx
18
+ * const { data, isLoading } = useEventsModulesQuery({
19
+ * selection: {
20
+ * fields: { id: true, name: true },
21
+ * where: { name: { equalTo: "example" } },
22
+ * orderBy: ['CREATED_AT_DESC'],
23
+ * first: 10,
24
+ * },
25
+ * });
26
+ * ```
27
+ */
28
+ export declare function useEventsModulesQuery<S extends EventsModuleSelect, TData = {
29
+ eventsModules: ConnectionResult<InferSelectResult<EventsModuleWithRelations, S>>;
30
+ }>(params: {
31
+ selection: {
32
+ fields: S;
33
+ } & Omit<ListSelectionConfig<S, EventsModuleFilter, EventsModuleOrderBy>, 'fields'> & HookStrictSelect<NoInfer<S>, EventsModuleSelect>;
34
+ } & Omit<UseQueryOptions<{
35
+ eventsModules: ConnectionResult<InferSelectResult<EventsModuleWithRelations, S>>;
36
+ }, Error, TData>, 'queryKey' | 'queryFn'>): UseQueryResult<TData>;
37
+ /**
38
+ * Fetch EventsModule list without React hooks
39
+ *
40
+ * @example
41
+ * ```ts
42
+ * const data = await fetchEventsModulesQuery({
43
+ * selection: {
44
+ * fields: { id: true },
45
+ * first: 10,
46
+ * },
47
+ * });
48
+ * ```
49
+ */
50
+ export declare function fetchEventsModulesQuery<S extends EventsModuleSelect>(params: {
51
+ selection: {
52
+ fields: S;
53
+ } & Omit<ListSelectionConfig<S, EventsModuleFilter, EventsModuleOrderBy>, 'fields'> & HookStrictSelect<NoInfer<S>, EventsModuleSelect>;
54
+ }): Promise<{
55
+ eventsModules: ConnectionResult<InferSelectResult<EventsModuleWithRelations, S>>;
56
+ }>;
57
+ /**
58
+ * Prefetch EventsModule list for SSR or cache warming
59
+ *
60
+ * @example
61
+ * ```ts
62
+ * await prefetchEventsModulesQuery(queryClient, { selection: { fields: { id: true }, first: 10 } });
63
+ * ```
64
+ */
65
+ export declare function prefetchEventsModulesQuery<S extends EventsModuleSelect>(queryClient: QueryClient, params: {
66
+ selection: {
67
+ fields: S;
68
+ } & Omit<ListSelectionConfig<S, EventsModuleFilter, EventsModuleOrderBy>, 'fields'> & HookStrictSelect<NoInfer<S>, EventsModuleSelect>;
69
+ }): Promise<void>;
@@ -1,32 +1,32 @@
1
1
  /**
2
- * List query hook for LevelsModule
2
+ * List query hook for EventsModule
3
3
  * @generated by @constructive-io/graphql-codegen
4
4
  * DO NOT EDIT - changes will be overwritten
5
5
  */
6
6
  import { useQuery } from '@tanstack/react-query';
7
7
  import { getClient } from '../client';
8
8
  import { buildListSelectionArgs } from '../selection';
9
- import { levelsModuleKeys } from '../query-keys';
9
+ import { eventsModuleKeys } from '../query-keys';
10
10
  /** Query key factory - re-exported from query-keys.ts */
11
- export const levelsModulesQueryKey = levelsModuleKeys.list;
12
- export function useLevelsModulesQuery(params) {
11
+ export const eventsModulesQueryKey = eventsModuleKeys.list;
12
+ export function useEventsModulesQuery(params) {
13
13
  const args = buildListSelectionArgs(params.selection);
14
14
  const { selection: _selection, ...queryOptions } = params ?? {};
15
15
  void _selection;
16
16
  return useQuery({
17
- queryKey: levelsModuleKeys.list(args),
18
- queryFn: () => getClient().levelsModule.findMany(args).unwrap(),
17
+ queryKey: eventsModuleKeys.list(args),
18
+ queryFn: () => getClient().eventsModule.findMany(args).unwrap(),
19
19
  ...queryOptions,
20
20
  });
21
21
  }
22
- export async function fetchLevelsModulesQuery(params) {
22
+ export async function fetchEventsModulesQuery(params) {
23
23
  const args = buildListSelectionArgs(params.selection);
24
- return getClient().levelsModule.findMany(args).unwrap();
24
+ return getClient().eventsModule.findMany(args).unwrap();
25
25
  }
26
- export async function prefetchLevelsModulesQuery(queryClient, params) {
26
+ export async function prefetchEventsModulesQuery(queryClient, params) {
27
27
  const args = buildListSelectionArgs(params.selection);
28
28
  await queryClient.prefetchQuery({
29
- queryKey: levelsModuleKeys.list(args),
30
- queryFn: () => getClient().levelsModule.findMany(args).unwrap(),
29
+ queryKey: eventsModuleKeys.list(args),
30
+ queryFn: () => getClient().eventsModule.findMany(args).unwrap(),
31
31
  });
32
32
  }
@@ -0,0 +1,65 @@
1
+ /**
2
+ * Warning configuration for soft limits. Each row defines a warning threshold and the job task to enqueue when usage approaches it.
3
+ * @generated by @constructive-io/graphql-codegen
4
+ * DO NOT EDIT - changes will be overwritten
5
+ */
6
+ import type { UseQueryOptions, UseQueryResult, QueryClient } from '@tanstack/react-query';
7
+ import type { OrgLimitWarningSelect, OrgLimitWarningWithRelations } from '../../orm/input-types';
8
+ import type { InferSelectResult, HookStrictSelect } from '../../orm/select-types';
9
+ export type { OrgLimitWarningSelect, OrgLimitWarningWithRelations } from '../../orm/input-types';
10
+ /** Query key factory - re-exported from query-keys.ts */
11
+ export declare const orgLimitWarningQueryKey: (id: string | number) => readonly ["orglimitwarning", "detail", string | number];
12
+ /**
13
+ * Warning configuration for soft limits. Each row defines a warning threshold and the job task to enqueue when usage approaches it.
14
+ *
15
+ * @example
16
+ * ```tsx
17
+ * const { data, isLoading } = useOrgLimitWarningQuery({
18
+ * id: 'some-id',
19
+ * selection: { fields: { id: true, name: true } },
20
+ * });
21
+ * ```
22
+ */
23
+ export declare function useOrgLimitWarningQuery<S extends OrgLimitWarningSelect, TData = {
24
+ orgLimitWarning: InferSelectResult<OrgLimitWarningWithRelations, S> | null;
25
+ }>(params: {
26
+ id: string;
27
+ selection: {
28
+ fields: S;
29
+ } & HookStrictSelect<NoInfer<S>, OrgLimitWarningSelect>;
30
+ } & Omit<UseQueryOptions<{
31
+ orgLimitWarning: InferSelectResult<OrgLimitWarningWithRelations, S> | null;
32
+ }, Error, TData>, 'queryKey' | 'queryFn'>): UseQueryResult<TData>;
33
+ /**
34
+ * Warning configuration for soft limits. Each row defines a warning threshold and the job task to enqueue when usage approaches it.
35
+ *
36
+ * @example
37
+ * ```ts
38
+ * const data = await fetchOrgLimitWarningQuery({
39
+ * id: 'some-id',
40
+ * selection: { fields: { id: true } },
41
+ * });
42
+ * ```
43
+ */
44
+ export declare function fetchOrgLimitWarningQuery<S extends OrgLimitWarningSelect>(params: {
45
+ id: string;
46
+ selection: {
47
+ fields: S;
48
+ } & HookStrictSelect<NoInfer<S>, OrgLimitWarningSelect>;
49
+ }): Promise<{
50
+ orgLimitWarning: InferSelectResult<OrgLimitWarningWithRelations, S> | null;
51
+ }>;
52
+ /**
53
+ * Warning configuration for soft limits. Each row defines a warning threshold and the job task to enqueue when usage approaches it.
54
+ *
55
+ * @example
56
+ * ```ts
57
+ * await prefetchOrgLimitWarningQuery(queryClient, { id: 'some-id', selection: { fields: { id: true } } });
58
+ * ```
59
+ */
60
+ export declare function prefetchOrgLimitWarningQuery<S extends OrgLimitWarningSelect>(queryClient: QueryClient, params: {
61
+ id: string;
62
+ selection: {
63
+ fields: S;
64
+ } & HookStrictSelect<NoInfer<S>, OrgLimitWarningSelect>;
65
+ }): Promise<void>;
@@ -0,0 +1,47 @@
1
+ /**
2
+ * Warning configuration for soft limits. Each row defines a warning threshold and the job task to enqueue when usage approaches it.
3
+ * @generated by @constructive-io/graphql-codegen
4
+ * DO NOT EDIT - changes will be overwritten
5
+ */
6
+ import { useQuery } from '@tanstack/react-query';
7
+ import { getClient } from '../client';
8
+ import { buildSelectionArgs } from '../selection';
9
+ import { orgLimitWarningKeys } from '../query-keys';
10
+ /** Query key factory - re-exported from query-keys.ts */
11
+ export const orgLimitWarningQueryKey = orgLimitWarningKeys.detail;
12
+ export function useOrgLimitWarningQuery(params) {
13
+ const args = buildSelectionArgs(params.selection);
14
+ const { selection: _selection, ...queryOptions } = params ?? {};
15
+ void _selection;
16
+ return useQuery({
17
+ queryKey: orgLimitWarningKeys.detail(params.id),
18
+ queryFn: () => getClient()
19
+ .orgLimitWarning.findOne({
20
+ id: params.id,
21
+ select: args.select,
22
+ })
23
+ .unwrap(),
24
+ ...queryOptions,
25
+ });
26
+ }
27
+ export async function fetchOrgLimitWarningQuery(params) {
28
+ const args = buildSelectionArgs(params.selection);
29
+ return getClient()
30
+ .orgLimitWarning.findOne({
31
+ id: params.id,
32
+ select: args.select,
33
+ })
34
+ .unwrap();
35
+ }
36
+ export async function prefetchOrgLimitWarningQuery(queryClient, params) {
37
+ const args = buildSelectionArgs(params.selection);
38
+ await queryClient.prefetchQuery({
39
+ queryKey: orgLimitWarningKeys.detail(params.id),
40
+ queryFn: () => getClient()
41
+ .orgLimitWarning.findOne({
42
+ id: params.id,
43
+ select: args.select,
44
+ })
45
+ .unwrap(),
46
+ });
47
+ }
@@ -0,0 +1,69 @@
1
+ /**
2
+ * Warning configuration for soft limits. Each row defines a warning threshold and the job task to enqueue when usage approaches it.
3
+ * @generated by @constructive-io/graphql-codegen
4
+ * DO NOT EDIT - changes will be overwritten
5
+ */
6
+ import type { UseQueryOptions, UseQueryResult, QueryClient } from '@tanstack/react-query';
7
+ import type { ListSelectionConfig } from '../selection';
8
+ import type { OrgLimitWarningSelect, OrgLimitWarningWithRelations, OrgLimitWarningFilter, OrgLimitWarningOrderBy } from '../../orm/input-types';
9
+ import type { InferSelectResult, ConnectionResult, HookStrictSelect } from '../../orm/select-types';
10
+ export type { OrgLimitWarningSelect, OrgLimitWarningWithRelations, OrgLimitWarningFilter, OrgLimitWarningOrderBy, } from '../../orm/input-types';
11
+ /** Query key factory - re-exported from query-keys.ts */
12
+ export declare const orgLimitWarningsQueryKey: (variables?: object) => readonly ["orglimitwarning", "list", object];
13
+ /**
14
+ * Warning configuration for soft limits. Each row defines a warning threshold and the job task to enqueue when usage approaches it.
15
+ *
16
+ * @example
17
+ * ```tsx
18
+ * const { data, isLoading } = useOrgLimitWarningsQuery({
19
+ * selection: {
20
+ * fields: { id: true, name: true },
21
+ * where: { name: { equalTo: "example" } },
22
+ * orderBy: ['CREATED_AT_DESC'],
23
+ * first: 10,
24
+ * },
25
+ * });
26
+ * ```
27
+ */
28
+ export declare function useOrgLimitWarningsQuery<S extends OrgLimitWarningSelect, TData = {
29
+ orgLimitWarnings: ConnectionResult<InferSelectResult<OrgLimitWarningWithRelations, S>>;
30
+ }>(params: {
31
+ selection: {
32
+ fields: S;
33
+ } & Omit<ListSelectionConfig<S, OrgLimitWarningFilter, OrgLimitWarningOrderBy>, 'fields'> & HookStrictSelect<NoInfer<S>, OrgLimitWarningSelect>;
34
+ } & Omit<UseQueryOptions<{
35
+ orgLimitWarnings: ConnectionResult<InferSelectResult<OrgLimitWarningWithRelations, S>>;
36
+ }, Error, TData>, 'queryKey' | 'queryFn'>): UseQueryResult<TData>;
37
+ /**
38
+ * Warning configuration for soft limits. Each row defines a warning threshold and the job task to enqueue when usage approaches it.
39
+ *
40
+ * @example
41
+ * ```ts
42
+ * const data = await fetchOrgLimitWarningsQuery({
43
+ * selection: {
44
+ * fields: { id: true },
45
+ * first: 10,
46
+ * },
47
+ * });
48
+ * ```
49
+ */
50
+ export declare function fetchOrgLimitWarningsQuery<S extends OrgLimitWarningSelect>(params: {
51
+ selection: {
52
+ fields: S;
53
+ } & Omit<ListSelectionConfig<S, OrgLimitWarningFilter, OrgLimitWarningOrderBy>, 'fields'> & HookStrictSelect<NoInfer<S>, OrgLimitWarningSelect>;
54
+ }): Promise<{
55
+ orgLimitWarnings: ConnectionResult<InferSelectResult<OrgLimitWarningWithRelations, S>>;
56
+ }>;
57
+ /**
58
+ * Warning configuration for soft limits. Each row defines a warning threshold and the job task to enqueue when usage approaches it.
59
+ *
60
+ * @example
61
+ * ```ts
62
+ * await prefetchOrgLimitWarningsQuery(queryClient, { selection: { fields: { id: true }, first: 10 } });
63
+ * ```
64
+ */
65
+ export declare function prefetchOrgLimitWarningsQuery<S extends OrgLimitWarningSelect>(queryClient: QueryClient, params: {
66
+ selection: {
67
+ fields: S;
68
+ } & Omit<ListSelectionConfig<S, OrgLimitWarningFilter, OrgLimitWarningOrderBy>, 'fields'> & HookStrictSelect<NoInfer<S>, OrgLimitWarningSelect>;
69
+ }): Promise<void>;