@constructive-sdk/cli 0.32.2 → 0.32.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 (536) hide show
  1. package/agent/orm/input-types.d.ts +24 -0
  2. package/agent/orm/input-types.js +3 -0
  3. package/api/cli/commands/ast-migration.js +20 -31
  4. package/{esm/infra/cli/commands/infra-ref.d.ts → api/cli/commands/http-route.d.ts} +1 -1
  5. package/api/cli/commands/http-route.js +434 -0
  6. package/{esm/compute/cli/commands/get-all-record.d.ts → api/cli/commands/managed-domain.d.ts} +1 -1
  7. package/api/cli/commands/managed-domain.js +382 -0
  8. package/api/cli/commands/resolve-http-route.d.ts +8 -0
  9. package/api/cli/commands/resolve-http-route.js +44 -0
  10. package/api/cli/commands/sql-action.js +20 -31
  11. package/api/cli/commands.js +7 -3
  12. package/api/cli/executor.d.ts +7 -1
  13. package/api/orm/index.d.ts +9 -2
  14. package/api/orm/index.js +4 -2
  15. package/api/orm/input-types.d.ts +498 -143
  16. package/api/orm/input-types.js +4 -0
  17. package/api/orm/models/httpRoute.d.ts +54 -0
  18. package/{infra/orm/models/infraRef.js → api/orm/models/httpRoute.js} +27 -30
  19. package/api/orm/models/index.d.ts +2 -1
  20. package/api/orm/models/index.js +5 -3
  21. package/api/orm/models/managedDomain.d.ts +54 -0
  22. package/{infra/orm/models/infraCommit.js → api/orm/models/managedDomain.js} +27 -30
  23. package/api/orm/query/index.d.ts +12 -0
  24. package/api/orm/query/index.js +20 -0
  25. package/auth/cli/commands/identity-provider.js +4 -8
  26. package/auth/cli/commands/org-api-key-list.js +9 -18
  27. package/auth/cli/commands/user-connected-account.js +5 -10
  28. package/auth/orm/input-types.d.ts +155 -182
  29. package/auth/orm/input-types.js +4 -0
  30. package/compute/cli/commands/declared-capacity.d.ts +8 -0
  31. package/compute/cli/commands/declared-capacity.js +247 -0
  32. package/compute/cli/commands/function-definition.js +48 -0
  33. package/compute/cli/commands/function-graph-execution-node-state.js +66 -0
  34. package/compute/cli/commands/function-graph-execution.js +176 -0
  35. package/compute/cli/commands/function-invocation.js +66 -0
  36. package/compute/cli/commands/get-all-tree-nodes-record.d.ts +8 -0
  37. package/compute/cli/commands/{get-all-record.js → get-all-tree-nodes-record.js} +5 -5
  38. package/compute/cli/commands/infra-commit.js +19 -19
  39. package/compute/cli/commands/infra-get-all-tree-nodes-record.d.ts +8 -0
  40. package/{api/cli/commands/migrate-file.js → compute/cli/commands/infra-get-all-tree-nodes-record.js} +22 -28
  41. package/compute/cli/commands/infra-object.js +19 -19
  42. package/compute/cli/commands/infra-ref.js +17 -17
  43. package/compute/cli/commands/infra-store.js +20 -20
  44. package/compute/cli/commands/namespace-event.js +0 -154
  45. package/compute/cli/commands/platform-declared-capacity.d.ts +8 -0
  46. package/compute/cli/commands/platform-declared-capacity.js +247 -0
  47. package/compute/cli/commands/platform-function-definition.js +48 -0
  48. package/compute/cli/commands/platform-function-invocation.js +66 -0
  49. package/compute/cli/commands/platform-infra-commit.d.ts +8 -0
  50. package/{infra/cli/commands/infra-commit.js → compute/cli/commands/platform-infra-commit.js} +8 -8
  51. package/compute/cli/commands/platform-infra-get-all-tree-nodes-record.d.ts +8 -0
  52. package/compute/cli/commands/{infra-get-all-record.js → platform-infra-get-all-tree-nodes-record.js} +7 -5
  53. package/compute/cli/commands/platform-infra-init-empty-repo.d.ts +8 -0
  54. package/{infra/cli/commands/infra-init-empty-repo.js → compute/cli/commands/platform-infra-init-empty-repo.js} +3 -3
  55. package/compute/cli/commands/platform-infra-insert-node-at-path.d.ts +8 -0
  56. package/compute/cli/commands/platform-infra-insert-node-at-path.js +36 -0
  57. package/compute/cli/commands/platform-infra-object.d.ts +8 -0
  58. package/{infra/cli/commands/infra-object.js → compute/cli/commands/platform-infra-object.js} +8 -8
  59. package/compute/cli/commands/platform-infra-ref.d.ts +8 -0
  60. package/{infra/cli/commands/infra-ref.js → compute/cli/commands/platform-infra-ref.js} +8 -8
  61. package/compute/cli/commands/platform-infra-set-data-at-path.d.ts +8 -0
  62. package/{infra/cli/commands/infra-set-data-at-path.js → compute/cli/commands/platform-infra-set-data-at-path.js} +3 -3
  63. package/compute/cli/commands/{infra-get-all-record.d.ts → platform-infra-store.d.ts} +1 -1
  64. package/{infra/cli/commands/infra-store.js → compute/cli/commands/platform-infra-store.js} +8 -8
  65. package/compute/cli/commands/platform-namespace-event.js +0 -154
  66. package/compute/cli/commands/platform-resource-installation.d.ts +8 -0
  67. package/compute/cli/commands/platform-resource-installation.js +436 -0
  68. package/compute/cli/commands/platform-resource-installations-install.d.ts +8 -0
  69. package/compute/cli/commands/platform-resource-installations-install.js +36 -0
  70. package/compute/cli/commands/platform-resource-installations-rollback.d.ts +8 -0
  71. package/compute/cli/commands/platform-resource-installations-rollback.js +36 -0
  72. package/compute/cli/commands/platform-resource-installations-uninstall.d.ts +8 -0
  73. package/compute/cli/commands/platform-resource-installations-uninstall.js +36 -0
  74. package/compute/cli/commands/platform-resource-installations-upgrade.d.ts +8 -0
  75. package/compute/cli/commands/platform-resource-installations-upgrade.js +36 -0
  76. package/compute/cli/commands/platform-resource-usage-log.d.ts +8 -0
  77. package/compute/cli/commands/platform-resource-usage-log.js +386 -0
  78. package/compute/cli/commands/platform-resource-usage-summary.d.ts +8 -0
  79. package/compute/cli/commands/platform-resource-usage-summary.js +389 -0
  80. package/compute/cli/commands/platform-resource-utilization-daily.d.ts +8 -0
  81. package/compute/cli/commands/platform-resource-utilization-daily.js +313 -0
  82. package/compute/cli/commands/platform-resource.js +51 -0
  83. package/compute/cli/commands/platform-resources-health.d.ts +8 -0
  84. package/compute/cli/commands/platform-resources-health.js +413 -0
  85. package/compute/cli/commands/platform-webhook-endpoint.d.ts +8 -0
  86. package/compute/cli/commands/platform-webhook-endpoint.js +432 -0
  87. package/compute/cli/commands/platform-webhook-event.d.ts +8 -0
  88. package/compute/cli/commands/platform-webhook-event.js +414 -0
  89. package/compute/cli/commands/resource-installation.d.ts +8 -0
  90. package/compute/cli/commands/resource-installation.js +456 -0
  91. package/compute/cli/commands/resource-installations-install.d.ts +8 -0
  92. package/compute/cli/commands/resource-installations-install.js +36 -0
  93. package/compute/cli/commands/resource-installations-rollback.d.ts +8 -0
  94. package/compute/cli/commands/resource-installations-rollback.js +36 -0
  95. package/compute/cli/commands/resource-installations-uninstall.d.ts +8 -0
  96. package/compute/cli/commands/resource-installations-uninstall.js +36 -0
  97. package/compute/cli/commands/resource-installations-upgrade.d.ts +8 -0
  98. package/compute/cli/commands/resource-installations-upgrade.js +36 -0
  99. package/compute/cli/commands/resource-usage-log.d.ts +8 -0
  100. package/compute/cli/commands/resource-usage-log.js +406 -0
  101. package/compute/cli/commands/resource-usage-summary.d.ts +8 -0
  102. package/compute/cli/commands/resource-usage-summary.js +409 -0
  103. package/compute/cli/commands/resource-utilization-daily.d.ts +8 -0
  104. package/compute/cli/commands/resource-utilization-daily.js +313 -0
  105. package/compute/cli/commands/resource.js +51 -0
  106. package/compute/cli/commands/resources-health.d.ts +8 -0
  107. package/compute/cli/commands/resources-health.js +424 -0
  108. package/compute/cli/commands/webhook-endpoint.d.ts +8 -0
  109. package/compute/cli/commands/webhook-endpoint.js +452 -0
  110. package/{api/cli/commands/migrate-file.d.ts → compute/cli/commands/webhook-event.d.ts} +1 -1
  111. package/compute/cli/commands/webhook-event.js +434 -0
  112. package/compute/cli/commands.js +69 -5
  113. package/compute/cli/executor.d.ts +78 -2
  114. package/compute/orm/index.d.ts +101 -4
  115. package/compute/orm/index.js +46 -4
  116. package/compute/orm/input-types.d.ts +5356 -772
  117. package/compute/orm/input-types.js +34 -2
  118. package/compute/orm/models/declaredCapacity.d.ts +30 -0
  119. package/compute/orm/models/{infraGetAllRecord.js → declaredCapacity.js} +15 -15
  120. package/compute/orm/models/getAllTreeNodesRecord.d.ts +30 -0
  121. package/compute/orm/models/{getAllRecord.js → getAllTreeNodesRecord.js} +15 -15
  122. package/compute/orm/models/index.d.ts +23 -2
  123. package/compute/orm/models/index.js +48 -5
  124. package/compute/orm/models/infraCommit.d.ts +2 -2
  125. package/compute/orm/models/infraCommit.js +2 -2
  126. package/compute/orm/models/infraGetAllTreeNodesRecord.d.ts +30 -0
  127. package/compute/orm/models/infraGetAllTreeNodesRecord.js +59 -0
  128. package/compute/orm/models/infraObject.d.ts +2 -2
  129. package/compute/orm/models/infraObject.js +2 -2
  130. package/compute/orm/models/infraRef.d.ts +2 -2
  131. package/compute/orm/models/infraRef.js +2 -2
  132. package/compute/orm/models/platformDeclaredCapacity.d.ts +30 -0
  133. package/{objects/orm/models/getAllRecord.js → compute/orm/models/platformDeclaredCapacity.js} +15 -15
  134. package/compute/orm/models/platformInfraCommit.d.ts +56 -0
  135. package/compute/orm/models/platformInfraCommit.js +107 -0
  136. package/compute/orm/models/platformInfraGetAllTreeNodesRecord.d.ts +30 -0
  137. package/compute/orm/models/platformInfraGetAllTreeNodesRecord.js +59 -0
  138. package/compute/orm/models/platformInfraObject.d.ts +56 -0
  139. package/{infra/orm/models/infraObject.js → compute/orm/models/platformInfraObject.js} +25 -25
  140. package/compute/orm/models/platformInfraRef.d.ts +56 -0
  141. package/compute/orm/models/platformInfraRef.js +107 -0
  142. package/compute/orm/models/platformInfraStore.d.ts +54 -0
  143. package/compute/orm/models/platformInfraStore.js +104 -0
  144. package/compute/orm/models/platformResourceInstallation.d.ts +54 -0
  145. package/compute/orm/models/platformResourceInstallation.js +104 -0
  146. package/compute/orm/models/platformResourceUsageLog.d.ts +56 -0
  147. package/compute/orm/models/platformResourceUsageLog.js +107 -0
  148. package/compute/orm/models/platformResourceUsageSummary.d.ts +56 -0
  149. package/compute/orm/models/platformResourceUsageSummary.js +107 -0
  150. package/compute/orm/models/platformResourceUtilizationDaily.d.ts +30 -0
  151. package/compute/orm/models/platformResourceUtilizationDaily.js +59 -0
  152. package/compute/orm/models/platformResourcesHealth.d.ts +36 -0
  153. package/compute/orm/models/platformResourcesHealth.js +80 -0
  154. package/compute/orm/models/platformWebhookEndpoint.d.ts +54 -0
  155. package/compute/orm/models/platformWebhookEndpoint.js +104 -0
  156. package/compute/orm/models/platformWebhookEvent.d.ts +54 -0
  157. package/compute/orm/models/platformWebhookEvent.js +104 -0
  158. package/compute/orm/models/resourceInstallation.d.ts +54 -0
  159. package/compute/orm/models/resourceInstallation.js +104 -0
  160. package/compute/orm/models/resourceUsageLog.d.ts +56 -0
  161. package/compute/orm/models/resourceUsageLog.js +107 -0
  162. package/compute/orm/models/resourceUsageSummary.d.ts +56 -0
  163. package/compute/orm/models/resourceUsageSummary.js +107 -0
  164. package/compute/orm/models/resourceUtilizationDaily.d.ts +30 -0
  165. package/compute/orm/models/resourceUtilizationDaily.js +59 -0
  166. package/compute/orm/models/resourcesHealth.d.ts +36 -0
  167. package/{api/orm/models/migrateFile.js → compute/orm/models/resourcesHealth.js} +20 -20
  168. package/compute/orm/models/webhookEndpoint.d.ts +54 -0
  169. package/compute/orm/models/webhookEndpoint.js +104 -0
  170. package/compute/orm/models/webhookEvent.d.ts +54 -0
  171. package/{infra/orm/models/infraStore.js → compute/orm/models/webhookEvent.js} +27 -27
  172. package/compute/orm/mutation/index.d.ts +89 -1
  173. package/compute/orm/mutation/index.js +132 -0
  174. package/config/cli/commands/platform-internal-secret.js +7 -14
  175. package/config/cli/commands/platform-secret.js +8 -16
  176. package/config/cli/commands/secret.js +9 -18
  177. package/config/orm/input-types.d.ts +4 -79
  178. package/esm/agent/orm/input-types.d.ts +24 -0
  179. package/esm/agent/orm/input-types.js +3 -0
  180. package/esm/api/cli/commands/ast-migration.js +20 -31
  181. package/{infra/cli/commands/infra-ref.d.ts → esm/api/cli/commands/http-route.d.ts} +1 -1
  182. package/esm/api/cli/commands/http-route.js +432 -0
  183. package/esm/api/cli/commands/{migrate-file.d.ts → managed-domain.d.ts} +1 -1
  184. package/esm/api/cli/commands/managed-domain.js +380 -0
  185. package/esm/api/cli/commands/resolve-http-route.d.ts +8 -0
  186. package/esm/api/cli/commands/resolve-http-route.js +42 -0
  187. package/esm/api/cli/commands/sql-action.js +20 -31
  188. package/esm/api/cli/commands.js +7 -3
  189. package/esm/api/cli/executor.d.ts +7 -1
  190. package/esm/api/orm/index.d.ts +9 -2
  191. package/esm/api/orm/index.js +4 -2
  192. package/esm/api/orm/input-types.d.ts +498 -143
  193. package/esm/api/orm/input-types.js +4 -0
  194. package/esm/api/orm/models/httpRoute.d.ts +54 -0
  195. package/esm/{infra/orm/models/infraRef.js → api/orm/models/httpRoute.js} +25 -28
  196. package/esm/api/orm/models/index.d.ts +2 -1
  197. package/esm/api/orm/models/index.js +2 -1
  198. package/esm/api/orm/models/managedDomain.d.ts +54 -0
  199. package/esm/{infra/orm/models/infraCommit.js → api/orm/models/managedDomain.js} +25 -28
  200. package/esm/api/orm/query/index.d.ts +12 -0
  201. package/esm/api/orm/query/index.js +20 -0
  202. package/esm/auth/cli/commands/identity-provider.js +4 -8
  203. package/esm/auth/cli/commands/org-api-key-list.js +9 -18
  204. package/esm/auth/cli/commands/user-connected-account.js +5 -10
  205. package/esm/auth/orm/input-types.d.ts +155 -182
  206. package/esm/auth/orm/input-types.js +4 -0
  207. package/esm/compute/cli/commands/declared-capacity.d.ts +8 -0
  208. package/esm/compute/cli/commands/declared-capacity.js +245 -0
  209. package/esm/compute/cli/commands/function-definition.js +48 -0
  210. package/esm/compute/cli/commands/function-graph-execution-node-state.js +66 -0
  211. package/esm/compute/cli/commands/function-graph-execution.js +176 -0
  212. package/esm/compute/cli/commands/function-invocation.js +66 -0
  213. package/esm/compute/cli/commands/get-all-tree-nodes-record.d.ts +8 -0
  214. package/esm/{infra/cli/commands/infra-get-all-record.js → compute/cli/commands/get-all-tree-nodes-record.js} +5 -5
  215. package/esm/compute/cli/commands/infra-commit.js +19 -19
  216. package/esm/compute/cli/commands/infra-get-all-tree-nodes-record.d.ts +8 -0
  217. package/esm/{api/cli/commands/migrate-file.js → compute/cli/commands/infra-get-all-tree-nodes-record.js} +22 -28
  218. package/esm/compute/cli/commands/infra-object.js +19 -19
  219. package/esm/compute/cli/commands/infra-ref.js +17 -17
  220. package/esm/compute/cli/commands/infra-store.js +20 -20
  221. package/esm/compute/cli/commands/namespace-event.js +0 -154
  222. package/esm/compute/cli/commands/platform-declared-capacity.d.ts +8 -0
  223. package/esm/compute/cli/commands/platform-declared-capacity.js +245 -0
  224. package/esm/compute/cli/commands/platform-function-definition.js +48 -0
  225. package/esm/compute/cli/commands/platform-function-invocation.js +66 -0
  226. package/esm/compute/cli/commands/platform-infra-commit.d.ts +8 -0
  227. package/esm/{infra/cli/commands/infra-commit.js → compute/cli/commands/platform-infra-commit.js} +8 -8
  228. package/esm/compute/cli/commands/platform-infra-get-all-tree-nodes-record.d.ts +8 -0
  229. package/esm/compute/cli/commands/{infra-get-all-record.js → platform-infra-get-all-tree-nodes-record.js} +7 -5
  230. package/esm/compute/cli/commands/platform-infra-init-empty-repo.d.ts +8 -0
  231. package/esm/{infra/cli/commands/infra-insert-node-at-path.js → compute/cli/commands/platform-infra-init-empty-repo.js} +3 -3
  232. package/esm/compute/cli/commands/platform-infra-insert-node-at-path.d.ts +8 -0
  233. package/esm/compute/cli/commands/platform-infra-insert-node-at-path.js +34 -0
  234. package/esm/compute/cli/commands/platform-infra-object.d.ts +8 -0
  235. package/esm/{infra/cli/commands/infra-object.js → compute/cli/commands/platform-infra-object.js} +8 -8
  236. package/esm/compute/cli/commands/platform-infra-ref.d.ts +8 -0
  237. package/esm/{infra/cli/commands/infra-ref.js → compute/cli/commands/platform-infra-ref.js} +8 -8
  238. package/esm/compute/cli/commands/platform-infra-set-data-at-path.d.ts +8 -0
  239. package/esm/{infra/cli/commands/infra-set-data-at-path.js → compute/cli/commands/platform-infra-set-data-at-path.js} +3 -3
  240. package/esm/compute/cli/commands/platform-infra-store.d.ts +8 -0
  241. package/esm/{infra/cli/commands/infra-store.js → compute/cli/commands/platform-infra-store.js} +8 -8
  242. package/esm/compute/cli/commands/platform-namespace-event.js +0 -154
  243. package/esm/compute/cli/commands/platform-resource-installation.d.ts +8 -0
  244. package/esm/compute/cli/commands/platform-resource-installation.js +434 -0
  245. package/esm/compute/cli/commands/platform-resource-installations-install.d.ts +8 -0
  246. package/esm/compute/cli/commands/platform-resource-installations-install.js +34 -0
  247. package/esm/compute/cli/commands/platform-resource-installations-rollback.d.ts +8 -0
  248. package/esm/compute/cli/commands/platform-resource-installations-rollback.js +34 -0
  249. package/esm/compute/cli/commands/platform-resource-installations-uninstall.d.ts +8 -0
  250. package/esm/compute/cli/commands/platform-resource-installations-uninstall.js +34 -0
  251. package/esm/compute/cli/commands/platform-resource-installations-upgrade.d.ts +8 -0
  252. package/esm/compute/cli/commands/platform-resource-installations-upgrade.js +34 -0
  253. package/esm/compute/cli/commands/platform-resource-usage-log.d.ts +8 -0
  254. package/esm/compute/cli/commands/platform-resource-usage-log.js +384 -0
  255. package/esm/compute/cli/commands/platform-resource-usage-summary.d.ts +8 -0
  256. package/esm/compute/cli/commands/platform-resource-usage-summary.js +387 -0
  257. package/esm/compute/cli/commands/platform-resource-utilization-daily.d.ts +8 -0
  258. package/esm/compute/cli/commands/platform-resource-utilization-daily.js +311 -0
  259. package/esm/compute/cli/commands/platform-resource.js +51 -0
  260. package/esm/compute/cli/commands/platform-resources-health.d.ts +8 -0
  261. package/esm/compute/cli/commands/platform-resources-health.js +411 -0
  262. package/esm/compute/cli/commands/platform-webhook-endpoint.d.ts +8 -0
  263. package/esm/compute/cli/commands/platform-webhook-endpoint.js +430 -0
  264. package/esm/compute/cli/commands/platform-webhook-event.d.ts +8 -0
  265. package/esm/compute/cli/commands/platform-webhook-event.js +412 -0
  266. package/esm/compute/cli/commands/resource-installation.d.ts +8 -0
  267. package/esm/compute/cli/commands/resource-installation.js +454 -0
  268. package/esm/compute/cli/commands/resource-installations-install.d.ts +8 -0
  269. package/esm/compute/cli/commands/resource-installations-install.js +34 -0
  270. package/esm/compute/cli/commands/resource-installations-rollback.d.ts +8 -0
  271. package/esm/compute/cli/commands/resource-installations-rollback.js +34 -0
  272. package/esm/compute/cli/commands/resource-installations-uninstall.d.ts +8 -0
  273. package/esm/compute/cli/commands/resource-installations-uninstall.js +34 -0
  274. package/esm/compute/cli/commands/resource-installations-upgrade.d.ts +8 -0
  275. package/esm/compute/cli/commands/resource-installations-upgrade.js +34 -0
  276. package/esm/compute/cli/commands/resource-usage-log.d.ts +8 -0
  277. package/esm/compute/cli/commands/resource-usage-log.js +404 -0
  278. package/esm/compute/cli/commands/resource-usage-summary.d.ts +8 -0
  279. package/esm/compute/cli/commands/resource-usage-summary.js +407 -0
  280. package/esm/compute/cli/commands/resource-utilization-daily.d.ts +8 -0
  281. package/esm/compute/cli/commands/resource-utilization-daily.js +311 -0
  282. package/esm/compute/cli/commands/resource.js +51 -0
  283. package/esm/compute/cli/commands/resources-health.d.ts +8 -0
  284. package/esm/compute/cli/commands/resources-health.js +422 -0
  285. package/esm/compute/cli/commands/webhook-endpoint.d.ts +8 -0
  286. package/esm/compute/cli/commands/webhook-endpoint.js +450 -0
  287. package/{compute/cli/commands/get-all-record.d.ts → esm/compute/cli/commands/webhook-event.d.ts} +1 -1
  288. package/esm/compute/cli/commands/webhook-event.js +432 -0
  289. package/esm/compute/cli/commands.js +69 -5
  290. package/esm/compute/cli/executor.d.ts +78 -2
  291. package/esm/compute/orm/index.d.ts +101 -4
  292. package/esm/compute/orm/index.js +46 -4
  293. package/esm/compute/orm/input-types.d.ts +5356 -772
  294. package/esm/compute/orm/input-types.js +34 -2
  295. package/esm/compute/orm/models/declaredCapacity.d.ts +30 -0
  296. package/esm/{infra/orm/models/infraGetAllRecord.js → compute/orm/models/declaredCapacity.js} +13 -13
  297. package/esm/compute/orm/models/getAllTreeNodesRecord.d.ts +30 -0
  298. package/esm/{objects/orm/models/getAllRecord.js → compute/orm/models/getAllTreeNodesRecord.js} +13 -13
  299. package/esm/compute/orm/models/index.d.ts +23 -2
  300. package/esm/compute/orm/models/index.js +23 -2
  301. package/esm/compute/orm/models/infraCommit.d.ts +2 -2
  302. package/esm/compute/orm/models/infraCommit.js +2 -2
  303. package/esm/compute/orm/models/infraGetAllTreeNodesRecord.d.ts +30 -0
  304. package/esm/compute/orm/models/{infraGetAllRecord.js → infraGetAllTreeNodesRecord.js} +13 -13
  305. package/esm/compute/orm/models/infraObject.d.ts +2 -2
  306. package/esm/compute/orm/models/infraObject.js +2 -2
  307. package/esm/compute/orm/models/infraRef.d.ts +2 -2
  308. package/esm/compute/orm/models/infraRef.js +2 -2
  309. package/esm/compute/orm/models/platformDeclaredCapacity.d.ts +30 -0
  310. package/esm/compute/orm/models/platformDeclaredCapacity.js +55 -0
  311. package/esm/compute/orm/models/platformInfraCommit.d.ts +56 -0
  312. package/esm/compute/orm/models/platformInfraCommit.js +103 -0
  313. package/esm/compute/orm/models/platformInfraGetAllTreeNodesRecord.d.ts +30 -0
  314. package/esm/compute/orm/models/platformInfraGetAllTreeNodesRecord.js +55 -0
  315. package/esm/compute/orm/models/platformInfraObject.d.ts +56 -0
  316. package/esm/{infra/orm/models/infraObject.js → compute/orm/models/platformInfraObject.js} +23 -23
  317. package/esm/compute/orm/models/platformInfraRef.d.ts +56 -0
  318. package/esm/compute/orm/models/platformInfraRef.js +103 -0
  319. package/esm/compute/orm/models/platformInfraStore.d.ts +54 -0
  320. package/esm/compute/orm/models/platformInfraStore.js +100 -0
  321. package/esm/compute/orm/models/platformResourceInstallation.d.ts +54 -0
  322. package/esm/compute/orm/models/platformResourceInstallation.js +100 -0
  323. package/esm/compute/orm/models/platformResourceUsageLog.d.ts +56 -0
  324. package/esm/compute/orm/models/platformResourceUsageLog.js +103 -0
  325. package/esm/compute/orm/models/platformResourceUsageSummary.d.ts +56 -0
  326. package/esm/compute/orm/models/platformResourceUsageSummary.js +103 -0
  327. package/esm/compute/orm/models/platformResourceUtilizationDaily.d.ts +30 -0
  328. package/esm/compute/orm/models/platformResourceUtilizationDaily.js +55 -0
  329. package/esm/compute/orm/models/platformResourcesHealth.d.ts +36 -0
  330. package/esm/compute/orm/models/platformResourcesHealth.js +76 -0
  331. package/esm/compute/orm/models/platformWebhookEndpoint.d.ts +54 -0
  332. package/esm/compute/orm/models/platformWebhookEndpoint.js +100 -0
  333. package/esm/compute/orm/models/platformWebhookEvent.d.ts +54 -0
  334. package/esm/compute/orm/models/platformWebhookEvent.js +100 -0
  335. package/esm/compute/orm/models/resourceInstallation.d.ts +54 -0
  336. package/esm/compute/orm/models/resourceInstallation.js +100 -0
  337. package/esm/compute/orm/models/resourceUsageLog.d.ts +56 -0
  338. package/esm/compute/orm/models/resourceUsageLog.js +103 -0
  339. package/esm/compute/orm/models/resourceUsageSummary.d.ts +56 -0
  340. package/esm/compute/orm/models/resourceUsageSummary.js +103 -0
  341. package/esm/compute/orm/models/resourceUtilizationDaily.d.ts +30 -0
  342. package/esm/compute/orm/models/resourceUtilizationDaily.js +55 -0
  343. package/esm/compute/orm/models/resourcesHealth.d.ts +36 -0
  344. package/esm/{api/orm/models/migrateFile.js → compute/orm/models/resourcesHealth.js} +18 -18
  345. package/esm/compute/orm/models/webhookEndpoint.d.ts +54 -0
  346. package/esm/compute/orm/models/webhookEndpoint.js +100 -0
  347. package/esm/compute/orm/models/webhookEvent.d.ts +54 -0
  348. package/esm/{infra/orm/models/infraStore.js → compute/orm/models/webhookEvent.js} +25 -25
  349. package/esm/compute/orm/mutation/index.d.ts +89 -1
  350. package/esm/compute/orm/mutation/index.js +132 -0
  351. package/esm/config/cli/commands/platform-internal-secret.js +7 -14
  352. package/esm/config/cli/commands/platform-secret.js +8 -16
  353. package/esm/config/cli/commands/secret.js +9 -18
  354. package/esm/config/orm/input-types.d.ts +4 -79
  355. package/esm/infra/cli/commands/namespace-event.js +0 -154
  356. package/esm/infra/cli/commands/platform-infra-commit.d.ts +8 -0
  357. package/esm/infra/cli/commands/platform-infra-commit.js +387 -0
  358. package/esm/infra/cli/commands/platform-infra-get-all-tree-nodes-record.d.ts +8 -0
  359. package/esm/{objects/cli/commands/get-all-record.js → infra/cli/commands/platform-infra-get-all-tree-nodes-record.js} +7 -5
  360. package/esm/infra/cli/commands/platform-infra-init-empty-repo.d.ts +8 -0
  361. package/esm/infra/cli/commands/{infra-init-empty-repo.js → platform-infra-init-empty-repo.js} +3 -3
  362. package/esm/infra/cli/commands/platform-infra-insert-node-at-path.d.ts +8 -0
  363. package/esm/infra/cli/commands/platform-infra-insert-node-at-path.js +34 -0
  364. package/esm/infra/cli/commands/platform-infra-object.d.ts +8 -0
  365. package/esm/infra/cli/commands/platform-infra-object.js +307 -0
  366. package/esm/infra/cli/commands/platform-infra-ref.d.ts +8 -0
  367. package/esm/infra/cli/commands/platform-infra-ref.js +297 -0
  368. package/esm/infra/cli/commands/platform-infra-set-data-at-path.d.ts +8 -0
  369. package/esm/infra/cli/commands/platform-infra-set-data-at-path.js +34 -0
  370. package/esm/infra/cli/commands/platform-infra-store.d.ts +8 -0
  371. package/esm/infra/cli/commands/platform-infra-store.js +276 -0
  372. package/esm/infra/cli/commands/platform-namespace-event.js +0 -154
  373. package/esm/infra/cli/commands.js +17 -17
  374. package/esm/infra/cli/executor.d.ts +14 -14
  375. package/esm/infra/orm/index.d.ts +19 -19
  376. package/esm/infra/orm/index.js +10 -10
  377. package/esm/infra/orm/input-types.d.ts +542 -668
  378. package/esm/infra/orm/models/index.d.ts +5 -5
  379. package/esm/infra/orm/models/index.js +5 -5
  380. package/esm/infra/orm/models/platformInfraCommit.d.ts +56 -0
  381. package/esm/infra/orm/models/platformInfraCommit.js +103 -0
  382. package/esm/infra/orm/models/platformInfraGetAllTreeNodesRecord.d.ts +30 -0
  383. package/esm/infra/orm/models/platformInfraGetAllTreeNodesRecord.js +55 -0
  384. package/esm/infra/orm/models/platformInfraObject.d.ts +56 -0
  385. package/esm/infra/orm/models/platformInfraObject.js +93 -0
  386. package/esm/infra/orm/models/platformInfraRef.d.ts +56 -0
  387. package/esm/infra/orm/models/platformInfraRef.js +103 -0
  388. package/esm/infra/orm/models/platformInfraStore.d.ts +54 -0
  389. package/esm/infra/orm/models/platformInfraStore.js +100 -0
  390. package/esm/infra/orm/mutation/index.d.ts +16 -16
  391. package/esm/infra/orm/mutation/index.js +18 -18
  392. package/esm/modules/cli/commands/compute-log-module.js +24 -24
  393. package/esm/modules/cli/commands/db-usage-module.js +88 -88
  394. package/esm/modules/cli/commands/devices-module.js +32 -32
  395. package/esm/modules/cli/commands/function-module.js +44 -0
  396. package/esm/modules/cli/commands/http-route-module.d.ts +8 -0
  397. package/esm/modules/cli/commands/http-route-module.js +646 -0
  398. package/esm/modules/cli/commands/inference-log-module.js +24 -24
  399. package/esm/modules/cli/commands/rate-limits-module.js +46 -46
  400. package/esm/modules/cli/commands/resource-module.js +220 -0
  401. package/esm/modules/cli/commands/sessions-module.js +48 -48
  402. package/esm/modules/cli/commands/storage-log-module.js +24 -24
  403. package/esm/modules/cli/commands/transfer-log-module.js +24 -24
  404. package/esm/modules/cli/commands/webhook-module.d.ts +8 -0
  405. package/esm/modules/cli/commands/webhook-module.js +690 -0
  406. package/esm/modules/cli/commands.js +5 -1
  407. package/esm/modules/cli/executor.d.ts +2 -0
  408. package/esm/modules/orm/index.d.ts +4 -0
  409. package/esm/modules/orm/index.js +4 -0
  410. package/esm/modules/orm/input-types.d.ts +802 -166
  411. package/esm/modules/orm/models/httpRouteModule.d.ts +54 -0
  412. package/esm/modules/orm/models/httpRouteModule.js +100 -0
  413. package/esm/modules/orm/models/index.d.ts +2 -0
  414. package/esm/modules/orm/models/index.js +2 -0
  415. package/esm/modules/orm/models/webhookModule.d.ts +54 -0
  416. package/esm/modules/orm/models/webhookModule.js +100 -0
  417. package/esm/objects/cli/commands/get-all-tree-nodes-record.d.ts +8 -0
  418. package/esm/{compute/cli/commands/get-all-record.js → objects/cli/commands/get-all-tree-nodes-record.js} +5 -5
  419. package/esm/objects/cli/commands.js +3 -3
  420. package/esm/objects/cli/executor.d.ts +1 -1
  421. package/esm/objects/orm/index.d.ts +2 -2
  422. package/esm/objects/orm/index.js +2 -2
  423. package/esm/objects/orm/input-types.d.ts +15 -15
  424. package/esm/objects/orm/models/getAllTreeNodesRecord.d.ts +30 -0
  425. package/esm/{compute/orm/models/getAllRecord.js → objects/orm/models/getAllTreeNodesRecord.js} +13 -13
  426. package/esm/objects/orm/models/index.d.ts +1 -1
  427. package/esm/objects/orm/models/index.js +1 -1
  428. package/infra/cli/commands/namespace-event.js +0 -154
  429. package/infra/cli/commands/platform-infra-commit.d.ts +8 -0
  430. package/infra/cli/commands/platform-infra-commit.js +389 -0
  431. package/infra/cli/commands/platform-infra-get-all-tree-nodes-record.d.ts +8 -0
  432. package/infra/cli/commands/{infra-get-all-record.js → platform-infra-get-all-tree-nodes-record.js} +7 -5
  433. package/infra/cli/commands/platform-infra-init-empty-repo.d.ts +8 -0
  434. package/infra/cli/commands/{infra-insert-node-at-path.js → platform-infra-init-empty-repo.js} +3 -3
  435. package/infra/cli/commands/platform-infra-insert-node-at-path.d.ts +8 -0
  436. package/infra/cli/commands/platform-infra-insert-node-at-path.js +36 -0
  437. package/infra/cli/commands/platform-infra-object.d.ts +8 -0
  438. package/infra/cli/commands/platform-infra-object.js +309 -0
  439. package/infra/cli/commands/platform-infra-ref.d.ts +8 -0
  440. package/infra/cli/commands/platform-infra-ref.js +299 -0
  441. package/infra/cli/commands/platform-infra-set-data-at-path.d.ts +8 -0
  442. package/infra/cli/commands/platform-infra-set-data-at-path.js +36 -0
  443. package/infra/cli/commands/platform-infra-store.d.ts +8 -0
  444. package/infra/cli/commands/platform-infra-store.js +278 -0
  445. package/infra/cli/commands/platform-namespace-event.js +0 -154
  446. package/infra/cli/commands.js +17 -17
  447. package/infra/cli/executor.d.ts +14 -14
  448. package/infra/orm/index.d.ts +19 -19
  449. package/infra/orm/index.js +10 -10
  450. package/infra/orm/input-types.d.ts +542 -668
  451. package/infra/orm/models/index.d.ts +5 -5
  452. package/infra/orm/models/index.js +11 -11
  453. package/infra/orm/models/platformInfraCommit.d.ts +56 -0
  454. package/infra/orm/models/platformInfraCommit.js +107 -0
  455. package/infra/orm/models/platformInfraGetAllTreeNodesRecord.d.ts +30 -0
  456. package/infra/orm/models/platformInfraGetAllTreeNodesRecord.js +59 -0
  457. package/infra/orm/models/platformInfraObject.d.ts +56 -0
  458. package/infra/orm/models/platformInfraObject.js +97 -0
  459. package/infra/orm/models/platformInfraRef.d.ts +56 -0
  460. package/infra/orm/models/platformInfraRef.js +107 -0
  461. package/infra/orm/models/platformInfraStore.d.ts +54 -0
  462. package/infra/orm/models/platformInfraStore.js +104 -0
  463. package/infra/orm/mutation/index.d.ts +16 -16
  464. package/infra/orm/mutation/index.js +18 -18
  465. package/modules/cli/commands/compute-log-module.js +24 -24
  466. package/modules/cli/commands/db-usage-module.js +88 -88
  467. package/modules/cli/commands/devices-module.js +32 -32
  468. package/modules/cli/commands/function-module.js +44 -0
  469. package/modules/cli/commands/http-route-module.d.ts +8 -0
  470. package/modules/cli/commands/http-route-module.js +648 -0
  471. package/modules/cli/commands/inference-log-module.js +24 -24
  472. package/modules/cli/commands/rate-limits-module.js +46 -46
  473. package/modules/cli/commands/resource-module.js +220 -0
  474. package/modules/cli/commands/sessions-module.js +48 -48
  475. package/modules/cli/commands/storage-log-module.js +24 -24
  476. package/modules/cli/commands/transfer-log-module.js +24 -24
  477. package/modules/cli/commands/webhook-module.d.ts +8 -0
  478. package/modules/cli/commands/webhook-module.js +692 -0
  479. package/modules/cli/commands.js +5 -1
  480. package/modules/cli/executor.d.ts +2 -0
  481. package/modules/orm/index.d.ts +4 -0
  482. package/modules/orm/index.js +4 -0
  483. package/modules/orm/input-types.d.ts +802 -166
  484. package/modules/orm/models/httpRouteModule.d.ts +54 -0
  485. package/modules/orm/models/httpRouteModule.js +104 -0
  486. package/modules/orm/models/index.d.ts +2 -0
  487. package/modules/orm/models/index.js +6 -2
  488. package/modules/orm/models/webhookModule.d.ts +54 -0
  489. package/modules/orm/models/webhookModule.js +104 -0
  490. package/objects/cli/commands/get-all-tree-nodes-record.d.ts +8 -0
  491. package/objects/cli/commands/{get-all-record.js → get-all-tree-nodes-record.js} +5 -5
  492. package/objects/cli/commands.js +3 -3
  493. package/objects/cli/executor.d.ts +1 -1
  494. package/objects/orm/index.d.ts +2 -2
  495. package/objects/orm/index.js +2 -2
  496. package/objects/orm/input-types.d.ts +15 -15
  497. package/objects/orm/models/getAllTreeNodesRecord.d.ts +30 -0
  498. package/{infra/orm/models/infraGetAllRecord.js → objects/orm/models/getAllTreeNodesRecord.js} +15 -15
  499. package/objects/orm/models/index.d.ts +1 -1
  500. package/objects/orm/models/index.js +3 -3
  501. package/package.json +2 -2
  502. package/api/orm/models/migrateFile.d.ts +0 -36
  503. package/compute/orm/models/getAllRecord.d.ts +0 -30
  504. package/compute/orm/models/infraGetAllRecord.d.ts +0 -30
  505. package/esm/api/orm/models/migrateFile.d.ts +0 -36
  506. package/esm/compute/cli/commands/infra-get-all-record.d.ts +0 -8
  507. package/esm/compute/orm/models/getAllRecord.d.ts +0 -30
  508. package/esm/compute/orm/models/infraGetAllRecord.d.ts +0 -30
  509. package/esm/infra/cli/commands/infra-commit.d.ts +0 -8
  510. package/esm/infra/cli/commands/infra-get-all-record.d.ts +0 -8
  511. package/esm/infra/cli/commands/infra-init-empty-repo.d.ts +0 -8
  512. package/esm/infra/cli/commands/infra-insert-node-at-path.d.ts +0 -8
  513. package/esm/infra/cli/commands/infra-object.d.ts +0 -8
  514. package/esm/infra/cli/commands/infra-set-data-at-path.d.ts +0 -8
  515. package/esm/infra/cli/commands/infra-store.d.ts +0 -8
  516. package/esm/infra/orm/models/infraCommit.d.ts +0 -56
  517. package/esm/infra/orm/models/infraGetAllRecord.d.ts +0 -30
  518. package/esm/infra/orm/models/infraObject.d.ts +0 -56
  519. package/esm/infra/orm/models/infraRef.d.ts +0 -56
  520. package/esm/infra/orm/models/infraStore.d.ts +0 -54
  521. package/esm/objects/cli/commands/get-all-record.d.ts +0 -8
  522. package/esm/objects/orm/models/getAllRecord.d.ts +0 -30
  523. package/infra/cli/commands/infra-commit.d.ts +0 -8
  524. package/infra/cli/commands/infra-get-all-record.d.ts +0 -8
  525. package/infra/cli/commands/infra-init-empty-repo.d.ts +0 -8
  526. package/infra/cli/commands/infra-insert-node-at-path.d.ts +0 -8
  527. package/infra/cli/commands/infra-object.d.ts +0 -8
  528. package/infra/cli/commands/infra-set-data-at-path.d.ts +0 -8
  529. package/infra/cli/commands/infra-store.d.ts +0 -8
  530. package/infra/orm/models/infraCommit.d.ts +0 -56
  531. package/infra/orm/models/infraGetAllRecord.d.ts +0 -30
  532. package/infra/orm/models/infraObject.d.ts +0 -56
  533. package/infra/orm/models/infraRef.d.ts +0 -56
  534. package/infra/orm/models/infraStore.d.ts +0 -54
  535. package/objects/cli/commands/get-all-record.d.ts +0 -8
  536. package/objects/orm/models/getAllRecord.d.ts +0 -30
@@ -234,7 +234,6 @@ export type ObjectCategory = 'APP' | 'AUTH' | 'CORE' | 'MEMBERSHIPS' | 'MODULE'
234
234
  export type ConstructiveInternalTypeAttachment = unknown;
235
235
  export type ConstructiveInternalTypeHostname = unknown;
236
236
  export type ConstructiveInternalTypeImage = unknown;
237
- export type ConstructiveInternalTypeUpload = unknown;
238
237
  export type ConstructiveInternalTypeUrl = unknown;
239
238
  /** API endpoint configurations: each record defines a PostGraphile/PostgREST API with its database role and public access settings */
240
239
  export interface Api {
@@ -338,8 +337,8 @@ export interface App {
338
337
  siteId?: string | null;
339
338
  }
340
339
  export interface AstMigration {
341
- action?: string | null;
342
340
  actionId?: string | null;
341
+ actionName?: string | null;
343
342
  actorId?: string | null;
344
343
  createdAt?: string | null;
345
344
  databaseId?: string | null;
@@ -579,6 +578,30 @@ export interface Function {
579
578
  name?: string | null;
580
579
  schemaId?: string | null;
581
580
  }
581
+ /** Request-time HTTP routing authority: registered domain plus path prefix and optional method to a typed target */
582
+ export interface HttpRoute {
583
+ createdAt?: string | null;
584
+ createdBy?: string | null;
585
+ /** Database that owns this resource (database-scoped isolation) */
586
+ databaseId?: string | null;
587
+ /** Registered host in services_public.domains */
588
+ domainId?: string | null;
589
+ id: string;
590
+ /** Whether the resolver may select this route */
591
+ isActive?: boolean | null;
592
+ /** Optional uppercase HTTP method; NULL matches every method */
593
+ method?: string | null;
594
+ /** Normalized request path prefix; longest matching prefix wins */
595
+ path?: string | null;
596
+ /** Tie-break precedence after path length and method specificity */
597
+ priority?: number | null;
598
+ /** Target row of the type named by target_kind; existence enforced by trigger */
599
+ targetId?: string | null;
600
+ /** Discriminator selecting the type of target_id */
601
+ targetKind?: string | null;
602
+ updatedAt?: string | null;
603
+ updatedBy?: string | null;
604
+ }
582
605
  export interface Index {
583
606
  accessMethod?: string | null;
584
607
  category?: ObjectCategory | null;
@@ -598,10 +621,26 @@ export interface Index {
598
621
  updatedAt?: string | null;
599
622
  whereClause?: Record<string, unknown> | null;
600
623
  }
601
- export interface MigrateFile {
624
+ /** One row per cert-bearing host or wildcard; tracks domain verification and TLS provisioning independently of services_public.domains. Reconcilers match a route's root domain to a row here by string (no FK/coupling in v1) */
625
+ export interface ManagedDomain {
626
+ /** Freeform cert-manager detail (secret name, challenge, last error) and tooling metadata */
627
+ annotations?: Record<string, unknown> | null;
628
+ /** Database that owns this cert-bearing host; platform wildcards are owned by the platform database */
602
629
  databaseId?: string | null;
603
- id: string;
604
- upload?: ConstructiveInternalTypeUpload | null;
630
+ /** Root hostname this row governs certs/verification for (e.g. launchql.dev, shop.acme.com) */
631
+ domain?: ConstructiveInternalTypeHostname | null;
632
+ /** Unique identifier for this managed domain record */
633
+ id: string;
634
+ /** Whether the cert covers the wildcard *.domain (one wildcard cert covers every subdomain row sharing this root) */
635
+ isWildcard?: boolean | null;
636
+ /** When tls_status last became active */
637
+ tlsReadyAt?: string | null;
638
+ /** TLS/SSL provisioning state: none | provisioning | active | failed */
639
+ tlsStatus?: string | null;
640
+ /** Domain ownership verification state: pending | verified | failed */
641
+ verificationStatus?: string | null;
642
+ /** When verification_status last became verified */
643
+ verifiedAt?: string | null;
605
644
  }
606
645
  export interface NodeTypeRegistry {
607
646
  category?: string | null;
@@ -806,8 +845,8 @@ export interface SpatialRelation {
806
845
  updatedAt?: string | null;
807
846
  }
808
847
  export interface SqlAction {
809
- action?: string | null;
810
848
  actionId?: string | null;
849
+ actionName?: string | null;
811
850
  actorId?: string | null;
812
851
  content?: string | null;
813
852
  createdAt?: string | null;
@@ -1047,6 +1086,7 @@ export interface DatabaseRelations {
1047
1086
  fullTextSearches?: ConnectionResult<FullTextSearch>;
1048
1087
  functions?: ConnectionResult<Function>;
1049
1088
  indices?: ConnectionResult<Index>;
1089
+ managedDomains?: ConnectionResult<ManagedDomain>;
1050
1090
  partitions?: ConnectionResult<Partition>;
1051
1091
  policies?: ConnectionResult<Policy>;
1052
1092
  primaryKeyConstraints?: ConnectionResult<PrimaryKeyConstraint>;
@@ -1081,6 +1121,7 @@ export interface DomainRelations {
1081
1121
  api?: Api | null;
1082
1122
  database?: Database | null;
1083
1123
  site?: Site | null;
1124
+ httpRoutes?: ConnectionResult<HttpRoute>;
1084
1125
  }
1085
1126
  export interface EmbeddingChunkRelations {
1086
1127
  chunksTable?: Table | null;
@@ -1112,11 +1153,15 @@ export interface FunctionRelations {
1112
1153
  database?: Database | null;
1113
1154
  schema?: Schema | null;
1114
1155
  }
1156
+ export interface HttpRouteRelations {
1157
+ domain?: Domain | null;
1158
+ }
1115
1159
  export interface IndexRelations {
1116
1160
  database?: Database | null;
1117
1161
  table?: Table | null;
1118
1162
  }
1119
- export interface MigrateFileRelations {
1163
+ export interface ManagedDomainRelations {
1164
+ database?: Database | null;
1120
1165
  }
1121
1166
  export interface NodeTypeRegistryRelations {
1122
1167
  }
@@ -1286,8 +1331,9 @@ export type FieldWithRelations = Field & FieldRelations;
1286
1331
  export type ForeignKeyConstraintWithRelations = ForeignKeyConstraint & ForeignKeyConstraintRelations;
1287
1332
  export type FullTextSearchWithRelations = FullTextSearch & FullTextSearchRelations;
1288
1333
  export type FunctionWithRelations = Function & FunctionRelations;
1334
+ export type HttpRouteWithRelations = HttpRoute & HttpRouteRelations;
1289
1335
  export type IndexWithRelations = Index & IndexRelations;
1290
- export type MigrateFileWithRelations = MigrateFile & MigrateFileRelations;
1336
+ export type ManagedDomainWithRelations = ManagedDomain & ManagedDomainRelations;
1291
1337
  export type NodeTypeRegistryWithRelations = NodeTypeRegistry & NodeTypeRegistryRelations;
1292
1338
  export type PartitionWithRelations = Partition & PartitionRelations;
1293
1339
  export type PolicyWithRelations = Policy & PolicyRelations;
@@ -1423,8 +1469,8 @@ export type AppSelect = {
1423
1469
  };
1424
1470
  };
1425
1471
  export type AstMigrationSelect = {
1426
- action?: boolean;
1427
1472
  actionId?: boolean;
1473
+ actionName?: boolean;
1428
1474
  actorId?: boolean;
1429
1475
  createdAt?: boolean;
1430
1476
  databaseId?: boolean;
@@ -1617,6 +1663,12 @@ export type DatabaseSelect = {
1617
1663
  filter?: IndexFilter;
1618
1664
  orderBy?: IndexOrderBy[];
1619
1665
  };
1666
+ managedDomains?: {
1667
+ select: ManagedDomainSelect;
1668
+ first?: number;
1669
+ filter?: ManagedDomainFilter;
1670
+ orderBy?: ManagedDomainOrderBy[];
1671
+ };
1620
1672
  partitions?: {
1621
1673
  select: PartitionSelect;
1622
1674
  first?: number;
@@ -1807,6 +1859,12 @@ export type DomainSelect = {
1807
1859
  site?: {
1808
1860
  select: SiteSelect;
1809
1861
  };
1862
+ httpRoutes?: {
1863
+ select: HttpRouteSelect;
1864
+ first?: number;
1865
+ filter?: HttpRouteFilter;
1866
+ orderBy?: HttpRouteOrderBy[];
1867
+ };
1810
1868
  };
1811
1869
  export type EmbeddingChunkSelect = {
1812
1870
  chunkOverlap?: boolean;
@@ -1964,6 +2022,24 @@ export type FunctionSelect = {
1964
2022
  select: SchemaSelect;
1965
2023
  };
1966
2024
  };
2025
+ export type HttpRouteSelect = {
2026
+ createdAt?: boolean;
2027
+ createdBy?: boolean;
2028
+ databaseId?: boolean;
2029
+ domainId?: boolean;
2030
+ id?: boolean;
2031
+ isActive?: boolean;
2032
+ method?: boolean;
2033
+ path?: boolean;
2034
+ priority?: boolean;
2035
+ targetId?: boolean;
2036
+ targetKind?: boolean;
2037
+ updatedAt?: boolean;
2038
+ updatedBy?: boolean;
2039
+ domain?: {
2040
+ select: DomainSelect;
2041
+ };
2042
+ };
1967
2043
  export type IndexSelect = {
1968
2044
  accessMethod?: boolean;
1969
2045
  category?: boolean;
@@ -1989,10 +2065,19 @@ export type IndexSelect = {
1989
2065
  select: TableSelect;
1990
2066
  };
1991
2067
  };
1992
- export type MigrateFileSelect = {
2068
+ export type ManagedDomainSelect = {
2069
+ annotations?: boolean;
1993
2070
  databaseId?: boolean;
2071
+ domain?: boolean;
1994
2072
  id?: boolean;
1995
- upload?: boolean;
2073
+ isWildcard?: boolean;
2074
+ tlsReadyAt?: boolean;
2075
+ tlsStatus?: boolean;
2076
+ verificationStatus?: boolean;
2077
+ verifiedAt?: boolean;
2078
+ database?: {
2079
+ select: DatabaseSelect;
2080
+ };
1996
2081
  };
1997
2082
  export type NodeTypeRegistrySelect = {
1998
2083
  category?: boolean;
@@ -2331,8 +2416,8 @@ export type SpatialRelationSelect = {
2331
2416
  };
2332
2417
  };
2333
2418
  export type SqlActionSelect = {
2334
- action?: boolean;
2335
2419
  actionId?: boolean;
2420
+ actionName?: boolean;
2336
2421
  actorId?: boolean;
2337
2422
  content?: boolean;
2338
2423
  createdAt?: boolean;
@@ -2847,10 +2932,10 @@ export interface AppFilter {
2847
2932
  siteId?: UUIDFilter;
2848
2933
  }
2849
2934
  export interface AstMigrationFilter {
2850
- /** Filter by the object’s `action` field. */
2851
- action?: StringFilter;
2852
2935
  /** Filter by the object’s `actionId` field. */
2853
2936
  actionId?: UUIDFilter;
2937
+ /** Filter by the object’s `actionName` field. */
2938
+ actionName?: StringFilter;
2854
2939
  /** Filter by the object’s `actorId` field. */
2855
2940
  actorId?: UUIDFilter;
2856
2941
  /** Checks for all expressions in this list. */
@@ -3057,6 +3142,10 @@ export interface DatabaseFilter {
3057
3142
  indicesExist?: boolean;
3058
3143
  /** Filter by the object’s `label` field. */
3059
3144
  label?: StringFilter;
3145
+ /** Filter by the object’s `managedDomains` relation. */
3146
+ managedDomains?: DatabaseToManyManagedDomainFilter;
3147
+ /** `managedDomains` exist. */
3148
+ managedDomainsExist?: boolean;
3060
3149
  /** Filter by the object’s `name` field. */
3061
3150
  name?: StringFilter;
3062
3151
  /** Negates the expression. */
@@ -3285,6 +3374,10 @@ export interface DomainFilter {
3285
3374
  databaseId?: UUIDFilter;
3286
3375
  /** Filter by the object’s `domain` field. */
3287
3376
  domain?: ConstructiveInternalTypeHostnameFilter;
3377
+ /** Filter by the object’s `httpRoutes` relation. */
3378
+ httpRoutes?: DomainToManyHttpRouteFilter;
3379
+ /** `httpRoutes` exist. */
3380
+ httpRoutesExist?: boolean;
3288
3381
  /** Filter by the object’s `id` field. */
3289
3382
  id?: UUIDFilter;
3290
3383
  /** Filter by the object’s `labels` field. */
@@ -3566,6 +3659,42 @@ export interface FunctionFilter {
3566
3659
  /** Filter by the object’s `schemaId` field. */
3567
3660
  schemaId?: UUIDFilter;
3568
3661
  }
3662
+ export interface HttpRouteFilter {
3663
+ /** Checks for all expressions in this list. */
3664
+ and?: HttpRouteFilter[];
3665
+ /** Filter by the object’s `createdAt` field. */
3666
+ createdAt?: DatetimeFilter;
3667
+ /** Filter by the object’s `createdBy` field. */
3668
+ createdBy?: UUIDFilter;
3669
+ /** Filter by the object’s `databaseId` field. */
3670
+ databaseId?: UUIDFilter;
3671
+ /** Filter by the object’s `domain` relation. */
3672
+ domain?: DomainFilter;
3673
+ /** Filter by the object’s `domainId` field. */
3674
+ domainId?: UUIDFilter;
3675
+ /** Filter by the object’s `id` field. */
3676
+ id?: UUIDFilter;
3677
+ /** Filter by the object’s `isActive` field. */
3678
+ isActive?: BooleanFilter;
3679
+ /** Filter by the object’s `method` field. */
3680
+ method?: StringFilter;
3681
+ /** Negates the expression. */
3682
+ not?: HttpRouteFilter;
3683
+ /** Checks for any expressions in this list. */
3684
+ or?: HttpRouteFilter[];
3685
+ /** Filter by the object’s `path` field. */
3686
+ path?: StringFilter;
3687
+ /** Filter by the object’s `priority` field. */
3688
+ priority?: IntFilter;
3689
+ /** Filter by the object’s `targetId` field. */
3690
+ targetId?: UUIDFilter;
3691
+ /** Filter by the object’s `targetKind` field. */
3692
+ targetKind?: StringFilter;
3693
+ /** Filter by the object’s `updatedAt` field. */
3694
+ updatedAt?: DatetimeFilter;
3695
+ /** Filter by the object’s `updatedBy` field. */
3696
+ updatedBy?: UUIDFilter;
3697
+ }
3569
3698
  export interface IndexFilter {
3570
3699
  /** Filter by the object’s `accessMethod` field. */
3571
3700
  accessMethod?: StringFilter;
@@ -3612,19 +3741,33 @@ export interface IndexFilter {
3612
3741
  /** Filter by the object’s `whereClause` field. */
3613
3742
  whereClause?: JSONFilter;
3614
3743
  }
3615
- export interface MigrateFileFilter {
3744
+ export interface ManagedDomainFilter {
3616
3745
  /** Checks for all expressions in this list. */
3617
- and?: MigrateFileFilter[];
3746
+ and?: ManagedDomainFilter[];
3747
+ /** Filter by the object’s `annotations` field. */
3748
+ annotations?: JSONFilter;
3749
+ /** Filter by the object’s `database` relation. */
3750
+ database?: DatabaseFilter;
3618
3751
  /** Filter by the object’s `databaseId` field. */
3619
3752
  databaseId?: UUIDFilter;
3753
+ /** Filter by the object’s `domain` field. */
3754
+ domain?: ConstructiveInternalTypeHostnameFilter;
3620
3755
  /** Filter by the object’s `id` field. */
3621
3756
  id?: UUIDFilter;
3757
+ /** Filter by the object’s `isWildcard` field. */
3758
+ isWildcard?: BooleanFilter;
3622
3759
  /** Negates the expression. */
3623
- not?: MigrateFileFilter;
3760
+ not?: ManagedDomainFilter;
3624
3761
  /** Checks for any expressions in this list. */
3625
- or?: MigrateFileFilter[];
3626
- /** Filter by the object’s `upload` field. */
3627
- upload?: ConstructiveInternalTypeUploadFilter;
3762
+ or?: ManagedDomainFilter[];
3763
+ /** Filter by the object’s `tlsReadyAt` field. */
3764
+ tlsReadyAt?: DatetimeFilter;
3765
+ /** Filter by the object’s `tlsStatus` field. */
3766
+ tlsStatus?: StringFilter;
3767
+ /** Filter by the object’s `verificationStatus` field. */
3768
+ verificationStatus?: StringFilter;
3769
+ /** Filter by the object’s `verifiedAt` field. */
3770
+ verifiedAt?: DatetimeFilter;
3628
3771
  }
3629
3772
  export interface NodeTypeRegistryFilter {
3630
3773
  /** Checks for all expressions in this list. */
@@ -4129,10 +4272,10 @@ export interface SpatialRelationFilter {
4129
4272
  updatedAt?: DatetimeFilter;
4130
4273
  }
4131
4274
  export interface SqlActionFilter {
4132
- /** Filter by the object’s `action` field. */
4133
- action?: StringFilter;
4134
4275
  /** Filter by the object’s `actionId` field. */
4135
4276
  actionId?: UUIDFilter;
4277
+ /** Filter by the object’s `actionName` field. */
4278
+ actionName?: StringFilter;
4136
4279
  /** Filter by the object’s `actorId` field. */
4137
4280
  actorId?: UUIDFilter;
4138
4281
  /** Checks for all expressions in this list. */
@@ -4627,7 +4770,7 @@ export type ApiModuleOrderBy = 'API_ID_ASC' | 'API_ID_DESC' | 'DATABASE_ID_ASC'
4627
4770
  export type ApiSchemaOrderBy = 'API_ID_ASC' | 'API_ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC';
4628
4771
  export type ApiSettingOrderBy = 'API_ID_ASC' | 'API_ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ENABLE_AGGREGATES_ASC' | 'ENABLE_AGGREGATES_DESC' | 'ENABLE_BULK_ASC' | 'ENABLE_BULK_DESC' | 'ENABLE_CONNECTION_FILTER_ASC' | 'ENABLE_CONNECTION_FILTER_DESC' | 'ENABLE_DIRECT_UPLOADS_ASC' | 'ENABLE_DIRECT_UPLOADS_DESC' | 'ENABLE_I18N_ASC' | 'ENABLE_I18N_DESC' | 'ENABLE_LLM_ASC' | 'ENABLE_LLM_DESC' | 'ENABLE_LTREE_ASC' | 'ENABLE_LTREE_DESC' | 'ENABLE_MANY_TO_MANY_ASC' | 'ENABLE_MANY_TO_MANY_DESC' | 'ENABLE_POSTGIS_ASC' | 'ENABLE_POSTGIS_DESC' | 'ENABLE_PRESIGNED_UPLOADS_ASC' | 'ENABLE_PRESIGNED_UPLOADS_DESC' | 'ENABLE_REALTIME_ASC' | 'ENABLE_REALTIME_DESC' | 'ENABLE_SEARCH_ASC' | 'ENABLE_SEARCH_DESC' | 'ID_ASC' | 'ID_DESC' | 'NATURAL' | 'OPTIONS_ASC' | 'OPTIONS_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC';
4629
4772
  export type AppOrderBy = 'APP_ID_PREFIX_ASC' | 'APP_ID_PREFIX_DESC' | 'APP_IMAGE_ASC' | 'APP_IMAGE_DESC' | 'APP_STORE_ID_ASC' | 'APP_STORE_ID_DESC' | 'APP_STORE_LINK_ASC' | 'APP_STORE_LINK_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'PLAY_STORE_LINK_ASC' | 'PLAY_STORE_LINK_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'SITE_ID_ASC' | 'SITE_ID_DESC';
4630
- export type AstMigrationOrderBy = 'ACTION_ASC' | 'ACTION_DESC' | 'ACTION_ID_ASC' | 'ACTION_ID_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DEPLOYS_ASC' | 'DEPLOYS_DESC' | 'DEPLOY_ASC' | 'DEPLOY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'PAYLOAD_ASC' | 'PAYLOAD_DESC' | 'REQUIRES_ASC' | 'REQUIRES_DESC' | 'REVERT_ASC' | 'REVERT_DESC' | 'VERIFY_ASC' | 'VERIFY_DESC';
4773
+ export type AstMigrationOrderBy = 'ACTION_ID_ASC' | 'ACTION_ID_DESC' | 'ACTION_NAME_ASC' | 'ACTION_NAME_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DEPLOYS_ASC' | 'DEPLOYS_DESC' | 'DEPLOY_ASC' | 'DEPLOY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'PAYLOAD_ASC' | 'PAYLOAD_DESC' | 'REQUIRES_ASC' | 'REQUIRES_DESC' | 'REVERT_ASC' | 'REVERT_DESC' | 'VERIFY_ASC' | 'VERIFY_DESC';
4631
4774
  export type CheckConstraintOrderBy = 'CATEGORY_ASC' | 'CATEGORY_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'EXPR_ASC' | 'EXPR_DESC' | 'FIELD_IDS_ASC' | 'FIELD_IDS_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'SMART_TAGS_ASC' | 'SMART_TAGS_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'TAGS_ASC' | 'TAGS_DESC' | 'TYPE_ASC' | 'TYPE_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
4632
4775
  export type CompositeTypeOrderBy = 'ATTRIBUTES_ASC' | 'ATTRIBUTES_DESC' | 'CATEGORY_ASC' | 'CATEGORY_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'ID_ASC' | 'ID_DESC' | 'LABEL_ASC' | 'LABEL_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'SMART_TAGS_ASC' | 'SMART_TAGS_DESC' | 'TAGS_ASC' | 'TAGS_DESC';
4633
4776
  export type CorsSettingOrderBy = 'ALLOWED_ORIGINS_ASC' | 'ALLOWED_ORIGINS_DESC' | 'API_ID_ASC' | 'API_ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC';
@@ -4642,8 +4785,9 @@ export type FieldOrderBy = 'API_REQUIRED_ASC' | 'API_REQUIRED_DESC' | 'CATEGORY_
4642
4785
  export type ForeignKeyConstraintOrderBy = 'CATEGORY_ASC' | 'CATEGORY_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DELETE_ACTION_ASC' | 'DELETE_ACTION_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'FIELD_IDS_ASC' | 'FIELD_IDS_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'REF_FIELD_IDS_ASC' | 'REF_FIELD_IDS_DESC' | 'REF_TABLE_ID_ASC' | 'REF_TABLE_ID_DESC' | 'SMART_TAGS_ASC' | 'SMART_TAGS_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'TAGS_ASC' | 'TAGS_DESC' | 'TYPE_ASC' | 'TYPE_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'UPDATE_ACTION_ASC' | 'UPDATE_ACTION_DESC';
4643
4786
  export type FullTextSearchOrderBy = 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'FIELD_IDS_ASC' | 'FIELD_IDS_DESC' | 'FIELD_ID_ASC' | 'FIELD_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'LANGS_ASC' | 'LANGS_DESC' | 'LANG_COLUMN_ASC' | 'LANG_COLUMN_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'WEIGHTS_ASC' | 'WEIGHTS_DESC';
4644
4787
  export type FunctionOrderBy = 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC';
4788
+ export type HttpRouteOrderBy = 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'CREATED_BY_ASC' | 'CREATED_BY_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DOMAIN_ID_ASC' | 'DOMAIN_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'IS_ACTIVE_ASC' | 'IS_ACTIVE_DESC' | 'METHOD_ASC' | 'METHOD_DESC' | 'NATURAL' | 'PATH_ASC' | 'PATH_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIORITY_ASC' | 'PRIORITY_DESC' | 'TARGET_ID_ASC' | 'TARGET_ID_DESC' | 'TARGET_KIND_ASC' | 'TARGET_KIND_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'UPDATED_BY_ASC' | 'UPDATED_BY_DESC';
4645
4789
  export type IndexOrderBy = 'ACCESS_METHOD_ASC' | 'ACCESS_METHOD_DESC' | 'CATEGORY_ASC' | 'CATEGORY_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'FIELD_IDS_ASC' | 'FIELD_IDS_DESC' | 'ID_ASC' | 'ID_DESC' | 'INCLUDE_FIELD_IDS_ASC' | 'INCLUDE_FIELD_IDS_DESC' | 'INDEX_PARAMS_ASC' | 'INDEX_PARAMS_DESC' | 'IS_UNIQUE_ASC' | 'IS_UNIQUE_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'OPTIONS_ASC' | 'OPTIONS_DESC' | 'OP_CLASSES_ASC' | 'OP_CLASSES_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'SMART_TAGS_ASC' | 'SMART_TAGS_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'TAGS_ASC' | 'TAGS_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'WHERE_CLAUSE_ASC' | 'WHERE_CLAUSE_DESC';
4646
- export type MigrateFileOrderBy = 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'NATURAL' | 'UPLOAD_ASC' | 'UPLOAD_DESC';
4790
+ export type ManagedDomainOrderBy = 'ANNOTATIONS_ASC' | 'ANNOTATIONS_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DOMAIN_ASC' | 'DOMAIN_DESC' | 'ID_ASC' | 'ID_DESC' | 'IS_WILDCARD_ASC' | 'IS_WILDCARD_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'TLS_READY_AT_ASC' | 'TLS_READY_AT_DESC' | 'TLS_STATUS_ASC' | 'TLS_STATUS_DESC' | 'VERIFICATION_STATUS_ASC' | 'VERIFICATION_STATUS_DESC' | 'VERIFIED_AT_ASC' | 'VERIFIED_AT_DESC';
4647
4791
  export type NodeTypeRegistryOrderBy = 'CATEGORY_ASC' | 'CATEGORY_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'DISPLAY_NAME_ASC' | 'DISPLAY_NAME_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'PARAMETER_SCHEMA_ASC' | 'PARAMETER_SCHEMA_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'SLUG_ASC' | 'SLUG_DESC' | 'TAGS_ASC' | 'TAGS_DESC';
4648
4792
  export type PartitionOrderBy = 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'INTERVAL_ASC' | 'INTERVAL_DESC' | 'IS_PARENTED_ASC' | 'IS_PARENTED_DESC' | 'NAMING_PATTERN_ASC' | 'NAMING_PATTERN_DESC' | 'NATURAL' | 'PARTITION_KEY_ID_ASC' | 'PARTITION_KEY_ID_DESC' | 'PREMAKE_ASC' | 'PREMAKE_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'RETENTION_ASC' | 'RETENTION_DESC' | 'RETENTION_KEEP_TABLE_ASC' | 'RETENTION_KEEP_TABLE_DESC' | 'STRATEGY_ASC' | 'STRATEGY_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
4649
4793
  export type PolicyOrderBy = 'CATEGORY_ASC' | 'CATEGORY_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DATA_ASC' | 'DATA_DESC' | 'DISABLED_ASC' | 'DISABLED_DESC' | 'GRANTEE_NAME_ASC' | 'GRANTEE_NAME_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'PERMISSIVE_ASC' | 'PERMISSIVE_DESC' | 'POLICY_TYPE_ASC' | 'POLICY_TYPE_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVILEGE_ASC' | 'PRIVILEGE_DESC' | 'SMART_TAGS_ASC' | 'SMART_TAGS_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'TAGS_ASC' | 'TAGS_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'WITH_CHECK_ASC' | 'WITH_CHECK_DESC';
@@ -4657,7 +4801,7 @@ export type SiteMetadatumOrderBy = 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DES
4657
4801
  export type SiteModuleOrderBy = 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DATA_ASC' | 'DATA_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'SITE_ID_ASC' | 'SITE_ID_DESC';
4658
4802
  export type SiteThemeOrderBy = 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'SITE_ID_ASC' | 'SITE_ID_DESC' | 'THEME_ASC' | 'THEME_DESC';
4659
4803
  export type SpatialRelationOrderBy = 'CATEGORY_ASC' | 'CATEGORY_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'FIELD_ID_ASC' | 'FIELD_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'OPERATOR_ASC' | 'OPERATOR_DESC' | 'PARAM_NAME_ASC' | 'PARAM_NAME_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'REF_FIELD_ID_ASC' | 'REF_FIELD_ID_DESC' | 'REF_TABLE_ID_ASC' | 'REF_TABLE_ID_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'TAGS_ASC' | 'TAGS_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
4660
- export type SqlActionOrderBy = 'ACTION_ASC' | 'ACTION_DESC' | 'ACTION_ID_ASC' | 'ACTION_ID_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'CONTENT_ASC' | 'CONTENT_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DEPLOY_ASC' | 'DEPLOY_DESC' | 'DEPS_ASC' | 'DEPS_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'PAYLOAD_ASC' | 'PAYLOAD_DESC' | 'REVERT_ASC' | 'REVERT_DESC' | 'VERIFY_ASC' | 'VERIFY_DESC';
4804
+ export type SqlActionOrderBy = 'ACTION_ID_ASC' | 'ACTION_ID_DESC' | 'ACTION_NAME_ASC' | 'ACTION_NAME_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'CONTENT_ASC' | 'CONTENT_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DEPLOY_ASC' | 'DEPLOY_DESC' | 'DEPS_ASC' | 'DEPS_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'PAYLOAD_ASC' | 'PAYLOAD_DESC' | 'REVERT_ASC' | 'REVERT_DESC' | 'VERIFY_ASC' | 'VERIFY_DESC';
4661
4805
  export type TableOrderBy = 'CATEGORY_ASC' | 'CATEGORY_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'ID_ASC' | 'ID_DESC' | 'INHERITS_ID_ASC' | 'INHERITS_ID_DESC' | 'LABEL_ASC' | 'LABEL_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'PARTITIONED_ASC' | 'PARTITIONED_DESC' | 'PARTITION_KEY_NAMES_ASC' | 'PARTITION_KEY_NAMES_DESC' | 'PARTITION_KEY_TYPES_ASC' | 'PARTITION_KEY_TYPES_DESC' | 'PARTITION_STRATEGY_ASC' | 'PARTITION_STRATEGY_DESC' | 'PEOPLESTAMPS_ASC' | 'PEOPLESTAMPS_DESC' | 'PLURAL_NAME_ASC' | 'PLURAL_NAME_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'SINGULAR_NAME_ASC' | 'SINGULAR_NAME_DESC' | 'SMART_TAGS_ASC' | 'SMART_TAGS_DESC' | 'STEP_UP_ASC' | 'STEP_UP_DESC' | 'TAGS_ASC' | 'TAGS_DESC' | 'TIMESTAMPS_ASC' | 'TIMESTAMPS_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'USE_RLS_ASC' | 'USE_RLS_DESC';
4662
4806
  export type TableGrantOrderBy = 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'FIELD_IDS_ASC' | 'FIELD_IDS_DESC' | 'GRANTEE_NAME_ASC' | 'GRANTEE_NAME_DESC' | 'ID_ASC' | 'ID_DESC' | 'IS_GRANT_ASC' | 'IS_GRANT_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVILEGE_ASC' | 'PRIVILEGE_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
4663
4807
  export type TriggerOrderBy = 'CATEGORY_ASC' | 'CATEGORY_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'EVENT_ASC' | 'EVENT_DESC' | 'FUNCTION_NAME_ASC' | 'FUNCTION_NAME_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'SMART_TAGS_ASC' | 'SMART_TAGS_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'TAGS_ASC' | 'TAGS_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
@@ -4828,10 +4972,10 @@ export interface DeleteAppInput {
4828
4972
  export interface CreateAstMigrationInput {
4829
4973
  clientMutationId?: string;
4830
4974
  astMigration: {
4831
- action?: string;
4832
- actionId?: string;
4833
- actorId?: string;
4834
- databaseId?: string;
4975
+ actionId: string;
4976
+ actionName?: string;
4977
+ actorId: string;
4978
+ databaseId: string;
4835
4979
  deploy?: Record<string, unknown>;
4836
4980
  deploys?: string;
4837
4981
  name?: string;
@@ -4842,8 +4986,8 @@ export interface CreateAstMigrationInput {
4842
4986
  };
4843
4987
  }
4844
4988
  export interface AstMigrationPatch {
4845
- action?: string | null;
4846
4989
  actionId?: string | null;
4990
+ actionName?: string | null;
4847
4991
  actorId?: string | null;
4848
4992
  databaseId?: string | null;
4849
4993
  deploy?: Record<string, unknown> | null;
@@ -5363,6 +5507,42 @@ export interface DeleteFunctionInput {
5363
5507
  clientMutationId?: string;
5364
5508
  id: string;
5365
5509
  }
5510
+ export interface CreateHttpRouteInput {
5511
+ clientMutationId?: string;
5512
+ httpRoute: {
5513
+ createdBy?: string;
5514
+ databaseId: string;
5515
+ domainId: string;
5516
+ isActive?: boolean;
5517
+ method?: string;
5518
+ path?: string;
5519
+ priority?: number;
5520
+ targetId: string;
5521
+ targetKind: string;
5522
+ updatedBy?: string;
5523
+ };
5524
+ }
5525
+ export interface HttpRoutePatch {
5526
+ createdBy?: string | null;
5527
+ databaseId?: string | null;
5528
+ domainId?: string | null;
5529
+ isActive?: boolean | null;
5530
+ method?: string | null;
5531
+ path?: string | null;
5532
+ priority?: number | null;
5533
+ targetId?: string | null;
5534
+ targetKind?: string | null;
5535
+ updatedBy?: string | null;
5536
+ }
5537
+ export interface UpdateHttpRouteInput {
5538
+ clientMutationId?: string;
5539
+ id: string;
5540
+ httpRoutePatch: HttpRoutePatch;
5541
+ }
5542
+ export interface DeleteHttpRouteInput {
5543
+ clientMutationId?: string;
5544
+ id: string;
5545
+ }
5366
5546
  export interface CreateIndexInput {
5367
5547
  clientMutationId?: string;
5368
5548
  index: {
@@ -5407,23 +5587,35 @@ export interface DeleteIndexInput {
5407
5587
  clientMutationId?: string;
5408
5588
  id: string;
5409
5589
  }
5410
- export interface CreateMigrateFileInput {
5590
+ export interface CreateManagedDomainInput {
5411
5591
  clientMutationId?: string;
5412
- migrateFile: {
5413
- databaseId?: string;
5414
- upload?: ConstructiveInternalTypeUpload;
5592
+ managedDomain: {
5593
+ annotations?: Record<string, unknown>;
5594
+ databaseId: string;
5595
+ domain: ConstructiveInternalTypeHostname;
5596
+ isWildcard?: boolean;
5597
+ tlsReadyAt?: string;
5598
+ tlsStatus?: string;
5599
+ verificationStatus?: string;
5600
+ verifiedAt?: string;
5415
5601
  };
5416
5602
  }
5417
- export interface MigrateFilePatch {
5603
+ export interface ManagedDomainPatch {
5604
+ annotations?: Record<string, unknown> | null;
5418
5605
  databaseId?: string | null;
5419
- upload?: ConstructiveInternalTypeUpload | null;
5606
+ domain?: ConstructiveInternalTypeHostname | null;
5607
+ isWildcard?: boolean | null;
5608
+ tlsReadyAt?: string | null;
5609
+ tlsStatus?: string | null;
5610
+ verificationStatus?: string | null;
5611
+ verifiedAt?: string | null;
5420
5612
  }
5421
- export interface UpdateMigrateFileInput {
5613
+ export interface UpdateManagedDomainInput {
5422
5614
  clientMutationId?: string;
5423
5615
  id: string;
5424
- migrateFilePatch: MigrateFilePatch;
5616
+ managedDomainPatch: ManagedDomainPatch;
5425
5617
  }
5426
- export interface DeleteMigrateFileInput {
5618
+ export interface DeleteManagedDomainInput {
5427
5619
  clientMutationId?: string;
5428
5620
  id: string;
5429
5621
  }
@@ -5843,11 +6035,11 @@ export interface DeleteSpatialRelationInput {
5843
6035
  export interface CreateSqlActionInput {
5844
6036
  clientMutationId?: string;
5845
6037
  sqlAction: {
5846
- action?: string;
5847
- actionId?: string;
5848
- actorId?: string;
6038
+ actionId: string;
6039
+ actionName?: string;
6040
+ actorId: string;
5849
6041
  content?: string;
5850
- databaseId?: string;
6042
+ databaseId: string;
5851
6043
  deploy?: string;
5852
6044
  deps?: string[];
5853
6045
  name?: string;
@@ -5857,8 +6049,8 @@ export interface CreateSqlActionInput {
5857
6049
  };
5858
6050
  }
5859
6051
  export interface SqlActionPatch {
5860
- action?: string | null;
5861
6052
  actionId?: string | null;
6053
+ actionName?: string | null;
5862
6054
  actorId?: string | null;
5863
6055
  content?: string | null;
5864
6056
  databaseId?: string | null;
@@ -6598,6 +6790,15 @@ export interface DatabaseToManyIndexFilter {
6598
6790
  /** Filters to entities where at least one related entity matches. */
6599
6791
  some?: IndexFilter;
6600
6792
  }
6793
+ /** A filter to be used against many `ManagedDomain` object types. All fields are combined with a logical ‘and.’ */
6794
+ export interface DatabaseToManyManagedDomainFilter {
6795
+ /** Filters to entities where every related entity matches. */
6796
+ every?: ManagedDomainFilter;
6797
+ /** Filters to entities where no related entity matches. */
6798
+ none?: ManagedDomainFilter;
6799
+ /** Filters to entities where at least one related entity matches. */
6800
+ some?: ManagedDomainFilter;
6801
+ }
6601
6802
  /** A filter to be used against many `Partition` object types. All fields are combined with a logical ‘and.’ */
6602
6803
  export interface DatabaseToManyPartitionFilter {
6603
6804
  /** Filters to entities where every related entity matches. */
@@ -6846,6 +7047,15 @@ export interface ConstructiveInternalTypeHostnameFilter {
6846
7047
  /** Starts with the specified string (case-insensitive). */
6847
7048
  startsWithInsensitive?: ConstructiveInternalTypeHostname;
6848
7049
  }
7050
+ /** A filter to be used against many `HttpRoute` object types. All fields are combined with a logical ‘and.’ */
7051
+ export interface DomainToManyHttpRouteFilter {
7052
+ /** Filters to entities where every related entity matches. */
7053
+ every?: HttpRouteFilter;
7054
+ /** Filters to entities where no related entity matches. */
7055
+ none?: HttpRouteFilter;
7056
+ /** Filters to entities where at least one related entity matches. */
7057
+ some?: HttpRouteFilter;
7058
+ }
6849
7059
  /** A filter to be used against many `SpatialRelation` object types. All fields are combined with a logical ‘and.’ */
6850
7060
  export interface FieldToManySpatialRelationFilter {
6851
7061
  /** Filters to entities where every related entity matches. */
@@ -6855,41 +7065,6 @@ export interface FieldToManySpatialRelationFilter {
6855
7065
  /** Filters to entities where at least one related entity matches. */
6856
7066
  some?: SpatialRelationFilter;
6857
7067
  }
6858
- /** A filter to be used against ConstructiveInternalTypeUpload fields. All fields are combined with a logical ‘and.’ */
6859
- export interface ConstructiveInternalTypeUploadFilter {
6860
- /** Contained by the specified JSON. */
6861
- containedBy?: ConstructiveInternalTypeUpload;
6862
- /** Contains the specified JSON. */
6863
- contains?: ConstructiveInternalTypeUpload;
6864
- /** Contains all of the specified keys. */
6865
- containsAllKeys?: string[];
6866
- /** Contains any of the specified keys. */
6867
- containsAnyKeys?: string[];
6868
- /** Contains the specified key. */
6869
- containsKey?: string;
6870
- /** Not equal to the specified value, treating null like an ordinary value. */
6871
- distinctFrom?: ConstructiveInternalTypeUpload;
6872
- /** Equal to the specified value. */
6873
- equalTo?: ConstructiveInternalTypeUpload;
6874
- /** Greater than the specified value. */
6875
- greaterThan?: ConstructiveInternalTypeUpload;
6876
- /** Greater than or equal to the specified value. */
6877
- greaterThanOrEqualTo?: ConstructiveInternalTypeUpload;
6878
- /** Included in the specified list. */
6879
- in?: ConstructiveInternalTypeUpload[];
6880
- /** Is null (if `true` is specified) or is not null (if `false` is specified). */
6881
- isNull?: boolean;
6882
- /** Less than the specified value. */
6883
- lessThan?: ConstructiveInternalTypeUpload;
6884
- /** Less than or equal to the specified value. */
6885
- lessThanOrEqualTo?: ConstructiveInternalTypeUpload;
6886
- /** Equal to the specified value, treating null like an ordinary value. */
6887
- notDistinctFrom?: ConstructiveInternalTypeUpload;
6888
- /** Not equal to the specified value. */
6889
- notEqualTo?: ConstructiveInternalTypeUpload;
6890
- /** Not included in the specified list. */
6891
- notIn?: ConstructiveInternalTypeUpload[];
6892
- }
6893
7068
  /** A filter to be used against ApiExposureLevel fields. All fields are combined with a logical ‘and.’ */
6894
7069
  export interface ApiExposureLevelFilter {
6895
7070
  /** Not equal to the specified value, treating null like an ordinary value. */
@@ -7354,22 +7529,6 @@ export interface AppInput {
7354
7529
  /** Site this app is associated with (one app per site) */
7355
7530
  siteId: string;
7356
7531
  }
7357
- /** An input for mutations affecting `AstMigration` */
7358
- export interface AstMigrationInput {
7359
- action?: string;
7360
- actionId?: string;
7361
- actorId?: string;
7362
- createdAt?: string;
7363
- databaseId?: string;
7364
- deploy?: Record<string, unknown>;
7365
- deploys?: string;
7366
- id?: number;
7367
- name?: string;
7368
- payload?: Record<string, unknown>;
7369
- requires?: string[];
7370
- revert?: Record<string, unknown>;
7371
- verify?: Record<string, unknown>;
7372
- }
7373
7532
  /** An input for mutations affecting `CheckConstraint` */
7374
7533
  export interface CheckConstraintInput {
7375
7534
  category?: ObjectCategory;
@@ -7608,6 +7767,30 @@ export interface FunctionInput {
7608
7767
  name: string;
7609
7768
  schemaId: string;
7610
7769
  }
7770
+ /** An input for mutations affecting `HttpRoute` */
7771
+ export interface HttpRouteInput {
7772
+ createdAt?: string;
7773
+ createdBy?: string;
7774
+ /** Database that owns this resource (database-scoped isolation) */
7775
+ databaseId: string;
7776
+ /** Registered host in services_public.domains */
7777
+ domainId: string;
7778
+ id?: string;
7779
+ /** Whether the resolver may select this route */
7780
+ isActive?: boolean;
7781
+ /** Optional uppercase HTTP method; NULL matches every method */
7782
+ method?: string;
7783
+ /** Normalized request path prefix; longest matching prefix wins */
7784
+ path?: string;
7785
+ /** Tie-break precedence after path length and method specificity */
7786
+ priority?: number;
7787
+ /** Target row of the type named by target_kind; existence enforced by trigger */
7788
+ targetId: string;
7789
+ /** Discriminator selecting the type of target_id */
7790
+ targetKind: string;
7791
+ updatedAt?: string;
7792
+ updatedBy?: string;
7793
+ }
7611
7794
  /** An input for mutations affecting `Index` */
7612
7795
  export interface IndexInput {
7613
7796
  accessMethod?: string;
@@ -7628,11 +7811,26 @@ export interface IndexInput {
7628
7811
  updatedAt?: string;
7629
7812
  whereClause?: Record<string, unknown>;
7630
7813
  }
7631
- /** An input for mutations affecting `MigrateFile` */
7632
- export interface MigrateFileInput {
7633
- databaseId?: string;
7814
+ /** An input for mutations affecting `ManagedDomain` */
7815
+ export interface ManagedDomainInput {
7816
+ /** Freeform cert-manager detail (secret name, challenge, last error) and tooling metadata */
7817
+ annotations?: Record<string, unknown>;
7818
+ /** Database that owns this cert-bearing host; platform wildcards are owned by the platform database */
7819
+ databaseId: string;
7820
+ /** Root hostname this row governs certs/verification for (e.g. launchql.dev, shop.acme.com) */
7821
+ domain: ConstructiveInternalTypeHostname;
7822
+ /** Unique identifier for this managed domain record */
7634
7823
  id?: string;
7635
- upload?: ConstructiveInternalTypeUpload;
7824
+ /** Whether the cert covers the wildcard *.domain (one wildcard cert covers every subdomain row sharing this root) */
7825
+ isWildcard?: boolean;
7826
+ /** When tls_status last became active */
7827
+ tlsReadyAt?: string;
7828
+ /** TLS/SSL provisioning state: none | provisioning | active | failed */
7829
+ tlsStatus?: string;
7830
+ /** Domain ownership verification state: pending | verified | failed */
7831
+ verificationStatus?: string;
7832
+ /** When verification_status last became verified */
7833
+ verifiedAt?: string;
7636
7834
  }
7637
7835
  /** An input for mutations affecting `NodeTypeRegistry` */
7638
7836
  export interface NodeTypeRegistryInput {
@@ -7843,22 +8041,6 @@ export interface SpatialRelationInput {
7843
8041
  tags?: string[];
7844
8042
  updatedAt?: string;
7845
8043
  }
7846
- /** An input for mutations affecting `SqlAction` */
7847
- export interface SqlActionInput {
7848
- action?: string;
7849
- actionId?: string;
7850
- actorId?: string;
7851
- content?: string;
7852
- createdAt?: string;
7853
- databaseId?: string;
7854
- deploy?: string;
7855
- deps?: string[];
7856
- id?: number;
7857
- name?: string;
7858
- payload?: Record<string, unknown>;
7859
- revert?: string;
7860
- verify?: string;
7861
- }
7862
8044
  /** An input for mutations affecting `Table` */
7863
8045
  export interface TableInput {
7864
8046
  category?: ObjectCategory;
@@ -8105,6 +8287,10 @@ export interface DomainFilter {
8105
8287
  databaseId?: UUIDFilter;
8106
8288
  /** Filter by the object’s `domain` field. */
8107
8289
  domain?: ConstructiveInternalTypeHostnameFilter;
8290
+ /** Filter by the object’s `httpRoutes` relation. */
8291
+ httpRoutes?: DomainToManyHttpRouteFilter;
8292
+ /** `httpRoutes` exist. */
8293
+ httpRoutesExist?: boolean;
8108
8294
  /** Filter by the object’s `id` field. */
8109
8295
  id?: UUIDFilter;
8110
8296
  /** Filter by the object’s `labels` field. */
@@ -8700,6 +8886,35 @@ export interface IndexFilter {
8700
8886
  /** Filter by the object’s `whereClause` field. */
8701
8887
  whereClause?: JSONFilter;
8702
8888
  }
8889
+ /** A filter to be used against `ManagedDomain` object types. All fields are combined with a logical ‘and.’ */
8890
+ export interface ManagedDomainFilter {
8891
+ /** Checks for all expressions in this list. */
8892
+ and?: ManagedDomainFilter[];
8893
+ /** Filter by the object’s `annotations` field. */
8894
+ annotations?: JSONFilter;
8895
+ /** Filter by the object’s `database` relation. */
8896
+ database?: DatabaseFilter;
8897
+ /** Filter by the object’s `databaseId` field. */
8898
+ databaseId?: UUIDFilter;
8899
+ /** Filter by the object’s `domain` field. */
8900
+ domain?: ConstructiveInternalTypeHostnameFilter;
8901
+ /** Filter by the object’s `id` field. */
8902
+ id?: UUIDFilter;
8903
+ /** Filter by the object’s `isWildcard` field. */
8904
+ isWildcard?: BooleanFilter;
8905
+ /** Negates the expression. */
8906
+ not?: ManagedDomainFilter;
8907
+ /** Checks for any expressions in this list. */
8908
+ or?: ManagedDomainFilter[];
8909
+ /** Filter by the object’s `tlsReadyAt` field. */
8910
+ tlsReadyAt?: DatetimeFilter;
8911
+ /** Filter by the object’s `tlsStatus` field. */
8912
+ tlsStatus?: StringFilter;
8913
+ /** Filter by the object’s `verificationStatus` field. */
8914
+ verificationStatus?: StringFilter;
8915
+ /** Filter by the object’s `verifiedAt` field. */
8916
+ verifiedAt?: DatetimeFilter;
8917
+ }
8703
8918
  /** A filter to be used against `Partition` object types. All fields are combined with a logical ‘and.’ */
8704
8919
  export interface PartitionFilter {
8705
8920
  /** Checks for all expressions in this list. */
@@ -9469,6 +9684,43 @@ export interface ViewFilter {
9469
9684
  /** Filter by the object’s `viewType` field. */
9470
9685
  viewType?: StringFilter;
9471
9686
  }
9687
+ /** A filter to be used against `HttpRoute` object types. All fields are combined with a logical ‘and.’ */
9688
+ export interface HttpRouteFilter {
9689
+ /** Checks for all expressions in this list. */
9690
+ and?: HttpRouteFilter[];
9691
+ /** Filter by the object’s `createdAt` field. */
9692
+ createdAt?: DatetimeFilter;
9693
+ /** Filter by the object’s `createdBy` field. */
9694
+ createdBy?: UUIDFilter;
9695
+ /** Filter by the object’s `databaseId` field. */
9696
+ databaseId?: UUIDFilter;
9697
+ /** Filter by the object’s `domain` relation. */
9698
+ domain?: DomainFilter;
9699
+ /** Filter by the object’s `domainId` field. */
9700
+ domainId?: UUIDFilter;
9701
+ /** Filter by the object’s `id` field. */
9702
+ id?: UUIDFilter;
9703
+ /** Filter by the object’s `isActive` field. */
9704
+ isActive?: BooleanFilter;
9705
+ /** Filter by the object’s `method` field. */
9706
+ method?: StringFilter;
9707
+ /** Negates the expression. */
9708
+ not?: HttpRouteFilter;
9709
+ /** Checks for any expressions in this list. */
9710
+ or?: HttpRouteFilter[];
9711
+ /** Filter by the object’s `path` field. */
9712
+ path?: StringFilter;
9713
+ /** Filter by the object’s `priority` field. */
9714
+ priority?: IntFilter;
9715
+ /** Filter by the object’s `targetId` field. */
9716
+ targetId?: UUIDFilter;
9717
+ /** Filter by the object’s `targetKind` field. */
9718
+ targetKind?: StringFilter;
9719
+ /** Filter by the object’s `updatedAt` field. */
9720
+ updatedAt?: DatetimeFilter;
9721
+ /** Filter by the object’s `updatedBy` field. */
9722
+ updatedBy?: UUIDFilter;
9723
+ }
9472
9724
  /** A filter to be used against UUID fields. All fields are combined with a logical ‘and.’ */
9473
9725
  export interface UUIDFilter {
9474
9726
  /** Not equal to the specified value, treating null like an ordinary value. */
@@ -9582,6 +9834,10 @@ export interface DatabaseFilter {
9582
9834
  indicesExist?: boolean;
9583
9835
  /** Filter by the object’s `label` field. */
9584
9836
  label?: StringFilter;
9837
+ /** Filter by the object’s `managedDomains` relation. */
9838
+ managedDomains?: DatabaseToManyManagedDomainFilter;
9839
+ /** `managedDomains` exist. */
9840
+ managedDomainsExist?: boolean;
9585
9841
  /** Filter by the object’s `name` field. */
9586
9842
  name?: StringFilter;
9587
9843
  /** Negates the expression. */
@@ -10240,6 +10496,24 @@ export interface BigIntFilter {
10240
10496
  /** Not included in the specified list. */
10241
10497
  notIn?: string[];
10242
10498
  }
10499
+ export interface ResolveHttpRouteRecord {
10500
+ databaseId?: string | null;
10501
+ domainId?: string | null;
10502
+ matchedPath?: string | null;
10503
+ method?: string | null;
10504
+ routeId?: string | null;
10505
+ targetId?: string | null;
10506
+ targetKind?: string | null;
10507
+ }
10508
+ export type ResolveHttpRouteRecordSelect = {
10509
+ databaseId?: boolean;
10510
+ domainId?: boolean;
10511
+ matchedPath?: boolean;
10512
+ method?: boolean;
10513
+ routeId?: boolean;
10514
+ targetId?: boolean;
10515
+ targetKind?: boolean;
10516
+ };
10243
10517
  export interface AcceptDatabaseTransferPayload {
10244
10518
  clientMutationId?: string | null;
10245
10519
  result?: boolean | null;
@@ -10533,17 +10807,6 @@ export type DeleteAppPayloadSelect = {
10533
10807
  };
10534
10808
  clientMutationId?: boolean;
10535
10809
  };
10536
- export interface CreateAstMigrationPayload {
10537
- /** The `AstMigration` that was created by this mutation. */
10538
- astMigration?: AstMigration | null;
10539
- clientMutationId?: string | null;
10540
- }
10541
- export type CreateAstMigrationPayloadSelect = {
10542
- astMigration?: {
10543
- select: AstMigrationSelect;
10544
- };
10545
- clientMutationId?: boolean;
10546
- };
10547
10810
  export interface CreateCheckConstraintPayload {
10548
10811
  /** The `CheckConstraint` that was created by this mutation. */
10549
10812
  checkConstraint?: CheckConstraint | null;
@@ -11174,6 +11437,51 @@ export type DeleteFunctionPayloadSelect = {
11174
11437
  select: FunctionEdgeSelect;
11175
11438
  };
11176
11439
  };
11440
+ export interface CreateHttpRoutePayload {
11441
+ clientMutationId?: string | null;
11442
+ /** The `HttpRoute` that was created by this mutation. */
11443
+ httpRoute?: HttpRoute | null;
11444
+ httpRouteEdge?: HttpRouteEdge | null;
11445
+ }
11446
+ export type CreateHttpRoutePayloadSelect = {
11447
+ clientMutationId?: boolean;
11448
+ httpRoute?: {
11449
+ select: HttpRouteSelect;
11450
+ };
11451
+ httpRouteEdge?: {
11452
+ select: HttpRouteEdgeSelect;
11453
+ };
11454
+ };
11455
+ export interface UpdateHttpRoutePayload {
11456
+ clientMutationId?: string | null;
11457
+ /** The `HttpRoute` that was updated by this mutation. */
11458
+ httpRoute?: HttpRoute | null;
11459
+ httpRouteEdge?: HttpRouteEdge | null;
11460
+ }
11461
+ export type UpdateHttpRoutePayloadSelect = {
11462
+ clientMutationId?: boolean;
11463
+ httpRoute?: {
11464
+ select: HttpRouteSelect;
11465
+ };
11466
+ httpRouteEdge?: {
11467
+ select: HttpRouteEdgeSelect;
11468
+ };
11469
+ };
11470
+ export interface DeleteHttpRoutePayload {
11471
+ clientMutationId?: string | null;
11472
+ /** The `HttpRoute` that was deleted by this mutation. */
11473
+ httpRoute?: HttpRoute | null;
11474
+ httpRouteEdge?: HttpRouteEdge | null;
11475
+ }
11476
+ export type DeleteHttpRoutePayloadSelect = {
11477
+ clientMutationId?: boolean;
11478
+ httpRoute?: {
11479
+ select: HttpRouteSelect;
11480
+ };
11481
+ httpRouteEdge?: {
11482
+ select: HttpRouteEdgeSelect;
11483
+ };
11484
+ };
11177
11485
  export interface CreateIndexPayload {
11178
11486
  clientMutationId?: string | null;
11179
11487
  /** The `Index` that was created by this mutation. */
@@ -11219,15 +11527,49 @@ export type DeleteIndexPayloadSelect = {
11219
11527
  select: IndexEdgeSelect;
11220
11528
  };
11221
11529
  };
11222
- export interface CreateMigrateFilePayload {
11530
+ export interface CreateManagedDomainPayload {
11223
11531
  clientMutationId?: string | null;
11224
- /** The `MigrateFile` that was created by this mutation. */
11225
- migrateFile?: MigrateFile | null;
11532
+ /** The `ManagedDomain` that was created by this mutation. */
11533
+ managedDomain?: ManagedDomain | null;
11534
+ managedDomainEdge?: ManagedDomainEdge | null;
11226
11535
  }
11227
- export type CreateMigrateFilePayloadSelect = {
11536
+ export type CreateManagedDomainPayloadSelect = {
11228
11537
  clientMutationId?: boolean;
11229
- migrateFile?: {
11230
- select: MigrateFileSelect;
11538
+ managedDomain?: {
11539
+ select: ManagedDomainSelect;
11540
+ };
11541
+ managedDomainEdge?: {
11542
+ select: ManagedDomainEdgeSelect;
11543
+ };
11544
+ };
11545
+ export interface UpdateManagedDomainPayload {
11546
+ clientMutationId?: string | null;
11547
+ /** The `ManagedDomain` that was updated by this mutation. */
11548
+ managedDomain?: ManagedDomain | null;
11549
+ managedDomainEdge?: ManagedDomainEdge | null;
11550
+ }
11551
+ export type UpdateManagedDomainPayloadSelect = {
11552
+ clientMutationId?: boolean;
11553
+ managedDomain?: {
11554
+ select: ManagedDomainSelect;
11555
+ };
11556
+ managedDomainEdge?: {
11557
+ select: ManagedDomainEdgeSelect;
11558
+ };
11559
+ };
11560
+ export interface DeleteManagedDomainPayload {
11561
+ clientMutationId?: string | null;
11562
+ /** The `ManagedDomain` that was deleted by this mutation. */
11563
+ managedDomain?: ManagedDomain | null;
11564
+ managedDomainEdge?: ManagedDomainEdge | null;
11565
+ }
11566
+ export type DeleteManagedDomainPayloadSelect = {
11567
+ clientMutationId?: boolean;
11568
+ managedDomain?: {
11569
+ select: ManagedDomainSelect;
11570
+ };
11571
+ managedDomainEdge?: {
11572
+ select: ManagedDomainEdgeSelect;
11231
11573
  };
11232
11574
  };
11233
11575
  export interface CreateNodeTypeRegistryPayload {
@@ -11815,17 +12157,6 @@ export type DeleteSpatialRelationPayloadSelect = {
11815
12157
  select: SpatialRelationEdgeSelect;
11816
12158
  };
11817
12159
  };
11818
- export interface CreateSqlActionPayload {
11819
- clientMutationId?: string | null;
11820
- /** The `SqlAction` that was created by this mutation. */
11821
- sqlAction?: SqlAction | null;
11822
- }
11823
- export type CreateSqlActionPayloadSelect = {
11824
- clientMutationId?: boolean;
11825
- sqlAction?: {
11826
- select: SqlActionSelect;
11827
- };
11828
- };
11829
12160
  export interface CreateTablePayload {
11830
12161
  clientMutationId?: string | null;
11831
12162
  /** The `Table` that was created by this mutation. */
@@ -12558,6 +12889,18 @@ export type FunctionEdgeSelect = {
12558
12889
  select: FunctionSelect;
12559
12890
  };
12560
12891
  };
12892
+ /** A `HttpRoute` edge in the connection. */
12893
+ export interface HttpRouteEdge {
12894
+ cursor?: string | null;
12895
+ /** The `HttpRoute` at the end of the edge. */
12896
+ node?: HttpRoute | null;
12897
+ }
12898
+ export type HttpRouteEdgeSelect = {
12899
+ cursor?: boolean;
12900
+ node?: {
12901
+ select: HttpRouteSelect;
12902
+ };
12903
+ };
12561
12904
  /** A `Index` edge in the connection. */
12562
12905
  export interface IndexEdge {
12563
12906
  cursor?: string | null;
@@ -12570,6 +12913,18 @@ export type IndexEdgeSelect = {
12570
12913
  select: IndexSelect;
12571
12914
  };
12572
12915
  };
12916
+ /** A `ManagedDomain` edge in the connection. */
12917
+ export interface ManagedDomainEdge {
12918
+ cursor?: string | null;
12919
+ /** The `ManagedDomain` at the end of the edge. */
12920
+ node?: ManagedDomain | null;
12921
+ }
12922
+ export type ManagedDomainEdgeSelect = {
12923
+ cursor?: boolean;
12924
+ node?: {
12925
+ select: ManagedDomainSelect;
12926
+ };
12927
+ };
12573
12928
  /** A `NodeTypeRegistry` edge in the connection. */
12574
12929
  export interface NodeTypeRegistryEdge {
12575
12930
  cursor?: string | null;