@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
package/admin/types.d.ts CHANGED
@@ -27,16 +27,6 @@ export interface OrgPermission {
27
27
  bitstr: string | null;
28
28
  description: string | null;
29
29
  }
30
- export interface AppLevelRequirement {
31
- id: string | null;
32
- name: string | null;
33
- level: string | null;
34
- description: string | null;
35
- requiredCount: number | null;
36
- priority: number | null;
37
- createdAt: string | null;
38
- updatedAt: string | null;
39
- }
40
30
  export interface AppLimitCreditRedemption {
41
31
  id: string | null;
42
32
  creditCodeId: string | null;
@@ -95,22 +85,6 @@ export interface AppOwnerGrant {
95
85
  createdAt: string | null;
96
86
  updatedAt: string | null;
97
87
  }
98
- export interface AppAchievement {
99
- id: string | null;
100
- actorId: string | null;
101
- name: string | null;
102
- count: number | null;
103
- createdAt: string | null;
104
- updatedAt: string | null;
105
- }
106
- export interface AppStep {
107
- id: string | null;
108
- actorId: string | null;
109
- name: string | null;
110
- count: number | null;
111
- createdAt: string | null;
112
- updatedAt: string | null;
113
- }
114
88
  export interface AppLimitCapsDefault {
115
89
  id: string | null;
116
90
  name: string | null;
@@ -180,6 +154,21 @@ export interface OrgLimitCredit {
180
154
  creditType: string | null;
181
155
  reason: string | null;
182
156
  }
157
+ export interface AppLimitWarning {
158
+ id: string | null;
159
+ name: string | null;
160
+ warningType: string | null;
161
+ thresholdValue: string | null;
162
+ taskIdentifier: string | null;
163
+ }
164
+ export interface OrgLimitWarning {
165
+ id: string | null;
166
+ name: string | null;
167
+ warningType: string | null;
168
+ thresholdValue: string | null;
169
+ taskIdentifier: string | null;
170
+ entityId: string | null;
171
+ }
183
172
  export interface OrgChartEdgeGrant {
184
173
  id: string | null;
185
174
  entityId: string | null;
@@ -285,28 +274,6 @@ export interface UsageSnapshot {
285
274
  capturedAt: string | null;
286
275
  id: string | null;
287
276
  }
288
- export interface OrgMemberProfile {
289
- id: string | null;
290
- createdAt: string | null;
291
- updatedAt: string | null;
292
- membershipId: string | null;
293
- entityId: string | null;
294
- actorId: string | null;
295
- displayName: string | null;
296
- email: string | null;
297
- title: string | null;
298
- bio: string | null;
299
- profilePicture: ConstructiveInternalTypeImage | null;
300
- }
301
- export interface AppLevel {
302
- id: string | null;
303
- name: string | null;
304
- description: string | null;
305
- image: ConstructiveInternalTypeImage | null;
306
- ownerId: string | null;
307
- createdAt: string | null;
308
- updatedAt: string | null;
309
- }
310
277
  export interface AppLimit {
311
278
  id: string | null;
312
279
  name: string | null;
@@ -379,6 +346,19 @@ export interface OrgLimit {
379
346
  periodCredits: string | null;
380
347
  entityId: string | null;
381
348
  }
349
+ export interface OrgMemberProfile {
350
+ id: string | null;
351
+ createdAt: string | null;
352
+ updatedAt: string | null;
353
+ membershipId: string | null;
354
+ entityId: string | null;
355
+ actorId: string | null;
356
+ displayName: string | null;
357
+ email: string | null;
358
+ title: string | null;
359
+ bio: string | null;
360
+ profilePicture: ConstructiveInternalTypeImage | null;
361
+ }
382
362
  export interface AppMembership {
383
363
  id: string | null;
384
364
  createdAt: string | null;
@@ -2,7 +2,7 @@
2
2
  * GraphQL SDK
3
3
  * @generated by @constructive-io/graphql-codegen
4
4
  *
5
- * Tables: OrgGetManagersRecord, OrgGetSubordinatesRecord, AppPermission, OrgPermission, AppLevelRequirement, AppLimitCreditRedemption, AppLimitCreditCodeItem, AppLimitCredit, OrgMember, AppPermissionDefault, AppLimitCreditCode, OrgPermissionDefault, AppAdminGrant, AppOwnerGrant, AppAchievement, AppStep, AppLimitCapsDefault, OrgLimitCapsDefault, AppLimitCap, OrgLimitCap, OrgAdminGrant, OrgOwnerGrant, MembershipType, AppLimitDefault, OrgLimitDefault, OrgLimitCredit, OrgChartEdgeGrant, AppClaimedInvite, AppGrant, AppMembershipDefault, OrgMembershipDefault, OrgClaimedInvite, AppLimitEvent, OrgLimitEvent, OrgGrant, OrgChartEdge, UsageSnapshot, OrgMemberProfile, AppLevel, AppLimit, AppInvite, OrgMembershipSetting, OrgLimitAggregate, OrgLimit, AppMembership, OrgInvite, OrgMembership
5
+ * Tables: OrgGetManagersRecord, OrgGetSubordinatesRecord, AppPermission, OrgPermission, AppLimitCreditRedemption, AppLimitCreditCodeItem, AppLimitCredit, OrgMember, AppPermissionDefault, AppLimitCreditCode, OrgPermissionDefault, AppAdminGrant, AppOwnerGrant, AppLimitCapsDefault, OrgLimitCapsDefault, AppLimitCap, OrgLimitCap, OrgAdminGrant, OrgOwnerGrant, MembershipType, AppLimitDefault, OrgLimitDefault, OrgLimitCredit, AppLimitWarning, OrgLimitWarning, OrgChartEdgeGrant, AppClaimedInvite, AppGrant, AppMembershipDefault, OrgMembershipDefault, OrgClaimedInvite, AppLimitEvent, OrgLimitEvent, OrgGrant, OrgChartEdge, UsageSnapshot, AppLimit, AppInvite, OrgMembershipSetting, OrgLimitAggregate, OrgLimit, OrgMemberProfile, AppMembership, OrgInvite, OrgMembership
6
6
  *
7
7
  * Usage:
8
8
  *
@@ -2,7 +2,7 @@
2
2
  * GraphQL SDK
3
3
  * @generated by @constructive-io/graphql-codegen
4
4
  *
5
- * Tables: OrgGetManagersRecord, OrgGetSubordinatesRecord, AppPermission, OrgPermission, AppLevelRequirement, AppLimitCreditRedemption, AppLimitCreditCodeItem, AppLimitCredit, OrgMember, AppPermissionDefault, AppLimitCreditCode, OrgPermissionDefault, AppAdminGrant, AppOwnerGrant, AppAchievement, AppStep, AppLimitCapsDefault, OrgLimitCapsDefault, AppLimitCap, OrgLimitCap, OrgAdminGrant, OrgOwnerGrant, MembershipType, AppLimitDefault, OrgLimitDefault, OrgLimitCredit, OrgChartEdgeGrant, AppClaimedInvite, AppGrant, AppMembershipDefault, OrgMembershipDefault, OrgClaimedInvite, AppLimitEvent, OrgLimitEvent, OrgGrant, OrgChartEdge, UsageSnapshot, OrgMemberProfile, AppLevel, AppLimit, AppInvite, OrgMembershipSetting, OrgLimitAggregate, OrgLimit, AppMembership, OrgInvite, OrgMembership
5
+ * Tables: OrgGetManagersRecord, OrgGetSubordinatesRecord, AppPermission, OrgPermission, AppLimitCreditRedemption, AppLimitCreditCodeItem, AppLimitCredit, OrgMember, AppPermissionDefault, AppLimitCreditCode, OrgPermissionDefault, AppAdminGrant, AppOwnerGrant, AppLimitCapsDefault, OrgLimitCapsDefault, AppLimitCap, OrgLimitCap, OrgAdminGrant, OrgOwnerGrant, MembershipType, AppLimitDefault, OrgLimitDefault, OrgLimitCredit, AppLimitWarning, OrgLimitWarning, OrgChartEdgeGrant, AppClaimedInvite, AppGrant, AppMembershipDefault, OrgMembershipDefault, OrgClaimedInvite, AppLimitEvent, OrgLimitEvent, OrgGrant, OrgChartEdge, UsageSnapshot, AppLimit, AppInvite, OrgMembershipSetting, OrgLimitAggregate, OrgLimit, OrgMemberProfile, AppMembership, OrgInvite, OrgMembership
6
6
  *
7
7
  * Usage:
8
8
  *
@@ -44,11 +44,6 @@ export declare const invalidate: {
44
44
  /** Invalidate orgPermission list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
45
45
  /** Invalidate a specific orgPermission */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
46
46
  };
47
- /** Invalidate appLevelRequirement queries */ readonly appLevelRequirement: {
48
- /** Invalidate all appLevelRequirement queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
49
- /** Invalidate appLevelRequirement list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
50
- /** Invalidate a specific appLevelRequirement */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
51
- };
52
47
  /** Invalidate appLimitCreditRedemption queries */ readonly appLimitCreditRedemption: {
53
48
  /** Invalidate all appLimitCreditRedemption queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
54
49
  /** Invalidate appLimitCreditRedemption list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
@@ -94,16 +89,6 @@ export declare const invalidate: {
94
89
  /** Invalidate appOwnerGrant list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
95
90
  /** Invalidate a specific appOwnerGrant */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
96
91
  };
97
- /** Invalidate appAchievement queries */ readonly appAchievement: {
98
- /** Invalidate all appAchievement queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
99
- /** Invalidate appAchievement list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
100
- /** Invalidate a specific appAchievement */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
101
- };
102
- /** Invalidate appStep queries */ readonly appStep: {
103
- /** Invalidate all appStep queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
104
- /** Invalidate appStep list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
105
- /** Invalidate a specific appStep */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
106
- };
107
92
  /** Invalidate appLimitCapsDefault queries */ readonly appLimitCapsDefault: {
108
93
  /** Invalidate all appLimitCapsDefault queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
109
94
  /** Invalidate appLimitCapsDefault list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
@@ -154,6 +139,16 @@ export declare const invalidate: {
154
139
  /** Invalidate orgLimitCredit list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
155
140
  /** Invalidate a specific orgLimitCredit */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
156
141
  };
142
+ /** Invalidate appLimitWarning queries */ readonly appLimitWarning: {
143
+ /** Invalidate all appLimitWarning queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
144
+ /** Invalidate appLimitWarning list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
145
+ /** Invalidate a specific appLimitWarning */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
146
+ };
147
+ /** Invalidate orgLimitWarning queries */ readonly orgLimitWarning: {
148
+ /** Invalidate all orgLimitWarning queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
149
+ /** Invalidate orgLimitWarning list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
150
+ /** Invalidate a specific orgLimitWarning */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
151
+ };
157
152
  /** Invalidate orgChartEdgeGrant queries */ readonly orgChartEdgeGrant: {
158
153
  /** Invalidate all orgChartEdgeGrant queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
159
154
  /** Invalidate orgChartEdgeGrant list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
@@ -209,16 +204,6 @@ export declare const invalidate: {
209
204
  /** Invalidate usageSnapshot list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
210
205
  /** Invalidate a specific usageSnapshot */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
211
206
  };
212
- /** Invalidate orgMemberProfile queries */ readonly orgMemberProfile: {
213
- /** Invalidate all orgMemberProfile queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
214
- /** Invalidate orgMemberProfile list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
215
- /** Invalidate a specific orgMemberProfile */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
216
- };
217
- /** Invalidate appLevel queries */ readonly appLevel: {
218
- /** Invalidate all appLevel queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
219
- /** Invalidate appLevel list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
220
- /** Invalidate a specific appLevel */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
221
- };
222
207
  /** Invalidate appLimit queries */ readonly appLimit: {
223
208
  /** Invalidate all appLimit queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
224
209
  /** Invalidate appLimit list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
@@ -244,6 +229,11 @@ export declare const invalidate: {
244
229
  /** Invalidate orgLimit list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
245
230
  /** Invalidate a specific orgLimit */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
246
231
  };
232
+ /** Invalidate orgMemberProfile queries */ readonly orgMemberProfile: {
233
+ /** Invalidate all orgMemberProfile queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
234
+ /** Invalidate orgMemberProfile list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
235
+ /** Invalidate a specific orgMemberProfile */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
236
+ };
247
237
  /** Invalidate appMembership queries */ readonly appMembership: {
248
238
  /** Invalidate all appMembership queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
249
239
  /** Invalidate appMembership list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
@@ -276,7 +266,6 @@ export declare const remove: {
276
266
  /** Remove orgGetSubordinatesRecord from cache */ readonly orgGetSubordinatesRecord: (queryClient: QueryClient, id: string | number) => void;
277
267
  /** Remove appPermission from cache */ readonly appPermission: (queryClient: QueryClient, id: string | number) => void;
278
268
  /** Remove orgPermission from cache */ readonly orgPermission: (queryClient: QueryClient, id: string | number) => void;
279
- /** Remove appLevelRequirement from cache */ readonly appLevelRequirement: (queryClient: QueryClient, id: string | number) => void;
280
269
  /** Remove appLimitCreditRedemption from cache */ readonly appLimitCreditRedemption: (queryClient: QueryClient, id: string | number) => void;
281
270
  /** Remove appLimitCreditCodeItem from cache */ readonly appLimitCreditCodeItem: (queryClient: QueryClient, id: string | number) => void;
282
271
  /** Remove appLimitCredit from cache */ readonly appLimitCredit: (queryClient: QueryClient, id: string | number) => void;
@@ -286,8 +275,6 @@ export declare const remove: {
286
275
  /** Remove orgPermissionDefault from cache */ readonly orgPermissionDefault: (queryClient: QueryClient, id: string | number) => void;
287
276
  /** Remove appAdminGrant from cache */ readonly appAdminGrant: (queryClient: QueryClient, id: string | number) => void;
288
277
  /** Remove appOwnerGrant from cache */ readonly appOwnerGrant: (queryClient: QueryClient, id: string | number) => void;
289
- /** Remove appAchievement from cache */ readonly appAchievement: (queryClient: QueryClient, id: string | number) => void;
290
- /** Remove appStep from cache */ readonly appStep: (queryClient: QueryClient, id: string | number) => void;
291
278
  /** Remove appLimitCapsDefault from cache */ readonly appLimitCapsDefault: (queryClient: QueryClient, id: string | number) => void;
292
279
  /** Remove orgLimitCapsDefault from cache */ readonly orgLimitCapsDefault: (queryClient: QueryClient, id: string | number) => void;
293
280
  /** Remove appLimitCap from cache */ readonly appLimitCap: (queryClient: QueryClient, id: string | number) => void;
@@ -298,6 +285,8 @@ export declare const remove: {
298
285
  /** Remove appLimitDefault from cache */ readonly appLimitDefault: (queryClient: QueryClient, id: string | number) => void;
299
286
  /** Remove orgLimitDefault from cache */ readonly orgLimitDefault: (queryClient: QueryClient, id: string | number) => void;
300
287
  /** Remove orgLimitCredit from cache */ readonly orgLimitCredit: (queryClient: QueryClient, id: string | number) => void;
288
+ /** Remove appLimitWarning from cache */ readonly appLimitWarning: (queryClient: QueryClient, id: string | number) => void;
289
+ /** Remove orgLimitWarning from cache */ readonly orgLimitWarning: (queryClient: QueryClient, id: string | number) => void;
301
290
  /** Remove orgChartEdgeGrant from cache */ readonly orgChartEdgeGrant: (queryClient: QueryClient, id: string | number) => void;
302
291
  /** Remove appClaimedInvite from cache */ readonly appClaimedInvite: (queryClient: QueryClient, id: string | number) => void;
303
292
  /** Remove appGrant from cache */ readonly appGrant: (queryClient: QueryClient, id: string | number) => void;
@@ -309,13 +298,12 @@ export declare const remove: {
309
298
  /** Remove orgGrant from cache */ readonly orgGrant: (queryClient: QueryClient, id: string | number) => void;
310
299
  /** Remove orgChartEdge from cache */ readonly orgChartEdge: (queryClient: QueryClient, id: string | number) => void;
311
300
  /** Remove usageSnapshot from cache */ readonly usageSnapshot: (queryClient: QueryClient, id: string | number) => void;
312
- /** Remove orgMemberProfile from cache */ readonly orgMemberProfile: (queryClient: QueryClient, id: string | number) => void;
313
- /** Remove appLevel from cache */ readonly appLevel: (queryClient: QueryClient, id: string | number) => void;
314
301
  /** Remove appLimit from cache */ readonly appLimit: (queryClient: QueryClient, id: string | number) => void;
315
302
  /** Remove appInvite from cache */ readonly appInvite: (queryClient: QueryClient, id: string | number) => void;
316
303
  /** Remove orgMembershipSetting from cache */ readonly orgMembershipSetting: (queryClient: QueryClient, id: string | number) => void;
317
304
  /** Remove orgLimitAggregate from cache */ readonly orgLimitAggregate: (queryClient: QueryClient, id: string | number) => void;
318
305
  /** Remove orgLimit from cache */ readonly orgLimit: (queryClient: QueryClient, id: string | number) => void;
306
+ /** Remove orgMemberProfile from cache */ readonly orgMemberProfile: (queryClient: QueryClient, id: string | number) => void;
319
307
  /** Remove appMembership from cache */ readonly appMembership: (queryClient: QueryClient, id: string | number) => void;
320
308
  /** Remove orgInvite from cache */ readonly orgInvite: (queryClient: QueryClient, id: string | number) => void;
321
309
  /** Remove orgMembership from cache */ readonly orgMembership: (queryClient: QueryClient, id: string | number) => void;
@@ -3,7 +3,7 @@
3
3
  * @generated by @constructive-io/graphql-codegen
4
4
  * DO NOT EDIT - changes will be overwritten
5
5
  */
6
- import { orgGetManagersRecordKeys, orgGetSubordinatesRecordKeys, appPermissionKeys, orgPermissionKeys, appLevelRequirementKeys, appLimitCreditRedemptionKeys, appLimitCreditCodeItemKeys, appLimitCreditKeys, orgMemberKeys, appPermissionDefaultKeys, appLimitCreditCodeKeys, orgPermissionDefaultKeys, appAdminGrantKeys, appOwnerGrantKeys, appAchievementKeys, appStepKeys, appLimitCapsDefaultKeys, orgLimitCapsDefaultKeys, appLimitCapKeys, orgLimitCapKeys, orgAdminGrantKeys, orgOwnerGrantKeys, membershipTypeKeys, appLimitDefaultKeys, orgLimitDefaultKeys, orgLimitCreditKeys, orgChartEdgeGrantKeys, appClaimedInviteKeys, appGrantKeys, appMembershipDefaultKeys, orgMembershipDefaultKeys, orgClaimedInviteKeys, appLimitEventKeys, orgLimitEventKeys, orgGrantKeys, orgChartEdgeKeys, usageSnapshotKeys, orgMemberProfileKeys, appLevelKeys, appLimitKeys, appInviteKeys, orgMembershipSettingKeys, orgLimitAggregateKeys, orgLimitKeys, appMembershipKeys, orgInviteKeys, orgMembershipKeys, } from './query-keys';
6
+ import { orgGetManagersRecordKeys, orgGetSubordinatesRecordKeys, appPermissionKeys, orgPermissionKeys, appLimitCreditRedemptionKeys, appLimitCreditCodeItemKeys, appLimitCreditKeys, orgMemberKeys, appPermissionDefaultKeys, appLimitCreditCodeKeys, orgPermissionDefaultKeys, appAdminGrantKeys, appOwnerGrantKeys, appLimitCapsDefaultKeys, orgLimitCapsDefaultKeys, appLimitCapKeys, orgLimitCapKeys, orgAdminGrantKeys, orgOwnerGrantKeys, membershipTypeKeys, appLimitDefaultKeys, orgLimitDefaultKeys, orgLimitCreditKeys, appLimitWarningKeys, orgLimitWarningKeys, orgChartEdgeGrantKeys, appClaimedInviteKeys, appGrantKeys, appMembershipDefaultKeys, orgMembershipDefaultKeys, orgClaimedInviteKeys, appLimitEventKeys, orgLimitEventKeys, orgGrantKeys, orgChartEdgeKeys, usageSnapshotKeys, appLimitKeys, appInviteKeys, orgMembershipSettingKeys, orgLimitAggregateKeys, orgLimitKeys, orgMemberProfileKeys, appMembershipKeys, orgInviteKeys, orgMembershipKeys, } from './query-keys';
7
7
  /**
8
8
  // ============================================================================
9
9
  // Invalidation Helpers
@@ -68,17 +68,6 @@ export const invalidate = {
68
68
  queryKey: orgPermissionKeys.detail(id),
69
69
  }),
70
70
  },
71
- /** Invalidate appLevelRequirement queries */ appLevelRequirement: {
72
- /** Invalidate all appLevelRequirement queries */ all: (queryClient) => queryClient.invalidateQueries({
73
- queryKey: appLevelRequirementKeys.all,
74
- }),
75
- /** Invalidate appLevelRequirement list queries */ lists: (queryClient) => queryClient.invalidateQueries({
76
- queryKey: appLevelRequirementKeys.lists(),
77
- }),
78
- /** Invalidate a specific appLevelRequirement */ detail: (queryClient, id) => queryClient.invalidateQueries({
79
- queryKey: appLevelRequirementKeys.detail(id),
80
- }),
81
- },
82
71
  /** Invalidate appLimitCreditRedemption queries */ appLimitCreditRedemption: {
83
72
  /** Invalidate all appLimitCreditRedemption queries */ all: (queryClient) => queryClient.invalidateQueries({
84
73
  queryKey: appLimitCreditRedemptionKeys.all,
@@ -178,28 +167,6 @@ export const invalidate = {
178
167
  queryKey: appOwnerGrantKeys.detail(id),
179
168
  }),
180
169
  },
181
- /** Invalidate appAchievement queries */ appAchievement: {
182
- /** Invalidate all appAchievement queries */ all: (queryClient) => queryClient.invalidateQueries({
183
- queryKey: appAchievementKeys.all,
184
- }),
185
- /** Invalidate appAchievement list queries */ lists: (queryClient) => queryClient.invalidateQueries({
186
- queryKey: appAchievementKeys.lists(),
187
- }),
188
- /** Invalidate a specific appAchievement */ detail: (queryClient, id) => queryClient.invalidateQueries({
189
- queryKey: appAchievementKeys.detail(id),
190
- }),
191
- },
192
- /** Invalidate appStep queries */ appStep: {
193
- /** Invalidate all appStep queries */ all: (queryClient) => queryClient.invalidateQueries({
194
- queryKey: appStepKeys.all,
195
- }),
196
- /** Invalidate appStep list queries */ lists: (queryClient) => queryClient.invalidateQueries({
197
- queryKey: appStepKeys.lists(),
198
- }),
199
- /** Invalidate a specific appStep */ detail: (queryClient, id) => queryClient.invalidateQueries({
200
- queryKey: appStepKeys.detail(id),
201
- }),
202
- },
203
170
  /** Invalidate appLimitCapsDefault queries */ appLimitCapsDefault: {
204
171
  /** Invalidate all appLimitCapsDefault queries */ all: (queryClient) => queryClient.invalidateQueries({
205
172
  queryKey: appLimitCapsDefaultKeys.all,
@@ -310,6 +277,28 @@ export const invalidate = {
310
277
  queryKey: orgLimitCreditKeys.detail(id),
311
278
  }),
312
279
  },
280
+ /** Invalidate appLimitWarning queries */ appLimitWarning: {
281
+ /** Invalidate all appLimitWarning queries */ all: (queryClient) => queryClient.invalidateQueries({
282
+ queryKey: appLimitWarningKeys.all,
283
+ }),
284
+ /** Invalidate appLimitWarning list queries */ lists: (queryClient) => queryClient.invalidateQueries({
285
+ queryKey: appLimitWarningKeys.lists(),
286
+ }),
287
+ /** Invalidate a specific appLimitWarning */ detail: (queryClient, id) => queryClient.invalidateQueries({
288
+ queryKey: appLimitWarningKeys.detail(id),
289
+ }),
290
+ },
291
+ /** Invalidate orgLimitWarning queries */ orgLimitWarning: {
292
+ /** Invalidate all orgLimitWarning queries */ all: (queryClient) => queryClient.invalidateQueries({
293
+ queryKey: orgLimitWarningKeys.all,
294
+ }),
295
+ /** Invalidate orgLimitWarning list queries */ lists: (queryClient) => queryClient.invalidateQueries({
296
+ queryKey: orgLimitWarningKeys.lists(),
297
+ }),
298
+ /** Invalidate a specific orgLimitWarning */ detail: (queryClient, id) => queryClient.invalidateQueries({
299
+ queryKey: orgLimitWarningKeys.detail(id),
300
+ }),
301
+ },
313
302
  /** Invalidate orgChartEdgeGrant queries */ orgChartEdgeGrant: {
314
303
  /** Invalidate all orgChartEdgeGrant queries */ all: (queryClient) => queryClient.invalidateQueries({
315
304
  queryKey: orgChartEdgeGrantKeys.all,
@@ -431,28 +420,6 @@ export const invalidate = {
431
420
  queryKey: usageSnapshotKeys.detail(id),
432
421
  }),
433
422
  },
434
- /** Invalidate orgMemberProfile queries */ orgMemberProfile: {
435
- /** Invalidate all orgMemberProfile queries */ all: (queryClient) => queryClient.invalidateQueries({
436
- queryKey: orgMemberProfileKeys.all,
437
- }),
438
- /** Invalidate orgMemberProfile list queries */ lists: (queryClient) => queryClient.invalidateQueries({
439
- queryKey: orgMemberProfileKeys.lists(),
440
- }),
441
- /** Invalidate a specific orgMemberProfile */ detail: (queryClient, id) => queryClient.invalidateQueries({
442
- queryKey: orgMemberProfileKeys.detail(id),
443
- }),
444
- },
445
- /** Invalidate appLevel queries */ appLevel: {
446
- /** Invalidate all appLevel queries */ all: (queryClient) => queryClient.invalidateQueries({
447
- queryKey: appLevelKeys.all,
448
- }),
449
- /** Invalidate appLevel list queries */ lists: (queryClient) => queryClient.invalidateQueries({
450
- queryKey: appLevelKeys.lists(),
451
- }),
452
- /** Invalidate a specific appLevel */ detail: (queryClient, id) => queryClient.invalidateQueries({
453
- queryKey: appLevelKeys.detail(id),
454
- }),
455
- },
456
423
  /** Invalidate appLimit queries */ appLimit: {
457
424
  /** Invalidate all appLimit queries */ all: (queryClient) => queryClient.invalidateQueries({
458
425
  queryKey: appLimitKeys.all,
@@ -508,6 +475,17 @@ export const invalidate = {
508
475
  queryKey: orgLimitKeys.detail(id),
509
476
  }),
510
477
  },
478
+ /** Invalidate orgMemberProfile queries */ orgMemberProfile: {
479
+ /** Invalidate all orgMemberProfile queries */ all: (queryClient) => queryClient.invalidateQueries({
480
+ queryKey: orgMemberProfileKeys.all,
481
+ }),
482
+ /** Invalidate orgMemberProfile list queries */ lists: (queryClient) => queryClient.invalidateQueries({
483
+ queryKey: orgMemberProfileKeys.lists(),
484
+ }),
485
+ /** Invalidate a specific orgMemberProfile */ detail: (queryClient, id) => queryClient.invalidateQueries({
486
+ queryKey: orgMemberProfileKeys.detail(id),
487
+ }),
488
+ },
511
489
  /** Invalidate appMembership queries */ appMembership: {
512
490
  /** Invalidate all appMembership queries */ all: (queryClient) => queryClient.invalidateQueries({
513
491
  queryKey: appMembershipKeys.all,
@@ -574,11 +552,6 @@ export const remove = {
574
552
  queryKey: orgPermissionKeys.detail(id),
575
553
  });
576
554
  },
577
- /** Remove appLevelRequirement from cache */ appLevelRequirement: (queryClient, id) => {
578
- queryClient.removeQueries({
579
- queryKey: appLevelRequirementKeys.detail(id),
580
- });
581
- },
582
555
  /** Remove appLimitCreditRedemption from cache */ appLimitCreditRedemption: (queryClient, id) => {
583
556
  queryClient.removeQueries({
584
557
  queryKey: appLimitCreditRedemptionKeys.detail(id),
@@ -624,16 +597,6 @@ export const remove = {
624
597
  queryKey: appOwnerGrantKeys.detail(id),
625
598
  });
626
599
  },
627
- /** Remove appAchievement from cache */ appAchievement: (queryClient, id) => {
628
- queryClient.removeQueries({
629
- queryKey: appAchievementKeys.detail(id),
630
- });
631
- },
632
- /** Remove appStep from cache */ appStep: (queryClient, id) => {
633
- queryClient.removeQueries({
634
- queryKey: appStepKeys.detail(id),
635
- });
636
- },
637
600
  /** Remove appLimitCapsDefault from cache */ appLimitCapsDefault: (queryClient, id) => {
638
601
  queryClient.removeQueries({
639
602
  queryKey: appLimitCapsDefaultKeys.detail(id),
@@ -684,6 +647,16 @@ export const remove = {
684
647
  queryKey: orgLimitCreditKeys.detail(id),
685
648
  });
686
649
  },
650
+ /** Remove appLimitWarning from cache */ appLimitWarning: (queryClient, id) => {
651
+ queryClient.removeQueries({
652
+ queryKey: appLimitWarningKeys.detail(id),
653
+ });
654
+ },
655
+ /** Remove orgLimitWarning from cache */ orgLimitWarning: (queryClient, id) => {
656
+ queryClient.removeQueries({
657
+ queryKey: orgLimitWarningKeys.detail(id),
658
+ });
659
+ },
687
660
  /** Remove orgChartEdgeGrant from cache */ orgChartEdgeGrant: (queryClient, id) => {
688
661
  queryClient.removeQueries({
689
662
  queryKey: orgChartEdgeGrantKeys.detail(id),
@@ -739,16 +712,6 @@ export const remove = {
739
712
  queryKey: usageSnapshotKeys.detail(id),
740
713
  });
741
714
  },
742
- /** Remove orgMemberProfile from cache */ orgMemberProfile: (queryClient, id) => {
743
- queryClient.removeQueries({
744
- queryKey: orgMemberProfileKeys.detail(id),
745
- });
746
- },
747
- /** Remove appLevel from cache */ appLevel: (queryClient, id) => {
748
- queryClient.removeQueries({
749
- queryKey: appLevelKeys.detail(id),
750
- });
751
- },
752
715
  /** Remove appLimit from cache */ appLimit: (queryClient, id) => {
753
716
  queryClient.removeQueries({
754
717
  queryKey: appLimitKeys.detail(id),
@@ -774,6 +737,11 @@ export const remove = {
774
737
  queryKey: orgLimitKeys.detail(id),
775
738
  });
776
739
  },
740
+ /** Remove orgMemberProfile from cache */ orgMemberProfile: (queryClient, id) => {
741
+ queryClient.removeQueries({
742
+ queryKey: orgMemberProfileKeys.detail(id),
743
+ });
744
+ },
777
745
  /** Remove appMembership from cache */ appMembership: (queryClient, id) => {
778
746
  queryClient.removeQueries({
779
747
  queryKey: appMembershipKeys.detail(id),
@@ -27,12 +27,6 @@ export declare const orgPermissionMutationKeys: {
27
27
  /** Update orgPermission mutation key */ readonly update: (id: string | number) => readonly ["mutation", "orgpermission", "update", string | number];
28
28
  /** Delete orgPermission mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "orgpermission", "delete", string | number];
29
29
  };
30
- export declare const appLevelRequirementMutationKeys: {
31
- /** All appLevelRequirement mutation keys */ readonly all: readonly ["mutation", "applevelrequirement"];
32
- /** Create appLevelRequirement mutation key */ readonly create: () => readonly ["mutation", "applevelrequirement", "create"];
33
- /** Update appLevelRequirement mutation key */ readonly update: (id: string | number) => readonly ["mutation", "applevelrequirement", "update", string | number];
34
- /** Delete appLevelRequirement mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "applevelrequirement", "delete", string | number];
35
- };
36
30
  export declare const appLimitCreditRedemptionMutationKeys: {
37
31
  /** All appLimitCreditRedemption mutation keys */ readonly all: readonly ["mutation", "applimitcreditredemption"];
38
32
  /** Create appLimitCreditRedemption mutation key */ readonly create: () => readonly ["mutation", "applimitcreditredemption", "create"];
@@ -87,18 +81,6 @@ export declare const appOwnerGrantMutationKeys: {
87
81
  /** Update appOwnerGrant mutation key */ readonly update: (id: string | number) => readonly ["mutation", "appownergrant", "update", string | number];
88
82
  /** Delete appOwnerGrant mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "appownergrant", "delete", string | number];
89
83
  };
90
- export declare const appAchievementMutationKeys: {
91
- /** All appAchievement mutation keys */ readonly all: readonly ["mutation", "appachievement"];
92
- /** Create appAchievement mutation key */ readonly create: () => readonly ["mutation", "appachievement", "create"];
93
- /** Update appAchievement mutation key */ readonly update: (id: string | number) => readonly ["mutation", "appachievement", "update", string | number];
94
- /** Delete appAchievement mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "appachievement", "delete", string | number];
95
- };
96
- export declare const appStepMutationKeys: {
97
- /** All appStep mutation keys */ readonly all: readonly ["mutation", "appstep"];
98
- /** Create appStep mutation key */ readonly create: () => readonly ["mutation", "appstep", "create"];
99
- /** Update appStep mutation key */ readonly update: (id: string | number) => readonly ["mutation", "appstep", "update", string | number];
100
- /** Delete appStep mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "appstep", "delete", string | number];
101
- };
102
84
  export declare const appLimitCapsDefaultMutationKeys: {
103
85
  /** All appLimitCapsDefault mutation keys */ readonly all: readonly ["mutation", "applimitcapsdefault"];
104
86
  /** Create appLimitCapsDefault mutation key */ readonly create: () => readonly ["mutation", "applimitcapsdefault", "create"];
@@ -159,6 +141,18 @@ export declare const orgLimitCreditMutationKeys: {
159
141
  /** Update orgLimitCredit mutation key */ readonly update: (id: string | number) => readonly ["mutation", "orglimitcredit", "update", string | number];
160
142
  /** Delete orgLimitCredit mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "orglimitcredit", "delete", string | number];
161
143
  };
144
+ export declare const appLimitWarningMutationKeys: {
145
+ /** All appLimitWarning mutation keys */ readonly all: readonly ["mutation", "applimitwarning"];
146
+ /** Create appLimitWarning mutation key */ readonly create: () => readonly ["mutation", "applimitwarning", "create"];
147
+ /** Update appLimitWarning mutation key */ readonly update: (id: string | number) => readonly ["mutation", "applimitwarning", "update", string | number];
148
+ /** Delete appLimitWarning mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "applimitwarning", "delete", string | number];
149
+ };
150
+ export declare const orgLimitWarningMutationKeys: {
151
+ /** All orgLimitWarning mutation keys */ readonly all: readonly ["mutation", "orglimitwarning"];
152
+ /** Create orgLimitWarning mutation key */ readonly create: () => readonly ["mutation", "orglimitwarning", "create"];
153
+ /** Update orgLimitWarning mutation key */ readonly update: (id: string | number) => readonly ["mutation", "orglimitwarning", "update", string | number];
154
+ /** Delete orgLimitWarning mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "orglimitwarning", "delete", string | number];
155
+ };
162
156
  export declare const orgChartEdgeGrantMutationKeys: {
163
157
  /** All orgChartEdgeGrant mutation keys */ readonly all: readonly ["mutation", "orgchartedgegrant"];
164
158
  /** Create orgChartEdgeGrant mutation key */ readonly create: () => readonly ["mutation", "orgchartedgegrant", "create"];
@@ -225,18 +219,6 @@ export declare const usageSnapshotMutationKeys: {
225
219
  /** Update usageSnapshot mutation key */ readonly update: (id: string | number) => readonly ["mutation", "usagesnapshot", "update", string | number];
226
220
  /** Delete usageSnapshot mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "usagesnapshot", "delete", string | number];
227
221
  };
228
- export declare const orgMemberProfileMutationKeys: {
229
- /** All orgMemberProfile mutation keys */ readonly all: readonly ["mutation", "orgmemberprofile"];
230
- /** Create orgMemberProfile mutation key */ readonly create: () => readonly ["mutation", "orgmemberprofile", "create"];
231
- /** Update orgMemberProfile mutation key */ readonly update: (id: string | number) => readonly ["mutation", "orgmemberprofile", "update", string | number];
232
- /** Delete orgMemberProfile mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "orgmemberprofile", "delete", string | number];
233
- };
234
- export declare const appLevelMutationKeys: {
235
- /** All appLevel mutation keys */ readonly all: readonly ["mutation", "applevel"];
236
- /** Create appLevel mutation key */ readonly create: () => readonly ["mutation", "applevel", "create"];
237
- /** Update appLevel mutation key */ readonly update: (id: string | number) => readonly ["mutation", "applevel", "update", string | number];
238
- /** Delete appLevel mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "applevel", "delete", string | number];
239
- };
240
222
  export declare const appLimitMutationKeys: {
241
223
  /** All appLimit mutation keys */ readonly all: readonly ["mutation", "applimit"];
242
224
  /** Create appLimit mutation key */ readonly create: () => readonly ["mutation", "applimit", "create"];
@@ -267,6 +249,12 @@ export declare const orgLimitMutationKeys: {
267
249
  /** Update orgLimit mutation key */ readonly update: (id: string | number) => readonly ["mutation", "orglimit", "update", string | number];
268
250
  /** Delete orgLimit mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "orglimit", "delete", string | number];
269
251
  };
252
+ export declare const orgMemberProfileMutationKeys: {
253
+ /** All orgMemberProfile mutation keys */ readonly all: readonly ["mutation", "orgmemberprofile"];
254
+ /** Create orgMemberProfile mutation key */ readonly create: () => readonly ["mutation", "orgmemberprofile", "create"];
255
+ /** Update orgMemberProfile mutation key */ readonly update: (id: string | number) => readonly ["mutation", "orgmemberprofile", "update", string | number];
256
+ /** Delete orgMemberProfile mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "orgmemberprofile", "delete", string | number];
257
+ };
270
258
  export declare const appMembershipMutationKeys: {
271
259
  /** All appMembership mutation keys */ readonly all: readonly ["mutation", "appmembership"];
272
260
  /** Create appMembership mutation key */ readonly create: () => readonly ["mutation", "appmembership", "create"];
@@ -337,12 +325,6 @@ export declare const mutationKeys: {
337
325
  /** Update orgPermission mutation key */ readonly update: (id: string | number) => readonly ["mutation", "orgpermission", "update", string | number];
338
326
  /** Delete orgPermission mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "orgpermission", "delete", string | number];
339
327
  };
340
- readonly appLevelRequirement: {
341
- /** All appLevelRequirement mutation keys */ readonly all: readonly ["mutation", "applevelrequirement"];
342
- /** Create appLevelRequirement mutation key */ readonly create: () => readonly ["mutation", "applevelrequirement", "create"];
343
- /** Update appLevelRequirement mutation key */ readonly update: (id: string | number) => readonly ["mutation", "applevelrequirement", "update", string | number];
344
- /** Delete appLevelRequirement mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "applevelrequirement", "delete", string | number];
345
- };
346
328
  readonly appLimitCreditRedemption: {
347
329
  /** All appLimitCreditRedemption mutation keys */ readonly all: readonly ["mutation", "applimitcreditredemption"];
348
330
  /** Create appLimitCreditRedemption mutation key */ readonly create: () => readonly ["mutation", "applimitcreditredemption", "create"];
@@ -397,18 +379,6 @@ export declare const mutationKeys: {
397
379
  /** Update appOwnerGrant mutation key */ readonly update: (id: string | number) => readonly ["mutation", "appownergrant", "update", string | number];
398
380
  /** Delete appOwnerGrant mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "appownergrant", "delete", string | number];
399
381
  };
400
- readonly appAchievement: {
401
- /** All appAchievement mutation keys */ readonly all: readonly ["mutation", "appachievement"];
402
- /** Create appAchievement mutation key */ readonly create: () => readonly ["mutation", "appachievement", "create"];
403
- /** Update appAchievement mutation key */ readonly update: (id: string | number) => readonly ["mutation", "appachievement", "update", string | number];
404
- /** Delete appAchievement mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "appachievement", "delete", string | number];
405
- };
406
- readonly appStep: {
407
- /** All appStep mutation keys */ readonly all: readonly ["mutation", "appstep"];
408
- /** Create appStep mutation key */ readonly create: () => readonly ["mutation", "appstep", "create"];
409
- /** Update appStep mutation key */ readonly update: (id: string | number) => readonly ["mutation", "appstep", "update", string | number];
410
- /** Delete appStep mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "appstep", "delete", string | number];
411
- };
412
382
  readonly appLimitCapsDefault: {
413
383
  /** All appLimitCapsDefault mutation keys */ readonly all: readonly ["mutation", "applimitcapsdefault"];
414
384
  /** Create appLimitCapsDefault mutation key */ readonly create: () => readonly ["mutation", "applimitcapsdefault", "create"];
@@ -469,6 +439,18 @@ export declare const mutationKeys: {
469
439
  /** Update orgLimitCredit mutation key */ readonly update: (id: string | number) => readonly ["mutation", "orglimitcredit", "update", string | number];
470
440
  /** Delete orgLimitCredit mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "orglimitcredit", "delete", string | number];
471
441
  };
442
+ readonly appLimitWarning: {
443
+ /** All appLimitWarning mutation keys */ readonly all: readonly ["mutation", "applimitwarning"];
444
+ /** Create appLimitWarning mutation key */ readonly create: () => readonly ["mutation", "applimitwarning", "create"];
445
+ /** Update appLimitWarning mutation key */ readonly update: (id: string | number) => readonly ["mutation", "applimitwarning", "update", string | number];
446
+ /** Delete appLimitWarning mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "applimitwarning", "delete", string | number];
447
+ };
448
+ readonly orgLimitWarning: {
449
+ /** All orgLimitWarning mutation keys */ readonly all: readonly ["mutation", "orglimitwarning"];
450
+ /** Create orgLimitWarning mutation key */ readonly create: () => readonly ["mutation", "orglimitwarning", "create"];
451
+ /** Update orgLimitWarning mutation key */ readonly update: (id: string | number) => readonly ["mutation", "orglimitwarning", "update", string | number];
452
+ /** Delete orgLimitWarning mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "orglimitwarning", "delete", string | number];
453
+ };
472
454
  readonly orgChartEdgeGrant: {
473
455
  /** All orgChartEdgeGrant mutation keys */ readonly all: readonly ["mutation", "orgchartedgegrant"];
474
456
  /** Create orgChartEdgeGrant mutation key */ readonly create: () => readonly ["mutation", "orgchartedgegrant", "create"];
@@ -535,18 +517,6 @@ export declare const mutationKeys: {
535
517
  /** Update usageSnapshot mutation key */ readonly update: (id: string | number) => readonly ["mutation", "usagesnapshot", "update", string | number];
536
518
  /** Delete usageSnapshot mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "usagesnapshot", "delete", string | number];
537
519
  };
538
- readonly orgMemberProfile: {
539
- /** All orgMemberProfile mutation keys */ readonly all: readonly ["mutation", "orgmemberprofile"];
540
- /** Create orgMemberProfile mutation key */ readonly create: () => readonly ["mutation", "orgmemberprofile", "create"];
541
- /** Update orgMemberProfile mutation key */ readonly update: (id: string | number) => readonly ["mutation", "orgmemberprofile", "update", string | number];
542
- /** Delete orgMemberProfile mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "orgmemberprofile", "delete", string | number];
543
- };
544
- readonly appLevel: {
545
- /** All appLevel mutation keys */ readonly all: readonly ["mutation", "applevel"];
546
- /** Create appLevel mutation key */ readonly create: () => readonly ["mutation", "applevel", "create"];
547
- /** Update appLevel mutation key */ readonly update: (id: string | number) => readonly ["mutation", "applevel", "update", string | number];
548
- /** Delete appLevel mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "applevel", "delete", string | number];
549
- };
550
520
  readonly appLimit: {
551
521
  /** All appLimit mutation keys */ readonly all: readonly ["mutation", "applimit"];
552
522
  /** Create appLimit mutation key */ readonly create: () => readonly ["mutation", "applimit", "create"];
@@ -577,6 +547,12 @@ export declare const mutationKeys: {
577
547
  /** Update orgLimit mutation key */ readonly update: (id: string | number) => readonly ["mutation", "orglimit", "update", string | number];
578
548
  /** Delete orgLimit mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "orglimit", "delete", string | number];
579
549
  };
550
+ readonly orgMemberProfile: {
551
+ /** All orgMemberProfile mutation keys */ readonly all: readonly ["mutation", "orgmemberprofile"];
552
+ /** Create orgMemberProfile mutation key */ readonly create: () => readonly ["mutation", "orgmemberprofile", "create"];
553
+ /** Update orgMemberProfile mutation key */ readonly update: (id: string | number) => readonly ["mutation", "orgmemberprofile", "update", string | number];
554
+ /** Delete orgMemberProfile mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "orgmemberprofile", "delete", string | number];
555
+ };
580
556
  readonly appMembership: {
581
557
  /** All appMembership mutation keys */ readonly all: readonly ["mutation", "appmembership"];
582
558
  /** Create appMembership mutation key */ readonly create: () => readonly ["mutation", "appmembership", "create"];