@constructive-io/react 0.27.0 → 0.27.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (373) hide show
  1. package/api/orm/input-types.d.ts +144 -171
  2. package/api/schema-types.d.ts +676 -678
  3. package/api/types.d.ts +9 -14
  4. package/auth/hooks/index.d.ts +1 -1
  5. package/auth/hooks/index.js +1 -1
  6. package/auth/hooks/invalidation.d.ts +24 -0
  7. package/auth/hooks/invalidation.js +64 -0
  8. package/auth/hooks/mutation-keys.d.ts +56 -0
  9. package/auth/hooks/mutation-keys.js +44 -1
  10. package/auth/hooks/mutations/index.d.ts +11 -0
  11. package/auth/hooks/mutations/index.js +11 -0
  12. package/auth/hooks/mutations/useCreateOrgApiKeyListMutation.d.ts +34 -0
  13. package/auth/hooks/mutations/useCreateOrgApiKeyListMutation.js +34 -0
  14. package/auth/hooks/mutations/useCreateOrgApiKeyMutation.d.ts +20 -0
  15. package/auth/hooks/mutations/useCreateOrgApiKeyMutation.js +26 -0
  16. package/auth/hooks/mutations/useCreateOrgPrincipalMutation.d.ts +20 -0
  17. package/auth/hooks/mutations/useCreateOrgPrincipalMutation.js +26 -0
  18. package/auth/hooks/mutations/useCreatePrincipalEntityMutation.d.ts +34 -0
  19. package/auth/hooks/mutations/useCreatePrincipalEntityMutation.js +34 -0
  20. package/auth/hooks/mutations/useCreatePrincipalMutation.d.ts +34 -0
  21. package/auth/hooks/mutations/useCreatePrincipalMutation.js +34 -0
  22. package/auth/hooks/mutations/useCreatePrincipalScopeOverrideMutation.d.ts +34 -0
  23. package/auth/hooks/mutations/useCreatePrincipalScopeOverrideMutation.js +34 -0
  24. package/auth/hooks/mutations/useDeleteOrgPrincipalMutation.d.ts +20 -0
  25. package/auth/hooks/mutations/useDeleteOrgPrincipalMutation.js +26 -0
  26. package/auth/hooks/mutations/useDeletePrincipalEntityMutation.d.ts +38 -0
  27. package/auth/hooks/mutations/useDeletePrincipalEntityMutation.js +39 -0
  28. package/auth/hooks/mutations/useDeletePrincipalMutation.d.ts +38 -0
  29. package/auth/hooks/mutations/useDeletePrincipalMutation.js +39 -0
  30. package/auth/hooks/mutations/useRevokeOrgApiKeyMutation.d.ts +20 -0
  31. package/auth/hooks/mutations/useRevokeOrgApiKeyMutation.js +26 -0
  32. package/auth/hooks/mutations/useUpdatePrincipalEntityMutation.d.ts +40 -0
  33. package/auth/hooks/mutations/useUpdatePrincipalEntityMutation.js +40 -0
  34. package/auth/hooks/queries/index.d.ts +9 -1
  35. package/auth/hooks/queries/index.js +9 -1
  36. package/auth/hooks/queries/useOrgApiKeyListQuery.d.ts +65 -0
  37. package/auth/hooks/queries/useOrgApiKeyListQuery.js +53 -0
  38. package/auth/hooks/queries/useOrgApiKeyListsQuery.d.ts +69 -0
  39. package/auth/hooks/queries/useOrgApiKeyListsQuery.js +38 -0
  40. package/auth/hooks/queries/usePrincipalEntitiesQuery.d.ts +69 -0
  41. package/auth/hooks/queries/usePrincipalEntitiesQuery.js +38 -0
  42. package/auth/hooks/queries/usePrincipalEntityQuery.d.ts +65 -0
  43. package/auth/hooks/queries/usePrincipalEntityQuery.js +53 -0
  44. package/auth/hooks/queries/usePrincipalQuery.d.ts +65 -0
  45. package/auth/hooks/queries/usePrincipalQuery.js +53 -0
  46. package/auth/hooks/queries/usePrincipalScopeOverrideQuery.d.ts +65 -0
  47. package/auth/hooks/queries/usePrincipalScopeOverrideQuery.js +53 -0
  48. package/auth/hooks/queries/usePrincipalScopeOverridesQuery.d.ts +69 -0
  49. package/auth/hooks/queries/usePrincipalScopeOverridesQuery.js +38 -0
  50. package/auth/hooks/queries/usePrincipalsQuery.d.ts +69 -0
  51. package/auth/hooks/queries/usePrincipalsQuery.js +38 -0
  52. package/auth/hooks/query-keys.d.ts +58 -2
  53. package/auth/hooks/query-keys.js +34 -2
  54. package/auth/orm/index.d.ts +32 -4
  55. package/auth/orm/index.js +8 -0
  56. package/auth/orm/input-types.d.ts +915 -145
  57. package/auth/orm/input-types.js +7 -0
  58. package/auth/orm/models/index.d.ts +4 -0
  59. package/auth/orm/models/index.js +9 -1
  60. package/auth/orm/models/orgApiKeyList.d.ts +36 -0
  61. package/auth/orm/models/orgApiKeyList.js +80 -0
  62. package/auth/orm/models/principal.d.ts +45 -0
  63. package/auth/orm/models/principal.js +93 -0
  64. package/auth/orm/models/principalEntity.d.ts +54 -0
  65. package/auth/orm/models/principalEntity.js +104 -0
  66. package/auth/orm/models/principalScopeOverride.d.ts +36 -0
  67. package/auth/orm/models/principalScopeOverride.js +80 -0
  68. package/auth/orm/mutation/index.d.ts +33 -1
  69. package/auth/orm/mutation/index.js +48 -0
  70. package/auth/orm/query/index.d.ts +4 -4
  71. package/auth/orm/query/index.js +7 -7
  72. package/auth/schema-types.d.ts +477 -93
  73. package/auth/types.d.ts +43 -0
  74. package/compute/hooks/index.d.ts +1 -1
  75. package/compute/hooks/index.js +1 -1
  76. package/compute/hooks/invalidation.d.ts +29 -5
  77. package/compute/hooks/invalidation.js +73 -9
  78. package/compute/hooks/mutation-keys.d.ts +60 -12
  79. package/compute/hooks/mutation-keys.js +41 -10
  80. package/compute/hooks/mutations/index.d.ts +16 -4
  81. package/compute/hooks/mutations/index.js +16 -4
  82. package/compute/hooks/mutations/useCreatePlatformNamespaceEventMutation.d.ts +34 -0
  83. package/compute/hooks/mutations/useCreatePlatformNamespaceEventMutation.js +34 -0
  84. package/compute/hooks/mutations/useCreatePlatformNamespaceMutation.d.ts +34 -0
  85. package/compute/hooks/mutations/useCreatePlatformNamespaceMutation.js +34 -0
  86. package/compute/hooks/mutations/useCreateResourceEventMutation.d.ts +34 -0
  87. package/compute/hooks/mutations/useCreateResourceEventMutation.js +34 -0
  88. package/compute/hooks/mutations/useCreateResourceMutation.d.ts +34 -0
  89. package/compute/hooks/mutations/useCreateResourceMutation.js +34 -0
  90. package/compute/hooks/mutations/useDeletePlatformNamespaceEventMutation.d.ts +40 -0
  91. package/compute/hooks/mutations/useDeletePlatformNamespaceEventMutation.js +40 -0
  92. package/compute/hooks/mutations/useDeletePlatformNamespaceMutation.d.ts +38 -0
  93. package/compute/hooks/mutations/useDeletePlatformNamespaceMutation.js +39 -0
  94. package/compute/hooks/mutations/useDeleteResourceEventMutation.d.ts +40 -0
  95. package/compute/hooks/mutations/useDeleteResourceEventMutation.js +40 -0
  96. package/compute/hooks/mutations/useDeleteResourceMutation.d.ts +38 -0
  97. package/compute/hooks/mutations/useDeleteResourceMutation.js +39 -0
  98. package/compute/hooks/mutations/useUpdatePlatformNamespaceEventMutation.d.ts +42 -0
  99. package/compute/hooks/mutations/useUpdatePlatformNamespaceEventMutation.js +41 -0
  100. package/compute/hooks/mutations/useUpdatePlatformNamespaceMutation.d.ts +40 -0
  101. package/compute/hooks/mutations/useUpdatePlatformNamespaceMutation.js +40 -0
  102. package/compute/hooks/mutations/useUpdateResourceEventMutation.d.ts +42 -0
  103. package/compute/hooks/mutations/useUpdateResourceEventMutation.js +41 -0
  104. package/compute/hooks/mutations/useUpdateResourceMutation.d.ts +40 -0
  105. package/compute/hooks/mutations/useUpdateResourceMutation.js +40 -0
  106. package/compute/hooks/queries/index.d.ts +10 -2
  107. package/compute/hooks/queries/index.js +10 -2
  108. package/compute/hooks/queries/usePlatformNamespaceEventQuery.d.ts +65 -0
  109. package/compute/hooks/queries/usePlatformNamespaceEventQuery.js +53 -0
  110. package/compute/hooks/queries/usePlatformNamespaceEventsQuery.d.ts +69 -0
  111. package/compute/hooks/queries/usePlatformNamespaceEventsQuery.js +38 -0
  112. package/compute/hooks/queries/usePlatformNamespaceQuery.d.ts +65 -0
  113. package/compute/hooks/queries/usePlatformNamespaceQuery.js +53 -0
  114. package/compute/hooks/queries/usePlatformNamespacesQuery.d.ts +69 -0
  115. package/compute/hooks/queries/usePlatformNamespacesQuery.js +38 -0
  116. package/compute/hooks/queries/useResourceEventQuery.d.ts +65 -0
  117. package/compute/hooks/queries/useResourceEventQuery.js +53 -0
  118. package/compute/hooks/queries/useResourceEventsQuery.d.ts +69 -0
  119. package/compute/hooks/queries/useResourceEventsQuery.js +38 -0
  120. package/compute/hooks/queries/useResourceQuery.d.ts +65 -0
  121. package/compute/hooks/queries/useResourceQuery.js +53 -0
  122. package/compute/hooks/queries/useResourcesQuery.d.ts +69 -0
  123. package/compute/hooks/queries/useResourcesQuery.js +38 -0
  124. package/compute/hooks/query-keys.d.ts +68 -12
  125. package/compute/hooks/query-keys.js +40 -8
  126. package/compute/orm/index.d.ts +15 -7
  127. package/compute/orm/index.js +10 -2
  128. package/compute/orm/input-types.d.ts +1159 -221
  129. package/compute/orm/input-types.js +4 -0
  130. package/compute/orm/models/index.d.ts +5 -1
  131. package/compute/orm/models/index.js +11 -3
  132. package/compute/orm/models/platformNamespace.d.ts +54 -0
  133. package/compute/orm/models/platformNamespace.js +104 -0
  134. package/compute/orm/models/platformNamespaceEvent.d.ts +56 -0
  135. package/compute/orm/models/platformNamespaceEvent.js +107 -0
  136. package/compute/orm/models/resource.d.ts +54 -0
  137. package/compute/orm/models/resource.js +104 -0
  138. package/compute/orm/models/resourceEvent.d.ts +56 -0
  139. package/compute/orm/models/resourceEvent.js +107 -0
  140. package/compute/orm/mutation/index.d.ts +9 -9
  141. package/compute/orm/mutation/index.js +12 -12
  142. package/compute/schema-types.d.ts +691 -107
  143. package/compute/types.d.ts +71 -12
  144. package/esm/api/orm/input-types.d.ts +144 -171
  145. package/esm/api/schema-types.d.ts +676 -678
  146. package/esm/api/types.d.ts +9 -14
  147. package/esm/auth/hooks/index.d.ts +1 -1
  148. package/esm/auth/hooks/index.js +1 -1
  149. package/esm/auth/hooks/invalidation.d.ts +24 -0
  150. package/esm/auth/hooks/invalidation.js +65 -1
  151. package/esm/auth/hooks/mutation-keys.d.ts +56 -0
  152. package/esm/auth/hooks/mutation-keys.js +43 -0
  153. package/esm/auth/hooks/mutations/index.d.ts +11 -0
  154. package/esm/auth/hooks/mutations/index.js +11 -0
  155. package/esm/auth/hooks/mutations/useCreateOrgApiKeyListMutation.d.ts +34 -0
  156. package/esm/auth/hooks/mutations/useCreateOrgApiKeyListMutation.js +31 -0
  157. package/esm/auth/hooks/mutations/useCreateOrgApiKeyMutation.d.ts +20 -0
  158. package/esm/auth/hooks/mutations/useCreateOrgApiKeyMutation.js +23 -0
  159. package/esm/auth/hooks/mutations/useCreateOrgPrincipalMutation.d.ts +20 -0
  160. package/esm/auth/hooks/mutations/useCreateOrgPrincipalMutation.js +23 -0
  161. package/esm/auth/hooks/mutations/useCreatePrincipalEntityMutation.d.ts +34 -0
  162. package/esm/auth/hooks/mutations/useCreatePrincipalEntityMutation.js +31 -0
  163. package/esm/auth/hooks/mutations/useCreatePrincipalMutation.d.ts +34 -0
  164. package/esm/auth/hooks/mutations/useCreatePrincipalMutation.js +31 -0
  165. package/esm/auth/hooks/mutations/useCreatePrincipalScopeOverrideMutation.d.ts +34 -0
  166. package/esm/auth/hooks/mutations/useCreatePrincipalScopeOverrideMutation.js +31 -0
  167. package/esm/auth/hooks/mutations/useDeleteOrgPrincipalMutation.d.ts +20 -0
  168. package/esm/auth/hooks/mutations/useDeleteOrgPrincipalMutation.js +23 -0
  169. package/esm/auth/hooks/mutations/useDeletePrincipalEntityMutation.d.ts +38 -0
  170. package/esm/auth/hooks/mutations/useDeletePrincipalEntityMutation.js +36 -0
  171. package/esm/auth/hooks/mutations/useDeletePrincipalMutation.d.ts +38 -0
  172. package/esm/auth/hooks/mutations/useDeletePrincipalMutation.js +36 -0
  173. package/esm/auth/hooks/mutations/useRevokeOrgApiKeyMutation.d.ts +20 -0
  174. package/esm/auth/hooks/mutations/useRevokeOrgApiKeyMutation.js +23 -0
  175. package/esm/auth/hooks/mutations/useUpdatePrincipalEntityMutation.d.ts +40 -0
  176. package/esm/auth/hooks/mutations/useUpdatePrincipalEntityMutation.js +37 -0
  177. package/esm/auth/hooks/queries/index.d.ts +9 -1
  178. package/esm/auth/hooks/queries/index.js +9 -1
  179. package/esm/auth/hooks/queries/useOrgApiKeyListQuery.d.ts +65 -0
  180. package/esm/auth/hooks/queries/useOrgApiKeyListQuery.js +47 -0
  181. package/esm/auth/hooks/queries/useOrgApiKeyListsQuery.d.ts +69 -0
  182. package/esm/auth/hooks/queries/useOrgApiKeyListsQuery.js +32 -0
  183. package/esm/auth/hooks/queries/usePrincipalEntitiesQuery.d.ts +69 -0
  184. package/esm/auth/hooks/queries/usePrincipalEntitiesQuery.js +32 -0
  185. package/esm/auth/hooks/queries/usePrincipalEntityQuery.d.ts +65 -0
  186. package/esm/auth/hooks/queries/usePrincipalEntityQuery.js +47 -0
  187. package/esm/auth/hooks/queries/usePrincipalQuery.d.ts +65 -0
  188. package/esm/auth/hooks/queries/usePrincipalQuery.js +47 -0
  189. package/esm/auth/hooks/queries/usePrincipalScopeOverrideQuery.d.ts +65 -0
  190. package/esm/auth/hooks/queries/usePrincipalScopeOverrideQuery.js +47 -0
  191. package/esm/auth/hooks/queries/usePrincipalScopeOverridesQuery.d.ts +69 -0
  192. package/esm/auth/hooks/queries/usePrincipalScopeOverridesQuery.js +32 -0
  193. package/esm/auth/hooks/queries/usePrincipalsQuery.d.ts +69 -0
  194. package/esm/auth/hooks/queries/usePrincipalsQuery.js +32 -0
  195. package/esm/auth/hooks/query-keys.d.ts +58 -2
  196. package/esm/auth/hooks/query-keys.js +33 -1
  197. package/esm/auth/orm/index.d.ts +32 -4
  198. package/esm/auth/orm/index.js +8 -0
  199. package/esm/auth/orm/input-types.d.ts +915 -145
  200. package/esm/auth/orm/input-types.js +7 -0
  201. package/esm/auth/orm/models/index.d.ts +4 -0
  202. package/esm/auth/orm/models/index.js +4 -0
  203. package/esm/auth/orm/models/orgApiKeyList.d.ts +36 -0
  204. package/esm/auth/orm/models/orgApiKeyList.js +76 -0
  205. package/esm/auth/orm/models/principal.d.ts +45 -0
  206. package/esm/auth/orm/models/principal.js +89 -0
  207. package/esm/auth/orm/models/principalEntity.d.ts +54 -0
  208. package/esm/auth/orm/models/principalEntity.js +100 -0
  209. package/esm/auth/orm/models/principalScopeOverride.d.ts +36 -0
  210. package/esm/auth/orm/models/principalScopeOverride.js +76 -0
  211. package/esm/auth/orm/mutation/index.d.ts +33 -1
  212. package/esm/auth/orm/mutation/index.js +48 -0
  213. package/esm/auth/orm/query/index.d.ts +4 -4
  214. package/esm/auth/orm/query/index.js +7 -7
  215. package/esm/auth/schema-types.d.ts +477 -93
  216. package/esm/auth/types.d.ts +43 -0
  217. package/esm/compute/hooks/index.d.ts +1 -1
  218. package/esm/compute/hooks/index.js +1 -1
  219. package/esm/compute/hooks/invalidation.d.ts +29 -5
  220. package/esm/compute/hooks/invalidation.js +74 -10
  221. package/esm/compute/hooks/mutation-keys.d.ts +60 -12
  222. package/esm/compute/hooks/mutation-keys.js +40 -9
  223. package/esm/compute/hooks/mutations/index.d.ts +16 -4
  224. package/esm/compute/hooks/mutations/index.js +16 -4
  225. package/esm/compute/hooks/mutations/useCreatePlatformNamespaceEventMutation.d.ts +34 -0
  226. package/esm/compute/hooks/mutations/useCreatePlatformNamespaceEventMutation.js +31 -0
  227. package/esm/compute/hooks/mutations/useCreatePlatformNamespaceMutation.d.ts +34 -0
  228. package/esm/compute/hooks/mutations/useCreatePlatformNamespaceMutation.js +31 -0
  229. package/esm/compute/hooks/mutations/useCreateResourceEventMutation.d.ts +34 -0
  230. package/esm/compute/hooks/mutations/useCreateResourceEventMutation.js +31 -0
  231. package/esm/compute/hooks/mutations/useCreateResourceMutation.d.ts +34 -0
  232. package/esm/compute/hooks/mutations/useCreateResourceMutation.js +31 -0
  233. package/esm/compute/hooks/mutations/useDeletePlatformNamespaceEventMutation.d.ts +40 -0
  234. package/esm/compute/hooks/mutations/useDeletePlatformNamespaceEventMutation.js +37 -0
  235. package/esm/compute/hooks/mutations/useDeletePlatformNamespaceMutation.d.ts +38 -0
  236. package/esm/compute/hooks/mutations/useDeletePlatformNamespaceMutation.js +36 -0
  237. package/esm/compute/hooks/mutations/useDeleteResourceEventMutation.d.ts +40 -0
  238. package/esm/compute/hooks/mutations/useDeleteResourceEventMutation.js +37 -0
  239. package/esm/compute/hooks/mutations/useDeleteResourceMutation.d.ts +38 -0
  240. package/esm/compute/hooks/mutations/useDeleteResourceMutation.js +36 -0
  241. package/esm/compute/hooks/mutations/useUpdatePlatformNamespaceEventMutation.d.ts +42 -0
  242. package/esm/compute/hooks/mutations/useUpdatePlatformNamespaceEventMutation.js +38 -0
  243. package/esm/compute/hooks/mutations/useUpdatePlatformNamespaceMutation.d.ts +40 -0
  244. package/esm/compute/hooks/mutations/useUpdatePlatformNamespaceMutation.js +37 -0
  245. package/esm/compute/hooks/mutations/useUpdateResourceEventMutation.d.ts +42 -0
  246. package/esm/compute/hooks/mutations/useUpdateResourceEventMutation.js +38 -0
  247. package/esm/compute/hooks/mutations/useUpdateResourceMutation.d.ts +40 -0
  248. package/esm/compute/hooks/mutations/useUpdateResourceMutation.js +37 -0
  249. package/esm/compute/hooks/queries/index.d.ts +10 -2
  250. package/esm/compute/hooks/queries/index.js +10 -2
  251. package/esm/compute/hooks/queries/usePlatformNamespaceEventQuery.d.ts +65 -0
  252. package/esm/compute/hooks/queries/usePlatformNamespaceEventQuery.js +47 -0
  253. package/esm/compute/hooks/queries/usePlatformNamespaceEventsQuery.d.ts +69 -0
  254. package/esm/compute/hooks/queries/usePlatformNamespaceEventsQuery.js +32 -0
  255. package/esm/compute/hooks/queries/usePlatformNamespaceQuery.d.ts +65 -0
  256. package/esm/compute/hooks/queries/usePlatformNamespaceQuery.js +47 -0
  257. package/esm/compute/hooks/queries/usePlatformNamespacesQuery.d.ts +69 -0
  258. package/esm/compute/hooks/queries/usePlatformNamespacesQuery.js +32 -0
  259. package/esm/compute/hooks/queries/useResourceEventQuery.d.ts +65 -0
  260. package/esm/compute/hooks/queries/useResourceEventQuery.js +47 -0
  261. package/esm/compute/hooks/queries/useResourceEventsQuery.d.ts +69 -0
  262. package/esm/compute/hooks/queries/useResourceEventsQuery.js +32 -0
  263. package/esm/compute/hooks/queries/useResourceQuery.d.ts +65 -0
  264. package/esm/compute/hooks/queries/useResourceQuery.js +47 -0
  265. package/esm/compute/hooks/queries/useResourcesQuery.d.ts +69 -0
  266. package/esm/compute/hooks/queries/useResourcesQuery.js +32 -0
  267. package/esm/compute/hooks/query-keys.d.ts +68 -12
  268. package/esm/compute/hooks/query-keys.js +39 -7
  269. package/esm/compute/orm/index.d.ts +15 -7
  270. package/esm/compute/orm/index.js +10 -2
  271. package/esm/compute/orm/input-types.d.ts +1159 -221
  272. package/esm/compute/orm/input-types.js +4 -0
  273. package/esm/compute/orm/models/index.d.ts +5 -1
  274. package/esm/compute/orm/models/index.js +5 -1
  275. package/esm/compute/orm/models/platformNamespace.d.ts +54 -0
  276. package/esm/compute/orm/models/platformNamespace.js +100 -0
  277. package/esm/compute/orm/models/platformNamespaceEvent.d.ts +56 -0
  278. package/esm/compute/orm/models/platformNamespaceEvent.js +103 -0
  279. package/esm/compute/orm/models/resource.d.ts +54 -0
  280. package/esm/compute/orm/models/resource.js +100 -0
  281. package/esm/compute/orm/models/resourceEvent.d.ts +56 -0
  282. package/esm/compute/orm/models/resourceEvent.js +103 -0
  283. package/esm/compute/orm/mutation/index.d.ts +9 -9
  284. package/esm/compute/orm/mutation/index.js +12 -12
  285. package/esm/compute/schema-types.d.ts +691 -107
  286. package/esm/compute/types.d.ts +71 -12
  287. package/esm/modules/hooks/index.d.ts +1 -1
  288. package/esm/modules/hooks/index.js +1 -1
  289. package/esm/modules/hooks/invalidation.d.ts +24 -12
  290. package/esm/modules/hooks/invalidation.js +63 -31
  291. package/esm/modules/hooks/mutation-keys.d.ts +48 -24
  292. package/esm/modules/hooks/mutation-keys.js +28 -14
  293. package/esm/modules/hooks/mutations/index.d.ts +12 -6
  294. package/esm/modules/hooks/mutations/index.js +12 -6
  295. package/esm/modules/hooks/mutations/useCreatePrincipalAuthModuleMutation.d.ts +34 -0
  296. package/esm/modules/hooks/mutations/useCreatePrincipalAuthModuleMutation.js +31 -0
  297. package/esm/modules/hooks/mutations/useCreateResourceModuleMutation.d.ts +34 -0
  298. package/esm/modules/hooks/mutations/useCreateResourceModuleMutation.js +31 -0
  299. package/esm/modules/hooks/mutations/useDeletePrincipalAuthModuleMutation.d.ts +38 -0
  300. package/esm/modules/hooks/mutations/useDeletePrincipalAuthModuleMutation.js +36 -0
  301. package/esm/modules/hooks/mutations/useDeleteResourceModuleMutation.d.ts +38 -0
  302. package/esm/modules/hooks/mutations/useDeleteResourceModuleMutation.js +36 -0
  303. package/esm/modules/hooks/mutations/useUpdatePrincipalAuthModuleMutation.d.ts +40 -0
  304. package/esm/modules/hooks/mutations/useUpdatePrincipalAuthModuleMutation.js +37 -0
  305. package/esm/modules/hooks/mutations/useUpdateResourceModuleMutation.d.ts +40 -0
  306. package/esm/modules/hooks/mutations/useUpdateResourceModuleMutation.js +37 -0
  307. package/esm/modules/hooks/queries/index.d.ts +8 -4
  308. package/esm/modules/hooks/queries/index.js +8 -4
  309. package/esm/modules/hooks/queries/usePrincipalAuthModuleQuery.d.ts +65 -0
  310. package/esm/modules/hooks/queries/usePrincipalAuthModuleQuery.js +47 -0
  311. package/esm/modules/hooks/queries/usePrincipalAuthModulesQuery.d.ts +69 -0
  312. package/esm/modules/hooks/queries/usePrincipalAuthModulesQuery.js +32 -0
  313. package/esm/modules/hooks/queries/useResourceModuleQuery.d.ts +65 -0
  314. package/esm/modules/hooks/queries/useResourceModuleQuery.js +47 -0
  315. package/esm/modules/hooks/queries/useResourceModulesQuery.d.ts +69 -0
  316. package/esm/modules/hooks/queries/useResourceModulesQuery.js +32 -0
  317. package/esm/modules/hooks/query-keys.d.ts +56 -28
  318. package/esm/modules/hooks/query-keys.js +32 -16
  319. package/esm/modules/orm/index.d.ts +8 -4
  320. package/esm/modules/orm/index.js +8 -4
  321. package/esm/modules/orm/input-types.d.ts +868 -411
  322. package/esm/modules/orm/models/index.d.ts +4 -2
  323. package/esm/modules/orm/models/index.js +4 -2
  324. package/esm/modules/orm/models/principalAuthModule.d.ts +54 -0
  325. package/esm/modules/orm/models/principalAuthModule.js +100 -0
  326. package/esm/modules/orm/models/resourceModule.d.ts +54 -0
  327. package/esm/modules/orm/models/resourceModule.js +100 -0
  328. package/esm/modules/schema-types.d.ts +451 -169
  329. package/esm/modules/types.d.ts +75 -33
  330. package/modules/hooks/index.d.ts +1 -1
  331. package/modules/hooks/index.js +1 -1
  332. package/modules/hooks/invalidation.d.ts +24 -12
  333. package/modules/hooks/invalidation.js +62 -30
  334. package/modules/hooks/mutation-keys.d.ts +48 -24
  335. package/modules/hooks/mutation-keys.js +30 -16
  336. package/modules/hooks/mutations/index.d.ts +12 -6
  337. package/modules/hooks/mutations/index.js +12 -6
  338. package/modules/hooks/mutations/useCreatePrincipalAuthModuleMutation.d.ts +34 -0
  339. package/modules/hooks/mutations/useCreatePrincipalAuthModuleMutation.js +34 -0
  340. package/modules/hooks/mutations/useCreateResourceModuleMutation.d.ts +34 -0
  341. package/modules/hooks/mutations/useCreateResourceModuleMutation.js +34 -0
  342. package/modules/hooks/mutations/useDeletePrincipalAuthModuleMutation.d.ts +38 -0
  343. package/modules/hooks/mutations/useDeletePrincipalAuthModuleMutation.js +39 -0
  344. package/modules/hooks/mutations/useDeleteResourceModuleMutation.d.ts +38 -0
  345. package/modules/hooks/mutations/useDeleteResourceModuleMutation.js +39 -0
  346. package/modules/hooks/mutations/useUpdatePrincipalAuthModuleMutation.d.ts +40 -0
  347. package/modules/hooks/mutations/useUpdatePrincipalAuthModuleMutation.js +40 -0
  348. package/modules/hooks/mutations/useUpdateResourceModuleMutation.d.ts +40 -0
  349. package/modules/hooks/mutations/useUpdateResourceModuleMutation.js +40 -0
  350. package/modules/hooks/queries/index.d.ts +8 -4
  351. package/modules/hooks/queries/index.js +8 -4
  352. package/modules/hooks/queries/usePrincipalAuthModuleQuery.d.ts +65 -0
  353. package/modules/hooks/queries/usePrincipalAuthModuleQuery.js +53 -0
  354. package/modules/hooks/queries/usePrincipalAuthModulesQuery.d.ts +69 -0
  355. package/modules/hooks/queries/usePrincipalAuthModulesQuery.js +38 -0
  356. package/modules/hooks/queries/useResourceModuleQuery.d.ts +65 -0
  357. package/modules/hooks/queries/useResourceModuleQuery.js +53 -0
  358. package/modules/hooks/queries/useResourceModulesQuery.d.ts +69 -0
  359. package/modules/hooks/queries/useResourceModulesQuery.js +38 -0
  360. package/modules/hooks/query-keys.d.ts +56 -28
  361. package/modules/hooks/query-keys.js +34 -18
  362. package/modules/orm/index.d.ts +8 -4
  363. package/modules/orm/index.js +8 -4
  364. package/modules/orm/input-types.d.ts +868 -411
  365. package/modules/orm/models/index.d.ts +4 -2
  366. package/modules/orm/models/index.js +10 -6
  367. package/modules/orm/models/principalAuthModule.d.ts +54 -0
  368. package/modules/orm/models/principalAuthModule.js +104 -0
  369. package/modules/orm/models/resourceModule.d.ts +54 -0
  370. package/modules/orm/models/resourceModule.js +104 -0
  371. package/modules/schema-types.d.ts +451 -169
  372. package/modules/types.d.ts +75 -33
  373. package/package.json +4 -4
@@ -3,12 +3,14 @@
3
3
  * @generated by @constructive-io/graphql-codegen
4
4
  * DO NOT EDIT - changes will be overwritten
5
5
  */
6
- import type { FunctionApiBinding, FunctionDefinition, FunctionDeployment, FunctionDeploymentEvent, FunctionExecutionLog, FunctionGraph, FunctionGraphCommit, FunctionGraphExecution, FunctionGraphExecutionNodeState, FunctionGraphExecutionOutput, FunctionGraphObject, FunctionGraphRef, FunctionGraphStore, FunctionInvocation, GetAllRecord, OrgFunctionExecutionLog, OrgFunctionInvocation, SecretDefinition, BigIntFilter, BooleanFilter, DatetimeFilter, IntFilter, JSONFilter, StringFilter, StringListFilter, UUIDFilter, UUIDListFilter } from './types';
6
+ import type { FunctionApiBinding, FunctionDefinition, FunctionDeployment, FunctionDeploymentEvent, FunctionExecutionLog, FunctionGraph, FunctionGraphCommit, FunctionGraphExecution, FunctionGraphExecutionNodeState, FunctionGraphExecutionOutput, FunctionGraphObject, FunctionGraphRef, FunctionGraphStore, FunctionInvocation, GetAllRecord, OrgFunctionExecutionLog, OrgFunctionInvocation, PlatformNamespace, PlatformNamespaceEvent, Resource, ResourceEvent, SecretDefinition, BigIntFilter, BooleanFilter, DatetimeFilter, IntFilter, JSONFilter, StringFilter, StringListFilter, UUIDFilter, UUIDListFilter } from './types';
7
7
  export type Base64EncodedBinary = unknown;
8
8
  /** Methods to use when ordering `FunctionApiBinding`. */
9
9
  export type FunctionApiBindingOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'FUNCTION_DEFINITION_ID_ASC' | 'FUNCTION_DEFINITION_ID_DESC' | 'API_ID_ASC' | 'API_ID_DESC' | 'ALIAS_ASC' | 'ALIAS_DESC' | 'CONFIG_ASC' | 'CONFIG_DESC';
10
10
  /** Methods to use when ordering `FunctionDeployment`. */
11
11
  export type FunctionDeploymentOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'FUNCTION_DEFINITION_ID_ASC' | 'FUNCTION_DEFINITION_ID_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'STATUS_ASC' | 'STATUS_DESC' | 'SERVICE_URL_ASC' | 'SERVICE_URL_DESC' | 'SERVICE_NAME_ASC' | 'SERVICE_NAME_DESC' | 'REVISION_ASC' | 'REVISION_DESC' | 'IMAGE_ASC' | 'IMAGE_DESC' | 'CONCURRENCY_ASC' | 'CONCURRENCY_DESC' | 'SCALE_MIN_ASC' | 'SCALE_MIN_DESC' | 'SCALE_MAX_ASC' | 'SCALE_MAX_DESC' | 'TIMEOUT_SECONDS_ASC' | 'TIMEOUT_SECONDS_DESC' | 'RESOURCES_ASC' | 'RESOURCES_DESC' | 'LAST_ERROR_ASC' | 'LAST_ERROR_DESC' | 'LAST_ERROR_AT_ASC' | 'LAST_ERROR_AT_DESC' | 'ERROR_COUNT_ASC' | 'ERROR_COUNT_DESC' | 'LABELS_ASC' | 'LABELS_DESC' | 'ANNOTATIONS_ASC' | 'ANNOTATIONS_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC';
12
+ /** Methods to use when ordering `Resource`. */
13
+ export type ResourceOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'CREATED_BY_ASC' | 'CREATED_BY_DESC' | 'UPDATED_BY_ASC' | 'UPDATED_BY_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'KIND_ASC' | 'KIND_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'SLUG_ASC' | 'SLUG_DESC' | 'SPEC_ASC' | 'SPEC_DESC' | 'STATUS_ASC' | 'STATUS_DESC' | 'STATUS_OBSERVED_ASC' | 'STATUS_OBSERVED_DESC' | 'LAST_ERROR_ASC' | 'LAST_ERROR_DESC' | 'ERROR_COUNT_ASC' | 'ERROR_COUNT_DESC' | 'LABELS_ASC' | 'LABELS_DESC' | 'ANNOTATIONS_ASC' | 'ANNOTATIONS_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC';
12
14
  /** Methods to use when ordering `FunctionGraphRef`. */
13
15
  export type FunctionGraphRefOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'STORE_ID_ASC' | 'STORE_ID_DESC' | 'COMMIT_ID_ASC' | 'COMMIT_ID_DESC';
14
16
  /** Methods to use when ordering `FunctionGraphStore`. */
@@ -19,6 +21,8 @@ export type FunctionGraphObjectOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMAR
19
21
  export type FunctionDeploymentEventOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'ID_ASC' | 'ID_DESC' | 'DEPLOYMENT_ID_ASC' | 'DEPLOYMENT_ID_DESC' | 'EVENT_TYPE_ASC' | 'EVENT_TYPE_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'MESSAGE_ASC' | 'MESSAGE_DESC' | 'METADATA_ASC' | 'METADATA_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC';
20
22
  /** Methods to use when ordering `OrgFunctionExecutionLog`. */
21
23
  export type OrgFunctionExecutionLogOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'ID_ASC' | 'ID_DESC' | 'INVOCATION_ID_ASC' | 'INVOCATION_ID_DESC' | 'TASK_IDENTIFIER_ASC' | 'TASK_IDENTIFIER_DESC' | 'LOG_LEVEL_ASC' | 'LOG_LEVEL_DESC' | 'MESSAGE_ASC' | 'MESSAGE_DESC' | 'METADATA_ASC' | 'METADATA_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC';
24
+ /** Methods to use when ordering `ResourceEvent`. */
25
+ export type ResourceEventOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'ID_ASC' | 'ID_DESC' | 'RESOURCE_ID_ASC' | 'RESOURCE_ID_DESC' | 'EVENT_TYPE_ASC' | 'EVENT_TYPE_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'MESSAGE_ASC' | 'MESSAGE_DESC' | 'METADATA_ASC' | 'METADATA_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC';
22
26
  /** Methods to use when ordering `FunctionGraphExecutionOutput`. */
23
27
  export type FunctionGraphExecutionOutputOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'HASH_ASC' | 'HASH_DESC' | 'DATA_ASC' | 'DATA_DESC';
24
28
  /** Methods to use when ordering `FunctionGraphCommit`. */
@@ -27,16 +31,20 @@ export type FunctionGraphCommitOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMAR
27
31
  export type SecretDefinitionOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'IS_BUILT_IN_ASC' | 'IS_BUILT_IN_DESC' | 'LABELS_ASC' | 'LABELS_DESC' | 'ANNOTATIONS_ASC' | 'ANNOTATIONS_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC';
28
32
  /** Methods to use when ordering `FunctionExecutionLog`. */
29
33
  export type FunctionExecutionLogOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'ID_ASC' | 'ID_DESC' | 'INVOCATION_ID_ASC' | 'INVOCATION_ID_DESC' | 'TASK_IDENTIFIER_ASC' | 'TASK_IDENTIFIER_DESC' | 'LOG_LEVEL_ASC' | 'LOG_LEVEL_DESC' | 'MESSAGE_ASC' | 'MESSAGE_DESC' | 'METADATA_ASC' | 'METADATA_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC';
34
+ /** Methods to use when ordering `FunctionGraph`. */
35
+ export type FunctionGraphOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'STORE_ID_ASC' | 'STORE_ID_DESC' | 'CONTEXT_ASC' | 'CONTEXT_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'DEFINITIONS_COMMIT_ID_ASC' | 'DEFINITIONS_COMMIT_ID_DESC' | 'IS_VALID_ASC' | 'IS_VALID_DESC' | 'VALIDATION_ERRORS_ASC' | 'VALIDATION_ERRORS_DESC' | 'CREATED_BY_ASC' | 'CREATED_BY_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
30
36
  /** Methods to use when ordering `FunctionGraphExecutionNodeState`. */
31
37
  export type FunctionGraphExecutionNodeStateOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'ID_ASC' | 'ID_DESC' | 'EXECUTION_ID_ASC' | 'EXECUTION_ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'NODE_NAME_ASC' | 'NODE_NAME_DESC' | 'NODE_PATH_ASC' | 'NODE_PATH_DESC' | 'STATUS_ASC' | 'STATUS_DESC' | 'STARTED_AT_ASC' | 'STARTED_AT_DESC' | 'COMPLETED_AT_ASC' | 'COMPLETED_AT_DESC' | 'ERROR_CODE_ASC' | 'ERROR_CODE_DESC' | 'ERROR_MESSAGE_ASC' | 'ERROR_MESSAGE_DESC' | 'OUTPUT_ID_ASC' | 'OUTPUT_ID_DESC';
32
- /** Methods to use when ordering `FunctionGraph`. */
33
- export type FunctionGraphOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'STORE_ID_ASC' | 'STORE_ID_DESC' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC' | 'CONTEXT_ASC' | 'CONTEXT_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'DEFINITIONS_COMMIT_ID_ASC' | 'DEFINITIONS_COMMIT_ID_DESC' | 'IS_VALID_ASC' | 'IS_VALID_DESC' | 'VALIDATION_ERRORS_ASC' | 'VALIDATION_ERRORS_DESC' | 'CREATED_BY_ASC' | 'CREATED_BY_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
38
+ /** Methods to use when ordering `PlatformNamespace`. */
39
+ export type PlatformNamespaceOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NAMESPACE_NAME_ASC' | 'NAMESPACE_NAME_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'IS_ACTIVE_ASC' | 'IS_ACTIVE_DESC' | 'LABELS_ASC' | 'LABELS_DESC' | 'ANNOTATIONS_ASC' | 'ANNOTATIONS_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'SOURCE_DATABASE_ID_ASC' | 'SOURCE_DATABASE_ID_DESC' | 'SOURCE_SCOPE_ASC' | 'SOURCE_SCOPE_DESC' | 'IS_MANAGED_ASC' | 'IS_MANAGED_DESC';
34
40
  /** Methods to use when ordering `OrgFunctionInvocation`. */
35
41
  export type OrgFunctionInvocationOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'ID_ASC' | 'ID_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'TASK_IDENTIFIER_ASC' | 'TASK_IDENTIFIER_DESC' | 'PAYLOAD_ASC' | 'PAYLOAD_DESC' | 'STATUS_ASC' | 'STATUS_DESC' | 'RESULT_ASC' | 'RESULT_DESC' | 'ERROR_ASC' | 'ERROR_DESC' | 'DURATION_MS_ASC' | 'DURATION_MS_DESC' | 'JOB_ID_ASC' | 'JOB_ID_DESC' | 'STARTED_AT_ASC' | 'STARTED_AT_DESC' | 'COMPLETED_AT_ASC' | 'COMPLETED_AT_DESC' | 'PARENT_INVOCATION_ID_ASC' | 'PARENT_INVOCATION_ID_DESC' | 'GRAPH_EXECUTION_ID_ASC' | 'GRAPH_EXECUTION_ID_DESC';
36
42
  /** Methods to use when ordering `FunctionInvocation`. */
37
43
  export type FunctionInvocationOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'ID_ASC' | 'ID_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'TASK_IDENTIFIER_ASC' | 'TASK_IDENTIFIER_DESC' | 'PAYLOAD_ASC' | 'PAYLOAD_DESC' | 'STATUS_ASC' | 'STATUS_DESC' | 'RESULT_ASC' | 'RESULT_DESC' | 'ERROR_ASC' | 'ERROR_DESC' | 'DURATION_MS_ASC' | 'DURATION_MS_DESC' | 'JOB_ID_ASC' | 'JOB_ID_DESC' | 'STARTED_AT_ASC' | 'STARTED_AT_DESC' | 'COMPLETED_AT_ASC' | 'COMPLETED_AT_DESC' | 'PARENT_INVOCATION_ID_ASC' | 'PARENT_INVOCATION_ID_DESC' | 'GRAPH_EXECUTION_ID_ASC' | 'GRAPH_EXECUTION_ID_DESC';
44
+ /** Methods to use when ordering `PlatformNamespaceEvent`. */
45
+ export type PlatformNamespaceEventOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'EVENT_TYPE_ASC' | 'EVENT_TYPE_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'MESSAGE_ASC' | 'MESSAGE_DESC' | 'METADATA_ASC' | 'METADATA_DESC' | 'CPU_MILLICORES_ASC' | 'CPU_MILLICORES_DESC' | 'MEMORY_BYTES_ASC' | 'MEMORY_BYTES_DESC' | 'STORAGE_BYTES_ASC' | 'STORAGE_BYTES_DESC' | 'NETWORK_INGRESS_BYTES_ASC' | 'NETWORK_INGRESS_BYTES_DESC' | 'NETWORK_EGRESS_BYTES_ASC' | 'NETWORK_EGRESS_BYTES_DESC' | 'POD_COUNT_ASC' | 'POD_COUNT_DESC' | 'METRICS_ASC' | 'METRICS_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC';
38
46
  /** Methods to use when ordering `FunctionGraphExecution`. */
39
- export type FunctionGraphExecutionOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'STARTED_AT_ASC' | 'STARTED_AT_DESC' | 'ID_ASC' | 'ID_DESC' | 'GRAPH_ID_ASC' | 'GRAPH_ID_DESC' | 'INVOCATION_ID_ASC' | 'INVOCATION_ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC' | 'OUTPUT_NODE_ASC' | 'OUTPUT_NODE_DESC' | 'OUTPUT_PORT_ASC' | 'OUTPUT_PORT_DESC' | 'STATUS_ASC' | 'STATUS_DESC' | 'INPUT_PAYLOAD_ASC' | 'INPUT_PAYLOAD_DESC' | 'OUTPUT_PAYLOAD_ASC' | 'OUTPUT_PAYLOAD_DESC' | 'NODE_OUTPUTS_ASC' | 'NODE_OUTPUTS_DESC' | 'EXECUTION_PLAN_ASC' | 'EXECUTION_PLAN_DESC' | 'CURRENT_WAVE_ASC' | 'CURRENT_WAVE_DESC' | 'PARENT_EXECUTION_ID_ASC' | 'PARENT_EXECUTION_ID_DESC' | 'PARENT_NODE_NAME_ASC' | 'PARENT_NODE_NAME_DESC' | 'DEFINITIONS_COMMIT_ID_ASC' | 'DEFINITIONS_COMMIT_ID_DESC' | 'TICK_COUNT_ASC' | 'TICK_COUNT_DESC' | 'COMPLETED_AT_ASC' | 'COMPLETED_AT_DESC' | 'MAX_TICKS_ASC' | 'MAX_TICKS_DESC' | 'MAX_PENDING_JOBS_ASC' | 'MAX_PENDING_JOBS_DESC' | 'TIMEOUT_AT_ASC' | 'TIMEOUT_AT_DESC' | 'ERROR_CODE_ASC' | 'ERROR_CODE_DESC' | 'ERROR_MESSAGE_ASC' | 'ERROR_MESSAGE_DESC';
47
+ export type FunctionGraphExecutionOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'STARTED_AT_ASC' | 'STARTED_AT_DESC' | 'ID_ASC' | 'ID_DESC' | 'GRAPH_ID_ASC' | 'GRAPH_ID_DESC' | 'INVOCATION_ID_ASC' | 'INVOCATION_ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'OUTPUT_NODE_ASC' | 'OUTPUT_NODE_DESC' | 'OUTPUT_PORT_ASC' | 'OUTPUT_PORT_DESC' | 'STATUS_ASC' | 'STATUS_DESC' | 'INPUT_PAYLOAD_ASC' | 'INPUT_PAYLOAD_DESC' | 'OUTPUT_PAYLOAD_ASC' | 'OUTPUT_PAYLOAD_DESC' | 'NODE_OUTPUTS_ASC' | 'NODE_OUTPUTS_DESC' | 'EXECUTION_PLAN_ASC' | 'EXECUTION_PLAN_DESC' | 'CURRENT_WAVE_ASC' | 'CURRENT_WAVE_DESC' | 'PARENT_EXECUTION_ID_ASC' | 'PARENT_EXECUTION_ID_DESC' | 'PARENT_NODE_NAME_ASC' | 'PARENT_NODE_NAME_DESC' | 'DEFINITIONS_COMMIT_ID_ASC' | 'DEFINITIONS_COMMIT_ID_DESC' | 'TICK_COUNT_ASC' | 'TICK_COUNT_DESC' | 'COMPLETED_AT_ASC' | 'COMPLETED_AT_DESC' | 'MAX_TICKS_ASC' | 'MAX_TICKS_DESC' | 'MAX_PENDING_JOBS_ASC' | 'MAX_PENDING_JOBS_DESC' | 'TIMEOUT_AT_ASC' | 'TIMEOUT_AT_DESC' | 'ERROR_CODE_ASC' | 'ERROR_CODE_DESC' | 'ERROR_MESSAGE_ASC' | 'ERROR_MESSAGE_DESC';
40
48
  /** Methods to use when ordering `FunctionDefinition`. */
41
49
  export type FunctionDefinitionOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'TASK_IDENTIFIER_ASC' | 'TASK_IDENTIFIER_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'IS_INVOCABLE_ASC' | 'IS_INVOCABLE_DESC' | 'MAX_ATTEMPTS_ASC' | 'MAX_ATTEMPTS_DESC' | 'PRIORITY_ASC' | 'PRIORITY_DESC' | 'QUEUE_NAME_ASC' | 'QUEUE_NAME_DESC' | 'RUNTIME_ASC' | 'RUNTIME_DESC' | 'IMAGE_ASC' | 'IMAGE_DESC' | 'CONCURRENCY_ASC' | 'CONCURRENCY_DESC' | 'SCALE_MIN_ASC' | 'SCALE_MIN_DESC' | 'SCALE_MAX_ASC' | 'SCALE_MAX_DESC' | 'TIMEOUT_SECONDS_ASC' | 'TIMEOUT_SECONDS_DESC' | 'RESOURCES_ASC' | 'RESOURCES_DESC' | 'IS_BUILT_IN_ASC' | 'IS_BUILT_IN_DESC' | 'REQUIRED_SECRETS_ASC' | 'REQUIRED_SECRETS_DESC' | 'REQUIRED_CONFIGS_ASC' | 'REQUIRED_CONFIGS_DESC' | 'REQUIRED_BUCKETS_ASC' | 'REQUIRED_BUCKETS_DESC' | 'REQUIRED_MODELS_ASC' | 'REQUIRED_MODELS_DESC' | 'INPUTS_ASC' | 'INPUTS_DESC' | 'OUTPUTS_ASC' | 'OUTPUTS_DESC' | 'PROPS_ASC' | 'PROPS_DESC' | 'VOLATILE_ASC' | 'VOLATILE_DESC' | 'ICON_ASC' | 'ICON_DESC' | 'CATEGORY_ASC' | 'CATEGORY_DESC';
42
50
  /** A filter to be used against `FunctionApiBinding` object types. All fields are combined with a logical ‘and.’ */
@@ -201,6 +209,114 @@ export interface FunctionDeploymentFilter {
201
209
  not?: FunctionDeploymentFilter;
202
210
  /** Filter by the object’s `functionDefinition` relation. */
203
211
  functionDefinition?: FunctionDefinitionFilter;
212
+ /** Filter by the object’s `namespace` relation. */
213
+ namespace?: PlatformNamespaceFilter;
214
+ }
215
+ /** A filter to be used against `PlatformNamespace` object types. All fields are combined with a logical ‘and.’ */
216
+ export interface PlatformNamespaceFilter {
217
+ /** Filter by the object’s `id` field. */
218
+ id?: UUIDFilter;
219
+ /** Filter by the object’s `createdAt` field. */
220
+ createdAt?: DatetimeFilter;
221
+ /** Filter by the object’s `updatedAt` field. */
222
+ updatedAt?: DatetimeFilter;
223
+ /** Filter by the object’s `name` field. */
224
+ name?: StringFilter;
225
+ /** Filter by the object’s `namespaceName` field. */
226
+ namespaceName?: StringFilter;
227
+ /** Filter by the object’s `description` field. */
228
+ description?: StringFilter;
229
+ /** Filter by the object’s `isActive` field. */
230
+ isActive?: BooleanFilter;
231
+ /** Filter by the object’s `labels` field. */
232
+ labels?: JSONFilter;
233
+ /** Filter by the object’s `annotations` field. */
234
+ annotations?: JSONFilter;
235
+ /** Filter by the object’s `databaseId` field. */
236
+ databaseId?: UUIDFilter;
237
+ /** Filter by the object’s `sourceDatabaseId` field. */
238
+ sourceDatabaseId?: UUIDFilter;
239
+ /** Filter by the object’s `sourceScope` field. */
240
+ sourceScope?: StringFilter;
241
+ /** Filter by the object’s `isManaged` field. */
242
+ isManaged?: BooleanFilter;
243
+ /** Checks for all expressions in this list. */
244
+ and?: PlatformNamespaceFilter[];
245
+ /** Checks for any expressions in this list. */
246
+ or?: PlatformNamespaceFilter[];
247
+ /** Negates the expression. */
248
+ not?: PlatformNamespaceFilter;
249
+ /** Filter by the object’s `functionDeploymentsByNamespaceId` relation. */
250
+ functionDeploymentsByNamespaceId?: PlatformNamespaceToManyFunctionDeploymentFilter;
251
+ /** `functionDeploymentsByNamespaceId` exist. */
252
+ functionDeploymentsByNamespaceIdExist?: boolean;
253
+ /** Filter by the object’s `resourcesByNamespaceId` relation. */
254
+ resourcesByNamespaceId?: PlatformNamespaceToManyResourceFilter;
255
+ /** `resourcesByNamespaceId` exist. */
256
+ resourcesByNamespaceIdExist?: boolean;
257
+ }
258
+ /** A filter to be used against many `FunctionDeployment` object types. All fields are combined with a logical ‘and.’ */
259
+ export interface PlatformNamespaceToManyFunctionDeploymentFilter {
260
+ /** Filters to entities where at least one related entity matches. */
261
+ some?: FunctionDeploymentFilter;
262
+ /** Filters to entities where every related entity matches. */
263
+ every?: FunctionDeploymentFilter;
264
+ /** Filters to entities where no related entity matches. */
265
+ none?: FunctionDeploymentFilter;
266
+ }
267
+ /** A filter to be used against many `Resource` object types. All fields are combined with a logical ‘and.’ */
268
+ export interface PlatformNamespaceToManyResourceFilter {
269
+ /** Filters to entities where at least one related entity matches. */
270
+ some?: ResourceFilter;
271
+ /** Filters to entities where every related entity matches. */
272
+ every?: ResourceFilter;
273
+ /** Filters to entities where no related entity matches. */
274
+ none?: ResourceFilter;
275
+ }
276
+ /** A filter to be used against `Resource` object types. All fields are combined with a logical ‘and.’ */
277
+ export interface ResourceFilter {
278
+ /** Filter by the object’s `id` field. */
279
+ id?: UUIDFilter;
280
+ /** Filter by the object’s `createdAt` field. */
281
+ createdAt?: DatetimeFilter;
282
+ /** Filter by the object’s `updatedAt` field. */
283
+ updatedAt?: DatetimeFilter;
284
+ /** Filter by the object’s `createdBy` field. */
285
+ createdBy?: UUIDFilter;
286
+ /** Filter by the object’s `updatedBy` field. */
287
+ updatedBy?: UUIDFilter;
288
+ /** Filter by the object’s `namespaceId` field. */
289
+ namespaceId?: UUIDFilter;
290
+ /** Filter by the object’s `kind` field. */
291
+ kind?: StringFilter;
292
+ /** Filter by the object’s `name` field. */
293
+ name?: StringFilter;
294
+ /** Filter by the object’s `slug` field. */
295
+ slug?: StringFilter;
296
+ /** Filter by the object’s `spec` field. */
297
+ spec?: JSONFilter;
298
+ /** Filter by the object’s `status` field. */
299
+ status?: StringFilter;
300
+ /** Filter by the object’s `statusObserved` field. */
301
+ statusObserved?: JSONFilter;
302
+ /** Filter by the object’s `lastError` field. */
303
+ lastError?: StringFilter;
304
+ /** Filter by the object’s `errorCount` field. */
305
+ errorCount?: IntFilter;
306
+ /** Filter by the object’s `labels` field. */
307
+ labels?: JSONFilter;
308
+ /** Filter by the object’s `annotations` field. */
309
+ annotations?: JSONFilter;
310
+ /** Filter by the object’s `databaseId` field. */
311
+ databaseId?: UUIDFilter;
312
+ /** Checks for all expressions in this list. */
313
+ and?: ResourceFilter[];
314
+ /** Checks for any expressions in this list. */
315
+ or?: ResourceFilter[];
316
+ /** Negates the expression. */
317
+ not?: ResourceFilter;
318
+ /** Filter by the object’s `namespace` relation. */
319
+ namespace?: PlatformNamespaceFilter;
204
320
  }
205
321
  /** A filter to be used against `FunctionGraphRef` object types. All fields are combined with a logical ‘and.’ */
206
322
  export interface FunctionGraphRefFilter {
@@ -311,6 +427,31 @@ export interface OrgFunctionExecutionLogFilter {
311
427
  /** Negates the expression. */
312
428
  not?: OrgFunctionExecutionLogFilter;
313
429
  }
430
+ /** A filter to be used against `ResourceEvent` object types. All fields are combined with a logical ‘and.’ */
431
+ export interface ResourceEventFilter {
432
+ /** Filter by the object’s `createdAt` field. */
433
+ createdAt?: DatetimeFilter;
434
+ /** Filter by the object’s `id` field. */
435
+ id?: UUIDFilter;
436
+ /** Filter by the object’s `resourceId` field. */
437
+ resourceId?: UUIDFilter;
438
+ /** Filter by the object’s `eventType` field. */
439
+ eventType?: StringFilter;
440
+ /** Filter by the object’s `actorId` field. */
441
+ actorId?: UUIDFilter;
442
+ /** Filter by the object’s `message` field. */
443
+ message?: StringFilter;
444
+ /** Filter by the object’s `metadata` field. */
445
+ metadata?: JSONFilter;
446
+ /** Filter by the object’s `databaseId` field. */
447
+ databaseId?: UUIDFilter;
448
+ /** Checks for all expressions in this list. */
449
+ and?: ResourceEventFilter[];
450
+ /** Checks for any expressions in this list. */
451
+ or?: ResourceEventFilter[];
452
+ /** Negates the expression. */
453
+ not?: ResourceEventFilter;
454
+ }
314
455
  /** A filter to be used against `FunctionGraphExecutionOutput` object types. All fields are combined with a logical ‘and.’ */
315
456
  export interface FunctionGraphExecutionOutputFilter {
316
457
  /** Filter by the object’s `createdAt` field. */
@@ -428,39 +569,6 @@ export interface FunctionExecutionLogFilter {
428
569
  /** Negates the expression. */
429
570
  not?: FunctionExecutionLogFilter;
430
571
  }
431
- /** A filter to be used against `FunctionGraphExecutionNodeState` object types. All fields are combined with a logical ‘and.’ */
432
- export interface FunctionGraphExecutionNodeStateFilter {
433
- /** Filter by the object’s `createdAt` field. */
434
- createdAt?: DatetimeFilter;
435
- /** Filter by the object’s `id` field. */
436
- id?: UUIDFilter;
437
- /** Filter by the object’s `executionId` field. */
438
- executionId?: UUIDFilter;
439
- /** Filter by the object’s `databaseId` field. */
440
- databaseId?: UUIDFilter;
441
- /** Filter by the object’s `nodeName` field. */
442
- nodeName?: StringFilter;
443
- /** Filter by the object’s `nodePath` field. */
444
- nodePath?: StringListFilter;
445
- /** Filter by the object’s `status` field. */
446
- status?: StringFilter;
447
- /** Filter by the object’s `startedAt` field. */
448
- startedAt?: DatetimeFilter;
449
- /** Filter by the object’s `completedAt` field. */
450
- completedAt?: DatetimeFilter;
451
- /** Filter by the object’s `errorCode` field. */
452
- errorCode?: StringFilter;
453
- /** Filter by the object’s `errorMessage` field. */
454
- errorMessage?: StringFilter;
455
- /** Filter by the object’s `outputId` field. */
456
- outputId?: UUIDFilter;
457
- /** Checks for all expressions in this list. */
458
- and?: FunctionGraphExecutionNodeStateFilter[];
459
- /** Checks for any expressions in this list. */
460
- or?: FunctionGraphExecutionNodeStateFilter[];
461
- /** Negates the expression. */
462
- not?: FunctionGraphExecutionNodeStateFilter;
463
- }
464
572
  /** A filter to be used against `FunctionGraph` object types. All fields are combined with a logical ‘and.’ */
465
573
  export interface FunctionGraphFilter {
466
574
  /** Filter by the object’s `id` field. */
@@ -469,8 +577,6 @@ export interface FunctionGraphFilter {
469
577
  databaseId?: UUIDFilter;
470
578
  /** Filter by the object’s `storeId` field. */
471
579
  storeId?: UUIDFilter;
472
- /** Filter by the object’s `entityId` field. */
473
- entityId?: UUIDFilter;
474
580
  /** Filter by the object’s `context` field. */
475
581
  context?: StringFilter;
476
582
  /** Filter by the object’s `name` field. */
@@ -496,6 +602,39 @@ export interface FunctionGraphFilter {
496
602
  /** Negates the expression. */
497
603
  not?: FunctionGraphFilter;
498
604
  }
605
+ /** A filter to be used against `FunctionGraphExecutionNodeState` object types. All fields are combined with a logical ‘and.’ */
606
+ export interface FunctionGraphExecutionNodeStateFilter {
607
+ /** Filter by the object’s `createdAt` field. */
608
+ createdAt?: DatetimeFilter;
609
+ /** Filter by the object’s `id` field. */
610
+ id?: UUIDFilter;
611
+ /** Filter by the object’s `executionId` field. */
612
+ executionId?: UUIDFilter;
613
+ /** Filter by the object’s `databaseId` field. */
614
+ databaseId?: UUIDFilter;
615
+ /** Filter by the object’s `nodeName` field. */
616
+ nodeName?: StringFilter;
617
+ /** Filter by the object’s `nodePath` field. */
618
+ nodePath?: StringListFilter;
619
+ /** Filter by the object’s `status` field. */
620
+ status?: StringFilter;
621
+ /** Filter by the object’s `startedAt` field. */
622
+ startedAt?: DatetimeFilter;
623
+ /** Filter by the object’s `completedAt` field. */
624
+ completedAt?: DatetimeFilter;
625
+ /** Filter by the object’s `errorCode` field. */
626
+ errorCode?: StringFilter;
627
+ /** Filter by the object’s `errorMessage` field. */
628
+ errorMessage?: StringFilter;
629
+ /** Filter by the object’s `outputId` field. */
630
+ outputId?: UUIDFilter;
631
+ /** Checks for all expressions in this list. */
632
+ and?: FunctionGraphExecutionNodeStateFilter[];
633
+ /** Checks for any expressions in this list. */
634
+ or?: FunctionGraphExecutionNodeStateFilter[];
635
+ /** Negates the expression. */
636
+ not?: FunctionGraphExecutionNodeStateFilter;
637
+ }
499
638
  /** A filter to be used against `OrgFunctionInvocation` object types. All fields are combined with a logical ‘and.’ */
500
639
  export interface OrgFunctionInvocationFilter {
501
640
  /** Filter by the object’s `createdAt` field. */
@@ -572,6 +711,45 @@ export interface FunctionInvocationFilter {
572
711
  /** Negates the expression. */
573
712
  not?: FunctionInvocationFilter;
574
713
  }
714
+ /** A filter to be used against `PlatformNamespaceEvent` object types. All fields are combined with a logical ‘and.’ */
715
+ export interface PlatformNamespaceEventFilter {
716
+ /** Filter by the object’s `createdAt` field. */
717
+ createdAt?: DatetimeFilter;
718
+ /** Filter by the object’s `id` field. */
719
+ id?: UUIDFilter;
720
+ /** Filter by the object’s `namespaceId` field. */
721
+ namespaceId?: UUIDFilter;
722
+ /** Filter by the object’s `eventType` field. */
723
+ eventType?: StringFilter;
724
+ /** Filter by the object’s `actorId` field. */
725
+ actorId?: UUIDFilter;
726
+ /** Filter by the object’s `message` field. */
727
+ message?: StringFilter;
728
+ /** Filter by the object’s `metadata` field. */
729
+ metadata?: JSONFilter;
730
+ /** Filter by the object’s `cpuMillicores` field. */
731
+ cpuMillicores?: IntFilter;
732
+ /** Filter by the object’s `memoryBytes` field. */
733
+ memoryBytes?: BigIntFilter;
734
+ /** Filter by the object’s `storageBytes` field. */
735
+ storageBytes?: BigIntFilter;
736
+ /** Filter by the object’s `networkIngressBytes` field. */
737
+ networkIngressBytes?: BigIntFilter;
738
+ /** Filter by the object’s `networkEgressBytes` field. */
739
+ networkEgressBytes?: BigIntFilter;
740
+ /** Filter by the object’s `podCount` field. */
741
+ podCount?: IntFilter;
742
+ /** Filter by the object’s `metrics` field. */
743
+ metrics?: JSONFilter;
744
+ /** Filter by the object’s `databaseId` field. */
745
+ databaseId?: UUIDFilter;
746
+ /** Checks for all expressions in this list. */
747
+ and?: PlatformNamespaceEventFilter[];
748
+ /** Checks for any expressions in this list. */
749
+ or?: PlatformNamespaceEventFilter[];
750
+ /** Negates the expression. */
751
+ not?: PlatformNamespaceEventFilter;
752
+ }
575
753
  /** A filter to be used against `FunctionGraphExecution` object types. All fields are combined with a logical ‘and.’ */
576
754
  export interface FunctionGraphExecutionFilter {
577
755
  /** Filter by the object’s `startedAt` field. */
@@ -584,8 +762,6 @@ export interface FunctionGraphExecutionFilter {
584
762
  invocationId?: UUIDFilter;
585
763
  /** Filter by the object’s `databaseId` field. */
586
764
  databaseId?: UUIDFilter;
587
- /** Filter by the object’s `entityId` field. */
588
- entityId?: UUIDFilter;
589
765
  /** Filter by the object’s `outputNode` field. */
590
766
  outputNode?: StringFilter;
591
767
  /** Filter by the object’s `outputPort` field. */
@@ -690,7 +866,16 @@ export interface CreateFunctionGraphInput {
690
866
  name?: string;
691
867
  context?: string;
692
868
  description?: string;
693
- entityId?: string;
869
+ createdBy?: string;
870
+ definitionsCommitId?: string;
871
+ }
872
+ export interface ImportGraphJsonInput {
873
+ clientMutationId?: string;
874
+ databaseId?: string;
875
+ name?: string;
876
+ graphJson?: unknown;
877
+ context?: string;
878
+ description?: string;
694
879
  createdBy?: string;
695
880
  definitionsCommitId?: string;
696
881
  }
@@ -716,17 +901,6 @@ export interface AddNodeInput {
716
901
  props?: unknown;
717
902
  meta?: unknown;
718
903
  }
719
- export interface ImportGraphJsonInput {
720
- clientMutationId?: string;
721
- databaseId?: string;
722
- name?: string;
723
- graphJson?: unknown;
724
- context?: string;
725
- description?: string;
726
- entityId?: string;
727
- createdBy?: string;
728
- definitionsCommitId?: string;
729
- }
730
904
  export interface InsertNodeAtPathInput {
731
905
  clientMutationId?: string;
732
906
  sId?: string;
@@ -888,6 +1062,30 @@ export interface OrgFunctionExecutionLogInput {
888
1062
  /** User who triggered the execution (NULL for system/cron) */
889
1063
  actorId?: string;
890
1064
  }
1065
+ export interface CreateResourceEventInput {
1066
+ clientMutationId?: string;
1067
+ /** The `ResourceEvent` to be created by this mutation. */
1068
+ resourceEvent: ResourceEventInput;
1069
+ }
1070
+ /** An input for mutations affecting `ResourceEvent` */
1071
+ export interface ResourceEventInput {
1072
+ /** Event timestamp (partition key) */
1073
+ createdAt?: string;
1074
+ /** Unique event identifier */
1075
+ id?: string;
1076
+ /** Resource this event belongs to */
1077
+ resourceId: string;
1078
+ /** Event type: provisioned, provisioning, updated, failed, deprovisioned, health_check */
1079
+ eventType: string;
1080
+ /** User who triggered this event (NULL for system/automated) */
1081
+ actorId?: string;
1082
+ /** Human-readable description of the event */
1083
+ message?: string;
1084
+ /** Structured context (old/new values, error details, etc.) */
1085
+ metadata?: unknown;
1086
+ /** Database that owns this resource (database-scoped isolation) */
1087
+ databaseId: string;
1088
+ }
891
1089
  export interface CreateFunctionGraphExecutionOutputInput {
892
1090
  clientMutationId?: string;
893
1091
  /** The `FunctionGraphExecutionOutput` to be created by this mutation. */
@@ -1013,6 +1211,37 @@ export interface FunctionGraphExecutionNodeStateInput {
1013
1211
  /** FK to execution_outputs — content-addressed output blob for this node */
1014
1212
  outputId?: string;
1015
1213
  }
1214
+ export interface CreatePlatformNamespaceInput {
1215
+ clientMutationId?: string;
1216
+ /** The `PlatformNamespace` to be created by this mutation. */
1217
+ platformNamespace: PlatformNamespaceInput;
1218
+ }
1219
+ /** An input for mutations affecting `PlatformNamespace` */
1220
+ export interface PlatformNamespaceInput {
1221
+ id?: string;
1222
+ createdAt?: string;
1223
+ updatedAt?: string;
1224
+ /** Human-readable namespace name (e.g. default, production, oauth) */
1225
+ name: string;
1226
+ /** Globally unique computed namespace identifier via inflection.underscore */
1227
+ namespaceName: string;
1228
+ /** Optional human-readable description of this namespace */
1229
+ description?: string;
1230
+ /** Whether this namespace is active (soft-disable for filtering) */
1231
+ isActive?: boolean;
1232
+ /** Key/value pairs for selecting and filtering namespaces */
1233
+ labels?: unknown;
1234
+ /** Freeform metadata for tooling and operational notes */
1235
+ annotations?: unknown;
1236
+ /** Database that owns this resource (database-scoped isolation) */
1237
+ databaseId: string;
1238
+ /** Database that created this namespace (NULL for platform-native namespaces) */
1239
+ sourceDatabaseId?: string;
1240
+ /** Origin scope: platform, org, app — indicates where this namespace was created */
1241
+ sourceScope?: string;
1242
+ /** true = created by a child scope mirror trigger, false = platform-native */
1243
+ isManaged?: boolean;
1244
+ }
1016
1245
  export interface CreateOrgFunctionInvocationInput {
1017
1246
  clientMutationId?: string;
1018
1247
  /** The `OrgFunctionInvocation` to be created by this mutation. */
@@ -1087,6 +1316,81 @@ export interface FunctionInvocationInput {
1087
1316
  /** Groups all node invocations from a single flow graph execution */
1088
1317
  graphExecutionId?: string;
1089
1318
  }
1319
+ export interface CreateResourceInput {
1320
+ clientMutationId?: string;
1321
+ /** The `Resource` to be created by this mutation. */
1322
+ resource: ResourceInput;
1323
+ }
1324
+ /** An input for mutations affecting `Resource` */
1325
+ export interface ResourceInput {
1326
+ id?: string;
1327
+ createdAt?: string;
1328
+ updatedAt?: string;
1329
+ createdBy?: string;
1330
+ updatedBy?: string;
1331
+ /** Namespace this resource belongs to (security boundary, maps to K8s namespace) */
1332
+ namespaceId: string;
1333
+ /** Resource kind: Deployment, StatefulSet, Service, Ingress, Certificate */
1334
+ kind: string;
1335
+ /** Human-readable resource name */
1336
+ name: string;
1337
+ /** URL-safe identifier, unique within (namespace_id, kind) */
1338
+ slug: string;
1339
+ /** Desired state — kind-specific configuration (image, ports, resources, etc.). Opaque to DB; validated by K8s. */
1340
+ spec?: unknown;
1341
+ /** Resource lifecycle status: pending, provisioning, active, failed, draining, deleting */
1342
+ status?: string;
1343
+ /** Observed state from K8s — populated by handlers after reconciliation (service_url, clone_url, replicas, etc.) */
1344
+ statusObserved?: unknown;
1345
+ /** Most recent provisioning or runtime error message */
1346
+ lastError?: string;
1347
+ /** Cumulative error count for this resource */
1348
+ errorCount?: number;
1349
+ /** Key/value pairs for selecting and filtering resources */
1350
+ labels?: unknown;
1351
+ /** Freeform metadata for tooling and operational notes */
1352
+ annotations?: unknown;
1353
+ /** Database that owns this resource (database-scoped isolation) */
1354
+ databaseId: string;
1355
+ }
1356
+ export interface CreatePlatformNamespaceEventInput {
1357
+ clientMutationId?: string;
1358
+ /** The `PlatformNamespaceEvent` to be created by this mutation. */
1359
+ platformNamespaceEvent: PlatformNamespaceEventInput;
1360
+ }
1361
+ /** An input for mutations affecting `PlatformNamespaceEvent` */
1362
+ export interface PlatformNamespaceEventInput {
1363
+ /** Event timestamp (partition key) */
1364
+ createdAt?: string;
1365
+ /** Unique event identifier */
1366
+ id?: string;
1367
+ /** Namespace this event belongs to */
1368
+ namespaceId: string;
1369
+ /** Event type: created, activated, deactivated, labels_updated, annotations_updated, renamed */
1370
+ eventType: string;
1371
+ /** User who triggered this event (NULL for system/automated) */
1372
+ actorId?: string;
1373
+ /** Human-readable description of the event */
1374
+ message?: string;
1375
+ /** Structured context (old/new values, labels diff, etc.) */
1376
+ metadata?: unknown;
1377
+ /** CPU usage in millicores at time of event */
1378
+ cpuMillicores?: number;
1379
+ /** Memory usage in bytes at time of event */
1380
+ memoryBytes?: string;
1381
+ /** Storage usage in bytes at time of event */
1382
+ storageBytes?: string;
1383
+ /** Network ingress in bytes during event window */
1384
+ networkIngressBytes?: string;
1385
+ /** Network egress in bytes during event window */
1386
+ networkEgressBytes?: string;
1387
+ /** Number of active pods in the namespace at time of event */
1388
+ podCount?: number;
1389
+ /** Additional resource metrics (gpu, replicas, quotas, etc.) */
1390
+ metrics?: unknown;
1391
+ /** Database that owns this resource (database-scoped isolation) */
1392
+ databaseId: string;
1393
+ }
1090
1394
  export interface CreateFunctionDeploymentInput {
1091
1395
  clientMutationId?: string;
1092
1396
  /** The `FunctionDeployment` to be created by this mutation. */
@@ -1151,8 +1455,6 @@ export interface FunctionGraphExecutionInput {
1151
1455
  invocationId?: string;
1152
1456
  /** Scope for multi-tenant isolation */
1153
1457
  databaseId: string;
1154
- /** Entity context (org/team) for scoped billing */
1155
- entityId?: string;
1156
1458
  /** Target output boundary node name to resolve */
1157
1459
  outputNode: string;
1158
1460
  /** Target output port name (default: value) */
@@ -1398,6 +1700,34 @@ export interface OrgFunctionExecutionLogPatch {
1398
1700
  /** User who triggered the execution (NULL for system/cron) */
1399
1701
  actorId?: string;
1400
1702
  }
1703
+ export interface UpdateResourceEventInput {
1704
+ clientMutationId?: string;
1705
+ /** Event timestamp (partition key) */
1706
+ createdAt: string;
1707
+ /** Unique event identifier */
1708
+ id: string;
1709
+ /** An object where the defined keys will be set on the `ResourceEvent` being updated. */
1710
+ resourceEventPatch: ResourceEventPatch;
1711
+ }
1712
+ /** Represents an update to a `ResourceEvent`. Fields that are set will be updated. */
1713
+ export interface ResourceEventPatch {
1714
+ /** Event timestamp (partition key) */
1715
+ createdAt?: string;
1716
+ /** Unique event identifier */
1717
+ id?: string;
1718
+ /** Resource this event belongs to */
1719
+ resourceId?: string;
1720
+ /** Event type: provisioned, provisioning, updated, failed, deprovisioned, health_check */
1721
+ eventType?: string;
1722
+ /** User who triggered this event (NULL for system/automated) */
1723
+ actorId?: string;
1724
+ /** Human-readable description of the event */
1725
+ message?: string;
1726
+ /** Structured context (old/new values, error details, etc.) */
1727
+ metadata?: unknown;
1728
+ /** Database that owns this resource (database-scoped isolation) */
1729
+ databaseId?: string;
1730
+ }
1401
1731
  export interface UpdateFunctionGraphExecutionOutputInput {
1402
1732
  clientMutationId?: string;
1403
1733
  /** Timestamp of output creation */
@@ -1504,6 +1834,40 @@ export interface FunctionExecutionLogPatch {
1504
1834
  /** Database that owns this resource (database-scoped isolation) */
1505
1835
  databaseId?: string;
1506
1836
  }
1837
+ export interface UpdateFunctionGraphInput {
1838
+ clientMutationId?: string;
1839
+ /** Unique graph identifier */
1840
+ id: string;
1841
+ /** An object where the defined keys will be set on the `FunctionGraph` being updated. */
1842
+ functionGraphPatch: FunctionGraphPatch;
1843
+ }
1844
+ /** Represents an update to a `FunctionGraph`. Fields that are set will be updated. */
1845
+ export interface FunctionGraphPatch {
1846
+ /** Unique graph identifier */
1847
+ id?: string;
1848
+ /** Database scope for multi-tenant isolation */
1849
+ databaseId?: string;
1850
+ /** Graph store (Merkle store) holding the graph definition */
1851
+ storeId?: string;
1852
+ /** Evaluator/runtime context (function, js, sql, system) */
1853
+ context?: string;
1854
+ /** Graph name (unique per database) */
1855
+ name?: string;
1856
+ /** Human-readable description of the graph */
1857
+ description?: string;
1858
+ /** Pinned definitions store commit for deterministic evaluation */
1859
+ definitionsCommitId?: string;
1860
+ /** Whether graph passes structural validation */
1861
+ isValid?: boolean;
1862
+ /** Array of validation error objects when is_valid = false */
1863
+ validationErrors?: unknown;
1864
+ /** Actor who created this graph */
1865
+ createdBy?: string;
1866
+ /** Timestamp of graph creation */
1867
+ createdAt?: string;
1868
+ /** Timestamp of last modification */
1869
+ updatedAt?: string;
1870
+ }
1507
1871
  export interface UpdateFunctionGraphExecutionNodeStateInput {
1508
1872
  clientMutationId?: string;
1509
1873
  /** Timestamp of node state creation (partition key) */
@@ -1540,41 +1904,37 @@ export interface FunctionGraphExecutionNodeStatePatch {
1540
1904
  /** FK to execution_outputs — content-addressed output blob for this node */
1541
1905
  outputId?: string;
1542
1906
  }
1543
- export interface UpdateFunctionGraphInput {
1907
+ export interface UpdatePlatformNamespaceInput {
1544
1908
  clientMutationId?: string;
1545
- /** Unique graph identifier */
1546
1909
  id: string;
1547
- /** An object where the defined keys will be set on the `FunctionGraph` being updated. */
1548
- functionGraphPatch: FunctionGraphPatch;
1910
+ /** An object where the defined keys will be set on the `PlatformNamespace` being updated. */
1911
+ platformNamespacePatch: PlatformNamespacePatch;
1549
1912
  }
1550
- /** Represents an update to a `FunctionGraph`. Fields that are set will be updated. */
1551
- export interface FunctionGraphPatch {
1552
- /** Unique graph identifier */
1913
+ /** Represents an update to a `PlatformNamespace`. Fields that are set will be updated. */
1914
+ export interface PlatformNamespacePatch {
1553
1915
  id?: string;
1554
- /** Database scope for multi-tenant isolation */
1555
- databaseId?: string;
1556
- /** Graph store (Merkle store) holding the graph definition */
1557
- storeId?: string;
1558
- /** Entity context (org/team) for scoped billing */
1559
- entityId?: string;
1560
- /** Evaluator/runtime context (function, js, sql, system) */
1561
- context?: string;
1562
- /** Graph name (unique per database) */
1563
- name?: string;
1564
- /** Human-readable description of the graph */
1565
- description?: string;
1566
- /** Pinned definitions store commit for deterministic evaluation */
1567
- definitionsCommitId?: string;
1568
- /** Whether graph passes structural validation */
1569
- isValid?: boolean;
1570
- /** Array of validation error objects when is_valid = false */
1571
- validationErrors?: unknown;
1572
- /** Actor who created this graph */
1573
- createdBy?: string;
1574
- /** Timestamp of graph creation */
1575
1916
  createdAt?: string;
1576
- /** Timestamp of last modification */
1577
1917
  updatedAt?: string;
1918
+ /** Human-readable namespace name (e.g. default, production, oauth) */
1919
+ name?: string;
1920
+ /** Globally unique computed namespace identifier via inflection.underscore */
1921
+ namespaceName?: string;
1922
+ /** Optional human-readable description of this namespace */
1923
+ description?: string;
1924
+ /** Whether this namespace is active (soft-disable for filtering) */
1925
+ isActive?: boolean;
1926
+ /** Key/value pairs for selecting and filtering namespaces */
1927
+ labels?: unknown;
1928
+ /** Freeform metadata for tooling and operational notes */
1929
+ annotations?: unknown;
1930
+ /** Database that owns this resource (database-scoped isolation) */
1931
+ databaseId?: string;
1932
+ /** Database that created this namespace (NULL for platform-native namespaces) */
1933
+ sourceDatabaseId?: string;
1934
+ /** Origin scope: platform, org, app — indicates where this namespace was created */
1935
+ sourceScope?: string;
1936
+ /** true = created by a child scope mirror trigger, false = platform-native */
1937
+ isManaged?: boolean;
1578
1938
  }
1579
1939
  export interface UpdateOrgFunctionInvocationInput {
1580
1940
  clientMutationId?: string;
@@ -1658,6 +2018,86 @@ export interface FunctionInvocationPatch {
1658
2018
  /** Groups all node invocations from a single flow graph execution */
1659
2019
  graphExecutionId?: string;
1660
2020
  }
2021
+ export interface UpdateResourceInput {
2022
+ clientMutationId?: string;
2023
+ id: string;
2024
+ /** An object where the defined keys will be set on the `Resource` being updated. */
2025
+ resourcePatch: ResourcePatch;
2026
+ }
2027
+ /** Represents an update to a `Resource`. Fields that are set will be updated. */
2028
+ export interface ResourcePatch {
2029
+ id?: string;
2030
+ createdAt?: string;
2031
+ updatedAt?: string;
2032
+ createdBy?: string;
2033
+ updatedBy?: string;
2034
+ /** Namespace this resource belongs to (security boundary, maps to K8s namespace) */
2035
+ namespaceId?: string;
2036
+ /** Resource kind: Deployment, StatefulSet, Service, Ingress, Certificate */
2037
+ kind?: string;
2038
+ /** Human-readable resource name */
2039
+ name?: string;
2040
+ /** URL-safe identifier, unique within (namespace_id, kind) */
2041
+ slug?: string;
2042
+ /** Desired state — kind-specific configuration (image, ports, resources, etc.). Opaque to DB; validated by K8s. */
2043
+ spec?: unknown;
2044
+ /** Resource lifecycle status: pending, provisioning, active, failed, draining, deleting */
2045
+ status?: string;
2046
+ /** Observed state from K8s — populated by handlers after reconciliation (service_url, clone_url, replicas, etc.) */
2047
+ statusObserved?: unknown;
2048
+ /** Most recent provisioning or runtime error message */
2049
+ lastError?: string;
2050
+ /** Cumulative error count for this resource */
2051
+ errorCount?: number;
2052
+ /** Key/value pairs for selecting and filtering resources */
2053
+ labels?: unknown;
2054
+ /** Freeform metadata for tooling and operational notes */
2055
+ annotations?: unknown;
2056
+ /** Database that owns this resource (database-scoped isolation) */
2057
+ databaseId?: string;
2058
+ }
2059
+ export interface UpdatePlatformNamespaceEventInput {
2060
+ clientMutationId?: string;
2061
+ /** Event timestamp (partition key) */
2062
+ createdAt: string;
2063
+ /** Unique event identifier */
2064
+ id: string;
2065
+ /** An object where the defined keys will be set on the `PlatformNamespaceEvent` being updated. */
2066
+ platformNamespaceEventPatch: PlatformNamespaceEventPatch;
2067
+ }
2068
+ /** Represents an update to a `PlatformNamespaceEvent`. Fields that are set will be updated. */
2069
+ export interface PlatformNamespaceEventPatch {
2070
+ /** Event timestamp (partition key) */
2071
+ createdAt?: string;
2072
+ /** Unique event identifier */
2073
+ id?: string;
2074
+ /** Namespace this event belongs to */
2075
+ namespaceId?: string;
2076
+ /** Event type: created, activated, deactivated, labels_updated, annotations_updated, renamed */
2077
+ eventType?: string;
2078
+ /** User who triggered this event (NULL for system/automated) */
2079
+ actorId?: string;
2080
+ /** Human-readable description of the event */
2081
+ message?: string;
2082
+ /** Structured context (old/new values, labels diff, etc.) */
2083
+ metadata?: unknown;
2084
+ /** CPU usage in millicores at time of event */
2085
+ cpuMillicores?: number;
2086
+ /** Memory usage in bytes at time of event */
2087
+ memoryBytes?: string;
2088
+ /** Storage usage in bytes at time of event */
2089
+ storageBytes?: string;
2090
+ /** Network ingress in bytes during event window */
2091
+ networkIngressBytes?: string;
2092
+ /** Network egress in bytes during event window */
2093
+ networkEgressBytes?: string;
2094
+ /** Number of active pods in the namespace at time of event */
2095
+ podCount?: number;
2096
+ /** Additional resource metrics (gpu, replicas, quotas, etc.) */
2097
+ metrics?: unknown;
2098
+ /** Database that owns this resource (database-scoped isolation) */
2099
+ databaseId?: string;
2100
+ }
1661
2101
  export interface UpdateFunctionDeploymentInput {
1662
2102
  clientMutationId?: string;
1663
2103
  id: string;
@@ -1727,8 +2167,6 @@ export interface FunctionGraphExecutionPatch {
1727
2167
  invocationId?: string;
1728
2168
  /** Scope for multi-tenant isolation */
1729
2169
  databaseId?: string;
1730
- /** Entity context (org/team) for scoped billing */
1731
- entityId?: string;
1732
2170
  /** Target output boundary node name to resolve */
1733
2171
  outputNode?: string;
1734
2172
  /** Target output port name (default: value) */
@@ -1867,6 +2305,13 @@ export interface DeleteOrgFunctionExecutionLogInput {
1867
2305
  /** Unique log entry identifier */
1868
2306
  id: string;
1869
2307
  }
2308
+ export interface DeleteResourceEventInput {
2309
+ clientMutationId?: string;
2310
+ /** Event timestamp (partition key) */
2311
+ createdAt: string;
2312
+ /** Unique event identifier */
2313
+ id: string;
2314
+ }
1870
2315
  export interface DeleteFunctionGraphExecutionOutputInput {
1871
2316
  clientMutationId?: string;
1872
2317
  /** Timestamp of output creation */
@@ -1892,6 +2337,11 @@ export interface DeleteFunctionExecutionLogInput {
1892
2337
  /** Unique log entry identifier */
1893
2338
  id: string;
1894
2339
  }
2340
+ export interface DeleteFunctionGraphInput {
2341
+ clientMutationId?: string;
2342
+ /** Unique graph identifier */
2343
+ id: string;
2344
+ }
1895
2345
  export interface DeleteFunctionGraphExecutionNodeStateInput {
1896
2346
  clientMutationId?: string;
1897
2347
  /** Timestamp of node state creation (partition key) */
@@ -1899,9 +2349,8 @@ export interface DeleteFunctionGraphExecutionNodeStateInput {
1899
2349
  /** Unique node state identifier */
1900
2350
  id: string;
1901
2351
  }
1902
- export interface DeleteFunctionGraphInput {
2352
+ export interface DeletePlatformNamespaceInput {
1903
2353
  clientMutationId?: string;
1904
- /** Unique graph identifier */
1905
2354
  id: string;
1906
2355
  }
1907
2356
  export interface DeleteOrgFunctionInvocationInput {
@@ -1918,6 +2367,17 @@ export interface DeleteFunctionInvocationInput {
1918
2367
  /** Unique invocation identifier */
1919
2368
  id: string;
1920
2369
  }
2370
+ export interface DeleteResourceInput {
2371
+ clientMutationId?: string;
2372
+ id: string;
2373
+ }
2374
+ export interface DeletePlatformNamespaceEventInput {
2375
+ clientMutationId?: string;
2376
+ /** Event timestamp (partition key) */
2377
+ createdAt: string;
2378
+ /** Unique event identifier */
2379
+ id: string;
2380
+ }
1921
2381
  export interface DeleteFunctionDeploymentInput {
1922
2382
  clientMutationId?: string;
1923
2383
  id: string;
@@ -1991,6 +2451,13 @@ export interface OrgFunctionExecutionLogConnection {
1991
2451
  pageInfo: PageInfo;
1992
2452
  totalCount: number;
1993
2453
  }
2454
+ /** A connection to a list of `ResourceEvent` values. */
2455
+ export interface ResourceEventConnection {
2456
+ nodes: ResourceEvent[];
2457
+ edges: ResourceEventEdge[];
2458
+ pageInfo: PageInfo;
2459
+ totalCount: number;
2460
+ }
1994
2461
  /** A connection to a list of `FunctionGraphExecutionOutput` values. */
1995
2462
  export interface FunctionGraphExecutionOutputConnection {
1996
2463
  nodes: FunctionGraphExecutionOutput[];
@@ -2019,6 +2486,13 @@ export interface FunctionExecutionLogConnection {
2019
2486
  pageInfo: PageInfo;
2020
2487
  totalCount: number;
2021
2488
  }
2489
+ /** A connection to a list of `FunctionGraph` values. */
2490
+ export interface FunctionGraphConnection {
2491
+ nodes: FunctionGraph[];
2492
+ edges: FunctionGraphEdge[];
2493
+ pageInfo: PageInfo;
2494
+ totalCount: number;
2495
+ }
2022
2496
  /** A connection to a list of `FunctionGraphExecutionNodeState` values. */
2023
2497
  export interface FunctionGraphExecutionNodeStateConnection {
2024
2498
  nodes: FunctionGraphExecutionNodeState[];
@@ -2026,10 +2500,10 @@ export interface FunctionGraphExecutionNodeStateConnection {
2026
2500
  pageInfo: PageInfo;
2027
2501
  totalCount: number;
2028
2502
  }
2029
- /** A connection to a list of `FunctionGraph` values. */
2030
- export interface FunctionGraphConnection {
2031
- nodes: FunctionGraph[];
2032
- edges: FunctionGraphEdge[];
2503
+ /** A connection to a list of `PlatformNamespace` values. */
2504
+ export interface PlatformNamespaceConnection {
2505
+ nodes: PlatformNamespace[];
2506
+ edges: PlatformNamespaceEdge[];
2033
2507
  pageInfo: PageInfo;
2034
2508
  totalCount: number;
2035
2509
  }
@@ -2047,6 +2521,20 @@ export interface FunctionInvocationConnection {
2047
2521
  pageInfo: PageInfo;
2048
2522
  totalCount: number;
2049
2523
  }
2524
+ /** A connection to a list of `Resource` values. */
2525
+ export interface ResourceConnection {
2526
+ nodes: Resource[];
2527
+ edges: ResourceEdge[];
2528
+ pageInfo: PageInfo;
2529
+ totalCount: number;
2530
+ }
2531
+ /** A connection to a list of `PlatformNamespaceEvent` values. */
2532
+ export interface PlatformNamespaceEventConnection {
2533
+ nodes: PlatformNamespaceEvent[];
2534
+ edges: PlatformNamespaceEventEdge[];
2535
+ pageInfo: PageInfo;
2536
+ totalCount: number;
2537
+ }
2050
2538
  /** A connection to a list of `FunctionDeployment` values. */
2051
2539
  export interface FunctionDeploymentConnection {
2052
2540
  nodes: FunctionDeployment[];
@@ -2106,15 +2594,15 @@ export interface CreateFunctionGraphPayload {
2106
2594
  clientMutationId?: string | null;
2107
2595
  result?: string | null;
2108
2596
  }
2109
- export interface AddEdgePayload {
2597
+ export interface ImportGraphJsonPayload {
2110
2598
  clientMutationId?: string | null;
2111
2599
  result?: string | null;
2112
2600
  }
2113
- export interface AddNodePayload {
2601
+ export interface AddEdgePayload {
2114
2602
  clientMutationId?: string | null;
2115
2603
  result?: string | null;
2116
2604
  }
2117
- export interface ImportGraphJsonPayload {
2605
+ export interface AddNodePayload {
2118
2606
  clientMutationId?: string | null;
2119
2607
  result?: string | null;
2120
2608
  }
@@ -2162,6 +2650,12 @@ export interface CreateOrgFunctionExecutionLogPayload {
2162
2650
  orgFunctionExecutionLog?: OrgFunctionExecutionLog | null;
2163
2651
  orgFunctionExecutionLogEdge?: OrgFunctionExecutionLogEdge | null;
2164
2652
  }
2653
+ export interface CreateResourceEventPayload {
2654
+ clientMutationId?: string | null;
2655
+ /** The `ResourceEvent` that was created by this mutation. */
2656
+ resourceEvent?: ResourceEvent | null;
2657
+ resourceEventEdge?: ResourceEventEdge | null;
2658
+ }
2165
2659
  export interface CreateFunctionGraphExecutionOutputPayload {
2166
2660
  clientMutationId?: string | null;
2167
2661
  /** The `FunctionGraphExecutionOutput` that was created by this mutation. */
@@ -2192,6 +2686,12 @@ export interface CreateFunctionGraphExecutionNodeStatePayload {
2192
2686
  functionGraphExecutionNodeState?: FunctionGraphExecutionNodeState | null;
2193
2687
  functionGraphExecutionNodeStateEdge?: FunctionGraphExecutionNodeStateEdge | null;
2194
2688
  }
2689
+ export interface CreatePlatformNamespacePayload {
2690
+ clientMutationId?: string | null;
2691
+ /** The `PlatformNamespace` that was created by this mutation. */
2692
+ platformNamespace?: PlatformNamespace | null;
2693
+ platformNamespaceEdge?: PlatformNamespaceEdge | null;
2694
+ }
2195
2695
  export interface CreateOrgFunctionInvocationPayload {
2196
2696
  clientMutationId?: string | null;
2197
2697
  /** The `OrgFunctionInvocation` that was created by this mutation. */
@@ -2204,6 +2704,18 @@ export interface CreateFunctionInvocationPayload {
2204
2704
  functionInvocation?: FunctionInvocation | null;
2205
2705
  functionInvocationEdge?: FunctionInvocationEdge | null;
2206
2706
  }
2707
+ export interface CreateResourcePayload {
2708
+ clientMutationId?: string | null;
2709
+ /** The `Resource` that was created by this mutation. */
2710
+ resource?: Resource | null;
2711
+ resourceEdge?: ResourceEdge | null;
2712
+ }
2713
+ export interface CreatePlatformNamespaceEventPayload {
2714
+ clientMutationId?: string | null;
2715
+ /** The `PlatformNamespaceEvent` that was created by this mutation. */
2716
+ platformNamespaceEvent?: PlatformNamespaceEvent | null;
2717
+ platformNamespaceEventEdge?: PlatformNamespaceEventEdge | null;
2718
+ }
2207
2719
  export interface CreateFunctionDeploymentPayload {
2208
2720
  clientMutationId?: string | null;
2209
2721
  /** The `FunctionDeployment` that was created by this mutation. */
@@ -2258,6 +2770,12 @@ export interface UpdateOrgFunctionExecutionLogPayload {
2258
2770
  orgFunctionExecutionLog?: OrgFunctionExecutionLog | null;
2259
2771
  orgFunctionExecutionLogEdge?: OrgFunctionExecutionLogEdge | null;
2260
2772
  }
2773
+ export interface UpdateResourceEventPayload {
2774
+ clientMutationId?: string | null;
2775
+ /** The `ResourceEvent` that was updated by this mutation. */
2776
+ resourceEvent?: ResourceEvent | null;
2777
+ resourceEventEdge?: ResourceEventEdge | null;
2778
+ }
2261
2779
  export interface UpdateFunctionGraphExecutionOutputPayload {
2262
2780
  clientMutationId?: string | null;
2263
2781
  /** The `FunctionGraphExecutionOutput` that was updated by this mutation. */
@@ -2282,17 +2800,23 @@ export interface UpdateFunctionExecutionLogPayload {
2282
2800
  functionExecutionLog?: FunctionExecutionLog | null;
2283
2801
  functionExecutionLogEdge?: FunctionExecutionLogEdge | null;
2284
2802
  }
2803
+ export interface UpdateFunctionGraphPayload {
2804
+ clientMutationId?: string | null;
2805
+ /** The `FunctionGraph` that was updated by this mutation. */
2806
+ functionGraph?: FunctionGraph | null;
2807
+ functionGraphEdge?: FunctionGraphEdge | null;
2808
+ }
2285
2809
  export interface UpdateFunctionGraphExecutionNodeStatePayload {
2286
2810
  clientMutationId?: string | null;
2287
2811
  /** The `FunctionGraphExecutionNodeState` that was updated by this mutation. */
2288
2812
  functionGraphExecutionNodeState?: FunctionGraphExecutionNodeState | null;
2289
2813
  functionGraphExecutionNodeStateEdge?: FunctionGraphExecutionNodeStateEdge | null;
2290
2814
  }
2291
- export interface UpdateFunctionGraphPayload {
2815
+ export interface UpdatePlatformNamespacePayload {
2292
2816
  clientMutationId?: string | null;
2293
- /** The `FunctionGraph` that was updated by this mutation. */
2294
- functionGraph?: FunctionGraph | null;
2295
- functionGraphEdge?: FunctionGraphEdge | null;
2817
+ /** The `PlatformNamespace` that was updated by this mutation. */
2818
+ platformNamespace?: PlatformNamespace | null;
2819
+ platformNamespaceEdge?: PlatformNamespaceEdge | null;
2296
2820
  }
2297
2821
  export interface UpdateOrgFunctionInvocationPayload {
2298
2822
  clientMutationId?: string | null;
@@ -2306,6 +2830,18 @@ export interface UpdateFunctionInvocationPayload {
2306
2830
  functionInvocation?: FunctionInvocation | null;
2307
2831
  functionInvocationEdge?: FunctionInvocationEdge | null;
2308
2832
  }
2833
+ export interface UpdateResourcePayload {
2834
+ clientMutationId?: string | null;
2835
+ /** The `Resource` that was updated by this mutation. */
2836
+ resource?: Resource | null;
2837
+ resourceEdge?: ResourceEdge | null;
2838
+ }
2839
+ export interface UpdatePlatformNamespaceEventPayload {
2840
+ clientMutationId?: string | null;
2841
+ /** The `PlatformNamespaceEvent` that was updated by this mutation. */
2842
+ platformNamespaceEvent?: PlatformNamespaceEvent | null;
2843
+ platformNamespaceEventEdge?: PlatformNamespaceEventEdge | null;
2844
+ }
2309
2845
  export interface UpdateFunctionDeploymentPayload {
2310
2846
  clientMutationId?: string | null;
2311
2847
  /** The `FunctionDeployment` that was updated by this mutation. */
@@ -2360,6 +2896,12 @@ export interface DeleteOrgFunctionExecutionLogPayload {
2360
2896
  orgFunctionExecutionLog?: OrgFunctionExecutionLog | null;
2361
2897
  orgFunctionExecutionLogEdge?: OrgFunctionExecutionLogEdge | null;
2362
2898
  }
2899
+ export interface DeleteResourceEventPayload {
2900
+ clientMutationId?: string | null;
2901
+ /** The `ResourceEvent` that was deleted by this mutation. */
2902
+ resourceEvent?: ResourceEvent | null;
2903
+ resourceEventEdge?: ResourceEventEdge | null;
2904
+ }
2363
2905
  export interface DeleteFunctionGraphExecutionOutputPayload {
2364
2906
  clientMutationId?: string | null;
2365
2907
  /** The `FunctionGraphExecutionOutput` that was deleted by this mutation. */
@@ -2384,17 +2926,23 @@ export interface DeleteFunctionExecutionLogPayload {
2384
2926
  functionExecutionLog?: FunctionExecutionLog | null;
2385
2927
  functionExecutionLogEdge?: FunctionExecutionLogEdge | null;
2386
2928
  }
2929
+ export interface DeleteFunctionGraphPayload {
2930
+ clientMutationId?: string | null;
2931
+ /** The `FunctionGraph` that was deleted by this mutation. */
2932
+ functionGraph?: FunctionGraph | null;
2933
+ functionGraphEdge?: FunctionGraphEdge | null;
2934
+ }
2387
2935
  export interface DeleteFunctionGraphExecutionNodeStatePayload {
2388
2936
  clientMutationId?: string | null;
2389
2937
  /** The `FunctionGraphExecutionNodeState` that was deleted by this mutation. */
2390
2938
  functionGraphExecutionNodeState?: FunctionGraphExecutionNodeState | null;
2391
2939
  functionGraphExecutionNodeStateEdge?: FunctionGraphExecutionNodeStateEdge | null;
2392
2940
  }
2393
- export interface DeleteFunctionGraphPayload {
2941
+ export interface DeletePlatformNamespacePayload {
2394
2942
  clientMutationId?: string | null;
2395
- /** The `FunctionGraph` that was deleted by this mutation. */
2396
- functionGraph?: FunctionGraph | null;
2397
- functionGraphEdge?: FunctionGraphEdge | null;
2943
+ /** The `PlatformNamespace` that was deleted by this mutation. */
2944
+ platformNamespace?: PlatformNamespace | null;
2945
+ platformNamespaceEdge?: PlatformNamespaceEdge | null;
2398
2946
  }
2399
2947
  export interface DeleteOrgFunctionInvocationPayload {
2400
2948
  clientMutationId?: string | null;
@@ -2408,6 +2956,18 @@ export interface DeleteFunctionInvocationPayload {
2408
2956
  functionInvocation?: FunctionInvocation | null;
2409
2957
  functionInvocationEdge?: FunctionInvocationEdge | null;
2410
2958
  }
2959
+ export interface DeleteResourcePayload {
2960
+ clientMutationId?: string | null;
2961
+ /** The `Resource` that was deleted by this mutation. */
2962
+ resource?: Resource | null;
2963
+ resourceEdge?: ResourceEdge | null;
2964
+ }
2965
+ export interface DeletePlatformNamespaceEventPayload {
2966
+ clientMutationId?: string | null;
2967
+ /** The `PlatformNamespaceEvent` that was deleted by this mutation. */
2968
+ platformNamespaceEvent?: PlatformNamespaceEvent | null;
2969
+ platformNamespaceEventEdge?: PlatformNamespaceEventEdge | null;
2970
+ }
2411
2971
  export interface DeleteFunctionDeploymentPayload {
2412
2972
  clientMutationId?: string | null;
2413
2973
  /** The `FunctionDeployment` that was deleted by this mutation. */
@@ -2493,6 +3053,12 @@ export interface OrgFunctionExecutionLogEdge {
2493
3053
  /** The `OrgFunctionExecutionLog` at the end of the edge. */
2494
3054
  node?: OrgFunctionExecutionLog | null;
2495
3055
  }
3056
+ /** A `ResourceEvent` edge in the connection. */
3057
+ export interface ResourceEventEdge {
3058
+ cursor?: string | null;
3059
+ /** The `ResourceEvent` at the end of the edge. */
3060
+ node?: ResourceEvent | null;
3061
+ }
2496
3062
  /** A `FunctionGraphExecutionOutput` edge in the connection. */
2497
3063
  export interface FunctionGraphExecutionOutputEdge {
2498
3064
  cursor?: string | null;
@@ -2517,17 +3083,23 @@ export interface FunctionExecutionLogEdge {
2517
3083
  /** The `FunctionExecutionLog` at the end of the edge. */
2518
3084
  node?: FunctionExecutionLog | null;
2519
3085
  }
3086
+ /** A `FunctionGraph` edge in the connection. */
3087
+ export interface FunctionGraphEdge {
3088
+ cursor?: string | null;
3089
+ /** The `FunctionGraph` at the end of the edge. */
3090
+ node?: FunctionGraph | null;
3091
+ }
2520
3092
  /** A `FunctionGraphExecutionNodeState` edge in the connection. */
2521
3093
  export interface FunctionGraphExecutionNodeStateEdge {
2522
3094
  cursor?: string | null;
2523
3095
  /** The `FunctionGraphExecutionNodeState` at the end of the edge. */
2524
3096
  node?: FunctionGraphExecutionNodeState | null;
2525
3097
  }
2526
- /** A `FunctionGraph` edge in the connection. */
2527
- export interface FunctionGraphEdge {
3098
+ /** A `PlatformNamespace` edge in the connection. */
3099
+ export interface PlatformNamespaceEdge {
2528
3100
  cursor?: string | null;
2529
- /** The `FunctionGraph` at the end of the edge. */
2530
- node?: FunctionGraph | null;
3101
+ /** The `PlatformNamespace` at the end of the edge. */
3102
+ node?: PlatformNamespace | null;
2531
3103
  }
2532
3104
  /** A `OrgFunctionInvocation` edge in the connection. */
2533
3105
  export interface OrgFunctionInvocationEdge {
@@ -2541,6 +3113,18 @@ export interface FunctionInvocationEdge {
2541
3113
  /** The `FunctionInvocation` at the end of the edge. */
2542
3114
  node?: FunctionInvocation | null;
2543
3115
  }
3116
+ /** A `Resource` edge in the connection. */
3117
+ export interface ResourceEdge {
3118
+ cursor?: string | null;
3119
+ /** The `Resource` at the end of the edge. */
3120
+ node?: Resource | null;
3121
+ }
3122
+ /** A `PlatformNamespaceEvent` edge in the connection. */
3123
+ export interface PlatformNamespaceEventEdge {
3124
+ cursor?: string | null;
3125
+ /** The `PlatformNamespaceEvent` at the end of the edge. */
3126
+ node?: PlatformNamespaceEvent | null;
3127
+ }
2544
3128
  /** A `FunctionDeployment` edge in the connection. */
2545
3129
  export interface FunctionDeploymentEdge {
2546
3130
  cursor?: string | null;