@constructive-io/react 1.11.1 → 1.11.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 (715) hide show
  1. package/admin/orm/client.js +11 -1
  2. package/admin/schema-types.d.ts +7 -1
  3. package/agent/orm/client.js +11 -1
  4. package/agent/orm/input-types.d.ts +0 -3
  5. package/agent/schema-types.d.ts +7 -3
  6. package/api/hooks/index.d.ts +1 -1
  7. package/api/hooks/index.js +1 -1
  8. package/api/hooks/invalidation.d.ts +108 -12
  9. package/api/hooks/invalidation.js +287 -31
  10. package/api/hooks/mutation-keys.d.ts +224 -24
  11. package/api/hooks/mutation-keys.js +152 -16
  12. package/api/hooks/mutations/index.d.ts +58 -6
  13. package/api/hooks/mutations/index.js +58 -6
  14. package/api/hooks/mutations/useCreateApisMutation.d.ts +34 -0
  15. package/api/hooks/mutations/{useCreateApiMutation.js → useCreateApisMutation.js} +5 -5
  16. package/api/hooks/mutations/useCreateDeriveMutation.d.ts +34 -0
  17. package/api/hooks/mutations/useCreateDeriveMutation.js +34 -0
  18. package/api/hooks/mutations/useCreateFieldBehaviorMutation.d.ts +34 -0
  19. package/api/hooks/mutations/useCreateFieldBehaviorMutation.js +34 -0
  20. package/api/hooks/mutations/useCreateForeignKeyConstraintBehaviorMutation.d.ts +34 -0
  21. package/api/hooks/mutations/useCreateForeignKeyConstraintBehaviorMutation.js +34 -0
  22. package/api/hooks/mutations/useCreatePageMutation.d.ts +34 -0
  23. package/api/hooks/mutations/useCreatePageMutation.js +34 -0
  24. package/api/hooks/mutations/useCreatePlatformApisMutation.d.ts +34 -0
  25. package/api/hooks/mutations/{useCreatePlatformApiMutation.js → useCreatePlatformApisMutation.js} +5 -5
  26. package/api/hooks/mutations/useCreatePlatformPageMutation.d.ts +34 -0
  27. package/api/hooks/mutations/useCreatePlatformPageMutation.js +34 -0
  28. package/api/hooks/mutations/useCreatePlatformSiteAppLinkMutation.d.ts +34 -0
  29. package/api/hooks/mutations/useCreatePlatformSiteAppLinkMutation.js +34 -0
  30. package/api/hooks/mutations/useCreatePlatformSiteDeepLinkMutation.d.ts +34 -0
  31. package/api/hooks/mutations/useCreatePlatformSiteDeepLinkMutation.js +34 -0
  32. package/api/hooks/mutations/useCreatePlatformSiteErrorPageMutation.d.ts +34 -0
  33. package/api/hooks/mutations/useCreatePlatformSiteErrorPageMutation.js +34 -0
  34. package/api/hooks/mutations/useCreatePlatformSiteWebConfigMutation.d.ts +34 -0
  35. package/api/hooks/mutations/useCreatePlatformSiteWebConfigMutation.js +34 -0
  36. package/api/hooks/mutations/useCreateSiteAppLinkMutation.d.ts +34 -0
  37. package/api/hooks/mutations/useCreateSiteAppLinkMutation.js +34 -0
  38. package/api/hooks/mutations/useCreateSiteDeepLinkMutation.d.ts +34 -0
  39. package/api/hooks/mutations/useCreateSiteDeepLinkMutation.js +34 -0
  40. package/api/hooks/mutations/useCreateSiteErrorPageMutation.d.ts +34 -0
  41. package/api/hooks/mutations/useCreateSiteErrorPageMutation.js +34 -0
  42. package/api/hooks/mutations/useCreateSiteWebConfigMutation.d.ts +34 -0
  43. package/api/hooks/mutations/useCreateSiteWebConfigMutation.js +34 -0
  44. package/api/hooks/mutations/useCreateTableBehaviorMutation.d.ts +34 -0
  45. package/api/hooks/mutations/useCreateTableBehaviorMutation.js +34 -0
  46. package/api/hooks/mutations/useCreateUniqueConstraintBehaviorMutation.d.ts +34 -0
  47. package/api/hooks/mutations/useCreateUniqueConstraintBehaviorMutation.js +34 -0
  48. package/api/hooks/mutations/useCreateViewBehaviorMutation.d.ts +34 -0
  49. package/api/hooks/mutations/useCreateViewBehaviorMutation.js +34 -0
  50. package/{esm/api/hooks/mutations/useDeleteApiMutation.d.ts → api/hooks/mutations/useDeleteApisMutation.d.ts} +10 -10
  51. package/api/hooks/mutations/{useDeleteApiMutation.js → useDeleteApisMutation.js} +6 -6
  52. package/api/hooks/mutations/useDeleteDeriveMutation.d.ts +38 -0
  53. package/api/hooks/mutations/useDeleteDeriveMutation.js +39 -0
  54. package/api/hooks/mutations/useDeleteFieldBehaviorMutation.d.ts +38 -0
  55. package/api/hooks/mutations/useDeleteFieldBehaviorMutation.js +39 -0
  56. package/api/hooks/mutations/useDeleteForeignKeyConstraintBehaviorMutation.d.ts +38 -0
  57. package/api/hooks/mutations/useDeleteForeignKeyConstraintBehaviorMutation.js +39 -0
  58. package/api/hooks/mutations/useDeletePageMutation.d.ts +38 -0
  59. package/api/hooks/mutations/useDeletePageMutation.js +39 -0
  60. package/{esm/api/hooks/mutations/useDeletePlatformApiMutation.d.ts → api/hooks/mutations/useDeletePlatformApisMutation.d.ts} +10 -10
  61. package/api/hooks/mutations/{useDeletePlatformApiMutation.js → useDeletePlatformApisMutation.js} +6 -6
  62. package/api/hooks/mutations/useDeletePlatformPageMutation.d.ts +38 -0
  63. package/api/hooks/mutations/useDeletePlatformPageMutation.js +39 -0
  64. package/api/hooks/mutations/useDeletePlatformSiteAppLinkMutation.d.ts +38 -0
  65. package/api/hooks/mutations/useDeletePlatformSiteAppLinkMutation.js +39 -0
  66. package/api/hooks/mutations/useDeletePlatformSiteDeepLinkMutation.d.ts +38 -0
  67. package/api/hooks/mutations/useDeletePlatformSiteDeepLinkMutation.js +39 -0
  68. package/api/hooks/mutations/useDeletePlatformSiteErrorPageMutation.d.ts +38 -0
  69. package/api/hooks/mutations/useDeletePlatformSiteErrorPageMutation.js +39 -0
  70. package/api/hooks/mutations/useDeletePlatformSiteWebConfigMutation.d.ts +38 -0
  71. package/api/hooks/mutations/useDeletePlatformSiteWebConfigMutation.js +39 -0
  72. package/api/hooks/mutations/useDeleteSiteAppLinkMutation.d.ts +38 -0
  73. package/api/hooks/mutations/useDeleteSiteAppLinkMutation.js +39 -0
  74. package/api/hooks/mutations/useDeleteSiteDeepLinkMutation.d.ts +38 -0
  75. package/api/hooks/mutations/useDeleteSiteDeepLinkMutation.js +39 -0
  76. package/api/hooks/mutations/useDeleteSiteErrorPageMutation.d.ts +38 -0
  77. package/api/hooks/mutations/useDeleteSiteErrorPageMutation.js +39 -0
  78. package/api/hooks/mutations/useDeleteSiteWebConfigMutation.d.ts +38 -0
  79. package/api/hooks/mutations/useDeleteSiteWebConfigMutation.js +39 -0
  80. package/api/hooks/mutations/useDeleteTableBehaviorMutation.d.ts +38 -0
  81. package/api/hooks/mutations/useDeleteTableBehaviorMutation.js +39 -0
  82. package/api/hooks/mutations/useDeleteUniqueConstraintBehaviorMutation.d.ts +38 -0
  83. package/api/hooks/mutations/useDeleteUniqueConstraintBehaviorMutation.js +39 -0
  84. package/api/hooks/mutations/useDeleteViewBehaviorMutation.d.ts +38 -0
  85. package/api/hooks/mutations/useDeleteViewBehaviorMutation.js +39 -0
  86. package/api/hooks/mutations/useDomainsAssignSubdomainMutation.d.ts +20 -0
  87. package/api/hooks/mutations/useDomainsAssignSubdomainMutation.js +26 -0
  88. package/api/hooks/mutations/usePlatformDomainsAssignSubdomainMutation.d.ts +20 -0
  89. package/api/hooks/mutations/usePlatformDomainsAssignSubdomainMutation.js +26 -0
  90. package/api/hooks/mutations/usePlatformSitesProvisionStaticSiteMutation.d.ts +20 -0
  91. package/api/hooks/mutations/usePlatformSitesProvisionStaticSiteMutation.js +26 -0
  92. package/api/hooks/mutations/useSitesProvisionStaticSiteMutation.d.ts +20 -0
  93. package/api/hooks/mutations/useSitesProvisionStaticSiteMutation.js +26 -0
  94. package/{esm/api/hooks/mutations/useUpdateApiMutation.d.ts → api/hooks/mutations/useUpdateApisMutation.d.ts} +13 -13
  95. package/api/hooks/mutations/{useUpdateApiMutation.js → useUpdateApisMutation.js} +8 -8
  96. package/api/hooks/mutations/useUpdateDeriveMutation.d.ts +40 -0
  97. package/api/hooks/mutations/useUpdateDeriveMutation.js +40 -0
  98. package/api/hooks/mutations/useUpdateFieldBehaviorMutation.d.ts +40 -0
  99. package/api/hooks/mutations/useUpdateFieldBehaviorMutation.js +40 -0
  100. package/api/hooks/mutations/useUpdateForeignKeyConstraintBehaviorMutation.d.ts +40 -0
  101. package/api/hooks/mutations/useUpdateForeignKeyConstraintBehaviorMutation.js +40 -0
  102. package/api/hooks/mutations/useUpdatePageMutation.d.ts +40 -0
  103. package/api/hooks/mutations/useUpdatePageMutation.js +40 -0
  104. package/api/hooks/mutations/useUpdatePlatformApisMutation.d.ts +40 -0
  105. package/api/hooks/mutations/{useUpdatePlatformApiMutation.js → useUpdatePlatformApisMutation.js} +8 -8
  106. package/api/hooks/mutations/useUpdatePlatformPageMutation.d.ts +40 -0
  107. package/api/hooks/mutations/useUpdatePlatformPageMutation.js +40 -0
  108. package/api/hooks/mutations/useUpdatePlatformSiteAppLinkMutation.d.ts +40 -0
  109. package/api/hooks/mutations/useUpdatePlatformSiteAppLinkMutation.js +40 -0
  110. package/api/hooks/mutations/useUpdatePlatformSiteDeepLinkMutation.d.ts +40 -0
  111. package/api/hooks/mutations/useUpdatePlatformSiteDeepLinkMutation.js +40 -0
  112. package/api/hooks/mutations/useUpdatePlatformSiteErrorPageMutation.d.ts +40 -0
  113. package/api/hooks/mutations/useUpdatePlatformSiteErrorPageMutation.js +40 -0
  114. package/api/hooks/mutations/useUpdatePlatformSiteWebConfigMutation.d.ts +40 -0
  115. package/api/hooks/mutations/useUpdatePlatformSiteWebConfigMutation.js +40 -0
  116. package/api/hooks/mutations/useUpdateSiteAppLinkMutation.d.ts +40 -0
  117. package/api/hooks/mutations/useUpdateSiteAppLinkMutation.js +40 -0
  118. package/api/hooks/mutations/useUpdateSiteDeepLinkMutation.d.ts +40 -0
  119. package/api/hooks/mutations/useUpdateSiteDeepLinkMutation.js +40 -0
  120. package/api/hooks/mutations/useUpdateSiteErrorPageMutation.d.ts +40 -0
  121. package/api/hooks/mutations/useUpdateSiteErrorPageMutation.js +40 -0
  122. package/api/hooks/mutations/useUpdateSiteWebConfigMutation.d.ts +40 -0
  123. package/api/hooks/mutations/useUpdateSiteWebConfigMutation.js +40 -0
  124. package/api/hooks/mutations/useUpdateTableBehaviorMutation.d.ts +40 -0
  125. package/api/hooks/mutations/useUpdateTableBehaviorMutation.js +40 -0
  126. package/api/hooks/mutations/useUpdateUniqueConstraintBehaviorMutation.d.ts +40 -0
  127. package/api/hooks/mutations/useUpdateUniqueConstraintBehaviorMutation.js +40 -0
  128. package/api/hooks/mutations/useUpdateViewBehaviorMutation.d.ts +40 -0
  129. package/api/hooks/mutations/useUpdateViewBehaviorMutation.js +40 -0
  130. package/api/hooks/queries/index.d.ts +38 -4
  131. package/api/hooks/queries/index.js +38 -4
  132. package/api/hooks/queries/useApisQuery.d.ts +21 -25
  133. package/api/hooks/queries/useApisQuery.js +24 -9
  134. package/api/hooks/queries/useApisesQuery.d.ts +69 -0
  135. package/api/hooks/queries/useApisesQuery.js +38 -0
  136. package/api/hooks/queries/useDeriveQuery.d.ts +65 -0
  137. package/api/hooks/queries/{useApiQuery.js → useDeriveQuery.js} +14 -14
  138. package/api/hooks/queries/useDerivesQuery.d.ts +69 -0
  139. package/api/hooks/queries/useDerivesQuery.js +38 -0
  140. package/api/hooks/queries/useFieldBehaviorQuery.d.ts +65 -0
  141. package/api/hooks/queries/useFieldBehaviorQuery.js +53 -0
  142. package/api/hooks/queries/useFieldBehaviorsQuery.d.ts +69 -0
  143. package/api/hooks/queries/useFieldBehaviorsQuery.js +38 -0
  144. package/api/hooks/queries/useForeignKeyConstraintBehaviorQuery.d.ts +65 -0
  145. package/api/hooks/queries/useForeignKeyConstraintBehaviorQuery.js +53 -0
  146. package/api/hooks/queries/useForeignKeyConstraintBehaviorsQuery.d.ts +69 -0
  147. package/api/hooks/queries/useForeignKeyConstraintBehaviorsQuery.js +38 -0
  148. package/api/hooks/queries/usePageQuery.d.ts +65 -0
  149. package/api/hooks/queries/usePageQuery.js +53 -0
  150. package/api/hooks/queries/usePagesQuery.d.ts +69 -0
  151. package/api/hooks/queries/usePagesQuery.js +38 -0
  152. package/api/hooks/queries/usePlatformApisQuery.d.ts +21 -25
  153. package/api/hooks/queries/usePlatformApisQuery.js +24 -9
  154. package/api/hooks/queries/usePlatformApisesQuery.d.ts +69 -0
  155. package/api/hooks/queries/usePlatformApisesQuery.js +38 -0
  156. package/api/hooks/queries/usePlatformPageQuery.d.ts +65 -0
  157. package/api/hooks/queries/usePlatformPageQuery.js +53 -0
  158. package/api/hooks/queries/usePlatformPagesQuery.d.ts +69 -0
  159. package/api/hooks/queries/usePlatformPagesQuery.js +38 -0
  160. package/api/hooks/queries/usePlatformSiteAppLinkQuery.d.ts +65 -0
  161. package/api/hooks/queries/usePlatformSiteAppLinkQuery.js +53 -0
  162. package/api/hooks/queries/usePlatformSiteAppLinksQuery.d.ts +69 -0
  163. package/api/hooks/queries/usePlatformSiteAppLinksQuery.js +38 -0
  164. package/api/hooks/queries/usePlatformSiteDeepLinkQuery.d.ts +65 -0
  165. package/api/hooks/queries/usePlatformSiteDeepLinkQuery.js +53 -0
  166. package/api/hooks/queries/usePlatformSiteDeepLinksQuery.d.ts +69 -0
  167. package/api/hooks/queries/usePlatformSiteDeepLinksQuery.js +38 -0
  168. package/api/hooks/queries/usePlatformSiteErrorPageQuery.d.ts +65 -0
  169. package/api/hooks/queries/usePlatformSiteErrorPageQuery.js +53 -0
  170. package/api/hooks/queries/usePlatformSiteErrorPagesQuery.d.ts +69 -0
  171. package/api/hooks/queries/usePlatformSiteErrorPagesQuery.js +38 -0
  172. package/api/hooks/queries/usePlatformSiteWebConfigQuery.d.ts +65 -0
  173. package/api/hooks/queries/usePlatformSiteWebConfigQuery.js +53 -0
  174. package/api/hooks/queries/usePlatformSiteWebConfigsQuery.d.ts +69 -0
  175. package/api/hooks/queries/usePlatformSiteWebConfigsQuery.js +38 -0
  176. package/api/hooks/queries/useResolveDeepLinkQuery.d.ts +53 -0
  177. package/api/hooks/queries/useResolveDeepLinkQuery.js +53 -0
  178. package/api/hooks/queries/useResolveSiteAppLinksQuery.d.ts +53 -0
  179. package/api/hooks/queries/useResolveSiteAppLinksQuery.js +53 -0
  180. package/api/hooks/queries/useSiteAppLinkQuery.d.ts +65 -0
  181. package/api/hooks/queries/useSiteAppLinkQuery.js +53 -0
  182. package/api/hooks/queries/useSiteAppLinksQuery.d.ts +69 -0
  183. package/api/hooks/queries/useSiteAppLinksQuery.js +38 -0
  184. package/api/hooks/queries/useSiteDeepLinkQuery.d.ts +65 -0
  185. package/api/hooks/queries/useSiteDeepLinkQuery.js +53 -0
  186. package/api/hooks/queries/useSiteDeepLinksQuery.d.ts +69 -0
  187. package/api/hooks/queries/useSiteDeepLinksQuery.js +38 -0
  188. package/api/hooks/queries/useSiteErrorPageQuery.d.ts +65 -0
  189. package/api/hooks/queries/useSiteErrorPageQuery.js +53 -0
  190. package/api/hooks/queries/useSiteErrorPagesQuery.d.ts +69 -0
  191. package/api/hooks/queries/useSiteErrorPagesQuery.js +38 -0
  192. package/api/hooks/queries/useSiteWebConfigQuery.d.ts +65 -0
  193. package/api/hooks/queries/useSiteWebConfigQuery.js +53 -0
  194. package/api/hooks/queries/useSiteWebConfigsQuery.d.ts +69 -0
  195. package/api/hooks/queries/useSiteWebConfigsQuery.js +38 -0
  196. package/api/hooks/queries/useTableBehaviorQuery.d.ts +65 -0
  197. package/api/hooks/queries/useTableBehaviorQuery.js +53 -0
  198. package/api/hooks/queries/useTableBehaviorsQuery.d.ts +69 -0
  199. package/api/hooks/queries/useTableBehaviorsQuery.js +38 -0
  200. package/api/hooks/queries/useUniqueConstraintBehaviorQuery.d.ts +65 -0
  201. package/api/hooks/queries/useUniqueConstraintBehaviorQuery.js +53 -0
  202. package/api/hooks/queries/useUniqueConstraintBehaviorsQuery.d.ts +69 -0
  203. package/api/hooks/queries/useUniqueConstraintBehaviorsQuery.js +38 -0
  204. package/api/hooks/queries/useViewBehaviorQuery.d.ts +65 -0
  205. package/api/hooks/queries/useViewBehaviorQuery.js +53 -0
  206. package/api/hooks/queries/useViewBehaviorsQuery.d.ts +69 -0
  207. package/api/hooks/queries/useViewBehaviorsQuery.js +38 -0
  208. package/api/hooks/query-keys.d.ts +256 -28
  209. package/api/hooks/query-keys.js +148 -18
  210. package/api/orm/client.js +11 -1
  211. package/api/orm/index.d.ts +66 -4
  212. package/api/orm/index.js +36 -4
  213. package/api/orm/input-types.d.ts +4946 -630
  214. package/api/orm/input-types.js +34 -6
  215. package/api/orm/models/apis.d.ts +54 -0
  216. package/api/orm/models/{api.js → apis.js} +27 -27
  217. package/api/orm/models/derive.d.ts +54 -0
  218. package/api/orm/models/derive.js +104 -0
  219. package/api/orm/models/fieldBehavior.d.ts +54 -0
  220. package/api/orm/models/fieldBehavior.js +104 -0
  221. package/api/orm/models/foreignKeyConstraintBehavior.d.ts +54 -0
  222. package/api/orm/models/foreignKeyConstraintBehavior.js +104 -0
  223. package/api/orm/models/index.d.ts +18 -2
  224. package/api/orm/models/index.js +38 -6
  225. package/api/orm/models/page.d.ts +54 -0
  226. package/api/orm/models/page.js +104 -0
  227. package/api/orm/models/platformApis.d.ts +54 -0
  228. package/api/orm/models/platformApis.js +104 -0
  229. package/api/orm/models/platformPage.d.ts +54 -0
  230. package/api/orm/models/platformPage.js +104 -0
  231. package/api/orm/models/platformSiteAppLink.d.ts +54 -0
  232. package/api/orm/models/platformSiteAppLink.js +104 -0
  233. package/api/orm/models/platformSiteDeepLink.d.ts +54 -0
  234. package/api/orm/models/platformSiteDeepLink.js +104 -0
  235. package/api/orm/models/platformSiteErrorPage.d.ts +54 -0
  236. package/api/orm/models/platformSiteErrorPage.js +104 -0
  237. package/api/orm/models/platformSiteWebConfig.d.ts +54 -0
  238. package/api/orm/models/platformSiteWebConfig.js +104 -0
  239. package/api/orm/models/siteAppLink.d.ts +54 -0
  240. package/api/orm/models/{platformApi.js → siteAppLink.js} +27 -27
  241. package/api/orm/models/siteDeepLink.d.ts +54 -0
  242. package/api/orm/models/siteDeepLink.js +104 -0
  243. package/api/orm/models/siteErrorPage.d.ts +54 -0
  244. package/api/orm/models/siteErrorPage.js +104 -0
  245. package/api/orm/models/siteWebConfig.d.ts +54 -0
  246. package/api/orm/models/siteWebConfig.js +104 -0
  247. package/api/orm/models/tableBehavior.d.ts +54 -0
  248. package/api/orm/models/tableBehavior.js +104 -0
  249. package/api/orm/models/uniqueConstraintBehavior.d.ts +54 -0
  250. package/api/orm/models/uniqueConstraintBehavior.js +104 -0
  251. package/api/orm/models/viewBehavior.d.ts +54 -0
  252. package/api/orm/models/viewBehavior.js +104 -0
  253. package/api/orm/mutation/index.d.ts +33 -1
  254. package/api/orm/mutation/index.js +48 -0
  255. package/api/orm/query/index.d.ts +17 -0
  256. package/api/orm/query/index.js +28 -0
  257. package/api/schema-types.d.ts +2732 -338
  258. package/api/types.d.ts +238 -26
  259. package/auth/orm/client.js +11 -1
  260. package/auth/orm/input-types.d.ts +166 -220
  261. package/auth/orm/input-types.js +6 -11
  262. package/auth/schema-types.d.ts +31 -46
  263. package/compute/hooks/index.d.ts +1 -1
  264. package/compute/hooks/index.js +1 -1
  265. package/compute/hooks/invalidation.d.ts +12 -0
  266. package/compute/hooks/invalidation.js +32 -0
  267. package/compute/hooks/mutation-keys.d.ts +24 -0
  268. package/compute/hooks/mutation-keys.js +22 -2
  269. package/compute/hooks/mutations/index.d.ts +6 -0
  270. package/compute/hooks/mutations/index.js +6 -0
  271. package/compute/hooks/mutations/useCreateFunctionCapabilityBindingMutation.d.ts +34 -0
  272. package/compute/hooks/mutations/useCreateFunctionCapabilityBindingMutation.js +34 -0
  273. package/compute/hooks/mutations/useCreatePlatformFunctionCapabilityBindingMutation.d.ts +34 -0
  274. package/compute/hooks/mutations/useCreatePlatformFunctionCapabilityBindingMutation.js +34 -0
  275. package/compute/hooks/mutations/useDeleteFunctionCapabilityBindingMutation.d.ts +38 -0
  276. package/compute/hooks/mutations/useDeleteFunctionCapabilityBindingMutation.js +39 -0
  277. package/compute/hooks/mutations/useDeletePlatformFunctionCapabilityBindingMutation.d.ts +38 -0
  278. package/compute/hooks/mutations/useDeletePlatformFunctionCapabilityBindingMutation.js +39 -0
  279. package/compute/hooks/mutations/useUpdateFunctionCapabilityBindingMutation.d.ts +40 -0
  280. package/compute/hooks/mutations/useUpdateFunctionCapabilityBindingMutation.js +40 -0
  281. package/compute/hooks/mutations/useUpdatePlatformFunctionCapabilityBindingMutation.d.ts +40 -0
  282. package/compute/hooks/mutations/useUpdatePlatformFunctionCapabilityBindingMutation.js +40 -0
  283. package/compute/hooks/queries/index.d.ts +4 -0
  284. package/compute/hooks/queries/index.js +4 -0
  285. package/compute/hooks/queries/useFunctionCapabilityBindingQuery.d.ts +65 -0
  286. package/compute/hooks/queries/useFunctionCapabilityBindingQuery.js +53 -0
  287. package/compute/hooks/queries/useFunctionCapabilityBindingsQuery.d.ts +69 -0
  288. package/compute/hooks/queries/useFunctionCapabilityBindingsQuery.js +38 -0
  289. package/compute/hooks/queries/usePlatformFunctionCapabilityBindingQuery.d.ts +65 -0
  290. package/compute/hooks/queries/usePlatformFunctionCapabilityBindingQuery.js +53 -0
  291. package/compute/hooks/queries/usePlatformFunctionCapabilityBindingsQuery.d.ts +69 -0
  292. package/compute/hooks/queries/usePlatformFunctionCapabilityBindingsQuery.js +38 -0
  293. package/compute/hooks/query-keys.d.ts +28 -0
  294. package/compute/hooks/query-keys.js +20 -2
  295. package/compute/orm/client.js +11 -1
  296. package/compute/orm/index.d.ts +4 -0
  297. package/compute/orm/index.js +4 -0
  298. package/compute/orm/input-types.d.ts +539 -8
  299. package/compute/orm/input-types.js +2 -0
  300. package/compute/orm/models/functionCapabilityBinding.d.ts +54 -0
  301. package/compute/orm/models/functionCapabilityBinding.js +104 -0
  302. package/compute/orm/models/index.d.ts +2 -0
  303. package/compute/orm/models/index.js +6 -2
  304. package/compute/orm/models/platformFunctionCapabilityBinding.d.ts +54 -0
  305. package/compute/orm/models/platformFunctionCapabilityBinding.js +104 -0
  306. package/compute/schema-types.d.ts +312 -10
  307. package/compute/types.d.ts +31 -0
  308. package/config/orm/client.js +11 -1
  309. package/config/orm/input-types.d.ts +53 -5
  310. package/config/schema-types.d.ts +42 -6
  311. package/config/types.d.ts +5 -0
  312. package/esm/admin/orm/client.js +11 -1
  313. package/esm/admin/schema-types.d.ts +7 -1
  314. package/esm/agent/orm/client.js +11 -1
  315. package/esm/agent/orm/input-types.d.ts +0 -3
  316. package/esm/agent/schema-types.d.ts +7 -3
  317. package/esm/api/hooks/index.d.ts +1 -1
  318. package/esm/api/hooks/index.js +1 -1
  319. package/esm/api/hooks/invalidation.d.ts +108 -12
  320. package/esm/api/hooks/invalidation.js +288 -32
  321. package/esm/api/hooks/mutation-keys.d.ts +224 -24
  322. package/esm/api/hooks/mutation-keys.js +150 -14
  323. package/esm/api/hooks/mutations/index.d.ts +58 -6
  324. package/esm/api/hooks/mutations/index.js +58 -6
  325. package/esm/api/hooks/mutations/useCreateApisMutation.d.ts +34 -0
  326. package/esm/api/hooks/mutations/{useCreateApiMutation.js → useCreateApisMutation.js} +6 -6
  327. package/esm/api/hooks/mutations/useCreateDeriveMutation.d.ts +34 -0
  328. package/esm/api/hooks/mutations/useCreateDeriveMutation.js +31 -0
  329. package/esm/api/hooks/mutations/useCreateFieldBehaviorMutation.d.ts +34 -0
  330. package/esm/api/hooks/mutations/useCreateFieldBehaviorMutation.js +31 -0
  331. package/esm/api/hooks/mutations/useCreateForeignKeyConstraintBehaviorMutation.d.ts +34 -0
  332. package/esm/api/hooks/mutations/useCreateForeignKeyConstraintBehaviorMutation.js +31 -0
  333. package/esm/api/hooks/mutations/useCreatePageMutation.d.ts +34 -0
  334. package/esm/api/hooks/mutations/useCreatePageMutation.js +31 -0
  335. package/esm/api/hooks/mutations/useCreatePlatformApisMutation.d.ts +34 -0
  336. package/esm/api/hooks/mutations/{useCreatePlatformApiMutation.js → useCreatePlatformApisMutation.js} +6 -6
  337. package/esm/api/hooks/mutations/useCreatePlatformPageMutation.d.ts +34 -0
  338. package/esm/api/hooks/mutations/useCreatePlatformPageMutation.js +31 -0
  339. package/esm/api/hooks/mutations/useCreatePlatformSiteAppLinkMutation.d.ts +34 -0
  340. package/esm/api/hooks/mutations/useCreatePlatformSiteAppLinkMutation.js +31 -0
  341. package/esm/api/hooks/mutations/useCreatePlatformSiteDeepLinkMutation.d.ts +34 -0
  342. package/esm/api/hooks/mutations/useCreatePlatformSiteDeepLinkMutation.js +31 -0
  343. package/esm/api/hooks/mutations/useCreatePlatformSiteErrorPageMutation.d.ts +34 -0
  344. package/esm/api/hooks/mutations/useCreatePlatformSiteErrorPageMutation.js +31 -0
  345. package/esm/api/hooks/mutations/useCreatePlatformSiteWebConfigMutation.d.ts +34 -0
  346. package/esm/api/hooks/mutations/useCreatePlatformSiteWebConfigMutation.js +31 -0
  347. package/esm/api/hooks/mutations/useCreateSiteAppLinkMutation.d.ts +34 -0
  348. package/esm/api/hooks/mutations/useCreateSiteAppLinkMutation.js +31 -0
  349. package/esm/api/hooks/mutations/useCreateSiteDeepLinkMutation.d.ts +34 -0
  350. package/esm/api/hooks/mutations/useCreateSiteDeepLinkMutation.js +31 -0
  351. package/esm/api/hooks/mutations/useCreateSiteErrorPageMutation.d.ts +34 -0
  352. package/esm/api/hooks/mutations/useCreateSiteErrorPageMutation.js +31 -0
  353. package/esm/api/hooks/mutations/useCreateSiteWebConfigMutation.d.ts +34 -0
  354. package/esm/api/hooks/mutations/useCreateSiteWebConfigMutation.js +31 -0
  355. package/esm/api/hooks/mutations/useCreateTableBehaviorMutation.d.ts +34 -0
  356. package/esm/api/hooks/mutations/useCreateTableBehaviorMutation.js +31 -0
  357. package/esm/api/hooks/mutations/useCreateUniqueConstraintBehaviorMutation.d.ts +34 -0
  358. package/esm/api/hooks/mutations/useCreateUniqueConstraintBehaviorMutation.js +31 -0
  359. package/esm/api/hooks/mutations/useCreateViewBehaviorMutation.d.ts +34 -0
  360. package/esm/api/hooks/mutations/useCreateViewBehaviorMutation.js +31 -0
  361. package/{api/hooks/mutations/useDeleteApiMutation.d.ts → esm/api/hooks/mutations/useDeleteApisMutation.d.ts} +10 -10
  362. package/esm/api/hooks/mutations/{useDeleteApiMutation.js → useDeleteApisMutation.js} +7 -7
  363. package/esm/api/hooks/mutations/useDeleteDeriveMutation.d.ts +38 -0
  364. package/esm/api/hooks/mutations/useDeleteDeriveMutation.js +36 -0
  365. package/esm/api/hooks/mutations/useDeleteFieldBehaviorMutation.d.ts +38 -0
  366. package/esm/api/hooks/mutations/useDeleteFieldBehaviorMutation.js +36 -0
  367. package/esm/api/hooks/mutations/useDeleteForeignKeyConstraintBehaviorMutation.d.ts +38 -0
  368. package/esm/api/hooks/mutations/useDeleteForeignKeyConstraintBehaviorMutation.js +36 -0
  369. package/esm/api/hooks/mutations/useDeletePageMutation.d.ts +38 -0
  370. package/esm/api/hooks/mutations/useDeletePageMutation.js +36 -0
  371. package/{api/hooks/mutations/useDeletePlatformApiMutation.d.ts → esm/api/hooks/mutations/useDeletePlatformApisMutation.d.ts} +10 -10
  372. package/esm/api/hooks/mutations/{useDeletePlatformApiMutation.js → useDeletePlatformApisMutation.js} +7 -7
  373. package/esm/api/hooks/mutations/useDeletePlatformPageMutation.d.ts +38 -0
  374. package/esm/api/hooks/mutations/useDeletePlatformPageMutation.js +36 -0
  375. package/esm/api/hooks/mutations/useDeletePlatformSiteAppLinkMutation.d.ts +38 -0
  376. package/esm/api/hooks/mutations/useDeletePlatformSiteAppLinkMutation.js +36 -0
  377. package/esm/api/hooks/mutations/useDeletePlatformSiteDeepLinkMutation.d.ts +38 -0
  378. package/esm/api/hooks/mutations/useDeletePlatformSiteDeepLinkMutation.js +36 -0
  379. package/esm/api/hooks/mutations/useDeletePlatformSiteErrorPageMutation.d.ts +38 -0
  380. package/esm/api/hooks/mutations/useDeletePlatformSiteErrorPageMutation.js +36 -0
  381. package/esm/api/hooks/mutations/useDeletePlatformSiteWebConfigMutation.d.ts +38 -0
  382. package/esm/api/hooks/mutations/useDeletePlatformSiteWebConfigMutation.js +36 -0
  383. package/esm/api/hooks/mutations/useDeleteSiteAppLinkMutation.d.ts +38 -0
  384. package/esm/api/hooks/mutations/useDeleteSiteAppLinkMutation.js +36 -0
  385. package/esm/api/hooks/mutations/useDeleteSiteDeepLinkMutation.d.ts +38 -0
  386. package/esm/api/hooks/mutations/useDeleteSiteDeepLinkMutation.js +36 -0
  387. package/esm/api/hooks/mutations/useDeleteSiteErrorPageMutation.d.ts +38 -0
  388. package/esm/api/hooks/mutations/useDeleteSiteErrorPageMutation.js +36 -0
  389. package/esm/api/hooks/mutations/useDeleteSiteWebConfigMutation.d.ts +38 -0
  390. package/esm/api/hooks/mutations/useDeleteSiteWebConfigMutation.js +36 -0
  391. package/esm/api/hooks/mutations/useDeleteTableBehaviorMutation.d.ts +38 -0
  392. package/esm/api/hooks/mutations/useDeleteTableBehaviorMutation.js +36 -0
  393. package/esm/api/hooks/mutations/useDeleteUniqueConstraintBehaviorMutation.d.ts +38 -0
  394. package/esm/api/hooks/mutations/useDeleteUniqueConstraintBehaviorMutation.js +36 -0
  395. package/esm/api/hooks/mutations/useDeleteViewBehaviorMutation.d.ts +38 -0
  396. package/esm/api/hooks/mutations/useDeleteViewBehaviorMutation.js +36 -0
  397. package/esm/api/hooks/mutations/useDomainsAssignSubdomainMutation.d.ts +20 -0
  398. package/esm/api/hooks/mutations/useDomainsAssignSubdomainMutation.js +23 -0
  399. package/esm/api/hooks/mutations/usePlatformDomainsAssignSubdomainMutation.d.ts +20 -0
  400. package/esm/api/hooks/mutations/usePlatformDomainsAssignSubdomainMutation.js +23 -0
  401. package/esm/api/hooks/mutations/usePlatformSitesProvisionStaticSiteMutation.d.ts +20 -0
  402. package/esm/api/hooks/mutations/usePlatformSitesProvisionStaticSiteMutation.js +23 -0
  403. package/esm/api/hooks/mutations/useSitesProvisionStaticSiteMutation.d.ts +20 -0
  404. package/esm/api/hooks/mutations/useSitesProvisionStaticSiteMutation.js +23 -0
  405. package/{api/hooks/mutations/useUpdateApiMutation.d.ts → esm/api/hooks/mutations/useUpdateApisMutation.d.ts} +13 -13
  406. package/esm/api/hooks/mutations/{useUpdateApiMutation.js → useUpdateApisMutation.js} +9 -9
  407. package/esm/api/hooks/mutations/useUpdateDeriveMutation.d.ts +40 -0
  408. package/esm/api/hooks/mutations/useUpdateDeriveMutation.js +37 -0
  409. package/esm/api/hooks/mutations/useUpdateFieldBehaviorMutation.d.ts +40 -0
  410. package/esm/api/hooks/mutations/useUpdateFieldBehaviorMutation.js +37 -0
  411. package/esm/api/hooks/mutations/useUpdateForeignKeyConstraintBehaviorMutation.d.ts +40 -0
  412. package/esm/api/hooks/mutations/useUpdateForeignKeyConstraintBehaviorMutation.js +37 -0
  413. package/esm/api/hooks/mutations/useUpdatePageMutation.d.ts +40 -0
  414. package/esm/api/hooks/mutations/useUpdatePageMutation.js +37 -0
  415. package/esm/api/hooks/mutations/useUpdatePlatformApisMutation.d.ts +40 -0
  416. package/esm/api/hooks/mutations/{useUpdatePlatformApiMutation.js → useUpdatePlatformApisMutation.js} +9 -9
  417. package/esm/api/hooks/mutations/useUpdatePlatformPageMutation.d.ts +40 -0
  418. package/esm/api/hooks/mutations/useUpdatePlatformPageMutation.js +37 -0
  419. package/esm/api/hooks/mutations/useUpdatePlatformSiteAppLinkMutation.d.ts +40 -0
  420. package/esm/api/hooks/mutations/useUpdatePlatformSiteAppLinkMutation.js +37 -0
  421. package/esm/api/hooks/mutations/useUpdatePlatformSiteDeepLinkMutation.d.ts +40 -0
  422. package/esm/api/hooks/mutations/useUpdatePlatformSiteDeepLinkMutation.js +37 -0
  423. package/esm/api/hooks/mutations/useUpdatePlatformSiteErrorPageMutation.d.ts +40 -0
  424. package/esm/api/hooks/mutations/useUpdatePlatformSiteErrorPageMutation.js +37 -0
  425. package/esm/api/hooks/mutations/useUpdatePlatformSiteWebConfigMutation.d.ts +40 -0
  426. package/esm/api/hooks/mutations/useUpdatePlatformSiteWebConfigMutation.js +37 -0
  427. package/esm/api/hooks/mutations/useUpdateSiteAppLinkMutation.d.ts +40 -0
  428. package/esm/api/hooks/mutations/useUpdateSiteAppLinkMutation.js +37 -0
  429. package/esm/api/hooks/mutations/useUpdateSiteDeepLinkMutation.d.ts +40 -0
  430. package/esm/api/hooks/mutations/useUpdateSiteDeepLinkMutation.js +37 -0
  431. package/esm/api/hooks/mutations/useUpdateSiteErrorPageMutation.d.ts +40 -0
  432. package/esm/api/hooks/mutations/useUpdateSiteErrorPageMutation.js +37 -0
  433. package/esm/api/hooks/mutations/useUpdateSiteWebConfigMutation.d.ts +40 -0
  434. package/esm/api/hooks/mutations/useUpdateSiteWebConfigMutation.js +37 -0
  435. package/esm/api/hooks/mutations/useUpdateTableBehaviorMutation.d.ts +40 -0
  436. package/esm/api/hooks/mutations/useUpdateTableBehaviorMutation.js +37 -0
  437. package/esm/api/hooks/mutations/useUpdateUniqueConstraintBehaviorMutation.d.ts +40 -0
  438. package/esm/api/hooks/mutations/useUpdateUniqueConstraintBehaviorMutation.js +37 -0
  439. package/esm/api/hooks/mutations/useUpdateViewBehaviorMutation.d.ts +40 -0
  440. package/esm/api/hooks/mutations/useUpdateViewBehaviorMutation.js +37 -0
  441. package/esm/api/hooks/queries/index.d.ts +38 -4
  442. package/esm/api/hooks/queries/index.js +38 -4
  443. package/esm/api/hooks/queries/useApisQuery.d.ts +21 -25
  444. package/esm/api/hooks/queries/useApisQuery.js +26 -11
  445. package/esm/api/hooks/queries/useApisesQuery.d.ts +69 -0
  446. package/esm/api/hooks/queries/useApisesQuery.js +32 -0
  447. package/esm/api/hooks/queries/useDeriveQuery.d.ts +65 -0
  448. package/esm/api/hooks/queries/{useApiQuery.js → useDeriveQuery.js} +11 -11
  449. package/esm/api/hooks/queries/useDerivesQuery.d.ts +69 -0
  450. package/esm/api/hooks/queries/useDerivesQuery.js +32 -0
  451. package/esm/api/hooks/queries/useFieldBehaviorQuery.d.ts +65 -0
  452. package/esm/api/hooks/queries/useFieldBehaviorQuery.js +47 -0
  453. package/esm/api/hooks/queries/useFieldBehaviorsQuery.d.ts +69 -0
  454. package/esm/api/hooks/queries/useFieldBehaviorsQuery.js +32 -0
  455. package/esm/api/hooks/queries/useForeignKeyConstraintBehaviorQuery.d.ts +65 -0
  456. package/esm/api/hooks/queries/useForeignKeyConstraintBehaviorQuery.js +47 -0
  457. package/esm/api/hooks/queries/useForeignKeyConstraintBehaviorsQuery.d.ts +69 -0
  458. package/esm/api/hooks/queries/useForeignKeyConstraintBehaviorsQuery.js +32 -0
  459. package/esm/api/hooks/queries/usePageQuery.d.ts +65 -0
  460. package/esm/api/hooks/queries/usePageQuery.js +47 -0
  461. package/esm/api/hooks/queries/usePagesQuery.d.ts +69 -0
  462. package/esm/api/hooks/queries/usePagesQuery.js +32 -0
  463. package/esm/api/hooks/queries/usePlatformApisQuery.d.ts +21 -25
  464. package/esm/api/hooks/queries/usePlatformApisQuery.js +26 -11
  465. package/esm/api/hooks/queries/usePlatformApisesQuery.d.ts +69 -0
  466. package/esm/api/hooks/queries/usePlatformApisesQuery.js +32 -0
  467. package/esm/api/hooks/queries/usePlatformPageQuery.d.ts +65 -0
  468. package/esm/api/hooks/queries/usePlatformPageQuery.js +47 -0
  469. package/esm/api/hooks/queries/usePlatformPagesQuery.d.ts +69 -0
  470. package/esm/api/hooks/queries/usePlatformPagesQuery.js +32 -0
  471. package/esm/api/hooks/queries/usePlatformSiteAppLinkQuery.d.ts +65 -0
  472. package/esm/api/hooks/queries/usePlatformSiteAppLinkQuery.js +47 -0
  473. package/esm/api/hooks/queries/usePlatformSiteAppLinksQuery.d.ts +69 -0
  474. package/esm/api/hooks/queries/usePlatformSiteAppLinksQuery.js +32 -0
  475. package/esm/api/hooks/queries/usePlatformSiteDeepLinkQuery.d.ts +65 -0
  476. package/esm/api/hooks/queries/usePlatformSiteDeepLinkQuery.js +47 -0
  477. package/esm/api/hooks/queries/usePlatformSiteDeepLinksQuery.d.ts +69 -0
  478. package/esm/api/hooks/queries/usePlatformSiteDeepLinksQuery.js +32 -0
  479. package/esm/api/hooks/queries/usePlatformSiteErrorPageQuery.d.ts +65 -0
  480. package/esm/api/hooks/queries/usePlatformSiteErrorPageQuery.js +47 -0
  481. package/esm/api/hooks/queries/usePlatformSiteErrorPagesQuery.d.ts +69 -0
  482. package/esm/api/hooks/queries/usePlatformSiteErrorPagesQuery.js +32 -0
  483. package/esm/api/hooks/queries/usePlatformSiteWebConfigQuery.d.ts +65 -0
  484. package/esm/api/hooks/queries/usePlatformSiteWebConfigQuery.js +47 -0
  485. package/esm/api/hooks/queries/usePlatformSiteWebConfigsQuery.d.ts +69 -0
  486. package/esm/api/hooks/queries/usePlatformSiteWebConfigsQuery.js +32 -0
  487. package/esm/api/hooks/queries/useResolveDeepLinkQuery.d.ts +53 -0
  488. package/esm/api/hooks/queries/useResolveDeepLinkQuery.js +47 -0
  489. package/esm/api/hooks/queries/useResolveSiteAppLinksQuery.d.ts +53 -0
  490. package/esm/api/hooks/queries/useResolveSiteAppLinksQuery.js +47 -0
  491. package/esm/api/hooks/queries/useSiteAppLinkQuery.d.ts +65 -0
  492. package/esm/api/hooks/queries/useSiteAppLinkQuery.js +47 -0
  493. package/esm/api/hooks/queries/useSiteAppLinksQuery.d.ts +69 -0
  494. package/esm/api/hooks/queries/useSiteAppLinksQuery.js +32 -0
  495. package/esm/api/hooks/queries/useSiteDeepLinkQuery.d.ts +65 -0
  496. package/esm/api/hooks/queries/useSiteDeepLinkQuery.js +47 -0
  497. package/esm/api/hooks/queries/useSiteDeepLinksQuery.d.ts +69 -0
  498. package/esm/api/hooks/queries/useSiteDeepLinksQuery.js +32 -0
  499. package/esm/api/hooks/queries/useSiteErrorPageQuery.d.ts +65 -0
  500. package/esm/api/hooks/queries/useSiteErrorPageQuery.js +47 -0
  501. package/esm/api/hooks/queries/useSiteErrorPagesQuery.d.ts +69 -0
  502. package/esm/api/hooks/queries/useSiteErrorPagesQuery.js +32 -0
  503. package/esm/api/hooks/queries/useSiteWebConfigQuery.d.ts +65 -0
  504. package/esm/api/hooks/queries/useSiteWebConfigQuery.js +47 -0
  505. package/esm/api/hooks/queries/useSiteWebConfigsQuery.d.ts +69 -0
  506. package/esm/api/hooks/queries/useSiteWebConfigsQuery.js +32 -0
  507. package/esm/api/hooks/queries/useTableBehaviorQuery.d.ts +65 -0
  508. package/esm/api/hooks/queries/useTableBehaviorQuery.js +47 -0
  509. package/esm/api/hooks/queries/useTableBehaviorsQuery.d.ts +69 -0
  510. package/esm/api/hooks/queries/useTableBehaviorsQuery.js +32 -0
  511. package/esm/api/hooks/queries/useUniqueConstraintBehaviorQuery.d.ts +65 -0
  512. package/esm/api/hooks/queries/useUniqueConstraintBehaviorQuery.js +47 -0
  513. package/esm/api/hooks/queries/useUniqueConstraintBehaviorsQuery.d.ts +69 -0
  514. package/esm/api/hooks/queries/useUniqueConstraintBehaviorsQuery.js +32 -0
  515. package/esm/api/hooks/queries/useViewBehaviorQuery.d.ts +65 -0
  516. package/esm/api/hooks/queries/useViewBehaviorQuery.js +47 -0
  517. package/esm/api/hooks/queries/useViewBehaviorsQuery.d.ts +69 -0
  518. package/esm/api/hooks/queries/useViewBehaviorsQuery.js +32 -0
  519. package/esm/api/hooks/query-keys.d.ts +256 -28
  520. package/esm/api/hooks/query-keys.js +146 -16
  521. package/esm/api/orm/client.js +11 -1
  522. package/esm/api/orm/index.d.ts +66 -4
  523. package/esm/api/orm/index.js +36 -4
  524. package/esm/api/orm/input-types.d.ts +4946 -630
  525. package/esm/api/orm/input-types.js +34 -6
  526. package/esm/api/orm/models/apis.d.ts +54 -0
  527. package/esm/api/orm/models/{api.js → apis.js} +25 -25
  528. package/esm/api/orm/models/derive.d.ts +54 -0
  529. package/esm/api/orm/models/derive.js +100 -0
  530. package/esm/api/orm/models/fieldBehavior.d.ts +54 -0
  531. package/esm/api/orm/models/fieldBehavior.js +100 -0
  532. package/esm/api/orm/models/foreignKeyConstraintBehavior.d.ts +54 -0
  533. package/esm/api/orm/models/foreignKeyConstraintBehavior.js +100 -0
  534. package/esm/api/orm/models/index.d.ts +18 -2
  535. package/esm/api/orm/models/index.js +18 -2
  536. package/esm/api/orm/models/page.d.ts +54 -0
  537. package/esm/api/orm/models/page.js +100 -0
  538. package/esm/api/orm/models/platformApis.d.ts +54 -0
  539. package/esm/api/orm/models/{platformApi.js → platformApis.js} +25 -25
  540. package/esm/api/orm/models/platformPage.d.ts +54 -0
  541. package/esm/api/orm/models/platformPage.js +100 -0
  542. package/esm/api/orm/models/platformSiteAppLink.d.ts +54 -0
  543. package/esm/api/orm/models/platformSiteAppLink.js +100 -0
  544. package/esm/api/orm/models/platformSiteDeepLink.d.ts +54 -0
  545. package/esm/api/orm/models/platformSiteDeepLink.js +100 -0
  546. package/esm/api/orm/models/platformSiteErrorPage.d.ts +54 -0
  547. package/esm/api/orm/models/platformSiteErrorPage.js +100 -0
  548. package/esm/api/orm/models/platformSiteWebConfig.d.ts +54 -0
  549. package/esm/api/orm/models/platformSiteWebConfig.js +100 -0
  550. package/esm/api/orm/models/siteAppLink.d.ts +54 -0
  551. package/esm/api/orm/models/siteAppLink.js +100 -0
  552. package/esm/api/orm/models/siteDeepLink.d.ts +54 -0
  553. package/esm/api/orm/models/siteDeepLink.js +100 -0
  554. package/esm/api/orm/models/siteErrorPage.d.ts +54 -0
  555. package/esm/api/orm/models/siteErrorPage.js +100 -0
  556. package/esm/api/orm/models/siteWebConfig.d.ts +54 -0
  557. package/esm/api/orm/models/siteWebConfig.js +100 -0
  558. package/esm/api/orm/models/tableBehavior.d.ts +54 -0
  559. package/esm/api/orm/models/tableBehavior.js +100 -0
  560. package/esm/api/orm/models/uniqueConstraintBehavior.d.ts +54 -0
  561. package/esm/api/orm/models/uniqueConstraintBehavior.js +100 -0
  562. package/esm/api/orm/models/viewBehavior.d.ts +54 -0
  563. package/esm/api/orm/models/viewBehavior.js +100 -0
  564. package/esm/api/orm/mutation/index.d.ts +33 -1
  565. package/esm/api/orm/mutation/index.js +48 -0
  566. package/esm/api/orm/query/index.d.ts +17 -0
  567. package/esm/api/orm/query/index.js +28 -0
  568. package/esm/api/schema-types.d.ts +2732 -338
  569. package/esm/api/types.d.ts +238 -26
  570. package/esm/auth/orm/client.js +11 -1
  571. package/esm/auth/orm/input-types.d.ts +166 -220
  572. package/esm/auth/orm/input-types.js +6 -11
  573. package/esm/auth/schema-types.d.ts +31 -46
  574. package/esm/compute/hooks/index.d.ts +1 -1
  575. package/esm/compute/hooks/index.js +1 -1
  576. package/esm/compute/hooks/invalidation.d.ts +12 -0
  577. package/esm/compute/hooks/invalidation.js +33 -1
  578. package/esm/compute/hooks/mutation-keys.d.ts +24 -0
  579. package/esm/compute/hooks/mutation-keys.js +20 -0
  580. package/esm/compute/hooks/mutations/index.d.ts +6 -0
  581. package/esm/compute/hooks/mutations/index.js +6 -0
  582. package/esm/compute/hooks/mutations/useCreateFunctionCapabilityBindingMutation.d.ts +34 -0
  583. package/esm/compute/hooks/mutations/useCreateFunctionCapabilityBindingMutation.js +31 -0
  584. package/esm/compute/hooks/mutations/useCreatePlatformFunctionCapabilityBindingMutation.d.ts +34 -0
  585. package/esm/compute/hooks/mutations/useCreatePlatformFunctionCapabilityBindingMutation.js +31 -0
  586. package/esm/compute/hooks/mutations/useDeleteFunctionCapabilityBindingMutation.d.ts +38 -0
  587. package/esm/compute/hooks/mutations/useDeleteFunctionCapabilityBindingMutation.js +36 -0
  588. package/esm/compute/hooks/mutations/useDeletePlatformFunctionCapabilityBindingMutation.d.ts +38 -0
  589. package/esm/compute/hooks/mutations/useDeletePlatformFunctionCapabilityBindingMutation.js +36 -0
  590. package/esm/compute/hooks/mutations/useUpdateFunctionCapabilityBindingMutation.d.ts +40 -0
  591. package/esm/compute/hooks/mutations/useUpdateFunctionCapabilityBindingMutation.js +37 -0
  592. package/esm/compute/hooks/mutations/useUpdatePlatformFunctionCapabilityBindingMutation.d.ts +40 -0
  593. package/esm/compute/hooks/mutations/useUpdatePlatformFunctionCapabilityBindingMutation.js +37 -0
  594. package/esm/compute/hooks/queries/index.d.ts +4 -0
  595. package/esm/compute/hooks/queries/index.js +4 -0
  596. package/esm/compute/hooks/queries/useFunctionCapabilityBindingQuery.d.ts +65 -0
  597. package/esm/compute/hooks/queries/useFunctionCapabilityBindingQuery.js +47 -0
  598. package/esm/compute/hooks/queries/useFunctionCapabilityBindingsQuery.d.ts +69 -0
  599. package/esm/compute/hooks/queries/useFunctionCapabilityBindingsQuery.js +32 -0
  600. package/esm/compute/hooks/queries/usePlatformFunctionCapabilityBindingQuery.d.ts +65 -0
  601. package/esm/compute/hooks/queries/usePlatformFunctionCapabilityBindingQuery.js +47 -0
  602. package/esm/compute/hooks/queries/usePlatformFunctionCapabilityBindingsQuery.d.ts +69 -0
  603. package/esm/compute/hooks/queries/usePlatformFunctionCapabilityBindingsQuery.js +32 -0
  604. package/esm/compute/hooks/query-keys.d.ts +28 -0
  605. package/esm/compute/hooks/query-keys.js +18 -0
  606. package/esm/compute/orm/client.js +11 -1
  607. package/esm/compute/orm/index.d.ts +4 -0
  608. package/esm/compute/orm/index.js +4 -0
  609. package/esm/compute/orm/input-types.d.ts +539 -8
  610. package/esm/compute/orm/input-types.js +2 -0
  611. package/esm/compute/orm/models/functionCapabilityBinding.d.ts +54 -0
  612. package/esm/compute/orm/models/functionCapabilityBinding.js +100 -0
  613. package/esm/compute/orm/models/index.d.ts +2 -0
  614. package/esm/compute/orm/models/index.js +2 -0
  615. package/esm/compute/orm/models/platformFunctionCapabilityBinding.d.ts +54 -0
  616. package/esm/compute/orm/models/platformFunctionCapabilityBinding.js +100 -0
  617. package/esm/compute/schema-types.d.ts +312 -10
  618. package/esm/compute/types.d.ts +31 -0
  619. package/esm/config/orm/client.js +11 -1
  620. package/esm/config/orm/input-types.d.ts +53 -5
  621. package/esm/config/schema-types.d.ts +42 -6
  622. package/esm/config/types.d.ts +5 -0
  623. package/esm/infra/orm/client.js +11 -1
  624. package/esm/infra/schema-types.d.ts +7 -1
  625. package/esm/modules/hooks/index.d.ts +1 -1
  626. package/esm/modules/hooks/index.js +1 -1
  627. package/esm/modules/hooks/invalidation.d.ts +6 -0
  628. package/esm/modules/hooks/invalidation.js +17 -1
  629. package/esm/modules/hooks/mutation-keys.d.ts +12 -0
  630. package/esm/modules/hooks/mutation-keys.js +7 -0
  631. package/esm/modules/hooks/mutations/index.d.ts +3 -0
  632. package/esm/modules/hooks/mutations/index.js +3 -0
  633. package/esm/modules/hooks/mutations/useCreatePagesModuleMutation.d.ts +34 -0
  634. package/esm/modules/hooks/mutations/useCreatePagesModuleMutation.js +31 -0
  635. package/esm/modules/hooks/mutations/useDeletePagesModuleMutation.d.ts +38 -0
  636. package/esm/modules/hooks/mutations/useDeletePagesModuleMutation.js +36 -0
  637. package/esm/modules/hooks/mutations/useUpdatePagesModuleMutation.d.ts +40 -0
  638. package/esm/modules/hooks/mutations/useUpdatePagesModuleMutation.js +37 -0
  639. package/esm/modules/hooks/queries/index.d.ts +2 -0
  640. package/esm/modules/hooks/queries/index.js +2 -0
  641. package/esm/modules/hooks/queries/usePagesModuleQuery.d.ts +65 -0
  642. package/esm/{api/hooks/queries/usePlatformApiQuery.js → modules/hooks/queries/usePagesModuleQuery.js} +11 -11
  643. package/esm/modules/hooks/queries/usePagesModulesQuery.d.ts +69 -0
  644. package/esm/modules/hooks/queries/usePagesModulesQuery.js +32 -0
  645. package/esm/modules/hooks/query-keys.d.ts +14 -0
  646. package/esm/modules/hooks/query-keys.js +8 -0
  647. package/esm/modules/orm/client.js +11 -1
  648. package/esm/modules/orm/index.d.ts +2 -0
  649. package/esm/modules/orm/index.js +2 -0
  650. package/esm/modules/orm/input-types.d.ts +2116 -122
  651. package/esm/modules/orm/input-types.js +40 -0
  652. package/esm/modules/orm/models/index.d.ts +1 -0
  653. package/esm/modules/orm/models/index.js +1 -0
  654. package/esm/modules/orm/models/pagesModule.d.ts +54 -0
  655. package/esm/modules/orm/models/pagesModule.js +100 -0
  656. package/esm/modules/schema-types.d.ts +505 -6
  657. package/esm/modules/types.d.ts +43 -0
  658. package/esm/objects/orm/client.js +11 -1
  659. package/esm/objects/schema-types.d.ts +7 -1
  660. package/esm/usage/orm/client.js +11 -1
  661. package/esm/usage/schema-types.d.ts +7 -1
  662. package/infra/orm/client.js +11 -1
  663. package/infra/schema-types.d.ts +7 -1
  664. package/modules/hooks/index.d.ts +1 -1
  665. package/modules/hooks/index.js +1 -1
  666. package/modules/hooks/invalidation.d.ts +6 -0
  667. package/modules/hooks/invalidation.js +16 -0
  668. package/modules/hooks/mutation-keys.d.ts +12 -0
  669. package/modules/hooks/mutation-keys.js +9 -2
  670. package/modules/hooks/mutations/index.d.ts +3 -0
  671. package/modules/hooks/mutations/index.js +3 -0
  672. package/modules/hooks/mutations/useCreatePagesModuleMutation.d.ts +34 -0
  673. package/modules/hooks/mutations/useCreatePagesModuleMutation.js +34 -0
  674. package/modules/hooks/mutations/useDeletePagesModuleMutation.d.ts +38 -0
  675. package/modules/hooks/mutations/useDeletePagesModuleMutation.js +39 -0
  676. package/modules/hooks/mutations/useUpdatePagesModuleMutation.d.ts +40 -0
  677. package/modules/hooks/mutations/useUpdatePagesModuleMutation.js +40 -0
  678. package/modules/hooks/queries/index.d.ts +2 -0
  679. package/modules/hooks/queries/index.js +2 -0
  680. package/modules/hooks/queries/usePagesModuleQuery.d.ts +65 -0
  681. package/{api/hooks/queries/usePlatformApiQuery.js → modules/hooks/queries/usePagesModuleQuery.js} +14 -14
  682. package/modules/hooks/queries/usePagesModulesQuery.d.ts +69 -0
  683. package/modules/hooks/queries/usePagesModulesQuery.js +38 -0
  684. package/modules/hooks/query-keys.d.ts +14 -0
  685. package/modules/hooks/query-keys.js +10 -2
  686. package/modules/orm/client.js +11 -1
  687. package/modules/orm/index.d.ts +2 -0
  688. package/modules/orm/index.js +2 -0
  689. package/modules/orm/input-types.d.ts +2116 -122
  690. package/modules/orm/input-types.js +40 -0
  691. package/modules/orm/models/index.d.ts +1 -0
  692. package/modules/orm/models/index.js +4 -2
  693. package/modules/orm/models/pagesModule.d.ts +54 -0
  694. package/modules/orm/models/pagesModule.js +104 -0
  695. package/modules/schema-types.d.ts +505 -6
  696. package/modules/types.d.ts +43 -0
  697. package/objects/orm/client.js +11 -1
  698. package/objects/schema-types.d.ts +7 -1
  699. package/package.json +5 -5
  700. package/usage/orm/client.js +11 -1
  701. package/usage/schema-types.d.ts +7 -1
  702. package/api/hooks/mutations/useCreateApiMutation.d.ts +0 -34
  703. package/api/hooks/mutations/useCreatePlatformApiMutation.d.ts +0 -34
  704. package/api/hooks/mutations/useUpdatePlatformApiMutation.d.ts +0 -40
  705. package/api/hooks/queries/useApiQuery.d.ts +0 -65
  706. package/api/hooks/queries/usePlatformApiQuery.d.ts +0 -65
  707. package/api/orm/models/api.d.ts +0 -54
  708. package/api/orm/models/platformApi.d.ts +0 -54
  709. package/esm/api/hooks/mutations/useCreateApiMutation.d.ts +0 -34
  710. package/esm/api/hooks/mutations/useCreatePlatformApiMutation.d.ts +0 -34
  711. package/esm/api/hooks/mutations/useUpdatePlatformApiMutation.d.ts +0 -40
  712. package/esm/api/hooks/queries/useApiQuery.d.ts +0 -65
  713. package/esm/api/hooks/queries/usePlatformApiQuery.d.ts +0 -65
  714. package/esm/api/orm/models/api.d.ts +0 -54
  715. package/esm/api/orm/models/platformApi.d.ts +0 -54
@@ -3,13 +3,15 @@
3
3
  * @generated by @constructive-io/graphql-codegen
4
4
  * DO NOT EDIT - changes will be overwritten
5
5
  */
6
- import type { DbPreset, FunctionApiBinding, FunctionDefinition, FunctionDeployment, FunctionDeploymentEvent, FunctionExecutionLog, FunctionGraph, FunctionGraphCommit, FunctionGraphExecution, FunctionGraphExecutionNodeState, FunctionGraphExecutionOutput, FunctionGraphObject, FunctionGraphRef, FunctionGraphStore, FunctionInvocation, FunctionInvocationAttempt, GetAllTreeNodesRecord, InfraCommit, InfraGetAllTreeNodesRecord, InfraObject, InfraRef, InfraStore, IntegrationProvider, Namespace, NamespaceEvent, PlatformFunctionApiBinding, PlatformFunctionDefinition, PlatformFunctionDeployment, PlatformFunctionDeploymentEvent, PlatformFunctionExecutionLog, PlatformFunctionInvocation, PlatformFunctionInvocationAttempt, PlatformInfraCommit, PlatformInfraGetAllTreeNodesRecord, PlatformInfraObject, PlatformInfraRef, PlatformInfraStore, PlatformNamespace, PlatformNamespaceEvent, PlatformResource, PlatformResourceDeclaredCapacity, PlatformResourceDefinition, PlatformResourceEvent, PlatformResourceInstallation, PlatformResourceStatusCheck, PlatformResourceUsageLog, PlatformResourceUsageSummary, PlatformResourceUtilization, PlatformResourcesHealth, PlatformResourcesRequirementsState, PlatformResourcesResolvedRequirement, PlatformWebhookEndpoint, PlatformWebhookEvent, Resource, ResourceDeclaredCapacity, ResourceDefinition, ResourceEvent, ResourceInstallation, ResourceStatusCheck, ResourceUsageLog, ResourceUsageSummary, ResourceUtilization, ResourcesHealth, ResourcesRequirementsState, ResourcesResolvedRequirement, WebhookEndpoint, WebhookEvent, BigFloatFilter, BigIntFilter, BooleanFilter, DateFilter, DatetimeFilter, IntFilter, JSONFilter, StringFilter, StringListFilter, UUIDFilter, UUIDListFilter } from './types';
6
+ import type { DbPreset, FunctionApiBinding, FunctionCapabilityBinding, FunctionDefinition, FunctionDeployment, FunctionDeploymentEvent, FunctionExecutionLog, FunctionGraph, FunctionGraphCommit, FunctionGraphExecution, FunctionGraphExecutionNodeState, FunctionGraphExecutionOutput, FunctionGraphObject, FunctionGraphRef, FunctionGraphStore, FunctionInvocation, FunctionInvocationAttempt, GetAllTreeNodesRecord, InfraCommit, InfraGetAllTreeNodesRecord, InfraObject, InfraRef, InfraStore, IntegrationProvider, Namespace, NamespaceEvent, PlatformFunctionApiBinding, PlatformFunctionCapabilityBinding, PlatformFunctionDefinition, PlatformFunctionDeployment, PlatformFunctionDeploymentEvent, PlatformFunctionExecutionLog, PlatformFunctionInvocation, PlatformFunctionInvocationAttempt, PlatformInfraCommit, PlatformInfraGetAllTreeNodesRecord, PlatformInfraObject, PlatformInfraRef, PlatformInfraStore, PlatformNamespace, PlatformNamespaceEvent, PlatformResource, PlatformResourceDeclaredCapacity, PlatformResourceDefinition, PlatformResourceEvent, PlatformResourceInstallation, PlatformResourceStatusCheck, PlatformResourceUsageLog, PlatformResourceUsageSummary, PlatformResourceUtilization, PlatformResourcesHealth, PlatformResourcesRequirementsState, PlatformResourcesResolvedRequirement, PlatformWebhookEndpoint, PlatformWebhookEvent, Resource, ResourceDeclaredCapacity, ResourceDefinition, ResourceEvent, ResourceInstallation, ResourceStatusCheck, ResourceUsageLog, ResourceUsageSummary, ResourceUtilization, ResourcesHealth, ResourcesRequirementsState, ResourcesResolvedRequirement, WebhookEndpoint, WebhookEvent, BigFloatFilter, BigIntFilter, BooleanFilter, DateFilter, DatetimeFilter, IntFilter, JSONFilter, StringFilter, StringListFilter, UUIDFilter, UUIDListFilter } from './types';
7
7
  export type Base64EncodedBinary = unknown;
8
8
  export type ConstructiveInternalTypeImage = unknown;
9
9
  /** Methods to use when ordering `DbPreset`. */
10
10
  export type DbPresetOrderBy = 'ACTIVE_ASC' | 'ACTIVE_DESC' | 'COMMIT_ID_ASC' | 'COMMIT_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DEFINITION_ASC' | 'DEFINITION_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'ID_ASC' | 'ID_DESC' | 'LABEL_ASC' | 'LABEL_DESC' | 'MODULES_HASH_ASC' | 'MODULES_HASH_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'SLUG_ASC' | 'SLUG_DESC' | 'STORE_ID_ASC' | 'STORE_ID_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
11
11
  /** Methods to use when ordering `FunctionApiBinding`. */
12
12
  export type FunctionApiBindingOrderBy = 'ALIAS_ASC' | 'ALIAS_DESC' | 'API_ID_ASC' | 'API_ID_DESC' | 'CONFIG_ASC' | 'CONFIG_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'FUNCTION_DEFINITION_ID_ASC' | 'FUNCTION_DEFINITION_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
13
+ /** Methods to use when ordering `FunctionCapabilityBinding`. */
14
+ export type FunctionCapabilityBindingOrderBy = 'BUCKET_ID_ASC' | 'BUCKET_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'FUNCTION_ID_ASC' | 'FUNCTION_ID_DESC' | 'GRAPH_ID_ASC' | 'GRAPH_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'KEY_ASC' | 'KEY_DESC' | 'LIFECYCLE_ASC' | 'LIFECYCLE_DESC' | 'METADATA_ASC' | 'METADATA_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
13
15
  /** Methods to use when ordering `FunctionDefinition`. */
14
16
  export type FunctionDefinitionOrderBy = 'ACCESS_CHANNELS_ASC' | 'ACCESS_CHANNELS_DESC' | 'CATEGORY_ASC' | 'CATEGORY_DESC' | 'CONCURRENCY_ASC' | 'CONCURRENCY_DESC' | 'CPU_LIMIT_MILLICORES_ASC' | 'CPU_LIMIT_MILLICORES_DESC' | 'CPU_REQUEST_MILLICORES_ASC' | 'CPU_REQUEST_MILLICORES_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'FN_CATEGORY_ASC' | 'FN_CATEGORY_DESC' | 'FUNCTION_COLUMNS_ASC' | 'FUNCTION_COLUMNS_DESC' | 'GRAPH_ID_ASC' | 'GRAPH_ID_DESC' | 'ICON_ASC' | 'ICON_DESC' | 'ID_ASC' | 'ID_DESC' | 'IMAGE_ASC' | 'IMAGE_DESC' | 'INPUTS_ASC' | 'INPUTS_DESC' | 'INTEGRATIONS_ASC' | 'INTEGRATIONS_DESC' | 'IS_PUBLISHED_ASC' | 'IS_PUBLISHED_DESC' | 'MAX_ATTEMPTS_ASC' | 'MAX_ATTEMPTS_DESC' | 'MEMORY_LIMIT_BYTES_ASC' | 'MEMORY_LIMIT_BYTES_DESC' | 'MEMORY_REQUEST_BYTES_ASC' | 'MEMORY_REQUEST_BYTES_DESC' | 'MODULE_TABLE_ASC' | 'MODULE_TABLE_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'OUTPUTS_ASC' | 'OUTPUTS_DESC' | 'PAYLOAD_ARGS_ASC' | 'PAYLOAD_ARGS_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIORITY_ASC' | 'PRIORITY_DESC' | 'PROPS_ASC' | 'PROPS_DESC' | 'PROTECTED_ASC' | 'PROTECTED_DESC' | 'PUBLISHED_AT_ASC' | 'PUBLISHED_AT_DESC' | 'QUEUE_NAME_ASC' | 'QUEUE_NAME_DESC' | 'REQUIRED_BUCKETS_ASC' | 'REQUIRED_BUCKETS_DESC' | 'REQUIRED_CONFIGS_ASC' | 'REQUIRED_CONFIGS_DESC' | 'REQUIRED_MODELS_ASC' | 'REQUIRED_MODELS_DESC' | 'REQUIRED_SECRETS_ASC' | 'REQUIRED_SECRETS_DESC' | 'RESOURCES_ASC' | 'RESOURCES_DESC' | 'RUNTIME_ASC' | 'RUNTIME_DESC' | 'SCALE_MAX_ASC' | 'SCALE_MAX_DESC' | 'SCALE_MIN_ASC' | 'SCALE_MIN_DESC' | 'TARGET_FUNCTION_ASC' | 'TARGET_FUNCTION_DESC' | 'TARGET_SCHEMA_ASC' | 'TARGET_SCHEMA_DESC' | 'TASK_IDENTIFIER_ASC' | 'TASK_IDENTIFIER_DESC' | 'TIMEOUT_SECONDS_ASC' | 'TIMEOUT_SECONDS_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'VOLATILE_ASC' | 'VOLATILE_DESC';
15
17
  /** Methods to use when ordering `FunctionDeploymentEvent`. */
@@ -54,6 +56,8 @@ export type NamespaceEventOrderBy = 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'CREATED_
54
56
  export type NamespaceOrderBy = 'ANNOTATIONS_ASC' | 'ANNOTATIONS_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'ID_ASC' | 'ID_DESC' | 'IS_ACTIVE_ASC' | 'IS_ACTIVE_DESC' | 'IS_MANAGED_ASC' | 'IS_MANAGED_DESC' | 'LABELS_ASC' | 'LABELS_DESC' | 'LAST_ERROR_ASC' | 'LAST_ERROR_DESC' | 'NAMESPACE_NAME_ASC' | 'NAMESPACE_NAME_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'STATUS_ASC' | 'STATUS_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
55
57
  /** Methods to use when ordering `PlatformFunctionApiBinding`. */
56
58
  export type PlatformFunctionApiBindingOrderBy = 'ALIAS_ASC' | 'ALIAS_DESC' | 'API_ID_ASC' | 'API_ID_DESC' | 'CONFIG_ASC' | 'CONFIG_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'FUNCTION_DEFINITION_ID_ASC' | 'FUNCTION_DEFINITION_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
59
+ /** Methods to use when ordering `PlatformFunctionCapabilityBinding`. */
60
+ export type PlatformFunctionCapabilityBindingOrderBy = 'BUCKET_ID_ASC' | 'BUCKET_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'FUNCTION_ID_ASC' | 'FUNCTION_ID_DESC' | 'GRAPH_ID_ASC' | 'GRAPH_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'KEY_ASC' | 'KEY_DESC' | 'LIFECYCLE_ASC' | 'LIFECYCLE_DESC' | 'METADATA_ASC' | 'METADATA_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
57
61
  /** Methods to use when ordering `PlatformFunctionDefinition`. */
58
62
  export type PlatformFunctionDefinitionOrderBy = 'ACCESS_CHANNELS_ASC' | 'ACCESS_CHANNELS_DESC' | 'BILLABLE_ASC' | 'BILLABLE_DESC' | 'CATEGORY_ASC' | 'CATEGORY_DESC' | 'CONCURRENCY_ASC' | 'CONCURRENCY_DESC' | 'CPU_LIMIT_MILLICORES_ASC' | 'CPU_LIMIT_MILLICORES_DESC' | 'CPU_REQUEST_MILLICORES_ASC' | 'CPU_REQUEST_MILLICORES_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'FN_CATEGORY_ASC' | 'FN_CATEGORY_DESC' | 'FUNCTION_COLUMNS_ASC' | 'FUNCTION_COLUMNS_DESC' | 'GRAPH_ID_ASC' | 'GRAPH_ID_DESC' | 'ICON_ASC' | 'ICON_DESC' | 'ID_ASC' | 'ID_DESC' | 'IMAGE_ASC' | 'IMAGE_DESC' | 'INPUTS_ASC' | 'INPUTS_DESC' | 'INTEGRATIONS_ASC' | 'INTEGRATIONS_DESC' | 'IS_PUBLISHED_ASC' | 'IS_PUBLISHED_DESC' | 'MAX_ATTEMPTS_ASC' | 'MAX_ATTEMPTS_DESC' | 'MEMORY_LIMIT_BYTES_ASC' | 'MEMORY_LIMIT_BYTES_DESC' | 'MEMORY_REQUEST_BYTES_ASC' | 'MEMORY_REQUEST_BYTES_DESC' | 'MODULE_TABLE_ASC' | 'MODULE_TABLE_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'OUTPUTS_ASC' | 'OUTPUTS_DESC' | 'PAYLOAD_ARGS_ASC' | 'PAYLOAD_ARGS_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIORITY_ASC' | 'PRIORITY_DESC' | 'PROPS_ASC' | 'PROPS_DESC' | 'PROTECTED_ASC' | 'PROTECTED_DESC' | 'PUBLISHED_AT_ASC' | 'PUBLISHED_AT_DESC' | 'QUEUE_NAME_ASC' | 'QUEUE_NAME_DESC' | 'REQUIRED_BUCKETS_ASC' | 'REQUIRED_BUCKETS_DESC' | 'REQUIRED_CONFIGS_ASC' | 'REQUIRED_CONFIGS_DESC' | 'REQUIRED_MODELS_ASC' | 'REQUIRED_MODELS_DESC' | 'REQUIRED_SECRETS_ASC' | 'REQUIRED_SECRETS_DESC' | 'RESOURCES_ASC' | 'RESOURCES_DESC' | 'RUNTIME_ASC' | 'RUNTIME_DESC' | 'SCALE_MAX_ASC' | 'SCALE_MAX_DESC' | 'SCALE_MIN_ASC' | 'SCALE_MIN_DESC' | 'SYSTEM_ASC' | 'SYSTEM_DESC' | 'TARGET_FUNCTION_ASC' | 'TARGET_FUNCTION_DESC' | 'TARGET_SCHEMA_ASC' | 'TARGET_SCHEMA_DESC' | 'TASK_IDENTIFIER_ASC' | 'TASK_IDENTIFIER_DESC' | 'TIMEOUT_SECONDS_ASC' | 'TIMEOUT_SECONDS_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'VOLATILE_ASC' | 'VOLATILE_DESC';
59
63
  /** Methods to use when ordering `PlatformFunctionDeploymentEvent`. */
@@ -81,13 +85,13 @@ export type PlatformNamespaceOrderBy = 'ANNOTATIONS_ASC' | 'ANNOTATIONS_DESC' |
81
85
  /** Methods to use when ordering `PlatformResourceDeclaredCapacity`. */
82
86
  export type PlatformResourceDeclaredCapacityOrderBy = 'CPU_LIMIT_MILLICORES_ASC' | 'CPU_LIMIT_MILLICORES_DESC' | 'CPU_REQUEST_MILLICORES_ASC' | 'CPU_REQUEST_MILLICORES_DESC' | 'INSTALLATION_ID_ASC' | 'INSTALLATION_ID_DESC' | 'IS_TRANSIENT_ASC' | 'IS_TRANSIENT_DESC' | 'KIND_ASC' | 'KIND_DESC' | 'MEMORY_LIMIT_BYTES_ASC' | 'MEMORY_LIMIT_BYTES_DESC' | 'MEMORY_REQUEST_BYTES_ASC' | 'MEMORY_REQUEST_BYTES_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NATURAL' | 'POD_COUNT_MAX_ASC' | 'POD_COUNT_MAX_DESC' | 'POD_COUNT_MIN_ASC' | 'POD_COUNT_MIN_DESC' | 'SOURCE_ASC' | 'SOURCE_DESC' | 'SOURCE_ID_ASC' | 'SOURCE_ID_DESC' | 'STORAGE_SIZE_BYTES_ASC' | 'STORAGE_SIZE_BYTES_DESC';
83
87
  /** Methods to use when ordering `PlatformResourceDefinition`. */
84
- export type PlatformResourceDefinitionOrderBy = 'ANNOTATIONS_ASC' | 'ANNOTATIONS_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'CREATED_BY_ASC' | 'CREATED_BY_DESC' | 'DEFAULT_SPEC_ASC' | 'DEFAULT_SPEC_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'ID_ASC' | 'ID_DESC' | 'INTEGRATIONS_ASC' | 'INTEGRATIONS_DESC' | 'KIND_ASC' | 'KIND_DESC' | 'LABELS_ASC' | 'LABELS_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'REQUIRED_CONFIGS_ASC' | 'REQUIRED_CONFIGS_DESC' | 'REQUIRED_SECRETS_ASC' | 'REQUIRED_SECRETS_DESC' | 'SLUG_ASC' | 'SLUG_DESC' | 'STEP_UP_MIN_AGE_ASC' | 'STEP_UP_MIN_AGE_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'UPDATED_BY_ASC' | 'UPDATED_BY_DESC';
88
+ export type PlatformResourceDefinitionOrderBy = 'ANNOTATIONS_ASC' | 'ANNOTATIONS_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'CREATED_BY_ASC' | 'CREATED_BY_DESC' | 'DEFAULT_SPEC_ASC' | 'DEFAULT_SPEC_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'ID_ASC' | 'ID_DESC' | 'INTEGRATIONS_ASC' | 'INTEGRATIONS_DESC' | 'KIND_ASC' | 'KIND_DESC' | 'LABELS_ASC' | 'LABELS_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'PARAMS_SCHEMA_ASC' | 'PARAMS_SCHEMA_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'REQUIRED_CONFIGS_ASC' | 'REQUIRED_CONFIGS_DESC' | 'REQUIRED_SECRETS_ASC' | 'REQUIRED_SECRETS_DESC' | 'SLUG_ASC' | 'SLUG_DESC' | 'STEP_UP_MIN_AGE_ASC' | 'STEP_UP_MIN_AGE_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'UPDATED_BY_ASC' | 'UPDATED_BY_DESC';
85
89
  /** Methods to use when ordering `PlatformResourceEvent`. */
86
90
  export type PlatformResourceEventOrderBy = 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'EVENT_TYPE_ASC' | 'EVENT_TYPE_DESC' | 'ID_ASC' | 'ID_DESC' | 'MESSAGE_ASC' | 'MESSAGE_DESC' | 'METADATA_ASC' | 'METADATA_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'RESOURCE_ID_ASC' | 'RESOURCE_ID_DESC';
87
91
  /** Methods to use when ordering `PlatformResourceInstallation`. */
88
92
  export type PlatformResourceInstallationOrderBy = 'COMMIT_ID_ASC' | 'COMMIT_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'CREATED_BY_ASC' | 'CREATED_BY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'PARAMS_ASC' | 'PARAMS_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'REVISION_ASC' | 'REVISION_DESC' | 'SLUG_ASC' | 'SLUG_DESC' | 'STATUS_ASC' | 'STATUS_DESC' | 'STORE_ID_ASC' | 'STORE_ID_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'UPDATED_BY_ASC' | 'UPDATED_BY_DESC';
89
93
  /** Methods to use when ordering `PlatformResource`. */
90
- export type PlatformResourceOrderBy = 'ANNOTATIONS_ASC' | 'ANNOTATIONS_DESC' | 'CPU_LIMIT_MILLICORES_ASC' | 'CPU_LIMIT_MILLICORES_DESC' | 'CPU_REQUEST_MILLICORES_ASC' | 'CPU_REQUEST_MILLICORES_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'CREATED_BY_ASC' | 'CREATED_BY_DESC' | 'ERROR_COUNT_ASC' | 'ERROR_COUNT_DESC' | 'ID_ASC' | 'ID_DESC' | 'INSTALLATION_ID_ASC' | 'INSTALLATION_ID_DESC' | 'INTEGRATIONS_ASC' | 'INTEGRATIONS_DESC' | 'KIND_ASC' | 'KIND_DESC' | 'LABELS_ASC' | 'LABELS_DESC' | 'LAST_ERROR_ASC' | 'LAST_ERROR_DESC' | 'LAST_HEARTBEAT_AT_ASC' | 'LAST_HEARTBEAT_AT_DESC' | 'MEMORY_LIMIT_BYTES_ASC' | 'MEMORY_LIMIT_BYTES_DESC' | 'MEMORY_REQUEST_BYTES_ASC' | 'MEMORY_REQUEST_BYTES_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'REPLICAS_ASC' | 'REPLICAS_DESC' | 'REQUIRED_CONFIGS_ASC' | 'REQUIRED_CONFIGS_DESC' | 'REQUIRED_SECRETS_ASC' | 'REQUIRED_SECRETS_DESC' | 'RESOURCE_DEFINITION_ID_ASC' | 'RESOURCE_DEFINITION_ID_DESC' | 'SLUG_ASC' | 'SLUG_DESC' | 'SPEC_ASC' | 'SPEC_DESC' | 'STATUS_ASC' | 'STATUS_DESC' | 'STATUS_OBSERVED_ASC' | 'STATUS_OBSERVED_DESC' | 'STORAGE_CLASS_ASC' | 'STORAGE_CLASS_DESC' | 'STORAGE_SIZE_BYTES_ASC' | 'STORAGE_SIZE_BYTES_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'UPDATED_BY_ASC' | 'UPDATED_BY_DESC';
94
+ export type PlatformResourceOrderBy = 'ANNOTATIONS_ASC' | 'ANNOTATIONS_DESC' | 'CPU_LIMIT_MILLICORES_ASC' | 'CPU_LIMIT_MILLICORES_DESC' | 'CPU_REQUEST_MILLICORES_ASC' | 'CPU_REQUEST_MILLICORES_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'CREATED_BY_ASC' | 'CREATED_BY_DESC' | 'ERROR_COUNT_ASC' | 'ERROR_COUNT_DESC' | 'ID_ASC' | 'ID_DESC' | 'INSTALLATION_ID_ASC' | 'INSTALLATION_ID_DESC' | 'INTEGRATIONS_ASC' | 'INTEGRATIONS_DESC' | 'KIND_ASC' | 'KIND_DESC' | 'LABELS_ASC' | 'LABELS_DESC' | 'LAST_ERROR_ASC' | 'LAST_ERROR_DESC' | 'LAST_HEARTBEAT_AT_ASC' | 'LAST_HEARTBEAT_AT_DESC' | 'MEMORY_LIMIT_BYTES_ASC' | 'MEMORY_LIMIT_BYTES_DESC' | 'MEMORY_REQUEST_BYTES_ASC' | 'MEMORY_REQUEST_BYTES_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'REALM_ASC' | 'REALM_DESC' | 'REPLICAS_ASC' | 'REPLICAS_DESC' | 'REQUIRED_CONFIGS_ASC' | 'REQUIRED_CONFIGS_DESC' | 'REQUIRED_SECRETS_ASC' | 'REQUIRED_SECRETS_DESC' | 'RESOURCE_DEFINITION_ID_ASC' | 'RESOURCE_DEFINITION_ID_DESC' | 'SLUG_ASC' | 'SLUG_DESC' | 'SPEC_ASC' | 'SPEC_DESC' | 'STATUS_ASC' | 'STATUS_DESC' | 'STATUS_OBSERVED_ASC' | 'STATUS_OBSERVED_DESC' | 'STORAGE_CLASS_ASC' | 'STORAGE_CLASS_DESC' | 'STORAGE_SIZE_BYTES_ASC' | 'STORAGE_SIZE_BYTES_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'UPDATED_BY_ASC' | 'UPDATED_BY_DESC';
91
95
  /** Methods to use when ordering `PlatformResourceStatusCheck`. */
92
96
  export type PlatformResourceStatusCheckOrderBy = 'COMPLETED_AT_ASC' | 'COMPLETED_AT_DESC' | 'ID_ASC' | 'ID_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'REQUESTED_AT_ASC' | 'REQUESTED_AT_DESC' | 'REQUESTED_BY_ASC' | 'REQUESTED_BY_DESC' | 'RESOURCE_ID_ASC' | 'RESOURCE_ID_DESC' | 'RESULT_ASC' | 'RESULT_DESC' | 'STATUS_ASC' | 'STATUS_DESC';
93
97
  /** Methods to use when ordering `PlatformResourceUsageLog`. */
@@ -97,11 +101,11 @@ export type PlatformResourceUsageSummaryOrderBy = 'DATE_ASC' | 'DATE_DESC' | 'GB
97
101
  /** Methods to use when ordering `PlatformResourceUtilization`. */
98
102
  export type PlatformResourceUtilizationOrderBy = 'AVG_MEMORY_BYTES_ASC' | 'AVG_MEMORY_BYTES_DESC' | 'CPU_LIMIT_MILLICORES_ASC' | 'CPU_LIMIT_MILLICORES_DESC' | 'CPU_PEAK_UTILIZATION_ASC' | 'CPU_PEAK_UTILIZATION_DESC' | 'CPU_REQUEST_HEADROOM_MILLICORES_ASC' | 'CPU_REQUEST_HEADROOM_MILLICORES_DESC' | 'CPU_REQUEST_MILLICORES_ASC' | 'CPU_REQUEST_MILLICORES_DESC' | 'DATE_ASC' | 'DATE_DESC' | 'GB_SECONDS_ASC' | 'GB_SECONDS_DESC' | 'KIND_ASC' | 'KIND_DESC' | 'MAX_CPU_MILLICORES_ASC' | 'MAX_CPU_MILLICORES_DESC' | 'MAX_MEMORY_BYTES_ASC' | 'MAX_MEMORY_BYTES_DESC' | 'MEMORY_LIMIT_BYTES_ASC' | 'MEMORY_LIMIT_BYTES_DESC' | 'MEMORY_PEAK_UTILIZATION_ASC' | 'MEMORY_PEAK_UTILIZATION_DESC' | 'MEMORY_REQUEST_BYTES_ASC' | 'MEMORY_REQUEST_BYTES_DESC' | 'MEMORY_REQUEST_HEADROOM_BYTES_ASC' | 'MEMORY_REQUEST_HEADROOM_BYTES_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NATURAL' | 'REPLICAS_ASC' | 'REPLICAS_DESC' | 'RESOURCE_ID_ASC' | 'RESOURCE_ID_DESC' | 'RUNTIME_SECONDS_ASC' | 'RUNTIME_SECONDS_DESC' | 'SAMPLE_COUNT_ASC' | 'SAMPLE_COUNT_DESC';
99
103
  /** Methods to use when ordering `PlatformResourcesHealth`. */
100
- export type PlatformResourcesHealthOrderBy = 'ANNOTATIONS_ASC' | 'ANNOTATIONS_DESC' | 'CPU_LIMIT_MILLICORES_ASC' | 'CPU_LIMIT_MILLICORES_DESC' | 'CPU_REQUEST_MILLICORES_ASC' | 'CPU_REQUEST_MILLICORES_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'CREATED_BY_ASC' | 'CREATED_BY_DESC' | 'ERROR_COUNT_ASC' | 'ERROR_COUNT_DESC' | 'ID_ASC' | 'ID_DESC' | 'INSTALLATION_ID_ASC' | 'INSTALLATION_ID_DESC' | 'INTEGRATIONS_ASC' | 'INTEGRATIONS_DESC' | 'KIND_ASC' | 'KIND_DESC' | 'LABELS_ASC' | 'LABELS_DESC' | 'LAST_ERROR_ASC' | 'LAST_ERROR_DESC' | 'LAST_HEARTBEAT_AT_ASC' | 'LAST_HEARTBEAT_AT_DESC' | 'MEMORY_LIMIT_BYTES_ASC' | 'MEMORY_LIMIT_BYTES_DESC' | 'MEMORY_REQUEST_BYTES_ASC' | 'MEMORY_REQUEST_BYTES_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'REPLICAS_ASC' | 'REPLICAS_DESC' | 'REQUIRED_CONFIGS_ASC' | 'REQUIRED_CONFIGS_DESC' | 'REQUIRED_SECRETS_ASC' | 'REQUIRED_SECRETS_DESC' | 'RESOURCE_DEFINITION_ID_ASC' | 'RESOURCE_DEFINITION_ID_DESC' | 'SLUG_ASC' | 'SLUG_DESC' | 'SPEC_ASC' | 'SPEC_DESC' | 'STATUS_ASC' | 'STATUS_DESC' | 'STATUS_DETAIL_ASC' | 'STATUS_DETAIL_DESC' | 'STATUS_OBSERVED_ASC' | 'STATUS_OBSERVED_DESC' | 'STORAGE_CLASS_ASC' | 'STORAGE_CLASS_DESC' | 'STORAGE_SIZE_BYTES_ASC' | 'STORAGE_SIZE_BYTES_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'UPDATED_BY_ASC' | 'UPDATED_BY_DESC';
104
+ export type PlatformResourcesHealthOrderBy = 'ANNOTATIONS_ASC' | 'ANNOTATIONS_DESC' | 'CPU_LIMIT_MILLICORES_ASC' | 'CPU_LIMIT_MILLICORES_DESC' | 'CPU_REQUEST_MILLICORES_ASC' | 'CPU_REQUEST_MILLICORES_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'CREATED_BY_ASC' | 'CREATED_BY_DESC' | 'ERROR_COUNT_ASC' | 'ERROR_COUNT_DESC' | 'ID_ASC' | 'ID_DESC' | 'INSTALLATION_ID_ASC' | 'INSTALLATION_ID_DESC' | 'INTEGRATIONS_ASC' | 'INTEGRATIONS_DESC' | 'KIND_ASC' | 'KIND_DESC' | 'LABELS_ASC' | 'LABELS_DESC' | 'LAST_ERROR_ASC' | 'LAST_ERROR_DESC' | 'LAST_HEARTBEAT_AT_ASC' | 'LAST_HEARTBEAT_AT_DESC' | 'MEMORY_LIMIT_BYTES_ASC' | 'MEMORY_LIMIT_BYTES_DESC' | 'MEMORY_REQUEST_BYTES_ASC' | 'MEMORY_REQUEST_BYTES_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'REALM_ASC' | 'REALM_DESC' | 'REPLICAS_ASC' | 'REPLICAS_DESC' | 'REQUIRED_CONFIGS_ASC' | 'REQUIRED_CONFIGS_DESC' | 'REQUIRED_SECRETS_ASC' | 'REQUIRED_SECRETS_DESC' | 'RESOURCE_DEFINITION_ID_ASC' | 'RESOURCE_DEFINITION_ID_DESC' | 'SLUG_ASC' | 'SLUG_DESC' | 'SPEC_ASC' | 'SPEC_DESC' | 'STATUS_ASC' | 'STATUS_DESC' | 'STATUS_DETAIL_ASC' | 'STATUS_DETAIL_DESC' | 'STATUS_OBSERVED_ASC' | 'STATUS_OBSERVED_DESC' | 'STORAGE_CLASS_ASC' | 'STORAGE_CLASS_DESC' | 'STORAGE_SIZE_BYTES_ASC' | 'STORAGE_SIZE_BYTES_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'UPDATED_BY_ASC' | 'UPDATED_BY_DESC';
101
105
  /** Methods to use when ordering `PlatformResourcesRequirementsState`. */
102
106
  export type PlatformResourcesRequirementsStateOrderBy = 'CONFIG_HASH_ASC' | 'CONFIG_HASH_DESC' | 'CONFIG_OBJECT_NAME_ASC' | 'CONFIG_OBJECT_NAME_DESC' | 'NATURAL' | 'REQUIREMENTS_HASH_ASC' | 'REQUIREMENTS_HASH_DESC' | 'RESOURCE_ID_ASC' | 'RESOURCE_ID_DESC' | 'SECRETS_HASH_ASC' | 'SECRETS_HASH_DESC' | 'SECRETS_OBJECT_NAME_ASC' | 'SECRETS_OBJECT_NAME_DESC' | 'SLUG_ASC' | 'SLUG_DESC';
103
107
  /** Methods to use when ordering `PlatformResourcesResolvedRequirement`. */
104
- export type PlatformResourcesResolvedRequirementOrderBy = 'ATOM_ID_ASC' | 'ATOM_ID_DESC' | 'CONFIG_OBJECT_NAME_ASC' | 'CONFIG_OBJECT_NAME_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'PRESENT_ASC' | 'PRESENT_DESC' | 'REQUIRED_ASC' | 'REQUIRED_DESC' | 'REQUIREMENT_KIND_ASC' | 'REQUIREMENT_KIND_DESC' | 'RESOURCE_ID_ASC' | 'RESOURCE_ID_DESC' | 'SECRETS_OBJECT_NAME_ASC' | 'SECRETS_OBJECT_NAME_DESC' | 'SLUG_ASC' | 'SLUG_DESC';
108
+ export type PlatformResourcesResolvedRequirementOrderBy = 'ATOM_ID_ASC' | 'ATOM_ID_DESC' | 'CONFIG_OBJECT_NAME_ASC' | 'CONFIG_OBJECT_NAME_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'PRESENT_ASC' | 'PRESENT_DESC' | 'REALM_ASC' | 'REALM_DESC' | 'REQUIRED_ASC' | 'REQUIRED_DESC' | 'REQUIREMENT_KIND_ASC' | 'REQUIREMENT_KIND_DESC' | 'RESOURCE_ID_ASC' | 'RESOURCE_ID_DESC' | 'SECRETS_OBJECT_NAME_ASC' | 'SECRETS_OBJECT_NAME_DESC' | 'SLUG_ASC' | 'SLUG_DESC';
105
109
  /** Methods to use when ordering `PlatformWebhookEndpoint`. */
106
110
  export type PlatformWebhookEndpointOrderBy = 'ACTIVE_ASC' | 'ACTIVE_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'CREATED_BY_ASC' | 'CREATED_BY_DESC' | 'FUNCTION_DEFINITION_ID_ASC' | 'FUNCTION_DEFINITION_ID_DESC' | 'HOST_ASC' | 'HOST_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NATURAL' | 'PATH_ASC' | 'PATH_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PROVIDER_ASC' | 'PROVIDER_DESC' | 'REPLAY_WINDOW_SECONDS_ASC' | 'REPLAY_WINDOW_SECONDS_DESC' | 'SIGNING_SECRET_NAME_ASC' | 'SIGNING_SECRET_NAME_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'UPDATED_BY_ASC' | 'UPDATED_BY_DESC';
107
111
  /** Methods to use when ordering `PlatformWebhookEvent`. */
@@ -109,13 +113,13 @@ export type PlatformWebhookEventOrderBy = 'CREATED_AT_ASC' | 'CREATED_AT_DESC' |
109
113
  /** Methods to use when ordering `ResourceDeclaredCapacity`. */
110
114
  export type ResourceDeclaredCapacityOrderBy = 'CPU_LIMIT_MILLICORES_ASC' | 'CPU_LIMIT_MILLICORES_DESC' | 'CPU_REQUEST_MILLICORES_ASC' | 'CPU_REQUEST_MILLICORES_DESC' | 'INSTALLATION_ID_ASC' | 'INSTALLATION_ID_DESC' | 'IS_TRANSIENT_ASC' | 'IS_TRANSIENT_DESC' | 'KIND_ASC' | 'KIND_DESC' | 'MEMORY_LIMIT_BYTES_ASC' | 'MEMORY_LIMIT_BYTES_DESC' | 'MEMORY_REQUEST_BYTES_ASC' | 'MEMORY_REQUEST_BYTES_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NATURAL' | 'POD_COUNT_MAX_ASC' | 'POD_COUNT_MAX_DESC' | 'POD_COUNT_MIN_ASC' | 'POD_COUNT_MIN_DESC' | 'SOURCE_ASC' | 'SOURCE_DESC' | 'SOURCE_ID_ASC' | 'SOURCE_ID_DESC' | 'STORAGE_SIZE_BYTES_ASC' | 'STORAGE_SIZE_BYTES_DESC';
111
115
  /** Methods to use when ordering `ResourceDefinition`. */
112
- export type ResourceDefinitionOrderBy = 'ANNOTATIONS_ASC' | 'ANNOTATIONS_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'CREATED_BY_ASC' | 'CREATED_BY_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DEFAULT_SPEC_ASC' | 'DEFAULT_SPEC_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'ID_ASC' | 'ID_DESC' | 'INTEGRATIONS_ASC' | 'INTEGRATIONS_DESC' | 'KIND_ASC' | 'KIND_DESC' | 'LABELS_ASC' | 'LABELS_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'REQUIRED_CONFIGS_ASC' | 'REQUIRED_CONFIGS_DESC' | 'REQUIRED_SECRETS_ASC' | 'REQUIRED_SECRETS_DESC' | 'SLUG_ASC' | 'SLUG_DESC' | 'STEP_UP_MIN_AGE_ASC' | 'STEP_UP_MIN_AGE_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'UPDATED_BY_ASC' | 'UPDATED_BY_DESC';
116
+ export type ResourceDefinitionOrderBy = 'ANNOTATIONS_ASC' | 'ANNOTATIONS_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'CREATED_BY_ASC' | 'CREATED_BY_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DEFAULT_SPEC_ASC' | 'DEFAULT_SPEC_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'ID_ASC' | 'ID_DESC' | 'INTEGRATIONS_ASC' | 'INTEGRATIONS_DESC' | 'KIND_ASC' | 'KIND_DESC' | 'LABELS_ASC' | 'LABELS_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'PARAMS_SCHEMA_ASC' | 'PARAMS_SCHEMA_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'REQUIRED_CONFIGS_ASC' | 'REQUIRED_CONFIGS_DESC' | 'REQUIRED_SECRETS_ASC' | 'REQUIRED_SECRETS_DESC' | 'SLUG_ASC' | 'SLUG_DESC' | 'STEP_UP_MIN_AGE_ASC' | 'STEP_UP_MIN_AGE_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'UPDATED_BY_ASC' | 'UPDATED_BY_DESC';
113
117
  /** Methods to use when ordering `ResourceEvent`. */
114
118
  export type ResourceEventOrderBy = 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'EVENT_TYPE_ASC' | 'EVENT_TYPE_DESC' | 'ID_ASC' | 'ID_DESC' | 'MESSAGE_ASC' | 'MESSAGE_DESC' | 'METADATA_ASC' | 'METADATA_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'RESOURCE_ID_ASC' | 'RESOURCE_ID_DESC';
115
119
  /** Methods to use when ordering `ResourceInstallation`. */
116
120
  export type ResourceInstallationOrderBy = 'COMMIT_ID_ASC' | 'COMMIT_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'CREATED_BY_ASC' | 'CREATED_BY_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'PARAMS_ASC' | 'PARAMS_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'REVISION_ASC' | 'REVISION_DESC' | 'SLUG_ASC' | 'SLUG_DESC' | 'STATUS_ASC' | 'STATUS_DESC' | 'STORE_ID_ASC' | 'STORE_ID_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'UPDATED_BY_ASC' | 'UPDATED_BY_DESC';
117
121
  /** Methods to use when ordering `Resource`. */
118
- export type ResourceOrderBy = 'ANNOTATIONS_ASC' | 'ANNOTATIONS_DESC' | 'CPU_LIMIT_MILLICORES_ASC' | 'CPU_LIMIT_MILLICORES_DESC' | 'CPU_REQUEST_MILLICORES_ASC' | 'CPU_REQUEST_MILLICORES_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'CREATED_BY_ASC' | 'CREATED_BY_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ERROR_COUNT_ASC' | 'ERROR_COUNT_DESC' | 'ID_ASC' | 'ID_DESC' | 'INSTALLATION_ID_ASC' | 'INSTALLATION_ID_DESC' | 'INTEGRATIONS_ASC' | 'INTEGRATIONS_DESC' | 'KIND_ASC' | 'KIND_DESC' | 'LABELS_ASC' | 'LABELS_DESC' | 'LAST_ERROR_ASC' | 'LAST_ERROR_DESC' | 'LAST_HEARTBEAT_AT_ASC' | 'LAST_HEARTBEAT_AT_DESC' | 'MEMORY_LIMIT_BYTES_ASC' | 'MEMORY_LIMIT_BYTES_DESC' | 'MEMORY_REQUEST_BYTES_ASC' | 'MEMORY_REQUEST_BYTES_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'REPLICAS_ASC' | 'REPLICAS_DESC' | 'REQUIRED_CONFIGS_ASC' | 'REQUIRED_CONFIGS_DESC' | 'REQUIRED_SECRETS_ASC' | 'REQUIRED_SECRETS_DESC' | 'RESOURCE_DEFINITION_ID_ASC' | 'RESOURCE_DEFINITION_ID_DESC' | 'SLUG_ASC' | 'SLUG_DESC' | 'SPEC_ASC' | 'SPEC_DESC' | 'STATUS_ASC' | 'STATUS_DESC' | 'STATUS_OBSERVED_ASC' | 'STATUS_OBSERVED_DESC' | 'STORAGE_CLASS_ASC' | 'STORAGE_CLASS_DESC' | 'STORAGE_SIZE_BYTES_ASC' | 'STORAGE_SIZE_BYTES_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'UPDATED_BY_ASC' | 'UPDATED_BY_DESC';
122
+ export type ResourceOrderBy = 'ANNOTATIONS_ASC' | 'ANNOTATIONS_DESC' | 'CPU_LIMIT_MILLICORES_ASC' | 'CPU_LIMIT_MILLICORES_DESC' | 'CPU_REQUEST_MILLICORES_ASC' | 'CPU_REQUEST_MILLICORES_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'CREATED_BY_ASC' | 'CREATED_BY_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ERROR_COUNT_ASC' | 'ERROR_COUNT_DESC' | 'ID_ASC' | 'ID_DESC' | 'INSTALLATION_ID_ASC' | 'INSTALLATION_ID_DESC' | 'INTEGRATIONS_ASC' | 'INTEGRATIONS_DESC' | 'KIND_ASC' | 'KIND_DESC' | 'LABELS_ASC' | 'LABELS_DESC' | 'LAST_ERROR_ASC' | 'LAST_ERROR_DESC' | 'LAST_HEARTBEAT_AT_ASC' | 'LAST_HEARTBEAT_AT_DESC' | 'MEMORY_LIMIT_BYTES_ASC' | 'MEMORY_LIMIT_BYTES_DESC' | 'MEMORY_REQUEST_BYTES_ASC' | 'MEMORY_REQUEST_BYTES_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'REALM_ASC' | 'REALM_DESC' | 'REPLICAS_ASC' | 'REPLICAS_DESC' | 'REQUIRED_CONFIGS_ASC' | 'REQUIRED_CONFIGS_DESC' | 'REQUIRED_SECRETS_ASC' | 'REQUIRED_SECRETS_DESC' | 'RESOURCE_DEFINITION_ID_ASC' | 'RESOURCE_DEFINITION_ID_DESC' | 'SLUG_ASC' | 'SLUG_DESC' | 'SPEC_ASC' | 'SPEC_DESC' | 'STATUS_ASC' | 'STATUS_DESC' | 'STATUS_OBSERVED_ASC' | 'STATUS_OBSERVED_DESC' | 'STORAGE_CLASS_ASC' | 'STORAGE_CLASS_DESC' | 'STORAGE_SIZE_BYTES_ASC' | 'STORAGE_SIZE_BYTES_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'UPDATED_BY_ASC' | 'UPDATED_BY_DESC';
119
123
  /** Methods to use when ordering `ResourceStatusCheck`. */
120
124
  export type ResourceStatusCheckOrderBy = 'COMPLETED_AT_ASC' | 'COMPLETED_AT_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'REQUESTED_AT_ASC' | 'REQUESTED_AT_DESC' | 'REQUESTED_BY_ASC' | 'REQUESTED_BY_DESC' | 'RESOURCE_ID_ASC' | 'RESOURCE_ID_DESC' | 'RESULT_ASC' | 'RESULT_DESC' | 'STATUS_ASC' | 'STATUS_DESC';
121
125
  /** Methods to use when ordering `ResourceUsageLog`. */
@@ -125,11 +129,11 @@ export type ResourceUsageSummaryOrderBy = 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC'
125
129
  /** Methods to use when ordering `ResourceUtilization`. */
126
130
  export type ResourceUtilizationOrderBy = 'AVG_MEMORY_BYTES_ASC' | 'AVG_MEMORY_BYTES_DESC' | 'CPU_LIMIT_MILLICORES_ASC' | 'CPU_LIMIT_MILLICORES_DESC' | 'CPU_PEAK_UTILIZATION_ASC' | 'CPU_PEAK_UTILIZATION_DESC' | 'CPU_REQUEST_HEADROOM_MILLICORES_ASC' | 'CPU_REQUEST_HEADROOM_MILLICORES_DESC' | 'CPU_REQUEST_MILLICORES_ASC' | 'CPU_REQUEST_MILLICORES_DESC' | 'DATE_ASC' | 'DATE_DESC' | 'GB_SECONDS_ASC' | 'GB_SECONDS_DESC' | 'KIND_ASC' | 'KIND_DESC' | 'MAX_CPU_MILLICORES_ASC' | 'MAX_CPU_MILLICORES_DESC' | 'MAX_MEMORY_BYTES_ASC' | 'MAX_MEMORY_BYTES_DESC' | 'MEMORY_LIMIT_BYTES_ASC' | 'MEMORY_LIMIT_BYTES_DESC' | 'MEMORY_PEAK_UTILIZATION_ASC' | 'MEMORY_PEAK_UTILIZATION_DESC' | 'MEMORY_REQUEST_BYTES_ASC' | 'MEMORY_REQUEST_BYTES_DESC' | 'MEMORY_REQUEST_HEADROOM_BYTES_ASC' | 'MEMORY_REQUEST_HEADROOM_BYTES_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NATURAL' | 'REPLICAS_ASC' | 'REPLICAS_DESC' | 'RESOURCE_ID_ASC' | 'RESOURCE_ID_DESC' | 'RUNTIME_SECONDS_ASC' | 'RUNTIME_SECONDS_DESC' | 'SAMPLE_COUNT_ASC' | 'SAMPLE_COUNT_DESC';
127
131
  /** Methods to use when ordering `ResourcesHealth`. */
128
- export type ResourcesHealthOrderBy = 'ANNOTATIONS_ASC' | 'ANNOTATIONS_DESC' | 'CPU_LIMIT_MILLICORES_ASC' | 'CPU_LIMIT_MILLICORES_DESC' | 'CPU_REQUEST_MILLICORES_ASC' | 'CPU_REQUEST_MILLICORES_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'CREATED_BY_ASC' | 'CREATED_BY_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ERROR_COUNT_ASC' | 'ERROR_COUNT_DESC' | 'ID_ASC' | 'ID_DESC' | 'INSTALLATION_ID_ASC' | 'INSTALLATION_ID_DESC' | 'INTEGRATIONS_ASC' | 'INTEGRATIONS_DESC' | 'KIND_ASC' | 'KIND_DESC' | 'LABELS_ASC' | 'LABELS_DESC' | 'LAST_ERROR_ASC' | 'LAST_ERROR_DESC' | 'LAST_HEARTBEAT_AT_ASC' | 'LAST_HEARTBEAT_AT_DESC' | 'MEMORY_LIMIT_BYTES_ASC' | 'MEMORY_LIMIT_BYTES_DESC' | 'MEMORY_REQUEST_BYTES_ASC' | 'MEMORY_REQUEST_BYTES_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'REPLICAS_ASC' | 'REPLICAS_DESC' | 'REQUIRED_CONFIGS_ASC' | 'REQUIRED_CONFIGS_DESC' | 'REQUIRED_SECRETS_ASC' | 'REQUIRED_SECRETS_DESC' | 'RESOURCE_DEFINITION_ID_ASC' | 'RESOURCE_DEFINITION_ID_DESC' | 'SLUG_ASC' | 'SLUG_DESC' | 'SPEC_ASC' | 'SPEC_DESC' | 'STATUS_ASC' | 'STATUS_DESC' | 'STATUS_DETAIL_ASC' | 'STATUS_DETAIL_DESC' | 'STATUS_OBSERVED_ASC' | 'STATUS_OBSERVED_DESC' | 'STORAGE_CLASS_ASC' | 'STORAGE_CLASS_DESC' | 'STORAGE_SIZE_BYTES_ASC' | 'STORAGE_SIZE_BYTES_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'UPDATED_BY_ASC' | 'UPDATED_BY_DESC';
132
+ export type ResourcesHealthOrderBy = 'ANNOTATIONS_ASC' | 'ANNOTATIONS_DESC' | 'CPU_LIMIT_MILLICORES_ASC' | 'CPU_LIMIT_MILLICORES_DESC' | 'CPU_REQUEST_MILLICORES_ASC' | 'CPU_REQUEST_MILLICORES_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'CREATED_BY_ASC' | 'CREATED_BY_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ERROR_COUNT_ASC' | 'ERROR_COUNT_DESC' | 'ID_ASC' | 'ID_DESC' | 'INSTALLATION_ID_ASC' | 'INSTALLATION_ID_DESC' | 'INTEGRATIONS_ASC' | 'INTEGRATIONS_DESC' | 'KIND_ASC' | 'KIND_DESC' | 'LABELS_ASC' | 'LABELS_DESC' | 'LAST_ERROR_ASC' | 'LAST_ERROR_DESC' | 'LAST_HEARTBEAT_AT_ASC' | 'LAST_HEARTBEAT_AT_DESC' | 'MEMORY_LIMIT_BYTES_ASC' | 'MEMORY_LIMIT_BYTES_DESC' | 'MEMORY_REQUEST_BYTES_ASC' | 'MEMORY_REQUEST_BYTES_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'REALM_ASC' | 'REALM_DESC' | 'REPLICAS_ASC' | 'REPLICAS_DESC' | 'REQUIRED_CONFIGS_ASC' | 'REQUIRED_CONFIGS_DESC' | 'REQUIRED_SECRETS_ASC' | 'REQUIRED_SECRETS_DESC' | 'RESOURCE_DEFINITION_ID_ASC' | 'RESOURCE_DEFINITION_ID_DESC' | 'SLUG_ASC' | 'SLUG_DESC' | 'SPEC_ASC' | 'SPEC_DESC' | 'STATUS_ASC' | 'STATUS_DESC' | 'STATUS_DETAIL_ASC' | 'STATUS_DETAIL_DESC' | 'STATUS_OBSERVED_ASC' | 'STATUS_OBSERVED_DESC' | 'STORAGE_CLASS_ASC' | 'STORAGE_CLASS_DESC' | 'STORAGE_SIZE_BYTES_ASC' | 'STORAGE_SIZE_BYTES_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'UPDATED_BY_ASC' | 'UPDATED_BY_DESC';
129
133
  /** Methods to use when ordering `ResourcesRequirementsState`. */
130
134
  export type ResourcesRequirementsStateOrderBy = 'CONFIG_HASH_ASC' | 'CONFIG_HASH_DESC' | 'CONFIG_OBJECT_NAME_ASC' | 'CONFIG_OBJECT_NAME_DESC' | 'NATURAL' | 'REQUIREMENTS_HASH_ASC' | 'REQUIREMENTS_HASH_DESC' | 'RESOURCE_ID_ASC' | 'RESOURCE_ID_DESC' | 'SECRETS_HASH_ASC' | 'SECRETS_HASH_DESC' | 'SECRETS_OBJECT_NAME_ASC' | 'SECRETS_OBJECT_NAME_DESC' | 'SLUG_ASC' | 'SLUG_DESC';
131
135
  /** Methods to use when ordering `ResourcesResolvedRequirement`. */
132
- export type ResourcesResolvedRequirementOrderBy = 'ATOM_ID_ASC' | 'ATOM_ID_DESC' | 'CONFIG_OBJECT_NAME_ASC' | 'CONFIG_OBJECT_NAME_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'PRESENT_ASC' | 'PRESENT_DESC' | 'REQUIRED_ASC' | 'REQUIRED_DESC' | 'REQUIREMENT_KIND_ASC' | 'REQUIREMENT_KIND_DESC' | 'RESOURCE_ID_ASC' | 'RESOURCE_ID_DESC' | 'SECRETS_OBJECT_NAME_ASC' | 'SECRETS_OBJECT_NAME_DESC' | 'SLUG_ASC' | 'SLUG_DESC';
136
+ export type ResourcesResolvedRequirementOrderBy = 'ATOM_ID_ASC' | 'ATOM_ID_DESC' | 'CONFIG_OBJECT_NAME_ASC' | 'CONFIG_OBJECT_NAME_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'PRESENT_ASC' | 'PRESENT_DESC' | 'REALM_ASC' | 'REALM_DESC' | 'REQUIRED_ASC' | 'REQUIRED_DESC' | 'REQUIREMENT_KIND_ASC' | 'REQUIREMENT_KIND_DESC' | 'RESOURCE_ID_ASC' | 'RESOURCE_ID_DESC' | 'SECRETS_OBJECT_NAME_ASC' | 'SECRETS_OBJECT_NAME_DESC' | 'SLUG_ASC' | 'SLUG_DESC';
133
137
  /** Methods to use when ordering `WebhookEndpoint`. */
134
138
  export type WebhookEndpointOrderBy = 'ACTIVE_ASC' | 'ACTIVE_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'CREATED_BY_ASC' | 'CREATED_BY_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'FUNCTION_DEFINITION_ID_ASC' | 'FUNCTION_DEFINITION_ID_DESC' | 'HOST_ASC' | 'HOST_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NATURAL' | 'PATH_ASC' | 'PATH_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PROVIDER_ASC' | 'PROVIDER_DESC' | 'REPLAY_WINDOW_SECONDS_ASC' | 'REPLAY_WINDOW_SECONDS_DESC' | 'SIGNING_SECRET_NAME_ASC' | 'SIGNING_SECRET_NAME_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'UPDATED_BY_ASC' | 'UPDATED_BY_DESC';
135
139
  /** Methods to use when ordering `WebhookEvent`. */
@@ -242,6 +246,11 @@ export interface CreateFunctionApiBindingInput {
242
246
  /** The `FunctionApiBinding` to be created by this mutation. */
243
247
  functionApiBinding: FunctionApiBindingInput;
244
248
  }
249
+ export interface CreateFunctionCapabilityBindingInput {
250
+ clientMutationId?: string;
251
+ /** The `FunctionCapabilityBinding` to be created by this mutation. */
252
+ functionCapabilityBinding: FunctionCapabilityBindingInput;
253
+ }
245
254
  export interface CreateFunctionDefinitionInput {
246
255
  clientMutationId?: string;
247
256
  /** The `FunctionDefinition` to be created by this mutation. */
@@ -356,6 +365,11 @@ export interface CreatePlatformFunctionApiBindingInput {
356
365
  /** The `PlatformFunctionApiBinding` to be created by this mutation. */
357
366
  platformFunctionApiBinding: PlatformFunctionApiBindingInput;
358
367
  }
368
+ export interface CreatePlatformFunctionCapabilityBindingInput {
369
+ clientMutationId?: string;
370
+ /** The `PlatformFunctionCapabilityBinding` to be created by this mutation. */
371
+ platformFunctionCapabilityBinding: PlatformFunctionCapabilityBindingInput;
372
+ }
359
373
  export interface CreatePlatformFunctionDefinitionInput {
360
374
  clientMutationId?: string;
361
375
  /** The `PlatformFunctionDefinition` to be created by this mutation. */
@@ -596,6 +610,10 @@ export interface DeleteFunctionApiBindingInput {
596
610
  clientMutationId?: string;
597
611
  id: string;
598
612
  }
613
+ export interface DeleteFunctionCapabilityBindingInput {
614
+ clientMutationId?: string;
615
+ id: string;
616
+ }
599
617
  export interface DeleteFunctionDefinitionInput {
600
618
  clientMutationId?: string;
601
619
  id: string;
@@ -729,6 +747,10 @@ export interface DeletePlatformFunctionApiBindingInput {
729
747
  clientMutationId?: string;
730
748
  id: string;
731
749
  }
750
+ export interface DeletePlatformFunctionCapabilityBindingInput {
751
+ clientMutationId?: string;
752
+ id: string;
753
+ }
732
754
  export interface DeletePlatformFunctionDefinitionInput {
733
755
  clientMutationId?: string;
734
756
  id: string;
@@ -960,6 +982,79 @@ export interface FunctionApiBindingToManyFunctionInvocationFilter {
960
982
  /** Filters to entities where at least one related entity matches. */
961
983
  some?: FunctionInvocationFilter;
962
984
  }
985
+ /** A filter to be used against `FunctionCapabilityBinding` object types. All fields are combined with a logical ‘and.’ */
986
+ export interface FunctionCapabilityBindingFilter {
987
+ /** Checks for all expressions in this list. */
988
+ and?: FunctionCapabilityBindingFilter[];
989
+ /** Filter by the object’s `bucketId` field. */
990
+ bucketId?: UUIDFilter;
991
+ /** Filter by the object’s `createdAt` field. */
992
+ createdAt?: DatetimeFilter;
993
+ /** Filter by the object’s `databaseId` field. */
994
+ databaseId?: UUIDFilter;
995
+ /** Filter by the object’s `function` relation. */
996
+ function?: FunctionDefinitionFilter;
997
+ /** A related `function` exists. */
998
+ functionExists?: boolean;
999
+ /** Filter by the object’s `functionId` field. */
1000
+ functionId?: UUIDFilter;
1001
+ /** Filter by the object’s `graphId` field. */
1002
+ graphId?: UUIDFilter;
1003
+ /** Filter by the object’s `id` field. */
1004
+ id?: UUIDFilter;
1005
+ /** Filter by the object’s `key` field. */
1006
+ key?: StringFilter;
1007
+ /** Filter by the object’s `lifecycle` field. */
1008
+ lifecycle?: StringFilter;
1009
+ /** Filter by the object’s `metadata` field. */
1010
+ metadata?: JSONFilter;
1011
+ /** Negates the expression. */
1012
+ not?: FunctionCapabilityBindingFilter;
1013
+ /** Checks for any expressions in this list. */
1014
+ or?: FunctionCapabilityBindingFilter[];
1015
+ /** Filter by the object’s `updatedAt` field. */
1016
+ updatedAt?: DatetimeFilter;
1017
+ }
1018
+ /** An input for mutations affecting `FunctionCapabilityBinding` */
1019
+ export interface FunctionCapabilityBindingInput {
1020
+ /** Bucket this capability targets (exactly one typed target is set) */
1021
+ bucketId?: string;
1022
+ createdAt?: string;
1023
+ /** Database that owns this resource (database-scoped isolation) */
1024
+ databaseId: string;
1025
+ /** Function definition holding this capability (exactly one of function_id / graph_id is set) */
1026
+ functionId?: string;
1027
+ /** Flow graph holding this capability (exactly one of function_id / graph_id is set) */
1028
+ graphId?: string;
1029
+ id?: string;
1030
+ /** Runtime handle the holder addresses this capability by (e.g. default, scratch) */
1031
+ key?: string;
1032
+ /** Lifecycle the capability applies to: deployment (build/deploy time), execution (per invocation), root_execution (root of a graph execution tree) */
1033
+ lifecycle: string;
1034
+ /** Per-binding annotations (no runtime semantics) */
1035
+ metadata?: unknown;
1036
+ updatedAt?: string;
1037
+ }
1038
+ /** Represents an update to a `FunctionCapabilityBinding`. Fields that are set will be updated. */
1039
+ export interface FunctionCapabilityBindingPatch {
1040
+ /** Bucket this capability targets (exactly one typed target is set) */
1041
+ bucketId?: string;
1042
+ createdAt?: string;
1043
+ /** Database that owns this resource (database-scoped isolation) */
1044
+ databaseId?: string;
1045
+ /** Function definition holding this capability (exactly one of function_id / graph_id is set) */
1046
+ functionId?: string;
1047
+ /** Flow graph holding this capability (exactly one of function_id / graph_id is set) */
1048
+ graphId?: string;
1049
+ id?: string;
1050
+ /** Runtime handle the holder addresses this capability by (e.g. default, scratch) */
1051
+ key?: string;
1052
+ /** Lifecycle the capability applies to: deployment (build/deploy time), execution (per invocation), root_execution (root of a graph execution tree) */
1053
+ lifecycle?: string;
1054
+ /** Per-binding annotations (no runtime semantics) */
1055
+ metadata?: unknown;
1056
+ updatedAt?: string;
1057
+ }
963
1058
  /** A filter to be used against `FunctionDefinition` object types. All fields are combined with a logical ‘and.’ */
964
1059
  export interface FunctionDefinitionFilter {
965
1060
  /** Filter by the object’s `accessChannels` field. */
@@ -986,6 +1081,10 @@ export interface FunctionDefinitionFilter {
986
1081
  functionApiBindings?: FunctionDefinitionToManyFunctionApiBindingFilter;
987
1082
  /** `functionApiBindings` exist. */
988
1083
  functionApiBindingsExist?: boolean;
1084
+ /** Filter by the object’s `functionCapabilityBindingsByFunctionId` relation. */
1085
+ functionCapabilityBindingsByFunctionId?: FunctionDefinitionToManyFunctionCapabilityBindingFilter;
1086
+ /** `functionCapabilityBindingsByFunctionId` exist. */
1087
+ functionCapabilityBindingsByFunctionIdExist?: boolean;
989
1088
  /** Filter by the object’s `functionColumns` field. */
990
1089
  functionColumns?: JSONFilter;
991
1090
  /** Filter by the object’s `graphId` field. */
@@ -1220,6 +1319,15 @@ export interface FunctionDefinitionToManyFunctionApiBindingFilter {
1220
1319
  /** Filters to entities where at least one related entity matches. */
1221
1320
  some?: FunctionApiBindingFilter;
1222
1321
  }
1322
+ /** A filter to be used against many `FunctionCapabilityBinding` object types. All fields are combined with a logical ‘and.’ */
1323
+ export interface FunctionDefinitionToManyFunctionCapabilityBindingFilter {
1324
+ /** Filters to entities where every related entity matches. */
1325
+ every?: FunctionCapabilityBindingFilter;
1326
+ /** Filters to entities where no related entity matches. */
1327
+ none?: FunctionCapabilityBindingFilter;
1328
+ /** Filters to entities where at least one related entity matches. */
1329
+ some?: FunctionCapabilityBindingFilter;
1330
+ }
1223
1331
  /** A filter to be used against many `WebhookEndpoint` object types. All fields are combined with a logical ‘and.’ */
1224
1332
  export interface FunctionDefinitionToManyWebhookEndpointFilter {
1225
1333
  /** Filters to entities where every related entity matches. */
@@ -3057,6 +3165,73 @@ export interface PlatformFunctionApiBindingToManyPlatformFunctionInvocationFilte
3057
3165
  /** Filters to entities where at least one related entity matches. */
3058
3166
  some?: PlatformFunctionInvocationFilter;
3059
3167
  }
3168
+ /** A filter to be used against `PlatformFunctionCapabilityBinding` object types. All fields are combined with a logical ‘and.’ */
3169
+ export interface PlatformFunctionCapabilityBindingFilter {
3170
+ /** Checks for all expressions in this list. */
3171
+ and?: PlatformFunctionCapabilityBindingFilter[];
3172
+ /** Filter by the object’s `bucketId` field. */
3173
+ bucketId?: UUIDFilter;
3174
+ /** Filter by the object’s `createdAt` field. */
3175
+ createdAt?: DatetimeFilter;
3176
+ /** Filter by the object’s `function` relation. */
3177
+ function?: PlatformFunctionDefinitionFilter;
3178
+ /** A related `function` exists. */
3179
+ functionExists?: boolean;
3180
+ /** Filter by the object’s `functionId` field. */
3181
+ functionId?: UUIDFilter;
3182
+ /** Filter by the object’s `graphId` field. */
3183
+ graphId?: UUIDFilter;
3184
+ /** Filter by the object’s `id` field. */
3185
+ id?: UUIDFilter;
3186
+ /** Filter by the object’s `key` field. */
3187
+ key?: StringFilter;
3188
+ /** Filter by the object’s `lifecycle` field. */
3189
+ lifecycle?: StringFilter;
3190
+ /** Filter by the object’s `metadata` field. */
3191
+ metadata?: JSONFilter;
3192
+ /** Negates the expression. */
3193
+ not?: PlatformFunctionCapabilityBindingFilter;
3194
+ /** Checks for any expressions in this list. */
3195
+ or?: PlatformFunctionCapabilityBindingFilter[];
3196
+ /** Filter by the object’s `updatedAt` field. */
3197
+ updatedAt?: DatetimeFilter;
3198
+ }
3199
+ /** An input for mutations affecting `PlatformFunctionCapabilityBinding` */
3200
+ export interface PlatformFunctionCapabilityBindingInput {
3201
+ /** Bucket this capability targets (exactly one typed target is set) */
3202
+ bucketId?: string;
3203
+ createdAt?: string;
3204
+ /** Function definition holding this capability (exactly one of function_id / graph_id is set) */
3205
+ functionId?: string;
3206
+ /** Flow graph holding this capability (exactly one of function_id / graph_id is set) */
3207
+ graphId?: string;
3208
+ id?: string;
3209
+ /** Runtime handle the holder addresses this capability by (e.g. default, scratch) */
3210
+ key?: string;
3211
+ /** Lifecycle the capability applies to: deployment (build/deploy time), execution (per invocation), root_execution (root of a graph execution tree) */
3212
+ lifecycle: string;
3213
+ /** Per-binding annotations (no runtime semantics) */
3214
+ metadata?: unknown;
3215
+ updatedAt?: string;
3216
+ }
3217
+ /** Represents an update to a `PlatformFunctionCapabilityBinding`. Fields that are set will be updated. */
3218
+ export interface PlatformFunctionCapabilityBindingPatch {
3219
+ /** Bucket this capability targets (exactly one typed target is set) */
3220
+ bucketId?: string;
3221
+ createdAt?: string;
3222
+ /** Function definition holding this capability (exactly one of function_id / graph_id is set) */
3223
+ functionId?: string;
3224
+ /** Flow graph holding this capability (exactly one of function_id / graph_id is set) */
3225
+ graphId?: string;
3226
+ id?: string;
3227
+ /** Runtime handle the holder addresses this capability by (e.g. default, scratch) */
3228
+ key?: string;
3229
+ /** Lifecycle the capability applies to: deployment (build/deploy time), execution (per invocation), root_execution (root of a graph execution tree) */
3230
+ lifecycle?: string;
3231
+ /** Per-binding annotations (no runtime semantics) */
3232
+ metadata?: unknown;
3233
+ updatedAt?: string;
3234
+ }
3060
3235
  /** A filter to be used against `PlatformFunctionDefinition` object types. All fields are combined with a logical ‘and.’ */
3061
3236
  export interface PlatformFunctionDefinitionFilter {
3062
3237
  /** Filter by the object’s `accessChannels` field. */
@@ -3121,6 +3296,10 @@ export interface PlatformFunctionDefinitionFilter {
3121
3296
  platformFunctionApiBindingsByFunctionDefinitionId?: PlatformFunctionDefinitionToManyPlatformFunctionApiBindingFilter;
3122
3297
  /** `platformFunctionApiBindingsByFunctionDefinitionId` exist. */
3123
3298
  platformFunctionApiBindingsByFunctionDefinitionIdExist?: boolean;
3299
+ /** Filter by the object’s `platformFunctionCapabilityBindingsByFunctionId` relation. */
3300
+ platformFunctionCapabilityBindingsByFunctionId?: PlatformFunctionDefinitionToManyPlatformFunctionCapabilityBindingFilter;
3301
+ /** `platformFunctionCapabilityBindingsByFunctionId` exist. */
3302
+ platformFunctionCapabilityBindingsByFunctionIdExist?: boolean;
3124
3303
  /** Filter by the object’s `platformWebhookEndpointsByFunctionDefinitionId` relation. */
3125
3304
  platformWebhookEndpointsByFunctionDefinitionId?: PlatformFunctionDefinitionToManyPlatformWebhookEndpointFilter;
3126
3305
  /** `platformWebhookEndpointsByFunctionDefinitionId` exist. */
@@ -3327,6 +3506,15 @@ export interface PlatformFunctionDefinitionToManyPlatformFunctionApiBindingFilte
3327
3506
  /** Filters to entities where at least one related entity matches. */
3328
3507
  some?: PlatformFunctionApiBindingFilter;
3329
3508
  }
3509
+ /** A filter to be used against many `PlatformFunctionCapabilityBinding` object types. All fields are combined with a logical ‘and.’ */
3510
+ export interface PlatformFunctionDefinitionToManyPlatformFunctionCapabilityBindingFilter {
3511
+ /** Filters to entities where every related entity matches. */
3512
+ every?: PlatformFunctionCapabilityBindingFilter;
3513
+ /** Filters to entities where no related entity matches. */
3514
+ none?: PlatformFunctionCapabilityBindingFilter;
3515
+ /** Filters to entities where at least one related entity matches. */
3516
+ some?: PlatformFunctionCapabilityBindingFilter;
3517
+ }
3330
3518
  /** A filter to be used against many `PlatformWebhookEndpoint` object types. All fields are combined with a logical ‘and.’ */
3331
3519
  export interface PlatformFunctionDefinitionToManyPlatformWebhookEndpointFilter {
3332
3520
  /** Filters to entities where every related entity matches. */
@@ -4320,6 +4508,8 @@ export interface PlatformResourceDefinitionFilter {
4320
4508
  not?: PlatformResourceDefinitionFilter;
4321
4509
  /** Checks for any expressions in this list. */
4322
4510
  or?: PlatformResourceDefinitionFilter[];
4511
+ /** Filter by the object’s `paramsSchema` field. */
4512
+ paramsSchema?: JSONFilter;
4323
4513
  /** Filter by the object’s `platformResourcesByResourceDefinitionId` relation. */
4324
4514
  platformResourcesByResourceDefinitionId?: PlatformResourceDefinitionToManyPlatformResourceFilter;
4325
4515
  /** `platformResourcesByResourceDefinitionId` exist. */
@@ -4354,6 +4544,8 @@ export interface PlatformResourceDefinitionInput {
4354
4544
  name: string;
4355
4545
  /** Namespace this definition belongs to (security boundary, maps to K8s namespace) */
4356
4546
  namespaceId: string;
4547
+ /** Declared parameter interface: [{key,label,type,default,required,min,max,options,group,order,bindings:[{path,template,scale,round,unit}]}]. Installation params are validated and compiled through these declarations; [] keeps the legacy raw spec overlay. */
4548
+ paramsSchema?: unknown;
4357
4549
  /** Embedded config requirements: array of (name, required, provider) tuples. provider is the integration slug this requirement belongs to, if any. */
4358
4550
  requiredConfigs?: ResourceRequirementInput[];
4359
4551
  /** Embedded secret requirements: array of (name, required, provider) tuples. provider is the integration slug this requirement belongs to, if any. */
@@ -4386,6 +4578,8 @@ export interface PlatformResourceDefinitionPatch {
4386
4578
  name?: string;
4387
4579
  /** Namespace this definition belongs to (security boundary, maps to K8s namespace) */
4388
4580
  namespaceId?: string;
4581
+ /** Declared parameter interface: [{key,label,type,default,required,min,max,options,group,order,bindings:[{path,template,scale,round,unit}]}]. Installation params are validated and compiled through these declarations; [] keeps the legacy raw spec overlay. */
4582
+ paramsSchema?: unknown;
4389
4583
  /** Embedded config requirements: array of (name, required, provider) tuples. provider is the integration slug this requirement belongs to, if any. */
4390
4584
  requiredConfigs?: ResourceRequirementInput[];
4391
4585
  /** Embedded secret requirements: array of (name, required, provider) tuples. provider is the integration slug this requirement belongs to, if any. */
@@ -4515,6 +4709,8 @@ export interface PlatformResourceFilter {
4515
4709
  platformResourceStatusChecksByResourceId?: PlatformResourceToManyPlatformResourceStatusCheckFilter;
4516
4710
  /** `platformResourceStatusChecksByResourceId` exist. */
4517
4711
  platformResourceStatusChecksByResourceIdExist?: boolean;
4712
+ /** Filter by the object’s `realm` field. */
4713
+ realm?: StringFilter;
4518
4714
  /** Filter by the object’s `replicas` field. */
4519
4715
  replicas?: IntFilter;
4520
4716
  /** Filter by the object’s `resourceDefinition` relation. */
@@ -4565,6 +4761,8 @@ export interface PlatformResourceInput {
4565
4761
  name: string;
4566
4762
  /** Namespace this resource belongs to (security boundary, maps to K8s namespace) */
4567
4763
  namespaceId: string;
4764
+ /** Config/secret realm this resource resolves against. Per key, the realm-specific atom wins over the NULL-realm default. NULL = the default lane. */
4765
+ realm?: string;
4568
4766
  /** Embedded config requirements: array of (name, required, provider) tuples — extends the linked definition's requirements. provider is the integration slug this requirement belongs to, if any. */
4569
4767
  requiredConfigs?: ResourceRequirementInput[];
4570
4768
  /** Embedded secret requirements: array of (name, required, provider) tuples — extends the linked definition's requirements. provider is the integration slug this requirement belongs to, if any. */
@@ -4682,6 +4880,7 @@ export interface PlatformResourceInstallationToManyPlatformResourceFilter {
4682
4880
  }
4683
4881
  export interface PlatformResourceInstallationsInstallInput {
4684
4882
  clientMutationId?: string;
4883
+ definitionIds?: string[];
4685
4884
  name?: string;
4686
4885
  namespaceId?: string;
4687
4886
  newParams?: unknown;
@@ -4726,6 +4925,8 @@ export interface PlatformResourcePatch {
4726
4925
  name?: string;
4727
4926
  /** Namespace this resource belongs to (security boundary, maps to K8s namespace) */
4728
4927
  namespaceId?: string;
4928
+ /** Config/secret realm this resource resolves against. Per key, the realm-specific atom wins over the NULL-realm default. NULL = the default lane. */
4929
+ realm?: string;
4729
4930
  /** Embedded config requirements: array of (name, required, provider) tuples — extends the linked definition's requirements. provider is the integration slug this requirement belongs to, if any. */
4730
4931
  requiredConfigs?: ResourceRequirementInput[];
4731
4932
  /** Embedded secret requirements: array of (name, required, provider) tuples — extends the linked definition's requirements. provider is the integration slug this requirement belongs to, if any. */
@@ -5038,6 +5239,8 @@ export interface PlatformResourcesHealthFilter {
5038
5239
  not?: PlatformResourcesHealthFilter;
5039
5240
  /** Checks for any expressions in this list. */
5040
5241
  or?: PlatformResourcesHealthFilter[];
5242
+ /** Filter by the object’s `realm` field. */
5243
+ realm?: StringFilter;
5041
5244
  /** Filter by the object’s `replicas` field. */
5042
5245
  replicas?: IntFilter;
5043
5246
  /** Filter by the object’s `resourceDefinitionId` field. */
@@ -5102,6 +5305,8 @@ export interface PlatformResourcesResolvedRequirementFilter {
5102
5305
  or?: PlatformResourcesResolvedRequirementFilter[];
5103
5306
  /** Filter by the object’s `present` field. */
5104
5307
  present?: BooleanFilter;
5308
+ /** Filter by the object’s `realm` field. */
5309
+ realm?: StringFilter;
5105
5310
  /** Filter by the object’s `required` field. */
5106
5311
  required?: BooleanFilter;
5107
5312
  /** Filter by the object’s `requirementKind` field. */
@@ -5374,6 +5579,8 @@ export interface ResourceDefinitionFilter {
5374
5579
  not?: ResourceDefinitionFilter;
5375
5580
  /** Checks for any expressions in this list. */
5376
5581
  or?: ResourceDefinitionFilter[];
5582
+ /** Filter by the object’s `paramsSchema` field. */
5583
+ paramsSchema?: JSONFilter;
5377
5584
  /** Filter by the object’s `resources` relation. */
5378
5585
  resources?: ResourceDefinitionToManyResourceFilter;
5379
5586
  /** `resources` exist. */
@@ -5410,6 +5617,8 @@ export interface ResourceDefinitionInput {
5410
5617
  name: string;
5411
5618
  /** Namespace this definition belongs to (security boundary, maps to K8s namespace) */
5412
5619
  namespaceId: string;
5620
+ /** Declared parameter interface: [{key,label,type,default,required,min,max,options,group,order,bindings:[{path,template,scale,round,unit}]}]. Installation params are validated and compiled through these declarations; [] keeps the legacy raw spec overlay. */
5621
+ paramsSchema?: unknown;
5413
5622
  /** Embedded config requirements: array of (name, required, provider) tuples. provider is the integration slug this requirement belongs to, if any. */
5414
5623
  requiredConfigs?: ResourceRequirementInput[];
5415
5624
  /** Embedded secret requirements: array of (name, required, provider) tuples. provider is the integration slug this requirement belongs to, if any. */
@@ -5444,6 +5653,8 @@ export interface ResourceDefinitionPatch {
5444
5653
  name?: string;
5445
5654
  /** Namespace this definition belongs to (security boundary, maps to K8s namespace) */
5446
5655
  namespaceId?: string;
5656
+ /** Declared parameter interface: [{key,label,type,default,required,min,max,options,group,order,bindings:[{path,template,scale,round,unit}]}]. Installation params are validated and compiled through these declarations; [] keeps the legacy raw spec overlay. */
5657
+ paramsSchema?: unknown;
5447
5658
  /** Embedded config requirements: array of (name, required, provider) tuples. provider is the integration slug this requirement belongs to, if any. */
5448
5659
  requiredConfigs?: ResourceRequirementInput[];
5449
5660
  /** Embedded secret requirements: array of (name, required, provider) tuples. provider is the integration slug this requirement belongs to, if any. */
@@ -5577,6 +5788,8 @@ export interface ResourceFilter {
5577
5788
  not?: ResourceFilter;
5578
5789
  /** Checks for any expressions in this list. */
5579
5790
  or?: ResourceFilter[];
5791
+ /** Filter by the object’s `realm` field. */
5792
+ realm?: StringFilter;
5580
5793
  /** Filter by the object’s `replicas` field. */
5581
5794
  replicas?: IntFilter;
5582
5795
  /** Filter by the object’s `resourceDefinition` relation. */
@@ -5633,6 +5846,8 @@ export interface ResourceInput {
5633
5846
  name: string;
5634
5847
  /** Namespace this resource belongs to (security boundary, maps to K8s namespace) */
5635
5848
  namespaceId: string;
5849
+ /** Config/secret realm this resource resolves against. Per key, the realm-specific atom wins over the NULL-realm default. NULL = the default lane. */
5850
+ realm?: string;
5636
5851
  /** Embedded config requirements: array of (name, required, provider) tuples — extends the linked definition's requirements. provider is the integration slug this requirement belongs to, if any. */
5637
5852
  requiredConfigs?: ResourceRequirementInput[];
5638
5853
  /** Embedded secret requirements: array of (name, required, provider) tuples — extends the linked definition's requirements. provider is the integration slug this requirement belongs to, if any. */
@@ -5756,6 +5971,7 @@ export interface ResourceInstallationToManyResourceFilter {
5756
5971
  }
5757
5972
  export interface ResourceInstallationsInstallInput {
5758
5973
  clientMutationId?: string;
5974
+ definitionIds?: string[];
5759
5975
  name?: string;
5760
5976
  namespaceId?: string;
5761
5977
  newParams?: unknown;
@@ -5802,6 +6018,8 @@ export interface ResourcePatch {
5802
6018
  name?: string;
5803
6019
  /** Namespace this resource belongs to (security boundary, maps to K8s namespace) */
5804
6020
  namespaceId?: string;
6021
+ /** Config/secret realm this resource resolves against. Per key, the realm-specific atom wins over the NULL-realm default. NULL = the default lane. */
6022
+ realm?: string;
5805
6023
  /** Embedded config requirements: array of (name, required, provider) tuples — extends the linked definition's requirements. provider is the integration slug this requirement belongs to, if any. */
5806
6024
  requiredConfigs?: ResourceRequirementInput[];
5807
6025
  /** Embedded secret requirements: array of (name, required, provider) tuples — extends the linked definition's requirements. provider is the integration slug this requirement belongs to, if any. */
@@ -6140,6 +6358,8 @@ export interface ResourcesHealthFilter {
6140
6358
  not?: ResourcesHealthFilter;
6141
6359
  /** Checks for any expressions in this list. */
6142
6360
  or?: ResourcesHealthFilter[];
6361
+ /** Filter by the object’s `realm` field. */
6362
+ realm?: StringFilter;
6143
6363
  /** Filter by the object’s `replicas` field. */
6144
6364
  replicas?: IntFilter;
6145
6365
  /** Filter by the object’s `resourceDefinitionId` field. */
@@ -6204,6 +6424,8 @@ export interface ResourcesResolvedRequirementFilter {
6204
6424
  or?: ResourcesResolvedRequirementFilter[];
6205
6425
  /** Filter by the object’s `present` field. */
6206
6426
  present?: BooleanFilter;
6427
+ /** Filter by the object’s `realm` field. */
6428
+ realm?: StringFilter;
6207
6429
  /** Filter by the object’s `required` field. */
6208
6430
  required?: BooleanFilter;
6209
6431
  /** Filter by the object’s `requirementKind` field. */
@@ -6254,6 +6476,12 @@ export interface UpdateFunctionApiBindingInput {
6254
6476
  functionApiBindingPatch: FunctionApiBindingPatch;
6255
6477
  id: string;
6256
6478
  }
6479
+ export interface UpdateFunctionCapabilityBindingInput {
6480
+ clientMutationId?: string;
6481
+ /** An object where the defined keys will be set on the `FunctionCapabilityBinding` being updated. */
6482
+ functionCapabilityBindingPatch: FunctionCapabilityBindingPatch;
6483
+ id: string;
6484
+ }
6257
6485
  export interface UpdateFunctionDefinitionInput {
6258
6486
  clientMutationId?: string;
6259
6487
  /** An object where the defined keys will be set on the `FunctionDefinition` being updated. */
@@ -6431,6 +6659,12 @@ export interface UpdatePlatformFunctionApiBindingInput {
6431
6659
  /** An object where the defined keys will be set on the `PlatformFunctionApiBinding` being updated. */
6432
6660
  platformFunctionApiBindingPatch: PlatformFunctionApiBindingPatch;
6433
6661
  }
6662
+ export interface UpdatePlatformFunctionCapabilityBindingInput {
6663
+ clientMutationId?: string;
6664
+ id: string;
6665
+ /** An object where the defined keys will be set on the `PlatformFunctionCapabilityBinding` being updated. */
6666
+ platformFunctionCapabilityBindingPatch: PlatformFunctionCapabilityBindingPatch;
6667
+ }
6434
6668
  export interface UpdatePlatformFunctionDefinitionInput {
6435
6669
  clientMutationId?: string;
6436
6670
  id: string;
@@ -6873,6 +7107,13 @@ export interface FunctionApiBindingConnection {
6873
7107
  pageInfo: PageInfo;
6874
7108
  totalCount: number;
6875
7109
  }
7110
+ /** A connection to a list of `FunctionCapabilityBinding` values. */
7111
+ export interface FunctionCapabilityBindingConnection {
7112
+ edges: FunctionCapabilityBindingEdge[];
7113
+ nodes: FunctionCapabilityBinding[];
7114
+ pageInfo: PageInfo;
7115
+ totalCount: number;
7116
+ }
6876
7117
  /** A connection to a list of `FunctionDefinition` values. */
6877
7118
  export interface FunctionDefinitionConnection {
6878
7119
  edges: FunctionDefinitionEdge[];
@@ -7041,6 +7282,13 @@ export interface PlatformFunctionApiBindingConnection {
7041
7282
  pageInfo: PageInfo;
7042
7283
  totalCount: number;
7043
7284
  }
7285
+ /** A connection to a list of `PlatformFunctionCapabilityBinding` values. */
7286
+ export interface PlatformFunctionCapabilityBindingConnection {
7287
+ edges: PlatformFunctionCapabilityBindingEdge[];
7288
+ nodes: PlatformFunctionCapabilityBinding[];
7289
+ pageInfo: PageInfo;
7290
+ totalCount: number;
7291
+ }
7044
7292
  /** A connection to a list of `PlatformFunctionDefinition` values. */
7045
7293
  export interface PlatformFunctionDefinitionConnection {
7046
7294
  edges: PlatformFunctionDefinitionEdge[];
@@ -7360,6 +7608,12 @@ export interface CreateFunctionApiBindingPayload {
7360
7608
  functionApiBinding?: FunctionApiBinding | null;
7361
7609
  functionApiBindingEdge?: FunctionApiBindingEdge | null;
7362
7610
  }
7611
+ export interface CreateFunctionCapabilityBindingPayload {
7612
+ clientMutationId?: string | null;
7613
+ /** The `FunctionCapabilityBinding` that was created by this mutation. */
7614
+ functionCapabilityBinding?: FunctionCapabilityBinding | null;
7615
+ functionCapabilityBindingEdge?: FunctionCapabilityBindingEdge | null;
7616
+ }
7363
7617
  export interface CreateFunctionDefinitionPayload {
7364
7618
  clientMutationId?: string | null;
7365
7619
  /** The `FunctionDefinition` that was created by this mutation. */
@@ -7490,6 +7744,12 @@ export interface CreatePlatformFunctionApiBindingPayload {
7490
7744
  platformFunctionApiBinding?: PlatformFunctionApiBinding | null;
7491
7745
  platformFunctionApiBindingEdge?: PlatformFunctionApiBindingEdge | null;
7492
7746
  }
7747
+ export interface CreatePlatformFunctionCapabilityBindingPayload {
7748
+ clientMutationId?: string | null;
7749
+ /** The `PlatformFunctionCapabilityBinding` that was created by this mutation. */
7750
+ platformFunctionCapabilityBinding?: PlatformFunctionCapabilityBinding | null;
7751
+ platformFunctionCapabilityBindingEdge?: PlatformFunctionCapabilityBindingEdge | null;
7752
+ }
7493
7753
  export interface CreatePlatformFunctionDefinitionPayload {
7494
7754
  clientMutationId?: string | null;
7495
7755
  /** The `PlatformFunctionDefinition` that was created by this mutation. */
@@ -7682,6 +7942,12 @@ export interface DeleteFunctionApiBindingPayload {
7682
7942
  functionApiBinding?: FunctionApiBinding | null;
7683
7943
  functionApiBindingEdge?: FunctionApiBindingEdge | null;
7684
7944
  }
7945
+ export interface DeleteFunctionCapabilityBindingPayload {
7946
+ clientMutationId?: string | null;
7947
+ /** The `FunctionCapabilityBinding` that was deleted by this mutation. */
7948
+ functionCapabilityBinding?: FunctionCapabilityBinding | null;
7949
+ functionCapabilityBindingEdge?: FunctionCapabilityBindingEdge | null;
7950
+ }
7685
7951
  export interface DeleteFunctionDefinitionPayload {
7686
7952
  clientMutationId?: string | null;
7687
7953
  /** The `FunctionDefinition` that was deleted by this mutation. */
@@ -7814,6 +8080,12 @@ export interface DeletePlatformFunctionApiBindingPayload {
7814
8080
  platformFunctionApiBinding?: PlatformFunctionApiBinding | null;
7815
8081
  platformFunctionApiBindingEdge?: PlatformFunctionApiBindingEdge | null;
7816
8082
  }
8083
+ export interface DeletePlatformFunctionCapabilityBindingPayload {
8084
+ clientMutationId?: string | null;
8085
+ /** The `PlatformFunctionCapabilityBinding` that was deleted by this mutation. */
8086
+ platformFunctionCapabilityBinding?: PlatformFunctionCapabilityBinding | null;
8087
+ platformFunctionCapabilityBindingEdge?: PlatformFunctionCapabilityBindingEdge | null;
8088
+ }
7817
8089
  export interface DeletePlatformFunctionDefinitionPayload {
7818
8090
  clientMutationId?: string | null;
7819
8091
  /** The `PlatformFunctionDefinition` that was deleted by this mutation. */
@@ -8094,6 +8366,12 @@ export interface UpdateFunctionApiBindingPayload {
8094
8366
  functionApiBinding?: FunctionApiBinding | null;
8095
8367
  functionApiBindingEdge?: FunctionApiBindingEdge | null;
8096
8368
  }
8369
+ export interface UpdateFunctionCapabilityBindingPayload {
8370
+ clientMutationId?: string | null;
8371
+ /** The `FunctionCapabilityBinding` that was updated by this mutation. */
8372
+ functionCapabilityBinding?: FunctionCapabilityBinding | null;
8373
+ functionCapabilityBindingEdge?: FunctionCapabilityBindingEdge | null;
8374
+ }
8097
8375
  export interface UpdateFunctionDefinitionPayload {
8098
8376
  clientMutationId?: string | null;
8099
8377
  /** The `FunctionDefinition` that was updated by this mutation. */
@@ -8226,6 +8504,12 @@ export interface UpdatePlatformFunctionApiBindingPayload {
8226
8504
  platformFunctionApiBinding?: PlatformFunctionApiBinding | null;
8227
8505
  platformFunctionApiBindingEdge?: PlatformFunctionApiBindingEdge | null;
8228
8506
  }
8507
+ export interface UpdatePlatformFunctionCapabilityBindingPayload {
8508
+ clientMutationId?: string | null;
8509
+ /** The `PlatformFunctionCapabilityBinding` that was updated by this mutation. */
8510
+ platformFunctionCapabilityBinding?: PlatformFunctionCapabilityBinding | null;
8511
+ platformFunctionCapabilityBindingEdge?: PlatformFunctionCapabilityBindingEdge | null;
8512
+ }
8229
8513
  export interface UpdatePlatformFunctionDefinitionPayload {
8230
8514
  clientMutationId?: string | null;
8231
8515
  /** The `PlatformFunctionDefinition` that was updated by this mutation. */
@@ -8419,6 +8703,7 @@ export interface MetaTable {
8419
8703
  i18n?: MetaI18n | null;
8420
8704
  indexes: MetaIndex[];
8421
8705
  inflection: MetaInflection;
8706
+ /** Final GraphQL output type name */
8422
8707
  name: string;
8423
8708
  primaryKeyConstraints: MetaPrimaryKeyConstraint[];
8424
8709
  query: MetaQuery;
@@ -8432,6 +8717,8 @@ export interface MetaTable {
8432
8717
  search?: MetaSearch | null;
8433
8718
  /** Storage metadata (null if not a storage table) */
8434
8719
  storage?: MetaStorage | null;
8720
+ /** PostgreSQL table name */
8721
+ tableName: string;
8435
8722
  uniqueConstraints: MetaUniqueConstraint[];
8436
8723
  }
8437
8724
  /** A `DbPreset` edge in the connection. */
@@ -8457,6 +8744,12 @@ export interface FunctionApiBindingEdge {
8457
8744
  /** The `FunctionApiBinding` at the end of the edge. */
8458
8745
  node?: FunctionApiBinding | null;
8459
8746
  }
8747
+ /** A `FunctionCapabilityBinding` edge in the connection. */
8748
+ export interface FunctionCapabilityBindingEdge {
8749
+ cursor?: string | null;
8750
+ /** The `FunctionCapabilityBinding` at the end of the edge. */
8751
+ node?: FunctionCapabilityBinding | null;
8752
+ }
8460
8753
  /** A `FunctionDefinition` edge in the connection. */
8461
8754
  export interface FunctionDefinitionEdge {
8462
8755
  cursor?: string | null;
@@ -8601,6 +8894,12 @@ export interface PlatformFunctionApiBindingEdge {
8601
8894
  /** The `PlatformFunctionApiBinding` at the end of the edge. */
8602
8895
  node?: PlatformFunctionApiBinding | null;
8603
8896
  }
8897
+ /** A `PlatformFunctionCapabilityBinding` edge in the connection. */
8898
+ export interface PlatformFunctionCapabilityBindingEdge {
8899
+ cursor?: string | null;
8900
+ /** The `PlatformFunctionCapabilityBinding` at the end of the edge. */
8901
+ node?: PlatformFunctionCapabilityBinding | null;
8902
+ }
8604
8903
  /** A `PlatformFunctionDefinition` edge in the connection. */
8605
8904
  export interface PlatformFunctionDefinitionEdge {
8606
8905
  cursor?: string | null;
@@ -8855,6 +9154,8 @@ export interface MetaConstraints {
8855
9154
  }
8856
9155
  /** Information about a table field/column */
8857
9156
  export interface MetaField {
9157
+ /** PostgreSQL column name */
9158
+ columnName: string;
8858
9159
  description?: string | null;
8859
9160
  /** Enum metadata if this field has an enum type */
8860
9161
  enumValues?: MetaEnum | null;
@@ -8862,6 +9163,7 @@ export interface MetaField {
8862
9163
  isForeignKey: boolean;
8863
9164
  isNotNull: boolean;
8864
9165
  isPrimaryKey: boolean;
9166
+ /** Final GraphQL field name */
8865
9167
  name: string;
8866
9168
  type: MetaType;
8867
9169
  }
@@ -8911,7 +9213,7 @@ export interface MetaPrimaryKeyConstraint {
8911
9213
  }
8912
9214
  /** Table query/mutation names */
8913
9215
  export interface MetaQuery {
8914
- all: string;
9216
+ all?: string | null;
8915
9217
  create?: string | null;
8916
9218
  delete?: string | null;
8917
9219
  one?: string | null;