@constructive-io/react 0.27.1 → 0.27.2

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 (373) hide show
  1. package/api/orm/input-types.d.ts +144 -171
  2. package/api/schema-types.d.ts +676 -678
  3. package/api/types.d.ts +9 -14
  4. package/auth/hooks/index.d.ts +1 -1
  5. package/auth/hooks/index.js +1 -1
  6. package/auth/hooks/invalidation.d.ts +24 -0
  7. package/auth/hooks/invalidation.js +64 -0
  8. package/auth/hooks/mutation-keys.d.ts +56 -0
  9. package/auth/hooks/mutation-keys.js +44 -1
  10. package/auth/hooks/mutations/index.d.ts +11 -0
  11. package/auth/hooks/mutations/index.js +11 -0
  12. package/auth/hooks/mutations/useCreateOrgApiKeyListMutation.d.ts +34 -0
  13. package/auth/hooks/mutations/useCreateOrgApiKeyListMutation.js +34 -0
  14. package/auth/hooks/mutations/useCreateOrgApiKeyMutation.d.ts +20 -0
  15. package/auth/hooks/mutations/useCreateOrgApiKeyMutation.js +26 -0
  16. package/auth/hooks/mutations/useCreateOrgPrincipalMutation.d.ts +20 -0
  17. package/auth/hooks/mutations/useCreateOrgPrincipalMutation.js +26 -0
  18. package/auth/hooks/mutations/useCreatePrincipalEntityMutation.d.ts +34 -0
  19. package/auth/hooks/mutations/useCreatePrincipalEntityMutation.js +34 -0
  20. package/auth/hooks/mutations/useCreatePrincipalMutation.d.ts +34 -0
  21. package/auth/hooks/mutations/useCreatePrincipalMutation.js +34 -0
  22. package/auth/hooks/mutations/useCreatePrincipalScopeOverrideMutation.d.ts +34 -0
  23. package/auth/hooks/mutations/useCreatePrincipalScopeOverrideMutation.js +34 -0
  24. package/auth/hooks/mutations/useDeleteOrgPrincipalMutation.d.ts +20 -0
  25. package/auth/hooks/mutations/useDeleteOrgPrincipalMutation.js +26 -0
  26. package/auth/hooks/mutations/useDeletePrincipalEntityMutation.d.ts +38 -0
  27. package/auth/hooks/mutations/useDeletePrincipalEntityMutation.js +39 -0
  28. package/auth/hooks/mutations/useDeletePrincipalMutation.d.ts +38 -0
  29. package/auth/hooks/mutations/useDeletePrincipalMutation.js +39 -0
  30. package/auth/hooks/mutations/useRevokeOrgApiKeyMutation.d.ts +20 -0
  31. package/auth/hooks/mutations/useRevokeOrgApiKeyMutation.js +26 -0
  32. package/auth/hooks/mutations/useUpdatePrincipalEntityMutation.d.ts +40 -0
  33. package/auth/hooks/mutations/useUpdatePrincipalEntityMutation.js +40 -0
  34. package/auth/hooks/queries/index.d.ts +9 -1
  35. package/auth/hooks/queries/index.js +9 -1
  36. package/auth/hooks/queries/useOrgApiKeyListQuery.d.ts +65 -0
  37. package/auth/hooks/queries/useOrgApiKeyListQuery.js +53 -0
  38. package/auth/hooks/queries/useOrgApiKeyListsQuery.d.ts +69 -0
  39. package/auth/hooks/queries/useOrgApiKeyListsQuery.js +38 -0
  40. package/auth/hooks/queries/usePrincipalEntitiesQuery.d.ts +69 -0
  41. package/auth/hooks/queries/usePrincipalEntitiesQuery.js +38 -0
  42. package/auth/hooks/queries/usePrincipalEntityQuery.d.ts +65 -0
  43. package/auth/hooks/queries/usePrincipalEntityQuery.js +53 -0
  44. package/auth/hooks/queries/usePrincipalQuery.d.ts +65 -0
  45. package/auth/hooks/queries/usePrincipalQuery.js +53 -0
  46. package/auth/hooks/queries/usePrincipalScopeOverrideQuery.d.ts +65 -0
  47. package/auth/hooks/queries/usePrincipalScopeOverrideQuery.js +53 -0
  48. package/auth/hooks/queries/usePrincipalScopeOverridesQuery.d.ts +69 -0
  49. package/auth/hooks/queries/usePrincipalScopeOverridesQuery.js +38 -0
  50. package/auth/hooks/queries/usePrincipalsQuery.d.ts +69 -0
  51. package/auth/hooks/queries/usePrincipalsQuery.js +38 -0
  52. package/auth/hooks/query-keys.d.ts +58 -2
  53. package/auth/hooks/query-keys.js +34 -2
  54. package/auth/orm/index.d.ts +32 -4
  55. package/auth/orm/index.js +8 -0
  56. package/auth/orm/input-types.d.ts +915 -145
  57. package/auth/orm/input-types.js +7 -0
  58. package/auth/orm/models/index.d.ts +4 -0
  59. package/auth/orm/models/index.js +9 -1
  60. package/auth/orm/models/orgApiKeyList.d.ts +36 -0
  61. package/auth/orm/models/orgApiKeyList.js +80 -0
  62. package/auth/orm/models/principal.d.ts +45 -0
  63. package/auth/orm/models/principal.js +93 -0
  64. package/auth/orm/models/principalEntity.d.ts +54 -0
  65. package/auth/orm/models/principalEntity.js +104 -0
  66. package/auth/orm/models/principalScopeOverride.d.ts +36 -0
  67. package/auth/orm/models/principalScopeOverride.js +80 -0
  68. package/auth/orm/mutation/index.d.ts +33 -1
  69. package/auth/orm/mutation/index.js +48 -0
  70. package/auth/orm/query/index.d.ts +4 -4
  71. package/auth/orm/query/index.js +7 -7
  72. package/auth/schema-types.d.ts +477 -93
  73. package/auth/types.d.ts +43 -0
  74. package/compute/hooks/index.d.ts +1 -1
  75. package/compute/hooks/index.js +1 -1
  76. package/compute/hooks/invalidation.d.ts +29 -5
  77. package/compute/hooks/invalidation.js +73 -9
  78. package/compute/hooks/mutation-keys.d.ts +60 -12
  79. package/compute/hooks/mutation-keys.js +41 -10
  80. package/compute/hooks/mutations/index.d.ts +16 -4
  81. package/compute/hooks/mutations/index.js +16 -4
  82. package/compute/hooks/mutations/useCreatePlatformNamespaceEventMutation.d.ts +34 -0
  83. package/compute/hooks/mutations/useCreatePlatformNamespaceEventMutation.js +34 -0
  84. package/compute/hooks/mutations/useCreatePlatformNamespaceMutation.d.ts +34 -0
  85. package/compute/hooks/mutations/useCreatePlatformNamespaceMutation.js +34 -0
  86. package/compute/hooks/mutations/useCreateResourceEventMutation.d.ts +34 -0
  87. package/compute/hooks/mutations/useCreateResourceEventMutation.js +34 -0
  88. package/compute/hooks/mutations/useCreateResourceMutation.d.ts +34 -0
  89. package/compute/hooks/mutations/useCreateResourceMutation.js +34 -0
  90. package/compute/hooks/mutations/useDeletePlatformNamespaceEventMutation.d.ts +40 -0
  91. package/compute/hooks/mutations/useDeletePlatformNamespaceEventMutation.js +40 -0
  92. package/compute/hooks/mutations/useDeletePlatformNamespaceMutation.d.ts +38 -0
  93. package/compute/hooks/mutations/useDeletePlatformNamespaceMutation.js +39 -0
  94. package/compute/hooks/mutations/useDeleteResourceEventMutation.d.ts +40 -0
  95. package/compute/hooks/mutations/useDeleteResourceEventMutation.js +40 -0
  96. package/compute/hooks/mutations/useDeleteResourceMutation.d.ts +38 -0
  97. package/compute/hooks/mutations/useDeleteResourceMutation.js +39 -0
  98. package/compute/hooks/mutations/useUpdatePlatformNamespaceEventMutation.d.ts +42 -0
  99. package/compute/hooks/mutations/useUpdatePlatformNamespaceEventMutation.js +41 -0
  100. package/compute/hooks/mutations/useUpdatePlatformNamespaceMutation.d.ts +40 -0
  101. package/compute/hooks/mutations/useUpdatePlatformNamespaceMutation.js +40 -0
  102. package/compute/hooks/mutations/useUpdateResourceEventMutation.d.ts +42 -0
  103. package/compute/hooks/mutations/useUpdateResourceEventMutation.js +41 -0
  104. package/compute/hooks/mutations/useUpdateResourceMutation.d.ts +40 -0
  105. package/compute/hooks/mutations/useUpdateResourceMutation.js +40 -0
  106. package/compute/hooks/queries/index.d.ts +10 -2
  107. package/compute/hooks/queries/index.js +10 -2
  108. package/compute/hooks/queries/usePlatformNamespaceEventQuery.d.ts +65 -0
  109. package/compute/hooks/queries/usePlatformNamespaceEventQuery.js +53 -0
  110. package/compute/hooks/queries/usePlatformNamespaceEventsQuery.d.ts +69 -0
  111. package/compute/hooks/queries/usePlatformNamespaceEventsQuery.js +38 -0
  112. package/compute/hooks/queries/usePlatformNamespaceQuery.d.ts +65 -0
  113. package/compute/hooks/queries/usePlatformNamespaceQuery.js +53 -0
  114. package/compute/hooks/queries/usePlatformNamespacesQuery.d.ts +69 -0
  115. package/compute/hooks/queries/usePlatformNamespacesQuery.js +38 -0
  116. package/compute/hooks/queries/useResourceEventQuery.d.ts +65 -0
  117. package/compute/hooks/queries/useResourceEventQuery.js +53 -0
  118. package/compute/hooks/queries/useResourceEventsQuery.d.ts +69 -0
  119. package/compute/hooks/queries/useResourceEventsQuery.js +38 -0
  120. package/compute/hooks/queries/useResourceQuery.d.ts +65 -0
  121. package/compute/hooks/queries/useResourceQuery.js +53 -0
  122. package/compute/hooks/queries/useResourcesQuery.d.ts +69 -0
  123. package/compute/hooks/queries/useResourcesQuery.js +38 -0
  124. package/compute/hooks/query-keys.d.ts +68 -12
  125. package/compute/hooks/query-keys.js +40 -8
  126. package/compute/orm/index.d.ts +15 -7
  127. package/compute/orm/index.js +10 -2
  128. package/compute/orm/input-types.d.ts +1159 -221
  129. package/compute/orm/input-types.js +4 -0
  130. package/compute/orm/models/index.d.ts +5 -1
  131. package/compute/orm/models/index.js +11 -3
  132. package/compute/orm/models/platformNamespace.d.ts +54 -0
  133. package/compute/orm/models/platformNamespace.js +104 -0
  134. package/compute/orm/models/platformNamespaceEvent.d.ts +56 -0
  135. package/compute/orm/models/platformNamespaceEvent.js +107 -0
  136. package/compute/orm/models/resource.d.ts +54 -0
  137. package/compute/orm/models/resource.js +104 -0
  138. package/compute/orm/models/resourceEvent.d.ts +56 -0
  139. package/compute/orm/models/resourceEvent.js +107 -0
  140. package/compute/orm/mutation/index.d.ts +9 -9
  141. package/compute/orm/mutation/index.js +12 -12
  142. package/compute/schema-types.d.ts +691 -107
  143. package/compute/types.d.ts +71 -12
  144. package/esm/api/orm/input-types.d.ts +144 -171
  145. package/esm/api/schema-types.d.ts +676 -678
  146. package/esm/api/types.d.ts +9 -14
  147. package/esm/auth/hooks/index.d.ts +1 -1
  148. package/esm/auth/hooks/index.js +1 -1
  149. package/esm/auth/hooks/invalidation.d.ts +24 -0
  150. package/esm/auth/hooks/invalidation.js +65 -1
  151. package/esm/auth/hooks/mutation-keys.d.ts +56 -0
  152. package/esm/auth/hooks/mutation-keys.js +43 -0
  153. package/esm/auth/hooks/mutations/index.d.ts +11 -0
  154. package/esm/auth/hooks/mutations/index.js +11 -0
  155. package/esm/auth/hooks/mutations/useCreateOrgApiKeyListMutation.d.ts +34 -0
  156. package/esm/auth/hooks/mutations/useCreateOrgApiKeyListMutation.js +31 -0
  157. package/esm/auth/hooks/mutations/useCreateOrgApiKeyMutation.d.ts +20 -0
  158. package/esm/auth/hooks/mutations/useCreateOrgApiKeyMutation.js +23 -0
  159. package/esm/auth/hooks/mutations/useCreateOrgPrincipalMutation.d.ts +20 -0
  160. package/esm/auth/hooks/mutations/useCreateOrgPrincipalMutation.js +23 -0
  161. package/esm/auth/hooks/mutations/useCreatePrincipalEntityMutation.d.ts +34 -0
  162. package/esm/auth/hooks/mutations/useCreatePrincipalEntityMutation.js +31 -0
  163. package/esm/auth/hooks/mutations/useCreatePrincipalMutation.d.ts +34 -0
  164. package/esm/auth/hooks/mutations/useCreatePrincipalMutation.js +31 -0
  165. package/esm/auth/hooks/mutations/useCreatePrincipalScopeOverrideMutation.d.ts +34 -0
  166. package/esm/auth/hooks/mutations/useCreatePrincipalScopeOverrideMutation.js +31 -0
  167. package/esm/auth/hooks/mutations/useDeleteOrgPrincipalMutation.d.ts +20 -0
  168. package/esm/auth/hooks/mutations/useDeleteOrgPrincipalMutation.js +23 -0
  169. package/esm/auth/hooks/mutations/useDeletePrincipalEntityMutation.d.ts +38 -0
  170. package/esm/auth/hooks/mutations/useDeletePrincipalEntityMutation.js +36 -0
  171. package/esm/auth/hooks/mutations/useDeletePrincipalMutation.d.ts +38 -0
  172. package/esm/auth/hooks/mutations/useDeletePrincipalMutation.js +36 -0
  173. package/esm/auth/hooks/mutations/useRevokeOrgApiKeyMutation.d.ts +20 -0
  174. package/esm/auth/hooks/mutations/useRevokeOrgApiKeyMutation.js +23 -0
  175. package/esm/auth/hooks/mutations/useUpdatePrincipalEntityMutation.d.ts +40 -0
  176. package/esm/auth/hooks/mutations/useUpdatePrincipalEntityMutation.js +37 -0
  177. package/esm/auth/hooks/queries/index.d.ts +9 -1
  178. package/esm/auth/hooks/queries/index.js +9 -1
  179. package/esm/auth/hooks/queries/useOrgApiKeyListQuery.d.ts +65 -0
  180. package/esm/auth/hooks/queries/useOrgApiKeyListQuery.js +47 -0
  181. package/esm/auth/hooks/queries/useOrgApiKeyListsQuery.d.ts +69 -0
  182. package/esm/auth/hooks/queries/useOrgApiKeyListsQuery.js +32 -0
  183. package/esm/auth/hooks/queries/usePrincipalEntitiesQuery.d.ts +69 -0
  184. package/esm/auth/hooks/queries/usePrincipalEntitiesQuery.js +32 -0
  185. package/esm/auth/hooks/queries/usePrincipalEntityQuery.d.ts +65 -0
  186. package/esm/auth/hooks/queries/usePrincipalEntityQuery.js +47 -0
  187. package/esm/auth/hooks/queries/usePrincipalQuery.d.ts +65 -0
  188. package/esm/auth/hooks/queries/usePrincipalQuery.js +47 -0
  189. package/esm/auth/hooks/queries/usePrincipalScopeOverrideQuery.d.ts +65 -0
  190. package/esm/auth/hooks/queries/usePrincipalScopeOverrideQuery.js +47 -0
  191. package/esm/auth/hooks/queries/usePrincipalScopeOverridesQuery.d.ts +69 -0
  192. package/esm/auth/hooks/queries/usePrincipalScopeOverridesQuery.js +32 -0
  193. package/esm/auth/hooks/queries/usePrincipalsQuery.d.ts +69 -0
  194. package/esm/auth/hooks/queries/usePrincipalsQuery.js +32 -0
  195. package/esm/auth/hooks/query-keys.d.ts +58 -2
  196. package/esm/auth/hooks/query-keys.js +33 -1
  197. package/esm/auth/orm/index.d.ts +32 -4
  198. package/esm/auth/orm/index.js +8 -0
  199. package/esm/auth/orm/input-types.d.ts +915 -145
  200. package/esm/auth/orm/input-types.js +7 -0
  201. package/esm/auth/orm/models/index.d.ts +4 -0
  202. package/esm/auth/orm/models/index.js +4 -0
  203. package/esm/auth/orm/models/orgApiKeyList.d.ts +36 -0
  204. package/esm/auth/orm/models/orgApiKeyList.js +76 -0
  205. package/esm/auth/orm/models/principal.d.ts +45 -0
  206. package/esm/auth/orm/models/principal.js +89 -0
  207. package/esm/auth/orm/models/principalEntity.d.ts +54 -0
  208. package/esm/auth/orm/models/principalEntity.js +100 -0
  209. package/esm/auth/orm/models/principalScopeOverride.d.ts +36 -0
  210. package/esm/auth/orm/models/principalScopeOverride.js +76 -0
  211. package/esm/auth/orm/mutation/index.d.ts +33 -1
  212. package/esm/auth/orm/mutation/index.js +48 -0
  213. package/esm/auth/orm/query/index.d.ts +4 -4
  214. package/esm/auth/orm/query/index.js +7 -7
  215. package/esm/auth/schema-types.d.ts +477 -93
  216. package/esm/auth/types.d.ts +43 -0
  217. package/esm/compute/hooks/index.d.ts +1 -1
  218. package/esm/compute/hooks/index.js +1 -1
  219. package/esm/compute/hooks/invalidation.d.ts +29 -5
  220. package/esm/compute/hooks/invalidation.js +74 -10
  221. package/esm/compute/hooks/mutation-keys.d.ts +60 -12
  222. package/esm/compute/hooks/mutation-keys.js +40 -9
  223. package/esm/compute/hooks/mutations/index.d.ts +16 -4
  224. package/esm/compute/hooks/mutations/index.js +16 -4
  225. package/esm/compute/hooks/mutations/useCreatePlatformNamespaceEventMutation.d.ts +34 -0
  226. package/esm/compute/hooks/mutations/useCreatePlatformNamespaceEventMutation.js +31 -0
  227. package/esm/compute/hooks/mutations/useCreatePlatformNamespaceMutation.d.ts +34 -0
  228. package/esm/compute/hooks/mutations/useCreatePlatformNamespaceMutation.js +31 -0
  229. package/esm/compute/hooks/mutations/useCreateResourceEventMutation.d.ts +34 -0
  230. package/esm/compute/hooks/mutations/useCreateResourceEventMutation.js +31 -0
  231. package/esm/compute/hooks/mutations/useCreateResourceMutation.d.ts +34 -0
  232. package/esm/compute/hooks/mutations/useCreateResourceMutation.js +31 -0
  233. package/esm/compute/hooks/mutations/useDeletePlatformNamespaceEventMutation.d.ts +40 -0
  234. package/esm/compute/hooks/mutations/useDeletePlatformNamespaceEventMutation.js +37 -0
  235. package/esm/compute/hooks/mutations/useDeletePlatformNamespaceMutation.d.ts +38 -0
  236. package/esm/compute/hooks/mutations/useDeletePlatformNamespaceMutation.js +36 -0
  237. package/esm/compute/hooks/mutations/useDeleteResourceEventMutation.d.ts +40 -0
  238. package/esm/compute/hooks/mutations/useDeleteResourceEventMutation.js +37 -0
  239. package/esm/compute/hooks/mutations/useDeleteResourceMutation.d.ts +38 -0
  240. package/esm/compute/hooks/mutations/useDeleteResourceMutation.js +36 -0
  241. package/esm/compute/hooks/mutations/useUpdatePlatformNamespaceEventMutation.d.ts +42 -0
  242. package/esm/compute/hooks/mutations/useUpdatePlatformNamespaceEventMutation.js +38 -0
  243. package/esm/compute/hooks/mutations/useUpdatePlatformNamespaceMutation.d.ts +40 -0
  244. package/esm/compute/hooks/mutations/useUpdatePlatformNamespaceMutation.js +37 -0
  245. package/esm/compute/hooks/mutations/useUpdateResourceEventMutation.d.ts +42 -0
  246. package/esm/compute/hooks/mutations/useUpdateResourceEventMutation.js +38 -0
  247. package/esm/compute/hooks/mutations/useUpdateResourceMutation.d.ts +40 -0
  248. package/esm/compute/hooks/mutations/useUpdateResourceMutation.js +37 -0
  249. package/esm/compute/hooks/queries/index.d.ts +10 -2
  250. package/esm/compute/hooks/queries/index.js +10 -2
  251. package/esm/compute/hooks/queries/usePlatformNamespaceEventQuery.d.ts +65 -0
  252. package/esm/compute/hooks/queries/usePlatformNamespaceEventQuery.js +47 -0
  253. package/esm/compute/hooks/queries/usePlatformNamespaceEventsQuery.d.ts +69 -0
  254. package/esm/compute/hooks/queries/usePlatformNamespaceEventsQuery.js +32 -0
  255. package/esm/compute/hooks/queries/usePlatformNamespaceQuery.d.ts +65 -0
  256. package/esm/compute/hooks/queries/usePlatformNamespaceQuery.js +47 -0
  257. package/esm/compute/hooks/queries/usePlatformNamespacesQuery.d.ts +69 -0
  258. package/esm/compute/hooks/queries/usePlatformNamespacesQuery.js +32 -0
  259. package/esm/compute/hooks/queries/useResourceEventQuery.d.ts +65 -0
  260. package/esm/compute/hooks/queries/useResourceEventQuery.js +47 -0
  261. package/esm/compute/hooks/queries/useResourceEventsQuery.d.ts +69 -0
  262. package/esm/compute/hooks/queries/useResourceEventsQuery.js +32 -0
  263. package/esm/compute/hooks/queries/useResourceQuery.d.ts +65 -0
  264. package/esm/compute/hooks/queries/useResourceQuery.js +47 -0
  265. package/esm/compute/hooks/queries/useResourcesQuery.d.ts +69 -0
  266. package/esm/compute/hooks/queries/useResourcesQuery.js +32 -0
  267. package/esm/compute/hooks/query-keys.d.ts +68 -12
  268. package/esm/compute/hooks/query-keys.js +39 -7
  269. package/esm/compute/orm/index.d.ts +15 -7
  270. package/esm/compute/orm/index.js +10 -2
  271. package/esm/compute/orm/input-types.d.ts +1159 -221
  272. package/esm/compute/orm/input-types.js +4 -0
  273. package/esm/compute/orm/models/index.d.ts +5 -1
  274. package/esm/compute/orm/models/index.js +5 -1
  275. package/esm/compute/orm/models/platformNamespace.d.ts +54 -0
  276. package/esm/compute/orm/models/platformNamespace.js +100 -0
  277. package/esm/compute/orm/models/platformNamespaceEvent.d.ts +56 -0
  278. package/esm/compute/orm/models/platformNamespaceEvent.js +103 -0
  279. package/esm/compute/orm/models/resource.d.ts +54 -0
  280. package/esm/compute/orm/models/resource.js +100 -0
  281. package/esm/compute/orm/models/resourceEvent.d.ts +56 -0
  282. package/esm/compute/orm/models/resourceEvent.js +103 -0
  283. package/esm/compute/orm/mutation/index.d.ts +9 -9
  284. package/esm/compute/orm/mutation/index.js +12 -12
  285. package/esm/compute/schema-types.d.ts +691 -107
  286. package/esm/compute/types.d.ts +71 -12
  287. package/esm/modules/hooks/index.d.ts +1 -1
  288. package/esm/modules/hooks/index.js +1 -1
  289. package/esm/modules/hooks/invalidation.d.ts +24 -12
  290. package/esm/modules/hooks/invalidation.js +63 -31
  291. package/esm/modules/hooks/mutation-keys.d.ts +48 -24
  292. package/esm/modules/hooks/mutation-keys.js +28 -14
  293. package/esm/modules/hooks/mutations/index.d.ts +12 -6
  294. package/esm/modules/hooks/mutations/index.js +12 -6
  295. package/esm/modules/hooks/mutations/useCreatePrincipalAuthModuleMutation.d.ts +34 -0
  296. package/esm/modules/hooks/mutations/useCreatePrincipalAuthModuleMutation.js +31 -0
  297. package/esm/modules/hooks/mutations/useCreateResourceModuleMutation.d.ts +34 -0
  298. package/esm/modules/hooks/mutations/useCreateResourceModuleMutation.js +31 -0
  299. package/esm/modules/hooks/mutations/useDeletePrincipalAuthModuleMutation.d.ts +38 -0
  300. package/esm/modules/hooks/mutations/useDeletePrincipalAuthModuleMutation.js +36 -0
  301. package/esm/modules/hooks/mutations/useDeleteResourceModuleMutation.d.ts +38 -0
  302. package/esm/modules/hooks/mutations/useDeleteResourceModuleMutation.js +36 -0
  303. package/esm/modules/hooks/mutations/useUpdatePrincipalAuthModuleMutation.d.ts +40 -0
  304. package/esm/modules/hooks/mutations/useUpdatePrincipalAuthModuleMutation.js +37 -0
  305. package/esm/modules/hooks/mutations/useUpdateResourceModuleMutation.d.ts +40 -0
  306. package/esm/modules/hooks/mutations/useUpdateResourceModuleMutation.js +37 -0
  307. package/esm/modules/hooks/queries/index.d.ts +8 -4
  308. package/esm/modules/hooks/queries/index.js +8 -4
  309. package/esm/modules/hooks/queries/usePrincipalAuthModuleQuery.d.ts +65 -0
  310. package/esm/modules/hooks/queries/usePrincipalAuthModuleQuery.js +47 -0
  311. package/esm/modules/hooks/queries/usePrincipalAuthModulesQuery.d.ts +69 -0
  312. package/esm/modules/hooks/queries/usePrincipalAuthModulesQuery.js +32 -0
  313. package/esm/modules/hooks/queries/useResourceModuleQuery.d.ts +65 -0
  314. package/esm/modules/hooks/queries/useResourceModuleQuery.js +47 -0
  315. package/esm/modules/hooks/queries/useResourceModulesQuery.d.ts +69 -0
  316. package/esm/modules/hooks/queries/useResourceModulesQuery.js +32 -0
  317. package/esm/modules/hooks/query-keys.d.ts +56 -28
  318. package/esm/modules/hooks/query-keys.js +32 -16
  319. package/esm/modules/orm/index.d.ts +8 -4
  320. package/esm/modules/orm/index.js +8 -4
  321. package/esm/modules/orm/input-types.d.ts +868 -411
  322. package/esm/modules/orm/models/index.d.ts +4 -2
  323. package/esm/modules/orm/models/index.js +4 -2
  324. package/esm/modules/orm/models/principalAuthModule.d.ts +54 -0
  325. package/esm/modules/orm/models/principalAuthModule.js +100 -0
  326. package/esm/modules/orm/models/resourceModule.d.ts +54 -0
  327. package/esm/modules/orm/models/resourceModule.js +100 -0
  328. package/esm/modules/schema-types.d.ts +451 -169
  329. package/esm/modules/types.d.ts +75 -33
  330. package/modules/hooks/index.d.ts +1 -1
  331. package/modules/hooks/index.js +1 -1
  332. package/modules/hooks/invalidation.d.ts +24 -12
  333. package/modules/hooks/invalidation.js +62 -30
  334. package/modules/hooks/mutation-keys.d.ts +48 -24
  335. package/modules/hooks/mutation-keys.js +30 -16
  336. package/modules/hooks/mutations/index.d.ts +12 -6
  337. package/modules/hooks/mutations/index.js +12 -6
  338. package/modules/hooks/mutations/useCreatePrincipalAuthModuleMutation.d.ts +34 -0
  339. package/modules/hooks/mutations/useCreatePrincipalAuthModuleMutation.js +34 -0
  340. package/modules/hooks/mutations/useCreateResourceModuleMutation.d.ts +34 -0
  341. package/modules/hooks/mutations/useCreateResourceModuleMutation.js +34 -0
  342. package/modules/hooks/mutations/useDeletePrincipalAuthModuleMutation.d.ts +38 -0
  343. package/modules/hooks/mutations/useDeletePrincipalAuthModuleMutation.js +39 -0
  344. package/modules/hooks/mutations/useDeleteResourceModuleMutation.d.ts +38 -0
  345. package/modules/hooks/mutations/useDeleteResourceModuleMutation.js +39 -0
  346. package/modules/hooks/mutations/useUpdatePrincipalAuthModuleMutation.d.ts +40 -0
  347. package/modules/hooks/mutations/useUpdatePrincipalAuthModuleMutation.js +40 -0
  348. package/modules/hooks/mutations/useUpdateResourceModuleMutation.d.ts +40 -0
  349. package/modules/hooks/mutations/useUpdateResourceModuleMutation.js +40 -0
  350. package/modules/hooks/queries/index.d.ts +8 -4
  351. package/modules/hooks/queries/index.js +8 -4
  352. package/modules/hooks/queries/usePrincipalAuthModuleQuery.d.ts +65 -0
  353. package/modules/hooks/queries/usePrincipalAuthModuleQuery.js +53 -0
  354. package/modules/hooks/queries/usePrincipalAuthModulesQuery.d.ts +69 -0
  355. package/modules/hooks/queries/usePrincipalAuthModulesQuery.js +38 -0
  356. package/modules/hooks/queries/useResourceModuleQuery.d.ts +65 -0
  357. package/modules/hooks/queries/useResourceModuleQuery.js +53 -0
  358. package/modules/hooks/queries/useResourceModulesQuery.d.ts +69 -0
  359. package/modules/hooks/queries/useResourceModulesQuery.js +38 -0
  360. package/modules/hooks/query-keys.d.ts +56 -28
  361. package/modules/hooks/query-keys.js +34 -18
  362. package/modules/orm/index.d.ts +8 -4
  363. package/modules/orm/index.js +8 -4
  364. package/modules/orm/input-types.d.ts +868 -411
  365. package/modules/orm/models/index.d.ts +4 -2
  366. package/modules/orm/models/index.js +10 -6
  367. package/modules/orm/models/principalAuthModule.d.ts +54 -0
  368. package/modules/orm/models/principalAuthModule.js +104 -0
  369. package/modules/orm/models/resourceModule.d.ts +54 -0
  370. package/modules/orm/models/resourceModule.js +104 -0
  371. package/modules/schema-types.d.ts +451 -169
  372. package/modules/types.d.ts +75 -33
  373. package/package.json +4 -4
@@ -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 type { AgentModule, BillingModule, BillingProviderModule, Blueprint, BlueprintConstruction, BlueprintTemplate, ComputeLogModule, ConfigSecretsModule, ConfigSecretsOrgModule, ConfigSecretsUserModule, ConnectedAccountsModule, CryptoAddressesModule, CryptoAuthModule, DatabaseProvisionModule, DbUsageModule, DefaultIdsModule, DenormalizedTableField, DevicesModule, EmailsModule, EntityTypeProvision, EventsModule, FunctionDeploymentModule, FunctionInvocationModule, FunctionModule, GraphExecutionModule, GraphModule, HierarchyModule, I18NModule, IdentityProvidersModule, InferenceLogModule, InvitesModule, LimitsModule, MembershipTypesModule, MembershipsModule, MerkleStoreModule, NamespaceModule, NotificationsModule, PermissionsModule, PhoneNumbersModule, PlansModule, ProfilesModule, RateLimitMetersModule, RateLimitsModule, RealtimeModule, RelationProvision, RlsModule, SecureTableProvision, SessionSecretsModule, SessionsModule, StorageLogModule, StorageModule, TransferLogModule, UserAuthModule, UserCredentialsModule, UserSettingsModule, UserStateModule, UsersModule, WebauthnAuthModule, WebauthnCredentialsModule, BigIntFilter, BooleanFilter, DatetimeFilter, IntFilter, JSONFilter, StringFilter, StringListFilter, UUIDFilter, UUIDListFilter } from './types';
6
+ import type { AgentModule, BillingModule, BillingProviderModule, Blueprint, BlueprintConstruction, BlueprintTemplate, ComputeLogModule, ConfigSecretsModule, ConfigSecretsOrgModule, ConfigSecretsUserModule, ConnectedAccountsModule, CryptoAddressesModule, CryptoAuthModule, DatabaseProvisionModule, DbUsageModule, DefaultIdsModule, DenormalizedTableField, DevicesModule, EmailsModule, EntityTypeProvision, EventsModule, FunctionDeploymentModule, FunctionInvocationModule, FunctionModule, GraphExecutionModule, GraphModule, HierarchyModule, I18NModule, IdentityProvidersModule, InferenceLogModule, InvitesModule, LimitsModule, MembershipTypesModule, MembershipsModule, MerkleStoreModule, NamespaceModule, NotificationsModule, PermissionsModule, PhoneNumbersModule, PlansModule, PrincipalAuthModule, ProfilesModule, RateLimitMetersModule, RateLimitsModule, RealtimeModule, RelationProvision, ResourceModule, RlsModule, SecureTableProvision, SessionSecretsModule, SessionsModule, StorageLogModule, StorageModule, TransferLogModule, UserAuthModule, UserCredentialsModule, UserSettingsModule, UserStateModule, UsersModule, WebauthnAuthModule, WebauthnCredentialsModule, BigIntFilter, BooleanFilter, DatetimeFilter, IntFilter, JSONFilter, StringFilter, StringListFilter, UUIDFilter, UUIDListFilter } from './types';
7
7
  /** Methods to use when ordering `DefaultIdsModule`. */
8
8
  export type DefaultIdsModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC';
9
9
  /** Methods to use when ordering `MembershipTypesModule`. */
@@ -56,14 +56,14 @@ export type CryptoAuthModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_K
56
56
  export type SessionsModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'SESSIONS_TABLE_ID_ASC' | 'SESSIONS_TABLE_ID_DESC' | 'SESSION_CREDENTIALS_TABLE_ID_ASC' | 'SESSION_CREDENTIALS_TABLE_ID_DESC' | 'AUTH_SETTINGS_TABLE_ID_ASC' | 'AUTH_SETTINGS_TABLE_ID_DESC' | 'USERS_TABLE_ID_ASC' | 'USERS_TABLE_ID_DESC' | 'SESSIONS_DEFAULT_EXPIRATION_ASC' | 'SESSIONS_DEFAULT_EXPIRATION_DESC' | 'SESSIONS_TABLE_ASC' | 'SESSIONS_TABLE_DESC' | 'SESSION_CREDENTIALS_TABLE_ASC' | 'SESSION_CREDENTIALS_TABLE_DESC' | 'AUTH_SETTINGS_TABLE_ASC' | 'AUTH_SETTINGS_TABLE_DESC';
57
57
  /** Methods to use when ordering `SecureTableProvision`. */
58
58
  export type SecureTableProvisionOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'TABLE_NAME_ASC' | 'TABLE_NAME_DESC' | 'NODES_ASC' | 'NODES_DESC' | 'USE_RLS_ASC' | 'USE_RLS_DESC' | 'FIELDS_ASC' | 'FIELDS_DESC' | 'GRANTS_ASC' | 'GRANTS_DESC' | 'POLICIES_ASC' | 'POLICIES_DESC' | 'OUT_FIELDS_ASC' | 'OUT_FIELDS_DESC';
59
- /** Methods to use when ordering `GraphModule`. */
60
- export type GraphModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'PUBLIC_SCHEMA_ID_ASC' | 'PUBLIC_SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'MERKLE_STORE_MODULE_ID_ASC' | 'MERKLE_STORE_MODULE_ID_DESC' | 'GRAPHS_TABLE_ID_ASC' | 'GRAPHS_TABLE_ID_DESC' | 'API_NAME_ASC' | 'API_NAME_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'ENTITY_TABLE_ID_ASC' | 'ENTITY_TABLE_ID_DESC' | 'POLICIES_ASC' | 'POLICIES_DESC' | 'PROVISIONS_ASC' | 'PROVISIONS_DESC' | 'DEFAULT_PERMISSIONS_ASC' | 'DEFAULT_PERMISSIONS_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC';
61
- /** Methods to use when ordering `MerkleStoreModule`. */
62
- export type MerkleStoreModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'OBJECT_TABLE_ID_ASC' | 'OBJECT_TABLE_ID_DESC' | 'STORE_TABLE_ID_ASC' | 'STORE_TABLE_ID_DESC' | 'COMMIT_TABLE_ID_ASC' | 'COMMIT_TABLE_ID_DESC' | 'REF_TABLE_ID_ASC' | 'REF_TABLE_ID_DESC' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'API_NAME_ASC' | 'API_NAME_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC' | 'FUNCTION_PREFIX_ASC' | 'FUNCTION_PREFIX_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC';
63
59
  /** Methods to use when ordering `DatabaseProvisionModule`. */
64
60
  export type DatabaseProvisionModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_NAME_ASC' | 'DATABASE_NAME_DESC' | 'OWNER_ID_ASC' | 'OWNER_ID_DESC' | 'SUBDOMAIN_ASC' | 'SUBDOMAIN_DESC' | 'DOMAIN_ASC' | 'DOMAIN_DESC' | 'MODULES_ASC' | 'MODULES_DESC' | 'OPTIONS_ASC' | 'OPTIONS_DESC' | 'BOOTSTRAP_USER_ASC' | 'BOOTSTRAP_USER_DESC' | 'STATUS_ASC' | 'STATUS_DESC' | 'ERROR_MESSAGE_ASC' | 'ERROR_MESSAGE_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'COMPLETED_AT_ASC' | 'COMPLETED_AT_DESC';
65
61
  /** Methods to use when ordering `ConfigSecretsModule`. */
66
62
  export type ConfigSecretsModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'CONFIG_DEFINITIONS_TABLE_ID_ASC' | 'CONFIG_DEFINITIONS_TABLE_ID_DESC' | 'TABLE_NAME_ASC' | 'TABLE_NAME_DESC' | 'API_NAME_ASC' | 'API_NAME_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'ENTITY_TABLE_ID_ASC' | 'ENTITY_TABLE_ID_DESC' | 'POLICIES_ASC' | 'POLICIES_DESC' | 'PROVISIONS_ASC' | 'PROVISIONS_DESC' | 'HAS_CONFIG_ASC' | 'HAS_CONFIG_DESC';
63
+ /** Methods to use when ordering `GraphModule`. */
64
+ export type GraphModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'PUBLIC_SCHEMA_ID_ASC' | 'PUBLIC_SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'MERKLE_STORE_MODULE_ID_ASC' | 'MERKLE_STORE_MODULE_ID_DESC' | 'GRAPHS_TABLE_ID_ASC' | 'GRAPHS_TABLE_ID_DESC' | 'API_NAME_ASC' | 'API_NAME_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'ENTITY_TABLE_ID_ASC' | 'ENTITY_TABLE_ID_DESC' | 'POLICIES_ASC' | 'POLICIES_DESC' | 'PROVISIONS_ASC' | 'PROVISIONS_DESC' | 'DEFAULT_PERMISSIONS_ASC' | 'DEFAULT_PERMISSIONS_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC';
65
+ /** Methods to use when ordering `MerkleStoreModule`. */
66
+ export type MerkleStoreModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'OBJECT_TABLE_ID_ASC' | 'OBJECT_TABLE_ID_DESC' | 'STORE_TABLE_ID_ASC' | 'STORE_TABLE_ID_DESC' | 'COMMIT_TABLE_ID_ASC' | 'COMMIT_TABLE_ID_DESC' | 'REF_TABLE_ID_ASC' | 'REF_TABLE_ID_DESC' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'API_NAME_ASC' | 'API_NAME_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC' | 'FUNCTION_PREFIX_ASC' | 'FUNCTION_PREFIX_DESC' | 'PERMISSION_KEY_ASC' | 'PERMISSION_KEY_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC';
67
67
  /** Methods to use when ordering `RateLimitMetersModule`. */
68
68
  export type RateLimitMetersModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'RATE_LIMIT_STATE_TABLE_ID_ASC' | 'RATE_LIMIT_STATE_TABLE_ID_DESC' | 'RATE_LIMIT_STATE_TABLE_NAME_ASC' | 'RATE_LIMIT_STATE_TABLE_NAME_DESC' | 'RATE_LIMIT_OVERRIDES_TABLE_ID_ASC' | 'RATE_LIMIT_OVERRIDES_TABLE_ID_DESC' | 'RATE_LIMIT_OVERRIDES_TABLE_NAME_ASC' | 'RATE_LIMIT_OVERRIDES_TABLE_NAME_DESC' | 'RATE_WINDOW_LIMITS_TABLE_ID_ASC' | 'RATE_WINDOW_LIMITS_TABLE_ID_DESC' | 'RATE_WINDOW_LIMITS_TABLE_NAME_ASC' | 'RATE_WINDOW_LIMITS_TABLE_NAME_DESC' | 'CHECK_RATE_LIMIT_FUNCTION_ASC' | 'CHECK_RATE_LIMIT_FUNCTION_DESC' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'DEFAULT_PERMISSIONS_ASC' | 'DEFAULT_PERMISSIONS_DESC' | 'API_NAME_ASC' | 'API_NAME_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC';
69
69
  /** Methods to use when ordering `RealtimeModule`. */
@@ -76,12 +76,16 @@ export type FunctionInvocationModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'P
76
76
  export type FunctionModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'DEFINITIONS_TABLE_ID_ASC' | 'DEFINITIONS_TABLE_ID_DESC' | 'SECRET_DEFINITIONS_TABLE_ID_ASC' | 'SECRET_DEFINITIONS_TABLE_ID_DESC' | 'DEFINITIONS_TABLE_NAME_ASC' | 'DEFINITIONS_TABLE_NAME_DESC' | 'SECRET_DEFINITIONS_TABLE_NAME_ASC' | 'SECRET_DEFINITIONS_TABLE_NAME_DESC' | 'API_NAME_ASC' | 'API_NAME_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'ENTITY_TABLE_ID_ASC' | 'ENTITY_TABLE_ID_DESC' | 'POLICIES_ASC' | 'POLICIES_DESC' | 'PROVISIONS_ASC' | 'PROVISIONS_DESC' | 'DEFAULT_PERMISSIONS_ASC' | 'DEFAULT_PERMISSIONS_DESC';
77
77
  /** Methods to use when ordering `InvitesModule`. */
78
78
  export type InvitesModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'EMAILS_TABLE_ID_ASC' | 'EMAILS_TABLE_ID_DESC' | 'USERS_TABLE_ID_ASC' | 'USERS_TABLE_ID_DESC' | 'INVITES_TABLE_ID_ASC' | 'INVITES_TABLE_ID_DESC' | 'CLAIMED_INVITES_TABLE_ID_ASC' | 'CLAIMED_INVITES_TABLE_ID_DESC' | 'INVITES_TABLE_NAME_ASC' | 'INVITES_TABLE_NAME_DESC' | 'CLAIMED_INVITES_TABLE_NAME_ASC' | 'CLAIMED_INVITES_TABLE_NAME_DESC' | 'SUBMIT_INVITE_CODE_FUNCTION_ASC' | 'SUBMIT_INVITE_CODE_FUNCTION_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'ENTITY_TABLE_ID_ASC' | 'ENTITY_TABLE_ID_DESC' | 'API_NAME_ASC' | 'API_NAME_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC';
79
+ /** Methods to use when ordering `PrincipalAuthModule`. */
80
+ export type PrincipalAuthModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'PRINCIPALS_TABLE_ID_ASC' | 'PRINCIPALS_TABLE_ID_DESC' | 'PRINCIPAL_ENTITIES_TABLE_ID_ASC' | 'PRINCIPAL_ENTITIES_TABLE_ID_DESC' | 'PRINCIPAL_SCOPE_OVERRIDES_TABLE_ID_ASC' | 'PRINCIPAL_SCOPE_OVERRIDES_TABLE_ID_DESC' | 'USERS_TABLE_ID_ASC' | 'USERS_TABLE_ID_DESC' | 'SESSIONS_TABLE_ID_ASC' | 'SESSIONS_TABLE_ID_DESC' | 'SESSION_CREDENTIALS_TABLE_ID_ASC' | 'SESSION_CREDENTIALS_TABLE_ID_DESC' | 'AUDITS_TABLE_ID_ASC' | 'AUDITS_TABLE_ID_DESC' | 'PRINCIPALS_TABLE_NAME_ASC' | 'PRINCIPALS_TABLE_NAME_DESC' | 'CREATE_PRINCIPAL_FUNCTION_ASC' | 'CREATE_PRINCIPAL_FUNCTION_DESC' | 'DELETE_PRINCIPAL_FUNCTION_ASC' | 'DELETE_PRINCIPAL_FUNCTION_DESC' | 'CREATE_ORG_PRINCIPAL_FUNCTION_ASC' | 'CREATE_ORG_PRINCIPAL_FUNCTION_DESC' | 'DELETE_ORG_PRINCIPAL_FUNCTION_ASC' | 'DELETE_ORG_PRINCIPAL_FUNCTION_DESC' | 'CREATE_ORG_API_KEY_FUNCTION_ASC' | 'CREATE_ORG_API_KEY_FUNCTION_DESC' | 'REVOKE_ORG_API_KEY_FUNCTION_ASC' | 'REVOKE_ORG_API_KEY_FUNCTION_DESC' | 'API_NAME_ASC' | 'API_NAME_DESC';
79
81
  /** Methods to use when ordering `ComputeLogModule`. */
80
82
  export type ComputeLogModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'COMPUTE_LOG_TABLE_ID_ASC' | 'COMPUTE_LOG_TABLE_ID_DESC' | 'COMPUTE_LOG_TABLE_NAME_ASC' | 'COMPUTE_LOG_TABLE_NAME_DESC' | 'USAGE_DAILY_TABLE_ID_ASC' | 'USAGE_DAILY_TABLE_ID_DESC' | 'USAGE_DAILY_TABLE_NAME_ASC' | 'USAGE_DAILY_TABLE_NAME_DESC' | 'INTERVAL_ASC' | 'INTERVAL_DESC' | 'RETENTION_ASC' | 'RETENTION_DESC' | 'PREMAKE_ASC' | 'PREMAKE_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC' | 'ACTOR_FK_TABLE_ID_ASC' | 'ACTOR_FK_TABLE_ID_DESC' | 'ENTITY_FK_TABLE_ID_ASC' | 'ENTITY_FK_TABLE_ID_DESC' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'API_NAME_ASC' | 'API_NAME_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC';
81
83
  /** Methods to use when ordering `InferenceLogModule`. */
82
84
  export type InferenceLogModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'INFERENCE_LOG_TABLE_ID_ASC' | 'INFERENCE_LOG_TABLE_ID_DESC' | 'INFERENCE_LOG_TABLE_NAME_ASC' | 'INFERENCE_LOG_TABLE_NAME_DESC' | 'USAGE_DAILY_TABLE_ID_ASC' | 'USAGE_DAILY_TABLE_ID_DESC' | 'USAGE_DAILY_TABLE_NAME_ASC' | 'USAGE_DAILY_TABLE_NAME_DESC' | 'INTERVAL_ASC' | 'INTERVAL_DESC' | 'RETENTION_ASC' | 'RETENTION_DESC' | 'PREMAKE_ASC' | 'PREMAKE_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC' | 'ACTOR_FK_TABLE_ID_ASC' | 'ACTOR_FK_TABLE_ID_DESC' | 'ENTITY_FK_TABLE_ID_ASC' | 'ENTITY_FK_TABLE_ID_DESC' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'API_NAME_ASC' | 'API_NAME_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC';
83
85
  /** Methods to use when ordering `NamespaceModule`. */
84
86
  export type NamespaceModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'NAMESPACES_TABLE_ID_ASC' | 'NAMESPACES_TABLE_ID_DESC' | 'NAMESPACE_EVENTS_TABLE_ID_ASC' | 'NAMESPACE_EVENTS_TABLE_ID_DESC' | 'NAMESPACES_TABLE_NAME_ASC' | 'NAMESPACES_TABLE_NAME_DESC' | 'NAMESPACE_EVENTS_TABLE_NAME_ASC' | 'NAMESPACE_EVENTS_TABLE_NAME_DESC' | 'API_NAME_ASC' | 'API_NAME_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'ENTITY_TABLE_ID_ASC' | 'ENTITY_TABLE_ID_DESC' | 'PLATFORM_NAMESPACES_TABLE_ID_ASC' | 'PLATFORM_NAMESPACES_TABLE_ID_DESC' | 'POLICIES_ASC' | 'POLICIES_DESC' | 'PROVISIONS_ASC' | 'PROVISIONS_DESC' | 'DEFAULT_PERMISSIONS_ASC' | 'DEFAULT_PERMISSIONS_DESC';
87
+ /** Methods to use when ordering `ResourceModule`. */
88
+ export type ResourceModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'RESOURCES_TABLE_ID_ASC' | 'RESOURCES_TABLE_ID_DESC' | 'RESOURCE_EVENTS_TABLE_ID_ASC' | 'RESOURCE_EVENTS_TABLE_ID_DESC' | 'RESOURCES_TABLE_NAME_ASC' | 'RESOURCES_TABLE_NAME_DESC' | 'RESOURCE_EVENTS_TABLE_NAME_ASC' | 'RESOURCE_EVENTS_TABLE_NAME_DESC' | 'API_NAME_ASC' | 'API_NAME_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'ENTITY_TABLE_ID_ASC' | 'ENTITY_TABLE_ID_DESC' | 'NAMESPACE_MODULE_ID_ASC' | 'NAMESPACE_MODULE_ID_DESC' | 'POLICIES_ASC' | 'POLICIES_DESC' | 'PROVISIONS_ASC' | 'PROVISIONS_DESC' | 'DEFAULT_PERMISSIONS_ASC' | 'DEFAULT_PERMISSIONS_DESC';
85
89
  /** Methods to use when ordering `StorageLogModule`. */
86
90
  export type StorageLogModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'STORAGE_LOG_TABLE_ID_ASC' | 'STORAGE_LOG_TABLE_ID_DESC' | 'STORAGE_LOG_TABLE_NAME_ASC' | 'STORAGE_LOG_TABLE_NAME_DESC' | 'USAGE_DAILY_TABLE_ID_ASC' | 'USAGE_DAILY_TABLE_ID_DESC' | 'USAGE_DAILY_TABLE_NAME_ASC' | 'USAGE_DAILY_TABLE_NAME_DESC' | 'INTERVAL_ASC' | 'INTERVAL_DESC' | 'RETENTION_ASC' | 'RETENTION_DESC' | 'PREMAKE_ASC' | 'PREMAKE_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC' | 'ACTOR_FK_TABLE_ID_ASC' | 'ACTOR_FK_TABLE_ID_DESC' | 'ENTITY_FK_TABLE_ID_ASC' | 'ENTITY_FK_TABLE_ID_DESC' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'API_NAME_ASC' | 'API_NAME_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC';
87
91
  /** Methods to use when ordering `TransferLogModule`. */
@@ -972,6 +976,86 @@ export interface JSONListFilter {
972
976
  /** Any array item is greater than or equal to the specified value. */
973
977
  anyGreaterThanOrEqualTo?: unknown;
974
978
  }
979
+ /** A filter to be used against `DatabaseProvisionModule` object types. All fields are combined with a logical ‘and.’ */
980
+ export interface DatabaseProvisionModuleFilter {
981
+ /** Filter by the object’s `id` field. */
982
+ id?: UUIDFilter;
983
+ /** Filter by the object’s `databaseName` field. */
984
+ databaseName?: StringFilter;
985
+ /** Filter by the object’s `ownerId` field. */
986
+ ownerId?: UUIDFilter;
987
+ /** Filter by the object’s `subdomain` field. */
988
+ subdomain?: StringFilter;
989
+ /** Filter by the object’s `domain` field. */
990
+ domain?: StringFilter;
991
+ /** Filter by the object’s `modules` field. */
992
+ modules?: JSONFilter;
993
+ /** Filter by the object’s `options` field. */
994
+ options?: JSONFilter;
995
+ /** Filter by the object’s `bootstrapUser` field. */
996
+ bootstrapUser?: BooleanFilter;
997
+ /** Filter by the object’s `status` field. */
998
+ status?: StringFilter;
999
+ /** Filter by the object’s `errorMessage` field. */
1000
+ errorMessage?: StringFilter;
1001
+ /** Filter by the object’s `databaseId` field. */
1002
+ databaseId?: UUIDFilter;
1003
+ /** Filter by the object’s `createdAt` field. */
1004
+ createdAt?: DatetimeFilter;
1005
+ /** Filter by the object’s `updatedAt` field. */
1006
+ updatedAt?: DatetimeFilter;
1007
+ /** Filter by the object’s `completedAt` field. */
1008
+ completedAt?: DatetimeFilter;
1009
+ /** Checks for all expressions in this list. */
1010
+ and?: DatabaseProvisionModuleFilter[];
1011
+ /** Checks for any expressions in this list. */
1012
+ or?: DatabaseProvisionModuleFilter[];
1013
+ /** Negates the expression. */
1014
+ not?: DatabaseProvisionModuleFilter;
1015
+ }
1016
+ /** A filter to be used against `ConfigSecretsModule` object types. All fields are combined with a logical ‘and.’ */
1017
+ export interface ConfigSecretsModuleFilter {
1018
+ /** Filter by the object’s `id` field. */
1019
+ id?: UUIDFilter;
1020
+ /** Filter by the object’s `databaseId` field. */
1021
+ databaseId?: UUIDFilter;
1022
+ /** Filter by the object’s `schemaId` field. */
1023
+ schemaId?: UUIDFilter;
1024
+ /** Filter by the object’s `privateSchemaId` field. */
1025
+ privateSchemaId?: UUIDFilter;
1026
+ /** Filter by the object’s `publicSchemaName` field. */
1027
+ publicSchemaName?: StringFilter;
1028
+ /** Filter by the object’s `privateSchemaName` field. */
1029
+ privateSchemaName?: StringFilter;
1030
+ /** Filter by the object’s `tableId` field. */
1031
+ tableId?: UUIDFilter;
1032
+ /** Filter by the object’s `configDefinitionsTableId` field. */
1033
+ configDefinitionsTableId?: UUIDFilter;
1034
+ /** Filter by the object’s `tableName` field. */
1035
+ tableName?: StringFilter;
1036
+ /** Filter by the object’s `apiName` field. */
1037
+ apiName?: StringFilter;
1038
+ /** Filter by the object’s `privateApiName` field. */
1039
+ privateApiName?: StringFilter;
1040
+ /** Filter by the object’s `scope` field. */
1041
+ scope?: StringFilter;
1042
+ /** Filter by the object’s `prefix` field. */
1043
+ prefix?: StringFilter;
1044
+ /** Filter by the object’s `entityTableId` field. */
1045
+ entityTableId?: UUIDFilter;
1046
+ /** Filter by the object’s `policies` field. */
1047
+ policies?: JSONFilter;
1048
+ /** Filter by the object’s `provisions` field. */
1049
+ provisions?: JSONFilter;
1050
+ /** Filter by the object’s `hasConfig` field. */
1051
+ hasConfig?: BooleanFilter;
1052
+ /** Checks for all expressions in this list. */
1053
+ and?: ConfigSecretsModuleFilter[];
1054
+ /** Checks for any expressions in this list. */
1055
+ or?: ConfigSecretsModuleFilter[];
1056
+ /** Negates the expression. */
1057
+ not?: ConfigSecretsModuleFilter;
1058
+ }
975
1059
  /** A filter to be used against `GraphModule` object types. All fields are combined with a logical ‘and.’ */
976
1060
  export interface GraphModuleFilter {
977
1061
  /** Filter by the object’s `id` field. */
@@ -1049,6 +1133,8 @@ export interface MerkleStoreModuleFilter {
1049
1133
  scope?: StringFilter;
1050
1134
  /** Filter by the object’s `functionPrefix` field. */
1051
1135
  functionPrefix?: StringFilter;
1136
+ /** Filter by the object’s `permissionKey` field. */
1137
+ permissionKey?: StringFilter;
1052
1138
  /** Filter by the object’s `createdAt` field. */
1053
1139
  createdAt?: DatetimeFilter;
1054
1140
  /** Checks for all expressions in this list. */
@@ -1071,86 +1157,6 @@ export interface MerkleStoreModuleToManyGraphModuleFilter {
1071
1157
  /** Filters to entities where no related entity matches. */
1072
1158
  none?: GraphModuleFilter;
1073
1159
  }
1074
- /** A filter to be used against `DatabaseProvisionModule` object types. All fields are combined with a logical ‘and.’ */
1075
- export interface DatabaseProvisionModuleFilter {
1076
- /** Filter by the object’s `id` field. */
1077
- id?: UUIDFilter;
1078
- /** Filter by the object’s `databaseName` field. */
1079
- databaseName?: StringFilter;
1080
- /** Filter by the object’s `ownerId` field. */
1081
- ownerId?: UUIDFilter;
1082
- /** Filter by the object’s `subdomain` field. */
1083
- subdomain?: StringFilter;
1084
- /** Filter by the object’s `domain` field. */
1085
- domain?: StringFilter;
1086
- /** Filter by the object’s `modules` field. */
1087
- modules?: JSONFilter;
1088
- /** Filter by the object’s `options` field. */
1089
- options?: JSONFilter;
1090
- /** Filter by the object’s `bootstrapUser` field. */
1091
- bootstrapUser?: BooleanFilter;
1092
- /** Filter by the object’s `status` field. */
1093
- status?: StringFilter;
1094
- /** Filter by the object’s `errorMessage` field. */
1095
- errorMessage?: StringFilter;
1096
- /** Filter by the object’s `databaseId` field. */
1097
- databaseId?: UUIDFilter;
1098
- /** Filter by the object’s `createdAt` field. */
1099
- createdAt?: DatetimeFilter;
1100
- /** Filter by the object’s `updatedAt` field. */
1101
- updatedAt?: DatetimeFilter;
1102
- /** Filter by the object’s `completedAt` field. */
1103
- completedAt?: DatetimeFilter;
1104
- /** Checks for all expressions in this list. */
1105
- and?: DatabaseProvisionModuleFilter[];
1106
- /** Checks for any expressions in this list. */
1107
- or?: DatabaseProvisionModuleFilter[];
1108
- /** Negates the expression. */
1109
- not?: DatabaseProvisionModuleFilter;
1110
- }
1111
- /** A filter to be used against `ConfigSecretsModule` object types. All fields are combined with a logical ‘and.’ */
1112
- export interface ConfigSecretsModuleFilter {
1113
- /** Filter by the object’s `id` field. */
1114
- id?: UUIDFilter;
1115
- /** Filter by the object’s `databaseId` field. */
1116
- databaseId?: UUIDFilter;
1117
- /** Filter by the object’s `schemaId` field. */
1118
- schemaId?: UUIDFilter;
1119
- /** Filter by the object’s `privateSchemaId` field. */
1120
- privateSchemaId?: UUIDFilter;
1121
- /** Filter by the object’s `publicSchemaName` field. */
1122
- publicSchemaName?: StringFilter;
1123
- /** Filter by the object’s `privateSchemaName` field. */
1124
- privateSchemaName?: StringFilter;
1125
- /** Filter by the object’s `tableId` field. */
1126
- tableId?: UUIDFilter;
1127
- /** Filter by the object’s `configDefinitionsTableId` field. */
1128
- configDefinitionsTableId?: UUIDFilter;
1129
- /** Filter by the object’s `tableName` field. */
1130
- tableName?: StringFilter;
1131
- /** Filter by the object’s `apiName` field. */
1132
- apiName?: StringFilter;
1133
- /** Filter by the object’s `privateApiName` field. */
1134
- privateApiName?: StringFilter;
1135
- /** Filter by the object’s `scope` field. */
1136
- scope?: StringFilter;
1137
- /** Filter by the object’s `prefix` field. */
1138
- prefix?: StringFilter;
1139
- /** Filter by the object’s `entityTableId` field. */
1140
- entityTableId?: UUIDFilter;
1141
- /** Filter by the object’s `policies` field. */
1142
- policies?: JSONFilter;
1143
- /** Filter by the object’s `provisions` field. */
1144
- provisions?: JSONFilter;
1145
- /** Filter by the object’s `hasConfig` field. */
1146
- hasConfig?: BooleanFilter;
1147
- /** Checks for all expressions in this list. */
1148
- and?: ConfigSecretsModuleFilter[];
1149
- /** Checks for any expressions in this list. */
1150
- or?: ConfigSecretsModuleFilter[];
1151
- /** Negates the expression. */
1152
- not?: ConfigSecretsModuleFilter;
1153
- }
1154
1160
  /** A filter to be used against `RateLimitMetersModule` object types. All fields are combined with a logical ‘and.’ */
1155
1161
  export interface RateLimitMetersModuleFilter {
1156
1162
  /** Filter by the object’s `id` field. */
@@ -1407,6 +1413,51 @@ export interface InvitesModuleFilter {
1407
1413
  /** Negates the expression. */
1408
1414
  not?: InvitesModuleFilter;
1409
1415
  }
1416
+ /** A filter to be used against `PrincipalAuthModule` object types. All fields are combined with a logical ‘and.’ */
1417
+ export interface PrincipalAuthModuleFilter {
1418
+ /** Filter by the object’s `id` field. */
1419
+ id?: UUIDFilter;
1420
+ /** Filter by the object’s `databaseId` field. */
1421
+ databaseId?: UUIDFilter;
1422
+ /** Filter by the object’s `schemaId` field. */
1423
+ schemaId?: UUIDFilter;
1424
+ /** Filter by the object’s `principalsTableId` field. */
1425
+ principalsTableId?: UUIDFilter;
1426
+ /** Filter by the object’s `principalEntitiesTableId` field. */
1427
+ principalEntitiesTableId?: UUIDFilter;
1428
+ /** Filter by the object’s `principalScopeOverridesTableId` field. */
1429
+ principalScopeOverridesTableId?: UUIDFilter;
1430
+ /** Filter by the object’s `usersTableId` field. */
1431
+ usersTableId?: UUIDFilter;
1432
+ /** Filter by the object’s `sessionsTableId` field. */
1433
+ sessionsTableId?: UUIDFilter;
1434
+ /** Filter by the object’s `sessionCredentialsTableId` field. */
1435
+ sessionCredentialsTableId?: UUIDFilter;
1436
+ /** Filter by the object’s `auditsTableId` field. */
1437
+ auditsTableId?: UUIDFilter;
1438
+ /** Filter by the object’s `principalsTableName` field. */
1439
+ principalsTableName?: StringFilter;
1440
+ /** Filter by the object’s `createPrincipalFunction` field. */
1441
+ createPrincipalFunction?: StringFilter;
1442
+ /** Filter by the object’s `deletePrincipalFunction` field. */
1443
+ deletePrincipalFunction?: StringFilter;
1444
+ /** Filter by the object’s `createOrgPrincipalFunction` field. */
1445
+ createOrgPrincipalFunction?: StringFilter;
1446
+ /** Filter by the object’s `deleteOrgPrincipalFunction` field. */
1447
+ deleteOrgPrincipalFunction?: StringFilter;
1448
+ /** Filter by the object’s `createOrgApiKeyFunction` field. */
1449
+ createOrgApiKeyFunction?: StringFilter;
1450
+ /** Filter by the object’s `revokeOrgApiKeyFunction` field. */
1451
+ revokeOrgApiKeyFunction?: StringFilter;
1452
+ /** Filter by the object’s `apiName` field. */
1453
+ apiName?: StringFilter;
1454
+ /** Checks for all expressions in this list. */
1455
+ and?: PrincipalAuthModuleFilter[];
1456
+ /** Checks for any expressions in this list. */
1457
+ or?: PrincipalAuthModuleFilter[];
1458
+ /** Negates the expression. */
1459
+ not?: PrincipalAuthModuleFilter;
1460
+ }
1410
1461
  /** A filter to be used against `ComputeLogModule` object types. All fields are combined with a logical ‘and.’ */
1411
1462
  export interface ComputeLogModuleFilter {
1412
1463
  /** Filter by the object’s `id` field. */
@@ -1548,6 +1599,57 @@ export interface NamespaceModuleFilter {
1548
1599
  /** Negates the expression. */
1549
1600
  not?: NamespaceModuleFilter;
1550
1601
  }
1602
+ /** A filter to be used against `ResourceModule` object types. All fields are combined with a logical ‘and.’ */
1603
+ export interface ResourceModuleFilter {
1604
+ /** Filter by the object’s `id` field. */
1605
+ id?: UUIDFilter;
1606
+ /** Filter by the object’s `databaseId` field. */
1607
+ databaseId?: UUIDFilter;
1608
+ /** Filter by the object’s `schemaId` field. */
1609
+ schemaId?: UUIDFilter;
1610
+ /** Filter by the object’s `privateSchemaId` field. */
1611
+ privateSchemaId?: UUIDFilter;
1612
+ /** Filter by the object’s `publicSchemaName` field. */
1613
+ publicSchemaName?: StringFilter;
1614
+ /** Filter by the object’s `privateSchemaName` field. */
1615
+ privateSchemaName?: StringFilter;
1616
+ /** Filter by the object’s `resourcesTableId` field. */
1617
+ resourcesTableId?: UUIDFilter;
1618
+ /** Filter by the object’s `resourceEventsTableId` field. */
1619
+ resourceEventsTableId?: UUIDFilter;
1620
+ /** Filter by the object’s `resourcesTableName` field. */
1621
+ resourcesTableName?: StringFilter;
1622
+ /** Filter by the object’s `resourceEventsTableName` field. */
1623
+ resourceEventsTableName?: StringFilter;
1624
+ /** Filter by the object’s `apiName` field. */
1625
+ apiName?: StringFilter;
1626
+ /** Filter by the object’s `privateApiName` field. */
1627
+ privateApiName?: StringFilter;
1628
+ /** Filter by the object’s `scope` field. */
1629
+ scope?: StringFilter;
1630
+ /** Filter by the object’s `prefix` field. */
1631
+ prefix?: StringFilter;
1632
+ /** Filter by the object’s `entityTableId` field. */
1633
+ entityTableId?: UUIDFilter;
1634
+ /** Filter by the object’s `namespaceModuleId` field. */
1635
+ namespaceModuleId?: UUIDFilter;
1636
+ /** Filter by the object’s `policies` field. */
1637
+ policies?: JSONFilter;
1638
+ /** Filter by the object’s `provisions` field. */
1639
+ provisions?: JSONFilter;
1640
+ /** Filter by the object’s `defaultPermissions` field. */
1641
+ defaultPermissions?: StringListFilter;
1642
+ /** Checks for all expressions in this list. */
1643
+ and?: ResourceModuleFilter[];
1644
+ /** Checks for any expressions in this list. */
1645
+ or?: ResourceModuleFilter[];
1646
+ /** Negates the expression. */
1647
+ not?: ResourceModuleFilter;
1648
+ /** Filter by the object’s `namespaceModule` relation. */
1649
+ namespaceModule?: NamespaceModuleFilter;
1650
+ /** A related `namespaceModule` exists. */
1651
+ namespaceModuleExists?: boolean;
1652
+ }
1551
1653
  /** A filter to be used against `StorageLogModule` object types. All fields are combined with a logical ‘and.’ */
1552
1654
  export interface StorageLogModuleFilter {
1553
1655
  /** Filter by the object’s `id` field. */
@@ -3377,30 +3479,6 @@ export interface SecureTableProvisionInput {
3377
3479
  /** Output column populated by the trigger after field creation. Contains the UUIDs of the metaschema fields created on the target table by this provision row's nodes. NULL when nodes is empty or before the trigger runs. Callers should not set this directly. */
3378
3480
  outFields?: string[];
3379
3481
  }
3380
- export interface CreateMerkleStoreModuleInput {
3381
- clientMutationId?: string;
3382
- /** The `MerkleStoreModule` to be created by this mutation. */
3383
- merkleStoreModule: MerkleStoreModuleInput;
3384
- }
3385
- /** An input for mutations affecting `MerkleStoreModule` */
3386
- export interface MerkleStoreModuleInput {
3387
- id?: string;
3388
- databaseId: string;
3389
- schemaId?: string;
3390
- privateSchemaId?: string;
3391
- publicSchemaName?: string;
3392
- privateSchemaName?: string;
3393
- objectTableId?: string;
3394
- storeTableId?: string;
3395
- commitTableId?: string;
3396
- refTableId?: string;
3397
- prefix?: string;
3398
- apiName?: string;
3399
- privateApiName?: string;
3400
- scope?: string;
3401
- functionPrefix?: string;
3402
- createdAt?: string;
3403
- }
3404
3482
  export interface CreateDatabaseProvisionModuleInput {
3405
3483
  clientMutationId?: string;
3406
3484
  /** The `DatabaseProvisionModule` to be created by this mutation. */
@@ -3482,6 +3560,31 @@ export interface GraphModuleInput {
3482
3560
  defaultPermissions?: string[];
3483
3561
  createdAt?: string;
3484
3562
  }
3563
+ export interface CreateMerkleStoreModuleInput {
3564
+ clientMutationId?: string;
3565
+ /** The `MerkleStoreModule` to be created by this mutation. */
3566
+ merkleStoreModule: MerkleStoreModuleInput;
3567
+ }
3568
+ /** An input for mutations affecting `MerkleStoreModule` */
3569
+ export interface MerkleStoreModuleInput {
3570
+ id?: string;
3571
+ databaseId: string;
3572
+ schemaId?: string;
3573
+ privateSchemaId?: string;
3574
+ publicSchemaName?: string;
3575
+ privateSchemaName?: string;
3576
+ objectTableId?: string;
3577
+ storeTableId?: string;
3578
+ commitTableId?: string;
3579
+ refTableId?: string;
3580
+ prefix?: string;
3581
+ apiName?: string;
3582
+ privateApiName?: string;
3583
+ scope?: string;
3584
+ functionPrefix?: string;
3585
+ permissionKey?: string;
3586
+ createdAt?: string;
3587
+ }
3485
3588
  export interface CreateRateLimitMetersModuleInput {
3486
3589
  clientMutationId?: string;
3487
3590
  /** The `RateLimitMetersModule` to be created by this mutation. */
@@ -3631,6 +3734,32 @@ export interface InvitesModuleInput {
3631
3734
  apiName?: string;
3632
3735
  privateApiName?: string;
3633
3736
  }
3737
+ export interface CreatePrincipalAuthModuleInput {
3738
+ clientMutationId?: string;
3739
+ /** The `PrincipalAuthModule` to be created by this mutation. */
3740
+ principalAuthModule: PrincipalAuthModuleInput;
3741
+ }
3742
+ /** An input for mutations affecting `PrincipalAuthModule` */
3743
+ export interface PrincipalAuthModuleInput {
3744
+ id?: string;
3745
+ databaseId: string;
3746
+ schemaId?: string;
3747
+ principalsTableId?: string;
3748
+ principalEntitiesTableId?: string;
3749
+ principalScopeOverridesTableId?: string;
3750
+ usersTableId?: string;
3751
+ sessionsTableId?: string;
3752
+ sessionCredentialsTableId?: string;
3753
+ auditsTableId?: string;
3754
+ principalsTableName?: string;
3755
+ createPrincipalFunction?: string;
3756
+ deletePrincipalFunction?: string;
3757
+ createOrgPrincipalFunction?: string;
3758
+ deleteOrgPrincipalFunction?: string;
3759
+ createOrgApiKeyFunction?: string;
3760
+ revokeOrgApiKeyFunction?: string;
3761
+ apiName?: string;
3762
+ }
3634
3763
  export interface CreateComputeLogModuleInput {
3635
3764
  clientMutationId?: string;
3636
3765
  /** The `ComputeLogModule` to be created by this mutation. */
@@ -3712,6 +3841,33 @@ export interface NamespaceModuleInput {
3712
3841
  provisions?: unknown;
3713
3842
  defaultPermissions?: string[];
3714
3843
  }
3844
+ export interface CreateResourceModuleInput {
3845
+ clientMutationId?: string;
3846
+ /** The `ResourceModule` to be created by this mutation. */
3847
+ resourceModule: ResourceModuleInput;
3848
+ }
3849
+ /** An input for mutations affecting `ResourceModule` */
3850
+ export interface ResourceModuleInput {
3851
+ id?: string;
3852
+ databaseId: string;
3853
+ schemaId?: string;
3854
+ privateSchemaId?: string;
3855
+ publicSchemaName?: string;
3856
+ privateSchemaName?: string;
3857
+ resourcesTableId?: string;
3858
+ resourceEventsTableId?: string;
3859
+ resourcesTableName?: string;
3860
+ resourceEventsTableName?: string;
3861
+ apiName?: string;
3862
+ privateApiName?: string;
3863
+ scope?: string;
3864
+ prefix?: string;
3865
+ entityTableId?: string;
3866
+ namespaceModuleId?: string;
3867
+ policies?: unknown;
3868
+ provisions?: unknown;
3869
+ defaultPermissions?: string[];
3870
+ }
3715
3871
  export interface CreateStorageLogModuleInput {
3716
3872
  clientMutationId?: string;
3717
3873
  /** The `StorageLogModule` to be created by this mutation. */
@@ -5261,31 +5417,6 @@ export interface SecureTableProvisionPatch {
5261
5417
  /** Output column populated by the trigger after field creation. Contains the UUIDs of the metaschema fields created on the target table by this provision row's nodes. NULL when nodes is empty or before the trigger runs. Callers should not set this directly. */
5262
5418
  outFields?: string[];
5263
5419
  }
5264
- export interface UpdateMerkleStoreModuleInput {
5265
- clientMutationId?: string;
5266
- id: string;
5267
- /** An object where the defined keys will be set on the `MerkleStoreModule` being updated. */
5268
- merkleStoreModulePatch: MerkleStoreModulePatch;
5269
- }
5270
- /** Represents an update to a `MerkleStoreModule`. Fields that are set will be updated. */
5271
- export interface MerkleStoreModulePatch {
5272
- id?: string;
5273
- databaseId?: string;
5274
- schemaId?: string;
5275
- privateSchemaId?: string;
5276
- publicSchemaName?: string;
5277
- privateSchemaName?: string;
5278
- objectTableId?: string;
5279
- storeTableId?: string;
5280
- commitTableId?: string;
5281
- refTableId?: string;
5282
- prefix?: string;
5283
- apiName?: string;
5284
- privateApiName?: string;
5285
- scope?: string;
5286
- functionPrefix?: string;
5287
- createdAt?: string;
5288
- }
5289
5420
  export interface UpdateDatabaseProvisionModuleInput {
5290
5421
  clientMutationId?: string;
5291
5422
  id: string;
@@ -5370,6 +5501,32 @@ export interface GraphModulePatch {
5370
5501
  defaultPermissions?: string[];
5371
5502
  createdAt?: string;
5372
5503
  }
5504
+ export interface UpdateMerkleStoreModuleInput {
5505
+ clientMutationId?: string;
5506
+ id: string;
5507
+ /** An object where the defined keys will be set on the `MerkleStoreModule` being updated. */
5508
+ merkleStoreModulePatch: MerkleStoreModulePatch;
5509
+ }
5510
+ /** Represents an update to a `MerkleStoreModule`. Fields that are set will be updated. */
5511
+ export interface MerkleStoreModulePatch {
5512
+ id?: string;
5513
+ databaseId?: string;
5514
+ schemaId?: string;
5515
+ privateSchemaId?: string;
5516
+ publicSchemaName?: string;
5517
+ privateSchemaName?: string;
5518
+ objectTableId?: string;
5519
+ storeTableId?: string;
5520
+ commitTableId?: string;
5521
+ refTableId?: string;
5522
+ prefix?: string;
5523
+ apiName?: string;
5524
+ privateApiName?: string;
5525
+ scope?: string;
5526
+ functionPrefix?: string;
5527
+ permissionKey?: string;
5528
+ createdAt?: string;
5529
+ }
5373
5530
  export interface UpdateRateLimitMetersModuleInput {
5374
5531
  clientMutationId?: string;
5375
5532
  id: string;
@@ -5525,6 +5682,33 @@ export interface InvitesModulePatch {
5525
5682
  apiName?: string;
5526
5683
  privateApiName?: string;
5527
5684
  }
5685
+ export interface UpdatePrincipalAuthModuleInput {
5686
+ clientMutationId?: string;
5687
+ id: string;
5688
+ /** An object where the defined keys will be set on the `PrincipalAuthModule` being updated. */
5689
+ principalAuthModulePatch: PrincipalAuthModulePatch;
5690
+ }
5691
+ /** Represents an update to a `PrincipalAuthModule`. Fields that are set will be updated. */
5692
+ export interface PrincipalAuthModulePatch {
5693
+ id?: string;
5694
+ databaseId?: string;
5695
+ schemaId?: string;
5696
+ principalsTableId?: string;
5697
+ principalEntitiesTableId?: string;
5698
+ principalScopeOverridesTableId?: string;
5699
+ usersTableId?: string;
5700
+ sessionsTableId?: string;
5701
+ sessionCredentialsTableId?: string;
5702
+ auditsTableId?: string;
5703
+ principalsTableName?: string;
5704
+ createPrincipalFunction?: string;
5705
+ deletePrincipalFunction?: string;
5706
+ createOrgPrincipalFunction?: string;
5707
+ deleteOrgPrincipalFunction?: string;
5708
+ createOrgApiKeyFunction?: string;
5709
+ revokeOrgApiKeyFunction?: string;
5710
+ apiName?: string;
5711
+ }
5528
5712
  export interface UpdateComputeLogModuleInput {
5529
5713
  clientMutationId?: string;
5530
5714
  id: string;
@@ -5609,6 +5793,34 @@ export interface NamespaceModulePatch {
5609
5793
  provisions?: unknown;
5610
5794
  defaultPermissions?: string[];
5611
5795
  }
5796
+ export interface UpdateResourceModuleInput {
5797
+ clientMutationId?: string;
5798
+ id: string;
5799
+ /** An object where the defined keys will be set on the `ResourceModule` being updated. */
5800
+ resourceModulePatch: ResourceModulePatch;
5801
+ }
5802
+ /** Represents an update to a `ResourceModule`. Fields that are set will be updated. */
5803
+ export interface ResourceModulePatch {
5804
+ id?: string;
5805
+ databaseId?: string;
5806
+ schemaId?: string;
5807
+ privateSchemaId?: string;
5808
+ publicSchemaName?: string;
5809
+ privateSchemaName?: string;
5810
+ resourcesTableId?: string;
5811
+ resourceEventsTableId?: string;
5812
+ resourcesTableName?: string;
5813
+ resourceEventsTableName?: string;
5814
+ apiName?: string;
5815
+ privateApiName?: string;
5816
+ scope?: string;
5817
+ prefix?: string;
5818
+ entityTableId?: string;
5819
+ namespaceModuleId?: string;
5820
+ policies?: unknown;
5821
+ provisions?: unknown;
5822
+ defaultPermissions?: string[];
5823
+ }
5612
5824
  export interface UpdateStorageLogModuleInput {
5613
5825
  clientMutationId?: string;
5614
5826
  id: string;
@@ -6798,10 +7010,6 @@ export interface DeleteSecureTableProvisionInput {
6798
7010
  /** Unique identifier for this provision row. */
6799
7011
  id: string;
6800
7012
  }
6801
- export interface DeleteMerkleStoreModuleInput {
6802
- clientMutationId?: string;
6803
- id: string;
6804
- }
6805
7013
  export interface DeleteDatabaseProvisionModuleInput {
6806
7014
  clientMutationId?: string;
6807
7015
  id: string;
@@ -6814,6 +7022,10 @@ export interface DeleteGraphModuleInput {
6814
7022
  clientMutationId?: string;
6815
7023
  id: string;
6816
7024
  }
7025
+ export interface DeleteMerkleStoreModuleInput {
7026
+ clientMutationId?: string;
7027
+ id: string;
7028
+ }
6817
7029
  export interface DeleteRateLimitMetersModuleInput {
6818
7030
  clientMutationId?: string;
6819
7031
  id: string;
@@ -6838,6 +7050,10 @@ export interface DeleteInvitesModuleInput {
6838
7050
  clientMutationId?: string;
6839
7051
  id: string;
6840
7052
  }
7053
+ export interface DeletePrincipalAuthModuleInput {
7054
+ clientMutationId?: string;
7055
+ id: string;
7056
+ }
6841
7057
  export interface DeleteComputeLogModuleInput {
6842
7058
  clientMutationId?: string;
6843
7059
  id: string;
@@ -6850,6 +7066,10 @@ export interface DeleteNamespaceModuleInput {
6850
7066
  clientMutationId?: string;
6851
7067
  id: string;
6852
7068
  }
7069
+ export interface DeleteResourceModuleInput {
7070
+ clientMutationId?: string;
7071
+ id: string;
7072
+ }
6853
7073
  export interface DeleteStorageLogModuleInput {
6854
7074
  clientMutationId?: string;
6855
7075
  id: string;
@@ -7121,13 +7341,6 @@ export interface SecureTableProvisionConnection {
7121
7341
  pageInfo: PageInfo;
7122
7342
  totalCount: number;
7123
7343
  }
7124
- /** A connection to a list of `MerkleStoreModule` values. */
7125
- export interface MerkleStoreModuleConnection {
7126
- nodes: MerkleStoreModule[];
7127
- edges: MerkleStoreModuleEdge[];
7128
- pageInfo: PageInfo;
7129
- totalCount: number;
7130
- }
7131
7344
  /** A connection to a list of `DatabaseProvisionModule` values. */
7132
7345
  export interface DatabaseProvisionModuleConnection {
7133
7346
  nodes: DatabaseProvisionModule[];
@@ -7149,6 +7362,13 @@ export interface GraphModuleConnection {
7149
7362
  pageInfo: PageInfo;
7150
7363
  totalCount: number;
7151
7364
  }
7365
+ /** A connection to a list of `MerkleStoreModule` values. */
7366
+ export interface MerkleStoreModuleConnection {
7367
+ nodes: MerkleStoreModule[];
7368
+ edges: MerkleStoreModuleEdge[];
7369
+ pageInfo: PageInfo;
7370
+ totalCount: number;
7371
+ }
7152
7372
  /** A connection to a list of `RateLimitMetersModule` values. */
7153
7373
  export interface RateLimitMetersModuleConnection {
7154
7374
  nodes: RateLimitMetersModule[];
@@ -7191,6 +7411,13 @@ export interface InvitesModuleConnection {
7191
7411
  pageInfo: PageInfo;
7192
7412
  totalCount: number;
7193
7413
  }
7414
+ /** A connection to a list of `PrincipalAuthModule` values. */
7415
+ export interface PrincipalAuthModuleConnection {
7416
+ nodes: PrincipalAuthModule[];
7417
+ edges: PrincipalAuthModuleEdge[];
7418
+ pageInfo: PageInfo;
7419
+ totalCount: number;
7420
+ }
7194
7421
  /** A connection to a list of `ComputeLogModule` values. */
7195
7422
  export interface ComputeLogModuleConnection {
7196
7423
  nodes: ComputeLogModule[];
@@ -7212,6 +7439,13 @@ export interface NamespaceModuleConnection {
7212
7439
  pageInfo: PageInfo;
7213
7440
  totalCount: number;
7214
7441
  }
7442
+ /** A connection to a list of `ResourceModule` values. */
7443
+ export interface ResourceModuleConnection {
7444
+ nodes: ResourceModule[];
7445
+ edges: ResourceModuleEdge[];
7446
+ pageInfo: PageInfo;
7447
+ totalCount: number;
7448
+ }
7215
7449
  /** A connection to a list of `StorageLogModule` values. */
7216
7450
  export interface StorageLogModuleConnection {
7217
7451
  nodes: StorageLogModule[];
@@ -7547,12 +7781,6 @@ export interface CreateSecureTableProvisionPayload {
7547
7781
  secureTableProvision?: SecureTableProvision | null;
7548
7782
  secureTableProvisionEdge?: SecureTableProvisionEdge | null;
7549
7783
  }
7550
- export interface CreateMerkleStoreModulePayload {
7551
- clientMutationId?: string | null;
7552
- /** The `MerkleStoreModule` that was created by this mutation. */
7553
- merkleStoreModule?: MerkleStoreModule | null;
7554
- merkleStoreModuleEdge?: MerkleStoreModuleEdge | null;
7555
- }
7556
7784
  export interface CreateDatabaseProvisionModulePayload {
7557
7785
  clientMutationId?: string | null;
7558
7786
  /** The `DatabaseProvisionModule` that was created by this mutation. */
@@ -7571,6 +7799,12 @@ export interface CreateGraphModulePayload {
7571
7799
  graphModule?: GraphModule | null;
7572
7800
  graphModuleEdge?: GraphModuleEdge | null;
7573
7801
  }
7802
+ export interface CreateMerkleStoreModulePayload {
7803
+ clientMutationId?: string | null;
7804
+ /** The `MerkleStoreModule` that was created by this mutation. */
7805
+ merkleStoreModule?: MerkleStoreModule | null;
7806
+ merkleStoreModuleEdge?: MerkleStoreModuleEdge | null;
7807
+ }
7574
7808
  export interface CreateRateLimitMetersModulePayload {
7575
7809
  clientMutationId?: string | null;
7576
7810
  /** The `RateLimitMetersModule` that was created by this mutation. */
@@ -7607,6 +7841,12 @@ export interface CreateInvitesModulePayload {
7607
7841
  invitesModule?: InvitesModule | null;
7608
7842
  invitesModuleEdge?: InvitesModuleEdge | null;
7609
7843
  }
7844
+ export interface CreatePrincipalAuthModulePayload {
7845
+ clientMutationId?: string | null;
7846
+ /** The `PrincipalAuthModule` that was created by this mutation. */
7847
+ principalAuthModule?: PrincipalAuthModule | null;
7848
+ principalAuthModuleEdge?: PrincipalAuthModuleEdge | null;
7849
+ }
7610
7850
  export interface CreateComputeLogModulePayload {
7611
7851
  clientMutationId?: string | null;
7612
7852
  /** The `ComputeLogModule` that was created by this mutation. */
@@ -7625,6 +7865,12 @@ export interface CreateNamespaceModulePayload {
7625
7865
  namespaceModule?: NamespaceModule | null;
7626
7866
  namespaceModuleEdge?: NamespaceModuleEdge | null;
7627
7867
  }
7868
+ export interface CreateResourceModulePayload {
7869
+ clientMutationId?: string | null;
7870
+ /** The `ResourceModule` that was created by this mutation. */
7871
+ resourceModule?: ResourceModule | null;
7872
+ resourceModuleEdge?: ResourceModuleEdge | null;
7873
+ }
7628
7874
  export interface CreateStorageLogModulePayload {
7629
7875
  clientMutationId?: string | null;
7630
7876
  /** The `StorageLogModule` that was created by this mutation. */
@@ -7901,12 +8147,6 @@ export interface UpdateSecureTableProvisionPayload {
7901
8147
  secureTableProvision?: SecureTableProvision | null;
7902
8148
  secureTableProvisionEdge?: SecureTableProvisionEdge | null;
7903
8149
  }
7904
- export interface UpdateMerkleStoreModulePayload {
7905
- clientMutationId?: string | null;
7906
- /** The `MerkleStoreModule` that was updated by this mutation. */
7907
- merkleStoreModule?: MerkleStoreModule | null;
7908
- merkleStoreModuleEdge?: MerkleStoreModuleEdge | null;
7909
- }
7910
8150
  export interface UpdateDatabaseProvisionModulePayload {
7911
8151
  clientMutationId?: string | null;
7912
8152
  /** The `DatabaseProvisionModule` that was updated by this mutation. */
@@ -7925,6 +8165,12 @@ export interface UpdateGraphModulePayload {
7925
8165
  graphModule?: GraphModule | null;
7926
8166
  graphModuleEdge?: GraphModuleEdge | null;
7927
8167
  }
8168
+ export interface UpdateMerkleStoreModulePayload {
8169
+ clientMutationId?: string | null;
8170
+ /** The `MerkleStoreModule` that was updated by this mutation. */
8171
+ merkleStoreModule?: MerkleStoreModule | null;
8172
+ merkleStoreModuleEdge?: MerkleStoreModuleEdge | null;
8173
+ }
7928
8174
  export interface UpdateRateLimitMetersModulePayload {
7929
8175
  clientMutationId?: string | null;
7930
8176
  /** The `RateLimitMetersModule` that was updated by this mutation. */
@@ -7961,6 +8207,12 @@ export interface UpdateInvitesModulePayload {
7961
8207
  invitesModule?: InvitesModule | null;
7962
8208
  invitesModuleEdge?: InvitesModuleEdge | null;
7963
8209
  }
8210
+ export interface UpdatePrincipalAuthModulePayload {
8211
+ clientMutationId?: string | null;
8212
+ /** The `PrincipalAuthModule` that was updated by this mutation. */
8213
+ principalAuthModule?: PrincipalAuthModule | null;
8214
+ principalAuthModuleEdge?: PrincipalAuthModuleEdge | null;
8215
+ }
7964
8216
  export interface UpdateComputeLogModulePayload {
7965
8217
  clientMutationId?: string | null;
7966
8218
  /** The `ComputeLogModule` that was updated by this mutation. */
@@ -7979,6 +8231,12 @@ export interface UpdateNamespaceModulePayload {
7979
8231
  namespaceModule?: NamespaceModule | null;
7980
8232
  namespaceModuleEdge?: NamespaceModuleEdge | null;
7981
8233
  }
8234
+ export interface UpdateResourceModulePayload {
8235
+ clientMutationId?: string | null;
8236
+ /** The `ResourceModule` that was updated by this mutation. */
8237
+ resourceModule?: ResourceModule | null;
8238
+ resourceModuleEdge?: ResourceModuleEdge | null;
8239
+ }
7982
8240
  export interface UpdateStorageLogModulePayload {
7983
8241
  clientMutationId?: string | null;
7984
8242
  /** The `StorageLogModule` that was updated by this mutation. */
@@ -8255,12 +8513,6 @@ export interface DeleteSecureTableProvisionPayload {
8255
8513
  secureTableProvision?: SecureTableProvision | null;
8256
8514
  secureTableProvisionEdge?: SecureTableProvisionEdge | null;
8257
8515
  }
8258
- export interface DeleteMerkleStoreModulePayload {
8259
- clientMutationId?: string | null;
8260
- /** The `MerkleStoreModule` that was deleted by this mutation. */
8261
- merkleStoreModule?: MerkleStoreModule | null;
8262
- merkleStoreModuleEdge?: MerkleStoreModuleEdge | null;
8263
- }
8264
8516
  export interface DeleteDatabaseProvisionModulePayload {
8265
8517
  clientMutationId?: string | null;
8266
8518
  /** The `DatabaseProvisionModule` that was deleted by this mutation. */
@@ -8279,6 +8531,12 @@ export interface DeleteGraphModulePayload {
8279
8531
  graphModule?: GraphModule | null;
8280
8532
  graphModuleEdge?: GraphModuleEdge | null;
8281
8533
  }
8534
+ export interface DeleteMerkleStoreModulePayload {
8535
+ clientMutationId?: string | null;
8536
+ /** The `MerkleStoreModule` that was deleted by this mutation. */
8537
+ merkleStoreModule?: MerkleStoreModule | null;
8538
+ merkleStoreModuleEdge?: MerkleStoreModuleEdge | null;
8539
+ }
8282
8540
  export interface DeleteRateLimitMetersModulePayload {
8283
8541
  clientMutationId?: string | null;
8284
8542
  /** The `RateLimitMetersModule` that was deleted by this mutation. */
@@ -8315,6 +8573,12 @@ export interface DeleteInvitesModulePayload {
8315
8573
  invitesModule?: InvitesModule | null;
8316
8574
  invitesModuleEdge?: InvitesModuleEdge | null;
8317
8575
  }
8576
+ export interface DeletePrincipalAuthModulePayload {
8577
+ clientMutationId?: string | null;
8578
+ /** The `PrincipalAuthModule` that was deleted by this mutation. */
8579
+ principalAuthModule?: PrincipalAuthModule | null;
8580
+ principalAuthModuleEdge?: PrincipalAuthModuleEdge | null;
8581
+ }
8318
8582
  export interface DeleteComputeLogModulePayload {
8319
8583
  clientMutationId?: string | null;
8320
8584
  /** The `ComputeLogModule` that was deleted by this mutation. */
@@ -8333,6 +8597,12 @@ export interface DeleteNamespaceModulePayload {
8333
8597
  namespaceModule?: NamespaceModule | null;
8334
8598
  namespaceModuleEdge?: NamespaceModuleEdge | null;
8335
8599
  }
8600
+ export interface DeleteResourceModulePayload {
8601
+ clientMutationId?: string | null;
8602
+ /** The `ResourceModule` that was deleted by this mutation. */
8603
+ resourceModule?: ResourceModule | null;
8604
+ resourceModuleEdge?: ResourceModuleEdge | null;
8605
+ }
8336
8606
  export interface DeleteStorageLogModulePayload {
8337
8607
  clientMutationId?: string | null;
8338
8608
  /** The `StorageLogModule` that was deleted by this mutation. */
@@ -8634,12 +8904,6 @@ export interface SecureTableProvisionEdge {
8634
8904
  /** The `SecureTableProvision` at the end of the edge. */
8635
8905
  node?: SecureTableProvision | null;
8636
8906
  }
8637
- /** A `MerkleStoreModule` edge in the connection. */
8638
- export interface MerkleStoreModuleEdge {
8639
- cursor?: string | null;
8640
- /** The `MerkleStoreModule` at the end of the edge. */
8641
- node?: MerkleStoreModule | null;
8642
- }
8643
8907
  /** A `DatabaseProvisionModule` edge in the connection. */
8644
8908
  export interface DatabaseProvisionModuleEdge {
8645
8909
  cursor?: string | null;
@@ -8658,6 +8922,12 @@ export interface GraphModuleEdge {
8658
8922
  /** The `GraphModule` at the end of the edge. */
8659
8923
  node?: GraphModule | null;
8660
8924
  }
8925
+ /** A `MerkleStoreModule` edge in the connection. */
8926
+ export interface MerkleStoreModuleEdge {
8927
+ cursor?: string | null;
8928
+ /** The `MerkleStoreModule` at the end of the edge. */
8929
+ node?: MerkleStoreModule | null;
8930
+ }
8661
8931
  /** A `RateLimitMetersModule` edge in the connection. */
8662
8932
  export interface RateLimitMetersModuleEdge {
8663
8933
  cursor?: string | null;
@@ -8694,6 +8964,12 @@ export interface InvitesModuleEdge {
8694
8964
  /** The `InvitesModule` at the end of the edge. */
8695
8965
  node?: InvitesModule | null;
8696
8966
  }
8967
+ /** A `PrincipalAuthModule` edge in the connection. */
8968
+ export interface PrincipalAuthModuleEdge {
8969
+ cursor?: string | null;
8970
+ /** The `PrincipalAuthModule` at the end of the edge. */
8971
+ node?: PrincipalAuthModule | null;
8972
+ }
8697
8973
  /** A `ComputeLogModule` edge in the connection. */
8698
8974
  export interface ComputeLogModuleEdge {
8699
8975
  cursor?: string | null;
@@ -8712,6 +8988,12 @@ export interface NamespaceModuleEdge {
8712
8988
  /** The `NamespaceModule` at the end of the edge. */
8713
8989
  node?: NamespaceModule | null;
8714
8990
  }
8991
+ /** A `ResourceModule` edge in the connection. */
8992
+ export interface ResourceModuleEdge {
8993
+ cursor?: string | null;
8994
+ /** The `ResourceModule` at the end of the edge. */
8995
+ node?: ResourceModule | null;
8996
+ }
8715
8997
  /** A `StorageLogModule` edge in the connection. */
8716
8998
  export interface StorageLogModuleEdge {
8717
8999
  cursor?: string | null;