@constructive-io/react 0.30.2 → 0.30.3

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 (1072) hide show
  1. package/agent/orm/input-types.d.ts +24 -0
  2. package/agent/orm/input-types.js +3 -0
  3. package/agent/schema-types.d.ts +13 -0
  4. package/api/hooks/index.d.ts +1 -1
  5. package/api/hooks/index.js +1 -1
  6. package/api/hooks/invalidation.d.ts +11 -5
  7. package/api/hooks/invalidation.js +25 -9
  8. package/api/hooks/mutation-keys.d.ts +22 -10
  9. package/api/hooks/mutation-keys.js +14 -7
  10. package/api/hooks/mutations/index.d.ts +6 -1
  11. package/api/hooks/mutations/index.js +6 -1
  12. package/api/hooks/mutations/useCreateHttpRouteMutation.d.ts +34 -0
  13. package/{objects/hooks/mutations/useCreateGetAllRecordMutation.js → api/hooks/mutations/useCreateHttpRouteMutation.js} +6 -6
  14. package/api/hooks/mutations/useCreateManagedDomainMutation.d.ts +34 -0
  15. package/api/hooks/mutations/useCreateManagedDomainMutation.js +34 -0
  16. package/api/hooks/mutations/useDeleteHttpRouteMutation.d.ts +38 -0
  17. package/api/hooks/mutations/useDeleteHttpRouteMutation.js +39 -0
  18. package/api/hooks/mutations/useDeleteManagedDomainMutation.d.ts +38 -0
  19. package/api/hooks/mutations/useDeleteManagedDomainMutation.js +39 -0
  20. package/api/hooks/mutations/useUpdateHttpRouteMutation.d.ts +40 -0
  21. package/api/hooks/mutations/useUpdateHttpRouteMutation.js +40 -0
  22. package/api/hooks/mutations/useUpdateManagedDomainMutation.d.ts +40 -0
  23. package/api/hooks/mutations/useUpdateManagedDomainMutation.js +40 -0
  24. package/api/hooks/queries/index.d.ts +5 -2
  25. package/api/hooks/queries/index.js +5 -2
  26. package/api/hooks/queries/useHttpRouteQuery.d.ts +65 -0
  27. package/api/hooks/queries/{useMigrateFileQuery.js → useHttpRouteQuery.js} +14 -14
  28. package/api/hooks/queries/useHttpRoutesQuery.d.ts +69 -0
  29. package/api/hooks/queries/useHttpRoutesQuery.js +38 -0
  30. package/api/hooks/queries/useManagedDomainQuery.d.ts +65 -0
  31. package/api/hooks/queries/useManagedDomainQuery.js +53 -0
  32. package/api/hooks/queries/useManagedDomainsQuery.d.ts +69 -0
  33. package/api/hooks/queries/useManagedDomainsQuery.js +38 -0
  34. package/api/hooks/queries/useResolveHttpRouteQuery.d.ts +65 -0
  35. package/api/hooks/queries/useResolveHttpRouteQuery.js +54 -0
  36. package/api/hooks/query-keys.d.ts +28 -12
  37. package/api/hooks/query-keys.js +17 -8
  38. package/api/orm/index.d.ts +9 -2
  39. package/api/orm/index.js +4 -2
  40. package/api/orm/input-types.d.ts +498 -143
  41. package/api/orm/input-types.js +4 -0
  42. package/api/orm/models/httpRoute.d.ts +54 -0
  43. package/{infra/orm/models/infraRef.js → api/orm/models/httpRoute.js} +27 -30
  44. package/api/orm/models/index.d.ts +2 -1
  45. package/api/orm/models/index.js +5 -3
  46. package/api/orm/models/managedDomain.d.ts +54 -0
  47. package/{infra/orm/models/infraCommit.js → api/orm/models/managedDomain.js} +27 -30
  48. package/api/orm/query/index.d.ts +12 -0
  49. package/api/orm/query/index.js +20 -0
  50. package/api/schema-types.d.ts +277 -122
  51. package/api/types.d.ts +25 -5
  52. package/auth/orm/input-types.d.ts +155 -182
  53. package/auth/orm/input-types.js +4 -0
  54. package/auth/schema-types.d.ts +17 -63
  55. package/compute/hooks/index.d.ts +1 -1
  56. package/compute/hooks/index.js +1 -1
  57. package/compute/hooks/invalidation.d.ts +136 -10
  58. package/compute/hooks/invalidation.js +354 -18
  59. package/compute/hooks/mutation-keys.d.ts +294 -20
  60. package/compute/hooks/mutation-keys.js +227 -13
  61. package/compute/hooks/mutations/index.d.ts +62 -2
  62. package/compute/hooks/mutations/index.js +62 -2
  63. package/compute/hooks/mutations/useCreateDeclaredCapacityMutation.d.ts +34 -0
  64. package/compute/hooks/mutations/useCreateDeclaredCapacityMutation.js +34 -0
  65. package/compute/hooks/mutations/useCreateGetAllTreeNodesRecordMutation.d.ts +34 -0
  66. package/compute/hooks/mutations/useCreateGetAllTreeNodesRecordMutation.js +34 -0
  67. package/compute/hooks/mutations/useCreateInfraGetAllTreeNodesRecordMutation.d.ts +34 -0
  68. package/compute/hooks/mutations/useCreateInfraGetAllTreeNodesRecordMutation.js +34 -0
  69. package/compute/hooks/mutations/useCreatePlatformDeclaredCapacityMutation.d.ts +34 -0
  70. package/compute/hooks/mutations/useCreatePlatformDeclaredCapacityMutation.js +34 -0
  71. package/compute/hooks/mutations/useCreatePlatformInfraCommitMutation.d.ts +34 -0
  72. package/{infra/hooks/mutations/useCreateInfraCommitMutation.js → compute/hooks/mutations/useCreatePlatformInfraCommitMutation.js} +5 -5
  73. package/compute/hooks/mutations/useCreatePlatformInfraGetAllTreeNodesRecordMutation.d.ts +34 -0
  74. package/compute/hooks/mutations/useCreatePlatformInfraGetAllTreeNodesRecordMutation.js +34 -0
  75. package/compute/hooks/mutations/useCreatePlatformInfraObjectMutation.d.ts +34 -0
  76. package/{infra/hooks/mutations/useCreateInfraObjectMutation.js → compute/hooks/mutations/useCreatePlatformInfraObjectMutation.js} +5 -5
  77. package/compute/hooks/mutations/useCreatePlatformInfraRefMutation.d.ts +34 -0
  78. package/{infra/hooks/mutations/useCreateInfraRefMutation.js → compute/hooks/mutations/useCreatePlatformInfraRefMutation.js} +5 -5
  79. package/compute/hooks/mutations/useCreatePlatformInfraStoreMutation.d.ts +34 -0
  80. package/{infra/hooks/mutations/useCreateInfraStoreMutation.js → compute/hooks/mutations/useCreatePlatformInfraStoreMutation.js} +5 -5
  81. package/compute/hooks/mutations/useCreatePlatformResourceInstallationMutation.d.ts +34 -0
  82. package/compute/hooks/mutations/useCreatePlatformResourceInstallationMutation.js +34 -0
  83. package/compute/hooks/mutations/useCreatePlatformResourceUsageLogMutation.d.ts +34 -0
  84. package/compute/hooks/mutations/useCreatePlatformResourceUsageLogMutation.js +34 -0
  85. package/compute/hooks/mutations/useCreatePlatformResourceUsageSummaryMutation.d.ts +34 -0
  86. package/compute/hooks/mutations/useCreatePlatformResourceUsageSummaryMutation.js +34 -0
  87. package/compute/hooks/mutations/useCreatePlatformResourceUtilizationDailyMutation.d.ts +34 -0
  88. package/compute/hooks/mutations/useCreatePlatformResourceUtilizationDailyMutation.js +34 -0
  89. package/compute/hooks/mutations/useCreatePlatformResourcesHealthMutation.d.ts +34 -0
  90. package/compute/hooks/mutations/useCreatePlatformResourcesHealthMutation.js +34 -0
  91. package/compute/hooks/mutations/useCreatePlatformWebhookEndpointMutation.d.ts +34 -0
  92. package/compute/hooks/mutations/useCreatePlatformWebhookEndpointMutation.js +34 -0
  93. package/compute/hooks/mutations/useCreatePlatformWebhookEventMutation.d.ts +34 -0
  94. package/compute/hooks/mutations/useCreatePlatformWebhookEventMutation.js +34 -0
  95. package/compute/hooks/mutations/useCreateResourceInstallationMutation.d.ts +34 -0
  96. package/compute/hooks/mutations/useCreateResourceInstallationMutation.js +34 -0
  97. package/compute/hooks/mutations/useCreateResourceUsageLogMutation.d.ts +34 -0
  98. package/compute/hooks/mutations/useCreateResourceUsageLogMutation.js +34 -0
  99. package/compute/hooks/mutations/useCreateResourceUsageSummaryMutation.d.ts +34 -0
  100. package/compute/hooks/mutations/useCreateResourceUsageSummaryMutation.js +34 -0
  101. package/compute/hooks/mutations/useCreateResourceUtilizationDailyMutation.d.ts +34 -0
  102. package/compute/hooks/mutations/useCreateResourceUtilizationDailyMutation.js +34 -0
  103. package/compute/hooks/mutations/useCreateResourcesHealthMutation.d.ts +34 -0
  104. package/{api/hooks/mutations/useCreateMigrateFileMutation.js → compute/hooks/mutations/useCreateResourcesHealthMutation.js} +6 -6
  105. package/compute/hooks/mutations/useCreateWebhookEndpointMutation.d.ts +34 -0
  106. package/compute/hooks/mutations/useCreateWebhookEndpointMutation.js +34 -0
  107. package/compute/hooks/mutations/useCreateWebhookEventMutation.d.ts +34 -0
  108. package/compute/hooks/mutations/useCreateWebhookEventMutation.js +34 -0
  109. package/compute/hooks/mutations/useDeleteInfraCommitMutation.d.ts +2 -2
  110. package/compute/hooks/mutations/useDeleteInfraCommitMutation.js +2 -2
  111. package/compute/hooks/mutations/useDeleteInfraObjectMutation.d.ts +2 -2
  112. package/compute/hooks/mutations/useDeleteInfraObjectMutation.js +2 -2
  113. package/compute/hooks/mutations/useDeleteInfraRefMutation.d.ts +2 -2
  114. package/compute/hooks/mutations/useDeleteInfraRefMutation.js +2 -2
  115. package/compute/hooks/mutations/useDeletePlatformInfraCommitMutation.d.ts +40 -0
  116. package/{infra/hooks/mutations/useDeleteInfraCommitMutation.js → compute/hooks/mutations/useDeletePlatformInfraCommitMutation.js} +6 -6
  117. package/{esm/infra/hooks/mutations/useDeleteInfraObjectMutation.d.ts → compute/hooks/mutations/useDeletePlatformInfraObjectMutation.d.ts} +10 -10
  118. package/{infra/hooks/mutations/useDeleteInfraObjectMutation.js → compute/hooks/mutations/useDeletePlatformInfraObjectMutation.js} +6 -6
  119. package/{infra/hooks/mutations/useDeleteInfraRefMutation.d.ts → compute/hooks/mutations/useDeletePlatformInfraRefMutation.d.ts} +10 -10
  120. package/{infra/hooks/mutations/useDeleteInfraRefMutation.js → compute/hooks/mutations/useDeletePlatformInfraRefMutation.js} +6 -6
  121. package/{esm/infra/hooks/mutations/useDeleteInfraStoreMutation.d.ts → compute/hooks/mutations/useDeletePlatformInfraStoreMutation.d.ts} +10 -10
  122. package/{infra/hooks/mutations/useDeleteInfraStoreMutation.js → compute/hooks/mutations/useDeletePlatformInfraStoreMutation.js} +6 -6
  123. package/compute/hooks/mutations/useDeletePlatformResourceInstallationMutation.d.ts +38 -0
  124. package/compute/hooks/mutations/useDeletePlatformResourceInstallationMutation.js +39 -0
  125. package/compute/hooks/mutations/useDeletePlatformResourceUsageLogMutation.d.ts +40 -0
  126. package/compute/hooks/mutations/useDeletePlatformResourceUsageLogMutation.js +40 -0
  127. package/compute/hooks/mutations/useDeletePlatformResourceUsageSummaryMutation.d.ts +40 -0
  128. package/compute/hooks/mutations/useDeletePlatformResourceUsageSummaryMutation.js +40 -0
  129. package/compute/hooks/mutations/useDeletePlatformWebhookEndpointMutation.d.ts +38 -0
  130. package/compute/hooks/mutations/useDeletePlatformWebhookEndpointMutation.js +39 -0
  131. package/compute/hooks/mutations/useDeletePlatformWebhookEventMutation.d.ts +38 -0
  132. package/compute/hooks/mutations/useDeletePlatformWebhookEventMutation.js +39 -0
  133. package/compute/hooks/mutations/useDeleteResourceInstallationMutation.d.ts +38 -0
  134. package/compute/hooks/mutations/useDeleteResourceInstallationMutation.js +39 -0
  135. package/compute/hooks/mutations/useDeleteResourceUsageLogMutation.d.ts +40 -0
  136. package/compute/hooks/mutations/useDeleteResourceUsageLogMutation.js +40 -0
  137. package/compute/hooks/mutations/useDeleteResourceUsageSummaryMutation.d.ts +40 -0
  138. package/compute/hooks/mutations/useDeleteResourceUsageSummaryMutation.js +40 -0
  139. package/compute/hooks/mutations/useDeleteWebhookEndpointMutation.d.ts +38 -0
  140. package/compute/hooks/mutations/useDeleteWebhookEndpointMutation.js +39 -0
  141. package/compute/hooks/mutations/useDeleteWebhookEventMutation.d.ts +38 -0
  142. package/compute/hooks/mutations/useDeleteWebhookEventMutation.js +39 -0
  143. package/compute/hooks/mutations/usePlatformInfraInitEmptyRepoMutation.d.ts +20 -0
  144. package/{infra/hooks/mutations/useInfraInsertNodeAtPathMutation.js → compute/hooks/mutations/usePlatformInfraInitEmptyRepoMutation.js} +5 -5
  145. package/compute/hooks/mutations/usePlatformInfraInsertNodeAtPathMutation.d.ts +20 -0
  146. package/compute/hooks/mutations/usePlatformInfraInsertNodeAtPathMutation.js +26 -0
  147. package/compute/hooks/mutations/usePlatformInfraSetDataAtPathMutation.d.ts +20 -0
  148. package/{infra/hooks/mutations/useInfraSetDataAtPathMutation.js → compute/hooks/mutations/usePlatformInfraSetDataAtPathMutation.js} +5 -5
  149. package/compute/hooks/mutations/usePlatformResourceInstallationsInstallMutation.d.ts +20 -0
  150. package/compute/hooks/mutations/usePlatformResourceInstallationsInstallMutation.js +26 -0
  151. package/compute/hooks/mutations/usePlatformResourceInstallationsRollbackMutation.d.ts +20 -0
  152. package/compute/hooks/mutations/usePlatformResourceInstallationsRollbackMutation.js +26 -0
  153. package/compute/hooks/mutations/usePlatformResourceInstallationsUninstallMutation.d.ts +20 -0
  154. package/compute/hooks/mutations/usePlatformResourceInstallationsUninstallMutation.js +26 -0
  155. package/compute/hooks/mutations/usePlatformResourceInstallationsUpgradeMutation.d.ts +20 -0
  156. package/compute/hooks/mutations/usePlatformResourceInstallationsUpgradeMutation.js +26 -0
  157. package/compute/hooks/mutations/useResourceInstallationsInstallMutation.d.ts +20 -0
  158. package/compute/hooks/mutations/useResourceInstallationsInstallMutation.js +26 -0
  159. package/compute/hooks/mutations/useResourceInstallationsRollbackMutation.d.ts +20 -0
  160. package/compute/hooks/mutations/useResourceInstallationsRollbackMutation.js +26 -0
  161. package/compute/hooks/mutations/useResourceInstallationsUninstallMutation.d.ts +20 -0
  162. package/compute/hooks/mutations/useResourceInstallationsUninstallMutation.js +26 -0
  163. package/compute/hooks/mutations/useResourceInstallationsUpgradeMutation.d.ts +20 -0
  164. package/compute/hooks/mutations/useResourceInstallationsUpgradeMutation.js +26 -0
  165. package/compute/hooks/mutations/useUpdateInfraCommitMutation.d.ts +2 -2
  166. package/compute/hooks/mutations/useUpdateInfraCommitMutation.js +2 -2
  167. package/compute/hooks/mutations/useUpdateInfraObjectMutation.d.ts +2 -2
  168. package/compute/hooks/mutations/useUpdateInfraObjectMutation.js +2 -2
  169. package/compute/hooks/mutations/useUpdateInfraRefMutation.d.ts +2 -2
  170. package/compute/hooks/mutations/useUpdateInfraRefMutation.js +2 -2
  171. package/compute/hooks/mutations/useUpdatePlatformInfraCommitMutation.d.ts +42 -0
  172. package/compute/hooks/mutations/useUpdatePlatformInfraCommitMutation.js +41 -0
  173. package/compute/hooks/mutations/useUpdatePlatformInfraObjectMutation.d.ts +42 -0
  174. package/compute/hooks/mutations/useUpdatePlatformInfraObjectMutation.js +41 -0
  175. package/compute/hooks/mutations/useUpdatePlatformInfraRefMutation.d.ts +42 -0
  176. package/compute/hooks/mutations/useUpdatePlatformInfraRefMutation.js +41 -0
  177. package/compute/hooks/mutations/useUpdatePlatformInfraStoreMutation.d.ts +40 -0
  178. package/compute/hooks/mutations/useUpdatePlatformInfraStoreMutation.js +40 -0
  179. package/compute/hooks/mutations/useUpdatePlatformResourceInstallationMutation.d.ts +40 -0
  180. package/compute/hooks/mutations/useUpdatePlatformResourceInstallationMutation.js +40 -0
  181. package/compute/hooks/mutations/useUpdatePlatformResourceUsageLogMutation.d.ts +42 -0
  182. package/compute/hooks/mutations/useUpdatePlatformResourceUsageLogMutation.js +41 -0
  183. package/compute/hooks/mutations/useUpdatePlatformResourceUsageSummaryMutation.d.ts +42 -0
  184. package/compute/hooks/mutations/useUpdatePlatformResourceUsageSummaryMutation.js +41 -0
  185. package/compute/hooks/mutations/useUpdatePlatformWebhookEndpointMutation.d.ts +40 -0
  186. package/compute/hooks/mutations/useUpdatePlatformWebhookEndpointMutation.js +40 -0
  187. package/compute/hooks/mutations/useUpdatePlatformWebhookEventMutation.d.ts +40 -0
  188. package/compute/hooks/mutations/useUpdatePlatformWebhookEventMutation.js +40 -0
  189. package/compute/hooks/mutations/useUpdateResourceInstallationMutation.d.ts +40 -0
  190. package/compute/hooks/mutations/useUpdateResourceInstallationMutation.js +40 -0
  191. package/compute/hooks/mutations/useUpdateResourceUsageLogMutation.d.ts +42 -0
  192. package/compute/hooks/mutations/useUpdateResourceUsageLogMutation.js +41 -0
  193. package/compute/hooks/mutations/useUpdateResourceUsageSummaryMutation.d.ts +42 -0
  194. package/compute/hooks/mutations/useUpdateResourceUsageSummaryMutation.js +41 -0
  195. package/compute/hooks/mutations/useUpdateWebhookEndpointMutation.d.ts +40 -0
  196. package/compute/hooks/mutations/useUpdateWebhookEndpointMutation.js +40 -0
  197. package/compute/hooks/mutations/useUpdateWebhookEventMutation.d.ts +40 -0
  198. package/compute/hooks/mutations/useUpdateWebhookEventMutation.js +40 -0
  199. package/compute/hooks/queries/index.d.ts +39 -2
  200. package/compute/hooks/queries/index.js +39 -2
  201. package/compute/hooks/queries/useDeclaredCapacitiesQuery.d.ts +69 -0
  202. package/compute/hooks/queries/useDeclaredCapacitiesQuery.js +38 -0
  203. package/compute/hooks/queries/useGetAllTreeNodesQuery.d.ts +69 -0
  204. package/compute/hooks/queries/useGetAllTreeNodesQuery.js +38 -0
  205. package/compute/hooks/queries/useInfraGetAllTreeNodesQuery.d.ts +69 -0
  206. package/compute/hooks/queries/useInfraGetAllTreeNodesQuery.js +38 -0
  207. package/compute/hooks/queries/usePlatformDeclaredCapacitiesQuery.d.ts +69 -0
  208. package/compute/hooks/queries/usePlatformDeclaredCapacitiesQuery.js +38 -0
  209. package/compute/hooks/queries/usePlatformInfraCommitQuery.d.ts +65 -0
  210. package/compute/hooks/queries/usePlatformInfraCommitQuery.js +53 -0
  211. package/compute/hooks/queries/usePlatformInfraCommitsQuery.d.ts +69 -0
  212. package/{infra/hooks/queries/useInfraCommitsQuery.js → compute/hooks/queries/usePlatformInfraCommitsQuery.js} +13 -13
  213. package/compute/hooks/queries/usePlatformInfraGetAllTreeNodesQuery.d.ts +69 -0
  214. package/compute/hooks/queries/usePlatformInfraGetAllTreeNodesQuery.js +38 -0
  215. package/compute/hooks/queries/usePlatformInfraObjectQuery.d.ts +65 -0
  216. package/{infra/hooks/queries/useInfraObjectQuery.js → compute/hooks/queries/usePlatformInfraObjectQuery.js} +13 -13
  217. package/compute/hooks/queries/usePlatformInfraObjectsQuery.d.ts +69 -0
  218. package/{infra/hooks/queries/useInfraObjectsQuery.js → compute/hooks/queries/usePlatformInfraObjectsQuery.js} +13 -13
  219. package/compute/hooks/queries/usePlatformInfraRefQuery.d.ts +65 -0
  220. package/{infra/hooks/queries/useInfraRefQuery.js → compute/hooks/queries/usePlatformInfraRefQuery.js} +13 -13
  221. package/compute/hooks/queries/usePlatformInfraRefsQuery.d.ts +69 -0
  222. package/{infra/hooks/queries/useInfraRefsQuery.js → compute/hooks/queries/usePlatformInfraRefsQuery.js} +13 -13
  223. package/compute/hooks/queries/usePlatformInfraStoreQuery.d.ts +65 -0
  224. package/{infra/hooks/queries/useInfraStoreQuery.js → compute/hooks/queries/usePlatformInfraStoreQuery.js} +13 -13
  225. package/compute/hooks/queries/usePlatformInfraStoresQuery.d.ts +69 -0
  226. package/{infra/hooks/queries/useInfraStoresQuery.js → compute/hooks/queries/usePlatformInfraStoresQuery.js} +13 -13
  227. package/compute/hooks/queries/usePlatformResourceInstallationQuery.d.ts +65 -0
  228. package/compute/hooks/queries/usePlatformResourceInstallationQuery.js +53 -0
  229. package/compute/hooks/queries/usePlatformResourceInstallationsQuery.d.ts +69 -0
  230. package/compute/hooks/queries/usePlatformResourceInstallationsQuery.js +38 -0
  231. package/compute/hooks/queries/usePlatformResourceUsageLogQuery.d.ts +65 -0
  232. package/compute/hooks/queries/usePlatformResourceUsageLogQuery.js +53 -0
  233. package/compute/hooks/queries/usePlatformResourceUsageLogsQuery.d.ts +69 -0
  234. package/compute/hooks/queries/usePlatformResourceUsageLogsQuery.js +38 -0
  235. package/compute/hooks/queries/usePlatformResourceUsageSummariesQuery.d.ts +69 -0
  236. package/compute/hooks/queries/usePlatformResourceUsageSummariesQuery.js +38 -0
  237. package/compute/hooks/queries/usePlatformResourceUsageSummaryQuery.d.ts +65 -0
  238. package/compute/hooks/queries/usePlatformResourceUsageSummaryQuery.js +53 -0
  239. package/compute/hooks/queries/usePlatformResourceUtilizationDailiesQuery.d.ts +69 -0
  240. package/compute/hooks/queries/usePlatformResourceUtilizationDailiesQuery.js +38 -0
  241. package/compute/hooks/queries/usePlatformResourcesHealthQuery.d.ts +65 -0
  242. package/compute/hooks/queries/usePlatformResourcesHealthQuery.js +53 -0
  243. package/compute/hooks/queries/usePlatformResourcesHealthsQuery.d.ts +69 -0
  244. package/compute/hooks/queries/usePlatformResourcesHealthsQuery.js +38 -0
  245. package/compute/hooks/queries/usePlatformWebhookEndpointQuery.d.ts +65 -0
  246. package/compute/hooks/queries/usePlatformWebhookEndpointQuery.js +53 -0
  247. package/compute/hooks/queries/usePlatformWebhookEndpointsQuery.d.ts +69 -0
  248. package/compute/hooks/queries/usePlatformWebhookEndpointsQuery.js +38 -0
  249. package/compute/hooks/queries/usePlatformWebhookEventQuery.d.ts +65 -0
  250. package/compute/hooks/queries/usePlatformWebhookEventQuery.js +53 -0
  251. package/compute/hooks/queries/usePlatformWebhookEventsQuery.d.ts +69 -0
  252. package/compute/hooks/queries/usePlatformWebhookEventsQuery.js +38 -0
  253. package/compute/hooks/queries/useResourceInstallationQuery.d.ts +65 -0
  254. package/compute/hooks/queries/useResourceInstallationQuery.js +53 -0
  255. package/compute/hooks/queries/useResourceInstallationsQuery.d.ts +69 -0
  256. package/compute/hooks/queries/useResourceInstallationsQuery.js +38 -0
  257. package/compute/hooks/queries/useResourceUsageLogQuery.d.ts +65 -0
  258. package/compute/hooks/queries/useResourceUsageLogQuery.js +53 -0
  259. package/compute/hooks/queries/useResourceUsageLogsQuery.d.ts +69 -0
  260. package/compute/hooks/queries/useResourceUsageLogsQuery.js +38 -0
  261. package/compute/hooks/queries/useResourceUsageSummariesQuery.d.ts +69 -0
  262. package/compute/hooks/queries/useResourceUsageSummariesQuery.js +38 -0
  263. package/compute/hooks/queries/useResourceUsageSummaryQuery.d.ts +65 -0
  264. package/compute/hooks/queries/useResourceUsageSummaryQuery.js +53 -0
  265. package/compute/hooks/queries/useResourceUtilizationDailiesQuery.d.ts +69 -0
  266. package/compute/hooks/queries/useResourceUtilizationDailiesQuery.js +38 -0
  267. package/compute/hooks/queries/useResourcesHealthQuery.d.ts +65 -0
  268. package/compute/hooks/queries/useResourcesHealthQuery.js +53 -0
  269. package/compute/hooks/queries/useResourcesHealthsQuery.d.ts +69 -0
  270. package/compute/hooks/queries/useResourcesHealthsQuery.js +38 -0
  271. package/compute/hooks/queries/useWebhookEndpointQuery.d.ts +65 -0
  272. package/compute/hooks/queries/useWebhookEndpointQuery.js +53 -0
  273. package/compute/hooks/queries/useWebhookEndpointsQuery.d.ts +69 -0
  274. package/compute/hooks/queries/useWebhookEndpointsQuery.js +38 -0
  275. package/compute/hooks/queries/useWebhookEventQuery.d.ts +65 -0
  276. package/compute/hooks/queries/useWebhookEventQuery.js +53 -0
  277. package/compute/hooks/queries/useWebhookEventsQuery.d.ts +69 -0
  278. package/compute/hooks/queries/useWebhookEventsQuery.js +38 -0
  279. package/compute/hooks/query-keys.d.ts +318 -24
  280. package/compute/hooks/query-keys.js +188 -15
  281. package/compute/orm/index.d.ts +101 -4
  282. package/compute/orm/index.js +46 -4
  283. package/compute/orm/input-types.d.ts +5356 -772
  284. package/compute/orm/input-types.js +34 -2
  285. package/compute/orm/models/declaredCapacity.d.ts +30 -0
  286. package/compute/orm/models/{getAllRecord.js → declaredCapacity.js} +15 -15
  287. package/compute/orm/models/getAllTreeNodesRecord.d.ts +30 -0
  288. package/{objects/orm/models/getAllRecord.js → compute/orm/models/getAllTreeNodesRecord.js} +15 -15
  289. package/compute/orm/models/index.d.ts +23 -2
  290. package/compute/orm/models/index.js +48 -5
  291. package/compute/orm/models/infraCommit.d.ts +2 -2
  292. package/compute/orm/models/infraCommit.js +2 -2
  293. package/compute/orm/models/infraGetAllTreeNodesRecord.d.ts +30 -0
  294. package/compute/orm/models/infraGetAllTreeNodesRecord.js +59 -0
  295. package/compute/orm/models/infraObject.d.ts +2 -2
  296. package/compute/orm/models/infraObject.js +2 -2
  297. package/compute/orm/models/infraRef.d.ts +2 -2
  298. package/compute/orm/models/infraRef.js +2 -2
  299. package/compute/orm/models/platformDeclaredCapacity.d.ts +30 -0
  300. package/compute/orm/models/{infraGetAllRecord.js → platformDeclaredCapacity.js} +15 -15
  301. package/compute/orm/models/platformInfraCommit.d.ts +56 -0
  302. package/compute/orm/models/platformInfraCommit.js +107 -0
  303. package/compute/orm/models/platformInfraGetAllTreeNodesRecord.d.ts +30 -0
  304. package/compute/orm/models/platformInfraGetAllTreeNodesRecord.js +59 -0
  305. package/compute/orm/models/platformInfraObject.d.ts +56 -0
  306. package/{infra/orm/models/infraObject.js → compute/orm/models/platformInfraObject.js} +25 -25
  307. package/compute/orm/models/platformInfraRef.d.ts +56 -0
  308. package/compute/orm/models/platformInfraRef.js +107 -0
  309. package/compute/orm/models/platformInfraStore.d.ts +54 -0
  310. package/compute/orm/models/platformInfraStore.js +104 -0
  311. package/compute/orm/models/platformResourceInstallation.d.ts +54 -0
  312. package/compute/orm/models/platformResourceInstallation.js +104 -0
  313. package/compute/orm/models/platformResourceUsageLog.d.ts +56 -0
  314. package/compute/orm/models/platformResourceUsageLog.js +107 -0
  315. package/compute/orm/models/platformResourceUsageSummary.d.ts +56 -0
  316. package/compute/orm/models/platformResourceUsageSummary.js +107 -0
  317. package/compute/orm/models/platformResourceUtilizationDaily.d.ts +30 -0
  318. package/compute/orm/models/platformResourceUtilizationDaily.js +59 -0
  319. package/compute/orm/models/platformResourcesHealth.d.ts +36 -0
  320. package/compute/orm/models/platformResourcesHealth.js +80 -0
  321. package/compute/orm/models/platformWebhookEndpoint.d.ts +54 -0
  322. package/compute/orm/models/platformWebhookEndpoint.js +104 -0
  323. package/compute/orm/models/platformWebhookEvent.d.ts +54 -0
  324. package/compute/orm/models/platformWebhookEvent.js +104 -0
  325. package/compute/orm/models/resourceInstallation.d.ts +54 -0
  326. package/compute/orm/models/resourceInstallation.js +104 -0
  327. package/compute/orm/models/resourceUsageLog.d.ts +56 -0
  328. package/compute/orm/models/resourceUsageLog.js +107 -0
  329. package/compute/orm/models/resourceUsageSummary.d.ts +56 -0
  330. package/compute/orm/models/resourceUsageSummary.js +107 -0
  331. package/compute/orm/models/resourceUtilizationDaily.d.ts +30 -0
  332. package/compute/orm/models/resourceUtilizationDaily.js +59 -0
  333. package/compute/orm/models/resourcesHealth.d.ts +36 -0
  334. package/{api/orm/models/migrateFile.js → compute/orm/models/resourcesHealth.js} +20 -20
  335. package/compute/orm/models/webhookEndpoint.d.ts +54 -0
  336. package/compute/orm/models/webhookEndpoint.js +104 -0
  337. package/compute/orm/models/webhookEvent.d.ts +54 -0
  338. package/{infra/orm/models/infraStore.js → compute/orm/models/webhookEvent.js} +27 -27
  339. package/compute/orm/mutation/index.d.ts +89 -1
  340. package/compute/orm/mutation/index.js +132 -0
  341. package/compute/schema-types.d.ts +2775 -237
  342. package/compute/types.d.ts +364 -20
  343. package/config/orm/input-types.d.ts +4 -79
  344. package/config/schema-types.d.ts +0 -72
  345. package/esm/agent/orm/input-types.d.ts +24 -0
  346. package/esm/agent/orm/input-types.js +3 -0
  347. package/esm/agent/schema-types.d.ts +13 -0
  348. package/esm/api/hooks/index.d.ts +1 -1
  349. package/esm/api/hooks/index.js +1 -1
  350. package/esm/api/hooks/invalidation.d.ts +11 -5
  351. package/esm/api/hooks/invalidation.js +26 -10
  352. package/esm/api/hooks/mutation-keys.d.ts +22 -10
  353. package/esm/api/hooks/mutation-keys.js +13 -6
  354. package/esm/api/hooks/mutations/index.d.ts +6 -1
  355. package/esm/api/hooks/mutations/index.js +6 -1
  356. package/esm/api/hooks/mutations/useCreateHttpRouteMutation.d.ts +34 -0
  357. package/esm/{compute/hooks/mutations/useCreateInfraGetAllRecordMutation.js → api/hooks/mutations/useCreateHttpRouteMutation.js} +7 -7
  358. package/esm/api/hooks/mutations/useCreateManagedDomainMutation.d.ts +34 -0
  359. package/esm/api/hooks/mutations/useCreateManagedDomainMutation.js +31 -0
  360. package/esm/api/hooks/mutations/useDeleteHttpRouteMutation.d.ts +38 -0
  361. package/esm/api/hooks/mutations/useDeleteHttpRouteMutation.js +36 -0
  362. package/esm/api/hooks/mutations/useDeleteManagedDomainMutation.d.ts +38 -0
  363. package/esm/api/hooks/mutations/useDeleteManagedDomainMutation.js +36 -0
  364. package/esm/api/hooks/mutations/useUpdateHttpRouteMutation.d.ts +40 -0
  365. package/esm/api/hooks/mutations/useUpdateHttpRouteMutation.js +37 -0
  366. package/esm/api/hooks/mutations/useUpdateManagedDomainMutation.d.ts +40 -0
  367. package/esm/api/hooks/mutations/useUpdateManagedDomainMutation.js +37 -0
  368. package/esm/api/hooks/queries/index.d.ts +5 -2
  369. package/esm/api/hooks/queries/index.js +5 -2
  370. package/esm/api/hooks/queries/useHttpRouteQuery.d.ts +65 -0
  371. package/esm/api/hooks/queries/useHttpRouteQuery.js +47 -0
  372. package/esm/api/hooks/queries/useHttpRoutesQuery.d.ts +69 -0
  373. package/esm/{compute/hooks/queries/useGetAllQuery.js → api/hooks/queries/useHttpRoutesQuery.js} +11 -11
  374. package/esm/api/hooks/queries/useManagedDomainQuery.d.ts +65 -0
  375. package/esm/api/hooks/queries/useManagedDomainQuery.js +47 -0
  376. package/esm/api/hooks/queries/useManagedDomainsQuery.d.ts +69 -0
  377. package/esm/api/hooks/queries/useManagedDomainsQuery.js +32 -0
  378. package/esm/api/hooks/queries/useResolveHttpRouteQuery.d.ts +65 -0
  379. package/esm/api/hooks/queries/useResolveHttpRouteQuery.js +48 -0
  380. package/esm/api/hooks/query-keys.d.ts +28 -12
  381. package/esm/api/hooks/query-keys.js +16 -7
  382. package/esm/api/orm/index.d.ts +9 -2
  383. package/esm/api/orm/index.js +4 -2
  384. package/esm/api/orm/input-types.d.ts +498 -143
  385. package/esm/api/orm/input-types.js +4 -0
  386. package/esm/api/orm/models/httpRoute.d.ts +54 -0
  387. package/esm/{infra/orm/models/infraRef.js → api/orm/models/httpRoute.js} +25 -28
  388. package/esm/api/orm/models/index.d.ts +2 -1
  389. package/esm/api/orm/models/index.js +2 -1
  390. package/esm/api/orm/models/managedDomain.d.ts +54 -0
  391. package/esm/{infra/orm/models/infraCommit.js → api/orm/models/managedDomain.js} +25 -28
  392. package/esm/api/orm/query/index.d.ts +12 -0
  393. package/esm/api/orm/query/index.js +20 -0
  394. package/esm/api/schema-types.d.ts +277 -122
  395. package/esm/api/types.d.ts +25 -5
  396. package/esm/auth/orm/input-types.d.ts +155 -182
  397. package/esm/auth/orm/input-types.js +4 -0
  398. package/esm/auth/schema-types.d.ts +17 -63
  399. package/esm/compute/hooks/index.d.ts +1 -1
  400. package/esm/compute/hooks/index.js +1 -1
  401. package/esm/compute/hooks/invalidation.d.ts +136 -10
  402. package/esm/compute/hooks/invalidation.js +355 -19
  403. package/esm/compute/hooks/mutation-keys.d.ts +294 -20
  404. package/esm/compute/hooks/mutation-keys.js +225 -12
  405. package/esm/compute/hooks/mutations/index.d.ts +62 -2
  406. package/esm/compute/hooks/mutations/index.js +62 -2
  407. package/esm/compute/hooks/mutations/useCreateDeclaredCapacityMutation.d.ts +34 -0
  408. package/esm/compute/hooks/mutations/useCreateDeclaredCapacityMutation.js +31 -0
  409. package/esm/compute/hooks/mutations/useCreateGetAllTreeNodesRecordMutation.d.ts +34 -0
  410. package/esm/compute/hooks/mutations/useCreateGetAllTreeNodesRecordMutation.js +31 -0
  411. package/esm/compute/hooks/mutations/useCreateInfraGetAllTreeNodesRecordMutation.d.ts +34 -0
  412. package/esm/compute/hooks/mutations/useCreateInfraGetAllTreeNodesRecordMutation.js +31 -0
  413. package/esm/compute/hooks/mutations/useCreatePlatformDeclaredCapacityMutation.d.ts +34 -0
  414. package/esm/compute/hooks/mutations/useCreatePlatformDeclaredCapacityMutation.js +31 -0
  415. package/esm/compute/hooks/mutations/useCreatePlatformInfraCommitMutation.d.ts +34 -0
  416. package/esm/{infra/hooks/mutations/useCreateInfraCommitMutation.js → compute/hooks/mutations/useCreatePlatformInfraCommitMutation.js} +6 -6
  417. package/esm/compute/hooks/mutations/useCreatePlatformInfraGetAllTreeNodesRecordMutation.d.ts +34 -0
  418. package/esm/compute/hooks/mutations/useCreatePlatformInfraGetAllTreeNodesRecordMutation.js +31 -0
  419. package/esm/compute/hooks/mutations/useCreatePlatformInfraObjectMutation.d.ts +34 -0
  420. package/esm/{infra/hooks/mutations/useCreateInfraObjectMutation.js → compute/hooks/mutations/useCreatePlatformInfraObjectMutation.js} +6 -6
  421. package/esm/compute/hooks/mutations/useCreatePlatformInfraRefMutation.d.ts +34 -0
  422. package/esm/{infra/hooks/mutations/useCreateInfraRefMutation.js → compute/hooks/mutations/useCreatePlatformInfraRefMutation.js} +6 -6
  423. package/esm/compute/hooks/mutations/useCreatePlatformInfraStoreMutation.d.ts +34 -0
  424. package/esm/{infra/hooks/mutations/useCreateInfraStoreMutation.js → compute/hooks/mutations/useCreatePlatformInfraStoreMutation.js} +6 -6
  425. package/esm/compute/hooks/mutations/useCreatePlatformResourceInstallationMutation.d.ts +34 -0
  426. package/esm/{infra/hooks/mutations/useCreateInfraGetAllRecordMutation.js → compute/hooks/mutations/useCreatePlatformResourceInstallationMutation.js} +7 -7
  427. package/esm/compute/hooks/mutations/useCreatePlatformResourceUsageLogMutation.d.ts +34 -0
  428. package/esm/compute/hooks/mutations/useCreatePlatformResourceUsageLogMutation.js +31 -0
  429. package/esm/compute/hooks/mutations/useCreatePlatformResourceUsageSummaryMutation.d.ts +34 -0
  430. package/esm/compute/hooks/mutations/useCreatePlatformResourceUsageSummaryMutation.js +31 -0
  431. package/esm/compute/hooks/mutations/useCreatePlatformResourceUtilizationDailyMutation.d.ts +34 -0
  432. package/esm/compute/hooks/mutations/useCreatePlatformResourceUtilizationDailyMutation.js +31 -0
  433. package/esm/compute/hooks/mutations/useCreatePlatformResourcesHealthMutation.d.ts +34 -0
  434. package/esm/compute/hooks/mutations/useCreatePlatformResourcesHealthMutation.js +31 -0
  435. package/esm/compute/hooks/mutations/useCreatePlatformWebhookEndpointMutation.d.ts +34 -0
  436. package/esm/compute/hooks/mutations/useCreatePlatformWebhookEndpointMutation.js +31 -0
  437. package/esm/compute/hooks/mutations/useCreatePlatformWebhookEventMutation.d.ts +34 -0
  438. package/esm/compute/hooks/mutations/useCreatePlatformWebhookEventMutation.js +31 -0
  439. package/esm/compute/hooks/mutations/useCreateResourceInstallationMutation.d.ts +34 -0
  440. package/esm/compute/hooks/mutations/useCreateResourceInstallationMutation.js +31 -0
  441. package/esm/compute/hooks/mutations/useCreateResourceUsageLogMutation.d.ts +34 -0
  442. package/esm/compute/hooks/mutations/useCreateResourceUsageLogMutation.js +31 -0
  443. package/esm/compute/hooks/mutations/useCreateResourceUsageSummaryMutation.d.ts +34 -0
  444. package/esm/compute/hooks/mutations/useCreateResourceUsageSummaryMutation.js +31 -0
  445. package/esm/compute/hooks/mutations/useCreateResourceUtilizationDailyMutation.d.ts +34 -0
  446. package/esm/compute/hooks/mutations/useCreateResourceUtilizationDailyMutation.js +31 -0
  447. package/esm/compute/hooks/mutations/useCreateResourcesHealthMutation.d.ts +34 -0
  448. package/esm/compute/hooks/mutations/{useCreateGetAllRecordMutation.js → useCreateResourcesHealthMutation.js} +7 -7
  449. package/esm/compute/hooks/mutations/useCreateWebhookEndpointMutation.d.ts +34 -0
  450. package/esm/compute/hooks/mutations/useCreateWebhookEndpointMutation.js +31 -0
  451. package/esm/compute/hooks/mutations/useCreateWebhookEventMutation.d.ts +34 -0
  452. package/esm/compute/hooks/mutations/useCreateWebhookEventMutation.js +31 -0
  453. package/esm/compute/hooks/mutations/useDeleteInfraCommitMutation.d.ts +2 -2
  454. package/esm/compute/hooks/mutations/useDeleteInfraCommitMutation.js +2 -2
  455. package/esm/compute/hooks/mutations/useDeleteInfraObjectMutation.d.ts +2 -2
  456. package/esm/compute/hooks/mutations/useDeleteInfraObjectMutation.js +2 -2
  457. package/esm/compute/hooks/mutations/useDeleteInfraRefMutation.d.ts +2 -2
  458. package/esm/compute/hooks/mutations/useDeleteInfraRefMutation.js +2 -2
  459. package/esm/compute/hooks/mutations/useDeletePlatformInfraCommitMutation.d.ts +40 -0
  460. package/esm/{infra/hooks/mutations/useDeleteInfraCommitMutation.js → compute/hooks/mutations/useDeletePlatformInfraCommitMutation.js} +7 -7
  461. package/{infra/hooks/mutations/useDeleteInfraObjectMutation.d.ts → esm/compute/hooks/mutations/useDeletePlatformInfraObjectMutation.d.ts} +10 -10
  462. package/esm/{infra/hooks/mutations/useDeleteInfraObjectMutation.js → compute/hooks/mutations/useDeletePlatformInfraObjectMutation.js} +7 -7
  463. package/esm/{infra/hooks/mutations/useDeleteInfraRefMutation.d.ts → compute/hooks/mutations/useDeletePlatformInfraRefMutation.d.ts} +10 -10
  464. package/esm/{infra/hooks/mutations/useDeleteInfraRefMutation.js → compute/hooks/mutations/useDeletePlatformInfraRefMutation.js} +7 -7
  465. package/{infra/hooks/mutations/useDeleteInfraStoreMutation.d.ts → esm/compute/hooks/mutations/useDeletePlatformInfraStoreMutation.d.ts} +10 -10
  466. package/esm/{infra/hooks/mutations/useDeleteInfraStoreMutation.js → compute/hooks/mutations/useDeletePlatformInfraStoreMutation.js} +7 -7
  467. package/esm/compute/hooks/mutations/useDeletePlatformResourceInstallationMutation.d.ts +38 -0
  468. package/esm/compute/hooks/mutations/useDeletePlatformResourceInstallationMutation.js +36 -0
  469. package/esm/compute/hooks/mutations/useDeletePlatformResourceUsageLogMutation.d.ts +40 -0
  470. package/esm/compute/hooks/mutations/useDeletePlatformResourceUsageLogMutation.js +37 -0
  471. package/esm/compute/hooks/mutations/useDeletePlatformResourceUsageSummaryMutation.d.ts +40 -0
  472. package/esm/compute/hooks/mutations/useDeletePlatformResourceUsageSummaryMutation.js +37 -0
  473. package/esm/compute/hooks/mutations/useDeletePlatformWebhookEndpointMutation.d.ts +38 -0
  474. package/esm/compute/hooks/mutations/useDeletePlatformWebhookEndpointMutation.js +36 -0
  475. package/esm/compute/hooks/mutations/useDeletePlatformWebhookEventMutation.d.ts +38 -0
  476. package/esm/compute/hooks/mutations/useDeletePlatformWebhookEventMutation.js +36 -0
  477. package/esm/compute/hooks/mutations/useDeleteResourceInstallationMutation.d.ts +38 -0
  478. package/esm/compute/hooks/mutations/useDeleteResourceInstallationMutation.js +36 -0
  479. package/esm/compute/hooks/mutations/useDeleteResourceUsageLogMutation.d.ts +40 -0
  480. package/esm/compute/hooks/mutations/useDeleteResourceUsageLogMutation.js +37 -0
  481. package/esm/compute/hooks/mutations/useDeleteResourceUsageSummaryMutation.d.ts +40 -0
  482. package/esm/compute/hooks/mutations/useDeleteResourceUsageSummaryMutation.js +37 -0
  483. package/esm/compute/hooks/mutations/useDeleteWebhookEndpointMutation.d.ts +38 -0
  484. package/esm/compute/hooks/mutations/useDeleteWebhookEndpointMutation.js +36 -0
  485. package/esm/compute/hooks/mutations/useDeleteWebhookEventMutation.d.ts +38 -0
  486. package/esm/compute/hooks/mutations/useDeleteWebhookEventMutation.js +36 -0
  487. package/esm/compute/hooks/mutations/usePlatformInfraInitEmptyRepoMutation.d.ts +20 -0
  488. package/esm/{infra/hooks/mutations/useInfraInsertNodeAtPathMutation.js → compute/hooks/mutations/usePlatformInfraInitEmptyRepoMutation.js} +4 -4
  489. package/esm/compute/hooks/mutations/usePlatformInfraInsertNodeAtPathMutation.d.ts +20 -0
  490. package/esm/compute/hooks/mutations/usePlatformInfraInsertNodeAtPathMutation.js +23 -0
  491. package/esm/compute/hooks/mutations/usePlatformInfraSetDataAtPathMutation.d.ts +20 -0
  492. package/esm/{infra/hooks/mutations/useInfraInitEmptyRepoMutation.js → compute/hooks/mutations/usePlatformInfraSetDataAtPathMutation.js} +4 -4
  493. package/esm/compute/hooks/mutations/usePlatformResourceInstallationsInstallMutation.d.ts +20 -0
  494. package/esm/compute/hooks/mutations/usePlatformResourceInstallationsInstallMutation.js +23 -0
  495. package/esm/compute/hooks/mutations/usePlatformResourceInstallationsRollbackMutation.d.ts +20 -0
  496. package/esm/compute/hooks/mutations/usePlatformResourceInstallationsRollbackMutation.js +23 -0
  497. package/esm/compute/hooks/mutations/usePlatformResourceInstallationsUninstallMutation.d.ts +20 -0
  498. package/esm/compute/hooks/mutations/usePlatformResourceInstallationsUninstallMutation.js +23 -0
  499. package/esm/compute/hooks/mutations/usePlatformResourceInstallationsUpgradeMutation.d.ts +20 -0
  500. package/esm/compute/hooks/mutations/usePlatformResourceInstallationsUpgradeMutation.js +23 -0
  501. package/esm/compute/hooks/mutations/useResourceInstallationsInstallMutation.d.ts +20 -0
  502. package/esm/compute/hooks/mutations/useResourceInstallationsInstallMutation.js +23 -0
  503. package/esm/compute/hooks/mutations/useResourceInstallationsRollbackMutation.d.ts +20 -0
  504. package/esm/compute/hooks/mutations/useResourceInstallationsRollbackMutation.js +23 -0
  505. package/esm/compute/hooks/mutations/useResourceInstallationsUninstallMutation.d.ts +20 -0
  506. package/esm/compute/hooks/mutations/useResourceInstallationsUninstallMutation.js +23 -0
  507. package/esm/compute/hooks/mutations/useResourceInstallationsUpgradeMutation.d.ts +20 -0
  508. package/esm/compute/hooks/mutations/useResourceInstallationsUpgradeMutation.js +23 -0
  509. package/esm/compute/hooks/mutations/useUpdateInfraCommitMutation.d.ts +2 -2
  510. package/esm/compute/hooks/mutations/useUpdateInfraCommitMutation.js +2 -2
  511. package/esm/compute/hooks/mutations/useUpdateInfraObjectMutation.d.ts +2 -2
  512. package/esm/compute/hooks/mutations/useUpdateInfraObjectMutation.js +2 -2
  513. package/esm/compute/hooks/mutations/useUpdateInfraRefMutation.d.ts +2 -2
  514. package/esm/compute/hooks/mutations/useUpdateInfraRefMutation.js +2 -2
  515. package/esm/compute/hooks/mutations/useUpdatePlatformInfraCommitMutation.d.ts +42 -0
  516. package/esm/compute/hooks/mutations/useUpdatePlatformInfraCommitMutation.js +38 -0
  517. package/esm/compute/hooks/mutations/useUpdatePlatformInfraObjectMutation.d.ts +42 -0
  518. package/esm/compute/hooks/mutations/useUpdatePlatformInfraObjectMutation.js +38 -0
  519. package/esm/compute/hooks/mutations/useUpdatePlatformInfraRefMutation.d.ts +42 -0
  520. package/esm/{infra/hooks/mutations/useUpdateInfraRefMutation.js → compute/hooks/mutations/useUpdatePlatformInfraRefMutation.js} +9 -9
  521. package/esm/compute/hooks/mutations/useUpdatePlatformInfraStoreMutation.d.ts +40 -0
  522. package/esm/compute/hooks/mutations/useUpdatePlatformInfraStoreMutation.js +37 -0
  523. package/esm/compute/hooks/mutations/useUpdatePlatformResourceInstallationMutation.d.ts +40 -0
  524. package/esm/compute/hooks/mutations/useUpdatePlatformResourceInstallationMutation.js +37 -0
  525. package/esm/compute/hooks/mutations/useUpdatePlatformResourceUsageLogMutation.d.ts +42 -0
  526. package/esm/compute/hooks/mutations/useUpdatePlatformResourceUsageLogMutation.js +38 -0
  527. package/esm/compute/hooks/mutations/useUpdatePlatformResourceUsageSummaryMutation.d.ts +42 -0
  528. package/esm/compute/hooks/mutations/useUpdatePlatformResourceUsageSummaryMutation.js +38 -0
  529. package/esm/compute/hooks/mutations/useUpdatePlatformWebhookEndpointMutation.d.ts +40 -0
  530. package/esm/compute/hooks/mutations/useUpdatePlatformWebhookEndpointMutation.js +37 -0
  531. package/esm/compute/hooks/mutations/useUpdatePlatformWebhookEventMutation.d.ts +40 -0
  532. package/esm/compute/hooks/mutations/useUpdatePlatformWebhookEventMutation.js +37 -0
  533. package/esm/compute/hooks/mutations/useUpdateResourceInstallationMutation.d.ts +40 -0
  534. package/esm/compute/hooks/mutations/useUpdateResourceInstallationMutation.js +37 -0
  535. package/esm/compute/hooks/mutations/useUpdateResourceUsageLogMutation.d.ts +42 -0
  536. package/esm/compute/hooks/mutations/useUpdateResourceUsageLogMutation.js +38 -0
  537. package/esm/compute/hooks/mutations/useUpdateResourceUsageSummaryMutation.d.ts +42 -0
  538. package/esm/compute/hooks/mutations/useUpdateResourceUsageSummaryMutation.js +38 -0
  539. package/esm/compute/hooks/mutations/useUpdateWebhookEndpointMutation.d.ts +40 -0
  540. package/esm/compute/hooks/mutations/useUpdateWebhookEndpointMutation.js +37 -0
  541. package/esm/compute/hooks/mutations/useUpdateWebhookEventMutation.d.ts +40 -0
  542. package/esm/compute/hooks/mutations/useUpdateWebhookEventMutation.js +37 -0
  543. package/esm/compute/hooks/queries/index.d.ts +39 -2
  544. package/esm/compute/hooks/queries/index.js +39 -2
  545. package/esm/compute/hooks/queries/useDeclaredCapacitiesQuery.d.ts +69 -0
  546. package/esm/{objects/hooks/queries/useGetAllQuery.js → compute/hooks/queries/useDeclaredCapacitiesQuery.js} +11 -11
  547. package/esm/compute/hooks/queries/useGetAllTreeNodesQuery.d.ts +69 -0
  548. package/esm/compute/hooks/queries/useGetAllTreeNodesQuery.js +32 -0
  549. package/esm/compute/hooks/queries/useInfraGetAllTreeNodesQuery.d.ts +69 -0
  550. package/esm/compute/hooks/queries/useInfraGetAllTreeNodesQuery.js +32 -0
  551. package/esm/compute/hooks/queries/usePlatformDeclaredCapacitiesQuery.d.ts +69 -0
  552. package/esm/compute/hooks/queries/usePlatformDeclaredCapacitiesQuery.js +32 -0
  553. package/esm/compute/hooks/queries/usePlatformInfraCommitQuery.d.ts +65 -0
  554. package/esm/{infra/hooks/queries/useInfraCommitQuery.js → compute/hooks/queries/usePlatformInfraCommitQuery.js} +10 -10
  555. package/esm/compute/hooks/queries/usePlatformInfraCommitsQuery.d.ts +69 -0
  556. package/esm/{infra/hooks/queries/useInfraCommitsQuery.js → compute/hooks/queries/usePlatformInfraCommitsQuery.js} +10 -10
  557. package/esm/compute/hooks/queries/usePlatformInfraGetAllTreeNodesQuery.d.ts +69 -0
  558. package/esm/compute/hooks/queries/usePlatformInfraGetAllTreeNodesQuery.js +32 -0
  559. package/esm/compute/hooks/queries/usePlatformInfraObjectQuery.d.ts +65 -0
  560. package/esm/{infra/hooks/queries/useInfraObjectQuery.js → compute/hooks/queries/usePlatformInfraObjectQuery.js} +10 -10
  561. package/esm/compute/hooks/queries/usePlatformInfraObjectsQuery.d.ts +69 -0
  562. package/esm/{infra/hooks/queries/useInfraObjectsQuery.js → compute/hooks/queries/usePlatformInfraObjectsQuery.js} +10 -10
  563. package/esm/compute/hooks/queries/usePlatformInfraRefQuery.d.ts +65 -0
  564. package/esm/{infra/hooks/queries/useInfraRefQuery.js → compute/hooks/queries/usePlatformInfraRefQuery.js} +10 -10
  565. package/esm/compute/hooks/queries/usePlatformInfraRefsQuery.d.ts +69 -0
  566. package/esm/{infra/hooks/queries/useInfraRefsQuery.js → compute/hooks/queries/usePlatformInfraRefsQuery.js} +10 -10
  567. package/esm/compute/hooks/queries/usePlatformInfraStoreQuery.d.ts +65 -0
  568. package/esm/{infra/hooks/queries/useInfraStoreQuery.js → compute/hooks/queries/usePlatformInfraStoreQuery.js} +10 -10
  569. package/esm/compute/hooks/queries/usePlatformInfraStoresQuery.d.ts +69 -0
  570. package/esm/{infra/hooks/queries/useInfraStoresQuery.js → compute/hooks/queries/usePlatformInfraStoresQuery.js} +10 -10
  571. package/esm/compute/hooks/queries/usePlatformResourceInstallationQuery.d.ts +65 -0
  572. package/esm/compute/hooks/queries/usePlatformResourceInstallationQuery.js +47 -0
  573. package/esm/compute/hooks/queries/usePlatformResourceInstallationsQuery.d.ts +69 -0
  574. package/esm/compute/hooks/queries/usePlatformResourceInstallationsQuery.js +32 -0
  575. package/esm/compute/hooks/queries/usePlatformResourceUsageLogQuery.d.ts +65 -0
  576. package/esm/compute/hooks/queries/usePlatformResourceUsageLogQuery.js +47 -0
  577. package/esm/compute/hooks/queries/usePlatformResourceUsageLogsQuery.d.ts +69 -0
  578. package/esm/compute/hooks/queries/usePlatformResourceUsageLogsQuery.js +32 -0
  579. package/esm/compute/hooks/queries/usePlatformResourceUsageSummariesQuery.d.ts +69 -0
  580. package/esm/compute/hooks/queries/usePlatformResourceUsageSummariesQuery.js +32 -0
  581. package/esm/compute/hooks/queries/usePlatformResourceUsageSummaryQuery.d.ts +65 -0
  582. package/esm/compute/hooks/queries/usePlatformResourceUsageSummaryQuery.js +47 -0
  583. package/esm/compute/hooks/queries/usePlatformResourceUtilizationDailiesQuery.d.ts +69 -0
  584. package/esm/compute/hooks/queries/usePlatformResourceUtilizationDailiesQuery.js +32 -0
  585. package/esm/compute/hooks/queries/usePlatformResourcesHealthQuery.d.ts +65 -0
  586. package/esm/compute/hooks/queries/usePlatformResourcesHealthQuery.js +47 -0
  587. package/esm/compute/hooks/queries/usePlatformResourcesHealthsQuery.d.ts +69 -0
  588. package/esm/compute/hooks/queries/usePlatformResourcesHealthsQuery.js +32 -0
  589. package/esm/compute/hooks/queries/usePlatformWebhookEndpointQuery.d.ts +65 -0
  590. package/esm/compute/hooks/queries/usePlatformWebhookEndpointQuery.js +47 -0
  591. package/esm/compute/hooks/queries/usePlatformWebhookEndpointsQuery.d.ts +69 -0
  592. package/esm/compute/hooks/queries/usePlatformWebhookEndpointsQuery.js +32 -0
  593. package/esm/compute/hooks/queries/usePlatformWebhookEventQuery.d.ts +65 -0
  594. package/esm/compute/hooks/queries/usePlatformWebhookEventQuery.js +47 -0
  595. package/esm/compute/hooks/queries/usePlatformWebhookEventsQuery.d.ts +69 -0
  596. package/esm/compute/hooks/queries/usePlatformWebhookEventsQuery.js +32 -0
  597. package/esm/compute/hooks/queries/useResourceInstallationQuery.d.ts +65 -0
  598. package/esm/compute/hooks/queries/useResourceInstallationQuery.js +47 -0
  599. package/esm/compute/hooks/queries/useResourceInstallationsQuery.d.ts +69 -0
  600. package/esm/compute/hooks/queries/useResourceInstallationsQuery.js +32 -0
  601. package/esm/compute/hooks/queries/useResourceUsageLogQuery.d.ts +65 -0
  602. package/esm/compute/hooks/queries/useResourceUsageLogQuery.js +47 -0
  603. package/esm/compute/hooks/queries/useResourceUsageLogsQuery.d.ts +69 -0
  604. package/esm/compute/hooks/queries/useResourceUsageLogsQuery.js +32 -0
  605. package/esm/compute/hooks/queries/useResourceUsageSummariesQuery.d.ts +69 -0
  606. package/esm/compute/hooks/queries/useResourceUsageSummariesQuery.js +32 -0
  607. package/esm/compute/hooks/queries/useResourceUsageSummaryQuery.d.ts +65 -0
  608. package/esm/compute/hooks/queries/useResourceUsageSummaryQuery.js +47 -0
  609. package/esm/compute/hooks/queries/useResourceUtilizationDailiesQuery.d.ts +69 -0
  610. package/esm/compute/hooks/queries/useResourceUtilizationDailiesQuery.js +32 -0
  611. package/esm/compute/hooks/queries/useResourcesHealthQuery.d.ts +65 -0
  612. package/esm/compute/hooks/queries/useResourcesHealthQuery.js +47 -0
  613. package/esm/compute/hooks/queries/useResourcesHealthsQuery.d.ts +69 -0
  614. package/esm/compute/hooks/queries/{useInfraGetAllQuery.js → useResourcesHealthsQuery.js} +11 -11
  615. package/esm/compute/hooks/queries/useWebhookEndpointQuery.d.ts +65 -0
  616. package/esm/compute/hooks/queries/useWebhookEndpointQuery.js +47 -0
  617. package/esm/compute/hooks/queries/useWebhookEndpointsQuery.d.ts +69 -0
  618. package/esm/compute/hooks/queries/useWebhookEndpointsQuery.js +32 -0
  619. package/esm/compute/hooks/queries/useWebhookEventQuery.d.ts +65 -0
  620. package/esm/compute/hooks/queries/useWebhookEventQuery.js +47 -0
  621. package/esm/compute/hooks/queries/useWebhookEventsQuery.d.ts +69 -0
  622. package/esm/compute/hooks/queries/useWebhookEventsQuery.js +32 -0
  623. package/esm/compute/hooks/query-keys.d.ts +318 -24
  624. package/esm/compute/hooks/query-keys.js +186 -14
  625. package/esm/compute/orm/index.d.ts +101 -4
  626. package/esm/compute/orm/index.js +46 -4
  627. package/esm/compute/orm/input-types.d.ts +5356 -772
  628. package/esm/compute/orm/input-types.js +34 -2
  629. package/esm/compute/orm/models/declaredCapacity.d.ts +30 -0
  630. package/esm/compute/orm/models/{infraGetAllRecord.js → declaredCapacity.js} +13 -13
  631. package/esm/compute/orm/models/getAllTreeNodesRecord.d.ts +30 -0
  632. package/esm/compute/orm/models/{getAllRecord.js → getAllTreeNodesRecord.js} +13 -13
  633. package/esm/compute/orm/models/index.d.ts +23 -2
  634. package/esm/compute/orm/models/index.js +23 -2
  635. package/esm/compute/orm/models/infraCommit.d.ts +2 -2
  636. package/esm/compute/orm/models/infraCommit.js +2 -2
  637. package/esm/compute/orm/models/infraGetAllTreeNodesRecord.d.ts +30 -0
  638. package/esm/{infra/orm/models/infraGetAllRecord.js → compute/orm/models/infraGetAllTreeNodesRecord.js} +13 -13
  639. package/esm/compute/orm/models/infraObject.d.ts +2 -2
  640. package/esm/compute/orm/models/infraObject.js +2 -2
  641. package/esm/compute/orm/models/infraRef.d.ts +2 -2
  642. package/esm/compute/orm/models/infraRef.js +2 -2
  643. package/esm/compute/orm/models/platformDeclaredCapacity.d.ts +30 -0
  644. package/esm/compute/orm/models/platformDeclaredCapacity.js +55 -0
  645. package/esm/compute/orm/models/platformInfraCommit.d.ts +56 -0
  646. package/esm/compute/orm/models/platformInfraCommit.js +103 -0
  647. package/esm/compute/orm/models/platformInfraGetAllTreeNodesRecord.d.ts +30 -0
  648. package/esm/compute/orm/models/platformInfraGetAllTreeNodesRecord.js +55 -0
  649. package/esm/compute/orm/models/platformInfraObject.d.ts +56 -0
  650. package/esm/{infra/orm/models/infraObject.js → compute/orm/models/platformInfraObject.js} +23 -23
  651. package/esm/compute/orm/models/platformInfraRef.d.ts +56 -0
  652. package/esm/compute/orm/models/platformInfraRef.js +103 -0
  653. package/esm/compute/orm/models/platformInfraStore.d.ts +54 -0
  654. package/esm/compute/orm/models/platformInfraStore.js +100 -0
  655. package/esm/compute/orm/models/platformResourceInstallation.d.ts +54 -0
  656. package/esm/compute/orm/models/platformResourceInstallation.js +100 -0
  657. package/esm/compute/orm/models/platformResourceUsageLog.d.ts +56 -0
  658. package/esm/compute/orm/models/platformResourceUsageLog.js +103 -0
  659. package/esm/compute/orm/models/platformResourceUsageSummary.d.ts +56 -0
  660. package/esm/compute/orm/models/platformResourceUsageSummary.js +103 -0
  661. package/esm/compute/orm/models/platformResourceUtilizationDaily.d.ts +30 -0
  662. package/esm/compute/orm/models/platformResourceUtilizationDaily.js +55 -0
  663. package/esm/compute/orm/models/platformResourcesHealth.d.ts +36 -0
  664. package/esm/compute/orm/models/platformResourcesHealth.js +76 -0
  665. package/esm/compute/orm/models/platformWebhookEndpoint.d.ts +54 -0
  666. package/esm/compute/orm/models/platformWebhookEndpoint.js +100 -0
  667. package/esm/compute/orm/models/platformWebhookEvent.d.ts +54 -0
  668. package/esm/compute/orm/models/platformWebhookEvent.js +100 -0
  669. package/esm/compute/orm/models/resourceInstallation.d.ts +54 -0
  670. package/esm/compute/orm/models/resourceInstallation.js +100 -0
  671. package/esm/compute/orm/models/resourceUsageLog.d.ts +56 -0
  672. package/esm/compute/orm/models/resourceUsageLog.js +103 -0
  673. package/esm/compute/orm/models/resourceUsageSummary.d.ts +56 -0
  674. package/esm/compute/orm/models/resourceUsageSummary.js +103 -0
  675. package/esm/compute/orm/models/resourceUtilizationDaily.d.ts +30 -0
  676. package/esm/compute/orm/models/resourceUtilizationDaily.js +55 -0
  677. package/esm/compute/orm/models/resourcesHealth.d.ts +36 -0
  678. package/esm/{api/orm/models/migrateFile.js → compute/orm/models/resourcesHealth.js} +18 -18
  679. package/esm/compute/orm/models/webhookEndpoint.d.ts +54 -0
  680. package/esm/compute/orm/models/webhookEndpoint.js +100 -0
  681. package/esm/compute/orm/models/webhookEvent.d.ts +54 -0
  682. package/esm/{infra/orm/models/infraStore.js → compute/orm/models/webhookEvent.js} +25 -25
  683. package/esm/compute/orm/mutation/index.d.ts +89 -1
  684. package/esm/compute/orm/mutation/index.js +132 -0
  685. package/esm/compute/schema-types.d.ts +2775 -237
  686. package/esm/compute/types.d.ts +364 -20
  687. package/esm/config/orm/input-types.d.ts +4 -79
  688. package/esm/config/schema-types.d.ts +0 -72
  689. package/esm/infra/hooks/index.d.ts +1 -1
  690. package/esm/infra/hooks/index.js +1 -1
  691. package/esm/infra/hooks/invalidation.d.ts +30 -30
  692. package/esm/infra/hooks/invalidation.js +64 -64
  693. package/esm/infra/hooks/mutation-keys.d.ts +66 -66
  694. package/esm/infra/hooks/mutation-keys.js +47 -44
  695. package/esm/infra/hooks/mutations/index.d.ts +16 -16
  696. package/esm/infra/hooks/mutations/index.js +16 -16
  697. package/esm/infra/hooks/mutations/useCreatePlatformInfraCommitMutation.d.ts +34 -0
  698. package/esm/infra/hooks/mutations/useCreatePlatformInfraCommitMutation.js +31 -0
  699. package/esm/infra/hooks/mutations/useCreatePlatformInfraGetAllTreeNodesRecordMutation.d.ts +34 -0
  700. package/esm/infra/hooks/mutations/useCreatePlatformInfraGetAllTreeNodesRecordMutation.js +31 -0
  701. package/esm/infra/hooks/mutations/useCreatePlatformInfraObjectMutation.d.ts +34 -0
  702. package/esm/infra/hooks/mutations/useCreatePlatformInfraObjectMutation.js +31 -0
  703. package/esm/infra/hooks/mutations/useCreatePlatformInfraRefMutation.d.ts +34 -0
  704. package/esm/infra/hooks/mutations/useCreatePlatformInfraRefMutation.js +31 -0
  705. package/esm/infra/hooks/mutations/useCreatePlatformInfraStoreMutation.d.ts +34 -0
  706. package/esm/infra/hooks/mutations/useCreatePlatformInfraStoreMutation.js +31 -0
  707. package/esm/infra/hooks/mutations/useDeletePlatformInfraCommitMutation.d.ts +40 -0
  708. package/esm/infra/hooks/mutations/{useUpdateInfraCommitMutation.js → useDeletePlatformInfraCommitMutation.js} +9 -10
  709. package/esm/infra/hooks/mutations/useDeletePlatformInfraObjectMutation.d.ts +40 -0
  710. package/esm/infra/hooks/mutations/{useUpdateInfraObjectMutation.js → useDeletePlatformInfraObjectMutation.js} +9 -10
  711. package/esm/infra/hooks/mutations/useDeletePlatformInfraRefMutation.d.ts +40 -0
  712. package/esm/infra/hooks/mutations/useDeletePlatformInfraRefMutation.js +37 -0
  713. package/esm/infra/hooks/mutations/useDeletePlatformInfraStoreMutation.d.ts +38 -0
  714. package/esm/infra/hooks/mutations/{useUpdateInfraStoreMutation.js → useDeletePlatformInfraStoreMutation.js} +9 -10
  715. package/esm/infra/hooks/mutations/usePlatformInfraInitEmptyRepoMutation.d.ts +20 -0
  716. package/esm/infra/hooks/mutations/{useInfraSetDataAtPathMutation.js → usePlatformInfraInitEmptyRepoMutation.js} +4 -4
  717. package/esm/infra/hooks/mutations/usePlatformInfraInsertNodeAtPathMutation.d.ts +20 -0
  718. package/esm/infra/hooks/mutations/usePlatformInfraInsertNodeAtPathMutation.js +23 -0
  719. package/esm/infra/hooks/mutations/usePlatformInfraSetDataAtPathMutation.d.ts +20 -0
  720. package/esm/infra/hooks/mutations/usePlatformInfraSetDataAtPathMutation.js +23 -0
  721. package/esm/infra/hooks/mutations/useUpdatePlatformInfraCommitMutation.d.ts +42 -0
  722. package/esm/infra/hooks/mutations/useUpdatePlatformInfraCommitMutation.js +38 -0
  723. package/esm/infra/hooks/mutations/useUpdatePlatformInfraObjectMutation.d.ts +42 -0
  724. package/esm/infra/hooks/mutations/useUpdatePlatformInfraObjectMutation.js +38 -0
  725. package/esm/infra/hooks/mutations/useUpdatePlatformInfraRefMutation.d.ts +42 -0
  726. package/esm/infra/hooks/mutations/useUpdatePlatformInfraRefMutation.js +38 -0
  727. package/esm/infra/hooks/mutations/useUpdatePlatformInfraStoreMutation.d.ts +40 -0
  728. package/esm/infra/hooks/mutations/useUpdatePlatformInfraStoreMutation.js +37 -0
  729. package/esm/infra/hooks/queries/index.d.ts +9 -9
  730. package/esm/infra/hooks/queries/index.js +9 -9
  731. package/esm/infra/hooks/queries/usePlatformInfraCommitQuery.d.ts +65 -0
  732. package/esm/infra/hooks/queries/usePlatformInfraCommitQuery.js +47 -0
  733. package/esm/infra/hooks/queries/usePlatformInfraCommitsQuery.d.ts +69 -0
  734. package/esm/infra/hooks/queries/usePlatformInfraCommitsQuery.js +32 -0
  735. package/esm/infra/hooks/queries/usePlatformInfraGetAllTreeNodesQuery.d.ts +69 -0
  736. package/esm/infra/hooks/queries/usePlatformInfraGetAllTreeNodesQuery.js +32 -0
  737. package/esm/infra/hooks/queries/usePlatformInfraObjectQuery.d.ts +65 -0
  738. package/esm/infra/hooks/queries/usePlatformInfraObjectQuery.js +47 -0
  739. package/esm/infra/hooks/queries/usePlatformInfraObjectsQuery.d.ts +69 -0
  740. package/esm/infra/hooks/queries/usePlatformInfraObjectsQuery.js +32 -0
  741. package/esm/infra/hooks/queries/usePlatformInfraRefQuery.d.ts +65 -0
  742. package/esm/infra/hooks/queries/usePlatformInfraRefQuery.js +47 -0
  743. package/esm/infra/hooks/queries/usePlatformInfraRefsQuery.d.ts +69 -0
  744. package/esm/infra/hooks/queries/usePlatformInfraRefsQuery.js +32 -0
  745. package/esm/infra/hooks/queries/usePlatformInfraStoreQuery.d.ts +65 -0
  746. package/esm/infra/hooks/queries/usePlatformInfraStoreQuery.js +47 -0
  747. package/esm/infra/hooks/queries/usePlatformInfraStoresQuery.d.ts +69 -0
  748. package/esm/infra/hooks/queries/usePlatformInfraStoresQuery.js +32 -0
  749. package/esm/infra/hooks/query-keys.d.ts +70 -70
  750. package/esm/infra/hooks/query-keys.js +42 -40
  751. package/esm/infra/orm/index.d.ts +19 -19
  752. package/esm/infra/orm/index.js +10 -10
  753. package/esm/infra/orm/input-types.d.ts +542 -668
  754. package/esm/infra/orm/models/index.d.ts +5 -5
  755. package/esm/infra/orm/models/index.js +5 -5
  756. package/esm/infra/orm/models/platformInfraCommit.d.ts +56 -0
  757. package/esm/infra/orm/models/platformInfraCommit.js +103 -0
  758. package/esm/infra/orm/models/platformInfraGetAllTreeNodesRecord.d.ts +30 -0
  759. package/esm/infra/orm/models/platformInfraGetAllTreeNodesRecord.js +55 -0
  760. package/esm/infra/orm/models/platformInfraObject.d.ts +56 -0
  761. package/esm/infra/orm/models/platformInfraObject.js +93 -0
  762. package/esm/infra/orm/models/platformInfraRef.d.ts +56 -0
  763. package/esm/infra/orm/models/platformInfraRef.js +103 -0
  764. package/esm/infra/orm/models/platformInfraStore.d.ts +54 -0
  765. package/esm/infra/orm/models/platformInfraStore.js +100 -0
  766. package/esm/infra/orm/mutation/index.d.ts +16 -16
  767. package/esm/infra/orm/mutation/index.js +18 -18
  768. package/esm/infra/schema-types.d.ts +389 -473
  769. package/esm/infra/types.d.ts +30 -44
  770. package/esm/modules/hooks/index.d.ts +1 -1
  771. package/esm/modules/hooks/index.js +1 -1
  772. package/esm/modules/hooks/invalidation.d.ts +12 -0
  773. package/esm/modules/hooks/invalidation.js +33 -1
  774. package/esm/modules/hooks/mutation-keys.d.ts +24 -0
  775. package/esm/modules/hooks/mutation-keys.js +14 -0
  776. package/esm/modules/hooks/mutations/index.d.ts +6 -0
  777. package/esm/modules/hooks/mutations/index.js +6 -0
  778. package/esm/modules/hooks/mutations/useCreateHttpRouteModuleMutation.d.ts +34 -0
  779. package/esm/{api/hooks/mutations/useCreateMigrateFileMutation.js → modules/hooks/mutations/useCreateHttpRouteModuleMutation.js} +7 -7
  780. package/esm/modules/hooks/mutations/useCreateWebhookModuleMutation.d.ts +34 -0
  781. package/esm/{objects/hooks/mutations/useCreateGetAllRecordMutation.js → modules/hooks/mutations/useCreateWebhookModuleMutation.js} +7 -7
  782. package/esm/modules/hooks/mutations/useDeleteHttpRouteModuleMutation.d.ts +38 -0
  783. package/esm/modules/hooks/mutations/useDeleteHttpRouteModuleMutation.js +36 -0
  784. package/esm/modules/hooks/mutations/useDeleteWebhookModuleMutation.d.ts +38 -0
  785. package/esm/modules/hooks/mutations/useDeleteWebhookModuleMutation.js +36 -0
  786. package/esm/modules/hooks/mutations/useUpdateHttpRouteModuleMutation.d.ts +40 -0
  787. package/esm/modules/hooks/mutations/useUpdateHttpRouteModuleMutation.js +37 -0
  788. package/esm/modules/hooks/mutations/useUpdateWebhookModuleMutation.d.ts +40 -0
  789. package/esm/modules/hooks/mutations/useUpdateWebhookModuleMutation.js +37 -0
  790. package/esm/modules/hooks/queries/index.d.ts +4 -0
  791. package/esm/modules/hooks/queries/index.js +4 -0
  792. package/esm/modules/hooks/queries/useHttpRouteModuleQuery.d.ts +65 -0
  793. package/esm/modules/hooks/queries/useHttpRouteModuleQuery.js +47 -0
  794. package/esm/modules/hooks/queries/useHttpRouteModulesQuery.d.ts +69 -0
  795. package/esm/{infra/hooks/queries/useInfraGetAllQuery.js → modules/hooks/queries/useHttpRouteModulesQuery.js} +11 -11
  796. package/esm/modules/hooks/queries/useWebhookModuleQuery.d.ts +65 -0
  797. package/esm/{api/hooks/queries/useMigrateFileQuery.js → modules/hooks/queries/useWebhookModuleQuery.js} +11 -11
  798. package/esm/modules/hooks/queries/useWebhookModulesQuery.d.ts +69 -0
  799. package/esm/{api/hooks/queries/useMigrateFilesQuery.js → modules/hooks/queries/useWebhookModulesQuery.js} +11 -11
  800. package/esm/modules/hooks/query-keys.d.ts +28 -0
  801. package/esm/modules/hooks/query-keys.js +16 -0
  802. package/esm/modules/orm/index.d.ts +4 -0
  803. package/esm/modules/orm/index.js +4 -0
  804. package/esm/modules/orm/input-types.d.ts +802 -166
  805. package/esm/modules/orm/models/httpRouteModule.d.ts +54 -0
  806. package/esm/modules/orm/models/httpRouteModule.js +100 -0
  807. package/esm/modules/orm/models/index.d.ts +2 -0
  808. package/esm/modules/orm/models/index.js +2 -0
  809. package/esm/modules/orm/models/webhookModule.d.ts +54 -0
  810. package/esm/modules/orm/models/webhookModule.js +100 -0
  811. package/esm/modules/schema-types.d.ts +483 -101
  812. package/esm/modules/types.d.ts +82 -22
  813. package/esm/objects/hooks/index.d.ts +1 -1
  814. package/esm/objects/hooks/index.js +1 -1
  815. package/esm/objects/hooks/invalidation.d.ts +5 -5
  816. package/esm/objects/hooks/invalidation.js +10 -10
  817. package/esm/objects/hooks/mutation-keys.d.ts +10 -10
  818. package/esm/objects/hooks/mutation-keys.js +9 -6
  819. package/esm/objects/hooks/mutations/index.d.ts +1 -1
  820. package/esm/objects/hooks/mutations/index.js +1 -1
  821. package/esm/objects/hooks/mutations/useCreateGetAllTreeNodesRecordMutation.d.ts +34 -0
  822. package/esm/objects/hooks/mutations/useCreateGetAllTreeNodesRecordMutation.js +31 -0
  823. package/esm/objects/hooks/queries/index.d.ts +1 -1
  824. package/esm/objects/hooks/queries/index.js +1 -1
  825. package/esm/objects/hooks/queries/useGetAllTreeNodesQuery.d.ts +69 -0
  826. package/esm/objects/hooks/queries/useGetAllTreeNodesQuery.js +32 -0
  827. package/esm/objects/hooks/query-keys.d.ts +12 -12
  828. package/esm/objects/hooks/query-keys.js +7 -7
  829. package/esm/objects/orm/index.d.ts +2 -2
  830. package/esm/objects/orm/index.js +2 -2
  831. package/esm/objects/orm/input-types.d.ts +15 -15
  832. package/esm/objects/orm/models/getAllTreeNodesRecord.d.ts +30 -0
  833. package/esm/objects/orm/models/{getAllRecord.js → getAllTreeNodesRecord.js} +13 -13
  834. package/esm/objects/orm/models/index.d.ts +1 -1
  835. package/esm/objects/orm/models/index.js +1 -1
  836. package/esm/objects/schema-types.d.ts +9 -9
  837. package/esm/objects/types.d.ts +1 -1
  838. package/infra/hooks/index.d.ts +1 -1
  839. package/infra/hooks/index.js +1 -1
  840. package/infra/hooks/invalidation.d.ts +30 -30
  841. package/infra/hooks/invalidation.js +63 -63
  842. package/infra/hooks/mutation-keys.d.ts +66 -66
  843. package/infra/hooks/mutation-keys.js +48 -45
  844. package/infra/hooks/mutations/index.d.ts +16 -16
  845. package/infra/hooks/mutations/index.js +16 -16
  846. package/infra/hooks/mutations/useCreatePlatformInfraCommitMutation.d.ts +34 -0
  847. package/infra/hooks/mutations/useCreatePlatformInfraCommitMutation.js +34 -0
  848. package/infra/hooks/mutations/useCreatePlatformInfraGetAllTreeNodesRecordMutation.d.ts +34 -0
  849. package/infra/hooks/mutations/useCreatePlatformInfraGetAllTreeNodesRecordMutation.js +34 -0
  850. package/infra/hooks/mutations/useCreatePlatformInfraObjectMutation.d.ts +34 -0
  851. package/infra/hooks/mutations/useCreatePlatformInfraObjectMutation.js +34 -0
  852. package/infra/hooks/mutations/useCreatePlatformInfraRefMutation.d.ts +34 -0
  853. package/{compute/hooks/mutations/useCreateInfraGetAllRecordMutation.js → infra/hooks/mutations/useCreatePlatformInfraRefMutation.js} +6 -6
  854. package/infra/hooks/mutations/useCreatePlatformInfraStoreMutation.d.ts +34 -0
  855. package/infra/hooks/mutations/useCreatePlatformInfraStoreMutation.js +34 -0
  856. package/infra/hooks/mutations/useDeletePlatformInfraCommitMutation.d.ts +40 -0
  857. package/infra/hooks/mutations/{useUpdateInfraCommitMutation.js → useDeletePlatformInfraCommitMutation.js} +8 -9
  858. package/infra/hooks/mutations/useDeletePlatformInfraObjectMutation.d.ts +40 -0
  859. package/infra/hooks/mutations/{useUpdateInfraObjectMutation.js → useDeletePlatformInfraObjectMutation.js} +8 -9
  860. package/infra/hooks/mutations/useDeletePlatformInfraRefMutation.d.ts +40 -0
  861. package/infra/hooks/mutations/{useUpdateInfraRefMutation.js → useDeletePlatformInfraRefMutation.js} +8 -9
  862. package/infra/hooks/mutations/useDeletePlatformInfraStoreMutation.d.ts +38 -0
  863. package/infra/hooks/mutations/{useUpdateInfraStoreMutation.js → useDeletePlatformInfraStoreMutation.js} +8 -9
  864. package/infra/hooks/mutations/usePlatformInfraInitEmptyRepoMutation.d.ts +20 -0
  865. package/infra/hooks/mutations/{useInfraInitEmptyRepoMutation.js → usePlatformInfraInitEmptyRepoMutation.js} +5 -5
  866. package/infra/hooks/mutations/usePlatformInfraInsertNodeAtPathMutation.d.ts +20 -0
  867. package/infra/hooks/mutations/usePlatformInfraInsertNodeAtPathMutation.js +26 -0
  868. package/infra/hooks/mutations/usePlatformInfraSetDataAtPathMutation.d.ts +20 -0
  869. package/infra/hooks/mutations/usePlatformInfraSetDataAtPathMutation.js +26 -0
  870. package/infra/hooks/mutations/useUpdatePlatformInfraCommitMutation.d.ts +42 -0
  871. package/infra/hooks/mutations/useUpdatePlatformInfraCommitMutation.js +41 -0
  872. package/infra/hooks/mutations/useUpdatePlatformInfraObjectMutation.d.ts +42 -0
  873. package/infra/hooks/mutations/useUpdatePlatformInfraObjectMutation.js +41 -0
  874. package/infra/hooks/mutations/useUpdatePlatformInfraRefMutation.d.ts +42 -0
  875. package/infra/hooks/mutations/useUpdatePlatformInfraRefMutation.js +41 -0
  876. package/infra/hooks/mutations/useUpdatePlatformInfraStoreMutation.d.ts +40 -0
  877. package/infra/hooks/mutations/useUpdatePlatformInfraStoreMutation.js +40 -0
  878. package/infra/hooks/queries/index.d.ts +9 -9
  879. package/infra/hooks/queries/index.js +9 -9
  880. package/infra/hooks/queries/usePlatformInfraCommitQuery.d.ts +65 -0
  881. package/infra/hooks/queries/usePlatformInfraCommitQuery.js +53 -0
  882. package/infra/hooks/queries/usePlatformInfraCommitsQuery.d.ts +69 -0
  883. package/infra/hooks/queries/usePlatformInfraCommitsQuery.js +38 -0
  884. package/infra/hooks/queries/usePlatformInfraGetAllTreeNodesQuery.d.ts +69 -0
  885. package/infra/hooks/queries/usePlatformInfraGetAllTreeNodesQuery.js +38 -0
  886. package/infra/hooks/queries/usePlatformInfraObjectQuery.d.ts +65 -0
  887. package/infra/hooks/queries/usePlatformInfraObjectQuery.js +53 -0
  888. package/infra/hooks/queries/usePlatformInfraObjectsQuery.d.ts +69 -0
  889. package/infra/hooks/queries/usePlatformInfraObjectsQuery.js +38 -0
  890. package/infra/hooks/queries/usePlatformInfraRefQuery.d.ts +65 -0
  891. package/infra/hooks/queries/usePlatformInfraRefQuery.js +53 -0
  892. package/infra/hooks/queries/usePlatformInfraRefsQuery.d.ts +69 -0
  893. package/infra/hooks/queries/usePlatformInfraRefsQuery.js +38 -0
  894. package/infra/hooks/queries/usePlatformInfraStoreQuery.d.ts +65 -0
  895. package/infra/hooks/queries/usePlatformInfraStoreQuery.js +53 -0
  896. package/infra/hooks/queries/usePlatformInfraStoresQuery.d.ts +69 -0
  897. package/infra/hooks/queries/usePlatformInfraStoresQuery.js +38 -0
  898. package/infra/hooks/query-keys.d.ts +70 -70
  899. package/infra/hooks/query-keys.js +43 -41
  900. package/infra/orm/index.d.ts +19 -19
  901. package/infra/orm/index.js +10 -10
  902. package/infra/orm/input-types.d.ts +542 -668
  903. package/infra/orm/models/index.d.ts +5 -5
  904. package/infra/orm/models/index.js +11 -11
  905. package/infra/orm/models/platformInfraCommit.d.ts +56 -0
  906. package/infra/orm/models/platformInfraCommit.js +107 -0
  907. package/infra/orm/models/platformInfraGetAllTreeNodesRecord.d.ts +30 -0
  908. package/infra/orm/models/platformInfraGetAllTreeNodesRecord.js +59 -0
  909. package/infra/orm/models/platformInfraObject.d.ts +56 -0
  910. package/infra/orm/models/platformInfraObject.js +97 -0
  911. package/infra/orm/models/platformInfraRef.d.ts +56 -0
  912. package/infra/orm/models/platformInfraRef.js +107 -0
  913. package/infra/orm/models/platformInfraStore.d.ts +54 -0
  914. package/infra/orm/models/platformInfraStore.js +104 -0
  915. package/infra/orm/mutation/index.d.ts +16 -16
  916. package/infra/orm/mutation/index.js +18 -18
  917. package/infra/schema-types.d.ts +389 -473
  918. package/infra/types.d.ts +30 -44
  919. package/modules/hooks/index.d.ts +1 -1
  920. package/modules/hooks/index.js +1 -1
  921. package/modules/hooks/invalidation.d.ts +12 -0
  922. package/modules/hooks/invalidation.js +32 -0
  923. package/modules/hooks/mutation-keys.d.ts +24 -0
  924. package/modules/hooks/mutation-keys.js +16 -2
  925. package/modules/hooks/mutations/index.d.ts +6 -0
  926. package/modules/hooks/mutations/index.js +6 -0
  927. package/modules/hooks/mutations/useCreateHttpRouteModuleMutation.d.ts +34 -0
  928. package/modules/hooks/mutations/useCreateHttpRouteModuleMutation.js +34 -0
  929. package/modules/hooks/mutations/useCreateWebhookModuleMutation.d.ts +34 -0
  930. package/{compute/hooks/mutations/useCreateGetAllRecordMutation.js → modules/hooks/mutations/useCreateWebhookModuleMutation.js} +6 -6
  931. package/modules/hooks/mutations/useDeleteHttpRouteModuleMutation.d.ts +38 -0
  932. package/modules/hooks/mutations/useDeleteHttpRouteModuleMutation.js +39 -0
  933. package/modules/hooks/mutations/useDeleteWebhookModuleMutation.d.ts +38 -0
  934. package/modules/hooks/mutations/useDeleteWebhookModuleMutation.js +39 -0
  935. package/modules/hooks/mutations/useUpdateHttpRouteModuleMutation.d.ts +40 -0
  936. package/modules/hooks/mutations/useUpdateHttpRouteModuleMutation.js +40 -0
  937. package/modules/hooks/mutations/useUpdateWebhookModuleMutation.d.ts +40 -0
  938. package/modules/hooks/mutations/useUpdateWebhookModuleMutation.js +40 -0
  939. package/modules/hooks/queries/index.d.ts +4 -0
  940. package/modules/hooks/queries/index.js +4 -0
  941. package/modules/hooks/queries/useHttpRouteModuleQuery.d.ts +65 -0
  942. package/modules/hooks/queries/useHttpRouteModuleQuery.js +53 -0
  943. package/modules/hooks/queries/useHttpRouteModulesQuery.d.ts +69 -0
  944. package/modules/hooks/queries/useHttpRouteModulesQuery.js +38 -0
  945. package/modules/hooks/queries/useWebhookModuleQuery.d.ts +65 -0
  946. package/{infra/hooks/queries/useInfraCommitQuery.js → modules/hooks/queries/useWebhookModuleQuery.js} +14 -14
  947. package/modules/hooks/queries/useWebhookModulesQuery.d.ts +69 -0
  948. package/{api/hooks/queries/useMigrateFilesQuery.js → modules/hooks/queries/useWebhookModulesQuery.js} +14 -14
  949. package/modules/hooks/query-keys.d.ts +28 -0
  950. package/modules/hooks/query-keys.js +18 -2
  951. package/modules/orm/index.d.ts +4 -0
  952. package/modules/orm/index.js +4 -0
  953. package/modules/orm/input-types.d.ts +802 -166
  954. package/modules/orm/models/httpRouteModule.d.ts +54 -0
  955. package/modules/orm/models/httpRouteModule.js +104 -0
  956. package/modules/orm/models/index.d.ts +2 -0
  957. package/modules/orm/models/index.js +6 -2
  958. package/modules/orm/models/webhookModule.d.ts +54 -0
  959. package/modules/orm/models/webhookModule.js +104 -0
  960. package/modules/schema-types.d.ts +483 -101
  961. package/modules/types.d.ts +82 -22
  962. package/objects/hooks/index.d.ts +1 -1
  963. package/objects/hooks/index.js +1 -1
  964. package/objects/hooks/invalidation.d.ts +5 -5
  965. package/objects/hooks/invalidation.js +9 -9
  966. package/objects/hooks/mutation-keys.d.ts +10 -10
  967. package/objects/hooks/mutation-keys.js +10 -7
  968. package/objects/hooks/mutations/index.d.ts +1 -1
  969. package/objects/hooks/mutations/index.js +1 -1
  970. package/objects/hooks/mutations/useCreateGetAllTreeNodesRecordMutation.d.ts +34 -0
  971. package/objects/hooks/mutations/useCreateGetAllTreeNodesRecordMutation.js +34 -0
  972. package/objects/hooks/queries/index.d.ts +1 -1
  973. package/objects/hooks/queries/index.js +1 -1
  974. package/objects/hooks/queries/useGetAllTreeNodesQuery.d.ts +69 -0
  975. package/objects/hooks/queries/useGetAllTreeNodesQuery.js +38 -0
  976. package/objects/hooks/query-keys.d.ts +12 -12
  977. package/objects/hooks/query-keys.js +8 -8
  978. package/objects/orm/index.d.ts +2 -2
  979. package/objects/orm/index.js +2 -2
  980. package/objects/orm/input-types.d.ts +15 -15
  981. package/objects/orm/models/getAllTreeNodesRecord.d.ts +30 -0
  982. package/{infra/orm/models/infraGetAllRecord.js → objects/orm/models/getAllTreeNodesRecord.js} +15 -15
  983. package/objects/orm/models/index.d.ts +1 -1
  984. package/objects/orm/models/index.js +3 -3
  985. package/objects/schema-types.d.ts +9 -9
  986. package/objects/types.d.ts +1 -1
  987. package/package.json +2 -2
  988. package/api/hooks/mutations/useCreateMigrateFileMutation.d.ts +0 -34
  989. package/api/hooks/queries/useMigrateFileQuery.d.ts +0 -65
  990. package/api/hooks/queries/useMigrateFilesQuery.d.ts +0 -69
  991. package/api/orm/models/migrateFile.d.ts +0 -36
  992. package/compute/hooks/mutations/useCreateGetAllRecordMutation.d.ts +0 -34
  993. package/compute/hooks/mutations/useCreateInfraGetAllRecordMutation.d.ts +0 -34
  994. package/compute/hooks/queries/useGetAllQuery.d.ts +0 -69
  995. package/compute/hooks/queries/useGetAllQuery.js +0 -38
  996. package/compute/hooks/queries/useInfraGetAllQuery.d.ts +0 -69
  997. package/compute/hooks/queries/useInfraGetAllQuery.js +0 -38
  998. package/compute/orm/models/getAllRecord.d.ts +0 -30
  999. package/compute/orm/models/infraGetAllRecord.d.ts +0 -30
  1000. package/esm/api/hooks/mutations/useCreateMigrateFileMutation.d.ts +0 -34
  1001. package/esm/api/hooks/queries/useMigrateFileQuery.d.ts +0 -65
  1002. package/esm/api/hooks/queries/useMigrateFilesQuery.d.ts +0 -69
  1003. package/esm/api/orm/models/migrateFile.d.ts +0 -36
  1004. package/esm/compute/hooks/mutations/useCreateGetAllRecordMutation.d.ts +0 -34
  1005. package/esm/compute/hooks/mutations/useCreateInfraGetAllRecordMutation.d.ts +0 -34
  1006. package/esm/compute/hooks/queries/useGetAllQuery.d.ts +0 -69
  1007. package/esm/compute/hooks/queries/useInfraGetAllQuery.d.ts +0 -69
  1008. package/esm/compute/orm/models/getAllRecord.d.ts +0 -30
  1009. package/esm/compute/orm/models/infraGetAllRecord.d.ts +0 -30
  1010. package/esm/infra/hooks/mutations/useCreateInfraCommitMutation.d.ts +0 -34
  1011. package/esm/infra/hooks/mutations/useCreateInfraGetAllRecordMutation.d.ts +0 -34
  1012. package/esm/infra/hooks/mutations/useCreateInfraObjectMutation.d.ts +0 -34
  1013. package/esm/infra/hooks/mutations/useCreateInfraRefMutation.d.ts +0 -34
  1014. package/esm/infra/hooks/mutations/useCreateInfraStoreMutation.d.ts +0 -34
  1015. package/esm/infra/hooks/mutations/useDeleteInfraCommitMutation.d.ts +0 -40
  1016. package/esm/infra/hooks/mutations/useInfraInitEmptyRepoMutation.d.ts +0 -20
  1017. package/esm/infra/hooks/mutations/useInfraInsertNodeAtPathMutation.d.ts +0 -20
  1018. package/esm/infra/hooks/mutations/useInfraSetDataAtPathMutation.d.ts +0 -20
  1019. package/esm/infra/hooks/mutations/useUpdateInfraCommitMutation.d.ts +0 -42
  1020. package/esm/infra/hooks/mutations/useUpdateInfraObjectMutation.d.ts +0 -42
  1021. package/esm/infra/hooks/mutations/useUpdateInfraRefMutation.d.ts +0 -42
  1022. package/esm/infra/hooks/mutations/useUpdateInfraStoreMutation.d.ts +0 -40
  1023. package/esm/infra/hooks/queries/useInfraCommitQuery.d.ts +0 -65
  1024. package/esm/infra/hooks/queries/useInfraCommitsQuery.d.ts +0 -69
  1025. package/esm/infra/hooks/queries/useInfraGetAllQuery.d.ts +0 -69
  1026. package/esm/infra/hooks/queries/useInfraObjectQuery.d.ts +0 -65
  1027. package/esm/infra/hooks/queries/useInfraObjectsQuery.d.ts +0 -69
  1028. package/esm/infra/hooks/queries/useInfraRefQuery.d.ts +0 -65
  1029. package/esm/infra/hooks/queries/useInfraRefsQuery.d.ts +0 -69
  1030. package/esm/infra/hooks/queries/useInfraStoreQuery.d.ts +0 -65
  1031. package/esm/infra/hooks/queries/useInfraStoresQuery.d.ts +0 -69
  1032. package/esm/infra/orm/models/infraCommit.d.ts +0 -56
  1033. package/esm/infra/orm/models/infraGetAllRecord.d.ts +0 -30
  1034. package/esm/infra/orm/models/infraObject.d.ts +0 -56
  1035. package/esm/infra/orm/models/infraRef.d.ts +0 -56
  1036. package/esm/infra/orm/models/infraStore.d.ts +0 -54
  1037. package/esm/objects/hooks/mutations/useCreateGetAllRecordMutation.d.ts +0 -34
  1038. package/esm/objects/hooks/queries/useGetAllQuery.d.ts +0 -69
  1039. package/esm/objects/orm/models/getAllRecord.d.ts +0 -30
  1040. package/infra/hooks/mutations/useCreateInfraCommitMutation.d.ts +0 -34
  1041. package/infra/hooks/mutations/useCreateInfraGetAllRecordMutation.d.ts +0 -34
  1042. package/infra/hooks/mutations/useCreateInfraGetAllRecordMutation.js +0 -34
  1043. package/infra/hooks/mutations/useCreateInfraObjectMutation.d.ts +0 -34
  1044. package/infra/hooks/mutations/useCreateInfraRefMutation.d.ts +0 -34
  1045. package/infra/hooks/mutations/useCreateInfraStoreMutation.d.ts +0 -34
  1046. package/infra/hooks/mutations/useDeleteInfraCommitMutation.d.ts +0 -40
  1047. package/infra/hooks/mutations/useInfraInitEmptyRepoMutation.d.ts +0 -20
  1048. package/infra/hooks/mutations/useInfraInsertNodeAtPathMutation.d.ts +0 -20
  1049. package/infra/hooks/mutations/useInfraSetDataAtPathMutation.d.ts +0 -20
  1050. package/infra/hooks/mutations/useUpdateInfraCommitMutation.d.ts +0 -42
  1051. package/infra/hooks/mutations/useUpdateInfraObjectMutation.d.ts +0 -42
  1052. package/infra/hooks/mutations/useUpdateInfraRefMutation.d.ts +0 -42
  1053. package/infra/hooks/mutations/useUpdateInfraStoreMutation.d.ts +0 -40
  1054. package/infra/hooks/queries/useInfraCommitQuery.d.ts +0 -65
  1055. package/infra/hooks/queries/useInfraCommitsQuery.d.ts +0 -69
  1056. package/infra/hooks/queries/useInfraGetAllQuery.d.ts +0 -69
  1057. package/infra/hooks/queries/useInfraGetAllQuery.js +0 -38
  1058. package/infra/hooks/queries/useInfraObjectQuery.d.ts +0 -65
  1059. package/infra/hooks/queries/useInfraObjectsQuery.d.ts +0 -69
  1060. package/infra/hooks/queries/useInfraRefQuery.d.ts +0 -65
  1061. package/infra/hooks/queries/useInfraRefsQuery.d.ts +0 -69
  1062. package/infra/hooks/queries/useInfraStoreQuery.d.ts +0 -65
  1063. package/infra/hooks/queries/useInfraStoresQuery.d.ts +0 -69
  1064. package/infra/orm/models/infraCommit.d.ts +0 -56
  1065. package/infra/orm/models/infraGetAllRecord.d.ts +0 -30
  1066. package/infra/orm/models/infraObject.d.ts +0 -56
  1067. package/infra/orm/models/infraRef.d.ts +0 -56
  1068. package/infra/orm/models/infraStore.d.ts +0 -54
  1069. package/objects/hooks/mutations/useCreateGetAllRecordMutation.d.ts +0 -34
  1070. package/objects/hooks/queries/useGetAllQuery.d.ts +0 -69
  1071. package/objects/hooks/queries/useGetAllQuery.js +0 -38
  1072. package/objects/orm/models/getAllRecord.d.ts +0 -30
@@ -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, ConfigSecretsUserModule, ConnectedAccountsModule, CryptoAddressesModule, CryptoAuthModule, DatabaseProvisionModule, DbPool, DbPoolConfig, DbPresetModule, DbUsageModule, DefaultIdsModule, DenormalizedTableField, DevicesModule, EmailsModule, EntityTypeProvision, EventsModule, FunctionDeploymentModule, FunctionInvocationModule, FunctionModule, GraphExecutionModule, GraphModule, HierarchyModule, I18NModule, IdentityProvidersModule, InferenceLogModule, InfraConfigModule, InfraSecretsModule, IntegrationProvidersModule, InternalSecretsModule, 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';
6
+ import type { AgentModule, BillingModule, BillingProviderModule, Blueprint, BlueprintConstruction, BlueprintTemplate, ComputeLogModule, ConfigSecretsUserModule, ConnectedAccountsModule, CryptoAddressesModule, CryptoAuthModule, DatabaseProvisionModule, DbPool, DbPoolConfig, DbPresetModule, DbUsageModule, DefaultIdsModule, DenormalizedTableField, DevicesModule, EmailsModule, EntityTypeProvision, EventsModule, FunctionDeploymentModule, FunctionInvocationModule, FunctionModule, GraphExecutionModule, GraphModule, HierarchyModule, HttpRouteModule, I18NModule, IdentityProvidersModule, InferenceLogModule, InfraConfigModule, InfraSecretsModule, IntegrationProvidersModule, InternalSecretsModule, 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, WebhookModule, BigIntFilter, BooleanFilter, DatetimeFilter, IntFilter, JSONFilter, StringFilter, StringListFilter, UUIDFilter, UUIDListFilter } from './types';
7
7
  /** Methods to use when ordering `AgentModule`. */
8
8
  export type AgentModuleOrderBy = 'AGENT_TABLE_ID_ASC' | 'AGENT_TABLE_ID_DESC' | 'AGENT_TABLE_NAME_ASC' | 'AGENT_TABLE_NAME_DESC' | 'API_NAME_ASC' | 'API_NAME_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DEFAULT_PERMISSIONS_ASC' | 'DEFAULT_PERMISSIONS_DESC' | 'ENTITY_FIELD_ASC' | 'ENTITY_FIELD_DESC' | 'ENTITY_TABLE_ID_ASC' | 'ENTITY_TABLE_ID_DESC' | 'HAS_AGENTS_ASC' | 'HAS_AGENTS_DESC' | 'HAS_PLANS_ASC' | 'HAS_PLANS_DESC' | 'HAS_RESOURCES_ASC' | 'HAS_RESOURCES_DESC' | 'ID_ASC' | 'ID_DESC' | 'MESSAGE_TABLE_ID_ASC' | 'MESSAGE_TABLE_ID_DESC' | 'MESSAGE_TABLE_NAME_ASC' | 'MESSAGE_TABLE_NAME_DESC' | 'NATURAL' | 'PERSONA_TABLE_ID_ASC' | 'PERSONA_TABLE_ID_DESC' | 'PERSONA_TABLE_NAME_ASC' | 'PERSONA_TABLE_NAME_DESC' | 'PLAN_TABLE_ID_ASC' | 'PLAN_TABLE_ID_DESC' | 'PLAN_TABLE_NAME_ASC' | 'PLAN_TABLE_NAME_DESC' | 'POLICIES_ASC' | 'POLICIES_DESC' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'PROMPTS_TABLE_ID_ASC' | 'PROMPTS_TABLE_ID_DESC' | 'PROMPTS_TABLE_NAME_ASC' | 'PROMPTS_TABLE_NAME_DESC' | 'PROVISIONS_ASC' | 'PROVISIONS_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'RESOURCES_ASC' | 'RESOURCES_DESC' | 'RESOURCE_TABLE_ID_ASC' | 'RESOURCE_TABLE_ID_DESC' | 'RESOURCE_TABLE_NAME_ASC' | 'RESOURCE_TABLE_NAME_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC' | 'SHARED_ASC' | 'SHARED_DESC' | 'TASK_TABLE_ID_ASC' | 'TASK_TABLE_ID_DESC' | 'TASK_TABLE_NAME_ASC' | 'TASK_TABLE_NAME_DESC' | 'THREAD_TABLE_ID_ASC' | 'THREAD_TABLE_ID_DESC' | 'THREAD_TABLE_NAME_ASC' | 'THREAD_TABLE_NAME_DESC';
9
9
  /** Methods to use when ordering `BillingModule`. */
@@ -17,7 +17,7 @@ export type BlueprintOrderBy = 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DATABASE_
17
17
  /** Methods to use when ordering `BlueprintTemplate`. */
18
18
  export type BlueprintTemplateOrderBy = 'CATEGORIES_ASC' | 'CATEGORIES_DESC' | 'COMPLEXITY_ASC' | 'COMPLEXITY_DESC' | 'COPY_COUNT_ASC' | 'COPY_COUNT_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DEFINITION_ASC' | 'DEFINITION_DESC' | 'DEFINITION_HASH_ASC' | 'DEFINITION_HASH_DESC' | 'DEFINITION_SCHEMA_VERSION_ASC' | 'DEFINITION_SCHEMA_VERSION_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'DISPLAY_NAME_ASC' | 'DISPLAY_NAME_DESC' | 'FORKED_FROM_ID_ASC' | 'FORKED_FROM_ID_DESC' | 'FORK_COUNT_ASC' | 'FORK_COUNT_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'OWNER_ID_ASC' | 'OWNER_ID_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'SOURCE_ASC' | 'SOURCE_DESC' | 'TABLE_HASHES_ASC' | 'TABLE_HASHES_DESC' | 'TAGS_ASC' | 'TAGS_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'VERSION_ASC' | 'VERSION_DESC' | 'VISIBILITY_ASC' | 'VISIBILITY_DESC';
19
19
  /** Methods to use when ordering `ComputeLogModule`. */
20
- export type ComputeLogModuleOrderBy = 'ACTOR_FK_TABLE_ID_ASC' | 'ACTOR_FK_TABLE_ID_DESC' | 'API_NAME_ASC' | 'API_NAME_DESC' | 'COMPUTE_LOG_TABLE_ID_ASC' | 'COMPUTE_LOG_TABLE_ID_DESC' | 'COMPUTE_LOG_TABLE_NAME_ASC' | 'COMPUTE_LOG_TABLE_NAME_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ENTITY_FIELD_ASC' | 'ENTITY_FIELD_DESC' | 'ENTITY_FK_TABLE_ID_ASC' | 'ENTITY_FK_TABLE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'INTERVAL_ASC' | 'INTERVAL_DESC' | 'NATURAL' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'PREMAKE_ASC' | 'PREMAKE_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'RETENTION_ASC' | 'RETENTION_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC' | 'USAGE_DAILY_TABLE_ID_ASC' | 'USAGE_DAILY_TABLE_ID_DESC' | 'USAGE_DAILY_TABLE_NAME_ASC' | 'USAGE_DAILY_TABLE_NAME_DESC';
20
+ export type ComputeLogModuleOrderBy = 'ACTOR_FK_TABLE_ID_ASC' | 'ACTOR_FK_TABLE_ID_DESC' | 'API_NAME_ASC' | 'API_NAME_DESC' | 'COMPUTE_LOG_TABLE_ID_ASC' | 'COMPUTE_LOG_TABLE_ID_DESC' | 'COMPUTE_LOG_TABLE_NAME_ASC' | 'COMPUTE_LOG_TABLE_NAME_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ENTITY_FIELD_ASC' | 'ENTITY_FIELD_DESC' | 'ENTITY_FK_TABLE_ID_ASC' | 'ENTITY_FK_TABLE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'INTERVAL_ASC' | 'INTERVAL_DESC' | 'NATURAL' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'PREMAKE_ASC' | 'PREMAKE_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'RETENTION_ASC' | 'RETENTION_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC' | 'USAGE_SUMMARY_TABLE_ID_ASC' | 'USAGE_SUMMARY_TABLE_ID_DESC' | 'USAGE_SUMMARY_TABLE_NAME_ASC' | 'USAGE_SUMMARY_TABLE_NAME_DESC';
21
21
  /** Methods to use when ordering `ConfigSecretsUserModule`. */
22
22
  export type ConfigSecretsUserModuleOrderBy = 'API_NAME_ASC' | 'API_NAME_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ENTITY_FIELD_ASC' | 'ENTITY_FIELD_DESC' | 'ID_ASC' | 'ID_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'TABLE_NAME_ASC' | 'TABLE_NAME_DESC';
23
23
  /** Methods to use when ordering `ConnectedAccountsModule`. */
@@ -35,13 +35,13 @@ export type DbPoolOrderBy = 'BOOTSTRAP_ERROR_ASC' | 'BOOTSTRAP_ERROR_DESC' | 'BO
35
35
  /** Methods to use when ordering `DbPresetModule`. */
36
36
  export type DbPresetModuleOrderBy = 'API_NAME_ASC' | 'API_NAME_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DB_PRESETS_TABLE_ID_ASC' | 'DB_PRESETS_TABLE_ID_DESC' | 'ENTITY_TABLE_ID_ASC' | 'ENTITY_TABLE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'MERKLE_STORE_MODULE_ID_ASC' | 'MERKLE_STORE_MODULE_ID_DESC' | 'NATURAL' | 'POLICIES_ASC' | 'POLICIES_DESC' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'PROVISIONS_ASC' | 'PROVISIONS_DESC' | 'PUBLIC_SCHEMA_ID_ASC' | 'PUBLIC_SCHEMA_ID_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC' | 'STORE_NAME_ASC' | 'STORE_NAME_DESC';
37
37
  /** Methods to use when ordering `DbUsageModule`. */
38
- export type DbUsageModuleOrderBy = 'API_NAME_ASC' | 'API_NAME_DESC' | 'COLLECT_DB_QUERY_STATS_FUNCTION_ASC' | 'COLLECT_DB_QUERY_STATS_FUNCTION_DESC' | 'COLLECT_DB_TABLE_STATS_FUNCTION_ASC' | 'COLLECT_DB_TABLE_STATS_FUNCTION_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DEFAULT_PERMISSIONS_ASC' | 'DEFAULT_PERMISSIONS_DESC' | 'ENTITY_FIELD_ASC' | 'ENTITY_FIELD_DESC' | 'ID_ASC' | 'ID_DESC' | 'INTERVAL_ASC' | 'INTERVAL_DESC' | 'NATURAL' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'PREMAKE_ASC' | 'PREMAKE_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'QUERY_STATS_DAILY_TABLE_ID_ASC' | 'QUERY_STATS_DAILY_TABLE_ID_DESC' | 'QUERY_STATS_DAILY_TABLE_NAME_ASC' | 'QUERY_STATS_DAILY_TABLE_NAME_DESC' | 'QUERY_STATS_LOG_TABLE_ID_ASC' | 'QUERY_STATS_LOG_TABLE_ID_DESC' | 'QUERY_STATS_LOG_TABLE_NAME_ASC' | 'QUERY_STATS_LOG_TABLE_NAME_DESC' | 'RETENTION_ASC' | 'RETENTION_DESC' | 'ROLLUP_DB_QUERY_STATS_DAILY_FUNCTION_ASC' | 'ROLLUP_DB_QUERY_STATS_DAILY_FUNCTION_DESC' | 'ROLLUP_DB_TABLE_STATS_DAILY_FUNCTION_ASC' | 'ROLLUP_DB_TABLE_STATS_DAILY_FUNCTION_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC' | 'TABLE_STATS_DAILY_TABLE_ID_ASC' | 'TABLE_STATS_DAILY_TABLE_ID_DESC' | 'TABLE_STATS_DAILY_TABLE_NAME_ASC' | 'TABLE_STATS_DAILY_TABLE_NAME_DESC' | 'TABLE_STATS_LOG_TABLE_ID_ASC' | 'TABLE_STATS_LOG_TABLE_ID_DESC' | 'TABLE_STATS_LOG_TABLE_NAME_ASC' | 'TABLE_STATS_LOG_TABLE_NAME_DESC';
38
+ export type DbUsageModuleOrderBy = 'API_NAME_ASC' | 'API_NAME_DESC' | 'COLLECT_DB_QUERY_STATS_FUNCTION_ASC' | 'COLLECT_DB_QUERY_STATS_FUNCTION_DESC' | 'COLLECT_DB_TABLE_STATS_FUNCTION_ASC' | 'COLLECT_DB_TABLE_STATS_FUNCTION_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DEFAULT_PERMISSIONS_ASC' | 'DEFAULT_PERMISSIONS_DESC' | 'ENTITY_FIELD_ASC' | 'ENTITY_FIELD_DESC' | 'ID_ASC' | 'ID_DESC' | 'INTERVAL_ASC' | 'INTERVAL_DESC' | 'NATURAL' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'PREMAKE_ASC' | 'PREMAKE_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'QUERY_STATS_LOG_TABLE_ID_ASC' | 'QUERY_STATS_LOG_TABLE_ID_DESC' | 'QUERY_STATS_LOG_TABLE_NAME_ASC' | 'QUERY_STATS_LOG_TABLE_NAME_DESC' | 'QUERY_STATS_SUMMARY_TABLE_ID_ASC' | 'QUERY_STATS_SUMMARY_TABLE_ID_DESC' | 'QUERY_STATS_SUMMARY_TABLE_NAME_ASC' | 'QUERY_STATS_SUMMARY_TABLE_NAME_DESC' | 'RETENTION_ASC' | 'RETENTION_DESC' | 'ROLLUP_DB_QUERY_STATS_USAGE_SUMMARY_FUNCTION_ASC' | 'ROLLUP_DB_QUERY_STATS_USAGE_SUMMARY_FUNCTION_DESC' | 'ROLLUP_DB_TABLE_STATS_USAGE_SUMMARY_FUNCTION_ASC' | 'ROLLUP_DB_TABLE_STATS_USAGE_SUMMARY_FUNCTION_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC' | 'TABLE_STATS_LOG_TABLE_ID_ASC' | 'TABLE_STATS_LOG_TABLE_ID_DESC' | 'TABLE_STATS_LOG_TABLE_NAME_ASC' | 'TABLE_STATS_LOG_TABLE_NAME_DESC' | 'TABLE_STATS_SUMMARY_TABLE_ID_ASC' | 'TABLE_STATS_SUMMARY_TABLE_ID_DESC' | 'TABLE_STATS_SUMMARY_TABLE_NAME_ASC' | 'TABLE_STATS_SUMMARY_TABLE_NAME_DESC';
39
39
  /** Methods to use when ordering `DefaultIdsModule`. */
40
40
  export type DefaultIdsModuleOrderBy = 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC';
41
41
  /** Methods to use when ordering `DenormalizedTableField`. */
42
42
  export type DenormalizedTableFieldOrderBy = 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'FIELD_ID_ASC' | 'FIELD_ID_DESC' | 'FUNC_NAME_ASC' | 'FUNC_NAME_DESC' | 'FUNC_ORDER_ASC' | 'FUNC_ORDER_DESC' | 'ID_ASC' | 'ID_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'REF_FIELD_ID_ASC' | 'REF_FIELD_ID_DESC' | 'REF_IDS_ASC' | 'REF_IDS_DESC' | 'REF_TABLE_ID_ASC' | 'REF_TABLE_ID_DESC' | 'SET_IDS_ASC' | 'SET_IDS_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'UPDATE_DEFAULTS_ASC' | 'UPDATE_DEFAULTS_DESC' | 'USE_UPDATES_ASC' | 'USE_UPDATES_DESC';
43
43
  /** Methods to use when ordering `DevicesModule`. */
44
- export type DevicesModuleOrderBy = 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DEVICE_SETTINGS_TABLE_ASC' | 'DEVICE_SETTINGS_TABLE_DESC' | 'DEVICE_SETTINGS_TABLE_ID_ASC' | 'DEVICE_SETTINGS_TABLE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'USER_DEVICES_TABLE_ASC' | 'USER_DEVICES_TABLE_DESC' | 'USER_DEVICES_TABLE_ID_ASC' | 'USER_DEVICES_TABLE_ID_DESC';
44
+ export type DevicesModuleOrderBy = 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DEVICE_SETTINGS_TABLE_ID_ASC' | 'DEVICE_SETTINGS_TABLE_ID_DESC' | 'DEVICE_SETTINGS_TABLE_NAME_ASC' | 'DEVICE_SETTINGS_TABLE_NAME_DESC' | 'ID_ASC' | 'ID_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'USER_DEVICES_TABLE_ID_ASC' | 'USER_DEVICES_TABLE_ID_DESC' | 'USER_DEVICES_TABLE_NAME_ASC' | 'USER_DEVICES_TABLE_NAME_DESC';
45
45
  /** Methods to use when ordering `EmailsModule`. */
46
46
  export type EmailsModuleOrderBy = 'API_NAME_ASC' | 'API_NAME_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'NATURAL' | 'OWNER_TABLE_ID_ASC' | 'OWNER_TABLE_ID_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'TABLE_NAME_ASC' | 'TABLE_NAME_DESC';
47
47
  /** Methods to use when ordering `EntityTypeProvision`. */
@@ -53,19 +53,21 @@ export type FunctionDeploymentModuleOrderBy = 'API_NAME_ASC' | 'API_NAME_DESC' |
53
53
  /** Methods to use when ordering `FunctionInvocationModule`. */
54
54
  export type FunctionInvocationModuleOrderBy = 'API_NAME_ASC' | 'API_NAME_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DEFAULT_PERMISSIONS_ASC' | 'DEFAULT_PERMISSIONS_DESC' | 'ENTITY_FIELD_ASC' | 'ENTITY_FIELD_DESC' | 'ENTITY_TABLE_ID_ASC' | 'ENTITY_TABLE_ID_DESC' | 'EXECUTION_LOGS_TABLE_ID_ASC' | 'EXECUTION_LOGS_TABLE_ID_DESC' | 'EXECUTION_LOGS_TABLE_NAME_ASC' | 'EXECUTION_LOGS_TABLE_NAME_DESC' | 'ID_ASC' | 'ID_DESC' | 'INVOCATIONS_TABLE_ID_ASC' | 'INVOCATIONS_TABLE_ID_DESC' | 'INVOCATIONS_TABLE_NAME_ASC' | 'INVOCATIONS_TABLE_NAME_DESC' | 'NATURAL' | 'POLICIES_ASC' | 'POLICIES_DESC' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'PROVISIONS_ASC' | 'PROVISIONS_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC';
55
55
  /** Methods to use when ordering `FunctionModule`. */
56
- export type FunctionModuleOrderBy = 'API_NAME_ASC' | 'API_NAME_DESC' | 'BINDINGS_TABLE_ID_ASC' | 'BINDINGS_TABLE_ID_DESC' | 'BINDINGS_TABLE_NAME_ASC' | 'BINDINGS_TABLE_NAME_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DEFAULT_PERMISSIONS_ASC' | 'DEFAULT_PERMISSIONS_DESC' | 'DEFINITIONS_TABLE_ID_ASC' | 'DEFINITIONS_TABLE_ID_DESC' | 'DEFINITIONS_TABLE_NAME_ASC' | 'DEFINITIONS_TABLE_NAME_DESC' | 'ENTITY_FIELD_ASC' | 'ENTITY_FIELD_DESC' | 'ENTITY_TABLE_ID_ASC' | 'ENTITY_TABLE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'NATURAL' | 'POLICIES_ASC' | 'POLICIES_DESC' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'PROVISIONS_ASC' | 'PROVISIONS_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC';
56
+ export type FunctionModuleOrderBy = 'API_NAME_ASC' | 'API_NAME_DESC' | 'BINDINGS_TABLE_ID_ASC' | 'BINDINGS_TABLE_ID_DESC' | 'BINDINGS_TABLE_NAME_ASC' | 'BINDINGS_TABLE_NAME_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DEFAULT_PERMISSIONS_ASC' | 'DEFAULT_PERMISSIONS_DESC' | 'DEFINITIONS_TABLE_ID_ASC' | 'DEFINITIONS_TABLE_ID_DESC' | 'DEFINITIONS_TABLE_NAME_ASC' | 'DEFINITIONS_TABLE_NAME_DESC' | 'ENTITY_FIELD_ASC' | 'ENTITY_FIELD_DESC' | 'ENTITY_TABLE_ID_ASC' | 'ENTITY_TABLE_ID_DESC' | 'HAS_CRON_ASC' | 'HAS_CRON_DESC' | 'ID_ASC' | 'ID_DESC' | 'NATURAL' | 'POLICIES_ASC' | 'POLICIES_DESC' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'PROVISIONS_ASC' | 'PROVISIONS_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'SCHEDULES_TABLE_ID_ASC' | 'SCHEDULES_TABLE_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC';
57
57
  /** Methods to use when ordering `GraphExecutionModule`. */
58
58
  export type GraphExecutionModuleOrderBy = 'API_NAME_ASC' | 'API_NAME_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DEFAULT_PERMISSIONS_ASC' | 'DEFAULT_PERMISSIONS_DESC' | 'ENTITY_FIELD_ASC' | 'ENTITY_FIELD_DESC' | 'ENTITY_TABLE_ID_ASC' | 'ENTITY_TABLE_ID_DESC' | 'EXECUTIONS_TABLE_ID_ASC' | 'EXECUTIONS_TABLE_ID_DESC' | 'EXECUTIONS_TABLE_NAME_ASC' | 'EXECUTIONS_TABLE_NAME_DESC' | 'GRAPH_MODULE_ID_ASC' | 'GRAPH_MODULE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'NATURAL' | 'NODE_STATES_TABLE_ID_ASC' | 'NODE_STATES_TABLE_ID_DESC' | 'NODE_STATES_TABLE_NAME_ASC' | 'NODE_STATES_TABLE_NAME_DESC' | 'OUTPUTS_TABLE_ID_ASC' | 'OUTPUTS_TABLE_ID_DESC' | 'OUTPUTS_TABLE_NAME_ASC' | 'OUTPUTS_TABLE_NAME_DESC' | 'POLICIES_ASC' | 'POLICIES_DESC' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'PROVISIONS_ASC' | 'PROVISIONS_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC';
59
59
  /** Methods to use when ordering `GraphModule`. */
60
60
  export type GraphModuleOrderBy = 'API_NAME_ASC' | 'API_NAME_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DEFAULT_PERMISSIONS_ASC' | 'DEFAULT_PERMISSIONS_DESC' | 'ENTITY_FIELD_ASC' | 'ENTITY_FIELD_DESC' | 'ENTITY_TABLE_ID_ASC' | 'ENTITY_TABLE_ID_DESC' | 'GRAPHS_TABLE_ID_ASC' | 'GRAPHS_TABLE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'MERKLE_STORE_MODULE_ID_ASC' | 'MERKLE_STORE_MODULE_ID_DESC' | 'NATURAL' | 'POLICIES_ASC' | 'POLICIES_DESC' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'PROVISIONS_ASC' | 'PROVISIONS_DESC' | 'PUBLIC_SCHEMA_ID_ASC' | 'PUBLIC_SCHEMA_ID_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC';
61
61
  /** Methods to use when ordering `HierarchyModule`. */
62
62
  export type HierarchyModuleOrderBy = 'CHART_EDGES_TABLE_ID_ASC' | 'CHART_EDGES_TABLE_ID_DESC' | 'CHART_EDGES_TABLE_NAME_ASC' | 'CHART_EDGES_TABLE_NAME_DESC' | 'CHART_EDGE_GRANTS_TABLE_ID_ASC' | 'CHART_EDGE_GRANTS_TABLE_ID_DESC' | 'CHART_EDGE_GRANTS_TABLE_NAME_ASC' | 'CHART_EDGE_GRANTS_TABLE_NAME_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DEFAULT_PERMISSIONS_ASC' | 'DEFAULT_PERMISSIONS_DESC' | 'ENTITY_FIELD_ASC' | 'ENTITY_FIELD_DESC' | 'ENTITY_TABLE_ID_ASC' | 'ENTITY_TABLE_ID_DESC' | 'GET_MANAGERS_FUNCTION_ASC' | 'GET_MANAGERS_FUNCTION_DESC' | 'GET_SUBORDINATES_FUNCTION_ASC' | 'GET_SUBORDINATES_FUNCTION_DESC' | 'HIERARCHY_SPRT_TABLE_ID_ASC' | 'HIERARCHY_SPRT_TABLE_ID_DESC' | 'HIERARCHY_SPRT_TABLE_NAME_ASC' | 'HIERARCHY_SPRT_TABLE_NAME_DESC' | 'ID_ASC' | 'ID_DESC' | 'IS_MANAGER_OF_FUNCTION_ASC' | 'IS_MANAGER_OF_FUNCTION_DESC' | 'NATURAL' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'REBUILD_HIERARCHY_FUNCTION_ASC' | 'REBUILD_HIERARCHY_FUNCTION_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC' | 'SPRT_TABLE_NAME_ASC' | 'SPRT_TABLE_NAME_DESC' | 'USERS_TABLE_ID_ASC' | 'USERS_TABLE_ID_DESC';
63
+ /** Methods to use when ordering `HttpRouteModule`. */
64
+ export type HttpRouteModuleOrderBy = 'API_NAME_ASC' | 'API_NAME_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DEFAULT_PERMISSIONS_ASC' | 'DEFAULT_PERMISSIONS_DESC' | 'ENTITY_FIELD_ASC' | 'ENTITY_FIELD_DESC' | 'ENTITY_TABLE_ID_ASC' | 'ENTITY_TABLE_ID_DESC' | 'FUNCTION_MODULE_ID_ASC' | 'FUNCTION_MODULE_ID_DESC' | 'HTTP_ROUTES_TABLE_ID_ASC' | 'HTTP_ROUTES_TABLE_ID_DESC' | 'HTTP_ROUTES_TABLE_NAME_ASC' | 'HTTP_ROUTES_TABLE_NAME_DESC' | 'ID_ASC' | 'ID_DESC' | 'NATURAL' | 'POLICIES_ASC' | 'POLICIES_DESC' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'PROVISIONS_ASC' | 'PROVISIONS_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'RESOLVER_FUNCTION_NAME_ASC' | 'RESOLVER_FUNCTION_NAME_DESC' | 'RESOURCE_MODULE_ID_ASC' | 'RESOURCE_MODULE_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC' | 'STORAGE_MODULE_ID_ASC' | 'STORAGE_MODULE_ID_DESC';
63
65
  /** Methods to use when ordering `I18NModule`. */
64
66
  export type I18NModuleOrderBy = 'API_NAME_ASC' | 'API_NAME_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'SETTINGS_TABLE_ID_ASC' | 'SETTINGS_TABLE_ID_DESC';
65
67
  /** Methods to use when ordering `IdentityProvidersModule`. */
66
68
  export type IdentityProvidersModuleOrderBy = 'API_NAME_ASC' | 'API_NAME_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ENTITY_FIELD_ASC' | 'ENTITY_FIELD_DESC' | 'ENTITY_TABLE_ID_ASC' | 'ENTITY_TABLE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'NATURAL' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'TABLE_NAME_ASC' | 'TABLE_NAME_DESC';
67
69
  /** Methods to use when ordering `InferenceLogModule`. */
68
- export type InferenceLogModuleOrderBy = 'ACTOR_FK_TABLE_ID_ASC' | 'ACTOR_FK_TABLE_ID_DESC' | 'API_NAME_ASC' | 'API_NAME_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ENTITY_FIELD_ASC' | 'ENTITY_FIELD_DESC' | 'ENTITY_FK_TABLE_ID_ASC' | 'ENTITY_FK_TABLE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'INFERENCE_LOG_TABLE_ID_ASC' | 'INFERENCE_LOG_TABLE_ID_DESC' | 'INFERENCE_LOG_TABLE_NAME_ASC' | 'INFERENCE_LOG_TABLE_NAME_DESC' | 'INTERVAL_ASC' | 'INTERVAL_DESC' | 'NATURAL' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'PREMAKE_ASC' | 'PREMAKE_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'RETENTION_ASC' | 'RETENTION_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC' | 'USAGE_DAILY_TABLE_ID_ASC' | 'USAGE_DAILY_TABLE_ID_DESC' | 'USAGE_DAILY_TABLE_NAME_ASC' | 'USAGE_DAILY_TABLE_NAME_DESC';
70
+ export type InferenceLogModuleOrderBy = 'ACTOR_FK_TABLE_ID_ASC' | 'ACTOR_FK_TABLE_ID_DESC' | 'API_NAME_ASC' | 'API_NAME_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ENTITY_FIELD_ASC' | 'ENTITY_FIELD_DESC' | 'ENTITY_FK_TABLE_ID_ASC' | 'ENTITY_FK_TABLE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'INFERENCE_LOG_TABLE_ID_ASC' | 'INFERENCE_LOG_TABLE_ID_DESC' | 'INFERENCE_LOG_TABLE_NAME_ASC' | 'INFERENCE_LOG_TABLE_NAME_DESC' | 'INTERVAL_ASC' | 'INTERVAL_DESC' | 'NATURAL' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'PREMAKE_ASC' | 'PREMAKE_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'RETENTION_ASC' | 'RETENTION_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC' | 'USAGE_SUMMARY_TABLE_ID_ASC' | 'USAGE_SUMMARY_TABLE_ID_DESC' | 'USAGE_SUMMARY_TABLE_NAME_ASC' | 'USAGE_SUMMARY_TABLE_NAME_DESC';
69
71
  /** Methods to use when ordering `InfraConfigModule`. */
70
72
  export type InfraConfigModuleOrderBy = 'API_NAME_ASC' | 'API_NAME_DESC' | 'CONFIG_TABLE_ID_ASC' | 'CONFIG_TABLE_ID_DESC' | 'CONFIG_TABLE_NAME_ASC' | 'CONFIG_TABLE_NAME_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ENTITY_FIELD_ASC' | 'ENTITY_FIELD_DESC' | 'ENTITY_TABLE_ID_ASC' | 'ENTITY_TABLE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'NATURAL' | 'POLICIES_ASC' | 'POLICIES_DESC' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'PROVISIONS_ASC' | 'PROVISIONS_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC';
71
73
  /** Methods to use when ordering `InfraSecretsModule`. */
@@ -101,13 +103,13 @@ export type ProfilesModuleOrderBy = 'ACTOR_TABLE_ID_ASC' | 'ACTOR_TABLE_ID_DESC'
101
103
  /** Methods to use when ordering `RateLimitMetersModule`. */
102
104
  export type RateLimitMetersModuleOrderBy = 'API_NAME_ASC' | 'API_NAME_DESC' | 'CHECK_RATE_LIMIT_FUNCTION_ASC' | 'CHECK_RATE_LIMIT_FUNCTION_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DEFAULT_PERMISSIONS_ASC' | 'DEFAULT_PERMISSIONS_DESC' | 'ID_ASC' | 'ID_DESC' | 'NATURAL' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_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_LIMIT_STATE_TABLE_ID_ASC' | 'RATE_LIMIT_STATE_TABLE_ID_DESC' | 'RATE_LIMIT_STATE_TABLE_NAME_ASC' | 'RATE_LIMIT_STATE_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' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC';
103
105
  /** Methods to use when ordering `RateLimitsModule`. */
104
- export type RateLimitsModuleOrderBy = 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'IP_RATE_LIMITS_TABLE_ASC' | 'IP_RATE_LIMITS_TABLE_DESC' | 'IP_RATE_LIMITS_TABLE_ID_ASC' | 'IP_RATE_LIMITS_TABLE_ID_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'RATE_LIMITS_TABLE_ASC' | 'RATE_LIMITS_TABLE_DESC' | 'RATE_LIMITS_TABLE_ID_ASC' | 'RATE_LIMITS_TABLE_ID_DESC' | 'RATE_LIMIT_SETTINGS_TABLE_ASC' | 'RATE_LIMIT_SETTINGS_TABLE_DESC' | 'RATE_LIMIT_SETTINGS_TABLE_ID_ASC' | 'RATE_LIMIT_SETTINGS_TABLE_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC';
106
+ export type RateLimitsModuleOrderBy = 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'IP_RATE_LIMITS_TABLE_ID_ASC' | 'IP_RATE_LIMITS_TABLE_ID_DESC' | 'IP_RATE_LIMITS_TABLE_NAME_ASC' | 'IP_RATE_LIMITS_TABLE_NAME_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'RATE_LIMITS_TABLE_ID_ASC' | 'RATE_LIMITS_TABLE_ID_DESC' | 'RATE_LIMITS_TABLE_NAME_ASC' | 'RATE_LIMITS_TABLE_NAME_DESC' | 'RATE_LIMIT_SETTINGS_TABLE_ID_ASC' | 'RATE_LIMIT_SETTINGS_TABLE_ID_DESC' | 'RATE_LIMIT_SETTINGS_TABLE_NAME_ASC' | 'RATE_LIMIT_SETTINGS_TABLE_NAME_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC';
105
107
  /** Methods to use when ordering `RealtimeModule`. */
106
108
  export type RealtimeModuleOrderBy = 'API_NAME_ASC' | 'API_NAME_DESC' | 'CHANGE_LOG_TABLE_ID_ASC' | 'CHANGE_LOG_TABLE_ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'INTERVAL_ASC' | 'INTERVAL_DESC' | 'LISTENER_NODE_TABLE_ID_ASC' | 'LISTENER_NODE_TABLE_ID_DESC' | 'NATURAL' | 'NOTIFY_CHANNEL_ASC' | 'NOTIFY_CHANNEL_DESC' | 'PREMAKE_ASC' | 'PREMAKE_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'RETENTION_HOURS_ASC' | 'RETENTION_HOURS_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'SOURCE_REGISTRY_TABLE_ID_ASC' | 'SOURCE_REGISTRY_TABLE_ID_DESC' | 'SUBSCRIPTIONS_SCHEMA_ID_ASC' | 'SUBSCRIPTIONS_SCHEMA_ID_DESC';
107
109
  /** Methods to use when ordering `RelationProvision`. */
108
110
  export type RelationProvisionOrderBy = 'API_REQUIRED_ASC' | 'API_REQUIRED_DESC' | 'CREATE_INDEX_ASC' | 'CREATE_INDEX_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DELETE_ACTION_ASC' | 'DELETE_ACTION_DESC' | 'EXPOSE_IN_API_ASC' | 'EXPOSE_IN_API_DESC' | 'FIELD_NAME_ASC' | 'FIELD_NAME_DESC' | 'GRANTS_ASC' | 'GRANTS_DESC' | 'ID_ASC' | 'ID_DESC' | 'IS_REQUIRED_ASC' | 'IS_REQUIRED_DESC' | 'JUNCTION_SCHEMA_ID_ASC' | 'JUNCTION_SCHEMA_ID_DESC' | 'JUNCTION_TABLE_ID_ASC' | 'JUNCTION_TABLE_ID_DESC' | 'JUNCTION_TABLE_NAME_ASC' | 'JUNCTION_TABLE_NAME_DESC' | 'NATURAL' | 'NODES_ASC' | 'NODES_DESC' | 'OUT_FIELD_ID_ASC' | 'OUT_FIELD_ID_DESC' | 'OUT_JUNCTION_TABLE_ID_ASC' | 'OUT_JUNCTION_TABLE_ID_DESC' | 'OUT_SOURCE_FIELD_ID_ASC' | 'OUT_SOURCE_FIELD_ID_DESC' | 'OUT_TARGET_FIELD_ID_ASC' | 'OUT_TARGET_FIELD_ID_DESC' | 'POLICIES_ASC' | 'POLICIES_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'RELATION_TYPE_ASC' | 'RELATION_TYPE_DESC' | 'SOURCE_FIELD_NAME_ASC' | 'SOURCE_FIELD_NAME_DESC' | 'SOURCE_TABLE_ID_ASC' | 'SOURCE_TABLE_ID_DESC' | 'TARGET_FIELD_NAME_ASC' | 'TARGET_FIELD_NAME_DESC' | 'TARGET_TABLE_ID_ASC' | 'TARGET_TABLE_ID_DESC' | 'USE_COMPOSITE_KEY_ASC' | 'USE_COMPOSITE_KEY_DESC';
109
111
  /** Methods to use when ordering `ResourceModule`. */
110
- export type ResourceModuleOrderBy = 'API_NAME_ASC' | 'API_NAME_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DEFAULT_PERMISSIONS_ASC' | 'DEFAULT_PERMISSIONS_DESC' | 'ENTITY_FIELD_ASC' | 'ENTITY_FIELD_DESC' | 'ENTITY_TABLE_ID_ASC' | 'ENTITY_TABLE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAMESPACE_MODULE_ID_ASC' | 'NAMESPACE_MODULE_ID_DESC' | 'NATURAL' | 'POLICIES_ASC' | 'POLICIES_DESC' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'PROVISIONS_ASC' | 'PROVISIONS_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'REQUIREMENTS_STATE_VIEW_NAME_ASC' | 'REQUIREMENTS_STATE_VIEW_NAME_DESC' | 'RESOLVED_REQUIREMENTS_VIEW_NAME_ASC' | 'RESOLVED_REQUIREMENTS_VIEW_NAME_DESC' | 'RESOURCES_TABLE_ID_ASC' | 'RESOURCES_TABLE_ID_DESC' | 'RESOURCES_TABLE_NAME_ASC' | 'RESOURCES_TABLE_NAME_DESC' | 'RESOURCE_DEFINITIONS_TABLE_ID_ASC' | 'RESOURCE_DEFINITIONS_TABLE_ID_DESC' | 'RESOURCE_DEFINITIONS_TABLE_NAME_ASC' | 'RESOURCE_DEFINITIONS_TABLE_NAME_DESC' | 'RESOURCE_EVENTS_TABLE_ID_ASC' | 'RESOURCE_EVENTS_TABLE_ID_DESC' | 'RESOURCE_EVENTS_TABLE_NAME_ASC' | 'RESOURCE_EVENTS_TABLE_NAME_DESC' | 'RESOURCE_STATUS_CHECKS_TABLE_ID_ASC' | 'RESOURCE_STATUS_CHECKS_TABLE_ID_DESC' | 'RESOURCE_STATUS_CHECKS_TABLE_NAME_ASC' | 'RESOURCE_STATUS_CHECKS_TABLE_NAME_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC';
112
+ export type ResourceModuleOrderBy = 'API_NAME_ASC' | 'API_NAME_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DEFAULT_PERMISSIONS_ASC' | 'DEFAULT_PERMISSIONS_DESC' | 'ENTITY_FIELD_ASC' | 'ENTITY_FIELD_DESC' | 'ENTITY_TABLE_ID_ASC' | 'ENTITY_TABLE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'INSTALLATION_STORE_NAME_ASC' | 'INSTALLATION_STORE_NAME_DESC' | 'MERKLE_STORE_MODULE_ID_ASC' | 'MERKLE_STORE_MODULE_ID_DESC' | 'NAMESPACE_MODULE_ID_ASC' | 'NAMESPACE_MODULE_ID_DESC' | 'NATURAL' | 'POLICIES_ASC' | 'POLICIES_DESC' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'PROVISIONS_ASC' | 'PROVISIONS_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'REQUIREMENTS_STATE_VIEW_NAME_ASC' | 'REQUIREMENTS_STATE_VIEW_NAME_DESC' | 'RESOLVED_REQUIREMENTS_VIEW_NAME_ASC' | 'RESOLVED_REQUIREMENTS_VIEW_NAME_DESC' | 'RESOURCES_TABLE_ID_ASC' | 'RESOURCES_TABLE_ID_DESC' | 'RESOURCES_TABLE_NAME_ASC' | 'RESOURCES_TABLE_NAME_DESC' | 'RESOURCE_BILLING_ROLLUP_FUNCTION_ASC' | 'RESOURCE_BILLING_ROLLUP_FUNCTION_DESC' | 'RESOURCE_DEFINITIONS_TABLE_ID_ASC' | 'RESOURCE_DEFINITIONS_TABLE_ID_DESC' | 'RESOURCE_DEFINITIONS_TABLE_NAME_ASC' | 'RESOURCE_DEFINITIONS_TABLE_NAME_DESC' | 'RESOURCE_EVENTS_TABLE_ID_ASC' | 'RESOURCE_EVENTS_TABLE_ID_DESC' | 'RESOURCE_EVENTS_TABLE_NAME_ASC' | 'RESOURCE_EVENTS_TABLE_NAME_DESC' | 'RESOURCE_INSTALLATIONS_TABLE_ID_ASC' | 'RESOURCE_INSTALLATIONS_TABLE_ID_DESC' | 'RESOURCE_INSTALLATIONS_TABLE_NAME_ASC' | 'RESOURCE_INSTALLATIONS_TABLE_NAME_DESC' | 'RESOURCE_STATUS_CHECKS_TABLE_ID_ASC' | 'RESOURCE_STATUS_CHECKS_TABLE_ID_DESC' | 'RESOURCE_STATUS_CHECKS_TABLE_NAME_ASC' | 'RESOURCE_STATUS_CHECKS_TABLE_NAME_DESC' | 'RESOURCE_USAGE_LOG_TABLE_ID_ASC' | 'RESOURCE_USAGE_LOG_TABLE_ID_DESC' | 'RESOURCE_USAGE_LOG_TABLE_NAME_ASC' | 'RESOURCE_USAGE_LOG_TABLE_NAME_DESC' | 'RESOURCE_USAGE_SUMMARY_TABLE_ID_ASC' | 'RESOURCE_USAGE_SUMMARY_TABLE_ID_DESC' | 'RESOURCE_USAGE_SUMMARY_TABLE_NAME_ASC' | 'RESOURCE_USAGE_SUMMARY_TABLE_NAME_DESC' | 'ROLLUP_RESOURCE_USAGE_SUMMARY_FUNCTION_ASC' | 'ROLLUP_RESOURCE_USAGE_SUMMARY_FUNCTION_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC';
111
113
  /** Methods to use when ordering `RlsModule`. */
112
114
  export type RlsModuleOrderBy = 'API_NAME_ASC' | 'API_NAME_DESC' | 'AUTHENTICATE_ASC' | 'AUTHENTICATE_DESC' | 'AUTHENTICATE_STRICT_ASC' | 'AUTHENTICATE_STRICT_DESC' | 'CURRENT_ROLE_ASC' | 'CURRENT_ROLE_DESC' | 'CURRENT_ROLE_ID_ASC' | 'CURRENT_ROLE_ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_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' | 'USERS_TABLE_ID_ASC' | 'USERS_TABLE_ID_DESC';
113
115
  /** Methods to use when ordering `SecureTableProvision`. */
@@ -115,13 +117,13 @@ export type SecureTableProvisionOrderBy = 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC'
115
117
  /** Methods to use when ordering `SessionSecretsModule`. */
116
118
  export type SessionSecretsModuleOrderBy = 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'SESSIONS_TABLE_ID_ASC' | 'SESSIONS_TABLE_ID_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'TABLE_NAME_ASC' | 'TABLE_NAME_DESC';
117
119
  /** Methods to use when ordering `SessionsModule`. */
118
- export type SessionsModuleOrderBy = 'AUTH_SETTINGS_TABLE_ASC' | 'AUTH_SETTINGS_TABLE_DESC' | 'AUTH_SETTINGS_TABLE_ID_ASC' | 'AUTH_SETTINGS_TABLE_ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'SESSIONS_DEFAULT_EXPIRATION_ASC' | 'SESSIONS_DEFAULT_EXPIRATION_DESC' | 'SESSIONS_TABLE_ASC' | 'SESSIONS_TABLE_DESC' | 'SESSIONS_TABLE_ID_ASC' | 'SESSIONS_TABLE_ID_DESC' | 'SESSION_CREDENTIALS_TABLE_ASC' | 'SESSION_CREDENTIALS_TABLE_DESC' | 'SESSION_CREDENTIALS_TABLE_ID_ASC' | 'SESSION_CREDENTIALS_TABLE_ID_DESC' | 'USERS_TABLE_ID_ASC' | 'USERS_TABLE_ID_DESC';
120
+ export type SessionsModuleOrderBy = 'AUTH_SETTINGS_TABLE_ID_ASC' | 'AUTH_SETTINGS_TABLE_ID_DESC' | 'AUTH_SETTINGS_TABLE_NAME_ASC' | 'AUTH_SETTINGS_TABLE_NAME_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'SESSIONS_DEFAULT_EXPIRATION_ASC' | 'SESSIONS_DEFAULT_EXPIRATION_DESC' | 'SESSIONS_TABLE_ID_ASC' | 'SESSIONS_TABLE_ID_DESC' | 'SESSIONS_TABLE_NAME_ASC' | 'SESSIONS_TABLE_NAME_DESC' | 'SESSION_CREDENTIALS_TABLE_ID_ASC' | 'SESSION_CREDENTIALS_TABLE_ID_DESC' | 'SESSION_CREDENTIALS_TABLE_NAME_ASC' | 'SESSION_CREDENTIALS_TABLE_NAME_DESC' | 'USERS_TABLE_ID_ASC' | 'USERS_TABLE_ID_DESC';
119
121
  /** Methods to use when ordering `StorageLogModule`. */
120
- export type StorageLogModuleOrderBy = 'ACTOR_FK_TABLE_ID_ASC' | 'ACTOR_FK_TABLE_ID_DESC' | 'API_NAME_ASC' | 'API_NAME_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ENTITY_FIELD_ASC' | 'ENTITY_FIELD_DESC' | 'ENTITY_FK_TABLE_ID_ASC' | 'ENTITY_FK_TABLE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'INTERVAL_ASC' | 'INTERVAL_DESC' | 'NATURAL' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'PREMAKE_ASC' | 'PREMAKE_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'RETENTION_ASC' | 'RETENTION_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'SCOPE_ASC' | 'SCOPE_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';
122
+ export type StorageLogModuleOrderBy = 'ACTOR_FK_TABLE_ID_ASC' | 'ACTOR_FK_TABLE_ID_DESC' | 'API_NAME_ASC' | 'API_NAME_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ENTITY_FIELD_ASC' | 'ENTITY_FIELD_DESC' | 'ENTITY_FK_TABLE_ID_ASC' | 'ENTITY_FK_TABLE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'INTERVAL_ASC' | 'INTERVAL_DESC' | 'NATURAL' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'PREMAKE_ASC' | 'PREMAKE_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'RETENTION_ASC' | 'RETENTION_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC' | 'STORAGE_LOG_TABLE_ID_ASC' | 'STORAGE_LOG_TABLE_ID_DESC' | 'STORAGE_LOG_TABLE_NAME_ASC' | 'STORAGE_LOG_TABLE_NAME_DESC' | 'USAGE_SUMMARY_TABLE_ID_ASC' | 'USAGE_SUMMARY_TABLE_ID_DESC' | 'USAGE_SUMMARY_TABLE_NAME_ASC' | 'USAGE_SUMMARY_TABLE_NAME_DESC';
121
123
  /** Methods to use when ordering `StorageModule`. */
122
124
  export type StorageModuleOrderBy = 'ALLOWED_ORIGINS_ASC' | 'ALLOWED_ORIGINS_DESC' | 'API_NAME_ASC' | 'API_NAME_DESC' | 'BUCKETS_TABLE_ID_ASC' | 'BUCKETS_TABLE_ID_DESC' | 'BUCKETS_TABLE_NAME_ASC' | 'BUCKETS_TABLE_NAME_DESC' | 'CACHE_TTL_SECONDS_ASC' | 'CACHE_TTL_SECONDS_DESC' | 'CONFIRM_UPLOAD_DELAY_ASC' | 'CONFIRM_UPLOAD_DELAY_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DEFAULT_MAX_FILE_SIZE_ASC' | 'DEFAULT_MAX_FILE_SIZE_DESC' | 'DEFAULT_PERMISSIONS_ASC' | 'DEFAULT_PERMISSIONS_DESC' | 'DOWNLOAD_URL_EXPIRY_SECONDS_ASC' | 'DOWNLOAD_URL_EXPIRY_SECONDS_DESC' | 'ENDPOINT_ASC' | 'ENDPOINT_DESC' | 'ENTITY_FIELD_ASC' | 'ENTITY_FIELD_DESC' | 'ENTITY_TABLE_ID_ASC' | 'ENTITY_TABLE_ID_DESC' | 'FILES_TABLE_ID_ASC' | 'FILES_TABLE_ID_DESC' | 'FILES_TABLE_NAME_ASC' | 'FILES_TABLE_NAME_DESC' | 'FILE_EVENTS_TABLE_ID_ASC' | 'FILE_EVENTS_TABLE_ID_DESC' | 'HAS_AUDIT_LOG_ASC' | 'HAS_AUDIT_LOG_DESC' | 'HAS_CONFIRM_UPLOAD_ASC' | 'HAS_CONFIRM_UPLOAD_DESC' | 'HAS_CONTENT_HASH_ASC' | 'HAS_CONTENT_HASH_DESC' | 'HAS_CUSTOM_KEYS_ASC' | 'HAS_CUSTOM_KEYS_DESC' | 'HAS_PATH_SHARES_ASC' | 'HAS_PATH_SHARES_DESC' | 'HAS_VERSIONING_ASC' | 'HAS_VERSIONING_DESC' | 'ID_ASC' | 'ID_DESC' | 'MAX_BULK_FILES_ASC' | 'MAX_BULK_FILES_DESC' | 'MAX_BULK_TOTAL_SIZE_ASC' | 'MAX_BULK_TOTAL_SIZE_DESC' | 'MAX_FILENAME_LENGTH_ASC' | 'MAX_FILENAME_LENGTH_DESC' | 'NATURAL' | 'PATH_SHARES_TABLE_ID_ASC' | 'PATH_SHARES_TABLE_ID_DESC' | 'POLICIES_ASC' | 'POLICIES_DESC' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'PROVIDER_ASC' | 'PROVIDER_DESC' | 'PROVISIONS_ASC' | 'PROVISIONS_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'PUBLIC_URL_PREFIX_ASC' | 'PUBLIC_URL_PREFIX_DESC' | 'RESTRICT_READS_ASC' | 'RESTRICT_READS_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC' | 'UPLOAD_URL_EXPIRY_SECONDS_ASC' | 'UPLOAD_URL_EXPIRY_SECONDS_DESC';
123
125
  /** Methods to use when ordering `TransferLogModule`. */
124
- export type TransferLogModuleOrderBy = 'ACTOR_FK_TABLE_ID_ASC' | 'ACTOR_FK_TABLE_ID_DESC' | 'API_NAME_ASC' | 'API_NAME_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ENTITY_FIELD_ASC' | 'ENTITY_FIELD_DESC' | 'ENTITY_FK_TABLE_ID_ASC' | 'ENTITY_FK_TABLE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'INTERVAL_ASC' | 'INTERVAL_DESC' | 'NATURAL' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'PREMAKE_ASC' | 'PREMAKE_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'RETENTION_ASC' | 'RETENTION_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC' | 'TRANSFER_LOG_TABLE_ID_ASC' | 'TRANSFER_LOG_TABLE_ID_DESC' | 'TRANSFER_LOG_TABLE_NAME_ASC' | 'TRANSFER_LOG_TABLE_NAME_DESC' | 'USAGE_DAILY_TABLE_ID_ASC' | 'USAGE_DAILY_TABLE_ID_DESC' | 'USAGE_DAILY_TABLE_NAME_ASC' | 'USAGE_DAILY_TABLE_NAME_DESC';
126
+ export type TransferLogModuleOrderBy = 'ACTOR_FK_TABLE_ID_ASC' | 'ACTOR_FK_TABLE_ID_DESC' | 'API_NAME_ASC' | 'API_NAME_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ENTITY_FIELD_ASC' | 'ENTITY_FIELD_DESC' | 'ENTITY_FK_TABLE_ID_ASC' | 'ENTITY_FK_TABLE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'INTERVAL_ASC' | 'INTERVAL_DESC' | 'NATURAL' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'PREMAKE_ASC' | 'PREMAKE_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'RETENTION_ASC' | 'RETENTION_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC' | 'TRANSFER_LOG_TABLE_ID_ASC' | 'TRANSFER_LOG_TABLE_ID_DESC' | 'TRANSFER_LOG_TABLE_NAME_ASC' | 'TRANSFER_LOG_TABLE_NAME_DESC' | 'USAGE_SUMMARY_TABLE_ID_ASC' | 'USAGE_SUMMARY_TABLE_ID_DESC' | 'USAGE_SUMMARY_TABLE_NAME_ASC' | 'USAGE_SUMMARY_TABLE_NAME_DESC';
125
127
  /** Methods to use when ordering `UserAuthModule`. */
126
128
  export type UserAuthModuleOrderBy = 'API_NAME_ASC' | 'API_NAME_DESC' | 'AUDITS_TABLE_ID_ASC' | 'AUDITS_TABLE_ID_DESC' | 'AUDITS_TABLE_NAME_ASC' | 'AUDITS_TABLE_NAME_DESC' | 'CHECK_PASSWORD_FUNCTION_ASC' | 'CHECK_PASSWORD_FUNCTION_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DELETE_ACCOUNT_FUNCTION_ASC' | 'DELETE_ACCOUNT_FUNCTION_DESC' | 'EMAILS_TABLE_ID_ASC' | 'EMAILS_TABLE_ID_DESC' | 'ENCRYPTED_TABLE_ID_ASC' | 'ENCRYPTED_TABLE_ID_DESC' | 'EXTEND_TOKEN_EXPIRES_ASC' | 'EXTEND_TOKEN_EXPIRES_DESC' | 'FORGOT_PASSWORD_FUNCTION_ASC' | 'FORGOT_PASSWORD_FUNCTION_DESC' | 'ID_ASC' | 'ID_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'REQUEST_CROSS_ORIGIN_TOKEN_FUNCTION_ASC' | 'REQUEST_CROSS_ORIGIN_TOKEN_FUNCTION_DESC' | 'RESET_PASSWORD_FUNCTION_ASC' | 'RESET_PASSWORD_FUNCTION_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'SECRETS_TABLE_ID_ASC' | 'SECRETS_TABLE_ID_DESC' | 'SEND_ACCOUNT_DELETION_EMAIL_FUNCTION_ASC' | 'SEND_ACCOUNT_DELETION_EMAIL_FUNCTION_DESC' | 'SEND_VERIFICATION_EMAIL_FUNCTION_ASC' | 'SEND_VERIFICATION_EMAIL_FUNCTION_DESC' | 'SESSIONS_TABLE_ID_ASC' | 'SESSIONS_TABLE_ID_DESC' | 'SESSION_CREDENTIALS_TABLE_ID_ASC' | 'SESSION_CREDENTIALS_TABLE_ID_DESC' | 'SET_PASSWORD_FUNCTION_ASC' | 'SET_PASSWORD_FUNCTION_DESC' | 'SIGN_IN_CROSS_ORIGIN_FUNCTION_ASC' | 'SIGN_IN_CROSS_ORIGIN_FUNCTION_DESC' | 'SIGN_IN_FUNCTION_ASC' | 'SIGN_IN_FUNCTION_DESC' | 'SIGN_OUT_FUNCTION_ASC' | 'SIGN_OUT_FUNCTION_DESC' | 'SIGN_UP_FUNCTION_ASC' | 'SIGN_UP_FUNCTION_DESC' | 'USERS_TABLE_ID_ASC' | 'USERS_TABLE_ID_DESC' | 'VERIFY_EMAIL_FUNCTION_ASC' | 'VERIFY_EMAIL_FUNCTION_DESC' | 'VERIFY_PASSWORD_FUNCTION_ASC' | 'VERIFY_PASSWORD_FUNCTION_DESC';
127
129
  /** Methods to use when ordering `UserCredentialsModule`. */
@@ -136,6 +138,8 @@ export type UsersModuleOrderBy = 'API_NAME_ASC' | 'API_NAME_DESC' | 'DATABASE_ID
136
138
  export type WebauthnAuthModuleOrderBy = 'ATTESTATION_TYPE_ASC' | 'ATTESTATION_TYPE_DESC' | 'AUTH_SETTINGS_TABLE_ID_ASC' | 'AUTH_SETTINGS_TABLE_ID_DESC' | 'CHALLENGE_EXPIRY_ASC' | 'CHALLENGE_EXPIRY_DESC' | 'CREDENTIALS_TABLE_ID_ASC' | 'CREDENTIALS_TABLE_ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'NATURAL' | 'ORIGIN_ALLOWLIST_ASC' | 'ORIGIN_ALLOWLIST_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'REQUIRE_USER_VERIFICATION_ASC' | 'REQUIRE_USER_VERIFICATION_DESC' | 'RESIDENT_KEY_ASC' | 'RESIDENT_KEY_DESC' | 'RP_ID_ASC' | 'RP_ID_DESC' | 'RP_NAME_ASC' | 'RP_NAME_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' | 'SESSION_SECRETS_TABLE_ID_ASC' | 'SESSION_SECRETS_TABLE_ID_DESC' | 'USERS_TABLE_ID_ASC' | 'USERS_TABLE_ID_DESC';
137
139
  /** Methods to use when ordering `WebauthnCredentialsModule`. */
138
140
  export type WebauthnCredentialsModuleOrderBy = 'API_NAME_ASC' | 'API_NAME_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'NATURAL' | 'OWNER_TABLE_ID_ASC' | 'OWNER_TABLE_ID_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'TABLE_NAME_ASC' | 'TABLE_NAME_DESC';
141
+ /** Methods to use when ordering `WebhookModule`. */
142
+ export type WebhookModuleOrderBy = 'API_NAME_ASC' | 'API_NAME_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DEFAULT_PERMISSIONS_ASC' | 'DEFAULT_PERMISSIONS_DESC' | 'ENTITY_FIELD_ASC' | 'ENTITY_FIELD_DESC' | 'ENTITY_TABLE_ID_ASC' | 'ENTITY_TABLE_ID_DESC' | 'FUNCTION_INVOCATION_MODULE_ID_ASC' | 'FUNCTION_INVOCATION_MODULE_ID_DESC' | 'FUNCTION_MODULE_ID_ASC' | 'FUNCTION_MODULE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'INFRA_SECRETS_MODULE_ID_ASC' | 'INFRA_SECRETS_MODULE_ID_DESC' | 'NAMESPACE_MODULE_ID_ASC' | 'NAMESPACE_MODULE_ID_DESC' | 'NATURAL' | 'POLICIES_ASC' | 'POLICIES_DESC' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'PROVISIONS_ASC' | 'PROVISIONS_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC' | 'WEBHOOK_ENDPOINTS_TABLE_ID_ASC' | 'WEBHOOK_ENDPOINTS_TABLE_ID_DESC' | 'WEBHOOK_ENDPOINTS_TABLE_NAME_ASC' | 'WEBHOOK_ENDPOINTS_TABLE_NAME_DESC' | 'WEBHOOK_EVENTS_TABLE_ID_ASC' | 'WEBHOOK_EVENTS_TABLE_ID_DESC' | 'WEBHOOK_EVENTS_TABLE_NAME_ASC' | 'WEBHOOK_EVENTS_TABLE_NAME_DESC';
139
143
  /** A filter to be used against `AgentModule` object types. All fields are combined with a logical ‘and.’ */
140
144
  export interface AgentModuleFilter {
141
145
  /** Filter by the object’s `agentTableId` field. */
@@ -917,10 +921,10 @@ export interface ComputeLogModuleFilter {
917
921
  schemaId?: UUIDFilter;
918
922
  /** Filter by the object’s `scope` field. */
919
923
  scope?: StringFilter;
920
- /** Filter by the object’s `usageDailyTableId` field. */
921
- usageDailyTableId?: UUIDFilter;
922
- /** Filter by the object’s `usageDailyTableName` field. */
923
- usageDailyTableName?: StringFilter;
924
+ /** Filter by the object’s `usageSummaryTableId` field. */
925
+ usageSummaryTableId?: UUIDFilter;
926
+ /** Filter by the object’s `usageSummaryTableName` field. */
927
+ usageSummaryTableName?: StringFilter;
924
928
  }
925
929
  /** An input for mutations affecting `ComputeLogModule` */
926
930
  export interface ComputeLogModuleInput {
@@ -942,8 +946,8 @@ export interface ComputeLogModuleInput {
942
946
  retention?: string;
943
947
  schemaId?: string;
944
948
  scope?: string;
945
- usageDailyTableId?: string;
946
- usageDailyTableName?: string;
949
+ usageSummaryTableId?: string;
950
+ usageSummaryTableName?: string;
947
951
  }
948
952
  /** Represents an update to a `ComputeLogModule`. Fields that are set will be updated. */
949
953
  export interface ComputeLogModulePatch {
@@ -965,8 +969,8 @@ export interface ComputeLogModulePatch {
965
969
  retention?: string;
966
970
  schemaId?: string;
967
971
  scope?: string;
968
- usageDailyTableId?: string;
969
- usageDailyTableName?: string;
972
+ usageSummaryTableId?: string;
973
+ usageSummaryTableName?: string;
970
974
  }
971
975
  /** A filter to be used against `ConfigSecretsUserModule` object types. All fields are combined with a logical ‘and.’ */
972
976
  export interface ConfigSecretsUserModuleFilter {
@@ -1219,6 +1223,11 @@ export interface CreateHierarchyModuleInput {
1219
1223
  /** The `HierarchyModule` to be created by this mutation. */
1220
1224
  hierarchyModule: HierarchyModuleInput;
1221
1225
  }
1226
+ export interface CreateHttpRouteModuleInput {
1227
+ clientMutationId?: string;
1228
+ /** The `HttpRouteModule` to be created by this mutation. */
1229
+ httpRouteModule: HttpRouteModuleInput;
1230
+ }
1222
1231
  export interface CreateI18NModuleInput {
1223
1232
  clientMutationId?: string;
1224
1233
  /** The `I18NModule` to be created by this mutation. */
@@ -1409,6 +1418,11 @@ export interface CreateWebauthnCredentialsModuleInput {
1409
1418
  /** The `WebauthnCredentialsModule` to be created by this mutation. */
1410
1419
  webauthnCredentialsModule: WebauthnCredentialsModuleInput;
1411
1420
  }
1421
+ export interface CreateWebhookModuleInput {
1422
+ clientMutationId?: string;
1423
+ /** The `WebhookModule` to be created by this mutation. */
1424
+ webhookModule: WebhookModuleInput;
1425
+ }
1412
1426
  /** A filter to be used against `CryptoAddressesModule` object types. All fields are combined with a logical ‘and.’ */
1413
1427
  export interface CryptoAddressesModuleFilter {
1414
1428
  /** Checks for all expressions in this list. */
@@ -1917,32 +1931,32 @@ export interface DbUsageModuleFilter {
1917
1931
  privateSchemaName?: StringFilter;
1918
1932
  /** Filter by the object’s `publicSchemaName` field. */
1919
1933
  publicSchemaName?: StringFilter;
1920
- /** Filter by the object’s `queryStatsDailyTableId` field. */
1921
- queryStatsDailyTableId?: UUIDFilter;
1922
- /** Filter by the object’s `queryStatsDailyTableName` field. */
1923
- queryStatsDailyTableName?: StringFilter;
1924
1934
  /** Filter by the object’s `queryStatsLogTableId` field. */
1925
1935
  queryStatsLogTableId?: UUIDFilter;
1926
1936
  /** Filter by the object’s `queryStatsLogTableName` field. */
1927
1937
  queryStatsLogTableName?: StringFilter;
1938
+ /** Filter by the object’s `queryStatsSummaryTableId` field. */
1939
+ queryStatsSummaryTableId?: UUIDFilter;
1940
+ /** Filter by the object’s `queryStatsSummaryTableName` field. */
1941
+ queryStatsSummaryTableName?: StringFilter;
1928
1942
  /** Filter by the object’s `retention` field. */
1929
1943
  retention?: StringFilter;
1930
- /** Filter by the object’s `rollupDbQueryStatsDailyFunction` field. */
1931
- rollupDbQueryStatsDailyFunction?: StringFilter;
1932
- /** Filter by the object’s `rollupDbTableStatsDailyFunction` field. */
1933
- rollupDbTableStatsDailyFunction?: StringFilter;
1944
+ /** Filter by the object’s `rollupDbQueryStatsUsageSummaryFunction` field. */
1945
+ rollupDbQueryStatsUsageSummaryFunction?: StringFilter;
1946
+ /** Filter by the object’s `rollupDbTableStatsUsageSummaryFunction` field. */
1947
+ rollupDbTableStatsUsageSummaryFunction?: StringFilter;
1934
1948
  /** Filter by the object’s `schemaId` field. */
1935
1949
  schemaId?: UUIDFilter;
1936
1950
  /** Filter by the object’s `scope` field. */
1937
1951
  scope?: StringFilter;
1938
- /** Filter by the object’s `tableStatsDailyTableId` field. */
1939
- tableStatsDailyTableId?: UUIDFilter;
1940
- /** Filter by the object’s `tableStatsDailyTableName` field. */
1941
- tableStatsDailyTableName?: StringFilter;
1942
1952
  /** Filter by the object’s `tableStatsLogTableId` field. */
1943
1953
  tableStatsLogTableId?: UUIDFilter;
1944
1954
  /** Filter by the object’s `tableStatsLogTableName` field. */
1945
1955
  tableStatsLogTableName?: StringFilter;
1956
+ /** Filter by the object’s `tableStatsSummaryTableId` field. */
1957
+ tableStatsSummaryTableId?: UUIDFilter;
1958
+ /** Filter by the object’s `tableStatsSummaryTableName` field. */
1959
+ tableStatsSummaryTableName?: StringFilter;
1946
1960
  }
1947
1961
  /** An input for mutations affecting `DbUsageModule` */
1948
1962
  export interface DbUsageModuleInput {
@@ -1960,19 +1974,19 @@ export interface DbUsageModuleInput {
1960
1974
  privateSchemaId?: string;
1961
1975
  privateSchemaName?: string;
1962
1976
  publicSchemaName?: string;
1963
- queryStatsDailyTableId?: string;
1964
- queryStatsDailyTableName?: string;
1965
1977
  queryStatsLogTableId?: string;
1966
1978
  queryStatsLogTableName?: string;
1979
+ queryStatsSummaryTableId?: string;
1980
+ queryStatsSummaryTableName?: string;
1967
1981
  retention?: string;
1968
- rollupDbQueryStatsDailyFunction?: string;
1969
- rollupDbTableStatsDailyFunction?: string;
1982
+ rollupDbQueryStatsUsageSummaryFunction?: string;
1983
+ rollupDbTableStatsUsageSummaryFunction?: string;
1970
1984
  schemaId?: string;
1971
1985
  scope?: string;
1972
- tableStatsDailyTableId?: string;
1973
- tableStatsDailyTableName?: string;
1974
1986
  tableStatsLogTableId?: string;
1975
1987
  tableStatsLogTableName?: string;
1988
+ tableStatsSummaryTableId?: string;
1989
+ tableStatsSummaryTableName?: string;
1976
1990
  }
1977
1991
  /** Represents an update to a `DbUsageModule`. Fields that are set will be updated. */
1978
1992
  export interface DbUsageModulePatch {
@@ -1990,19 +2004,19 @@ export interface DbUsageModulePatch {
1990
2004
  privateSchemaId?: string;
1991
2005
  privateSchemaName?: string;
1992
2006
  publicSchemaName?: string;
1993
- queryStatsDailyTableId?: string;
1994
- queryStatsDailyTableName?: string;
1995
2007
  queryStatsLogTableId?: string;
1996
2008
  queryStatsLogTableName?: string;
2009
+ queryStatsSummaryTableId?: string;
2010
+ queryStatsSummaryTableName?: string;
1997
2011
  retention?: string;
1998
- rollupDbQueryStatsDailyFunction?: string;
1999
- rollupDbTableStatsDailyFunction?: string;
2012
+ rollupDbQueryStatsUsageSummaryFunction?: string;
2013
+ rollupDbTableStatsUsageSummaryFunction?: string;
2000
2014
  schemaId?: string;
2001
2015
  scope?: string;
2002
- tableStatsDailyTableId?: string;
2003
- tableStatsDailyTableName?: string;
2004
2016
  tableStatsLogTableId?: string;
2005
2017
  tableStatsLogTableName?: string;
2018
+ tableStatsSummaryTableId?: string;
2019
+ tableStatsSummaryTableName?: string;
2006
2020
  }
2007
2021
  /** A filter to be used against `DefaultIdsModule` object types. All fields are combined with a logical ‘and.’ */
2008
2022
  export interface DefaultIdsModuleFilter {
@@ -2143,6 +2157,10 @@ export interface DeleteHierarchyModuleInput {
2143
2157
  clientMutationId?: string;
2144
2158
  id: string;
2145
2159
  }
2160
+ export interface DeleteHttpRouteModuleInput {
2161
+ clientMutationId?: string;
2162
+ id: string;
2163
+ }
2146
2164
  export interface DeleteI18NModuleInput {
2147
2165
  clientMutationId?: string;
2148
2166
  id: string;
@@ -2297,6 +2315,10 @@ export interface DeleteWebauthnCredentialsModuleInput {
2297
2315
  clientMutationId?: string;
2298
2316
  id: string;
2299
2317
  }
2318
+ export interface DeleteWebhookModuleInput {
2319
+ clientMutationId?: string;
2320
+ id: string;
2321
+ }
2300
2322
  /** A filter to be used against `DenormalizedTableField` object types. All fields are combined with a logical ‘and.’ */
2301
2323
  export interface DenormalizedTableFieldFilter {
2302
2324
  /** Checks for all expressions in this list. */
@@ -2366,10 +2388,10 @@ export interface DevicesModuleFilter {
2366
2388
  and?: DevicesModuleFilter[];
2367
2389
  /** Filter by the object’s `databaseId` field. */
2368
2390
  databaseId?: UUIDFilter;
2369
- /** Filter by the object’s `deviceSettingsTable` field. */
2370
- deviceSettingsTable?: StringFilter;
2371
2391
  /** Filter by the object’s `deviceSettingsTableId` field. */
2372
2392
  deviceSettingsTableId?: UUIDFilter;
2393
+ /** Filter by the object’s `deviceSettingsTableName` field. */
2394
+ deviceSettingsTableName?: StringFilter;
2373
2395
  /** Filter by the object’s `id` field. */
2374
2396
  id?: UUIDFilter;
2375
2397
  /** Negates the expression. */
@@ -2378,30 +2400,30 @@ export interface DevicesModuleFilter {
2378
2400
  or?: DevicesModuleFilter[];
2379
2401
  /** Filter by the object’s `schemaId` field. */
2380
2402
  schemaId?: UUIDFilter;
2381
- /** Filter by the object’s `userDevicesTable` field. */
2382
- userDevicesTable?: StringFilter;
2383
2403
  /** Filter by the object’s `userDevicesTableId` field. */
2384
2404
  userDevicesTableId?: UUIDFilter;
2405
+ /** Filter by the object’s `userDevicesTableName` field. */
2406
+ userDevicesTableName?: StringFilter;
2385
2407
  }
2386
2408
  /** An input for mutations affecting `DevicesModule` */
2387
2409
  export interface DevicesModuleInput {
2388
2410
  databaseId: string;
2389
- deviceSettingsTable?: string;
2390
2411
  deviceSettingsTableId?: string;
2412
+ deviceSettingsTableName?: string;
2391
2413
  id?: string;
2392
2414
  schemaId?: string;
2393
- userDevicesTable?: string;
2394
2415
  userDevicesTableId?: string;
2416
+ userDevicesTableName?: string;
2395
2417
  }
2396
2418
  /** Represents an update to a `DevicesModule`. Fields that are set will be updated. */
2397
2419
  export interface DevicesModulePatch {
2398
2420
  databaseId?: string;
2399
- deviceSettingsTable?: string;
2400
2421
  deviceSettingsTableId?: string;
2422
+ deviceSettingsTableName?: string;
2401
2423
  id?: string;
2402
2424
  schemaId?: string;
2403
- userDevicesTable?: string;
2404
2425
  userDevicesTableId?: string;
2426
+ userDevicesTableName?: string;
2405
2427
  }
2406
2428
  /** A filter to be used against `EmailsModule` object types. All fields are combined with a logical ‘and.’ */
2407
2429
  export interface EmailsModuleFilter {
@@ -3456,6 +3478,8 @@ export interface FunctionModuleFilter {
3456
3478
  entityField?: StringFilter;
3457
3479
  /** Filter by the object’s `entityTableId` field. */
3458
3480
  entityTableId?: UUIDFilter;
3481
+ /** Filter by the object’s `hasCron` field. */
3482
+ hasCron?: BooleanFilter;
3459
3483
  /** Filter by the object’s `id` field. */
3460
3484
  id?: UUIDFilter;
3461
3485
  /** Negates the expression. */
@@ -3476,6 +3500,8 @@ export interface FunctionModuleFilter {
3476
3500
  provisions?: JSONFilter;
3477
3501
  /** Filter by the object’s `publicSchemaName` field. */
3478
3502
  publicSchemaName?: StringFilter;
3503
+ /** Filter by the object’s `schedulesTableId` field. */
3504
+ schedulesTableId?: UUIDFilter;
3479
3505
  /** Filter by the object’s `schemaId` field. */
3480
3506
  schemaId?: UUIDFilter;
3481
3507
  /** Filter by the object’s `scope` field. */
@@ -3492,6 +3518,7 @@ export interface FunctionModuleInput {
3492
3518
  definitionsTableName?: string;
3493
3519
  entityField?: string;
3494
3520
  entityTableId?: string;
3521
+ hasCron?: boolean;
3495
3522
  id?: string;
3496
3523
  policies?: unknown;
3497
3524
  prefix?: string;
@@ -3500,6 +3527,7 @@ export interface FunctionModuleInput {
3500
3527
  privateSchemaName?: string;
3501
3528
  provisions?: unknown;
3502
3529
  publicSchemaName?: string;
3530
+ schedulesTableId?: string;
3503
3531
  schemaId?: string;
3504
3532
  scope?: string;
3505
3533
  }
@@ -3514,6 +3542,7 @@ export interface FunctionModulePatch {
3514
3542
  definitionsTableName?: string;
3515
3543
  entityField?: string;
3516
3544
  entityTableId?: string;
3545
+ hasCron?: boolean;
3517
3546
  id?: string;
3518
3547
  policies?: unknown;
3519
3548
  prefix?: string;
@@ -3522,6 +3551,7 @@ export interface FunctionModulePatch {
3522
3551
  privateSchemaName?: string;
3523
3552
  provisions?: unknown;
3524
3553
  publicSchemaName?: string;
3554
+ schedulesTableId?: string;
3525
3555
  schemaId?: string;
3526
3556
  scope?: string;
3527
3557
  }
@@ -3830,6 +3860,117 @@ export interface HierarchyModulePatch {
3830
3860
  sprtTableName?: string;
3831
3861
  usersTableId?: string;
3832
3862
  }
3863
+ /** A filter to be used against `HttpRouteModule` object types. All fields are combined with a logical ‘and.’ */
3864
+ export interface HttpRouteModuleFilter {
3865
+ /** Checks for all expressions in this list. */
3866
+ and?: HttpRouteModuleFilter[];
3867
+ /** Filter by the object’s `apiName` field. */
3868
+ apiName?: StringFilter;
3869
+ /** Filter by the object’s `databaseId` field. */
3870
+ databaseId?: UUIDFilter;
3871
+ /** Filter by the object’s `defaultPermissions` field. */
3872
+ defaultPermissions?: StringListFilter;
3873
+ /** Filter by the object’s `entityField` field. */
3874
+ entityField?: StringFilter;
3875
+ /** Filter by the object’s `entityTableId` field. */
3876
+ entityTableId?: UUIDFilter;
3877
+ /** Filter by the object’s `functionModule` relation. */
3878
+ functionModule?: FunctionModuleFilter;
3879
+ /** A related `functionModule` exists. */
3880
+ functionModuleExists?: boolean;
3881
+ /** Filter by the object’s `functionModuleId` field. */
3882
+ functionModuleId?: UUIDFilter;
3883
+ /** Filter by the object’s `httpRoutesTableId` field. */
3884
+ httpRoutesTableId?: UUIDFilter;
3885
+ /** Filter by the object’s `httpRoutesTableName` field. */
3886
+ httpRoutesTableName?: StringFilter;
3887
+ /** Filter by the object’s `id` field. */
3888
+ id?: UUIDFilter;
3889
+ /** Negates the expression. */
3890
+ not?: HttpRouteModuleFilter;
3891
+ /** Checks for any expressions in this list. */
3892
+ or?: HttpRouteModuleFilter[];
3893
+ /** Filter by the object’s `policies` field. */
3894
+ policies?: JSONFilter;
3895
+ /** Filter by the object’s `prefix` field. */
3896
+ prefix?: StringFilter;
3897
+ /** Filter by the object’s `privateApiName` field. */
3898
+ privateApiName?: StringFilter;
3899
+ /** Filter by the object’s `privateSchemaId` field. */
3900
+ privateSchemaId?: UUIDFilter;
3901
+ /** Filter by the object’s `privateSchemaName` field. */
3902
+ privateSchemaName?: StringFilter;
3903
+ /** Filter by the object’s `provisions` field. */
3904
+ provisions?: JSONFilter;
3905
+ /** Filter by the object’s `publicSchemaName` field. */
3906
+ publicSchemaName?: StringFilter;
3907
+ /** Filter by the object’s `resolverFunctionName` field. */
3908
+ resolverFunctionName?: StringFilter;
3909
+ /** Filter by the object’s `resourceModule` relation. */
3910
+ resourceModule?: ResourceModuleFilter;
3911
+ /** A related `resourceModule` exists. */
3912
+ resourceModuleExists?: boolean;
3913
+ /** Filter by the object’s `resourceModuleId` field. */
3914
+ resourceModuleId?: UUIDFilter;
3915
+ /** Filter by the object’s `schemaId` field. */
3916
+ schemaId?: UUIDFilter;
3917
+ /** Filter by the object’s `scope` field. */
3918
+ scope?: StringFilter;
3919
+ /** Filter by the object’s `storageModule` relation. */
3920
+ storageModule?: StorageModuleFilter;
3921
+ /** A related `storageModule` exists. */
3922
+ storageModuleExists?: boolean;
3923
+ /** Filter by the object’s `storageModuleId` field. */
3924
+ storageModuleId?: UUIDFilter;
3925
+ }
3926
+ /** An input for mutations affecting `HttpRouteModule` */
3927
+ export interface HttpRouteModuleInput {
3928
+ apiName?: string;
3929
+ databaseId: string;
3930
+ defaultPermissions?: string[];
3931
+ entityField?: string;
3932
+ entityTableId?: string;
3933
+ functionModuleId?: string;
3934
+ httpRoutesTableId?: string;
3935
+ httpRoutesTableName?: string;
3936
+ id?: string;
3937
+ policies?: unknown;
3938
+ prefix?: string;
3939
+ privateApiName?: string;
3940
+ privateSchemaId?: string;
3941
+ privateSchemaName?: string;
3942
+ provisions?: unknown;
3943
+ publicSchemaName?: string;
3944
+ resolverFunctionName?: string;
3945
+ resourceModuleId?: string;
3946
+ schemaId?: string;
3947
+ scope?: string;
3948
+ storageModuleId?: string;
3949
+ }
3950
+ /** Represents an update to a `HttpRouteModule`. Fields that are set will be updated. */
3951
+ export interface HttpRouteModulePatch {
3952
+ apiName?: string;
3953
+ databaseId?: string;
3954
+ defaultPermissions?: string[];
3955
+ entityField?: string;
3956
+ entityTableId?: string;
3957
+ functionModuleId?: string;
3958
+ httpRoutesTableId?: string;
3959
+ httpRoutesTableName?: string;
3960
+ id?: string;
3961
+ policies?: unknown;
3962
+ prefix?: string;
3963
+ privateApiName?: string;
3964
+ privateSchemaId?: string;
3965
+ privateSchemaName?: string;
3966
+ provisions?: unknown;
3967
+ publicSchemaName?: string;
3968
+ resolverFunctionName?: string;
3969
+ resourceModuleId?: string;
3970
+ schemaId?: string;
3971
+ scope?: string;
3972
+ storageModuleId?: string;
3973
+ }
3833
3974
  /** A filter to be used against `I18NModule` object types. All fields are combined with a logical ‘and.’ */
3834
3975
  export interface I18NModuleFilter {
3835
3976
  /** Checks for all expressions in this list. */
@@ -3990,10 +4131,10 @@ export interface InferenceLogModuleFilter {
3990
4131
  schemaId?: UUIDFilter;
3991
4132
  /** Filter by the object’s `scope` field. */
3992
4133
  scope?: StringFilter;
3993
- /** Filter by the object’s `usageDailyTableId` field. */
3994
- usageDailyTableId?: UUIDFilter;
3995
- /** Filter by the object’s `usageDailyTableName` field. */
3996
- usageDailyTableName?: StringFilter;
4134
+ /** Filter by the object’s `usageSummaryTableId` field. */
4135
+ usageSummaryTableId?: UUIDFilter;
4136
+ /** Filter by the object’s `usageSummaryTableName` field. */
4137
+ usageSummaryTableName?: StringFilter;
3997
4138
  }
3998
4139
  /** An input for mutations affecting `InferenceLogModule` */
3999
4140
  export interface InferenceLogModuleInput {
@@ -4015,8 +4156,8 @@ export interface InferenceLogModuleInput {
4015
4156
  retention?: string;
4016
4157
  schemaId?: string;
4017
4158
  scope?: string;
4018
- usageDailyTableId?: string;
4019
- usageDailyTableName?: string;
4159
+ usageSummaryTableId?: string;
4160
+ usageSummaryTableName?: string;
4020
4161
  }
4021
4162
  /** Represents an update to a `InferenceLogModule`. Fields that are set will be updated. */
4022
4163
  export interface InferenceLogModulePatch {
@@ -4038,8 +4179,8 @@ export interface InferenceLogModulePatch {
4038
4179
  retention?: string;
4039
4180
  schemaId?: string;
4040
4181
  scope?: string;
4041
- usageDailyTableId?: string;
4042
- usageDailyTableName?: string;
4182
+ usageSummaryTableId?: string;
4183
+ usageSummaryTableName?: string;
4043
4184
  }
4044
4185
  /** A filter to be used against `InfraConfigModule` object types. All fields are combined with a logical ‘and.’ */
4045
4186
  export interface InfraConfigModuleFilter {
@@ -5847,22 +5988,22 @@ export interface RateLimitsModuleFilter {
5847
5988
  databaseId?: UUIDFilter;
5848
5989
  /** Filter by the object’s `id` field. */
5849
5990
  id?: UUIDFilter;
5850
- /** Filter by the object’s `ipRateLimitsTable` field. */
5851
- ipRateLimitsTable?: StringFilter;
5852
5991
  /** Filter by the object’s `ipRateLimitsTableId` field. */
5853
5992
  ipRateLimitsTableId?: UUIDFilter;
5993
+ /** Filter by the object’s `ipRateLimitsTableName` field. */
5994
+ ipRateLimitsTableName?: StringFilter;
5854
5995
  /** Negates the expression. */
5855
5996
  not?: RateLimitsModuleFilter;
5856
5997
  /** Checks for any expressions in this list. */
5857
5998
  or?: RateLimitsModuleFilter[];
5858
- /** Filter by the object’s `rateLimitSettingsTable` field. */
5859
- rateLimitSettingsTable?: StringFilter;
5860
5999
  /** Filter by the object’s `rateLimitSettingsTableId` field. */
5861
6000
  rateLimitSettingsTableId?: UUIDFilter;
5862
- /** Filter by the object’s `rateLimitsTable` field. */
5863
- rateLimitsTable?: StringFilter;
6001
+ /** Filter by the object’s `rateLimitSettingsTableName` field. */
6002
+ rateLimitSettingsTableName?: StringFilter;
5864
6003
  /** Filter by the object’s `rateLimitsTableId` field. */
5865
6004
  rateLimitsTableId?: UUIDFilter;
6005
+ /** Filter by the object’s `rateLimitsTableName` field. */
6006
+ rateLimitsTableName?: StringFilter;
5866
6007
  /** Filter by the object’s `schemaId` field. */
5867
6008
  schemaId?: UUIDFilter;
5868
6009
  }
@@ -5870,24 +6011,24 @@ export interface RateLimitsModuleFilter {
5870
6011
  export interface RateLimitsModuleInput {
5871
6012
  databaseId: string;
5872
6013
  id?: string;
5873
- ipRateLimitsTable?: string;
5874
6014
  ipRateLimitsTableId?: string;
5875
- rateLimitSettingsTable?: string;
6015
+ ipRateLimitsTableName?: string;
5876
6016
  rateLimitSettingsTableId?: string;
5877
- rateLimitsTable?: string;
6017
+ rateLimitSettingsTableName?: string;
5878
6018
  rateLimitsTableId?: string;
6019
+ rateLimitsTableName?: string;
5879
6020
  schemaId?: string;
5880
6021
  }
5881
6022
  /** Represents an update to a `RateLimitsModule`. Fields that are set will be updated. */
5882
6023
  export interface RateLimitsModulePatch {
5883
6024
  databaseId?: string;
5884
6025
  id?: string;
5885
- ipRateLimitsTable?: string;
5886
6026
  ipRateLimitsTableId?: string;
5887
- rateLimitSettingsTable?: string;
6027
+ ipRateLimitsTableName?: string;
5888
6028
  rateLimitSettingsTableId?: string;
5889
- rateLimitsTable?: string;
6029
+ rateLimitSettingsTableName?: string;
5890
6030
  rateLimitsTableId?: string;
6031
+ rateLimitsTableName?: string;
5891
6032
  schemaId?: string;
5892
6033
  }
5893
6034
  /** A filter to be used against `RealtimeModule` object types. All fields are combined with a logical ‘and.’ */
@@ -6282,6 +6423,14 @@ export interface ResourceModuleFilter {
6282
6423
  entityTableId?: UUIDFilter;
6283
6424
  /** Filter by the object’s `id` field. */
6284
6425
  id?: UUIDFilter;
6426
+ /** Filter by the object’s `installationStoreName` field. */
6427
+ installationStoreName?: StringFilter;
6428
+ /** Filter by the object’s `merkleStoreModule` relation. */
6429
+ merkleStoreModule?: MerkleStoreModuleFilter;
6430
+ /** A related `merkleStoreModule` exists. */
6431
+ merkleStoreModuleExists?: boolean;
6432
+ /** Filter by the object’s `merkleStoreModuleId` field. */
6433
+ merkleStoreModuleId?: UUIDFilter;
6285
6434
  /** Filter by the object’s `namespaceModule` relation. */
6286
6435
  namespaceModule?: NamespaceModuleFilter;
6287
6436
  /** A related `namespaceModule` exists. */
@@ -6310,6 +6459,8 @@ export interface ResourceModuleFilter {
6310
6459
  requirementsStateViewName?: StringFilter;
6311
6460
  /** Filter by the object’s `resolvedRequirementsViewName` field. */
6312
6461
  resolvedRequirementsViewName?: StringFilter;
6462
+ /** Filter by the object’s `resourceBillingRollupFunction` field. */
6463
+ resourceBillingRollupFunction?: StringFilter;
6313
6464
  /** Filter by the object’s `resourceDefinitionsTableId` field. */
6314
6465
  resourceDefinitionsTableId?: UUIDFilter;
6315
6466
  /** Filter by the object’s `resourceDefinitionsTableName` field. */
@@ -6318,14 +6469,28 @@ export interface ResourceModuleFilter {
6318
6469
  resourceEventsTableId?: UUIDFilter;
6319
6470
  /** Filter by the object’s `resourceEventsTableName` field. */
6320
6471
  resourceEventsTableName?: StringFilter;
6472
+ /** Filter by the object’s `resourceInstallationsTableId` field. */
6473
+ resourceInstallationsTableId?: UUIDFilter;
6474
+ /** Filter by the object’s `resourceInstallationsTableName` field. */
6475
+ resourceInstallationsTableName?: StringFilter;
6321
6476
  /** Filter by the object’s `resourceStatusChecksTableId` field. */
6322
6477
  resourceStatusChecksTableId?: UUIDFilter;
6323
6478
  /** Filter by the object’s `resourceStatusChecksTableName` field. */
6324
6479
  resourceStatusChecksTableName?: StringFilter;
6480
+ /** Filter by the object’s `resourceUsageLogTableId` field. */
6481
+ resourceUsageLogTableId?: UUIDFilter;
6482
+ /** Filter by the object’s `resourceUsageLogTableName` field. */
6483
+ resourceUsageLogTableName?: StringFilter;
6484
+ /** Filter by the object’s `resourceUsageSummaryTableId` field. */
6485
+ resourceUsageSummaryTableId?: UUIDFilter;
6486
+ /** Filter by the object’s `resourceUsageSummaryTableName` field. */
6487
+ resourceUsageSummaryTableName?: StringFilter;
6325
6488
  /** Filter by the object’s `resourcesTableId` field. */
6326
6489
  resourcesTableId?: UUIDFilter;
6327
6490
  /** Filter by the object’s `resourcesTableName` field. */
6328
6491
  resourcesTableName?: StringFilter;
6492
+ /** Filter by the object’s `rollupResourceUsageSummaryFunction` field. */
6493
+ rollupResourceUsageSummaryFunction?: StringFilter;
6329
6494
  /** Filter by the object’s `schemaId` field. */
6330
6495
  schemaId?: UUIDFilter;
6331
6496
  /** Filter by the object’s `scope` field. */
@@ -6339,6 +6504,8 @@ export interface ResourceModuleInput {
6339
6504
  entityField?: string;
6340
6505
  entityTableId?: string;
6341
6506
  id?: string;
6507
+ installationStoreName?: string;
6508
+ merkleStoreModuleId?: string;
6342
6509
  namespaceModuleId?: string;
6343
6510
  policies?: unknown;
6344
6511
  prefix?: string;
@@ -6349,14 +6516,22 @@ export interface ResourceModuleInput {
6349
6516
  publicSchemaName?: string;
6350
6517
  requirementsStateViewName?: string;
6351
6518
  resolvedRequirementsViewName?: string;
6519
+ resourceBillingRollupFunction?: string;
6352
6520
  resourceDefinitionsTableId?: string;
6353
6521
  resourceDefinitionsTableName?: string;
6354
6522
  resourceEventsTableId?: string;
6355
6523
  resourceEventsTableName?: string;
6524
+ resourceInstallationsTableId?: string;
6525
+ resourceInstallationsTableName?: string;
6356
6526
  resourceStatusChecksTableId?: string;
6357
6527
  resourceStatusChecksTableName?: string;
6528
+ resourceUsageLogTableId?: string;
6529
+ resourceUsageLogTableName?: string;
6530
+ resourceUsageSummaryTableId?: string;
6531
+ resourceUsageSummaryTableName?: string;
6358
6532
  resourcesTableId?: string;
6359
6533
  resourcesTableName?: string;
6534
+ rollupResourceUsageSummaryFunction?: string;
6360
6535
  schemaId?: string;
6361
6536
  scope?: string;
6362
6537
  }
@@ -6368,6 +6543,8 @@ export interface ResourceModulePatch {
6368
6543
  entityField?: string;
6369
6544
  entityTableId?: string;
6370
6545
  id?: string;
6546
+ installationStoreName?: string;
6547
+ merkleStoreModuleId?: string;
6371
6548
  namespaceModuleId?: string;
6372
6549
  policies?: unknown;
6373
6550
  prefix?: string;
@@ -6378,14 +6555,22 @@ export interface ResourceModulePatch {
6378
6555
  publicSchemaName?: string;
6379
6556
  requirementsStateViewName?: string;
6380
6557
  resolvedRequirementsViewName?: string;
6558
+ resourceBillingRollupFunction?: string;
6381
6559
  resourceDefinitionsTableId?: string;
6382
6560
  resourceDefinitionsTableName?: string;
6383
6561
  resourceEventsTableId?: string;
6384
6562
  resourceEventsTableName?: string;
6563
+ resourceInstallationsTableId?: string;
6564
+ resourceInstallationsTableName?: string;
6385
6565
  resourceStatusChecksTableId?: string;
6386
6566
  resourceStatusChecksTableName?: string;
6567
+ resourceUsageLogTableId?: string;
6568
+ resourceUsageLogTableName?: string;
6569
+ resourceUsageSummaryTableId?: string;
6570
+ resourceUsageSummaryTableName?: string;
6387
6571
  resourcesTableId?: string;
6388
6572
  resourcesTableName?: string;
6573
+ rollupResourceUsageSummaryFunction?: string;
6389
6574
  schemaId?: string;
6390
6575
  scope?: string;
6391
6576
  }
@@ -6563,7 +6748,7 @@ export interface SessionSecretsModuleInput {
6563
6748
  databaseId: string;
6564
6749
  id?: string;
6565
6750
  schemaId?: string;
6566
- /** Resolved reference to sessions_module.sessions_table, used to FK session_secrets.session_id with ON DELETE CASCADE. */
6751
+ /** Resolved reference to sessions_module.sessions_table_name, used to FK session_secrets.session_id with ON DELETE CASCADE. */
6567
6752
  sessionsTableId?: string;
6568
6753
  tableId?: string;
6569
6754
  tableName?: string;
@@ -6573,7 +6758,7 @@ export interface SessionSecretsModulePatch {
6573
6758
  databaseId?: string;
6574
6759
  id?: string;
6575
6760
  schemaId?: string;
6576
- /** Resolved reference to sessions_module.sessions_table, used to FK session_secrets.session_id with ON DELETE CASCADE. */
6761
+ /** Resolved reference to sessions_module.sessions_table_name, used to FK session_secrets.session_id with ON DELETE CASCADE. */
6577
6762
  sessionsTableId?: string;
6578
6763
  tableId?: string;
6579
6764
  tableName?: string;
@@ -6582,10 +6767,10 @@ export interface SessionSecretsModulePatch {
6582
6767
  export interface SessionsModuleFilter {
6583
6768
  /** Checks for all expressions in this list. */
6584
6769
  and?: SessionsModuleFilter[];
6585
- /** Filter by the object’s `authSettingsTable` field. */
6586
- authSettingsTable?: StringFilter;
6587
6770
  /** Filter by the object’s `authSettingsTableId` field. */
6588
6771
  authSettingsTableId?: UUIDFilter;
6772
+ /** Filter by the object’s `authSettingsTableName` field. */
6773
+ authSettingsTableName?: StringFilter;
6589
6774
  /** Filter by the object’s `databaseId` field. */
6590
6775
  databaseId?: UUIDFilter;
6591
6776
  /** Filter by the object’s `id` field. */
@@ -6596,45 +6781,45 @@ export interface SessionsModuleFilter {
6596
6781
  or?: SessionsModuleFilter[];
6597
6782
  /** Filter by the object’s `schemaId` field. */
6598
6783
  schemaId?: UUIDFilter;
6599
- /** Filter by the object’s `sessionCredentialsTable` field. */
6600
- sessionCredentialsTable?: StringFilter;
6601
6784
  /** Filter by the object’s `sessionCredentialsTableId` field. */
6602
6785
  sessionCredentialsTableId?: UUIDFilter;
6786
+ /** Filter by the object’s `sessionCredentialsTableName` field. */
6787
+ sessionCredentialsTableName?: StringFilter;
6603
6788
  /** Filter by the object’s `sessionsDefaultExpiration` field. */
6604
6789
  sessionsDefaultExpiration?: IntervalFilter;
6605
- /** Filter by the object’s `sessionsTable` field. */
6606
- sessionsTable?: StringFilter;
6607
6790
  /** Filter by the object’s `sessionsTableId` field. */
6608
6791
  sessionsTableId?: UUIDFilter;
6792
+ /** Filter by the object’s `sessionsTableName` field. */
6793
+ sessionsTableName?: StringFilter;
6609
6794
  /** Filter by the object’s `usersTableId` field. */
6610
6795
  usersTableId?: UUIDFilter;
6611
6796
  }
6612
6797
  /** An input for mutations affecting `SessionsModule` */
6613
6798
  export interface SessionsModuleInput {
6614
- authSettingsTable?: string;
6615
6799
  authSettingsTableId?: string;
6800
+ authSettingsTableName?: string;
6616
6801
  databaseId: string;
6617
6802
  id?: string;
6618
6803
  schemaId?: string;
6619
- sessionCredentialsTable?: string;
6620
6804
  sessionCredentialsTableId?: string;
6805
+ sessionCredentialsTableName?: string;
6621
6806
  sessionsDefaultExpiration?: IntervalInput;
6622
- sessionsTable?: string;
6623
6807
  sessionsTableId?: string;
6808
+ sessionsTableName?: string;
6624
6809
  usersTableId?: string;
6625
6810
  }
6626
6811
  /** Represents an update to a `SessionsModule`. Fields that are set will be updated. */
6627
6812
  export interface SessionsModulePatch {
6628
- authSettingsTable?: string;
6629
6813
  authSettingsTableId?: string;
6814
+ authSettingsTableName?: string;
6630
6815
  databaseId?: string;
6631
6816
  id?: string;
6632
6817
  schemaId?: string;
6633
- sessionCredentialsTable?: string;
6634
6818
  sessionCredentialsTableId?: string;
6819
+ sessionCredentialsTableName?: string;
6635
6820
  sessionsDefaultExpiration?: IntervalInput;
6636
- sessionsTable?: string;
6637
6821
  sessionsTableId?: string;
6822
+ sessionsTableName?: string;
6638
6823
  usersTableId?: string;
6639
6824
  }
6640
6825
  /** A filter to be used against `StorageLogModule` object types. All fields are combined with a logical ‘and.’ */
@@ -6681,10 +6866,10 @@ export interface StorageLogModuleFilter {
6681
6866
  storageLogTableId?: UUIDFilter;
6682
6867
  /** Filter by the object’s `storageLogTableName` field. */
6683
6868
  storageLogTableName?: StringFilter;
6684
- /** Filter by the object’s `usageDailyTableId` field. */
6685
- usageDailyTableId?: UUIDFilter;
6686
- /** Filter by the object’s `usageDailyTableName` field. */
6687
- usageDailyTableName?: StringFilter;
6869
+ /** Filter by the object’s `usageSummaryTableId` field. */
6870
+ usageSummaryTableId?: UUIDFilter;
6871
+ /** Filter by the object’s `usageSummaryTableName` field. */
6872
+ usageSummaryTableName?: StringFilter;
6688
6873
  }
6689
6874
  /** An input for mutations affecting `StorageLogModule` */
6690
6875
  export interface StorageLogModuleInput {
@@ -6706,8 +6891,8 @@ export interface StorageLogModuleInput {
6706
6891
  scope?: string;
6707
6892
  storageLogTableId?: string;
6708
6893
  storageLogTableName?: string;
6709
- usageDailyTableId?: string;
6710
- usageDailyTableName?: string;
6894
+ usageSummaryTableId?: string;
6895
+ usageSummaryTableName?: string;
6711
6896
  }
6712
6897
  /** Represents an update to a `StorageLogModule`. Fields that are set will be updated. */
6713
6898
  export interface StorageLogModulePatch {
@@ -6729,8 +6914,8 @@ export interface StorageLogModulePatch {
6729
6914
  scope?: string;
6730
6915
  storageLogTableId?: string;
6731
6916
  storageLogTableName?: string;
6732
- usageDailyTableId?: string;
6733
- usageDailyTableName?: string;
6917
+ usageSummaryTableId?: string;
6918
+ usageSummaryTableName?: string;
6734
6919
  }
6735
6920
  /** A filter to be used against `StorageModule` object types. All fields are combined with a logical ‘and.’ */
6736
6921
  export interface StorageModuleFilter {
@@ -6951,10 +7136,10 @@ export interface TransferLogModuleFilter {
6951
7136
  transferLogTableId?: UUIDFilter;
6952
7137
  /** Filter by the object’s `transferLogTableName` field. */
6953
7138
  transferLogTableName?: StringFilter;
6954
- /** Filter by the object’s `usageDailyTableId` field. */
6955
- usageDailyTableId?: UUIDFilter;
6956
- /** Filter by the object’s `usageDailyTableName` field. */
6957
- usageDailyTableName?: StringFilter;
7139
+ /** Filter by the object’s `usageSummaryTableId` field. */
7140
+ usageSummaryTableId?: UUIDFilter;
7141
+ /** Filter by the object’s `usageSummaryTableName` field. */
7142
+ usageSummaryTableName?: StringFilter;
6958
7143
  }
6959
7144
  /** An input for mutations affecting `TransferLogModule` */
6960
7145
  export interface TransferLogModuleInput {
@@ -6976,8 +7161,8 @@ export interface TransferLogModuleInput {
6976
7161
  scope?: string;
6977
7162
  transferLogTableId?: string;
6978
7163
  transferLogTableName?: string;
6979
- usageDailyTableId?: string;
6980
- usageDailyTableName?: string;
7164
+ usageSummaryTableId?: string;
7165
+ usageSummaryTableName?: string;
6981
7166
  }
6982
7167
  /** Represents an update to a `TransferLogModule`. Fields that are set will be updated. */
6983
7168
  export interface TransferLogModulePatch {
@@ -6999,8 +7184,8 @@ export interface TransferLogModulePatch {
6999
7184
  scope?: string;
7000
7185
  transferLogTableId?: string;
7001
7186
  transferLogTableName?: string;
7002
- usageDailyTableId?: string;
7003
- usageDailyTableName?: string;
7187
+ usageSummaryTableId?: string;
7188
+ usageSummaryTableName?: string;
7004
7189
  }
7005
7190
  export interface UpdateAgentModuleInput {
7006
7191
  /** An object where the defined keys will be set on the `AgentModule` being updated. */
@@ -7174,6 +7359,12 @@ export interface UpdateHierarchyModuleInput {
7174
7359
  hierarchyModulePatch: HierarchyModulePatch;
7175
7360
  id: string;
7176
7361
  }
7362
+ export interface UpdateHttpRouteModuleInput {
7363
+ clientMutationId?: string;
7364
+ /** An object where the defined keys will be set on the `HttpRouteModule` being updated. */
7365
+ httpRouteModulePatch: HttpRouteModulePatch;
7366
+ id: string;
7367
+ }
7177
7368
  export interface UpdateI18NModuleInput {
7178
7369
  clientMutationId?: string;
7179
7370
  /** An object where the defined keys will be set on the `I18NModule` being updated. */
@@ -7404,6 +7595,12 @@ export interface UpdateWebauthnCredentialsModuleInput {
7404
7595
  /** An object where the defined keys will be set on the `WebauthnCredentialsModule` being updated. */
7405
7596
  webauthnCredentialsModulePatch: WebauthnCredentialsModulePatch;
7406
7597
  }
7598
+ export interface UpdateWebhookModuleInput {
7599
+ clientMutationId?: string;
7600
+ id: string;
7601
+ /** An object where the defined keys will be set on the `WebhookModule` being updated. */
7602
+ webhookModulePatch: WebhookModulePatch;
7603
+ }
7407
7604
  /** A filter to be used against `UserAuthModule` object types. All fields are combined with a logical ‘and.’ */
7408
7605
  export interface UserAuthModuleFilter {
7409
7606
  /** Checks for all expressions in this list. */
@@ -7839,6 +8036,129 @@ export interface WebauthnCredentialsModulePatch {
7839
8036
  tableId?: string;
7840
8037
  tableName?: string;
7841
8038
  }
8039
+ /** A filter to be used against `WebhookModule` object types. All fields are combined with a logical ‘and.’ */
8040
+ export interface WebhookModuleFilter {
8041
+ /** Checks for all expressions in this list. */
8042
+ and?: WebhookModuleFilter[];
8043
+ /** Filter by the object’s `apiName` field. */
8044
+ apiName?: StringFilter;
8045
+ /** Filter by the object’s `databaseId` field. */
8046
+ databaseId?: UUIDFilter;
8047
+ /** Filter by the object’s `defaultPermissions` field. */
8048
+ defaultPermissions?: StringListFilter;
8049
+ /** Filter by the object’s `entityField` field. */
8050
+ entityField?: StringFilter;
8051
+ /** Filter by the object’s `entityTableId` field. */
8052
+ entityTableId?: UUIDFilter;
8053
+ /** Filter by the object’s `functionInvocationModule` relation. */
8054
+ functionInvocationModule?: FunctionInvocationModuleFilter;
8055
+ /** A related `functionInvocationModule` exists. */
8056
+ functionInvocationModuleExists?: boolean;
8057
+ /** Filter by the object’s `functionInvocationModuleId` field. */
8058
+ functionInvocationModuleId?: UUIDFilter;
8059
+ /** Filter by the object’s `functionModule` relation. */
8060
+ functionModule?: FunctionModuleFilter;
8061
+ /** A related `functionModule` exists. */
8062
+ functionModuleExists?: boolean;
8063
+ /** Filter by the object’s `functionModuleId` field. */
8064
+ functionModuleId?: UUIDFilter;
8065
+ /** Filter by the object’s `id` field. */
8066
+ id?: UUIDFilter;
8067
+ /** Filter by the object’s `infraSecretsModule` relation. */
8068
+ infraSecretsModule?: InfraSecretsModuleFilter;
8069
+ /** A related `infraSecretsModule` exists. */
8070
+ infraSecretsModuleExists?: boolean;
8071
+ /** Filter by the object’s `infraSecretsModuleId` field. */
8072
+ infraSecretsModuleId?: UUIDFilter;
8073
+ /** Filter by the object’s `namespaceModule` relation. */
8074
+ namespaceModule?: NamespaceModuleFilter;
8075
+ /** A related `namespaceModule` exists. */
8076
+ namespaceModuleExists?: boolean;
8077
+ /** Filter by the object’s `namespaceModuleId` field. */
8078
+ namespaceModuleId?: UUIDFilter;
8079
+ /** Negates the expression. */
8080
+ not?: WebhookModuleFilter;
8081
+ /** Checks for any expressions in this list. */
8082
+ or?: WebhookModuleFilter[];
8083
+ /** Filter by the object’s `policies` field. */
8084
+ policies?: JSONFilter;
8085
+ /** Filter by the object’s `prefix` field. */
8086
+ prefix?: StringFilter;
8087
+ /** Filter by the object’s `privateApiName` field. */
8088
+ privateApiName?: StringFilter;
8089
+ /** Filter by the object’s `privateSchemaId` field. */
8090
+ privateSchemaId?: UUIDFilter;
8091
+ /** Filter by the object’s `privateSchemaName` field. */
8092
+ privateSchemaName?: StringFilter;
8093
+ /** Filter by the object’s `provisions` field. */
8094
+ provisions?: JSONFilter;
8095
+ /** Filter by the object’s `publicSchemaName` field. */
8096
+ publicSchemaName?: StringFilter;
8097
+ /** Filter by the object’s `schemaId` field. */
8098
+ schemaId?: UUIDFilter;
8099
+ /** Filter by the object’s `scope` field. */
8100
+ scope?: StringFilter;
8101
+ /** Filter by the object’s `webhookEndpointsTableId` field. */
8102
+ webhookEndpointsTableId?: UUIDFilter;
8103
+ /** Filter by the object’s `webhookEndpointsTableName` field. */
8104
+ webhookEndpointsTableName?: StringFilter;
8105
+ /** Filter by the object’s `webhookEventsTableId` field. */
8106
+ webhookEventsTableId?: UUIDFilter;
8107
+ /** Filter by the object’s `webhookEventsTableName` field. */
8108
+ webhookEventsTableName?: StringFilter;
8109
+ }
8110
+ /** An input for mutations affecting `WebhookModule` */
8111
+ export interface WebhookModuleInput {
8112
+ apiName?: string;
8113
+ databaseId: string;
8114
+ defaultPermissions?: string[];
8115
+ entityField?: string;
8116
+ entityTableId?: string;
8117
+ functionInvocationModuleId?: string;
8118
+ functionModuleId?: string;
8119
+ id?: string;
8120
+ infraSecretsModuleId?: string;
8121
+ namespaceModuleId?: string;
8122
+ policies?: unknown;
8123
+ prefix?: string;
8124
+ privateApiName?: string;
8125
+ privateSchemaId?: string;
8126
+ privateSchemaName?: string;
8127
+ provisions?: unknown;
8128
+ publicSchemaName?: string;
8129
+ schemaId?: string;
8130
+ scope?: string;
8131
+ webhookEndpointsTableId?: string;
8132
+ webhookEndpointsTableName?: string;
8133
+ webhookEventsTableId?: string;
8134
+ webhookEventsTableName?: string;
8135
+ }
8136
+ /** Represents an update to a `WebhookModule`. Fields that are set will be updated. */
8137
+ export interface WebhookModulePatch {
8138
+ apiName?: string;
8139
+ databaseId?: string;
8140
+ defaultPermissions?: string[];
8141
+ entityField?: string;
8142
+ entityTableId?: string;
8143
+ functionInvocationModuleId?: string;
8144
+ functionModuleId?: string;
8145
+ id?: string;
8146
+ infraSecretsModuleId?: string;
8147
+ namespaceModuleId?: string;
8148
+ policies?: unknown;
8149
+ prefix?: string;
8150
+ privateApiName?: string;
8151
+ privateSchemaId?: string;
8152
+ privateSchemaName?: string;
8153
+ provisions?: unknown;
8154
+ publicSchemaName?: string;
8155
+ schemaId?: string;
8156
+ scope?: string;
8157
+ webhookEndpointsTableId?: string;
8158
+ webhookEndpointsTableName?: string;
8159
+ webhookEventsTableId?: string;
8160
+ webhookEventsTableName?: string;
8161
+ }
7842
8162
  /** Root meta schema type */
7843
8163
  export interface MetaSchema {
7844
8164
  tables: MetaTable[];
@@ -8039,6 +8359,13 @@ export interface HierarchyModuleConnection {
8039
8359
  pageInfo: PageInfo;
8040
8360
  totalCount: number;
8041
8361
  }
8362
+ /** A connection to a list of `HttpRouteModule` values. */
8363
+ export interface HttpRouteModuleConnection {
8364
+ edges: HttpRouteModuleEdge[];
8365
+ nodes: HttpRouteModule[];
8366
+ pageInfo: PageInfo;
8367
+ totalCount: number;
8368
+ }
8042
8369
  /** A connection to a list of `I18NModule` values. */
8043
8370
  export interface I18NModuleConnection {
8044
8371
  edges: I18NModuleEdge[];
@@ -8305,6 +8632,13 @@ export interface WebauthnCredentialsModuleConnection {
8305
8632
  pageInfo: PageInfo;
8306
8633
  totalCount: number;
8307
8634
  }
8635
+ /** A connection to a list of `WebhookModule` values. */
8636
+ export interface WebhookModuleConnection {
8637
+ edges: WebhookModuleEdge[];
8638
+ nodes: WebhookModule[];
8639
+ pageInfo: PageInfo;
8640
+ totalCount: number;
8641
+ }
8308
8642
  export interface ConstructBlueprintPayload {
8309
8643
  clientMutationId?: string | null;
8310
8644
  result?: string | null;
@@ -8481,6 +8815,12 @@ export interface CreateHierarchyModulePayload {
8481
8815
  hierarchyModule?: HierarchyModule | null;
8482
8816
  hierarchyModuleEdge?: HierarchyModuleEdge | null;
8483
8817
  }
8818
+ export interface CreateHttpRouteModulePayload {
8819
+ clientMutationId?: string | null;
8820
+ /** The `HttpRouteModule` that was created by this mutation. */
8821
+ httpRouteModule?: HttpRouteModule | null;
8822
+ httpRouteModuleEdge?: HttpRouteModuleEdge | null;
8823
+ }
8484
8824
  export interface CreateI18NModulePayload {
8485
8825
  clientMutationId?: string | null;
8486
8826
  /** The `I18NModule` that was created by this mutation. */
@@ -8709,6 +9049,12 @@ export interface CreateWebauthnCredentialsModulePayload {
8709
9049
  webauthnCredentialsModule?: WebauthnCredentialsModule | null;
8710
9050
  webauthnCredentialsModuleEdge?: WebauthnCredentialsModuleEdge | null;
8711
9051
  }
9052
+ export interface CreateWebhookModulePayload {
9053
+ clientMutationId?: string | null;
9054
+ /** The `WebhookModule` that was created by this mutation. */
9055
+ webhookModule?: WebhookModule | null;
9056
+ webhookModuleEdge?: WebhookModuleEdge | null;
9057
+ }
8712
9058
  export interface DeleteAgentModulePayload {
8713
9059
  /** The `AgentModule` that was deleted by this mutation. */
8714
9060
  agentModule?: AgentModule | null;
@@ -8877,6 +9223,12 @@ export interface DeleteHierarchyModulePayload {
8877
9223
  hierarchyModule?: HierarchyModule | null;
8878
9224
  hierarchyModuleEdge?: HierarchyModuleEdge | null;
8879
9225
  }
9226
+ export interface DeleteHttpRouteModulePayload {
9227
+ clientMutationId?: string | null;
9228
+ /** The `HttpRouteModule` that was deleted by this mutation. */
9229
+ httpRouteModule?: HttpRouteModule | null;
9230
+ httpRouteModuleEdge?: HttpRouteModuleEdge | null;
9231
+ }
8880
9232
  export interface DeleteI18NModulePayload {
8881
9233
  clientMutationId?: string | null;
8882
9234
  /** The `I18NModule` that was deleted by this mutation. */
@@ -9105,6 +9457,12 @@ export interface DeleteWebauthnCredentialsModulePayload {
9105
9457
  webauthnCredentialsModule?: WebauthnCredentialsModule | null;
9106
9458
  webauthnCredentialsModuleEdge?: WebauthnCredentialsModuleEdge | null;
9107
9459
  }
9460
+ export interface DeleteWebhookModulePayload {
9461
+ clientMutationId?: string | null;
9462
+ /** The `WebhookModule` that was deleted by this mutation. */
9463
+ webhookModule?: WebhookModule | null;
9464
+ webhookModuleEdge?: WebhookModuleEdge | null;
9465
+ }
9108
9466
  export interface ProvisionBucketPayload {
9109
9467
  /** The access type applied */
9110
9468
  accessType: string;
@@ -9313,6 +9671,12 @@ export interface UpdateHierarchyModulePayload {
9313
9671
  hierarchyModule?: HierarchyModule | null;
9314
9672
  hierarchyModuleEdge?: HierarchyModuleEdge | null;
9315
9673
  }
9674
+ export interface UpdateHttpRouteModulePayload {
9675
+ clientMutationId?: string | null;
9676
+ /** The `HttpRouteModule` that was updated by this mutation. */
9677
+ httpRouteModule?: HttpRouteModule | null;
9678
+ httpRouteModuleEdge?: HttpRouteModuleEdge | null;
9679
+ }
9316
9680
  export interface UpdateI18NModulePayload {
9317
9681
  clientMutationId?: string | null;
9318
9682
  /** The `I18NModule` that was updated by this mutation. */
@@ -9541,6 +9905,12 @@ export interface UpdateWebauthnCredentialsModulePayload {
9541
9905
  webauthnCredentialsModule?: WebauthnCredentialsModule | null;
9542
9906
  webauthnCredentialsModuleEdge?: WebauthnCredentialsModuleEdge | null;
9543
9907
  }
9908
+ export interface UpdateWebhookModulePayload {
9909
+ clientMutationId?: string | null;
9910
+ /** The `WebhookModule` that was updated by this mutation. */
9911
+ webhookModule?: WebhookModule | null;
9912
+ webhookModuleEdge?: WebhookModuleEdge | null;
9913
+ }
9544
9914
  /** Information about a database table */
9545
9915
  export interface MetaTable {
9546
9916
  constraints: MetaConstraints;
@@ -9742,6 +10112,12 @@ export interface HierarchyModuleEdge {
9742
10112
  /** The `HierarchyModule` at the end of the edge. */
9743
10113
  node?: HierarchyModule | null;
9744
10114
  }
10115
+ /** A `HttpRouteModule` edge in the connection. */
10116
+ export interface HttpRouteModuleEdge {
10117
+ cursor?: string | null;
10118
+ /** The `HttpRouteModule` at the end of the edge. */
10119
+ node?: HttpRouteModule | null;
10120
+ }
9745
10121
  /** A `I18NModule` edge in the connection. */
9746
10122
  export interface I18NModuleEdge {
9747
10123
  cursor?: string | null;
@@ -9970,6 +10346,12 @@ export interface WebauthnCredentialsModuleEdge {
9970
10346
  /** The `WebauthnCredentialsModule` at the end of the edge. */
9971
10347
  node?: WebauthnCredentialsModule | null;
9972
10348
  }
10349
+ /** A `WebhookModule` edge in the connection. */
10350
+ export interface WebhookModuleEdge {
10351
+ cursor?: string | null;
10352
+ /** The `WebhookModule` at the end of the edge. */
10353
+ node?: WebhookModule | null;
10354
+ }
9973
10355
  export interface ProvisionRelationRecord {
9974
10356
  outFieldId?: string | null;
9975
10357
  outJunctionTableId?: string | null;