@constructive-sdk/cli 0.25.0 → 0.25.1

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 (2174) hide show
  1. package/README.md +4 -1
  2. package/admin/cli/commands/membership-type.js +12 -12
  3. package/admin/cli/commands.js +11 -47
  4. package/admin/cli/executor.d.ts +5 -23
  5. package/admin/orm/index.d.ts +10 -46
  6. package/admin/orm/index.js +10 -46
  7. package/admin/orm/input-types.d.ts +953 -3908
  8. package/admin/orm/input-types.js +1 -13
  9. package/admin/orm/models/index.d.ts +5 -23
  10. package/admin/orm/models/index.js +11 -47
  11. package/agent/cli/commands/agent-message.d.ts +8 -0
  12. package/agent/cli/commands/agent-message.js +328 -0
  13. package/agent/cli/commands/agent-persona.d.ts +8 -0
  14. package/agent/cli/commands/agent-persona.js +416 -0
  15. package/agent/cli/commands/agent-plan.d.ts +8 -0
  16. package/agent/cli/commands/agent-plan.js +328 -0
  17. package/agent/cli/commands/agent-prompt.d.ts +8 -0
  18. package/agent/cli/commands/agent-prompt.js +372 -0
  19. package/agent/cli/commands/agent-resource-chunk.d.ts +8 -0
  20. package/agent/cli/commands/agent-resource-chunk.js +400 -0
  21. package/agent/cli/commands/agent-resource.d.ts +8 -0
  22. package/agent/cli/commands/agent-resource.js +630 -0
  23. package/agent/cli/commands/agent-task.d.ts +8 -0
  24. package/agent/cli/commands/agent-task.js +482 -0
  25. package/agent/cli/commands/agent-thread.d.ts +8 -0
  26. package/agent/cli/commands/agent-thread.js +486 -0
  27. package/agent/cli/commands/agent.d.ts +8 -0
  28. package/agent/cli/commands/agent.js +396 -0
  29. package/agent/cli/commands.js +68 -0
  30. package/agent/cli/embedder.d.ts +56 -0
  31. package/agent/cli/embedder.js +136 -0
  32. package/agent/cli/executor.d.ts +19 -0
  33. package/agent/orm/index.d.ts +57 -0
  34. package/agent/orm/index.js +81 -0
  35. package/agent/orm/input-types.d.ts +2753 -0
  36. package/agent/orm/input-types.js +24 -0
  37. package/agent/orm/models/agent.d.ts +54 -0
  38. package/agent/orm/models/agent.js +104 -0
  39. package/agent/orm/models/agentMessage.d.ts +54 -0
  40. package/agent/orm/models/agentMessage.js +104 -0
  41. package/agent/orm/models/agentPersona.d.ts +54 -0
  42. package/agent/orm/models/agentPersona.js +104 -0
  43. package/agent/orm/models/agentPlan.d.ts +54 -0
  44. package/agent/orm/models/agentPlan.js +104 -0
  45. package/agent/orm/models/agentPrompt.d.ts +54 -0
  46. package/agent/orm/models/agentPrompt.js +104 -0
  47. package/agent/orm/models/agentResource.d.ts +54 -0
  48. package/agent/orm/models/agentResource.js +104 -0
  49. package/agent/orm/models/agentResourceChunk.d.ts +54 -0
  50. package/agent/orm/models/agentResourceChunk.js +104 -0
  51. package/agent/orm/models/agentTask.d.ts +54 -0
  52. package/agent/orm/models/agentTask.js +104 -0
  53. package/agent/orm/models/agentThread.d.ts +54 -0
  54. package/agent/orm/models/agentThread.js +104 -0
  55. package/agent/orm/models/index.d.ts +14 -0
  56. package/agent/orm/models/index.js +26 -0
  57. package/agent/orm/mutation/index.d.ts +26 -0
  58. package/agent/orm/mutation/index.js +21 -0
  59. package/api/cli/commands/api-setting.js +536 -0
  60. package/api/cli/commands/auth.js +107 -0
  61. package/api/cli/commands/context.js +158 -0
  62. package/api/cli/commands/database-setting.js +516 -0
  63. package/api/cli/commands/full-text-search.js +366 -0
  64. package/api/cli/commands/provision-bucket.js +36 -0
  65. package/api/cli/commands.js +158 -0
  66. package/api/cli/executor.d.ts +102 -0
  67. package/api/cli/executor.js +40 -0
  68. package/api/cli/index.js +26 -0
  69. package/api/cli/utils.js +297 -0
  70. package/api/index.js +22 -0
  71. package/api/orm/client.js +152 -0
  72. package/api/orm/index.d.ts +177 -0
  73. package/api/orm/index.js +157 -0
  74. package/api/orm/input-types.d.ts +11882 -0
  75. package/api/orm/input-types.js +91 -0
  76. package/api/orm/models/index.d.ts +50 -0
  77. package/api/orm/models/index.js +98 -0
  78. package/api/orm/mutation/index.d.ts +109 -0
  79. package/api/orm/mutation/index.js +117 -0
  80. package/api/orm/query/index.d.ts +18 -0
  81. package/api/orm/query/index.js +25 -0
  82. package/api/orm/query-builder.js +756 -0
  83. package/api/orm/realtime.js +104 -0
  84. package/api/orm/select-types.js +2 -0
  85. package/api/orm/types.js +23 -0
  86. package/esm/admin/cli/commands/membership-type.js +12 -12
  87. package/esm/admin/cli/commands.js +11 -47
  88. package/esm/admin/cli/executor.d.ts +5 -23
  89. package/esm/admin/orm/index.d.ts +10 -46
  90. package/esm/admin/orm/index.js +10 -46
  91. package/esm/admin/orm/input-types.d.ts +953 -3908
  92. package/esm/admin/orm/input-types.js +1 -13
  93. package/esm/admin/orm/models/index.d.ts +5 -23
  94. package/esm/admin/orm/models/index.js +5 -23
  95. package/esm/agent/cli/commands/agent-message.d.ts +8 -0
  96. package/esm/agent/cli/commands/agent-message.js +326 -0
  97. package/esm/agent/cli/commands/agent-persona.d.ts +8 -0
  98. package/esm/agent/cli/commands/agent-persona.js +414 -0
  99. package/esm/agent/cli/commands/agent-plan.d.ts +8 -0
  100. package/esm/agent/cli/commands/agent-plan.js +326 -0
  101. package/esm/agent/cli/commands/agent-prompt.d.ts +8 -0
  102. package/esm/agent/cli/commands/agent-prompt.js +370 -0
  103. package/esm/agent/cli/commands/agent-resource-chunk.d.ts +8 -0
  104. package/esm/agent/cli/commands/agent-resource-chunk.js +398 -0
  105. package/esm/agent/cli/commands/agent-resource.d.ts +8 -0
  106. package/esm/agent/cli/commands/agent-resource.js +628 -0
  107. package/esm/agent/cli/commands/agent-task.d.ts +8 -0
  108. package/esm/agent/cli/commands/agent-task.js +480 -0
  109. package/esm/agent/cli/commands/agent-thread.d.ts +8 -0
  110. package/esm/agent/cli/commands/agent-thread.js +484 -0
  111. package/esm/agent/cli/commands/agent.d.ts +8 -0
  112. package/esm/agent/cli/commands/agent.js +394 -0
  113. package/esm/agent/cli/commands/auth.d.ts +8 -0
  114. package/esm/agent/cli/commands/context.d.ts +8 -0
  115. package/esm/agent/cli/commands/provision-bucket.d.ts +8 -0
  116. package/esm/agent/cli/commands.d.ts +7 -0
  117. package/esm/agent/cli/commands.js +61 -0
  118. package/esm/agent/cli/embedder.d.ts +56 -0
  119. package/esm/agent/cli/embedder.js +128 -0
  120. package/esm/agent/cli/executor.d.ts +19 -0
  121. package/esm/agent/cli/utils.d.ts +88 -0
  122. package/esm/agent/index.js +6 -0
  123. package/esm/agent/orm/client.d.ts +97 -0
  124. package/esm/agent/orm/index.d.ts +57 -0
  125. package/esm/agent/orm/index.js +59 -0
  126. package/esm/agent/orm/input-types.d.ts +2753 -0
  127. package/esm/agent/orm/input-types.js +21 -0
  128. package/esm/agent/orm/models/agent.d.ts +54 -0
  129. package/esm/agent/orm/models/agent.js +100 -0
  130. package/esm/agent/orm/models/agentMessage.d.ts +54 -0
  131. package/esm/agent/orm/models/agentMessage.js +100 -0
  132. package/esm/agent/orm/models/agentPersona.d.ts +54 -0
  133. package/esm/agent/orm/models/agentPersona.js +100 -0
  134. package/esm/agent/orm/models/agentPlan.d.ts +54 -0
  135. package/esm/agent/orm/models/agentPlan.js +100 -0
  136. package/esm/agent/orm/models/agentPrompt.d.ts +54 -0
  137. package/esm/agent/orm/models/agentPrompt.js +100 -0
  138. package/esm/agent/orm/models/agentResource.d.ts +54 -0
  139. package/esm/agent/orm/models/agentResource.js +100 -0
  140. package/esm/agent/orm/models/agentResourceChunk.d.ts +54 -0
  141. package/esm/agent/orm/models/agentResourceChunk.js +100 -0
  142. package/esm/agent/orm/models/agentTask.d.ts +54 -0
  143. package/esm/agent/orm/models/agentTask.js +100 -0
  144. package/esm/agent/orm/models/agentThread.d.ts +54 -0
  145. package/esm/agent/orm/models/agentThread.js +100 -0
  146. package/esm/agent/orm/models/index.d.ts +14 -0
  147. package/esm/agent/orm/models/index.js +14 -0
  148. package/esm/agent/orm/mutation/index.d.ts +26 -0
  149. package/esm/agent/orm/mutation/index.js +18 -0
  150. package/esm/agent/orm/query-builder.d.ts +110 -0
  151. package/esm/agent/orm/realtime.d.ts +142 -0
  152. package/esm/agent/orm/select-types.d.ts +125 -0
  153. package/esm/agent/orm/select-types.js +1 -0
  154. package/esm/agent/orm/types.d.ts +6 -0
  155. package/esm/api/cli/commands/api-setting.js +534 -0
  156. package/esm/api/cli/commands/auth.d.ts +8 -0
  157. package/esm/api/cli/commands/auth.js +105 -0
  158. package/esm/api/cli/commands/context.d.ts +8 -0
  159. package/esm/api/cli/commands/context.js +156 -0
  160. package/esm/api/cli/commands/database-setting.js +514 -0
  161. package/esm/api/cli/commands/full-text-search.js +364 -0
  162. package/esm/api/cli/commands/provision-bucket.d.ts +8 -0
  163. package/esm/api/cli/commands/provision-bucket.js +34 -0
  164. package/esm/api/cli/commands.d.ts +7 -0
  165. package/esm/api/cli/commands.js +151 -0
  166. package/esm/api/cli/executor.d.ts +102 -0
  167. package/esm/api/cli/executor.js +35 -0
  168. package/esm/api/cli/index.d.ts +1 -0
  169. package/esm/api/cli/index.js +24 -0
  170. package/esm/api/cli/utils.d.ts +88 -0
  171. package/esm/api/cli/utils.js +281 -0
  172. package/esm/api/index.d.ts +6 -0
  173. package/esm/api/index.js +6 -0
  174. package/esm/api/orm/client.d.ts +97 -0
  175. package/esm/api/orm/client.js +145 -0
  176. package/esm/api/orm/index.d.ts +177 -0
  177. package/esm/api/orm/index.js +134 -0
  178. package/esm/api/orm/input-types.d.ts +11882 -0
  179. package/esm/api/orm/input-types.js +88 -0
  180. package/esm/api/orm/models/index.d.ts +50 -0
  181. package/esm/api/orm/models/index.js +50 -0
  182. package/esm/api/orm/mutation/index.d.ts +109 -0
  183. package/esm/api/orm/mutation/index.js +114 -0
  184. package/esm/api/orm/query/index.d.ts +18 -0
  185. package/esm/api/orm/query/index.js +22 -0
  186. package/esm/api/orm/query-builder.d.ts +110 -0
  187. package/esm/api/orm/query-builder.js +704 -0
  188. package/esm/api/orm/realtime.d.ts +142 -0
  189. package/esm/api/orm/realtime.js +100 -0
  190. package/esm/api/orm/select-types.d.ts +125 -0
  191. package/esm/api/orm/select-types.js +1 -0
  192. package/esm/api/orm/types.d.ts +6 -0
  193. package/esm/api/orm/types.js +7 -0
  194. package/esm/index.d.ts +4 -1
  195. package/esm/index.js +4 -1
  196. package/esm/modules/cli/commands/agent-module.js +866 -0
  197. package/esm/modules/cli/commands/auth.d.ts +8 -0
  198. package/esm/modules/cli/commands/auth.js +105 -0
  199. package/esm/modules/cli/commands/billing-module.js +668 -0
  200. package/esm/modules/cli/commands/billing-provider-module.js +668 -0
  201. package/esm/modules/cli/commands/compute-log-module.js +558 -0
  202. package/esm/modules/cli/commands/config-secrets-module.d.ts +8 -0
  203. package/esm/modules/cli/commands/config-secrets-module.js +514 -0
  204. package/esm/modules/cli/commands/config-secrets-org-module.js +338 -0
  205. package/esm/modules/cli/commands/config-secrets-user-module.js +360 -0
  206. package/esm/modules/cli/commands/connected-accounts-module.js +380 -0
  207. package/esm/modules/cli/commands/context.d.ts +8 -0
  208. package/esm/modules/cli/commands/context.js +156 -0
  209. package/esm/modules/cli/commands/crypto-addresses-module.js +402 -0
  210. package/esm/modules/cli/commands/database-provision-module.js +456 -0
  211. package/esm/modules/cli/commands/db-usage-module.js +602 -0
  212. package/esm/modules/cli/commands/emails-module.js +380 -0
  213. package/esm/modules/cli/commands/events-module.js +1086 -0
  214. package/esm/modules/cli/commands/function-module.js +756 -0
  215. package/esm/modules/cli/commands/graph-module.js +562 -0
  216. package/esm/modules/cli/commands/hierarchy-module.js +626 -0
  217. package/esm/modules/cli/commands/i-18-n-module.d.ts +8 -0
  218. package/esm/modules/cli/commands/i-18-n-module.js +338 -0
  219. package/esm/modules/cli/commands/identity-providers-module.js +426 -0
  220. package/esm/modules/cli/commands/inference-log-module.js +558 -0
  221. package/esm/modules/cli/commands/invites-module.js +536 -0
  222. package/esm/modules/cli/commands/limits-module.js +932 -0
  223. package/esm/modules/cli/commands/memberships-module.js +998 -0
  224. package/esm/modules/cli/commands/merkle-store-module.js +498 -0
  225. package/esm/modules/cli/commands/namespace-module.js +558 -0
  226. package/esm/modules/cli/commands/notifications-module.js +602 -0
  227. package/esm/modules/cli/commands/permissions-module.js +602 -0
  228. package/esm/modules/cli/commands/phone-numbers-module.js +380 -0
  229. package/esm/modules/cli/commands/plans-module.js +602 -0
  230. package/esm/modules/cli/commands/profiles-module.js +668 -0
  231. package/esm/modules/cli/commands/provision-bucket.d.ts +8 -0
  232. package/esm/modules/cli/commands/provision-bucket.js +34 -0
  233. package/esm/modules/cli/commands/rate-limit-meters-module.js +492 -0
  234. package/esm/modules/cli/commands/realtime-module.js +492 -0
  235. package/esm/modules/cli/commands/rls-module.js +470 -0
  236. package/esm/modules/cli/commands/storage-log-module.js +558 -0
  237. package/esm/modules/cli/commands/storage-module.js +976 -0
  238. package/esm/modules/cli/commands/transfer-log-module.js +558 -0
  239. package/esm/modules/cli/commands/user-auth-module.js +800 -0
  240. package/esm/modules/cli/commands/user-credentials-module.d.ts +8 -0
  241. package/esm/modules/cli/commands/user-credentials-module.js +338 -0
  242. package/esm/modules/cli/commands/user-settings-module.d.ts +8 -0
  243. package/esm/modules/cli/commands/user-settings-module.js +338 -0
  244. package/esm/modules/cli/commands/users-module.js +382 -0
  245. package/esm/modules/cli/commands/webauthn-credentials-module.js +382 -0
  246. package/esm/modules/cli/commands.d.ts +7 -0
  247. package/esm/modules/cli/commands.js +177 -0
  248. package/esm/modules/cli/executor.d.ts +123 -0
  249. package/esm/modules/cli/executor.js +35 -0
  250. package/esm/modules/cli/index.d.ts +1 -0
  251. package/esm/modules/cli/index.js +24 -0
  252. package/esm/modules/cli/utils.d.ts +88 -0
  253. package/esm/modules/cli/utils.js +281 -0
  254. package/esm/modules/index.d.ts +6 -0
  255. package/esm/modules/index.js +6 -0
  256. package/esm/modules/orm/client.d.ts +97 -0
  257. package/esm/modules/orm/client.js +145 -0
  258. package/esm/modules/orm/index.d.ts +209 -0
  259. package/esm/modules/orm/index.js +156 -0
  260. package/esm/modules/orm/input-types.d.ts +11821 -0
  261. package/esm/modules/orm/input-types.js +13 -0
  262. package/esm/modules/orm/models/configSecretsModule.d.ts +54 -0
  263. package/esm/modules/orm/models/configSecretsModule.js +100 -0
  264. package/esm/modules/orm/models/i18NModule.d.ts +54 -0
  265. package/esm/modules/orm/models/i18NModule.js +100 -0
  266. package/esm/modules/orm/models/index.d.ts +61 -0
  267. package/esm/modules/orm/models/index.js +61 -0
  268. package/esm/modules/orm/models/userCredentialsModule.d.ts +54 -0
  269. package/esm/modules/orm/models/userCredentialsModule.js +100 -0
  270. package/esm/modules/orm/models/userSettingsModule.d.ts +54 -0
  271. package/esm/modules/orm/models/userSettingsModule.js +100 -0
  272. package/esm/modules/orm/mutation/index.d.ts +134 -0
  273. package/esm/modules/orm/mutation/index.js +126 -0
  274. package/esm/modules/orm/query/index.d.ts +39 -0
  275. package/esm/modules/orm/query/index.js +54 -0
  276. package/esm/modules/orm/query-builder.d.ts +110 -0
  277. package/esm/modules/orm/query-builder.js +704 -0
  278. package/esm/modules/orm/realtime.d.ts +142 -0
  279. package/esm/modules/orm/realtime.js +100 -0
  280. package/esm/modules/orm/select-types.d.ts +125 -0
  281. package/esm/modules/orm/select-types.js +1 -0
  282. package/esm/modules/orm/types.d.ts +6 -0
  283. package/esm/modules/orm/types.js +7 -0
  284. package/esm/objects/cli/commands/object.js +0 -23
  285. package/esm/objects/cli/commands.js +3 -21
  286. package/esm/objects/cli/executor.d.ts +1 -48
  287. package/esm/objects/orm/index.d.ts +2 -50
  288. package/esm/objects/orm/index.js +2 -5
  289. package/esm/objects/orm/input-types.d.ts +153 -260
  290. package/esm/objects/orm/models/index.d.ts +1 -1
  291. package/esm/objects/orm/models/index.js +1 -1
  292. package/esm/objects/orm/mutation/index.d.ts +1 -41
  293. package/esm/objects/orm/mutation/index.js +0 -60
  294. package/esm/usage/cli/commands/app-limit-credit-redemption.js +292 -0
  295. package/esm/usage/cli/commands/auth.d.ts +8 -0
  296. package/esm/usage/cli/commands/auth.js +105 -0
  297. package/esm/usage/cli/commands/context.d.ts +8 -0
  298. package/esm/usage/cli/commands/context.js +156 -0
  299. package/esm/usage/cli/commands/org-limit-credit.js +380 -0
  300. package/esm/usage/cli/commands/provision-bucket.d.ts +8 -0
  301. package/esm/usage/cli/commands/provision-bucket.js +34 -0
  302. package/esm/usage/cli/commands/seed-app-limit-caps-defaults.d.ts +8 -0
  303. package/esm/usage/cli/commands/seed-app-limit-caps-defaults.js +34 -0
  304. package/esm/usage/cli/commands/seed-app-limit-defaults.d.ts +8 -0
  305. package/esm/usage/cli/commands/seed-app-limit-defaults.js +34 -0
  306. package/esm/usage/cli/commands/seed-org-limit-caps-defaults.d.ts +8 -0
  307. package/esm/usage/cli/commands/seed-org-limit-caps-defaults.js +34 -0
  308. package/esm/usage/cli/commands/seed-org-limit-defaults.d.ts +8 -0
  309. package/esm/usage/cli/commands/seed-org-limit-defaults.js +34 -0
  310. package/esm/usage/cli/commands.d.ts +7 -0
  311. package/esm/usage/cli/commands.js +87 -0
  312. package/esm/usage/cli/executor.d.ts +48 -0
  313. package/esm/usage/cli/executor.js +35 -0
  314. package/esm/usage/cli/index.d.ts +1 -0
  315. package/esm/usage/cli/index.js +24 -0
  316. package/esm/usage/cli/utils.d.ts +88 -0
  317. package/esm/usage/cli/utils.js +281 -0
  318. package/esm/usage/index.d.ts +6 -0
  319. package/esm/usage/index.js +6 -0
  320. package/esm/usage/orm/client.d.ts +97 -0
  321. package/esm/usage/orm/client.js +145 -0
  322. package/esm/usage/orm/index.d.ts +95 -0
  323. package/esm/usage/orm/index.js +77 -0
  324. package/esm/usage/orm/input-types.d.ts +3313 -0
  325. package/esm/usage/orm/input-types.js +14 -0
  326. package/esm/usage/orm/models/index.d.ts +23 -0
  327. package/esm/usage/orm/models/index.js +23 -0
  328. package/esm/usage/orm/mutation/index.d.ts +58 -0
  329. package/esm/usage/orm/mutation/index.js +66 -0
  330. package/esm/usage/orm/query-builder.d.ts +110 -0
  331. package/esm/usage/orm/query-builder.js +704 -0
  332. package/esm/usage/orm/realtime.d.ts +142 -0
  333. package/esm/usage/orm/realtime.js +100 -0
  334. package/esm/usage/orm/select-types.d.ts +125 -0
  335. package/esm/usage/orm/select-types.js +1 -0
  336. package/esm/usage/orm/types.d.ts +6 -0
  337. package/esm/usage/orm/types.js +7 -0
  338. package/index.d.ts +4 -1
  339. package/index.js +5 -2
  340. package/modules/cli/commands/agent-module.js +868 -0
  341. package/modules/cli/commands/auth.d.ts +8 -0
  342. package/modules/cli/commands/auth.js +107 -0
  343. package/modules/cli/commands/billing-module.js +670 -0
  344. package/modules/cli/commands/billing-provider-module.js +670 -0
  345. package/modules/cli/commands/compute-log-module.js +560 -0
  346. package/modules/cli/commands/config-secrets-module.d.ts +8 -0
  347. package/modules/cli/commands/config-secrets-module.js +516 -0
  348. package/modules/cli/commands/config-secrets-org-module.js +340 -0
  349. package/modules/cli/commands/config-secrets-user-module.js +362 -0
  350. package/modules/cli/commands/connected-accounts-module.js +382 -0
  351. package/modules/cli/commands/context.d.ts +8 -0
  352. package/modules/cli/commands/context.js +158 -0
  353. package/modules/cli/commands/crypto-addresses-module.js +404 -0
  354. package/modules/cli/commands/database-provision-module.js +458 -0
  355. package/modules/cli/commands/db-usage-module.js +604 -0
  356. package/modules/cli/commands/emails-module.js +382 -0
  357. package/modules/cli/commands/events-module.js +1088 -0
  358. package/modules/cli/commands/function-module.js +758 -0
  359. package/modules/cli/commands/graph-module.js +564 -0
  360. package/modules/cli/commands/hierarchy-module.js +628 -0
  361. package/modules/cli/commands/i-18-n-module.d.ts +8 -0
  362. package/modules/cli/commands/i-18-n-module.js +340 -0
  363. package/modules/cli/commands/identity-providers-module.js +428 -0
  364. package/modules/cli/commands/inference-log-module.js +560 -0
  365. package/modules/cli/commands/invites-module.js +538 -0
  366. package/modules/cli/commands/limits-module.js +934 -0
  367. package/modules/cli/commands/memberships-module.js +1000 -0
  368. package/modules/cli/commands/merkle-store-module.js +500 -0
  369. package/modules/cli/commands/namespace-module.js +560 -0
  370. package/modules/cli/commands/notifications-module.js +604 -0
  371. package/modules/cli/commands/permissions-module.js +604 -0
  372. package/modules/cli/commands/phone-numbers-module.js +382 -0
  373. package/modules/cli/commands/plans-module.js +604 -0
  374. package/modules/cli/commands/profiles-module.js +670 -0
  375. package/modules/cli/commands/provision-bucket.d.ts +8 -0
  376. package/modules/cli/commands/provision-bucket.js +36 -0
  377. package/modules/cli/commands/rate-limit-meters-module.js +494 -0
  378. package/modules/cli/commands/realtime-module.js +494 -0
  379. package/modules/cli/commands/rls-module.js +472 -0
  380. package/modules/cli/commands/storage-log-module.js +560 -0
  381. package/modules/cli/commands/storage-module.js +978 -0
  382. package/modules/cli/commands/transfer-log-module.js +560 -0
  383. package/modules/cli/commands/user-auth-module.js +802 -0
  384. package/modules/cli/commands/user-credentials-module.d.ts +8 -0
  385. package/modules/cli/commands/user-credentials-module.js +340 -0
  386. package/modules/cli/commands/user-settings-module.d.ts +8 -0
  387. package/modules/cli/commands/user-settings-module.js +340 -0
  388. package/modules/cli/commands/users-module.js +384 -0
  389. package/modules/cli/commands/webauthn-credentials-module.js +384 -0
  390. package/modules/cli/commands.d.ts +7 -0
  391. package/modules/cli/commands.js +184 -0
  392. package/modules/cli/executor.d.ts +123 -0
  393. package/modules/cli/executor.js +40 -0
  394. package/modules/cli/index.d.ts +1 -0
  395. package/modules/cli/index.js +26 -0
  396. package/modules/cli/utils.d.ts +88 -0
  397. package/modules/cli/utils.js +297 -0
  398. package/modules/index.d.ts +6 -0
  399. package/modules/index.js +22 -0
  400. package/modules/orm/client.d.ts +97 -0
  401. package/modules/orm/client.js +152 -0
  402. package/modules/orm/index.d.ts +209 -0
  403. package/modules/orm/index.js +179 -0
  404. package/modules/orm/input-types.d.ts +11821 -0
  405. package/modules/orm/input-types.js +16 -0
  406. package/modules/orm/models/configSecretsModule.d.ts +54 -0
  407. package/modules/orm/models/configSecretsModule.js +104 -0
  408. package/modules/orm/models/i18NModule.d.ts +54 -0
  409. package/modules/orm/models/i18NModule.js +104 -0
  410. package/modules/orm/models/index.d.ts +61 -0
  411. package/modules/orm/models/index.js +121 -0
  412. package/modules/orm/models/userCredentialsModule.d.ts +54 -0
  413. package/modules/orm/models/userCredentialsModule.js +104 -0
  414. package/modules/orm/models/userSettingsModule.d.ts +54 -0
  415. package/modules/orm/models/userSettingsModule.js +104 -0
  416. package/modules/orm/mutation/index.d.ts +134 -0
  417. package/modules/orm/mutation/index.js +129 -0
  418. package/modules/orm/query/index.d.ts +39 -0
  419. package/modules/orm/query/index.js +57 -0
  420. package/modules/orm/query-builder.d.ts +110 -0
  421. package/modules/orm/query-builder.js +756 -0
  422. package/modules/orm/realtime.d.ts +142 -0
  423. package/modules/orm/realtime.js +104 -0
  424. package/modules/orm/select-types.d.ts +125 -0
  425. package/modules/orm/select-types.js +2 -0
  426. package/modules/orm/types.d.ts +6 -0
  427. package/modules/orm/types.js +23 -0
  428. package/objects/cli/commands/object.js +0 -23
  429. package/objects/cli/commands.js +3 -21
  430. package/objects/cli/executor.d.ts +1 -48
  431. package/objects/orm/index.d.ts +2 -50
  432. package/objects/orm/index.js +3 -7
  433. package/objects/orm/input-types.d.ts +153 -260
  434. package/objects/orm/models/index.d.ts +1 -1
  435. package/objects/orm/models/index.js +3 -3
  436. package/objects/orm/mutation/index.d.ts +1 -41
  437. package/objects/orm/mutation/index.js +0 -60
  438. package/package.json +3 -2
  439. package/usage/cli/commands/app-limit-credit-redemption.js +294 -0
  440. package/usage/cli/commands/auth.d.ts +8 -0
  441. package/usage/cli/commands/auth.js +107 -0
  442. package/usage/cli/commands/context.d.ts +8 -0
  443. package/usage/cli/commands/context.js +158 -0
  444. package/usage/cli/commands/org-limit-credit.js +382 -0
  445. package/usage/cli/commands/provision-bucket.d.ts +8 -0
  446. package/usage/cli/commands/provision-bucket.js +36 -0
  447. package/usage/cli/commands/seed-app-limit-caps-defaults.d.ts +8 -0
  448. package/usage/cli/commands/seed-app-limit-caps-defaults.js +36 -0
  449. package/usage/cli/commands/seed-app-limit-defaults.d.ts +8 -0
  450. package/usage/cli/commands/seed-app-limit-defaults.js +36 -0
  451. package/usage/cli/commands/seed-org-limit-caps-defaults.d.ts +8 -0
  452. package/usage/cli/commands/seed-org-limit-caps-defaults.js +36 -0
  453. package/usage/cli/commands/seed-org-limit-defaults.d.ts +8 -0
  454. package/usage/cli/commands/seed-org-limit-defaults.js +36 -0
  455. package/usage/cli/commands.d.ts +7 -0
  456. package/usage/cli/commands.js +94 -0
  457. package/usage/cli/executor.d.ts +48 -0
  458. package/usage/cli/executor.js +40 -0
  459. package/usage/cli/index.d.ts +1 -0
  460. package/usage/cli/index.js +26 -0
  461. package/usage/cli/utils.d.ts +88 -0
  462. package/usage/cli/utils.js +297 -0
  463. package/usage/index.d.ts +6 -0
  464. package/usage/index.js +22 -0
  465. package/usage/orm/client.d.ts +97 -0
  466. package/usage/orm/client.js +152 -0
  467. package/usage/orm/index.d.ts +95 -0
  468. package/usage/orm/index.js +99 -0
  469. package/usage/orm/input-types.d.ts +3313 -0
  470. package/usage/orm/input-types.js +17 -0
  471. package/usage/orm/models/index.d.ts +23 -0
  472. package/usage/orm/models/index.js +44 -0
  473. package/usage/orm/mutation/index.d.ts +58 -0
  474. package/usage/orm/mutation/index.js +69 -0
  475. package/usage/orm/query-builder.d.ts +110 -0
  476. package/usage/orm/query-builder.js +756 -0
  477. package/usage/orm/realtime.d.ts +142 -0
  478. package/usage/orm/realtime.js +104 -0
  479. package/usage/orm/select-types.d.ts +125 -0
  480. package/usage/orm/select-types.js +2 -0
  481. package/usage/orm/types.d.ts +6 -0
  482. package/usage/orm/types.js +23 -0
  483. package/admin/cli/commands/app-limit-credit-redemption.js +0 -250
  484. package/admin/cli/commands/org-limit-credit.js +0 -338
  485. package/commands/base-handler.d.ts +0 -44
  486. package/commands/base-handler.js +0 -47
  487. package/commands/index.d.ts +0 -2
  488. package/commands/index.js +0 -6
  489. package/esm/admin/cli/commands/app-limit-credit-redemption.js +0 -248
  490. package/esm/admin/cli/commands/org-limit-credit.js +0 -336
  491. package/esm/commands/base-handler.d.ts +0 -44
  492. package/esm/commands/base-handler.js +0 -43
  493. package/esm/commands/index.d.ts +0 -2
  494. package/esm/commands/index.js +0 -1
  495. package/esm/objects/cli/commands/freeze-objects.d.ts +0 -8
  496. package/esm/objects/cli/commands/freeze-objects.js +0 -34
  497. package/esm/objects/cli/commands/get-all-objects-from-root.d.ts +0 -8
  498. package/esm/objects/cli/commands/get-all-objects-from-root.js +0 -52
  499. package/esm/objects/cli/commands/get-object-at-path.d.ts +0 -8
  500. package/esm/objects/cli/commands/get-object-at-path.js +0 -47
  501. package/esm/objects/cli/commands/get-path-objects-from-root.d.ts +0 -8
  502. package/esm/objects/cli/commands/get-path-objects-from-root.js +0 -57
  503. package/esm/objects/cli/commands/remove-node-at-path.d.ts +0 -8
  504. package/esm/objects/cli/commands/remove-node-at-path.js +0 -34
  505. package/esm/objects/cli/commands/rev-parse.d.ts +0 -8
  506. package/esm/objects/cli/commands/rev-parse.js +0 -36
  507. package/esm/objects/cli/commands/set-and-commit.d.ts +0 -8
  508. package/esm/objects/cli/commands/set-and-commit.js +0 -34
  509. package/esm/objects/cli/commands/set-props-and-commit.d.ts +0 -8
  510. package/esm/objects/cli/commands/set-props-and-commit.js +0 -34
  511. package/esm/objects/cli/commands/update-node-at-path.d.ts +0 -8
  512. package/esm/objects/cli/commands/update-node-at-path.js +0 -34
  513. package/esm/objects/orm/query/index.d.ts +0 -69
  514. package/esm/objects/orm/query/index.js +0 -110
  515. package/esm/public/cli/commands/agent-module.js +0 -690
  516. package/esm/public/cli/commands/api-setting.js +0 -512
  517. package/esm/public/cli/commands/app-admin-grant.d.ts +0 -8
  518. package/esm/public/cli/commands/app-admin-grant.js +0 -284
  519. package/esm/public/cli/commands/app-claimed-invite.d.ts +0 -8
  520. package/esm/public/cli/commands/app-claimed-invite.js +0 -286
  521. package/esm/public/cli/commands/app-grant.d.ts +0 -8
  522. package/esm/public/cli/commands/app-grant.js +0 -306
  523. package/esm/public/cli/commands/app-invite.d.ts +0 -8
  524. package/esm/public/cli/commands/app-invite.js +0 -440
  525. package/esm/public/cli/commands/app-limit-cap.d.ts +0 -8
  526. package/esm/public/cli/commands/app-limit-cap.js +0 -270
  527. package/esm/public/cli/commands/app-limit-caps-default.d.ts +0 -8
  528. package/esm/public/cli/commands/app-limit-caps-default.js +0 -250
  529. package/esm/public/cli/commands/app-limit-credit-code-item.d.ts +0 -8
  530. package/esm/public/cli/commands/app-limit-credit-code-item.js +0 -290
  531. package/esm/public/cli/commands/app-limit-credit-code.d.ts +0 -8
  532. package/esm/public/cli/commands/app-limit-credit-code.js +0 -294
  533. package/esm/public/cli/commands/app-limit-credit-redemption.d.ts +0 -8
  534. package/esm/public/cli/commands/app-limit-credit-redemption.js +0 -248
  535. package/esm/public/cli/commands/app-limit-credit.d.ts +0 -8
  536. package/esm/public/cli/commands/app-limit-credit.js +0 -314
  537. package/esm/public/cli/commands/app-limit-default.d.ts +0 -8
  538. package/esm/public/cli/commands/app-limit-default.js +0 -272
  539. package/esm/public/cli/commands/app-limit-event.d.ts +0 -8
  540. package/esm/public/cli/commands/app-limit-event.js +0 -456
  541. package/esm/public/cli/commands/app-limit-warning.d.ts +0 -8
  542. package/esm/public/cli/commands/app-limit-warning.js +0 -288
  543. package/esm/public/cli/commands/app-limit.d.ts +0 -8
  544. package/esm/public/cli/commands/app-limit.js +0 -470
  545. package/esm/public/cli/commands/app-membership-default.d.ts +0 -8
  546. package/esm/public/cli/commands/app-membership-default.js +0 -308
  547. package/esm/public/cli/commands/app-membership.d.ts +0 -8
  548. package/esm/public/cli/commands/app-membership.js +0 -504
  549. package/esm/public/cli/commands/app-owner-grant.d.ts +0 -8
  550. package/esm/public/cli/commands/app-owner-grant.js +0 -284
  551. package/esm/public/cli/commands/app-permission-default.d.ts +0 -8
  552. package/esm/public/cli/commands/app-permission-default.js +0 -230
  553. package/esm/public/cli/commands/app-permission.d.ts +0 -8
  554. package/esm/public/cli/commands/app-permission.js +0 -296
  555. package/esm/public/cli/commands/app-permissions-get-by-mask.d.ts +0 -8
  556. package/esm/public/cli/commands/app-permissions-get-by-mask.js +0 -47
  557. package/esm/public/cli/commands/app-permissions-get-mask-by-names.d.ts +0 -8
  558. package/esm/public/cli/commands/app-permissions-get-mask-by-names.js +0 -28
  559. package/esm/public/cli/commands/app-permissions-get-mask.d.ts +0 -8
  560. package/esm/public/cli/commands/app-permissions-get-mask.js +0 -28
  561. package/esm/public/cli/commands/app-permissions-get-padded-mask.d.ts +0 -8
  562. package/esm/public/cli/commands/app-permissions-get-padded-mask.js +0 -28
  563. package/esm/public/cli/commands/audit-log-auth.d.ts +0 -8
  564. package/esm/public/cli/commands/audit-log-auth.js +0 -342
  565. package/esm/public/cli/commands/billing-module.js +0 -580
  566. package/esm/public/cli/commands/billing-provider-module.js +0 -624
  567. package/esm/public/cli/commands/check-password.d.ts +0 -8
  568. package/esm/public/cli/commands/check-password.js +0 -34
  569. package/esm/public/cli/commands/compute-log-module.js +0 -514
  570. package/esm/public/cli/commands/config-secrets-org-module.js +0 -294
  571. package/esm/public/cli/commands/config-secrets-user-module.js +0 -316
  572. package/esm/public/cli/commands/confirm-delete-account.d.ts +0 -8
  573. package/esm/public/cli/commands/confirm-delete-account.js +0 -34
  574. package/esm/public/cli/commands/connected-accounts-module.js +0 -336
  575. package/esm/public/cli/commands/create-api-key.d.ts +0 -8
  576. package/esm/public/cli/commands/create-api-key.js +0 -34
  577. package/esm/public/cli/commands/crypto-address.d.ts +0 -8
  578. package/esm/public/cli/commands/crypto-address.js +0 -328
  579. package/esm/public/cli/commands/crypto-addresses-module.js +0 -358
  580. package/esm/public/cli/commands/current-ip-address.d.ts +0 -8
  581. package/esm/public/cli/commands/current-ip-address.js +0 -19
  582. package/esm/public/cli/commands/current-user-agent.d.ts +0 -8
  583. package/esm/public/cli/commands/current-user-agent.js +0 -19
  584. package/esm/public/cli/commands/current-user-id.d.ts +0 -8
  585. package/esm/public/cli/commands/current-user-id.js +0 -19
  586. package/esm/public/cli/commands/current-user.d.ts +0 -8
  587. package/esm/public/cli/commands/current-user.js +0 -25
  588. package/esm/public/cli/commands/database-provision-module.js +0 -456
  589. package/esm/public/cli/commands/database-setting.js +0 -492
  590. package/esm/public/cli/commands/db-usage-module.js +0 -558
  591. package/esm/public/cli/commands/disconnect-account.d.ts +0 -8
  592. package/esm/public/cli/commands/disconnect-account.js +0 -34
  593. package/esm/public/cli/commands/email.d.ts +0 -8
  594. package/esm/public/cli/commands/email.js +0 -328
  595. package/esm/public/cli/commands/emails-module.js +0 -336
  596. package/esm/public/cli/commands/events-module.js +0 -1040
  597. package/esm/public/cli/commands/extend-token-expires.d.ts +0 -8
  598. package/esm/public/cli/commands/extend-token-expires.js +0 -34
  599. package/esm/public/cli/commands/forgot-password.d.ts +0 -8
  600. package/esm/public/cli/commands/forgot-password.js +0 -34
  601. package/esm/public/cli/commands/full-text-search.js +0 -342
  602. package/esm/public/cli/commands/function-module.js +0 -778
  603. package/esm/public/cli/commands/graph-module.js +0 -584
  604. package/esm/public/cli/commands/hierarchy-module.js +0 -604
  605. package/esm/public/cli/commands/identity-provider.d.ts +0 -8
  606. package/esm/public/cli/commands/identity-provider.js +0 -162
  607. package/esm/public/cli/commands/identity-providers-module.js +0 -316
  608. package/esm/public/cli/commands/inference-log-module.js +0 -514
  609. package/esm/public/cli/commands/invites-module.js +0 -490
  610. package/esm/public/cli/commands/limits-module.js +0 -886
  611. package/esm/public/cli/commands/membership-type.d.ts +0 -8
  612. package/esm/public/cli/commands/membership-type.js +0 -312
  613. package/esm/public/cli/commands/memberships-module.js +0 -952
  614. package/esm/public/cli/commands/merkle-store-module.js +0 -498
  615. package/esm/public/cli/commands/namespace-module.js +0 -558
  616. package/esm/public/cli/commands/notifications-module.js +0 -558
  617. package/esm/public/cli/commands/org-admin-grant.d.ts +0 -8
  618. package/esm/public/cli/commands/org-admin-grant.js +0 -304
  619. package/esm/public/cli/commands/org-chart-edge-grant.d.ts +0 -8
  620. package/esm/public/cli/commands/org-chart-edge-grant.js +0 -364
  621. package/esm/public/cli/commands/org-chart-edge.d.ts +0 -8
  622. package/esm/public/cli/commands/org-chart-edge.js +0 -326
  623. package/esm/public/cli/commands/org-claimed-invite.d.ts +0 -8
  624. package/esm/public/cli/commands/org-claimed-invite.js +0 -306
  625. package/esm/public/cli/commands/org-get-managers-record.d.ts +0 -8
  626. package/esm/public/cli/commands/org-get-managers-record.js +0 -124
  627. package/esm/public/cli/commands/org-get-subordinates-record.d.ts +0 -8
  628. package/esm/public/cli/commands/org-get-subordinates-record.js +0 -124
  629. package/esm/public/cli/commands/org-grant.d.ts +0 -8
  630. package/esm/public/cli/commands/org-grant.js +0 -326
  631. package/esm/public/cli/commands/org-invite.d.ts +0 -8
  632. package/esm/public/cli/commands/org-invite.js +0 -504
  633. package/esm/public/cli/commands/org-is-manager-of.d.ts +0 -8
  634. package/esm/public/cli/commands/org-is-manager-of.js +0 -43
  635. package/esm/public/cli/commands/org-limit-aggregate.d.ts +0 -8
  636. package/esm/public/cli/commands/org-limit-aggregate.js +0 -492
  637. package/esm/public/cli/commands/org-limit-cap.d.ts +0 -8
  638. package/esm/public/cli/commands/org-limit-cap.js +0 -270
  639. package/esm/public/cli/commands/org-limit-caps-default.d.ts +0 -8
  640. package/esm/public/cli/commands/org-limit-caps-default.js +0 -250
  641. package/esm/public/cli/commands/org-limit-credit.d.ts +0 -8
  642. package/esm/public/cli/commands/org-limit-credit.js +0 -336
  643. package/esm/public/cli/commands/org-limit-default.d.ts +0 -8
  644. package/esm/public/cli/commands/org-limit-default.js +0 -272
  645. package/esm/public/cli/commands/org-limit-event.d.ts +0 -8
  646. package/esm/public/cli/commands/org-limit-event.js +0 -456
  647. package/esm/public/cli/commands/org-limit-warning.d.ts +0 -8
  648. package/esm/public/cli/commands/org-limit-warning.js +0 -310
  649. package/esm/public/cli/commands/org-limit.d.ts +0 -8
  650. package/esm/public/cli/commands/org-limit.js +0 -490
  651. package/esm/public/cli/commands/org-member-profile.d.ts +0 -8
  652. package/esm/public/cli/commands/org-member-profile.js +0 -390
  653. package/esm/public/cli/commands/org-member.d.ts +0 -8
  654. package/esm/public/cli/commands/org-member.js +0 -270
  655. package/esm/public/cli/commands/org-membership-default.d.ts +0 -8
  656. package/esm/public/cli/commands/org-membership-default.js +0 -306
  657. package/esm/public/cli/commands/org-membership-setting.d.ts +0 -8
  658. package/esm/public/cli/commands/org-membership-setting.js +0 -460
  659. package/esm/public/cli/commands/org-membership.d.ts +0 -8
  660. package/esm/public/cli/commands/org-membership.js +0 -546
  661. package/esm/public/cli/commands/org-owner-grant.d.ts +0 -8
  662. package/esm/public/cli/commands/org-owner-grant.js +0 -304
  663. package/esm/public/cli/commands/org-permission-default.d.ts +0 -8
  664. package/esm/public/cli/commands/org-permission-default.js +0 -250
  665. package/esm/public/cli/commands/org-permission.d.ts +0 -8
  666. package/esm/public/cli/commands/org-permission.js +0 -296
  667. package/esm/public/cli/commands/org-permissions-get-by-mask.d.ts +0 -8
  668. package/esm/public/cli/commands/org-permissions-get-by-mask.js +0 -47
  669. package/esm/public/cli/commands/org-permissions-get-mask-by-names.d.ts +0 -8
  670. package/esm/public/cli/commands/org-permissions-get-mask-by-names.js +0 -28
  671. package/esm/public/cli/commands/org-permissions-get-mask.d.ts +0 -8
  672. package/esm/public/cli/commands/org-permissions-get-mask.js +0 -28
  673. package/esm/public/cli/commands/org-permissions-get-padded-mask.d.ts +0 -8
  674. package/esm/public/cli/commands/org-permissions-get-padded-mask.js +0 -28
  675. package/esm/public/cli/commands/permissions-module.js +0 -556
  676. package/esm/public/cli/commands/phone-number.d.ts +0 -8
  677. package/esm/public/cli/commands/phone-number.js +0 -348
  678. package/esm/public/cli/commands/phone-numbers-module.js +0 -336
  679. package/esm/public/cli/commands/plans-module.js +0 -470
  680. package/esm/public/cli/commands/profiles-module.js +0 -622
  681. package/esm/public/cli/commands/provision-new-user.d.ts +0 -8
  682. package/esm/public/cli/commands/provision-new-user.js +0 -34
  683. package/esm/public/cli/commands/rate-limit-meters-module.js +0 -448
  684. package/esm/public/cli/commands/realtime-module.js +0 -448
  685. package/esm/public/cli/commands/request-cross-origin-token.d.ts +0 -8
  686. package/esm/public/cli/commands/request-cross-origin-token.js +0 -34
  687. package/esm/public/cli/commands/require-step-up.d.ts +0 -8
  688. package/esm/public/cli/commands/require-step-up.js +0 -28
  689. package/esm/public/cli/commands/reset-password.d.ts +0 -8
  690. package/esm/public/cli/commands/reset-password.js +0 -34
  691. package/esm/public/cli/commands/revoke-api-key.d.ts +0 -8
  692. package/esm/public/cli/commands/revoke-api-key.js +0 -34
  693. package/esm/public/cli/commands/revoke-session.d.ts +0 -8
  694. package/esm/public/cli/commands/revoke-session.js +0 -34
  695. package/esm/public/cli/commands/rls-module.js +0 -426
  696. package/esm/public/cli/commands/role-type.d.ts +0 -8
  697. package/esm/public/cli/commands/role-type.js +0 -228
  698. package/esm/public/cli/commands/send-account-deletion-email.d.ts +0 -8
  699. package/esm/public/cli/commands/send-account-deletion-email.js +0 -34
  700. package/esm/public/cli/commands/send-verification-email.d.ts +0 -8
  701. package/esm/public/cli/commands/send-verification-email.js +0 -34
  702. package/esm/public/cli/commands/set-password.d.ts +0 -8
  703. package/esm/public/cli/commands/set-password.js +0 -34
  704. package/esm/public/cli/commands/sign-in-cross-origin.d.ts +0 -8
  705. package/esm/public/cli/commands/sign-in-cross-origin.js +0 -34
  706. package/esm/public/cli/commands/sign-in.d.ts +0 -8
  707. package/esm/public/cli/commands/sign-in.js +0 -34
  708. package/esm/public/cli/commands/sign-out.d.ts +0 -8
  709. package/esm/public/cli/commands/sign-out.js +0 -34
  710. package/esm/public/cli/commands/sign-up.d.ts +0 -8
  711. package/esm/public/cli/commands/sign-up.js +0 -34
  712. package/esm/public/cli/commands/storage-log-module.js +0 -514
  713. package/esm/public/cli/commands/storage-module.js +0 -932
  714. package/esm/public/cli/commands/submit-app-invite-code.d.ts +0 -8
  715. package/esm/public/cli/commands/submit-app-invite-code.js +0 -34
  716. package/esm/public/cli/commands/submit-org-invite-code.d.ts +0 -8
  717. package/esm/public/cli/commands/submit-org-invite-code.js +0 -34
  718. package/esm/public/cli/commands/transfer-log-module.js +0 -514
  719. package/esm/public/cli/commands/user-auth-module.js +0 -756
  720. package/esm/public/cli/commands/user-connected-account.d.ts +0 -8
  721. package/esm/public/cli/commands/user-connected-account.js +0 -174
  722. package/esm/public/cli/commands/user.d.ts +0 -8
  723. package/esm/public/cli/commands/user.js +0 -352
  724. package/esm/public/cli/commands/users-module.js +0 -338
  725. package/esm/public/cli/commands/verify-email.d.ts +0 -8
  726. package/esm/public/cli/commands/verify-email.js +0 -34
  727. package/esm/public/cli/commands/verify-password.d.ts +0 -8
  728. package/esm/public/cli/commands/verify-password.js +0 -34
  729. package/esm/public/cli/commands/verify-totp.d.ts +0 -8
  730. package/esm/public/cli/commands/verify-totp.js +0 -34
  731. package/esm/public/cli/commands/webauthn-credential.d.ts +0 -8
  732. package/esm/public/cli/commands/webauthn-credential.js +0 -454
  733. package/esm/public/cli/commands/webauthn-credentials-module.js +0 -338
  734. package/esm/public/cli/commands.js +0 -457
  735. package/esm/public/cli/executor.d.ts +0 -447
  736. package/esm/public/orm/index.d.ts +0 -627
  737. package/esm/public/orm/index.js +0 -344
  738. package/esm/public/orm/input-types.d.ts +0 -38680
  739. package/esm/public/orm/input-types.js +0 -224
  740. package/esm/public/orm/models/appAdminGrant.d.ts +0 -54
  741. package/esm/public/orm/models/appAdminGrant.js +0 -100
  742. package/esm/public/orm/models/appClaimedInvite.d.ts +0 -54
  743. package/esm/public/orm/models/appClaimedInvite.js +0 -100
  744. package/esm/public/orm/models/appGrant.d.ts +0 -54
  745. package/esm/public/orm/models/appGrant.js +0 -100
  746. package/esm/public/orm/models/appInvite.d.ts +0 -54
  747. package/esm/public/orm/models/appInvite.js +0 -100
  748. package/esm/public/orm/models/appLimit.d.ts +0 -54
  749. package/esm/public/orm/models/appLimit.js +0 -100
  750. package/esm/public/orm/models/appLimitCap.d.ts +0 -54
  751. package/esm/public/orm/models/appLimitCap.js +0 -100
  752. package/esm/public/orm/models/appLimitCapsDefault.d.ts +0 -54
  753. package/esm/public/orm/models/appLimitCapsDefault.js +0 -100
  754. package/esm/public/orm/models/appLimitCredit.d.ts +0 -54
  755. package/esm/public/orm/models/appLimitCredit.js +0 -100
  756. package/esm/public/orm/models/appLimitCreditCode.d.ts +0 -54
  757. package/esm/public/orm/models/appLimitCreditCode.js +0 -100
  758. package/esm/public/orm/models/appLimitCreditCodeItem.d.ts +0 -54
  759. package/esm/public/orm/models/appLimitCreditCodeItem.js +0 -100
  760. package/esm/public/orm/models/appLimitCreditRedemption.d.ts +0 -54
  761. package/esm/public/orm/models/appLimitCreditRedemption.js +0 -100
  762. package/esm/public/orm/models/appLimitDefault.d.ts +0 -54
  763. package/esm/public/orm/models/appLimitDefault.js +0 -100
  764. package/esm/public/orm/models/appLimitEvent.d.ts +0 -54
  765. package/esm/public/orm/models/appLimitEvent.js +0 -100
  766. package/esm/public/orm/models/appLimitWarning.d.ts +0 -54
  767. package/esm/public/orm/models/appLimitWarning.js +0 -100
  768. package/esm/public/orm/models/appMembership.d.ts +0 -54
  769. package/esm/public/orm/models/appMembership.js +0 -100
  770. package/esm/public/orm/models/appMembershipDefault.d.ts +0 -54
  771. package/esm/public/orm/models/appMembershipDefault.js +0 -100
  772. package/esm/public/orm/models/appOwnerGrant.d.ts +0 -54
  773. package/esm/public/orm/models/appOwnerGrant.js +0 -100
  774. package/esm/public/orm/models/appPermission.d.ts +0 -54
  775. package/esm/public/orm/models/appPermission.js +0 -100
  776. package/esm/public/orm/models/appPermissionDefault.d.ts +0 -54
  777. package/esm/public/orm/models/appPermissionDefault.js +0 -100
  778. package/esm/public/orm/models/auditLogAuth.d.ts +0 -54
  779. package/esm/public/orm/models/auditLogAuth.js +0 -100
  780. package/esm/public/orm/models/cryptoAddress.d.ts +0 -54
  781. package/esm/public/orm/models/cryptoAddress.js +0 -100
  782. package/esm/public/orm/models/email.d.ts +0 -54
  783. package/esm/public/orm/models/email.js +0 -100
  784. package/esm/public/orm/models/identityProvider.d.ts +0 -30
  785. package/esm/public/orm/models/identityProvider.js +0 -55
  786. package/esm/public/orm/models/index.d.ts +0 -155
  787. package/esm/public/orm/models/index.js +0 -155
  788. package/esm/public/orm/models/membershipType.d.ts +0 -54
  789. package/esm/public/orm/models/membershipType.js +0 -100
  790. package/esm/public/orm/models/orgAdminGrant.d.ts +0 -54
  791. package/esm/public/orm/models/orgAdminGrant.js +0 -100
  792. package/esm/public/orm/models/orgChartEdge.d.ts +0 -54
  793. package/esm/public/orm/models/orgChartEdge.js +0 -100
  794. package/esm/public/orm/models/orgChartEdgeGrant.d.ts +0 -54
  795. package/esm/public/orm/models/orgChartEdgeGrant.js +0 -100
  796. package/esm/public/orm/models/orgClaimedInvite.d.ts +0 -54
  797. package/esm/public/orm/models/orgClaimedInvite.js +0 -100
  798. package/esm/public/orm/models/orgGetManagersRecord.d.ts +0 -30
  799. package/esm/public/orm/models/orgGetManagersRecord.js +0 -55
  800. package/esm/public/orm/models/orgGetSubordinatesRecord.d.ts +0 -30
  801. package/esm/public/orm/models/orgGetSubordinatesRecord.js +0 -55
  802. package/esm/public/orm/models/orgGrant.d.ts +0 -54
  803. package/esm/public/orm/models/orgGrant.js +0 -100
  804. package/esm/public/orm/models/orgInvite.d.ts +0 -54
  805. package/esm/public/orm/models/orgInvite.js +0 -100
  806. package/esm/public/orm/models/orgLimit.d.ts +0 -54
  807. package/esm/public/orm/models/orgLimit.js +0 -100
  808. package/esm/public/orm/models/orgLimitAggregate.d.ts +0 -54
  809. package/esm/public/orm/models/orgLimitAggregate.js +0 -100
  810. package/esm/public/orm/models/orgLimitCap.d.ts +0 -54
  811. package/esm/public/orm/models/orgLimitCap.js +0 -100
  812. package/esm/public/orm/models/orgLimitCapsDefault.d.ts +0 -54
  813. package/esm/public/orm/models/orgLimitCapsDefault.js +0 -100
  814. package/esm/public/orm/models/orgLimitCredit.d.ts +0 -54
  815. package/esm/public/orm/models/orgLimitCredit.js +0 -100
  816. package/esm/public/orm/models/orgLimitDefault.d.ts +0 -54
  817. package/esm/public/orm/models/orgLimitDefault.js +0 -100
  818. package/esm/public/orm/models/orgLimitEvent.d.ts +0 -54
  819. package/esm/public/orm/models/orgLimitEvent.js +0 -100
  820. package/esm/public/orm/models/orgLimitWarning.d.ts +0 -54
  821. package/esm/public/orm/models/orgLimitWarning.js +0 -100
  822. package/esm/public/orm/models/orgMember.d.ts +0 -54
  823. package/esm/public/orm/models/orgMember.js +0 -100
  824. package/esm/public/orm/models/orgMemberProfile.d.ts +0 -54
  825. package/esm/public/orm/models/orgMemberProfile.js +0 -100
  826. package/esm/public/orm/models/orgMembership.d.ts +0 -54
  827. package/esm/public/orm/models/orgMembership.js +0 -100
  828. package/esm/public/orm/models/orgMembershipDefault.d.ts +0 -54
  829. package/esm/public/orm/models/orgMembershipDefault.js +0 -100
  830. package/esm/public/orm/models/orgMembershipSetting.d.ts +0 -54
  831. package/esm/public/orm/models/orgMembershipSetting.js +0 -100
  832. package/esm/public/orm/models/orgOwnerGrant.d.ts +0 -54
  833. package/esm/public/orm/models/orgOwnerGrant.js +0 -100
  834. package/esm/public/orm/models/orgPermission.d.ts +0 -54
  835. package/esm/public/orm/models/orgPermission.js +0 -100
  836. package/esm/public/orm/models/orgPermissionDefault.d.ts +0 -54
  837. package/esm/public/orm/models/orgPermissionDefault.js +0 -100
  838. package/esm/public/orm/models/phoneNumber.d.ts +0 -54
  839. package/esm/public/orm/models/phoneNumber.js +0 -100
  840. package/esm/public/orm/models/roleType.d.ts +0 -54
  841. package/esm/public/orm/models/roleType.js +0 -100
  842. package/esm/public/orm/models/user.d.ts +0 -54
  843. package/esm/public/orm/models/user.js +0 -100
  844. package/esm/public/orm/models/userConnectedAccount.d.ts +0 -36
  845. package/esm/public/orm/models/userConnectedAccount.js +0 -76
  846. package/esm/public/orm/models/webauthnCredential.d.ts +0 -54
  847. package/esm/public/orm/models/webauthnCredential.js +0 -100
  848. package/esm/public/orm/mutation/index.d.ts +0 -401
  849. package/esm/public/orm/mutation/index.js +0 -498
  850. package/esm/public/orm/query/index.d.ts +0 -171
  851. package/esm/public/orm/query/index.js +0 -254
  852. package/objects/cli/commands/freeze-objects.d.ts +0 -8
  853. package/objects/cli/commands/freeze-objects.js +0 -36
  854. package/objects/cli/commands/get-all-objects-from-root.d.ts +0 -8
  855. package/objects/cli/commands/get-all-objects-from-root.js +0 -54
  856. package/objects/cli/commands/get-object-at-path.d.ts +0 -8
  857. package/objects/cli/commands/get-object-at-path.js +0 -49
  858. package/objects/cli/commands/get-path-objects-from-root.d.ts +0 -8
  859. package/objects/cli/commands/get-path-objects-from-root.js +0 -59
  860. package/objects/cli/commands/remove-node-at-path.d.ts +0 -8
  861. package/objects/cli/commands/remove-node-at-path.js +0 -36
  862. package/objects/cli/commands/rev-parse.d.ts +0 -8
  863. package/objects/cli/commands/rev-parse.js +0 -38
  864. package/objects/cli/commands/set-and-commit.d.ts +0 -8
  865. package/objects/cli/commands/set-and-commit.js +0 -36
  866. package/objects/cli/commands/set-props-and-commit.d.ts +0 -8
  867. package/objects/cli/commands/set-props-and-commit.js +0 -36
  868. package/objects/cli/commands/update-node-at-path.d.ts +0 -8
  869. package/objects/cli/commands/update-node-at-path.js +0 -36
  870. package/objects/orm/query/index.d.ts +0 -69
  871. package/objects/orm/query/index.js +0 -113
  872. package/public/cli/commands/agent-module.js +0 -692
  873. package/public/cli/commands/api-setting.js +0 -514
  874. package/public/cli/commands/app-admin-grant.d.ts +0 -8
  875. package/public/cli/commands/app-admin-grant.js +0 -286
  876. package/public/cli/commands/app-claimed-invite.d.ts +0 -8
  877. package/public/cli/commands/app-claimed-invite.js +0 -288
  878. package/public/cli/commands/app-grant.d.ts +0 -8
  879. package/public/cli/commands/app-grant.js +0 -308
  880. package/public/cli/commands/app-invite.d.ts +0 -8
  881. package/public/cli/commands/app-invite.js +0 -442
  882. package/public/cli/commands/app-limit-cap.d.ts +0 -8
  883. package/public/cli/commands/app-limit-cap.js +0 -272
  884. package/public/cli/commands/app-limit-caps-default.d.ts +0 -8
  885. package/public/cli/commands/app-limit-caps-default.js +0 -252
  886. package/public/cli/commands/app-limit-credit-code-item.d.ts +0 -8
  887. package/public/cli/commands/app-limit-credit-code-item.js +0 -292
  888. package/public/cli/commands/app-limit-credit-code.d.ts +0 -8
  889. package/public/cli/commands/app-limit-credit-code.js +0 -296
  890. package/public/cli/commands/app-limit-credit-redemption.d.ts +0 -8
  891. package/public/cli/commands/app-limit-credit-redemption.js +0 -250
  892. package/public/cli/commands/app-limit-credit.d.ts +0 -8
  893. package/public/cli/commands/app-limit-credit.js +0 -316
  894. package/public/cli/commands/app-limit-default.d.ts +0 -8
  895. package/public/cli/commands/app-limit-default.js +0 -274
  896. package/public/cli/commands/app-limit-event.d.ts +0 -8
  897. package/public/cli/commands/app-limit-event.js +0 -458
  898. package/public/cli/commands/app-limit-warning.d.ts +0 -8
  899. package/public/cli/commands/app-limit-warning.js +0 -290
  900. package/public/cli/commands/app-limit.d.ts +0 -8
  901. package/public/cli/commands/app-limit.js +0 -472
  902. package/public/cli/commands/app-membership-default.d.ts +0 -8
  903. package/public/cli/commands/app-membership-default.js +0 -310
  904. package/public/cli/commands/app-membership.d.ts +0 -8
  905. package/public/cli/commands/app-membership.js +0 -506
  906. package/public/cli/commands/app-owner-grant.d.ts +0 -8
  907. package/public/cli/commands/app-owner-grant.js +0 -286
  908. package/public/cli/commands/app-permission-default.d.ts +0 -8
  909. package/public/cli/commands/app-permission-default.js +0 -232
  910. package/public/cli/commands/app-permission.d.ts +0 -8
  911. package/public/cli/commands/app-permission.js +0 -298
  912. package/public/cli/commands/app-permissions-get-by-mask.d.ts +0 -8
  913. package/public/cli/commands/app-permissions-get-by-mask.js +0 -49
  914. package/public/cli/commands/app-permissions-get-mask-by-names.d.ts +0 -8
  915. package/public/cli/commands/app-permissions-get-mask-by-names.js +0 -30
  916. package/public/cli/commands/app-permissions-get-mask.d.ts +0 -8
  917. package/public/cli/commands/app-permissions-get-mask.js +0 -30
  918. package/public/cli/commands/app-permissions-get-padded-mask.d.ts +0 -8
  919. package/public/cli/commands/app-permissions-get-padded-mask.js +0 -30
  920. package/public/cli/commands/audit-log-auth.d.ts +0 -8
  921. package/public/cli/commands/audit-log-auth.js +0 -344
  922. package/public/cli/commands/billing-module.js +0 -582
  923. package/public/cli/commands/billing-provider-module.js +0 -626
  924. package/public/cli/commands/check-password.d.ts +0 -8
  925. package/public/cli/commands/check-password.js +0 -36
  926. package/public/cli/commands/compute-log-module.js +0 -516
  927. package/public/cli/commands/config-secrets-org-module.js +0 -296
  928. package/public/cli/commands/config-secrets-user-module.js +0 -318
  929. package/public/cli/commands/confirm-delete-account.d.ts +0 -8
  930. package/public/cli/commands/confirm-delete-account.js +0 -36
  931. package/public/cli/commands/connected-accounts-module.js +0 -338
  932. package/public/cli/commands/create-api-key.d.ts +0 -8
  933. package/public/cli/commands/create-api-key.js +0 -36
  934. package/public/cli/commands/crypto-address.d.ts +0 -8
  935. package/public/cli/commands/crypto-address.js +0 -330
  936. package/public/cli/commands/crypto-addresses-module.js +0 -360
  937. package/public/cli/commands/current-ip-address.d.ts +0 -8
  938. package/public/cli/commands/current-ip-address.js +0 -21
  939. package/public/cli/commands/current-user-agent.d.ts +0 -8
  940. package/public/cli/commands/current-user-agent.js +0 -21
  941. package/public/cli/commands/current-user-id.d.ts +0 -8
  942. package/public/cli/commands/current-user-id.js +0 -21
  943. package/public/cli/commands/current-user.d.ts +0 -8
  944. package/public/cli/commands/current-user.js +0 -27
  945. package/public/cli/commands/database-provision-module.js +0 -458
  946. package/public/cli/commands/database-setting.js +0 -494
  947. package/public/cli/commands/db-usage-module.js +0 -560
  948. package/public/cli/commands/disconnect-account.d.ts +0 -8
  949. package/public/cli/commands/disconnect-account.js +0 -36
  950. package/public/cli/commands/email.d.ts +0 -8
  951. package/public/cli/commands/email.js +0 -330
  952. package/public/cli/commands/emails-module.js +0 -338
  953. package/public/cli/commands/events-module.js +0 -1042
  954. package/public/cli/commands/extend-token-expires.d.ts +0 -8
  955. package/public/cli/commands/extend-token-expires.js +0 -36
  956. package/public/cli/commands/forgot-password.d.ts +0 -8
  957. package/public/cli/commands/forgot-password.js +0 -36
  958. package/public/cli/commands/full-text-search.js +0 -344
  959. package/public/cli/commands/function-module.js +0 -780
  960. package/public/cli/commands/graph-module.js +0 -586
  961. package/public/cli/commands/hierarchy-module.js +0 -606
  962. package/public/cli/commands/identity-provider.d.ts +0 -8
  963. package/public/cli/commands/identity-provider.js +0 -164
  964. package/public/cli/commands/identity-providers-module.js +0 -318
  965. package/public/cli/commands/inference-log-module.js +0 -516
  966. package/public/cli/commands/invites-module.js +0 -492
  967. package/public/cli/commands/limits-module.js +0 -888
  968. package/public/cli/commands/membership-type.d.ts +0 -8
  969. package/public/cli/commands/membership-type.js +0 -314
  970. package/public/cli/commands/memberships-module.js +0 -954
  971. package/public/cli/commands/merkle-store-module.js +0 -500
  972. package/public/cli/commands/namespace-module.js +0 -560
  973. package/public/cli/commands/notifications-module.js +0 -560
  974. package/public/cli/commands/org-admin-grant.d.ts +0 -8
  975. package/public/cli/commands/org-admin-grant.js +0 -306
  976. package/public/cli/commands/org-chart-edge-grant.d.ts +0 -8
  977. package/public/cli/commands/org-chart-edge-grant.js +0 -366
  978. package/public/cli/commands/org-chart-edge.d.ts +0 -8
  979. package/public/cli/commands/org-chart-edge.js +0 -328
  980. package/public/cli/commands/org-claimed-invite.d.ts +0 -8
  981. package/public/cli/commands/org-claimed-invite.js +0 -308
  982. package/public/cli/commands/org-get-managers-record.d.ts +0 -8
  983. package/public/cli/commands/org-get-managers-record.js +0 -126
  984. package/public/cli/commands/org-get-subordinates-record.d.ts +0 -8
  985. package/public/cli/commands/org-get-subordinates-record.js +0 -126
  986. package/public/cli/commands/org-grant.d.ts +0 -8
  987. package/public/cli/commands/org-grant.js +0 -328
  988. package/public/cli/commands/org-invite.d.ts +0 -8
  989. package/public/cli/commands/org-invite.js +0 -506
  990. package/public/cli/commands/org-is-manager-of.d.ts +0 -8
  991. package/public/cli/commands/org-is-manager-of.js +0 -45
  992. package/public/cli/commands/org-limit-aggregate.d.ts +0 -8
  993. package/public/cli/commands/org-limit-aggregate.js +0 -494
  994. package/public/cli/commands/org-limit-cap.d.ts +0 -8
  995. package/public/cli/commands/org-limit-cap.js +0 -272
  996. package/public/cli/commands/org-limit-caps-default.d.ts +0 -8
  997. package/public/cli/commands/org-limit-caps-default.js +0 -252
  998. package/public/cli/commands/org-limit-credit.d.ts +0 -8
  999. package/public/cli/commands/org-limit-credit.js +0 -338
  1000. package/public/cli/commands/org-limit-default.d.ts +0 -8
  1001. package/public/cli/commands/org-limit-default.js +0 -274
  1002. package/public/cli/commands/org-limit-event.d.ts +0 -8
  1003. package/public/cli/commands/org-limit-event.js +0 -458
  1004. package/public/cli/commands/org-limit-warning.d.ts +0 -8
  1005. package/public/cli/commands/org-limit-warning.js +0 -312
  1006. package/public/cli/commands/org-limit.d.ts +0 -8
  1007. package/public/cli/commands/org-limit.js +0 -492
  1008. package/public/cli/commands/org-member-profile.d.ts +0 -8
  1009. package/public/cli/commands/org-member-profile.js +0 -392
  1010. package/public/cli/commands/org-member.d.ts +0 -8
  1011. package/public/cli/commands/org-member.js +0 -272
  1012. package/public/cli/commands/org-membership-default.d.ts +0 -8
  1013. package/public/cli/commands/org-membership-default.js +0 -308
  1014. package/public/cli/commands/org-membership-setting.d.ts +0 -8
  1015. package/public/cli/commands/org-membership-setting.js +0 -462
  1016. package/public/cli/commands/org-membership.d.ts +0 -8
  1017. package/public/cli/commands/org-membership.js +0 -548
  1018. package/public/cli/commands/org-owner-grant.d.ts +0 -8
  1019. package/public/cli/commands/org-owner-grant.js +0 -306
  1020. package/public/cli/commands/org-permission-default.d.ts +0 -8
  1021. package/public/cli/commands/org-permission-default.js +0 -252
  1022. package/public/cli/commands/org-permission.d.ts +0 -8
  1023. package/public/cli/commands/org-permission.js +0 -298
  1024. package/public/cli/commands/org-permissions-get-by-mask.d.ts +0 -8
  1025. package/public/cli/commands/org-permissions-get-by-mask.js +0 -49
  1026. package/public/cli/commands/org-permissions-get-mask-by-names.d.ts +0 -8
  1027. package/public/cli/commands/org-permissions-get-mask-by-names.js +0 -30
  1028. package/public/cli/commands/org-permissions-get-mask.d.ts +0 -8
  1029. package/public/cli/commands/org-permissions-get-mask.js +0 -30
  1030. package/public/cli/commands/org-permissions-get-padded-mask.d.ts +0 -8
  1031. package/public/cli/commands/org-permissions-get-padded-mask.js +0 -30
  1032. package/public/cli/commands/permissions-module.js +0 -558
  1033. package/public/cli/commands/phone-number.d.ts +0 -8
  1034. package/public/cli/commands/phone-number.js +0 -350
  1035. package/public/cli/commands/phone-numbers-module.js +0 -338
  1036. package/public/cli/commands/plans-module.js +0 -472
  1037. package/public/cli/commands/profiles-module.js +0 -624
  1038. package/public/cli/commands/provision-new-user.d.ts +0 -8
  1039. package/public/cli/commands/provision-new-user.js +0 -36
  1040. package/public/cli/commands/rate-limit-meters-module.js +0 -450
  1041. package/public/cli/commands/realtime-module.js +0 -450
  1042. package/public/cli/commands/request-cross-origin-token.d.ts +0 -8
  1043. package/public/cli/commands/request-cross-origin-token.js +0 -36
  1044. package/public/cli/commands/require-step-up.d.ts +0 -8
  1045. package/public/cli/commands/require-step-up.js +0 -30
  1046. package/public/cli/commands/reset-password.d.ts +0 -8
  1047. package/public/cli/commands/reset-password.js +0 -36
  1048. package/public/cli/commands/revoke-api-key.d.ts +0 -8
  1049. package/public/cli/commands/revoke-api-key.js +0 -36
  1050. package/public/cli/commands/revoke-session.d.ts +0 -8
  1051. package/public/cli/commands/revoke-session.js +0 -36
  1052. package/public/cli/commands/rls-module.js +0 -428
  1053. package/public/cli/commands/role-type.d.ts +0 -8
  1054. package/public/cli/commands/role-type.js +0 -230
  1055. package/public/cli/commands/send-account-deletion-email.d.ts +0 -8
  1056. package/public/cli/commands/send-account-deletion-email.js +0 -36
  1057. package/public/cli/commands/send-verification-email.d.ts +0 -8
  1058. package/public/cli/commands/send-verification-email.js +0 -36
  1059. package/public/cli/commands/set-password.d.ts +0 -8
  1060. package/public/cli/commands/set-password.js +0 -36
  1061. package/public/cli/commands/sign-in-cross-origin.d.ts +0 -8
  1062. package/public/cli/commands/sign-in-cross-origin.js +0 -36
  1063. package/public/cli/commands/sign-in.d.ts +0 -8
  1064. package/public/cli/commands/sign-in.js +0 -36
  1065. package/public/cli/commands/sign-out.d.ts +0 -8
  1066. package/public/cli/commands/sign-out.js +0 -36
  1067. package/public/cli/commands/sign-up.d.ts +0 -8
  1068. package/public/cli/commands/sign-up.js +0 -36
  1069. package/public/cli/commands/storage-log-module.js +0 -516
  1070. package/public/cli/commands/storage-module.js +0 -934
  1071. package/public/cli/commands/submit-app-invite-code.d.ts +0 -8
  1072. package/public/cli/commands/submit-app-invite-code.js +0 -36
  1073. package/public/cli/commands/submit-org-invite-code.d.ts +0 -8
  1074. package/public/cli/commands/submit-org-invite-code.js +0 -36
  1075. package/public/cli/commands/transfer-log-module.js +0 -516
  1076. package/public/cli/commands/user-auth-module.js +0 -758
  1077. package/public/cli/commands/user-connected-account.d.ts +0 -8
  1078. package/public/cli/commands/user-connected-account.js +0 -176
  1079. package/public/cli/commands/user.d.ts +0 -8
  1080. package/public/cli/commands/user.js +0 -354
  1081. package/public/cli/commands/users-module.js +0 -340
  1082. package/public/cli/commands/verify-email.d.ts +0 -8
  1083. package/public/cli/commands/verify-email.js +0 -36
  1084. package/public/cli/commands/verify-password.d.ts +0 -8
  1085. package/public/cli/commands/verify-password.js +0 -36
  1086. package/public/cli/commands/verify-totp.d.ts +0 -8
  1087. package/public/cli/commands/verify-totp.js +0 -36
  1088. package/public/cli/commands/webauthn-credential.d.ts +0 -8
  1089. package/public/cli/commands/webauthn-credential.js +0 -456
  1090. package/public/cli/commands/webauthn-credentials-module.js +0 -340
  1091. package/public/cli/commands.js +0 -464
  1092. package/public/cli/executor.d.ts +0 -447
  1093. package/public/orm/index.d.ts +0 -627
  1094. package/public/orm/index.js +0 -367
  1095. package/public/orm/input-types.d.ts +0 -38680
  1096. package/public/orm/input-types.js +0 -227
  1097. package/public/orm/models/appAdminGrant.d.ts +0 -54
  1098. package/public/orm/models/appAdminGrant.js +0 -104
  1099. package/public/orm/models/appClaimedInvite.d.ts +0 -54
  1100. package/public/orm/models/appClaimedInvite.js +0 -104
  1101. package/public/orm/models/appGrant.d.ts +0 -54
  1102. package/public/orm/models/appGrant.js +0 -104
  1103. package/public/orm/models/appInvite.d.ts +0 -54
  1104. package/public/orm/models/appInvite.js +0 -104
  1105. package/public/orm/models/appLimit.d.ts +0 -54
  1106. package/public/orm/models/appLimit.js +0 -104
  1107. package/public/orm/models/appLimitCap.d.ts +0 -54
  1108. package/public/orm/models/appLimitCap.js +0 -104
  1109. package/public/orm/models/appLimitCapsDefault.d.ts +0 -54
  1110. package/public/orm/models/appLimitCapsDefault.js +0 -104
  1111. package/public/orm/models/appLimitCredit.d.ts +0 -54
  1112. package/public/orm/models/appLimitCredit.js +0 -104
  1113. package/public/orm/models/appLimitCreditCode.d.ts +0 -54
  1114. package/public/orm/models/appLimitCreditCode.js +0 -104
  1115. package/public/orm/models/appLimitCreditCodeItem.d.ts +0 -54
  1116. package/public/orm/models/appLimitCreditCodeItem.js +0 -104
  1117. package/public/orm/models/appLimitCreditRedemption.d.ts +0 -54
  1118. package/public/orm/models/appLimitCreditRedemption.js +0 -104
  1119. package/public/orm/models/appLimitDefault.d.ts +0 -54
  1120. package/public/orm/models/appLimitDefault.js +0 -104
  1121. package/public/orm/models/appLimitEvent.d.ts +0 -54
  1122. package/public/orm/models/appLimitEvent.js +0 -104
  1123. package/public/orm/models/appLimitWarning.d.ts +0 -54
  1124. package/public/orm/models/appLimitWarning.js +0 -104
  1125. package/public/orm/models/appMembership.d.ts +0 -54
  1126. package/public/orm/models/appMembership.js +0 -104
  1127. package/public/orm/models/appMembershipDefault.d.ts +0 -54
  1128. package/public/orm/models/appMembershipDefault.js +0 -104
  1129. package/public/orm/models/appOwnerGrant.d.ts +0 -54
  1130. package/public/orm/models/appOwnerGrant.js +0 -104
  1131. package/public/orm/models/appPermission.d.ts +0 -54
  1132. package/public/orm/models/appPermission.js +0 -104
  1133. package/public/orm/models/appPermissionDefault.d.ts +0 -54
  1134. package/public/orm/models/appPermissionDefault.js +0 -104
  1135. package/public/orm/models/auditLogAuth.d.ts +0 -54
  1136. package/public/orm/models/auditLogAuth.js +0 -104
  1137. package/public/orm/models/cryptoAddress.d.ts +0 -54
  1138. package/public/orm/models/cryptoAddress.js +0 -104
  1139. package/public/orm/models/email.d.ts +0 -54
  1140. package/public/orm/models/email.js +0 -104
  1141. package/public/orm/models/identityProvider.d.ts +0 -30
  1142. package/public/orm/models/identityProvider.js +0 -59
  1143. package/public/orm/models/index.d.ts +0 -155
  1144. package/public/orm/models/index.js +0 -310
  1145. package/public/orm/models/membershipType.d.ts +0 -54
  1146. package/public/orm/models/membershipType.js +0 -104
  1147. package/public/orm/models/orgAdminGrant.d.ts +0 -54
  1148. package/public/orm/models/orgAdminGrant.js +0 -104
  1149. package/public/orm/models/orgChartEdge.d.ts +0 -54
  1150. package/public/orm/models/orgChartEdge.js +0 -104
  1151. package/public/orm/models/orgChartEdgeGrant.d.ts +0 -54
  1152. package/public/orm/models/orgChartEdgeGrant.js +0 -104
  1153. package/public/orm/models/orgClaimedInvite.d.ts +0 -54
  1154. package/public/orm/models/orgClaimedInvite.js +0 -104
  1155. package/public/orm/models/orgGetManagersRecord.d.ts +0 -30
  1156. package/public/orm/models/orgGetManagersRecord.js +0 -59
  1157. package/public/orm/models/orgGetSubordinatesRecord.d.ts +0 -30
  1158. package/public/orm/models/orgGetSubordinatesRecord.js +0 -59
  1159. package/public/orm/models/orgGrant.d.ts +0 -54
  1160. package/public/orm/models/orgGrant.js +0 -104
  1161. package/public/orm/models/orgInvite.d.ts +0 -54
  1162. package/public/orm/models/orgInvite.js +0 -104
  1163. package/public/orm/models/orgLimit.d.ts +0 -54
  1164. package/public/orm/models/orgLimit.js +0 -104
  1165. package/public/orm/models/orgLimitAggregate.d.ts +0 -54
  1166. package/public/orm/models/orgLimitAggregate.js +0 -104
  1167. package/public/orm/models/orgLimitCap.d.ts +0 -54
  1168. package/public/orm/models/orgLimitCap.js +0 -104
  1169. package/public/orm/models/orgLimitCapsDefault.d.ts +0 -54
  1170. package/public/orm/models/orgLimitCapsDefault.js +0 -104
  1171. package/public/orm/models/orgLimitCredit.d.ts +0 -54
  1172. package/public/orm/models/orgLimitCredit.js +0 -104
  1173. package/public/orm/models/orgLimitDefault.d.ts +0 -54
  1174. package/public/orm/models/orgLimitDefault.js +0 -104
  1175. package/public/orm/models/orgLimitEvent.d.ts +0 -54
  1176. package/public/orm/models/orgLimitEvent.js +0 -104
  1177. package/public/orm/models/orgLimitWarning.d.ts +0 -54
  1178. package/public/orm/models/orgLimitWarning.js +0 -104
  1179. package/public/orm/models/orgMember.d.ts +0 -54
  1180. package/public/orm/models/orgMember.js +0 -104
  1181. package/public/orm/models/orgMemberProfile.d.ts +0 -54
  1182. package/public/orm/models/orgMemberProfile.js +0 -104
  1183. package/public/orm/models/orgMembership.d.ts +0 -54
  1184. package/public/orm/models/orgMembership.js +0 -104
  1185. package/public/orm/models/orgMembershipDefault.d.ts +0 -54
  1186. package/public/orm/models/orgMembershipDefault.js +0 -104
  1187. package/public/orm/models/orgMembershipSetting.d.ts +0 -54
  1188. package/public/orm/models/orgMembershipSetting.js +0 -104
  1189. package/public/orm/models/orgOwnerGrant.d.ts +0 -54
  1190. package/public/orm/models/orgOwnerGrant.js +0 -104
  1191. package/public/orm/models/orgPermission.d.ts +0 -54
  1192. package/public/orm/models/orgPermission.js +0 -104
  1193. package/public/orm/models/orgPermissionDefault.d.ts +0 -54
  1194. package/public/orm/models/orgPermissionDefault.js +0 -104
  1195. package/public/orm/models/phoneNumber.d.ts +0 -54
  1196. package/public/orm/models/phoneNumber.js +0 -104
  1197. package/public/orm/models/roleType.d.ts +0 -54
  1198. package/public/orm/models/roleType.js +0 -104
  1199. package/public/orm/models/user.d.ts +0 -54
  1200. package/public/orm/models/user.js +0 -104
  1201. package/public/orm/models/userConnectedAccount.d.ts +0 -36
  1202. package/public/orm/models/userConnectedAccount.js +0 -80
  1203. package/public/orm/models/webauthnCredential.d.ts +0 -54
  1204. package/public/orm/models/webauthnCredential.js +0 -104
  1205. package/public/orm/mutation/index.d.ts +0 -401
  1206. package/public/orm/mutation/index.js +0 -501
  1207. package/public/orm/query/index.d.ts +0 -171
  1208. package/public/orm/query/index.js +0 -257
  1209. /package/{esm/public → agent}/cli/commands/auth.d.ts +0 -0
  1210. /package/{public → agent}/cli/commands/auth.js +0 -0
  1211. /package/{esm/public → agent}/cli/commands/context.d.ts +0 -0
  1212. /package/{public → agent}/cli/commands/context.js +0 -0
  1213. /package/{esm/public → agent}/cli/commands/provision-bucket.d.ts +0 -0
  1214. /package/{public → agent}/cli/commands/provision-bucket.js +0 -0
  1215. /package/{esm/public → agent}/cli/commands.d.ts +0 -0
  1216. /package/{public → agent}/cli/executor.js +0 -0
  1217. /package/{esm/public → agent}/cli/index.d.ts +0 -0
  1218. /package/{public → agent}/cli/index.js +0 -0
  1219. /package/{esm/public → agent}/cli/utils.d.ts +0 -0
  1220. /package/{public → agent}/cli/utils.js +0 -0
  1221. /package/{esm/public → agent}/index.d.ts +0 -0
  1222. /package/{public → agent}/index.js +0 -0
  1223. /package/{esm/public → agent}/orm/client.d.ts +0 -0
  1224. /package/{public → agent}/orm/client.js +0 -0
  1225. /package/{esm/public → agent}/orm/query-builder.d.ts +0 -0
  1226. /package/{public → agent}/orm/query-builder.js +0 -0
  1227. /package/{esm/public → agent}/orm/realtime.d.ts +0 -0
  1228. /package/{public → agent}/orm/realtime.js +0 -0
  1229. /package/{esm/public → agent}/orm/select-types.d.ts +0 -0
  1230. /package/{public → agent}/orm/select-types.js +0 -0
  1231. /package/{esm/public → agent}/orm/types.d.ts +0 -0
  1232. /package/{public → agent}/orm/types.js +0 -0
  1233. /package/{esm/public → api}/cli/commands/accept-database-transfer.d.ts +0 -0
  1234. /package/{public → api}/cli/commands/accept-database-transfer.js +0 -0
  1235. /package/{esm/public → api}/cli/commands/api-module.d.ts +0 -0
  1236. /package/{public → api}/cli/commands/api-module.js +0 -0
  1237. /package/{esm/public → api}/cli/commands/api-schema.d.ts +0 -0
  1238. /package/{public → api}/cli/commands/api-schema.js +0 -0
  1239. /package/{esm/public → api}/cli/commands/api-setting.d.ts +0 -0
  1240. /package/{esm/public → api}/cli/commands/api.d.ts +0 -0
  1241. /package/{public → api}/cli/commands/api.js +0 -0
  1242. /package/{esm/public → api}/cli/commands/app.d.ts +0 -0
  1243. /package/{public → api}/cli/commands/app.js +0 -0
  1244. /package/{esm/public → api}/cli/commands/apply-registry-defaults.d.ts +0 -0
  1245. /package/{public → api}/cli/commands/apply-registry-defaults.js +0 -0
  1246. /package/{esm/public → api}/cli/commands/apply-rls.d.ts +0 -0
  1247. /package/{public → api}/cli/commands/apply-rls.js +0 -0
  1248. /package/{esm/public → api}/cli/commands/ast-migration.d.ts +0 -0
  1249. /package/{public → api}/cli/commands/ast-migration.js +0 -0
  1250. /package/{public → api}/cli/commands/auth.d.ts +0 -0
  1251. /package/{esm/public → api}/cli/commands/bootstrap-user.d.ts +0 -0
  1252. /package/{public → api}/cli/commands/bootstrap-user.js +0 -0
  1253. /package/{esm/public → api}/cli/commands/cancel-database-transfer.d.ts +0 -0
  1254. /package/{public → api}/cli/commands/cancel-database-transfer.js +0 -0
  1255. /package/{esm/public → api}/cli/commands/check-constraint.d.ts +0 -0
  1256. /package/{public → api}/cli/commands/check-constraint.js +0 -0
  1257. /package/{public → api}/cli/commands/context.d.ts +0 -0
  1258. /package/{esm/public → api}/cli/commands/cors-setting.d.ts +0 -0
  1259. /package/{public → api}/cli/commands/cors-setting.js +0 -0
  1260. /package/{esm/public → api}/cli/commands/create-user-database.d.ts +0 -0
  1261. /package/{public → api}/cli/commands/create-user-database.js +0 -0
  1262. /package/{esm/public → api}/cli/commands/database-setting.d.ts +0 -0
  1263. /package/{esm/public → api}/cli/commands/database-transfer.d.ts +0 -0
  1264. /package/{public → api}/cli/commands/database-transfer.js +0 -0
  1265. /package/{esm/public → api}/cli/commands/database.d.ts +0 -0
  1266. /package/{public → api}/cli/commands/database.js +0 -0
  1267. /package/{esm/public → api}/cli/commands/default-privilege.d.ts +0 -0
  1268. /package/{public → api}/cli/commands/default-privilege.js +0 -0
  1269. /package/{esm/public → api}/cli/commands/domain.d.ts +0 -0
  1270. /package/{public → api}/cli/commands/domain.js +0 -0
  1271. /package/{esm/public → api}/cli/commands/embedding-chunk.d.ts +0 -0
  1272. /package/{public → api}/cli/commands/embedding-chunk.js +0 -0
  1273. /package/{esm/public → api}/cli/commands/enum.d.ts +0 -0
  1274. /package/{public → api}/cli/commands/enum.js +0 -0
  1275. /package/{esm/public → api}/cli/commands/field.d.ts +0 -0
  1276. /package/{public → api}/cli/commands/field.js +0 -0
  1277. /package/{esm/public → api}/cli/commands/foreign-key-constraint.d.ts +0 -0
  1278. /package/{public → api}/cli/commands/foreign-key-constraint.js +0 -0
  1279. /package/{esm/public → api}/cli/commands/full-text-search.d.ts +0 -0
  1280. /package/{esm/public → api}/cli/commands/function.d.ts +0 -0
  1281. /package/{public → api}/cli/commands/function.js +0 -0
  1282. /package/{esm/public → api}/cli/commands/index.d.ts +0 -0
  1283. /package/{public → api}/cli/commands/index.js +0 -0
  1284. /package/{esm/public → api}/cli/commands/migrate-file.d.ts +0 -0
  1285. /package/{public → api}/cli/commands/migrate-file.js +0 -0
  1286. /package/{esm/public → api}/cli/commands/node-type-registry.d.ts +0 -0
  1287. /package/{public → api}/cli/commands/node-type-registry.js +0 -0
  1288. /package/{esm/public → api}/cli/commands/partition.d.ts +0 -0
  1289. /package/{public → api}/cli/commands/partition.js +0 -0
  1290. /package/{esm/public → api}/cli/commands/policy.d.ts +0 -0
  1291. /package/{public → api}/cli/commands/policy.js +0 -0
  1292. /package/{esm/public → api}/cli/commands/primary-key-constraint.d.ts +0 -0
  1293. /package/{public → api}/cli/commands/primary-key-constraint.js +0 -0
  1294. /package/{public → api}/cli/commands/provision-bucket.d.ts +0 -0
  1295. /package/{esm/public → api}/cli/commands/provision-database-with-user.d.ts +0 -0
  1296. /package/{public → api}/cli/commands/provision-database-with-user.js +0 -0
  1297. /package/{esm/public → api}/cli/commands/pubkey-setting.d.ts +0 -0
  1298. /package/{public → api}/cli/commands/pubkey-setting.js +0 -0
  1299. /package/{esm/public → api}/cli/commands/reject-database-transfer.d.ts +0 -0
  1300. /package/{public → api}/cli/commands/reject-database-transfer.js +0 -0
  1301. /package/{esm/public → api}/cli/commands/rls-setting.d.ts +0 -0
  1302. /package/{public → api}/cli/commands/rls-setting.js +0 -0
  1303. /package/{esm/public → api}/cli/commands/schema-grant.d.ts +0 -0
  1304. /package/{public → api}/cli/commands/schema-grant.js +0 -0
  1305. /package/{esm/public → api}/cli/commands/schema.d.ts +0 -0
  1306. /package/{public → api}/cli/commands/schema.js +0 -0
  1307. /package/{esm/public → api}/cli/commands/set-field-order.d.ts +0 -0
  1308. /package/{public → api}/cli/commands/set-field-order.js +0 -0
  1309. /package/{esm/public → api}/cli/commands/site-metadatum.d.ts +0 -0
  1310. /package/{public → api}/cli/commands/site-metadatum.js +0 -0
  1311. /package/{esm/public → api}/cli/commands/site-module.d.ts +0 -0
  1312. /package/{public → api}/cli/commands/site-module.js +0 -0
  1313. /package/{esm/public → api}/cli/commands/site-theme.d.ts +0 -0
  1314. /package/{public → api}/cli/commands/site-theme.js +0 -0
  1315. /package/{esm/public → api}/cli/commands/site.d.ts +0 -0
  1316. /package/{public → api}/cli/commands/site.js +0 -0
  1317. /package/{esm/public → api}/cli/commands/spatial-relation.d.ts +0 -0
  1318. /package/{public → api}/cli/commands/spatial-relation.js +0 -0
  1319. /package/{esm/public → api}/cli/commands/sql-action.d.ts +0 -0
  1320. /package/{public → api}/cli/commands/sql-action.js +0 -0
  1321. /package/{esm/public → api}/cli/commands/table-grant.d.ts +0 -0
  1322. /package/{public → api}/cli/commands/table-grant.js +0 -0
  1323. /package/{esm/public → api}/cli/commands/table.d.ts +0 -0
  1324. /package/{public → api}/cli/commands/table.js +0 -0
  1325. /package/{esm/public → api}/cli/commands/trigger-function.d.ts +0 -0
  1326. /package/{public → api}/cli/commands/trigger-function.js +0 -0
  1327. /package/{esm/public → api}/cli/commands/trigger.d.ts +0 -0
  1328. /package/{public → api}/cli/commands/trigger.js +0 -0
  1329. /package/{esm/public → api}/cli/commands/unique-constraint.d.ts +0 -0
  1330. /package/{public → api}/cli/commands/unique-constraint.js +0 -0
  1331. /package/{esm/public → api}/cli/commands/view-grant.d.ts +0 -0
  1332. /package/{public → api}/cli/commands/view-grant.js +0 -0
  1333. /package/{esm/public → api}/cli/commands/view-rule.d.ts +0 -0
  1334. /package/{public → api}/cli/commands/view-rule.js +0 -0
  1335. /package/{esm/public → api}/cli/commands/view-table.d.ts +0 -0
  1336. /package/{public → api}/cli/commands/view-table.js +0 -0
  1337. /package/{esm/public → api}/cli/commands/view.d.ts +0 -0
  1338. /package/{public → api}/cli/commands/view.js +0 -0
  1339. /package/{esm/public → api}/cli/commands/webauthn-setting.d.ts +0 -0
  1340. /package/{public → api}/cli/commands/webauthn-setting.js +0 -0
  1341. /package/{public → api}/cli/commands.d.ts +0 -0
  1342. /package/{public → api}/cli/index.d.ts +0 -0
  1343. /package/{public → api}/cli/utils.d.ts +0 -0
  1344. /package/{public → api}/index.d.ts +0 -0
  1345. /package/{public → api}/orm/client.d.ts +0 -0
  1346. /package/{esm/public → api}/orm/models/api.d.ts +0 -0
  1347. /package/{public → api}/orm/models/api.js +0 -0
  1348. /package/{esm/public → api}/orm/models/apiModule.d.ts +0 -0
  1349. /package/{public → api}/orm/models/apiModule.js +0 -0
  1350. /package/{esm/public → api}/orm/models/apiSchema.d.ts +0 -0
  1351. /package/{public → api}/orm/models/apiSchema.js +0 -0
  1352. /package/{esm/public → api}/orm/models/apiSetting.d.ts +0 -0
  1353. /package/{public → api}/orm/models/apiSetting.js +0 -0
  1354. /package/{esm/public → api}/orm/models/app.d.ts +0 -0
  1355. /package/{public → api}/orm/models/app.js +0 -0
  1356. /package/{esm/public → api}/orm/models/astMigration.d.ts +0 -0
  1357. /package/{public → api}/orm/models/astMigration.js +0 -0
  1358. /package/{esm/public → api}/orm/models/checkConstraint.d.ts +0 -0
  1359. /package/{public → api}/orm/models/checkConstraint.js +0 -0
  1360. /package/{esm/public → api}/orm/models/corsSetting.d.ts +0 -0
  1361. /package/{public → api}/orm/models/corsSetting.js +0 -0
  1362. /package/{esm/public → api}/orm/models/database.d.ts +0 -0
  1363. /package/{public → api}/orm/models/database.js +0 -0
  1364. /package/{esm/public → api}/orm/models/databaseSetting.d.ts +0 -0
  1365. /package/{public → api}/orm/models/databaseSetting.js +0 -0
  1366. /package/{esm/public → api}/orm/models/databaseTransfer.d.ts +0 -0
  1367. /package/{public → api}/orm/models/databaseTransfer.js +0 -0
  1368. /package/{esm/public → api}/orm/models/defaultPrivilege.d.ts +0 -0
  1369. /package/{public → api}/orm/models/defaultPrivilege.js +0 -0
  1370. /package/{esm/public → api}/orm/models/domain.d.ts +0 -0
  1371. /package/{public → api}/orm/models/domain.js +0 -0
  1372. /package/{esm/public → api}/orm/models/embeddingChunk.d.ts +0 -0
  1373. /package/{public → api}/orm/models/embeddingChunk.js +0 -0
  1374. /package/{esm/public → api}/orm/models/enum.d.ts +0 -0
  1375. /package/{public → api}/orm/models/enum.js +0 -0
  1376. /package/{esm/public → api}/orm/models/field.d.ts +0 -0
  1377. /package/{public → api}/orm/models/field.js +0 -0
  1378. /package/{esm/public → api}/orm/models/foreignKeyConstraint.d.ts +0 -0
  1379. /package/{public → api}/orm/models/foreignKeyConstraint.js +0 -0
  1380. /package/{esm/public → api}/orm/models/fullTextSearch.d.ts +0 -0
  1381. /package/{public → api}/orm/models/fullTextSearch.js +0 -0
  1382. /package/{esm/public → api}/orm/models/function.d.ts +0 -0
  1383. /package/{public → api}/orm/models/function.js +0 -0
  1384. /package/{esm/public → api}/orm/models/indexModel.d.ts +0 -0
  1385. /package/{public → api}/orm/models/indexModel.js +0 -0
  1386. /package/{esm/public → api}/orm/models/migrateFile.d.ts +0 -0
  1387. /package/{public → api}/orm/models/migrateFile.js +0 -0
  1388. /package/{esm/public → api}/orm/models/nodeTypeRegistry.d.ts +0 -0
  1389. /package/{public → api}/orm/models/nodeTypeRegistry.js +0 -0
  1390. /package/{esm/public → api}/orm/models/partition.d.ts +0 -0
  1391. /package/{public → api}/orm/models/partition.js +0 -0
  1392. /package/{esm/public → api}/orm/models/policy.d.ts +0 -0
  1393. /package/{public → api}/orm/models/policy.js +0 -0
  1394. /package/{esm/public → api}/orm/models/primaryKeyConstraint.d.ts +0 -0
  1395. /package/{public → api}/orm/models/primaryKeyConstraint.js +0 -0
  1396. /package/{esm/public → api}/orm/models/pubkeySetting.d.ts +0 -0
  1397. /package/{public → api}/orm/models/pubkeySetting.js +0 -0
  1398. /package/{esm/public → api}/orm/models/rlsSetting.d.ts +0 -0
  1399. /package/{public → api}/orm/models/rlsSetting.js +0 -0
  1400. /package/{esm/public → api}/orm/models/schema.d.ts +0 -0
  1401. /package/{public → api}/orm/models/schema.js +0 -0
  1402. /package/{esm/public → api}/orm/models/schemaGrant.d.ts +0 -0
  1403. /package/{public → api}/orm/models/schemaGrant.js +0 -0
  1404. /package/{esm/public → api}/orm/models/site.d.ts +0 -0
  1405. /package/{public → api}/orm/models/site.js +0 -0
  1406. /package/{esm/public → api}/orm/models/siteMetadatum.d.ts +0 -0
  1407. /package/{public → api}/orm/models/siteMetadatum.js +0 -0
  1408. /package/{esm/public → api}/orm/models/siteModule.d.ts +0 -0
  1409. /package/{public → api}/orm/models/siteModule.js +0 -0
  1410. /package/{esm/public → api}/orm/models/siteTheme.d.ts +0 -0
  1411. /package/{public → api}/orm/models/siteTheme.js +0 -0
  1412. /package/{esm/public → api}/orm/models/spatialRelation.d.ts +0 -0
  1413. /package/{public → api}/orm/models/spatialRelation.js +0 -0
  1414. /package/{esm/public → api}/orm/models/sqlAction.d.ts +0 -0
  1415. /package/{public → api}/orm/models/sqlAction.js +0 -0
  1416. /package/{esm/public → api}/orm/models/table.d.ts +0 -0
  1417. /package/{public → api}/orm/models/table.js +0 -0
  1418. /package/{esm/public → api}/orm/models/tableGrant.d.ts +0 -0
  1419. /package/{public → api}/orm/models/tableGrant.js +0 -0
  1420. /package/{esm/public → api}/orm/models/trigger.d.ts +0 -0
  1421. /package/{public → api}/orm/models/trigger.js +0 -0
  1422. /package/{esm/public → api}/orm/models/triggerFunction.d.ts +0 -0
  1423. /package/{public → api}/orm/models/triggerFunction.js +0 -0
  1424. /package/{esm/public → api}/orm/models/uniqueConstraint.d.ts +0 -0
  1425. /package/{public → api}/orm/models/uniqueConstraint.js +0 -0
  1426. /package/{esm/public → api}/orm/models/view.d.ts +0 -0
  1427. /package/{public → api}/orm/models/view.js +0 -0
  1428. /package/{esm/public → api}/orm/models/viewGrant.d.ts +0 -0
  1429. /package/{public → api}/orm/models/viewGrant.js +0 -0
  1430. /package/{esm/public → api}/orm/models/viewRule.d.ts +0 -0
  1431. /package/{public → api}/orm/models/viewRule.js +0 -0
  1432. /package/{esm/public → api}/orm/models/viewTable.d.ts +0 -0
  1433. /package/{public → api}/orm/models/viewTable.js +0 -0
  1434. /package/{esm/public → api}/orm/models/webauthnSetting.d.ts +0 -0
  1435. /package/{public → api}/orm/models/webauthnSetting.js +0 -0
  1436. /package/{public → api}/orm/query-builder.d.ts +0 -0
  1437. /package/{public → api}/orm/realtime.d.ts +0 -0
  1438. /package/{public → api}/orm/select-types.d.ts +0 -0
  1439. /package/{public → api}/orm/types.d.ts +0 -0
  1440. /package/esm/{public → agent}/cli/commands/auth.js +0 -0
  1441. /package/esm/{public → agent}/cli/commands/context.js +0 -0
  1442. /package/esm/{public → agent}/cli/commands/provision-bucket.js +0 -0
  1443. /package/esm/{public → agent}/cli/executor.js +0 -0
  1444. /package/esm/{public/orm/select-types.js → agent/cli/index.d.ts} +0 -0
  1445. /package/esm/{public → agent}/cli/index.js +0 -0
  1446. /package/esm/{public → agent}/cli/utils.js +0 -0
  1447. /package/esm/{public/index.js → agent/index.d.ts} +0 -0
  1448. /package/esm/{public → agent}/orm/client.js +0 -0
  1449. /package/esm/{public → agent}/orm/query-builder.js +0 -0
  1450. /package/esm/{public → agent}/orm/realtime.js +0 -0
  1451. /package/esm/{public → agent}/orm/types.js +0 -0
  1452. /package/{public → esm/api}/cli/commands/accept-database-transfer.d.ts +0 -0
  1453. /package/esm/{public → api}/cli/commands/accept-database-transfer.js +0 -0
  1454. /package/{public → esm/api}/cli/commands/api-module.d.ts +0 -0
  1455. /package/esm/{public → api}/cli/commands/api-module.js +0 -0
  1456. /package/{public → esm/api}/cli/commands/api-schema.d.ts +0 -0
  1457. /package/esm/{public → api}/cli/commands/api-schema.js +0 -0
  1458. /package/{public → esm/api}/cli/commands/api-setting.d.ts +0 -0
  1459. /package/{public → esm/api}/cli/commands/api.d.ts +0 -0
  1460. /package/esm/{public → api}/cli/commands/api.js +0 -0
  1461. /package/{public → esm/api}/cli/commands/app.d.ts +0 -0
  1462. /package/esm/{public → api}/cli/commands/app.js +0 -0
  1463. /package/{public → esm/api}/cli/commands/apply-registry-defaults.d.ts +0 -0
  1464. /package/esm/{public → api}/cli/commands/apply-registry-defaults.js +0 -0
  1465. /package/{public → esm/api}/cli/commands/apply-rls.d.ts +0 -0
  1466. /package/esm/{public → api}/cli/commands/apply-rls.js +0 -0
  1467. /package/{public → esm/api}/cli/commands/ast-migration.d.ts +0 -0
  1468. /package/esm/{public → api}/cli/commands/ast-migration.js +0 -0
  1469. /package/{public → esm/api}/cli/commands/bootstrap-user.d.ts +0 -0
  1470. /package/esm/{public → api}/cli/commands/bootstrap-user.js +0 -0
  1471. /package/{public → esm/api}/cli/commands/cancel-database-transfer.d.ts +0 -0
  1472. /package/esm/{public → api}/cli/commands/cancel-database-transfer.js +0 -0
  1473. /package/{public → esm/api}/cli/commands/check-constraint.d.ts +0 -0
  1474. /package/esm/{public → api}/cli/commands/check-constraint.js +0 -0
  1475. /package/{public → esm/api}/cli/commands/cors-setting.d.ts +0 -0
  1476. /package/esm/{public → api}/cli/commands/cors-setting.js +0 -0
  1477. /package/{public → esm/api}/cli/commands/create-user-database.d.ts +0 -0
  1478. /package/esm/{public → api}/cli/commands/create-user-database.js +0 -0
  1479. /package/{public → esm/api}/cli/commands/database-setting.d.ts +0 -0
  1480. /package/{public → esm/api}/cli/commands/database-transfer.d.ts +0 -0
  1481. /package/esm/{public → api}/cli/commands/database-transfer.js +0 -0
  1482. /package/{public → esm/api}/cli/commands/database.d.ts +0 -0
  1483. /package/esm/{public → api}/cli/commands/database.js +0 -0
  1484. /package/{public → esm/api}/cli/commands/default-privilege.d.ts +0 -0
  1485. /package/esm/{public → api}/cli/commands/default-privilege.js +0 -0
  1486. /package/{public → esm/api}/cli/commands/domain.d.ts +0 -0
  1487. /package/esm/{public → api}/cli/commands/domain.js +0 -0
  1488. /package/{public → esm/api}/cli/commands/embedding-chunk.d.ts +0 -0
  1489. /package/esm/{public → api}/cli/commands/embedding-chunk.js +0 -0
  1490. /package/{public → esm/api}/cli/commands/enum.d.ts +0 -0
  1491. /package/esm/{public → api}/cli/commands/enum.js +0 -0
  1492. /package/{public → esm/api}/cli/commands/field.d.ts +0 -0
  1493. /package/esm/{public → api}/cli/commands/field.js +0 -0
  1494. /package/{public → esm/api}/cli/commands/foreign-key-constraint.d.ts +0 -0
  1495. /package/esm/{public → api}/cli/commands/foreign-key-constraint.js +0 -0
  1496. /package/{public → esm/api}/cli/commands/full-text-search.d.ts +0 -0
  1497. /package/{public → esm/api}/cli/commands/function.d.ts +0 -0
  1498. /package/esm/{public → api}/cli/commands/function.js +0 -0
  1499. /package/{public → esm/api}/cli/commands/index.d.ts +0 -0
  1500. /package/esm/{public → api}/cli/commands/index.js +0 -0
  1501. /package/{public → esm/api}/cli/commands/migrate-file.d.ts +0 -0
  1502. /package/esm/{public → api}/cli/commands/migrate-file.js +0 -0
  1503. /package/{public → esm/api}/cli/commands/node-type-registry.d.ts +0 -0
  1504. /package/esm/{public → api}/cli/commands/node-type-registry.js +0 -0
  1505. /package/{public → esm/api}/cli/commands/partition.d.ts +0 -0
  1506. /package/esm/{public → api}/cli/commands/partition.js +0 -0
  1507. /package/{public → esm/api}/cli/commands/policy.d.ts +0 -0
  1508. /package/esm/{public → api}/cli/commands/policy.js +0 -0
  1509. /package/{public → esm/api}/cli/commands/primary-key-constraint.d.ts +0 -0
  1510. /package/esm/{public → api}/cli/commands/primary-key-constraint.js +0 -0
  1511. /package/{public → esm/api}/cli/commands/provision-database-with-user.d.ts +0 -0
  1512. /package/esm/{public → api}/cli/commands/provision-database-with-user.js +0 -0
  1513. /package/{public → esm/api}/cli/commands/pubkey-setting.d.ts +0 -0
  1514. /package/esm/{public → api}/cli/commands/pubkey-setting.js +0 -0
  1515. /package/{public → esm/api}/cli/commands/reject-database-transfer.d.ts +0 -0
  1516. /package/esm/{public → api}/cli/commands/reject-database-transfer.js +0 -0
  1517. /package/{public → esm/api}/cli/commands/rls-setting.d.ts +0 -0
  1518. /package/esm/{public → api}/cli/commands/rls-setting.js +0 -0
  1519. /package/{public → esm/api}/cli/commands/schema-grant.d.ts +0 -0
  1520. /package/esm/{public → api}/cli/commands/schema-grant.js +0 -0
  1521. /package/{public → esm/api}/cli/commands/schema.d.ts +0 -0
  1522. /package/esm/{public → api}/cli/commands/schema.js +0 -0
  1523. /package/{public → esm/api}/cli/commands/set-field-order.d.ts +0 -0
  1524. /package/esm/{public → api}/cli/commands/set-field-order.js +0 -0
  1525. /package/{public → esm/api}/cli/commands/site-metadatum.d.ts +0 -0
  1526. /package/esm/{public → api}/cli/commands/site-metadatum.js +0 -0
  1527. /package/{public → esm/api}/cli/commands/site-module.d.ts +0 -0
  1528. /package/esm/{public → api}/cli/commands/site-module.js +0 -0
  1529. /package/{public → esm/api}/cli/commands/site-theme.d.ts +0 -0
  1530. /package/esm/{public → api}/cli/commands/site-theme.js +0 -0
  1531. /package/{public → esm/api}/cli/commands/site.d.ts +0 -0
  1532. /package/esm/{public → api}/cli/commands/site.js +0 -0
  1533. /package/{public → esm/api}/cli/commands/spatial-relation.d.ts +0 -0
  1534. /package/esm/{public → api}/cli/commands/spatial-relation.js +0 -0
  1535. /package/{public → esm/api}/cli/commands/sql-action.d.ts +0 -0
  1536. /package/esm/{public → api}/cli/commands/sql-action.js +0 -0
  1537. /package/{public → esm/api}/cli/commands/table-grant.d.ts +0 -0
  1538. /package/esm/{public → api}/cli/commands/table-grant.js +0 -0
  1539. /package/{public → esm/api}/cli/commands/table.d.ts +0 -0
  1540. /package/esm/{public → api}/cli/commands/table.js +0 -0
  1541. /package/{public → esm/api}/cli/commands/trigger-function.d.ts +0 -0
  1542. /package/esm/{public → api}/cli/commands/trigger-function.js +0 -0
  1543. /package/{public → esm/api}/cli/commands/trigger.d.ts +0 -0
  1544. /package/esm/{public → api}/cli/commands/trigger.js +0 -0
  1545. /package/{public → esm/api}/cli/commands/unique-constraint.d.ts +0 -0
  1546. /package/esm/{public → api}/cli/commands/unique-constraint.js +0 -0
  1547. /package/{public → esm/api}/cli/commands/view-grant.d.ts +0 -0
  1548. /package/esm/{public → api}/cli/commands/view-grant.js +0 -0
  1549. /package/{public → esm/api}/cli/commands/view-rule.d.ts +0 -0
  1550. /package/esm/{public → api}/cli/commands/view-rule.js +0 -0
  1551. /package/{public → esm/api}/cli/commands/view-table.d.ts +0 -0
  1552. /package/esm/{public → api}/cli/commands/view-table.js +0 -0
  1553. /package/{public → esm/api}/cli/commands/view.d.ts +0 -0
  1554. /package/esm/{public → api}/cli/commands/view.js +0 -0
  1555. /package/{public → esm/api}/cli/commands/webauthn-setting.d.ts +0 -0
  1556. /package/esm/{public → api}/cli/commands/webauthn-setting.js +0 -0
  1557. /package/{public → esm/api}/orm/models/api.d.ts +0 -0
  1558. /package/esm/{public → api}/orm/models/api.js +0 -0
  1559. /package/{public → esm/api}/orm/models/apiModule.d.ts +0 -0
  1560. /package/esm/{public → api}/orm/models/apiModule.js +0 -0
  1561. /package/{public → esm/api}/orm/models/apiSchema.d.ts +0 -0
  1562. /package/esm/{public → api}/orm/models/apiSchema.js +0 -0
  1563. /package/{public → esm/api}/orm/models/apiSetting.d.ts +0 -0
  1564. /package/esm/{public → api}/orm/models/apiSetting.js +0 -0
  1565. /package/{public → esm/api}/orm/models/app.d.ts +0 -0
  1566. /package/esm/{public → api}/orm/models/app.js +0 -0
  1567. /package/{public → esm/api}/orm/models/astMigration.d.ts +0 -0
  1568. /package/esm/{public → api}/orm/models/astMigration.js +0 -0
  1569. /package/{public → esm/api}/orm/models/checkConstraint.d.ts +0 -0
  1570. /package/esm/{public → api}/orm/models/checkConstraint.js +0 -0
  1571. /package/{public → esm/api}/orm/models/corsSetting.d.ts +0 -0
  1572. /package/esm/{public → api}/orm/models/corsSetting.js +0 -0
  1573. /package/{public → esm/api}/orm/models/database.d.ts +0 -0
  1574. /package/esm/{public → api}/orm/models/database.js +0 -0
  1575. /package/{public → esm/api}/orm/models/databaseSetting.d.ts +0 -0
  1576. /package/esm/{public → api}/orm/models/databaseSetting.js +0 -0
  1577. /package/{public → esm/api}/orm/models/databaseTransfer.d.ts +0 -0
  1578. /package/esm/{public → api}/orm/models/databaseTransfer.js +0 -0
  1579. /package/{public → esm/api}/orm/models/defaultPrivilege.d.ts +0 -0
  1580. /package/esm/{public → api}/orm/models/defaultPrivilege.js +0 -0
  1581. /package/{public → esm/api}/orm/models/domain.d.ts +0 -0
  1582. /package/esm/{public → api}/orm/models/domain.js +0 -0
  1583. /package/{public → esm/api}/orm/models/embeddingChunk.d.ts +0 -0
  1584. /package/esm/{public → api}/orm/models/embeddingChunk.js +0 -0
  1585. /package/{public → esm/api}/orm/models/enum.d.ts +0 -0
  1586. /package/esm/{public → api}/orm/models/enum.js +0 -0
  1587. /package/{public → esm/api}/orm/models/field.d.ts +0 -0
  1588. /package/esm/{public → api}/orm/models/field.js +0 -0
  1589. /package/{public → esm/api}/orm/models/foreignKeyConstraint.d.ts +0 -0
  1590. /package/esm/{public → api}/orm/models/foreignKeyConstraint.js +0 -0
  1591. /package/{public → esm/api}/orm/models/fullTextSearch.d.ts +0 -0
  1592. /package/esm/{public → api}/orm/models/fullTextSearch.js +0 -0
  1593. /package/{public → esm/api}/orm/models/function.d.ts +0 -0
  1594. /package/esm/{public → api}/orm/models/function.js +0 -0
  1595. /package/{public → esm/api}/orm/models/indexModel.d.ts +0 -0
  1596. /package/esm/{public → api}/orm/models/indexModel.js +0 -0
  1597. /package/{public → esm/api}/orm/models/migrateFile.d.ts +0 -0
  1598. /package/esm/{public → api}/orm/models/migrateFile.js +0 -0
  1599. /package/{public → esm/api}/orm/models/nodeTypeRegistry.d.ts +0 -0
  1600. /package/esm/{public → api}/orm/models/nodeTypeRegistry.js +0 -0
  1601. /package/{public → esm/api}/orm/models/partition.d.ts +0 -0
  1602. /package/esm/{public → api}/orm/models/partition.js +0 -0
  1603. /package/{public → esm/api}/orm/models/policy.d.ts +0 -0
  1604. /package/esm/{public → api}/orm/models/policy.js +0 -0
  1605. /package/{public → esm/api}/orm/models/primaryKeyConstraint.d.ts +0 -0
  1606. /package/esm/{public → api}/orm/models/primaryKeyConstraint.js +0 -0
  1607. /package/{public → esm/api}/orm/models/pubkeySetting.d.ts +0 -0
  1608. /package/esm/{public → api}/orm/models/pubkeySetting.js +0 -0
  1609. /package/{public → esm/api}/orm/models/rlsSetting.d.ts +0 -0
  1610. /package/esm/{public → api}/orm/models/rlsSetting.js +0 -0
  1611. /package/{public → esm/api}/orm/models/schema.d.ts +0 -0
  1612. /package/esm/{public → api}/orm/models/schema.js +0 -0
  1613. /package/{public → esm/api}/orm/models/schemaGrant.d.ts +0 -0
  1614. /package/esm/{public → api}/orm/models/schemaGrant.js +0 -0
  1615. /package/{public → esm/api}/orm/models/site.d.ts +0 -0
  1616. /package/esm/{public → api}/orm/models/site.js +0 -0
  1617. /package/{public → esm/api}/orm/models/siteMetadatum.d.ts +0 -0
  1618. /package/esm/{public → api}/orm/models/siteMetadatum.js +0 -0
  1619. /package/{public → esm/api}/orm/models/siteModule.d.ts +0 -0
  1620. /package/esm/{public → api}/orm/models/siteModule.js +0 -0
  1621. /package/{public → esm/api}/orm/models/siteTheme.d.ts +0 -0
  1622. /package/esm/{public → api}/orm/models/siteTheme.js +0 -0
  1623. /package/{public → esm/api}/orm/models/spatialRelation.d.ts +0 -0
  1624. /package/esm/{public → api}/orm/models/spatialRelation.js +0 -0
  1625. /package/{public → esm/api}/orm/models/sqlAction.d.ts +0 -0
  1626. /package/esm/{public → api}/orm/models/sqlAction.js +0 -0
  1627. /package/{public → esm/api}/orm/models/table.d.ts +0 -0
  1628. /package/esm/{public → api}/orm/models/table.js +0 -0
  1629. /package/{public → esm/api}/orm/models/tableGrant.d.ts +0 -0
  1630. /package/esm/{public → api}/orm/models/tableGrant.js +0 -0
  1631. /package/{public → esm/api}/orm/models/trigger.d.ts +0 -0
  1632. /package/esm/{public → api}/orm/models/trigger.js +0 -0
  1633. /package/{public → esm/api}/orm/models/triggerFunction.d.ts +0 -0
  1634. /package/esm/{public → api}/orm/models/triggerFunction.js +0 -0
  1635. /package/{public → esm/api}/orm/models/uniqueConstraint.d.ts +0 -0
  1636. /package/esm/{public → api}/orm/models/uniqueConstraint.js +0 -0
  1637. /package/{public → esm/api}/orm/models/view.d.ts +0 -0
  1638. /package/esm/{public → api}/orm/models/view.js +0 -0
  1639. /package/{public → esm/api}/orm/models/viewGrant.d.ts +0 -0
  1640. /package/esm/{public → api}/orm/models/viewGrant.js +0 -0
  1641. /package/{public → esm/api}/orm/models/viewRule.d.ts +0 -0
  1642. /package/esm/{public → api}/orm/models/viewRule.js +0 -0
  1643. /package/{public → esm/api}/orm/models/viewTable.d.ts +0 -0
  1644. /package/esm/{public → api}/orm/models/viewTable.js +0 -0
  1645. /package/{public → esm/api}/orm/models/webauthnSetting.d.ts +0 -0
  1646. /package/esm/{public → api}/orm/models/webauthnSetting.js +0 -0
  1647. /package/esm/{public → modules}/cli/commands/agent-module.d.ts +0 -0
  1648. /package/esm/{public → modules}/cli/commands/billing-module.d.ts +0 -0
  1649. /package/esm/{public → modules}/cli/commands/billing-provider-module.d.ts +0 -0
  1650. /package/esm/{public → modules}/cli/commands/blueprint-construction.d.ts +0 -0
  1651. /package/esm/{public → modules}/cli/commands/blueprint-construction.js +0 -0
  1652. /package/esm/{public → modules}/cli/commands/blueprint-template.d.ts +0 -0
  1653. /package/esm/{public → modules}/cli/commands/blueprint-template.js +0 -0
  1654. /package/esm/{public → modules}/cli/commands/blueprint.d.ts +0 -0
  1655. /package/esm/{public → modules}/cli/commands/blueprint.js +0 -0
  1656. /package/esm/{public → modules}/cli/commands/compute-log-module.d.ts +0 -0
  1657. /package/esm/{public → modules}/cli/commands/config-secrets-org-module.d.ts +0 -0
  1658. /package/esm/{public → modules}/cli/commands/config-secrets-user-module.d.ts +0 -0
  1659. /package/esm/{public → modules}/cli/commands/connected-accounts-module.d.ts +0 -0
  1660. /package/esm/{public → modules}/cli/commands/construct-blueprint.d.ts +0 -0
  1661. /package/esm/{public → modules}/cli/commands/construct-blueprint.js +0 -0
  1662. /package/esm/{public → modules}/cli/commands/copy-template-to-blueprint.d.ts +0 -0
  1663. /package/esm/{public → modules}/cli/commands/copy-template-to-blueprint.js +0 -0
  1664. /package/esm/{public → modules}/cli/commands/crypto-addresses-module.d.ts +0 -0
  1665. /package/esm/{public → modules}/cli/commands/crypto-auth-module.d.ts +0 -0
  1666. /package/esm/{public → modules}/cli/commands/crypto-auth-module.js +0 -0
  1667. /package/esm/{public → modules}/cli/commands/database-provision-module.d.ts +0 -0
  1668. /package/esm/{public → modules}/cli/commands/db-usage-module.d.ts +0 -0
  1669. /package/esm/{public → modules}/cli/commands/default-ids-module.d.ts +0 -0
  1670. /package/esm/{public → modules}/cli/commands/default-ids-module.js +0 -0
  1671. /package/esm/{public → modules}/cli/commands/denormalized-table-field.d.ts +0 -0
  1672. /package/esm/{public → modules}/cli/commands/denormalized-table-field.js +0 -0
  1673. /package/esm/{public → modules}/cli/commands/devices-module.d.ts +0 -0
  1674. /package/esm/{public → modules}/cli/commands/devices-module.js +0 -0
  1675. /package/esm/{public → modules}/cli/commands/emails-module.d.ts +0 -0
  1676. /package/esm/{public → modules}/cli/commands/entity-type-provision.d.ts +0 -0
  1677. /package/esm/{public → modules}/cli/commands/entity-type-provision.js +0 -0
  1678. /package/esm/{public → modules}/cli/commands/events-module.d.ts +0 -0
  1679. /package/esm/{public → modules}/cli/commands/function-module.d.ts +0 -0
  1680. /package/esm/{public → modules}/cli/commands/graph-module.d.ts +0 -0
  1681. /package/esm/{public → modules}/cli/commands/hierarchy-module.d.ts +0 -0
  1682. /package/esm/{public → modules}/cli/commands/identity-providers-module.d.ts +0 -0
  1683. /package/esm/{public → modules}/cli/commands/inference-log-module.d.ts +0 -0
  1684. /package/esm/{public → modules}/cli/commands/invites-module.d.ts +0 -0
  1685. /package/esm/{public → modules}/cli/commands/limits-module.d.ts +0 -0
  1686. /package/esm/{public → modules}/cli/commands/membership-types-module.d.ts +0 -0
  1687. /package/esm/{public → modules}/cli/commands/membership-types-module.js +0 -0
  1688. /package/esm/{public → modules}/cli/commands/memberships-module.d.ts +0 -0
  1689. /package/esm/{public → modules}/cli/commands/merkle-store-module.d.ts +0 -0
  1690. /package/esm/{public → modules}/cli/commands/namespace-module.d.ts +0 -0
  1691. /package/esm/{public → modules}/cli/commands/notifications-module.d.ts +0 -0
  1692. /package/esm/{public → modules}/cli/commands/permissions-module.d.ts +0 -0
  1693. /package/esm/{public → modules}/cli/commands/phone-numbers-module.d.ts +0 -0
  1694. /package/esm/{public → modules}/cli/commands/plans-module.d.ts +0 -0
  1695. /package/esm/{public → modules}/cli/commands/profiles-module.d.ts +0 -0
  1696. /package/esm/{public → modules}/cli/commands/provision-check-constraint.d.ts +0 -0
  1697. /package/esm/{public → modules}/cli/commands/provision-check-constraint.js +0 -0
  1698. /package/esm/{public → modules}/cli/commands/provision-full-text-search.d.ts +0 -0
  1699. /package/esm/{public → modules}/cli/commands/provision-full-text-search.js +0 -0
  1700. /package/esm/{public → modules}/cli/commands/provision-index.d.ts +0 -0
  1701. /package/esm/{public → modules}/cli/commands/provision-index.js +0 -0
  1702. /package/esm/{public → modules}/cli/commands/provision-relation.d.ts +0 -0
  1703. /package/esm/{public → modules}/cli/commands/provision-relation.js +0 -0
  1704. /package/esm/{public → modules}/cli/commands/provision-spatial-relation.d.ts +0 -0
  1705. /package/esm/{public → modules}/cli/commands/provision-spatial-relation.js +0 -0
  1706. /package/esm/{public → modules}/cli/commands/provision-table.d.ts +0 -0
  1707. /package/esm/{public → modules}/cli/commands/provision-table.js +0 -0
  1708. /package/esm/{public → modules}/cli/commands/provision-unique-constraint.d.ts +0 -0
  1709. /package/esm/{public → modules}/cli/commands/provision-unique-constraint.js +0 -0
  1710. /package/esm/{public → modules}/cli/commands/rate-limit-meters-module.d.ts +0 -0
  1711. /package/esm/{public → modules}/cli/commands/rate-limits-module.d.ts +0 -0
  1712. /package/esm/{public → modules}/cli/commands/rate-limits-module.js +0 -0
  1713. /package/esm/{public → modules}/cli/commands/realtime-module.d.ts +0 -0
  1714. /package/esm/{public → modules}/cli/commands/relation-provision.d.ts +0 -0
  1715. /package/esm/{public → modules}/cli/commands/relation-provision.js +0 -0
  1716. /package/esm/{public → modules}/cli/commands/resolve-blueprint-field.d.ts +0 -0
  1717. /package/esm/{public → modules}/cli/commands/resolve-blueprint-field.js +0 -0
  1718. /package/esm/{public → modules}/cli/commands/resolve-blueprint-table.d.ts +0 -0
  1719. /package/esm/{public → modules}/cli/commands/resolve-blueprint-table.js +0 -0
  1720. /package/esm/{public → modules}/cli/commands/rls-module.d.ts +0 -0
  1721. /package/esm/{public → modules}/cli/commands/secure-table-provision.d.ts +0 -0
  1722. /package/esm/{public → modules}/cli/commands/secure-table-provision.js +0 -0
  1723. /package/esm/{public → modules}/cli/commands/session-secrets-module.d.ts +0 -0
  1724. /package/esm/{public → modules}/cli/commands/session-secrets-module.js +0 -0
  1725. /package/esm/{public → modules}/cli/commands/sessions-module.d.ts +0 -0
  1726. /package/esm/{public → modules}/cli/commands/sessions-module.js +0 -0
  1727. /package/esm/{public → modules}/cli/commands/storage-log-module.d.ts +0 -0
  1728. /package/esm/{public → modules}/cli/commands/storage-module.d.ts +0 -0
  1729. /package/esm/{public → modules}/cli/commands/transfer-log-module.d.ts +0 -0
  1730. /package/esm/{public → modules}/cli/commands/user-auth-module.d.ts +0 -0
  1731. /package/esm/{public → modules}/cli/commands/user-state-module.d.ts +0 -0
  1732. /package/esm/{public → modules}/cli/commands/user-state-module.js +0 -0
  1733. /package/esm/{public → modules}/cli/commands/users-module.d.ts +0 -0
  1734. /package/esm/{public → modules}/cli/commands/webauthn-auth-module.d.ts +0 -0
  1735. /package/esm/{public → modules}/cli/commands/webauthn-auth-module.js +0 -0
  1736. /package/esm/{public → modules}/cli/commands/webauthn-credentials-module.d.ts +0 -0
  1737. /package/esm/{public → modules}/orm/models/agentModule.d.ts +0 -0
  1738. /package/esm/{public → modules}/orm/models/agentModule.js +0 -0
  1739. /package/esm/{public → modules}/orm/models/billingModule.d.ts +0 -0
  1740. /package/esm/{public → modules}/orm/models/billingModule.js +0 -0
  1741. /package/esm/{public → modules}/orm/models/billingProviderModule.d.ts +0 -0
  1742. /package/esm/{public → modules}/orm/models/billingProviderModule.js +0 -0
  1743. /package/esm/{public → modules}/orm/models/blueprint.d.ts +0 -0
  1744. /package/esm/{public → modules}/orm/models/blueprint.js +0 -0
  1745. /package/esm/{public → modules}/orm/models/blueprintConstruction.d.ts +0 -0
  1746. /package/esm/{public → modules}/orm/models/blueprintConstruction.js +0 -0
  1747. /package/esm/{public → modules}/orm/models/blueprintTemplate.d.ts +0 -0
  1748. /package/esm/{public → modules}/orm/models/blueprintTemplate.js +0 -0
  1749. /package/esm/{public → modules}/orm/models/computeLogModule.d.ts +0 -0
  1750. /package/esm/{public → modules}/orm/models/computeLogModule.js +0 -0
  1751. /package/esm/{public → modules}/orm/models/configSecretsOrgModule.d.ts +0 -0
  1752. /package/esm/{public → modules}/orm/models/configSecretsOrgModule.js +0 -0
  1753. /package/esm/{public → modules}/orm/models/configSecretsUserModule.d.ts +0 -0
  1754. /package/esm/{public → modules}/orm/models/configSecretsUserModule.js +0 -0
  1755. /package/esm/{public → modules}/orm/models/connectedAccountsModule.d.ts +0 -0
  1756. /package/esm/{public → modules}/orm/models/connectedAccountsModule.js +0 -0
  1757. /package/esm/{public → modules}/orm/models/cryptoAddressesModule.d.ts +0 -0
  1758. /package/esm/{public → modules}/orm/models/cryptoAddressesModule.js +0 -0
  1759. /package/esm/{public → modules}/orm/models/cryptoAuthModule.d.ts +0 -0
  1760. /package/esm/{public → modules}/orm/models/cryptoAuthModule.js +0 -0
  1761. /package/esm/{public → modules}/orm/models/databaseProvisionModule.d.ts +0 -0
  1762. /package/esm/{public → modules}/orm/models/databaseProvisionModule.js +0 -0
  1763. /package/esm/{public → modules}/orm/models/dbUsageModule.d.ts +0 -0
  1764. /package/esm/{public → modules}/orm/models/dbUsageModule.js +0 -0
  1765. /package/esm/{public → modules}/orm/models/defaultIdsModule.d.ts +0 -0
  1766. /package/esm/{public → modules}/orm/models/defaultIdsModule.js +0 -0
  1767. /package/esm/{public → modules}/orm/models/denormalizedTableField.d.ts +0 -0
  1768. /package/esm/{public → modules}/orm/models/denormalizedTableField.js +0 -0
  1769. /package/esm/{public → modules}/orm/models/devicesModule.d.ts +0 -0
  1770. /package/esm/{public → modules}/orm/models/devicesModule.js +0 -0
  1771. /package/esm/{public → modules}/orm/models/emailsModule.d.ts +0 -0
  1772. /package/esm/{public → modules}/orm/models/emailsModule.js +0 -0
  1773. /package/esm/{public → modules}/orm/models/entityTypeProvision.d.ts +0 -0
  1774. /package/esm/{public → modules}/orm/models/entityTypeProvision.js +0 -0
  1775. /package/esm/{public → modules}/orm/models/eventsModule.d.ts +0 -0
  1776. /package/esm/{public → modules}/orm/models/eventsModule.js +0 -0
  1777. /package/esm/{public → modules}/orm/models/functionModule.d.ts +0 -0
  1778. /package/esm/{public → modules}/orm/models/functionModule.js +0 -0
  1779. /package/esm/{public → modules}/orm/models/graphModule.d.ts +0 -0
  1780. /package/esm/{public → modules}/orm/models/graphModule.js +0 -0
  1781. /package/esm/{public → modules}/orm/models/hierarchyModule.d.ts +0 -0
  1782. /package/esm/{public → modules}/orm/models/hierarchyModule.js +0 -0
  1783. /package/esm/{public → modules}/orm/models/identityProvidersModule.d.ts +0 -0
  1784. /package/esm/{public → modules}/orm/models/identityProvidersModule.js +0 -0
  1785. /package/esm/{public → modules}/orm/models/inferenceLogModule.d.ts +0 -0
  1786. /package/esm/{public → modules}/orm/models/inferenceLogModule.js +0 -0
  1787. /package/esm/{public → modules}/orm/models/invitesModule.d.ts +0 -0
  1788. /package/esm/{public → modules}/orm/models/invitesModule.js +0 -0
  1789. /package/esm/{public → modules}/orm/models/limitsModule.d.ts +0 -0
  1790. /package/esm/{public → modules}/orm/models/limitsModule.js +0 -0
  1791. /package/esm/{public → modules}/orm/models/membershipTypesModule.d.ts +0 -0
  1792. /package/esm/{public → modules}/orm/models/membershipTypesModule.js +0 -0
  1793. /package/esm/{public → modules}/orm/models/membershipsModule.d.ts +0 -0
  1794. /package/esm/{public → modules}/orm/models/membershipsModule.js +0 -0
  1795. /package/esm/{public → modules}/orm/models/merkleStoreModule.d.ts +0 -0
  1796. /package/esm/{public → modules}/orm/models/merkleStoreModule.js +0 -0
  1797. /package/esm/{public → modules}/orm/models/namespaceModule.d.ts +0 -0
  1798. /package/esm/{public → modules}/orm/models/namespaceModule.js +0 -0
  1799. /package/esm/{public → modules}/orm/models/notificationsModule.d.ts +0 -0
  1800. /package/esm/{public → modules}/orm/models/notificationsModule.js +0 -0
  1801. /package/esm/{public → modules}/orm/models/permissionsModule.d.ts +0 -0
  1802. /package/esm/{public → modules}/orm/models/permissionsModule.js +0 -0
  1803. /package/esm/{public → modules}/orm/models/phoneNumbersModule.d.ts +0 -0
  1804. /package/esm/{public → modules}/orm/models/phoneNumbersModule.js +0 -0
  1805. /package/esm/{public → modules}/orm/models/plansModule.d.ts +0 -0
  1806. /package/esm/{public → modules}/orm/models/plansModule.js +0 -0
  1807. /package/esm/{public → modules}/orm/models/profilesModule.d.ts +0 -0
  1808. /package/esm/{public → modules}/orm/models/profilesModule.js +0 -0
  1809. /package/esm/{public → modules}/orm/models/rateLimitMetersModule.d.ts +0 -0
  1810. /package/esm/{public → modules}/orm/models/rateLimitMetersModule.js +0 -0
  1811. /package/esm/{public → modules}/orm/models/rateLimitsModule.d.ts +0 -0
  1812. /package/esm/{public → modules}/orm/models/rateLimitsModule.js +0 -0
  1813. /package/esm/{public → modules}/orm/models/realtimeModule.d.ts +0 -0
  1814. /package/esm/{public → modules}/orm/models/realtimeModule.js +0 -0
  1815. /package/esm/{public → modules}/orm/models/relationProvision.d.ts +0 -0
  1816. /package/esm/{public → modules}/orm/models/relationProvision.js +0 -0
  1817. /package/esm/{public → modules}/orm/models/rlsModule.d.ts +0 -0
  1818. /package/esm/{public → modules}/orm/models/rlsModule.js +0 -0
  1819. /package/esm/{public → modules}/orm/models/secureTableProvision.d.ts +0 -0
  1820. /package/esm/{public → modules}/orm/models/secureTableProvision.js +0 -0
  1821. /package/esm/{public → modules}/orm/models/sessionSecretsModule.d.ts +0 -0
  1822. /package/esm/{public → modules}/orm/models/sessionSecretsModule.js +0 -0
  1823. /package/esm/{public → modules}/orm/models/sessionsModule.d.ts +0 -0
  1824. /package/esm/{public → modules}/orm/models/sessionsModule.js +0 -0
  1825. /package/esm/{public → modules}/orm/models/storageLogModule.d.ts +0 -0
  1826. /package/esm/{public → modules}/orm/models/storageLogModule.js +0 -0
  1827. /package/esm/{public → modules}/orm/models/storageModule.d.ts +0 -0
  1828. /package/esm/{public → modules}/orm/models/storageModule.js +0 -0
  1829. /package/esm/{public → modules}/orm/models/transferLogModule.d.ts +0 -0
  1830. /package/esm/{public → modules}/orm/models/transferLogModule.js +0 -0
  1831. /package/esm/{public → modules}/orm/models/userAuthModule.d.ts +0 -0
  1832. /package/esm/{public → modules}/orm/models/userAuthModule.js +0 -0
  1833. /package/esm/{public → modules}/orm/models/userStateModule.d.ts +0 -0
  1834. /package/esm/{public → modules}/orm/models/userStateModule.js +0 -0
  1835. /package/esm/{public → modules}/orm/models/usersModule.d.ts +0 -0
  1836. /package/esm/{public → modules}/orm/models/usersModule.js +0 -0
  1837. /package/esm/{public → modules}/orm/models/webauthnAuthModule.d.ts +0 -0
  1838. /package/esm/{public → modules}/orm/models/webauthnAuthModule.js +0 -0
  1839. /package/esm/{public → modules}/orm/models/webauthnCredentialsModule.d.ts +0 -0
  1840. /package/esm/{public → modules}/orm/models/webauthnCredentialsModule.js +0 -0
  1841. /package/{admin → esm/usage}/cli/commands/app-limit-cap.d.ts +0 -0
  1842. /package/esm/{admin → usage}/cli/commands/app-limit-cap.js +0 -0
  1843. /package/{admin → esm/usage}/cli/commands/app-limit-caps-default.d.ts +0 -0
  1844. /package/esm/{admin → usage}/cli/commands/app-limit-caps-default.js +0 -0
  1845. /package/{admin → esm/usage}/cli/commands/app-limit-credit-code-item.d.ts +0 -0
  1846. /package/esm/{admin → usage}/cli/commands/app-limit-credit-code-item.js +0 -0
  1847. /package/{admin → esm/usage}/cli/commands/app-limit-credit-code.d.ts +0 -0
  1848. /package/esm/{admin → usage}/cli/commands/app-limit-credit-code.js +0 -0
  1849. /package/{admin → esm/usage}/cli/commands/app-limit-credit-redemption.d.ts +0 -0
  1850. /package/{admin → esm/usage}/cli/commands/app-limit-credit.d.ts +0 -0
  1851. /package/esm/{admin → usage}/cli/commands/app-limit-credit.js +0 -0
  1852. /package/{admin → esm/usage}/cli/commands/app-limit-default.d.ts +0 -0
  1853. /package/esm/{admin → usage}/cli/commands/app-limit-default.js +0 -0
  1854. /package/{admin → esm/usage}/cli/commands/app-limit-event.d.ts +0 -0
  1855. /package/esm/{admin → usage}/cli/commands/app-limit-event.js +0 -0
  1856. /package/{admin → esm/usage}/cli/commands/app-limit-warning.d.ts +0 -0
  1857. /package/esm/{admin → usage}/cli/commands/app-limit-warning.js +0 -0
  1858. /package/{admin → esm/usage}/cli/commands/app-limit.d.ts +0 -0
  1859. /package/esm/{admin → usage}/cli/commands/app-limit.js +0 -0
  1860. /package/{admin → esm/usage}/cli/commands/org-limit-aggregate.d.ts +0 -0
  1861. /package/esm/{admin → usage}/cli/commands/org-limit-aggregate.js +0 -0
  1862. /package/{admin → esm/usage}/cli/commands/org-limit-cap.d.ts +0 -0
  1863. /package/esm/{admin → usage}/cli/commands/org-limit-cap.js +0 -0
  1864. /package/{admin → esm/usage}/cli/commands/org-limit-caps-default.d.ts +0 -0
  1865. /package/esm/{admin → usage}/cli/commands/org-limit-caps-default.js +0 -0
  1866. /package/{admin → esm/usage}/cli/commands/org-limit-credit.d.ts +0 -0
  1867. /package/{admin → esm/usage}/cli/commands/org-limit-default.d.ts +0 -0
  1868. /package/esm/{admin → usage}/cli/commands/org-limit-default.js +0 -0
  1869. /package/{admin → esm/usage}/cli/commands/org-limit-event.d.ts +0 -0
  1870. /package/esm/{admin → usage}/cli/commands/org-limit-event.js +0 -0
  1871. /package/{admin → esm/usage}/cli/commands/org-limit-warning.d.ts +0 -0
  1872. /package/esm/{admin → usage}/cli/commands/org-limit-warning.js +0 -0
  1873. /package/{admin → esm/usage}/cli/commands/org-limit.d.ts +0 -0
  1874. /package/esm/{admin → usage}/cli/commands/org-limit.js +0 -0
  1875. /package/{admin → esm/usage}/orm/models/appLimit.d.ts +0 -0
  1876. /package/esm/{admin → usage}/orm/models/appLimit.js +0 -0
  1877. /package/{admin → esm/usage}/orm/models/appLimitCap.d.ts +0 -0
  1878. /package/esm/{admin → usage}/orm/models/appLimitCap.js +0 -0
  1879. /package/{admin → esm/usage}/orm/models/appLimitCapsDefault.d.ts +0 -0
  1880. /package/esm/{admin → usage}/orm/models/appLimitCapsDefault.js +0 -0
  1881. /package/{admin → esm/usage}/orm/models/appLimitCredit.d.ts +0 -0
  1882. /package/esm/{admin → usage}/orm/models/appLimitCredit.js +0 -0
  1883. /package/{admin → esm/usage}/orm/models/appLimitCreditCode.d.ts +0 -0
  1884. /package/esm/{admin → usage}/orm/models/appLimitCreditCode.js +0 -0
  1885. /package/{admin → esm/usage}/orm/models/appLimitCreditCodeItem.d.ts +0 -0
  1886. /package/esm/{admin → usage}/orm/models/appLimitCreditCodeItem.js +0 -0
  1887. /package/{admin → esm/usage}/orm/models/appLimitCreditRedemption.d.ts +0 -0
  1888. /package/esm/{admin → usage}/orm/models/appLimitCreditRedemption.js +0 -0
  1889. /package/{admin → esm/usage}/orm/models/appLimitDefault.d.ts +0 -0
  1890. /package/esm/{admin → usage}/orm/models/appLimitDefault.js +0 -0
  1891. /package/{admin → esm/usage}/orm/models/appLimitEvent.d.ts +0 -0
  1892. /package/esm/{admin → usage}/orm/models/appLimitEvent.js +0 -0
  1893. /package/{admin → esm/usage}/orm/models/appLimitWarning.d.ts +0 -0
  1894. /package/esm/{admin → usage}/orm/models/appLimitWarning.js +0 -0
  1895. /package/{admin → esm/usage}/orm/models/orgLimit.d.ts +0 -0
  1896. /package/esm/{admin → usage}/orm/models/orgLimit.js +0 -0
  1897. /package/{admin → esm/usage}/orm/models/orgLimitAggregate.d.ts +0 -0
  1898. /package/esm/{admin → usage}/orm/models/orgLimitAggregate.js +0 -0
  1899. /package/{admin → esm/usage}/orm/models/orgLimitCap.d.ts +0 -0
  1900. /package/esm/{admin → usage}/orm/models/orgLimitCap.js +0 -0
  1901. /package/{admin → esm/usage}/orm/models/orgLimitCapsDefault.d.ts +0 -0
  1902. /package/esm/{admin → usage}/orm/models/orgLimitCapsDefault.js +0 -0
  1903. /package/{admin → esm/usage}/orm/models/orgLimitCredit.d.ts +0 -0
  1904. /package/esm/{admin → usage}/orm/models/orgLimitCredit.js +0 -0
  1905. /package/{admin → esm/usage}/orm/models/orgLimitDefault.d.ts +0 -0
  1906. /package/esm/{admin → usage}/orm/models/orgLimitDefault.js +0 -0
  1907. /package/{admin → esm/usage}/orm/models/orgLimitEvent.d.ts +0 -0
  1908. /package/esm/{admin → usage}/orm/models/orgLimitEvent.js +0 -0
  1909. /package/{admin → esm/usage}/orm/models/orgLimitWarning.d.ts +0 -0
  1910. /package/esm/{admin → usage}/orm/models/orgLimitWarning.js +0 -0
  1911. /package/{public → modules}/cli/commands/agent-module.d.ts +0 -0
  1912. /package/{public → modules}/cli/commands/billing-module.d.ts +0 -0
  1913. /package/{public → modules}/cli/commands/billing-provider-module.d.ts +0 -0
  1914. /package/{public → modules}/cli/commands/blueprint-construction.d.ts +0 -0
  1915. /package/{public → modules}/cli/commands/blueprint-construction.js +0 -0
  1916. /package/{public → modules}/cli/commands/blueprint-template.d.ts +0 -0
  1917. /package/{public → modules}/cli/commands/blueprint-template.js +0 -0
  1918. /package/{public → modules}/cli/commands/blueprint.d.ts +0 -0
  1919. /package/{public → modules}/cli/commands/blueprint.js +0 -0
  1920. /package/{public → modules}/cli/commands/compute-log-module.d.ts +0 -0
  1921. /package/{public → modules}/cli/commands/config-secrets-org-module.d.ts +0 -0
  1922. /package/{public → modules}/cli/commands/config-secrets-user-module.d.ts +0 -0
  1923. /package/{public → modules}/cli/commands/connected-accounts-module.d.ts +0 -0
  1924. /package/{public → modules}/cli/commands/construct-blueprint.d.ts +0 -0
  1925. /package/{public → modules}/cli/commands/construct-blueprint.js +0 -0
  1926. /package/{public → modules}/cli/commands/copy-template-to-blueprint.d.ts +0 -0
  1927. /package/{public → modules}/cli/commands/copy-template-to-blueprint.js +0 -0
  1928. /package/{public → modules}/cli/commands/crypto-addresses-module.d.ts +0 -0
  1929. /package/{public → modules}/cli/commands/crypto-auth-module.d.ts +0 -0
  1930. /package/{public → modules}/cli/commands/crypto-auth-module.js +0 -0
  1931. /package/{public → modules}/cli/commands/database-provision-module.d.ts +0 -0
  1932. /package/{public → modules}/cli/commands/db-usage-module.d.ts +0 -0
  1933. /package/{public → modules}/cli/commands/default-ids-module.d.ts +0 -0
  1934. /package/{public → modules}/cli/commands/default-ids-module.js +0 -0
  1935. /package/{public → modules}/cli/commands/denormalized-table-field.d.ts +0 -0
  1936. /package/{public → modules}/cli/commands/denormalized-table-field.js +0 -0
  1937. /package/{public → modules}/cli/commands/devices-module.d.ts +0 -0
  1938. /package/{public → modules}/cli/commands/devices-module.js +0 -0
  1939. /package/{public → modules}/cli/commands/emails-module.d.ts +0 -0
  1940. /package/{public → modules}/cli/commands/entity-type-provision.d.ts +0 -0
  1941. /package/{public → modules}/cli/commands/entity-type-provision.js +0 -0
  1942. /package/{public → modules}/cli/commands/events-module.d.ts +0 -0
  1943. /package/{public → modules}/cli/commands/function-module.d.ts +0 -0
  1944. /package/{public → modules}/cli/commands/graph-module.d.ts +0 -0
  1945. /package/{public → modules}/cli/commands/hierarchy-module.d.ts +0 -0
  1946. /package/{public → modules}/cli/commands/identity-providers-module.d.ts +0 -0
  1947. /package/{public → modules}/cli/commands/inference-log-module.d.ts +0 -0
  1948. /package/{public → modules}/cli/commands/invites-module.d.ts +0 -0
  1949. /package/{public → modules}/cli/commands/limits-module.d.ts +0 -0
  1950. /package/{public → modules}/cli/commands/membership-types-module.d.ts +0 -0
  1951. /package/{public → modules}/cli/commands/membership-types-module.js +0 -0
  1952. /package/{public → modules}/cli/commands/memberships-module.d.ts +0 -0
  1953. /package/{public → modules}/cli/commands/merkle-store-module.d.ts +0 -0
  1954. /package/{public → modules}/cli/commands/namespace-module.d.ts +0 -0
  1955. /package/{public → modules}/cli/commands/notifications-module.d.ts +0 -0
  1956. /package/{public → modules}/cli/commands/permissions-module.d.ts +0 -0
  1957. /package/{public → modules}/cli/commands/phone-numbers-module.d.ts +0 -0
  1958. /package/{public → modules}/cli/commands/plans-module.d.ts +0 -0
  1959. /package/{public → modules}/cli/commands/profiles-module.d.ts +0 -0
  1960. /package/{public → modules}/cli/commands/provision-check-constraint.d.ts +0 -0
  1961. /package/{public → modules}/cli/commands/provision-check-constraint.js +0 -0
  1962. /package/{public → modules}/cli/commands/provision-full-text-search.d.ts +0 -0
  1963. /package/{public → modules}/cli/commands/provision-full-text-search.js +0 -0
  1964. /package/{public → modules}/cli/commands/provision-index.d.ts +0 -0
  1965. /package/{public → modules}/cli/commands/provision-index.js +0 -0
  1966. /package/{public → modules}/cli/commands/provision-relation.d.ts +0 -0
  1967. /package/{public → modules}/cli/commands/provision-relation.js +0 -0
  1968. /package/{public → modules}/cli/commands/provision-spatial-relation.d.ts +0 -0
  1969. /package/{public → modules}/cli/commands/provision-spatial-relation.js +0 -0
  1970. /package/{public → modules}/cli/commands/provision-table.d.ts +0 -0
  1971. /package/{public → modules}/cli/commands/provision-table.js +0 -0
  1972. /package/{public → modules}/cli/commands/provision-unique-constraint.d.ts +0 -0
  1973. /package/{public → modules}/cli/commands/provision-unique-constraint.js +0 -0
  1974. /package/{public → modules}/cli/commands/rate-limit-meters-module.d.ts +0 -0
  1975. /package/{public → modules}/cli/commands/rate-limits-module.d.ts +0 -0
  1976. /package/{public → modules}/cli/commands/rate-limits-module.js +0 -0
  1977. /package/{public → modules}/cli/commands/realtime-module.d.ts +0 -0
  1978. /package/{public → modules}/cli/commands/relation-provision.d.ts +0 -0
  1979. /package/{public → modules}/cli/commands/relation-provision.js +0 -0
  1980. /package/{public → modules}/cli/commands/resolve-blueprint-field.d.ts +0 -0
  1981. /package/{public → modules}/cli/commands/resolve-blueprint-field.js +0 -0
  1982. /package/{public → modules}/cli/commands/resolve-blueprint-table.d.ts +0 -0
  1983. /package/{public → modules}/cli/commands/resolve-blueprint-table.js +0 -0
  1984. /package/{public → modules}/cli/commands/rls-module.d.ts +0 -0
  1985. /package/{public → modules}/cli/commands/secure-table-provision.d.ts +0 -0
  1986. /package/{public → modules}/cli/commands/secure-table-provision.js +0 -0
  1987. /package/{public → modules}/cli/commands/session-secrets-module.d.ts +0 -0
  1988. /package/{public → modules}/cli/commands/session-secrets-module.js +0 -0
  1989. /package/{public → modules}/cli/commands/sessions-module.d.ts +0 -0
  1990. /package/{public → modules}/cli/commands/sessions-module.js +0 -0
  1991. /package/{public → modules}/cli/commands/storage-log-module.d.ts +0 -0
  1992. /package/{public → modules}/cli/commands/storage-module.d.ts +0 -0
  1993. /package/{public → modules}/cli/commands/transfer-log-module.d.ts +0 -0
  1994. /package/{public → modules}/cli/commands/user-auth-module.d.ts +0 -0
  1995. /package/{public → modules}/cli/commands/user-state-module.d.ts +0 -0
  1996. /package/{public → modules}/cli/commands/user-state-module.js +0 -0
  1997. /package/{public → modules}/cli/commands/users-module.d.ts +0 -0
  1998. /package/{public → modules}/cli/commands/webauthn-auth-module.d.ts +0 -0
  1999. /package/{public → modules}/cli/commands/webauthn-auth-module.js +0 -0
  2000. /package/{public → modules}/cli/commands/webauthn-credentials-module.d.ts +0 -0
  2001. /package/{public → modules}/orm/models/agentModule.d.ts +0 -0
  2002. /package/{public → modules}/orm/models/agentModule.js +0 -0
  2003. /package/{public → modules}/orm/models/billingModule.d.ts +0 -0
  2004. /package/{public → modules}/orm/models/billingModule.js +0 -0
  2005. /package/{public → modules}/orm/models/billingProviderModule.d.ts +0 -0
  2006. /package/{public → modules}/orm/models/billingProviderModule.js +0 -0
  2007. /package/{public → modules}/orm/models/blueprint.d.ts +0 -0
  2008. /package/{public → modules}/orm/models/blueprint.js +0 -0
  2009. /package/{public → modules}/orm/models/blueprintConstruction.d.ts +0 -0
  2010. /package/{public → modules}/orm/models/blueprintConstruction.js +0 -0
  2011. /package/{public → modules}/orm/models/blueprintTemplate.d.ts +0 -0
  2012. /package/{public → modules}/orm/models/blueprintTemplate.js +0 -0
  2013. /package/{public → modules}/orm/models/computeLogModule.d.ts +0 -0
  2014. /package/{public → modules}/orm/models/computeLogModule.js +0 -0
  2015. /package/{public → modules}/orm/models/configSecretsOrgModule.d.ts +0 -0
  2016. /package/{public → modules}/orm/models/configSecretsOrgModule.js +0 -0
  2017. /package/{public → modules}/orm/models/configSecretsUserModule.d.ts +0 -0
  2018. /package/{public → modules}/orm/models/configSecretsUserModule.js +0 -0
  2019. /package/{public → modules}/orm/models/connectedAccountsModule.d.ts +0 -0
  2020. /package/{public → modules}/orm/models/connectedAccountsModule.js +0 -0
  2021. /package/{public → modules}/orm/models/cryptoAddressesModule.d.ts +0 -0
  2022. /package/{public → modules}/orm/models/cryptoAddressesModule.js +0 -0
  2023. /package/{public → modules}/orm/models/cryptoAuthModule.d.ts +0 -0
  2024. /package/{public → modules}/orm/models/cryptoAuthModule.js +0 -0
  2025. /package/{public → modules}/orm/models/databaseProvisionModule.d.ts +0 -0
  2026. /package/{public → modules}/orm/models/databaseProvisionModule.js +0 -0
  2027. /package/{public → modules}/orm/models/dbUsageModule.d.ts +0 -0
  2028. /package/{public → modules}/orm/models/dbUsageModule.js +0 -0
  2029. /package/{public → modules}/orm/models/defaultIdsModule.d.ts +0 -0
  2030. /package/{public → modules}/orm/models/defaultIdsModule.js +0 -0
  2031. /package/{public → modules}/orm/models/denormalizedTableField.d.ts +0 -0
  2032. /package/{public → modules}/orm/models/denormalizedTableField.js +0 -0
  2033. /package/{public → modules}/orm/models/devicesModule.d.ts +0 -0
  2034. /package/{public → modules}/orm/models/devicesModule.js +0 -0
  2035. /package/{public → modules}/orm/models/emailsModule.d.ts +0 -0
  2036. /package/{public → modules}/orm/models/emailsModule.js +0 -0
  2037. /package/{public → modules}/orm/models/entityTypeProvision.d.ts +0 -0
  2038. /package/{public → modules}/orm/models/entityTypeProvision.js +0 -0
  2039. /package/{public → modules}/orm/models/eventsModule.d.ts +0 -0
  2040. /package/{public → modules}/orm/models/eventsModule.js +0 -0
  2041. /package/{public → modules}/orm/models/functionModule.d.ts +0 -0
  2042. /package/{public → modules}/orm/models/functionModule.js +0 -0
  2043. /package/{public → modules}/orm/models/graphModule.d.ts +0 -0
  2044. /package/{public → modules}/orm/models/graphModule.js +0 -0
  2045. /package/{public → modules}/orm/models/hierarchyModule.d.ts +0 -0
  2046. /package/{public → modules}/orm/models/hierarchyModule.js +0 -0
  2047. /package/{public → modules}/orm/models/identityProvidersModule.d.ts +0 -0
  2048. /package/{public → modules}/orm/models/identityProvidersModule.js +0 -0
  2049. /package/{public → modules}/orm/models/inferenceLogModule.d.ts +0 -0
  2050. /package/{public → modules}/orm/models/inferenceLogModule.js +0 -0
  2051. /package/{public → modules}/orm/models/invitesModule.d.ts +0 -0
  2052. /package/{public → modules}/orm/models/invitesModule.js +0 -0
  2053. /package/{public → modules}/orm/models/limitsModule.d.ts +0 -0
  2054. /package/{public → modules}/orm/models/limitsModule.js +0 -0
  2055. /package/{public → modules}/orm/models/membershipTypesModule.d.ts +0 -0
  2056. /package/{public → modules}/orm/models/membershipTypesModule.js +0 -0
  2057. /package/{public → modules}/orm/models/membershipsModule.d.ts +0 -0
  2058. /package/{public → modules}/orm/models/membershipsModule.js +0 -0
  2059. /package/{public → modules}/orm/models/merkleStoreModule.d.ts +0 -0
  2060. /package/{public → modules}/orm/models/merkleStoreModule.js +0 -0
  2061. /package/{public → modules}/orm/models/namespaceModule.d.ts +0 -0
  2062. /package/{public → modules}/orm/models/namespaceModule.js +0 -0
  2063. /package/{public → modules}/orm/models/notificationsModule.d.ts +0 -0
  2064. /package/{public → modules}/orm/models/notificationsModule.js +0 -0
  2065. /package/{public → modules}/orm/models/permissionsModule.d.ts +0 -0
  2066. /package/{public → modules}/orm/models/permissionsModule.js +0 -0
  2067. /package/{public → modules}/orm/models/phoneNumbersModule.d.ts +0 -0
  2068. /package/{public → modules}/orm/models/phoneNumbersModule.js +0 -0
  2069. /package/{public → modules}/orm/models/plansModule.d.ts +0 -0
  2070. /package/{public → modules}/orm/models/plansModule.js +0 -0
  2071. /package/{public → modules}/orm/models/profilesModule.d.ts +0 -0
  2072. /package/{public → modules}/orm/models/profilesModule.js +0 -0
  2073. /package/{public → modules}/orm/models/rateLimitMetersModule.d.ts +0 -0
  2074. /package/{public → modules}/orm/models/rateLimitMetersModule.js +0 -0
  2075. /package/{public → modules}/orm/models/rateLimitsModule.d.ts +0 -0
  2076. /package/{public → modules}/orm/models/rateLimitsModule.js +0 -0
  2077. /package/{public → modules}/orm/models/realtimeModule.d.ts +0 -0
  2078. /package/{public → modules}/orm/models/realtimeModule.js +0 -0
  2079. /package/{public → modules}/orm/models/relationProvision.d.ts +0 -0
  2080. /package/{public → modules}/orm/models/relationProvision.js +0 -0
  2081. /package/{public → modules}/orm/models/rlsModule.d.ts +0 -0
  2082. /package/{public → modules}/orm/models/rlsModule.js +0 -0
  2083. /package/{public → modules}/orm/models/secureTableProvision.d.ts +0 -0
  2084. /package/{public → modules}/orm/models/secureTableProvision.js +0 -0
  2085. /package/{public → modules}/orm/models/sessionSecretsModule.d.ts +0 -0
  2086. /package/{public → modules}/orm/models/sessionSecretsModule.js +0 -0
  2087. /package/{public → modules}/orm/models/sessionsModule.d.ts +0 -0
  2088. /package/{public → modules}/orm/models/sessionsModule.js +0 -0
  2089. /package/{public → modules}/orm/models/storageLogModule.d.ts +0 -0
  2090. /package/{public → modules}/orm/models/storageLogModule.js +0 -0
  2091. /package/{public → modules}/orm/models/storageModule.d.ts +0 -0
  2092. /package/{public → modules}/orm/models/storageModule.js +0 -0
  2093. /package/{public → modules}/orm/models/transferLogModule.d.ts +0 -0
  2094. /package/{public → modules}/orm/models/transferLogModule.js +0 -0
  2095. /package/{public → modules}/orm/models/userAuthModule.d.ts +0 -0
  2096. /package/{public → modules}/orm/models/userAuthModule.js +0 -0
  2097. /package/{public → modules}/orm/models/userStateModule.d.ts +0 -0
  2098. /package/{public → modules}/orm/models/userStateModule.js +0 -0
  2099. /package/{public → modules}/orm/models/usersModule.d.ts +0 -0
  2100. /package/{public → modules}/orm/models/usersModule.js +0 -0
  2101. /package/{public → modules}/orm/models/webauthnAuthModule.d.ts +0 -0
  2102. /package/{public → modules}/orm/models/webauthnAuthModule.js +0 -0
  2103. /package/{public → modules}/orm/models/webauthnCredentialsModule.d.ts +0 -0
  2104. /package/{public → modules}/orm/models/webauthnCredentialsModule.js +0 -0
  2105. /package/{esm/admin → usage}/cli/commands/app-limit-cap.d.ts +0 -0
  2106. /package/{admin → usage}/cli/commands/app-limit-cap.js +0 -0
  2107. /package/{esm/admin → usage}/cli/commands/app-limit-caps-default.d.ts +0 -0
  2108. /package/{admin → usage}/cli/commands/app-limit-caps-default.js +0 -0
  2109. /package/{esm/admin → usage}/cli/commands/app-limit-credit-code-item.d.ts +0 -0
  2110. /package/{admin → usage}/cli/commands/app-limit-credit-code-item.js +0 -0
  2111. /package/{esm/admin → usage}/cli/commands/app-limit-credit-code.d.ts +0 -0
  2112. /package/{admin → usage}/cli/commands/app-limit-credit-code.js +0 -0
  2113. /package/{esm/admin → usage}/cli/commands/app-limit-credit-redemption.d.ts +0 -0
  2114. /package/{esm/admin → usage}/cli/commands/app-limit-credit.d.ts +0 -0
  2115. /package/{admin → usage}/cli/commands/app-limit-credit.js +0 -0
  2116. /package/{esm/admin → usage}/cli/commands/app-limit-default.d.ts +0 -0
  2117. /package/{admin → usage}/cli/commands/app-limit-default.js +0 -0
  2118. /package/{esm/admin → usage}/cli/commands/app-limit-event.d.ts +0 -0
  2119. /package/{admin → usage}/cli/commands/app-limit-event.js +0 -0
  2120. /package/{esm/admin → usage}/cli/commands/app-limit-warning.d.ts +0 -0
  2121. /package/{admin → usage}/cli/commands/app-limit-warning.js +0 -0
  2122. /package/{esm/admin → usage}/cli/commands/app-limit.d.ts +0 -0
  2123. /package/{admin → usage}/cli/commands/app-limit.js +0 -0
  2124. /package/{esm/admin → usage}/cli/commands/org-limit-aggregate.d.ts +0 -0
  2125. /package/{admin → usage}/cli/commands/org-limit-aggregate.js +0 -0
  2126. /package/{esm/admin → usage}/cli/commands/org-limit-cap.d.ts +0 -0
  2127. /package/{admin → usage}/cli/commands/org-limit-cap.js +0 -0
  2128. /package/{esm/admin → usage}/cli/commands/org-limit-caps-default.d.ts +0 -0
  2129. /package/{admin → usage}/cli/commands/org-limit-caps-default.js +0 -0
  2130. /package/{esm/admin → usage}/cli/commands/org-limit-credit.d.ts +0 -0
  2131. /package/{esm/admin → usage}/cli/commands/org-limit-default.d.ts +0 -0
  2132. /package/{admin → usage}/cli/commands/org-limit-default.js +0 -0
  2133. /package/{esm/admin → usage}/cli/commands/org-limit-event.d.ts +0 -0
  2134. /package/{admin → usage}/cli/commands/org-limit-event.js +0 -0
  2135. /package/{esm/admin → usage}/cli/commands/org-limit-warning.d.ts +0 -0
  2136. /package/{admin → usage}/cli/commands/org-limit-warning.js +0 -0
  2137. /package/{esm/admin → usage}/cli/commands/org-limit.d.ts +0 -0
  2138. /package/{admin → usage}/cli/commands/org-limit.js +0 -0
  2139. /package/{esm/admin → usage}/orm/models/appLimit.d.ts +0 -0
  2140. /package/{admin → usage}/orm/models/appLimit.js +0 -0
  2141. /package/{esm/admin → usage}/orm/models/appLimitCap.d.ts +0 -0
  2142. /package/{admin → usage}/orm/models/appLimitCap.js +0 -0
  2143. /package/{esm/admin → usage}/orm/models/appLimitCapsDefault.d.ts +0 -0
  2144. /package/{admin → usage}/orm/models/appLimitCapsDefault.js +0 -0
  2145. /package/{esm/admin → usage}/orm/models/appLimitCredit.d.ts +0 -0
  2146. /package/{admin → usage}/orm/models/appLimitCredit.js +0 -0
  2147. /package/{esm/admin → usage}/orm/models/appLimitCreditCode.d.ts +0 -0
  2148. /package/{admin → usage}/orm/models/appLimitCreditCode.js +0 -0
  2149. /package/{esm/admin → usage}/orm/models/appLimitCreditCodeItem.d.ts +0 -0
  2150. /package/{admin → usage}/orm/models/appLimitCreditCodeItem.js +0 -0
  2151. /package/{esm/admin → usage}/orm/models/appLimitCreditRedemption.d.ts +0 -0
  2152. /package/{admin → usage}/orm/models/appLimitCreditRedemption.js +0 -0
  2153. /package/{esm/admin → usage}/orm/models/appLimitDefault.d.ts +0 -0
  2154. /package/{admin → usage}/orm/models/appLimitDefault.js +0 -0
  2155. /package/{esm/admin → usage}/orm/models/appLimitEvent.d.ts +0 -0
  2156. /package/{admin → usage}/orm/models/appLimitEvent.js +0 -0
  2157. /package/{esm/admin → usage}/orm/models/appLimitWarning.d.ts +0 -0
  2158. /package/{admin → usage}/orm/models/appLimitWarning.js +0 -0
  2159. /package/{esm/admin → usage}/orm/models/orgLimit.d.ts +0 -0
  2160. /package/{admin → usage}/orm/models/orgLimit.js +0 -0
  2161. /package/{esm/admin → usage}/orm/models/orgLimitAggregate.d.ts +0 -0
  2162. /package/{admin → usage}/orm/models/orgLimitAggregate.js +0 -0
  2163. /package/{esm/admin → usage}/orm/models/orgLimitCap.d.ts +0 -0
  2164. /package/{admin → usage}/orm/models/orgLimitCap.js +0 -0
  2165. /package/{esm/admin → usage}/orm/models/orgLimitCapsDefault.d.ts +0 -0
  2166. /package/{admin → usage}/orm/models/orgLimitCapsDefault.js +0 -0
  2167. /package/{esm/admin → usage}/orm/models/orgLimitCredit.d.ts +0 -0
  2168. /package/{admin → usage}/orm/models/orgLimitCredit.js +0 -0
  2169. /package/{esm/admin → usage}/orm/models/orgLimitDefault.d.ts +0 -0
  2170. /package/{admin → usage}/orm/models/orgLimitDefault.js +0 -0
  2171. /package/{esm/admin → usage}/orm/models/orgLimitEvent.d.ts +0 -0
  2172. /package/{admin → usage}/orm/models/orgLimitEvent.js +0 -0
  2173. /package/{esm/admin → usage}/orm/models/orgLimitWarning.d.ts +0 -0
  2174. /package/{admin → usage}/orm/models/orgLimitWarning.js +0 -0
@@ -0,0 +1,2753 @@
1
+ /**
2
+ * GraphQL types for ORM client
3
+ * @generated by @constructive-io/graphql-codegen
4
+ * DO NOT EDIT - changes will be overwritten
5
+ */
6
+ export interface StringFilter {
7
+ isNull?: boolean;
8
+ equalTo?: string;
9
+ notEqualTo?: string;
10
+ distinctFrom?: string;
11
+ notDistinctFrom?: string;
12
+ in?: string[];
13
+ notIn?: string[];
14
+ lessThan?: string;
15
+ lessThanOrEqualTo?: string;
16
+ greaterThan?: string;
17
+ greaterThanOrEqualTo?: string;
18
+ includes?: string;
19
+ notIncludes?: string;
20
+ includesInsensitive?: string;
21
+ notIncludesInsensitive?: string;
22
+ startsWith?: string;
23
+ notStartsWith?: string;
24
+ startsWithInsensitive?: string;
25
+ notStartsWithInsensitive?: string;
26
+ endsWith?: string;
27
+ notEndsWith?: string;
28
+ endsWithInsensitive?: string;
29
+ notEndsWithInsensitive?: string;
30
+ like?: string;
31
+ notLike?: string;
32
+ likeInsensitive?: string;
33
+ notLikeInsensitive?: string;
34
+ }
35
+ export interface IntFilter {
36
+ isNull?: boolean;
37
+ equalTo?: number;
38
+ notEqualTo?: number;
39
+ distinctFrom?: number;
40
+ notDistinctFrom?: number;
41
+ in?: number[];
42
+ notIn?: number[];
43
+ lessThan?: number;
44
+ lessThanOrEqualTo?: number;
45
+ greaterThan?: number;
46
+ greaterThanOrEqualTo?: number;
47
+ }
48
+ export interface FloatFilter {
49
+ isNull?: boolean;
50
+ equalTo?: number;
51
+ notEqualTo?: number;
52
+ distinctFrom?: number;
53
+ notDistinctFrom?: number;
54
+ in?: number[];
55
+ notIn?: number[];
56
+ lessThan?: number;
57
+ lessThanOrEqualTo?: number;
58
+ greaterThan?: number;
59
+ greaterThanOrEqualTo?: number;
60
+ }
61
+ export interface BooleanFilter {
62
+ isNull?: boolean;
63
+ equalTo?: boolean;
64
+ notEqualTo?: boolean;
65
+ }
66
+ export interface UUIDFilter {
67
+ isNull?: boolean;
68
+ equalTo?: string;
69
+ notEqualTo?: string;
70
+ distinctFrom?: string;
71
+ notDistinctFrom?: string;
72
+ in?: string[];
73
+ notIn?: string[];
74
+ }
75
+ export interface DatetimeFilter {
76
+ isNull?: boolean;
77
+ equalTo?: string;
78
+ notEqualTo?: string;
79
+ distinctFrom?: string;
80
+ notDistinctFrom?: string;
81
+ in?: string[];
82
+ notIn?: string[];
83
+ lessThan?: string;
84
+ lessThanOrEqualTo?: string;
85
+ greaterThan?: string;
86
+ greaterThanOrEqualTo?: string;
87
+ }
88
+ export interface DateFilter {
89
+ isNull?: boolean;
90
+ equalTo?: string;
91
+ notEqualTo?: string;
92
+ distinctFrom?: string;
93
+ notDistinctFrom?: string;
94
+ in?: string[];
95
+ notIn?: string[];
96
+ lessThan?: string;
97
+ lessThanOrEqualTo?: string;
98
+ greaterThan?: string;
99
+ greaterThanOrEqualTo?: string;
100
+ }
101
+ export interface JSONFilter {
102
+ isNull?: boolean;
103
+ equalTo?: Record<string, unknown>;
104
+ notEqualTo?: Record<string, unknown>;
105
+ distinctFrom?: Record<string, unknown>;
106
+ notDistinctFrom?: Record<string, unknown>;
107
+ contains?: Record<string, unknown>;
108
+ containedBy?: Record<string, unknown>;
109
+ containsKey?: string;
110
+ containsAllKeys?: string[];
111
+ containsAnyKeys?: string[];
112
+ }
113
+ export interface BigIntFilter {
114
+ isNull?: boolean;
115
+ equalTo?: string;
116
+ notEqualTo?: string;
117
+ distinctFrom?: string;
118
+ notDistinctFrom?: string;
119
+ in?: string[];
120
+ notIn?: string[];
121
+ lessThan?: string;
122
+ lessThanOrEqualTo?: string;
123
+ greaterThan?: string;
124
+ greaterThanOrEqualTo?: string;
125
+ }
126
+ export interface BigFloatFilter {
127
+ isNull?: boolean;
128
+ equalTo?: string;
129
+ notEqualTo?: string;
130
+ distinctFrom?: string;
131
+ notDistinctFrom?: string;
132
+ in?: string[];
133
+ notIn?: string[];
134
+ lessThan?: string;
135
+ lessThanOrEqualTo?: string;
136
+ greaterThan?: string;
137
+ greaterThanOrEqualTo?: string;
138
+ }
139
+ export interface BitStringFilter {
140
+ isNull?: boolean;
141
+ equalTo?: string;
142
+ notEqualTo?: string;
143
+ }
144
+ export interface InternetAddressFilter {
145
+ isNull?: boolean;
146
+ equalTo?: string;
147
+ notEqualTo?: string;
148
+ distinctFrom?: string;
149
+ notDistinctFrom?: string;
150
+ in?: string[];
151
+ notIn?: string[];
152
+ lessThan?: string;
153
+ lessThanOrEqualTo?: string;
154
+ greaterThan?: string;
155
+ greaterThanOrEqualTo?: string;
156
+ contains?: string;
157
+ containsOrEqualTo?: string;
158
+ containedBy?: string;
159
+ containedByOrEqualTo?: string;
160
+ containsOrContainedBy?: string;
161
+ }
162
+ export interface FullTextFilter {
163
+ matches?: string;
164
+ }
165
+ export interface VectorFilter {
166
+ isNull?: boolean;
167
+ equalTo?: number[];
168
+ notEqualTo?: number[];
169
+ distinctFrom?: number[];
170
+ notDistinctFrom?: number[];
171
+ }
172
+ export interface StringListFilter {
173
+ isNull?: boolean;
174
+ equalTo?: string[];
175
+ notEqualTo?: string[];
176
+ distinctFrom?: string[];
177
+ notDistinctFrom?: string[];
178
+ lessThan?: string[];
179
+ lessThanOrEqualTo?: string[];
180
+ greaterThan?: string[];
181
+ greaterThanOrEqualTo?: string[];
182
+ contains?: string[];
183
+ containedBy?: string[];
184
+ overlaps?: string[];
185
+ anyEqualTo?: string;
186
+ anyNotEqualTo?: string;
187
+ anyLessThan?: string;
188
+ anyLessThanOrEqualTo?: string;
189
+ anyGreaterThan?: string;
190
+ anyGreaterThanOrEqualTo?: string;
191
+ }
192
+ export interface IntListFilter {
193
+ isNull?: boolean;
194
+ equalTo?: number[];
195
+ notEqualTo?: number[];
196
+ distinctFrom?: number[];
197
+ notDistinctFrom?: number[];
198
+ lessThan?: number[];
199
+ lessThanOrEqualTo?: number[];
200
+ greaterThan?: number[];
201
+ greaterThanOrEqualTo?: number[];
202
+ contains?: number[];
203
+ containedBy?: number[];
204
+ overlaps?: number[];
205
+ anyEqualTo?: number;
206
+ anyNotEqualTo?: number;
207
+ anyLessThan?: number;
208
+ anyLessThanOrEqualTo?: number;
209
+ anyGreaterThan?: number;
210
+ anyGreaterThanOrEqualTo?: number;
211
+ }
212
+ export interface UUIDListFilter {
213
+ isNull?: boolean;
214
+ equalTo?: string[];
215
+ notEqualTo?: string[];
216
+ distinctFrom?: string[];
217
+ notDistinctFrom?: string[];
218
+ lessThan?: string[];
219
+ lessThanOrEqualTo?: string[];
220
+ greaterThan?: string[];
221
+ greaterThanOrEqualTo?: string[];
222
+ contains?: string[];
223
+ containedBy?: string[];
224
+ overlaps?: string[];
225
+ anyEqualTo?: string;
226
+ anyNotEqualTo?: string;
227
+ anyLessThan?: string;
228
+ anyLessThanOrEqualTo?: string;
229
+ anyGreaterThan?: string;
230
+ anyGreaterThanOrEqualTo?: string;
231
+ }
232
+ /** Workflow plan attached to an agent thread with ordered tasks and optional approval gates */
233
+ export interface AgentPlan {
234
+ id: string;
235
+ createdAt?: string | null;
236
+ updatedAt?: string | null;
237
+ /** User who owns this plan */
238
+ ownerId?: string | null;
239
+ /** Foreign key to agent_thread */
240
+ threadId?: string | null;
241
+ /** Human-readable plan name */
242
+ title?: string | null;
243
+ /** Overall goal or context for this plan */
244
+ description?: string | null;
245
+ /** Plan lifecycle: draft, active, completed, failed, cancelled */
246
+ status?: string | null;
247
+ }
248
+ /** Agent instance registry (human-managed or ephemeral sub-agents) */
249
+ export interface Agent {
250
+ id: string;
251
+ createdAt?: string | null;
252
+ updatedAt?: string | null;
253
+ /** Human who owns/manages this agent */
254
+ ownerId?: string | null;
255
+ /** Persona template this agent was created from */
256
+ personaId?: string | null;
257
+ /** Parent agent (for sub-agent delegation hierarchy) */
258
+ parentId?: string | null;
259
+ /** Display name for this agent instance */
260
+ name?: string | null;
261
+ /** System prompt override (NULL = inherit from persona) */
262
+ systemPrompt?: string | null;
263
+ /** Per-instance config overrides (model, temperature, tools) */
264
+ config?: Record<string, unknown> | null;
265
+ /** Agent lifecycle status: active, paused, terminated */
266
+ status?: string | null;
267
+ /** If true, agent is deleted when its spawning thread is deleted */
268
+ isEphemeral?: boolean | null;
269
+ }
270
+ /** Top-level AI/LLM conversation thread */
271
+ export interface AgentThread {
272
+ id: string;
273
+ createdAt?: string | null;
274
+ updatedAt?: string | null;
275
+ /** User who owns this thread */
276
+ ownerId?: string | null;
277
+ /** Current status of this thread */
278
+ status?: string | null;
279
+ /** Whether this record has been archived by the user */
280
+ isArchived?: boolean | null;
281
+ /** Timestamp when this record was archived, NULL if active */
282
+ archivedAt?: string | null;
283
+ /** Human-readable conversation title */
284
+ title?: string | null;
285
+ /** Conversation mode: ask (plain Q&A) or agent (tool-enabled) */
286
+ mode?: string | null;
287
+ /** LLM model id this thread is bound to */
288
+ model?: string | null;
289
+ /** System prompt active for this thread */
290
+ systemPrompt?: string | null;
291
+ /** User-defined labels for organizing and filtering threads */
292
+ tags?: string[] | null;
293
+ /** Optional FK to a shared prompt template */
294
+ promptTemplateId?: string | null;
295
+ /** Agent instance assigned to this thread */
296
+ agentId?: string | null;
297
+ /** Parent thread that spawned this sub-conversation */
298
+ parentThreadId?: string | null;
299
+ }
300
+ /** Message within an agent thread with TextPart/ToolPart jsonb parts */
301
+ export interface AgentMessage {
302
+ id: string;
303
+ createdAt?: string | null;
304
+ updatedAt?: string | null;
305
+ /** User who owns this message */
306
+ ownerId?: string | null;
307
+ /** Message content: TextPart and ToolPart array */
308
+ parts?: Record<string, unknown> | null;
309
+ /** Foreign key to agent_thread */
310
+ threadId?: string | null;
311
+ /** Who authored this message: user or assistant */
312
+ authorRole?: string | null;
313
+ /** LLM model that generated this response */
314
+ model?: string | null;
315
+ }
316
+ /** Task within a plan, with ordering and optional approval gates */
317
+ export interface AgentTask {
318
+ id: string;
319
+ createdAt?: string | null;
320
+ updatedAt?: string | null;
321
+ /** User who owns this task */
322
+ ownerId?: string | null;
323
+ /** Current status of this task */
324
+ status?: string | null;
325
+ /** Foreign key to agent_plan */
326
+ planId?: string | null;
327
+ /** Natural-language description of the work to do */
328
+ description?: string | null;
329
+ /** Who created the task: agent or user */
330
+ source?: string | null;
331
+ /** Error message captured when the task failed */
332
+ error?: string | null;
333
+ /** Position within the plan (for ordered task lists) */
334
+ orderIndex?: number | null;
335
+ /** Whether this task is an approval gate requiring human decision */
336
+ requiresApproval?: boolean | null;
337
+ /** Approval decision: pending, approved, rejected (NULL if not an approval task) */
338
+ approvalStatus?: string | null;
339
+ /** User who approved or rejected this task */
340
+ approvedBy?: string | null;
341
+ /** Timestamp of the approval or rejection decision */
342
+ approvedAt?: string | null;
343
+ /** Reviewer feedback or reason for the decision */
344
+ approvalFeedback?: string | null;
345
+ }
346
+ /** Shared system prompt templates for agent conversations */
347
+ export interface AgentPrompt {
348
+ id: string;
349
+ createdAt?: string | null;
350
+ updatedAt?: string | null;
351
+ createdBy?: string | null;
352
+ updatedBy?: string | null;
353
+ /** Unique name for lookup (e.g. default, code-review, sales-assistant) */
354
+ name?: string | null;
355
+ /** The system prompt template content */
356
+ content?: string | null;
357
+ /** What this prompt template is for */
358
+ description?: string | null;
359
+ /** Whether this is the default prompt for the entity/app */
360
+ isDefault?: boolean | null;
361
+ /** Variables, tags, category metadata */
362
+ metadata?: Record<string, unknown> | null;
363
+ }
364
+ export interface AgentResourceChunk {
365
+ id: string;
366
+ agentResourceId?: string | null;
367
+ body?: string | null;
368
+ chunkIndex?: number | null;
369
+ embedding?: number[] | null;
370
+ metadata?: Record<string, unknown> | null;
371
+ createdAt?: string | null;
372
+ updatedAt?: string | null;
373
+ /** VECTOR distance when searching `embedding`. Returns null when no vector search filter is active. */
374
+ embeddingVectorDistance?: number | null;
375
+ /** Composite search relevance score (0..1, higher = more relevant). Computed by normalizing and averaging all active search signals. Supports per-table weight customization via @searchConfig smart tag. Returns null when no search filters are active. */
376
+ searchScore?: number | null;
377
+ }
378
+ /** Agent persona templates (role, system prompt, default skills/knowledge) */
379
+ export interface AgentPersona {
380
+ id: string;
381
+ createdAt?: string | null;
382
+ updatedAt?: string | null;
383
+ createdBy?: string | null;
384
+ updatedBy?: string | null;
385
+ /** Unique human-readable identifier for this persona */
386
+ slug?: string | null;
387
+ /** Display name for this persona */
388
+ name?: string | null;
389
+ /** Brief description of this persona role */
390
+ description?: string | null;
391
+ /** Default system prompt for agents using this persona */
392
+ systemPrompt?: string | null;
393
+ /** Slugs of agent_resource entries to link when spawning */
394
+ resources?: string[] | null;
395
+ /** Model preferences, temperature, tool access, constraints */
396
+ config?: Record<string, unknown> | null;
397
+ /** Whether this persona is available for use */
398
+ isActive?: boolean | null;
399
+ }
400
+ /** Unified skills and knowledge resources for agent retrieval */
401
+ export interface AgentResource {
402
+ id: string;
403
+ createdAt?: string | null;
404
+ updatedAt?: string | null;
405
+ createdBy?: string | null;
406
+ updatedBy?: string | null;
407
+ /** Unique human-readable identifier for portable references */
408
+ slug?: string | null;
409
+ /** Resource type: skill, knowledge, or convention */
410
+ kind?: string | null;
411
+ /** Resource name or title */
412
+ title?: string | null;
413
+ /** Brief description of this resource */
414
+ description?: string | null;
415
+ /** Full content (instructions for skills, reference text for knowledge) */
416
+ body?: string | null;
417
+ /** Keywords for deterministic retrieval routing */
418
+ keywords?: string[] | null;
419
+ /** Whether this resource is active and retrievable */
420
+ isActive?: boolean | null;
421
+ /** Structured metadata: category, version, author, custom attributes */
422
+ metadata?: Record<string, unknown> | null;
423
+ /** Whether this record has been archived by the user */
424
+ isArchived?: boolean | null;
425
+ /** Timestamp when this record was archived, NULL if active */
426
+ archivedAt?: string | null;
427
+ search?: string | null;
428
+ embedding?: number[] | null;
429
+ embeddingUpdatedAt?: string | null;
430
+ /** TSV rank when searching `search`. Returns null when no tsv search filter is active. */
431
+ searchTsvRank?: number | null;
432
+ /** VECTOR distance when searching `embedding`. Returns null when no vector search filter is active. */
433
+ embeddingVectorDistance?: number | null;
434
+ /** TRGM similarity when searching `kind`. Returns null when no trgm search filter is active. */
435
+ kindTrgmSimilarity?: number | null;
436
+ /** TRGM similarity when searching `title`. Returns null when no trgm search filter is active. */
437
+ titleTrgmSimilarity?: number | null;
438
+ /** TRGM similarity when searching `description`. Returns null when no trgm search filter is active. */
439
+ descriptionTrgmSimilarity?: number | null;
440
+ /** TRGM similarity when searching `body`. Returns null when no trgm search filter is active. */
441
+ bodyTrgmSimilarity?: number | null;
442
+ /** Composite search relevance score (0..1, higher = more relevant). Computed by normalizing and averaging all active search signals. Supports per-table weight customization via @searchConfig smart tag. Returns null when no search filters are active. */
443
+ searchScore?: number | null;
444
+ }
445
+ export interface ConnectionResult<T> {
446
+ nodes: T[];
447
+ totalCount: number;
448
+ pageInfo: PageInfo;
449
+ }
450
+ export interface PageInfo {
451
+ hasNextPage: boolean;
452
+ hasPreviousPage: boolean;
453
+ startCursor?: string | null;
454
+ endCursor?: string | null;
455
+ }
456
+ export interface AgentPlanRelations {
457
+ thread?: AgentThread | null;
458
+ agentTasksByPlanId?: ConnectionResult<AgentTask>;
459
+ }
460
+ export interface AgentRelations {
461
+ parent?: Agent | null;
462
+ persona?: AgentPersona | null;
463
+ agentThreads?: ConnectionResult<AgentThread>;
464
+ childAgents?: ConnectionResult<Agent>;
465
+ }
466
+ export interface AgentThreadRelations {
467
+ agent?: Agent | null;
468
+ parentThread?: AgentThread | null;
469
+ promptTemplate?: AgentPrompt | null;
470
+ agentThreadsByParentThreadId?: ConnectionResult<AgentThread>;
471
+ agentMessagesByThreadId?: ConnectionResult<AgentMessage>;
472
+ agentPlansByThreadId?: ConnectionResult<AgentPlan>;
473
+ }
474
+ export interface AgentMessageRelations {
475
+ thread?: AgentThread | null;
476
+ }
477
+ export interface AgentTaskRelations {
478
+ plan?: AgentPlan | null;
479
+ }
480
+ export interface AgentPromptRelations {
481
+ }
482
+ export interface AgentResourceChunkRelations {
483
+ agentResource?: AgentResource | null;
484
+ }
485
+ export interface AgentPersonaRelations {
486
+ agentsByPersonaId?: ConnectionResult<Agent>;
487
+ }
488
+ export interface AgentResourceRelations {
489
+ agentResourceChunks?: ConnectionResult<AgentResourceChunk>;
490
+ }
491
+ export type AgentPlanWithRelations = AgentPlan & AgentPlanRelations;
492
+ export type AgentWithRelations = Agent & AgentRelations;
493
+ export type AgentThreadWithRelations = AgentThread & AgentThreadRelations;
494
+ export type AgentMessageWithRelations = AgentMessage & AgentMessageRelations;
495
+ export type AgentTaskWithRelations = AgentTask & AgentTaskRelations;
496
+ export type AgentPromptWithRelations = AgentPrompt & AgentPromptRelations;
497
+ export type AgentResourceChunkWithRelations = AgentResourceChunk & AgentResourceChunkRelations;
498
+ export type AgentPersonaWithRelations = AgentPersona & AgentPersonaRelations;
499
+ export type AgentResourceWithRelations = AgentResource & AgentResourceRelations;
500
+ export type AgentPlanSelect = {
501
+ id?: boolean;
502
+ createdAt?: boolean;
503
+ updatedAt?: boolean;
504
+ ownerId?: boolean;
505
+ threadId?: boolean;
506
+ title?: boolean;
507
+ description?: boolean;
508
+ status?: boolean;
509
+ thread?: {
510
+ select: AgentThreadSelect;
511
+ };
512
+ agentTasksByPlanId?: {
513
+ select: AgentTaskSelect;
514
+ first?: number;
515
+ filter?: AgentTaskFilter;
516
+ orderBy?: AgentTaskOrderBy[];
517
+ };
518
+ };
519
+ export type AgentSelect = {
520
+ id?: boolean;
521
+ createdAt?: boolean;
522
+ updatedAt?: boolean;
523
+ ownerId?: boolean;
524
+ personaId?: boolean;
525
+ parentId?: boolean;
526
+ name?: boolean;
527
+ systemPrompt?: boolean;
528
+ config?: boolean;
529
+ status?: boolean;
530
+ isEphemeral?: boolean;
531
+ parent?: {
532
+ select: AgentSelect;
533
+ };
534
+ persona?: {
535
+ select: AgentPersonaSelect;
536
+ };
537
+ agentThreads?: {
538
+ select: AgentThreadSelect;
539
+ first?: number;
540
+ filter?: AgentThreadFilter;
541
+ orderBy?: AgentThreadOrderBy[];
542
+ };
543
+ childAgents?: {
544
+ select: AgentSelect;
545
+ first?: number;
546
+ filter?: AgentFilter;
547
+ orderBy?: AgentOrderBy[];
548
+ };
549
+ };
550
+ export type AgentThreadSelect = {
551
+ id?: boolean;
552
+ createdAt?: boolean;
553
+ updatedAt?: boolean;
554
+ ownerId?: boolean;
555
+ status?: boolean;
556
+ isArchived?: boolean;
557
+ archivedAt?: boolean;
558
+ title?: boolean;
559
+ mode?: boolean;
560
+ model?: boolean;
561
+ systemPrompt?: boolean;
562
+ tags?: boolean;
563
+ promptTemplateId?: boolean;
564
+ agentId?: boolean;
565
+ parentThreadId?: boolean;
566
+ agent?: {
567
+ select: AgentSelect;
568
+ };
569
+ parentThread?: {
570
+ select: AgentThreadSelect;
571
+ };
572
+ promptTemplate?: {
573
+ select: AgentPromptSelect;
574
+ };
575
+ agentThreadsByParentThreadId?: {
576
+ select: AgentThreadSelect;
577
+ first?: number;
578
+ filter?: AgentThreadFilter;
579
+ orderBy?: AgentThreadOrderBy[];
580
+ };
581
+ agentMessagesByThreadId?: {
582
+ select: AgentMessageSelect;
583
+ first?: number;
584
+ filter?: AgentMessageFilter;
585
+ orderBy?: AgentMessageOrderBy[];
586
+ };
587
+ agentPlansByThreadId?: {
588
+ select: AgentPlanSelect;
589
+ first?: number;
590
+ filter?: AgentPlanFilter;
591
+ orderBy?: AgentPlanOrderBy[];
592
+ };
593
+ };
594
+ export type AgentMessageSelect = {
595
+ id?: boolean;
596
+ createdAt?: boolean;
597
+ updatedAt?: boolean;
598
+ ownerId?: boolean;
599
+ parts?: boolean;
600
+ threadId?: boolean;
601
+ authorRole?: boolean;
602
+ model?: boolean;
603
+ thread?: {
604
+ select: AgentThreadSelect;
605
+ };
606
+ };
607
+ export type AgentTaskSelect = {
608
+ id?: boolean;
609
+ createdAt?: boolean;
610
+ updatedAt?: boolean;
611
+ ownerId?: boolean;
612
+ status?: boolean;
613
+ planId?: boolean;
614
+ description?: boolean;
615
+ source?: boolean;
616
+ error?: boolean;
617
+ orderIndex?: boolean;
618
+ requiresApproval?: boolean;
619
+ approvalStatus?: boolean;
620
+ approvedBy?: boolean;
621
+ approvedAt?: boolean;
622
+ approvalFeedback?: boolean;
623
+ plan?: {
624
+ select: AgentPlanSelect;
625
+ };
626
+ };
627
+ export type AgentPromptSelect = {
628
+ id?: boolean;
629
+ createdAt?: boolean;
630
+ updatedAt?: boolean;
631
+ createdBy?: boolean;
632
+ updatedBy?: boolean;
633
+ name?: boolean;
634
+ content?: boolean;
635
+ description?: boolean;
636
+ isDefault?: boolean;
637
+ metadata?: boolean;
638
+ };
639
+ export type AgentResourceChunkSelect = {
640
+ id?: boolean;
641
+ agentResourceId?: boolean;
642
+ body?: boolean;
643
+ chunkIndex?: boolean;
644
+ embedding?: boolean;
645
+ metadata?: boolean;
646
+ createdAt?: boolean;
647
+ updatedAt?: boolean;
648
+ embeddingVectorDistance?: boolean;
649
+ searchScore?: boolean;
650
+ agentResource?: {
651
+ select: AgentResourceSelect;
652
+ };
653
+ };
654
+ export type AgentPersonaSelect = {
655
+ id?: boolean;
656
+ createdAt?: boolean;
657
+ updatedAt?: boolean;
658
+ createdBy?: boolean;
659
+ updatedBy?: boolean;
660
+ slug?: boolean;
661
+ name?: boolean;
662
+ description?: boolean;
663
+ systemPrompt?: boolean;
664
+ resources?: boolean;
665
+ config?: boolean;
666
+ isActive?: boolean;
667
+ agentsByPersonaId?: {
668
+ select: AgentSelect;
669
+ first?: number;
670
+ filter?: AgentFilter;
671
+ orderBy?: AgentOrderBy[];
672
+ };
673
+ };
674
+ export type AgentResourceSelect = {
675
+ id?: boolean;
676
+ createdAt?: boolean;
677
+ updatedAt?: boolean;
678
+ createdBy?: boolean;
679
+ updatedBy?: boolean;
680
+ slug?: boolean;
681
+ kind?: boolean;
682
+ title?: boolean;
683
+ description?: boolean;
684
+ body?: boolean;
685
+ keywords?: boolean;
686
+ isActive?: boolean;
687
+ metadata?: boolean;
688
+ isArchived?: boolean;
689
+ archivedAt?: boolean;
690
+ search?: boolean;
691
+ embedding?: boolean;
692
+ embeddingUpdatedAt?: boolean;
693
+ searchTsvRank?: boolean;
694
+ embeddingVectorDistance?: boolean;
695
+ kindTrgmSimilarity?: boolean;
696
+ titleTrgmSimilarity?: boolean;
697
+ descriptionTrgmSimilarity?: boolean;
698
+ bodyTrgmSimilarity?: boolean;
699
+ searchScore?: boolean;
700
+ agentResourceChunks?: {
701
+ select: AgentResourceChunkSelect;
702
+ first?: number;
703
+ filter?: AgentResourceChunkFilter;
704
+ orderBy?: AgentResourceChunkOrderBy[];
705
+ };
706
+ };
707
+ export interface AgentPlanFilter {
708
+ /** Filter by the object’s `id` field. */
709
+ id?: UUIDFilter;
710
+ /** Filter by the object’s `createdAt` field. */
711
+ createdAt?: DatetimeFilter;
712
+ /** Filter by the object’s `updatedAt` field. */
713
+ updatedAt?: DatetimeFilter;
714
+ /** Filter by the object’s `ownerId` field. */
715
+ ownerId?: UUIDFilter;
716
+ /** Filter by the object’s `threadId` field. */
717
+ threadId?: UUIDFilter;
718
+ /** Filter by the object’s `title` field. */
719
+ title?: StringFilter;
720
+ /** Filter by the object’s `description` field. */
721
+ description?: StringFilter;
722
+ /** Filter by the object’s `status` field. */
723
+ status?: StringFilter;
724
+ /** Checks for all expressions in this list. */
725
+ and?: AgentPlanFilter[];
726
+ /** Checks for any expressions in this list. */
727
+ or?: AgentPlanFilter[];
728
+ /** Negates the expression. */
729
+ not?: AgentPlanFilter;
730
+ /** Filter by the object’s `thread` relation. */
731
+ thread?: AgentThreadFilter;
732
+ /** Filter by the object’s `agentTasksByPlanId` relation. */
733
+ agentTasksByPlanId?: AgentPlanToManyAgentTaskFilter;
734
+ /** `agentTasksByPlanId` exist. */
735
+ agentTasksByPlanIdExist?: boolean;
736
+ }
737
+ export interface AgentFilter {
738
+ /** Filter by the object’s `id` field. */
739
+ id?: UUIDFilter;
740
+ /** Filter by the object’s `createdAt` field. */
741
+ createdAt?: DatetimeFilter;
742
+ /** Filter by the object’s `updatedAt` field. */
743
+ updatedAt?: DatetimeFilter;
744
+ /** Filter by the object’s `ownerId` field. */
745
+ ownerId?: UUIDFilter;
746
+ /** Filter by the object’s `personaId` field. */
747
+ personaId?: UUIDFilter;
748
+ /** Filter by the object’s `parentId` field. */
749
+ parentId?: UUIDFilter;
750
+ /** Filter by the object’s `name` field. */
751
+ name?: StringFilter;
752
+ /** Filter by the object’s `systemPrompt` field. */
753
+ systemPrompt?: StringFilter;
754
+ /** Filter by the object’s `config` field. */
755
+ config?: JSONFilter;
756
+ /** Filter by the object’s `status` field. */
757
+ status?: StringFilter;
758
+ /** Filter by the object’s `isEphemeral` field. */
759
+ isEphemeral?: BooleanFilter;
760
+ /** Checks for all expressions in this list. */
761
+ and?: AgentFilter[];
762
+ /** Checks for any expressions in this list. */
763
+ or?: AgentFilter[];
764
+ /** Negates the expression. */
765
+ not?: AgentFilter;
766
+ /** Filter by the object’s `parent` relation. */
767
+ parent?: AgentFilter;
768
+ /** A related `parent` exists. */
769
+ parentExists?: boolean;
770
+ /** Filter by the object’s `persona` relation. */
771
+ persona?: AgentPersonaFilter;
772
+ /** A related `persona` exists. */
773
+ personaExists?: boolean;
774
+ /** Filter by the object’s `agentThreads` relation. */
775
+ agentThreads?: AgentToManyAgentThreadFilter;
776
+ /** `agentThreads` exist. */
777
+ agentThreadsExist?: boolean;
778
+ /** Filter by the object’s `childAgents` relation. */
779
+ childAgents?: AgentToManyAgentFilter;
780
+ /** `childAgents` exist. */
781
+ childAgentsExist?: boolean;
782
+ }
783
+ export interface AgentThreadFilter {
784
+ /** Filter by the object’s `id` field. */
785
+ id?: UUIDFilter;
786
+ /** Filter by the object’s `createdAt` field. */
787
+ createdAt?: DatetimeFilter;
788
+ /** Filter by the object’s `updatedAt` field. */
789
+ updatedAt?: DatetimeFilter;
790
+ /** Filter by the object’s `ownerId` field. */
791
+ ownerId?: UUIDFilter;
792
+ /** Filter by the object’s `status` field. */
793
+ status?: StringFilter;
794
+ /** Filter by the object’s `isArchived` field. */
795
+ isArchived?: BooleanFilter;
796
+ /** Filter by the object’s `archivedAt` field. */
797
+ archivedAt?: DatetimeFilter;
798
+ /** Filter by the object’s `title` field. */
799
+ title?: StringFilter;
800
+ /** Filter by the object’s `mode` field. */
801
+ mode?: StringFilter;
802
+ /** Filter by the object’s `model` field. */
803
+ model?: StringFilter;
804
+ /** Filter by the object’s `systemPrompt` field. */
805
+ systemPrompt?: StringFilter;
806
+ /** Filter by the object’s `tags` field. */
807
+ tags?: StringListFilter;
808
+ /** Filter by the object’s `promptTemplateId` field. */
809
+ promptTemplateId?: UUIDFilter;
810
+ /** Filter by the object’s `agentId` field. */
811
+ agentId?: UUIDFilter;
812
+ /** Filter by the object’s `parentThreadId` field. */
813
+ parentThreadId?: UUIDFilter;
814
+ /** Checks for all expressions in this list. */
815
+ and?: AgentThreadFilter[];
816
+ /** Checks for any expressions in this list. */
817
+ or?: AgentThreadFilter[];
818
+ /** Negates the expression. */
819
+ not?: AgentThreadFilter;
820
+ /** Filter by the object’s `agent` relation. */
821
+ agent?: AgentFilter;
822
+ /** A related `agent` exists. */
823
+ agentExists?: boolean;
824
+ /** Filter by the object’s `parentThread` relation. */
825
+ parentThread?: AgentThreadFilter;
826
+ /** A related `parentThread` exists. */
827
+ parentThreadExists?: boolean;
828
+ /** Filter by the object’s `promptTemplate` relation. */
829
+ promptTemplate?: AgentPromptFilter;
830
+ /** A related `promptTemplate` exists. */
831
+ promptTemplateExists?: boolean;
832
+ /** Filter by the object’s `agentThreadsByParentThreadId` relation. */
833
+ agentThreadsByParentThreadId?: AgentThreadToManyAgentThreadFilter;
834
+ /** `agentThreadsByParentThreadId` exist. */
835
+ agentThreadsByParentThreadIdExist?: boolean;
836
+ /** Filter by the object’s `agentMessagesByThreadId` relation. */
837
+ agentMessagesByThreadId?: AgentThreadToManyAgentMessageFilter;
838
+ /** `agentMessagesByThreadId` exist. */
839
+ agentMessagesByThreadIdExist?: boolean;
840
+ /** Filter by the object’s `agentPlansByThreadId` relation. */
841
+ agentPlansByThreadId?: AgentThreadToManyAgentPlanFilter;
842
+ /** `agentPlansByThreadId` exist. */
843
+ agentPlansByThreadIdExist?: boolean;
844
+ }
845
+ export interface AgentMessageFilter {
846
+ /** Filter by the object’s `id` field. */
847
+ id?: UUIDFilter;
848
+ /** Filter by the object’s `createdAt` field. */
849
+ createdAt?: DatetimeFilter;
850
+ /** Filter by the object’s `updatedAt` field. */
851
+ updatedAt?: DatetimeFilter;
852
+ /** Filter by the object’s `ownerId` field. */
853
+ ownerId?: UUIDFilter;
854
+ /** Filter by the object’s `parts` field. */
855
+ parts?: JSONFilter;
856
+ /** Filter by the object’s `threadId` field. */
857
+ threadId?: UUIDFilter;
858
+ /** Filter by the object’s `authorRole` field. */
859
+ authorRole?: StringFilter;
860
+ /** Filter by the object’s `model` field. */
861
+ model?: StringFilter;
862
+ /** Checks for all expressions in this list. */
863
+ and?: AgentMessageFilter[];
864
+ /** Checks for any expressions in this list. */
865
+ or?: AgentMessageFilter[];
866
+ /** Negates the expression. */
867
+ not?: AgentMessageFilter;
868
+ /** Filter by the object’s `thread` relation. */
869
+ thread?: AgentThreadFilter;
870
+ }
871
+ export interface AgentTaskFilter {
872
+ /** Filter by the object’s `id` field. */
873
+ id?: UUIDFilter;
874
+ /** Filter by the object’s `createdAt` field. */
875
+ createdAt?: DatetimeFilter;
876
+ /** Filter by the object’s `updatedAt` field. */
877
+ updatedAt?: DatetimeFilter;
878
+ /** Filter by the object’s `ownerId` field. */
879
+ ownerId?: UUIDFilter;
880
+ /** Filter by the object’s `status` field. */
881
+ status?: StringFilter;
882
+ /** Filter by the object’s `planId` field. */
883
+ planId?: UUIDFilter;
884
+ /** Filter by the object’s `description` field. */
885
+ description?: StringFilter;
886
+ /** Filter by the object’s `source` field. */
887
+ source?: StringFilter;
888
+ /** Filter by the object’s `error` field. */
889
+ error?: StringFilter;
890
+ /** Filter by the object’s `orderIndex` field. */
891
+ orderIndex?: IntFilter;
892
+ /** Filter by the object’s `requiresApproval` field. */
893
+ requiresApproval?: BooleanFilter;
894
+ /** Filter by the object’s `approvalStatus` field. */
895
+ approvalStatus?: StringFilter;
896
+ /** Filter by the object’s `approvedBy` field. */
897
+ approvedBy?: UUIDFilter;
898
+ /** Filter by the object’s `approvedAt` field. */
899
+ approvedAt?: DatetimeFilter;
900
+ /** Filter by the object’s `approvalFeedback` field. */
901
+ approvalFeedback?: StringFilter;
902
+ /** Checks for all expressions in this list. */
903
+ and?: AgentTaskFilter[];
904
+ /** Checks for any expressions in this list. */
905
+ or?: AgentTaskFilter[];
906
+ /** Negates the expression. */
907
+ not?: AgentTaskFilter;
908
+ /** Filter by the object’s `plan` relation. */
909
+ plan?: AgentPlanFilter;
910
+ }
911
+ export interface AgentPromptFilter {
912
+ /** Filter by the object’s `id` field. */
913
+ id?: UUIDFilter;
914
+ /** Filter by the object’s `createdAt` field. */
915
+ createdAt?: DatetimeFilter;
916
+ /** Filter by the object’s `updatedAt` field. */
917
+ updatedAt?: DatetimeFilter;
918
+ /** Filter by the object’s `createdBy` field. */
919
+ createdBy?: UUIDFilter;
920
+ /** Filter by the object’s `updatedBy` field. */
921
+ updatedBy?: UUIDFilter;
922
+ /** Filter by the object’s `name` field. */
923
+ name?: StringFilter;
924
+ /** Filter by the object’s `content` field. */
925
+ content?: StringFilter;
926
+ /** Filter by the object’s `description` field. */
927
+ description?: StringFilter;
928
+ /** Filter by the object’s `isDefault` field. */
929
+ isDefault?: BooleanFilter;
930
+ /** Filter by the object’s `metadata` field. */
931
+ metadata?: JSONFilter;
932
+ /** Checks for all expressions in this list. */
933
+ and?: AgentPromptFilter[];
934
+ /** Checks for any expressions in this list. */
935
+ or?: AgentPromptFilter[];
936
+ /** Negates the expression. */
937
+ not?: AgentPromptFilter;
938
+ }
939
+ export interface AgentResourceChunkFilter {
940
+ /** Filter by the object’s `id` field. */
941
+ id?: UUIDFilter;
942
+ /** Filter by the object’s `agentResourceId` field. */
943
+ agentResourceId?: UUIDFilter;
944
+ /** Filter by the object’s `body` field. */
945
+ body?: StringFilter;
946
+ /** Filter by the object’s `chunkIndex` field. */
947
+ chunkIndex?: IntFilter;
948
+ /** Filter by the object’s `embedding` field. */
949
+ embedding?: VectorFilter;
950
+ /** Filter by the object’s `metadata` field. */
951
+ metadata?: JSONFilter;
952
+ /** Filter by the object’s `createdAt` field. */
953
+ createdAt?: DatetimeFilter;
954
+ /** Filter by the object’s `updatedAt` field. */
955
+ updatedAt?: DatetimeFilter;
956
+ /** Checks for all expressions in this list. */
957
+ and?: AgentResourceChunkFilter[];
958
+ /** Checks for any expressions in this list. */
959
+ or?: AgentResourceChunkFilter[];
960
+ /** Negates the expression. */
961
+ not?: AgentResourceChunkFilter;
962
+ /** Filter by the object’s `agentResource` relation. */
963
+ agentResource?: AgentResourceFilter;
964
+ /** VECTOR search on the `embedding` column. */
965
+ vectorEmbedding?: VectorNearbyInput;
966
+ }
967
+ export interface AgentPersonaFilter {
968
+ /** Filter by the object’s `id` field. */
969
+ id?: UUIDFilter;
970
+ /** Filter by the object’s `createdAt` field. */
971
+ createdAt?: DatetimeFilter;
972
+ /** Filter by the object’s `updatedAt` field. */
973
+ updatedAt?: DatetimeFilter;
974
+ /** Filter by the object’s `createdBy` field. */
975
+ createdBy?: UUIDFilter;
976
+ /** Filter by the object’s `updatedBy` field. */
977
+ updatedBy?: UUIDFilter;
978
+ /** Filter by the object’s `slug` field. */
979
+ slug?: StringFilter;
980
+ /** Filter by the object’s `name` field. */
981
+ name?: StringFilter;
982
+ /** Filter by the object’s `description` field. */
983
+ description?: StringFilter;
984
+ /** Filter by the object’s `systemPrompt` field. */
985
+ systemPrompt?: StringFilter;
986
+ /** Filter by the object’s `resources` field. */
987
+ resources?: StringListFilter;
988
+ /** Filter by the object’s `config` field. */
989
+ config?: JSONFilter;
990
+ /** Filter by the object’s `isActive` field. */
991
+ isActive?: BooleanFilter;
992
+ /** Checks for all expressions in this list. */
993
+ and?: AgentPersonaFilter[];
994
+ /** Checks for any expressions in this list. */
995
+ or?: AgentPersonaFilter[];
996
+ /** Negates the expression. */
997
+ not?: AgentPersonaFilter;
998
+ /** Filter by the object’s `agentsByPersonaId` relation. */
999
+ agentsByPersonaId?: AgentPersonaToManyAgentFilter;
1000
+ /** `agentsByPersonaId` exist. */
1001
+ agentsByPersonaIdExist?: boolean;
1002
+ }
1003
+ export interface AgentResourceFilter {
1004
+ /** Filter by the object’s `id` field. */
1005
+ id?: UUIDFilter;
1006
+ /** Filter by the object’s `createdAt` field. */
1007
+ createdAt?: DatetimeFilter;
1008
+ /** Filter by the object’s `updatedAt` field. */
1009
+ updatedAt?: DatetimeFilter;
1010
+ /** Filter by the object’s `createdBy` field. */
1011
+ createdBy?: UUIDFilter;
1012
+ /** Filter by the object’s `updatedBy` field. */
1013
+ updatedBy?: UUIDFilter;
1014
+ /** Filter by the object’s `slug` field. */
1015
+ slug?: StringTrgmFilter;
1016
+ /** Filter by the object’s `kind` field. */
1017
+ kind?: StringTrgmFilter;
1018
+ /** Filter by the object’s `title` field. */
1019
+ title?: StringTrgmFilter;
1020
+ /** Filter by the object’s `description` field. */
1021
+ description?: StringTrgmFilter;
1022
+ /** Filter by the object’s `body` field. */
1023
+ body?: StringTrgmFilter;
1024
+ /** Filter by the object’s `keywords` field. */
1025
+ keywords?: StringListFilter;
1026
+ /** Filter by the object’s `isActive` field. */
1027
+ isActive?: BooleanFilter;
1028
+ /** Filter by the object’s `metadata` field. */
1029
+ metadata?: JSONFilter;
1030
+ /** Filter by the object’s `isArchived` field. */
1031
+ isArchived?: BooleanFilter;
1032
+ /** Filter by the object’s `archivedAt` field. */
1033
+ archivedAt?: DatetimeFilter;
1034
+ /** Filter by the object’s `search` field. */
1035
+ search?: FullTextFilter;
1036
+ /** Filter by the object’s `embedding` field. */
1037
+ embedding?: VectorFilter;
1038
+ /** Filter by the object’s `embeddingUpdatedAt` field. */
1039
+ embeddingUpdatedAt?: DatetimeFilter;
1040
+ /** Checks for all expressions in this list. */
1041
+ and?: AgentResourceFilter[];
1042
+ /** Checks for any expressions in this list. */
1043
+ or?: AgentResourceFilter[];
1044
+ /** Negates the expression. */
1045
+ not?: AgentResourceFilter;
1046
+ /** Filter by the object’s `agentResourceChunks` relation. */
1047
+ agentResourceChunks?: AgentResourceToManyAgentResourceChunkFilter;
1048
+ /** `agentResourceChunks` exist. */
1049
+ agentResourceChunksExist?: boolean;
1050
+ /** TSV search on the `search` column. */
1051
+ tsvSearch?: string;
1052
+ /** VECTOR search on the `embedding` column. */
1053
+ vectorEmbedding?: VectorNearbyInput;
1054
+ /** TRGM search on the `kind` column. */
1055
+ trgmKind?: TrgmSearchInput;
1056
+ /** TRGM search on the `title` column. */
1057
+ trgmTitle?: TrgmSearchInput;
1058
+ /** TRGM search on the `description` column. */
1059
+ trgmDescription?: TrgmSearchInput;
1060
+ /** TRGM search on the `body` column. */
1061
+ trgmBody?: TrgmSearchInput;
1062
+ /**
1063
+ * Composite unified search. Provide a search string and it will be dispatched to
1064
+ * all text-compatible search algorithms (tsvector, BM25, pg_trgm)
1065
+ * simultaneously. Rows matching ANY algorithm are returned. All matching score
1066
+ * fields are populated.
1067
+ */
1068
+ unifiedSearch?: string;
1069
+ }
1070
+ export type AgentPlanOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'OWNER_ID_ASC' | 'OWNER_ID_DESC' | 'THREAD_ID_ASC' | 'THREAD_ID_DESC' | 'TITLE_ASC' | 'TITLE_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'STATUS_ASC' | 'STATUS_DESC';
1071
+ export type AgentOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'OWNER_ID_ASC' | 'OWNER_ID_DESC' | 'PERSONA_ID_ASC' | 'PERSONA_ID_DESC' | 'PARENT_ID_ASC' | 'PARENT_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'SYSTEM_PROMPT_ASC' | 'SYSTEM_PROMPT_DESC' | 'CONFIG_ASC' | 'CONFIG_DESC' | 'STATUS_ASC' | 'STATUS_DESC' | 'IS_EPHEMERAL_ASC' | 'IS_EPHEMERAL_DESC';
1072
+ export type AgentThreadOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'OWNER_ID_ASC' | 'OWNER_ID_DESC' | 'STATUS_ASC' | 'STATUS_DESC' | 'IS_ARCHIVED_ASC' | 'IS_ARCHIVED_DESC' | 'ARCHIVED_AT_ASC' | 'ARCHIVED_AT_DESC' | 'TITLE_ASC' | 'TITLE_DESC' | 'MODE_ASC' | 'MODE_DESC' | 'MODEL_ASC' | 'MODEL_DESC' | 'SYSTEM_PROMPT_ASC' | 'SYSTEM_PROMPT_DESC' | 'TAGS_ASC' | 'TAGS_DESC' | 'PROMPT_TEMPLATE_ID_ASC' | 'PROMPT_TEMPLATE_ID_DESC' | 'AGENT_ID_ASC' | 'AGENT_ID_DESC' | 'PARENT_THREAD_ID_ASC' | 'PARENT_THREAD_ID_DESC';
1073
+ export type AgentMessageOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'OWNER_ID_ASC' | 'OWNER_ID_DESC' | 'PARTS_ASC' | 'PARTS_DESC' | 'THREAD_ID_ASC' | 'THREAD_ID_DESC' | 'AUTHOR_ROLE_ASC' | 'AUTHOR_ROLE_DESC' | 'MODEL_ASC' | 'MODEL_DESC';
1074
+ export type AgentTaskOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'OWNER_ID_ASC' | 'OWNER_ID_DESC' | 'STATUS_ASC' | 'STATUS_DESC' | 'PLAN_ID_ASC' | 'PLAN_ID_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'SOURCE_ASC' | 'SOURCE_DESC' | 'ERROR_ASC' | 'ERROR_DESC' | 'ORDER_INDEX_ASC' | 'ORDER_INDEX_DESC' | 'REQUIRES_APPROVAL_ASC' | 'REQUIRES_APPROVAL_DESC' | 'APPROVAL_STATUS_ASC' | 'APPROVAL_STATUS_DESC' | 'APPROVED_BY_ASC' | 'APPROVED_BY_DESC' | 'APPROVED_AT_ASC' | 'APPROVED_AT_DESC' | 'APPROVAL_FEEDBACK_ASC' | 'APPROVAL_FEEDBACK_DESC';
1075
+ export type AgentPromptOrderBy = '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' | 'NAME_ASC' | 'NAME_DESC' | 'CONTENT_ASC' | 'CONTENT_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'IS_DEFAULT_ASC' | 'IS_DEFAULT_DESC' | 'METADATA_ASC' | 'METADATA_DESC';
1076
+ export type AgentResourceChunkOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'AGENT_RESOURCE_ID_ASC' | 'AGENT_RESOURCE_ID_DESC' | 'BODY_ASC' | 'BODY_DESC' | 'CHUNK_INDEX_ASC' | 'CHUNK_INDEX_DESC' | 'EMBEDDING_ASC' | 'EMBEDDING_DESC' | 'METADATA_ASC' | 'METADATA_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'EMBEDDING_VECTOR_DISTANCE_ASC' | 'EMBEDDING_VECTOR_DISTANCE_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
1077
+ export type AgentPersonaOrderBy = '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' | 'SLUG_ASC' | 'SLUG_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'SYSTEM_PROMPT_ASC' | 'SYSTEM_PROMPT_DESC' | 'RESOURCES_ASC' | 'RESOURCES_DESC' | 'CONFIG_ASC' | 'CONFIG_DESC' | 'IS_ACTIVE_ASC' | 'IS_ACTIVE_DESC';
1078
+ export type AgentResourceOrderBy = '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' | 'SLUG_ASC' | 'SLUG_DESC' | 'KIND_ASC' | 'KIND_DESC' | 'TITLE_ASC' | 'TITLE_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'BODY_ASC' | 'BODY_DESC' | 'KEYWORDS_ASC' | 'KEYWORDS_DESC' | 'IS_ACTIVE_ASC' | 'IS_ACTIVE_DESC' | 'METADATA_ASC' | 'METADATA_DESC' | 'IS_ARCHIVED_ASC' | 'IS_ARCHIVED_DESC' | 'ARCHIVED_AT_ASC' | 'ARCHIVED_AT_DESC' | 'SEARCH_ASC' | 'SEARCH_DESC' | 'EMBEDDING_ASC' | 'EMBEDDING_DESC' | 'EMBEDDING_UPDATED_AT_ASC' | 'EMBEDDING_UPDATED_AT_DESC' | 'SEARCH_TSV_RANK_ASC' | 'SEARCH_TSV_RANK_DESC' | 'EMBEDDING_VECTOR_DISTANCE_ASC' | 'EMBEDDING_VECTOR_DISTANCE_DESC' | 'KIND_TRGM_SIMILARITY_ASC' | 'KIND_TRGM_SIMILARITY_DESC' | 'TITLE_TRGM_SIMILARITY_ASC' | 'TITLE_TRGM_SIMILARITY_DESC' | 'DESCRIPTION_TRGM_SIMILARITY_ASC' | 'DESCRIPTION_TRGM_SIMILARITY_DESC' | 'BODY_TRGM_SIMILARITY_ASC' | 'BODY_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
1079
+ export interface CreateAgentPlanInput {
1080
+ clientMutationId?: string;
1081
+ agentPlan: {
1082
+ ownerId?: string;
1083
+ threadId: string;
1084
+ title: string;
1085
+ description?: string;
1086
+ status?: string;
1087
+ };
1088
+ }
1089
+ export interface AgentPlanPatch {
1090
+ ownerId?: string | null;
1091
+ threadId?: string | null;
1092
+ title?: string | null;
1093
+ description?: string | null;
1094
+ status?: string | null;
1095
+ }
1096
+ export interface UpdateAgentPlanInput {
1097
+ clientMutationId?: string;
1098
+ id: string;
1099
+ agentPlanPatch: AgentPlanPatch;
1100
+ }
1101
+ export interface DeleteAgentPlanInput {
1102
+ clientMutationId?: string;
1103
+ id: string;
1104
+ }
1105
+ export interface CreateAgentInput {
1106
+ clientMutationId?: string;
1107
+ agent: {
1108
+ ownerId?: string;
1109
+ personaId?: string;
1110
+ parentId?: string;
1111
+ name: string;
1112
+ systemPrompt?: string;
1113
+ config?: Record<string, unknown>;
1114
+ status?: string;
1115
+ isEphemeral?: boolean;
1116
+ };
1117
+ }
1118
+ export interface AgentPatch {
1119
+ ownerId?: string | null;
1120
+ personaId?: string | null;
1121
+ parentId?: string | null;
1122
+ name?: string | null;
1123
+ systemPrompt?: string | null;
1124
+ config?: Record<string, unknown> | null;
1125
+ status?: string | null;
1126
+ isEphemeral?: boolean | null;
1127
+ }
1128
+ export interface UpdateAgentInput {
1129
+ clientMutationId?: string;
1130
+ id: string;
1131
+ agentPatch: AgentPatch;
1132
+ }
1133
+ export interface DeleteAgentInput {
1134
+ clientMutationId?: string;
1135
+ id: string;
1136
+ }
1137
+ export interface CreateAgentThreadInput {
1138
+ clientMutationId?: string;
1139
+ agentThread: {
1140
+ ownerId?: string;
1141
+ status?: string;
1142
+ isArchived?: boolean;
1143
+ archivedAt?: string;
1144
+ title?: string;
1145
+ mode?: string;
1146
+ model?: string;
1147
+ systemPrompt?: string;
1148
+ tags?: string[];
1149
+ promptTemplateId?: string;
1150
+ agentId?: string;
1151
+ parentThreadId?: string;
1152
+ };
1153
+ }
1154
+ export interface AgentThreadPatch {
1155
+ ownerId?: string | null;
1156
+ status?: string | null;
1157
+ isArchived?: boolean | null;
1158
+ archivedAt?: string | null;
1159
+ title?: string | null;
1160
+ mode?: string | null;
1161
+ model?: string | null;
1162
+ systemPrompt?: string | null;
1163
+ tags?: string[] | null;
1164
+ promptTemplateId?: string | null;
1165
+ agentId?: string | null;
1166
+ parentThreadId?: string | null;
1167
+ }
1168
+ export interface UpdateAgentThreadInput {
1169
+ clientMutationId?: string;
1170
+ id: string;
1171
+ agentThreadPatch: AgentThreadPatch;
1172
+ }
1173
+ export interface DeleteAgentThreadInput {
1174
+ clientMutationId?: string;
1175
+ id: string;
1176
+ }
1177
+ export interface CreateAgentMessageInput {
1178
+ clientMutationId?: string;
1179
+ agentMessage: {
1180
+ ownerId?: string;
1181
+ parts?: Record<string, unknown>;
1182
+ threadId: string;
1183
+ authorRole: string;
1184
+ model?: string;
1185
+ };
1186
+ }
1187
+ export interface AgentMessagePatch {
1188
+ ownerId?: string | null;
1189
+ parts?: Record<string, unknown> | null;
1190
+ threadId?: string | null;
1191
+ authorRole?: string | null;
1192
+ model?: string | null;
1193
+ }
1194
+ export interface UpdateAgentMessageInput {
1195
+ clientMutationId?: string;
1196
+ id: string;
1197
+ agentMessagePatch: AgentMessagePatch;
1198
+ }
1199
+ export interface DeleteAgentMessageInput {
1200
+ clientMutationId?: string;
1201
+ id: string;
1202
+ }
1203
+ export interface CreateAgentTaskInput {
1204
+ clientMutationId?: string;
1205
+ agentTask: {
1206
+ ownerId?: string;
1207
+ status?: string;
1208
+ planId: string;
1209
+ description: string;
1210
+ source?: string;
1211
+ error?: string;
1212
+ orderIndex?: number;
1213
+ requiresApproval?: boolean;
1214
+ approvalStatus?: string;
1215
+ approvedBy?: string;
1216
+ approvedAt?: string;
1217
+ approvalFeedback?: string;
1218
+ };
1219
+ }
1220
+ export interface AgentTaskPatch {
1221
+ ownerId?: string | null;
1222
+ status?: string | null;
1223
+ planId?: string | null;
1224
+ description?: string | null;
1225
+ source?: string | null;
1226
+ error?: string | null;
1227
+ orderIndex?: number | null;
1228
+ requiresApproval?: boolean | null;
1229
+ approvalStatus?: string | null;
1230
+ approvedBy?: string | null;
1231
+ approvedAt?: string | null;
1232
+ approvalFeedback?: string | null;
1233
+ }
1234
+ export interface UpdateAgentTaskInput {
1235
+ clientMutationId?: string;
1236
+ id: string;
1237
+ agentTaskPatch: AgentTaskPatch;
1238
+ }
1239
+ export interface DeleteAgentTaskInput {
1240
+ clientMutationId?: string;
1241
+ id: string;
1242
+ }
1243
+ export interface CreateAgentPromptInput {
1244
+ clientMutationId?: string;
1245
+ agentPrompt: {
1246
+ createdBy?: string;
1247
+ updatedBy?: string;
1248
+ name: string;
1249
+ content: string;
1250
+ description?: string;
1251
+ isDefault?: boolean;
1252
+ metadata?: Record<string, unknown>;
1253
+ };
1254
+ }
1255
+ export interface AgentPromptPatch {
1256
+ createdBy?: string | null;
1257
+ updatedBy?: string | null;
1258
+ name?: string | null;
1259
+ content?: string | null;
1260
+ description?: string | null;
1261
+ isDefault?: boolean | null;
1262
+ metadata?: Record<string, unknown> | null;
1263
+ }
1264
+ export interface UpdateAgentPromptInput {
1265
+ clientMutationId?: string;
1266
+ id: string;
1267
+ agentPromptPatch: AgentPromptPatch;
1268
+ }
1269
+ export interface DeleteAgentPromptInput {
1270
+ clientMutationId?: string;
1271
+ id: string;
1272
+ }
1273
+ export interface CreateAgentResourceChunkInput {
1274
+ clientMutationId?: string;
1275
+ agentResourceChunk: {
1276
+ agentResourceId: string;
1277
+ body: string;
1278
+ chunkIndex?: number;
1279
+ embedding?: number[];
1280
+ metadata?: Record<string, unknown>;
1281
+ };
1282
+ }
1283
+ export interface AgentResourceChunkPatch {
1284
+ agentResourceId?: string | null;
1285
+ body?: string | null;
1286
+ chunkIndex?: number | null;
1287
+ embedding?: number[] | null;
1288
+ metadata?: Record<string, unknown> | null;
1289
+ }
1290
+ export interface UpdateAgentResourceChunkInput {
1291
+ clientMutationId?: string;
1292
+ id: string;
1293
+ agentResourceChunkPatch: AgentResourceChunkPatch;
1294
+ }
1295
+ export interface DeleteAgentResourceChunkInput {
1296
+ clientMutationId?: string;
1297
+ id: string;
1298
+ }
1299
+ export interface CreateAgentPersonaInput {
1300
+ clientMutationId?: string;
1301
+ agentPersona: {
1302
+ createdBy?: string;
1303
+ updatedBy?: string;
1304
+ slug: string;
1305
+ name: string;
1306
+ description?: string;
1307
+ systemPrompt?: string;
1308
+ resources?: string[];
1309
+ config?: Record<string, unknown>;
1310
+ isActive?: boolean;
1311
+ };
1312
+ }
1313
+ export interface AgentPersonaPatch {
1314
+ createdBy?: string | null;
1315
+ updatedBy?: string | null;
1316
+ slug?: string | null;
1317
+ name?: string | null;
1318
+ description?: string | null;
1319
+ systemPrompt?: string | null;
1320
+ resources?: string[] | null;
1321
+ config?: Record<string, unknown> | null;
1322
+ isActive?: boolean | null;
1323
+ }
1324
+ export interface UpdateAgentPersonaInput {
1325
+ clientMutationId?: string;
1326
+ id: string;
1327
+ agentPersonaPatch: AgentPersonaPatch;
1328
+ }
1329
+ export interface DeleteAgentPersonaInput {
1330
+ clientMutationId?: string;
1331
+ id: string;
1332
+ }
1333
+ export interface CreateAgentResourceInput {
1334
+ clientMutationId?: string;
1335
+ agentResource: {
1336
+ createdBy?: string;
1337
+ updatedBy?: string;
1338
+ slug: string;
1339
+ kind?: string;
1340
+ title: string;
1341
+ description?: string;
1342
+ body: string;
1343
+ keywords?: string[];
1344
+ isActive?: boolean;
1345
+ metadata?: Record<string, unknown>;
1346
+ isArchived?: boolean;
1347
+ archivedAt?: string;
1348
+ embedding?: number[];
1349
+ embeddingUpdatedAt?: string;
1350
+ };
1351
+ }
1352
+ export interface AgentResourcePatch {
1353
+ createdBy?: string | null;
1354
+ updatedBy?: string | null;
1355
+ slug?: string | null;
1356
+ kind?: string | null;
1357
+ title?: string | null;
1358
+ description?: string | null;
1359
+ body?: string | null;
1360
+ keywords?: string[] | null;
1361
+ isActive?: boolean | null;
1362
+ metadata?: Record<string, unknown> | null;
1363
+ isArchived?: boolean | null;
1364
+ archivedAt?: string | null;
1365
+ embedding?: number[] | null;
1366
+ embeddingUpdatedAt?: string | null;
1367
+ }
1368
+ export interface UpdateAgentResourceInput {
1369
+ clientMutationId?: string;
1370
+ id: string;
1371
+ agentResourcePatch: AgentResourcePatch;
1372
+ }
1373
+ export interface DeleteAgentResourceInput {
1374
+ clientMutationId?: string;
1375
+ id: string;
1376
+ }
1377
+ export declare const connectionFieldsMap: Record<string, Record<string, string>>;
1378
+ export interface ProvisionBucketInput {
1379
+ /** The logical bucket key (e.g., "public", "private") */
1380
+ bucketKey: string;
1381
+ /**
1382
+ * Owner entity ID for entity-scoped bucket provisioning.
1383
+ * Omit for app-level (database-wide) storage.
1384
+ */
1385
+ ownerId?: string;
1386
+ }
1387
+ /** A filter to be used against many `AgentTask` object types. All fields are combined with a logical ‘and.’ */
1388
+ export interface AgentPlanToManyAgentTaskFilter {
1389
+ /** Filters to entities where at least one related entity matches. */
1390
+ some?: AgentTaskFilter;
1391
+ /** Filters to entities where every related entity matches. */
1392
+ every?: AgentTaskFilter;
1393
+ /** Filters to entities where no related entity matches. */
1394
+ none?: AgentTaskFilter;
1395
+ }
1396
+ /** A filter to be used against many `AgentThread` object types. All fields are combined with a logical ‘and.’ */
1397
+ export interface AgentToManyAgentThreadFilter {
1398
+ /** Filters to entities where at least one related entity matches. */
1399
+ some?: AgentThreadFilter;
1400
+ /** Filters to entities where every related entity matches. */
1401
+ every?: AgentThreadFilter;
1402
+ /** Filters to entities where no related entity matches. */
1403
+ none?: AgentThreadFilter;
1404
+ }
1405
+ /** A filter to be used against many `Agent` object types. All fields are combined with a logical ‘and.’ */
1406
+ export interface AgentToManyAgentFilter {
1407
+ /** Filters to entities where at least one related entity matches. */
1408
+ some?: AgentFilter;
1409
+ /** Filters to entities where every related entity matches. */
1410
+ every?: AgentFilter;
1411
+ /** Filters to entities where no related entity matches. */
1412
+ none?: AgentFilter;
1413
+ }
1414
+ /** A filter to be used against many `AgentThread` object types. All fields are combined with a logical ‘and.’ */
1415
+ export interface AgentThreadToManyAgentThreadFilter {
1416
+ /** Filters to entities where at least one related entity matches. */
1417
+ some?: AgentThreadFilter;
1418
+ /** Filters to entities where every related entity matches. */
1419
+ every?: AgentThreadFilter;
1420
+ /** Filters to entities where no related entity matches. */
1421
+ none?: AgentThreadFilter;
1422
+ }
1423
+ /** A filter to be used against many `AgentMessage` object types. All fields are combined with a logical ‘and.’ */
1424
+ export interface AgentThreadToManyAgentMessageFilter {
1425
+ /** Filters to entities where at least one related entity matches. */
1426
+ some?: AgentMessageFilter;
1427
+ /** Filters to entities where every related entity matches. */
1428
+ every?: AgentMessageFilter;
1429
+ /** Filters to entities where no related entity matches. */
1430
+ none?: AgentMessageFilter;
1431
+ }
1432
+ /** A filter to be used against many `AgentPlan` object types. All fields are combined with a logical ‘and.’ */
1433
+ export interface AgentThreadToManyAgentPlanFilter {
1434
+ /** Filters to entities where at least one related entity matches. */
1435
+ some?: AgentPlanFilter;
1436
+ /** Filters to entities where every related entity matches. */
1437
+ every?: AgentPlanFilter;
1438
+ /** Filters to entities where no related entity matches. */
1439
+ none?: AgentPlanFilter;
1440
+ }
1441
+ /** Input for vector similarity search. Provide a query vector, optional metric, and optional max distance threshold. */
1442
+ export interface VectorNearbyInput {
1443
+ /** Query vector for similarity search. */
1444
+ vector: number[];
1445
+ /** Similarity metric to use (default: COSINE). */
1446
+ metric?: VectorMetric;
1447
+ /** Maximum distance threshold. Only rows within this distance are returned. */
1448
+ distance?: number;
1449
+ /** When true (default for tables with @hasChunks), transparently queries the chunks table and returns the minimum distance across parent + all chunks. Set to false to only search the parent embedding. */
1450
+ includeChunks?: boolean;
1451
+ }
1452
+ /** A filter to be used against many `Agent` object types. All fields are combined with a logical ‘and.’ */
1453
+ export interface AgentPersonaToManyAgentFilter {
1454
+ /** Filters to entities where at least one related entity matches. */
1455
+ some?: AgentFilter;
1456
+ /** Filters to entities where every related entity matches. */
1457
+ every?: AgentFilter;
1458
+ /** Filters to entities where no related entity matches. */
1459
+ none?: AgentFilter;
1460
+ }
1461
+ /** A filter to be used against String fields with pg_trgm support. All fields are combined with a logical ‘and.’ */
1462
+ export interface StringTrgmFilter {
1463
+ /** Is null (if `true` is specified) or is not null (if `false` is specified). */
1464
+ isNull?: boolean;
1465
+ /** Equal to the specified value. */
1466
+ equalTo?: string;
1467
+ /** Not equal to the specified value. */
1468
+ notEqualTo?: string;
1469
+ /** Not equal to the specified value, treating null like an ordinary value. */
1470
+ distinctFrom?: string;
1471
+ /** Equal to the specified value, treating null like an ordinary value. */
1472
+ notDistinctFrom?: string;
1473
+ /** Included in the specified list. */
1474
+ in?: string[];
1475
+ /** Not included in the specified list. */
1476
+ notIn?: string[];
1477
+ /** Less than the specified value. */
1478
+ lessThan?: string;
1479
+ /** Less than or equal to the specified value. */
1480
+ lessThanOrEqualTo?: string;
1481
+ /** Greater than the specified value. */
1482
+ greaterThan?: string;
1483
+ /** Greater than or equal to the specified value. */
1484
+ greaterThanOrEqualTo?: string;
1485
+ /** Contains the specified string (case-sensitive). */
1486
+ includes?: string;
1487
+ /** Does not contain the specified string (case-sensitive). */
1488
+ notIncludes?: string;
1489
+ /** Contains the specified string (case-insensitive). */
1490
+ includesInsensitive?: string;
1491
+ /** Does not contain the specified string (case-insensitive). */
1492
+ notIncludesInsensitive?: string;
1493
+ /** Starts with the specified string (case-sensitive). */
1494
+ startsWith?: string;
1495
+ /** Does not start with the specified string (case-sensitive). */
1496
+ notStartsWith?: string;
1497
+ /** Starts with the specified string (case-insensitive). */
1498
+ startsWithInsensitive?: string;
1499
+ /** Does not start with the specified string (case-insensitive). */
1500
+ notStartsWithInsensitive?: string;
1501
+ /** Ends with the specified string (case-sensitive). */
1502
+ endsWith?: string;
1503
+ /** Does not end with the specified string (case-sensitive). */
1504
+ notEndsWith?: string;
1505
+ /** Ends with the specified string (case-insensitive). */
1506
+ endsWithInsensitive?: string;
1507
+ /** Does not end with the specified string (case-insensitive). */
1508
+ notEndsWithInsensitive?: string;
1509
+ /** Matches the specified pattern (case-sensitive). An underscore (_) matches any single character; a percent sign (%) matches any sequence of zero or more characters. */
1510
+ like?: string;
1511
+ /** Does not match the specified pattern (case-sensitive). An underscore (_) matches any single character; a percent sign (%) matches any sequence of zero or more characters. */
1512
+ notLike?: string;
1513
+ /** Matches the specified pattern (case-insensitive). An underscore (_) matches any single character; a percent sign (%) matches any sequence of zero or more characters. */
1514
+ likeInsensitive?: string;
1515
+ /** Does not match the specified pattern (case-insensitive). An underscore (_) matches any single character; a percent sign (%) matches any sequence of zero or more characters. */
1516
+ notLikeInsensitive?: string;
1517
+ /** Equal to the specified value (case-insensitive). */
1518
+ equalToInsensitive?: string;
1519
+ /** Not equal to the specified value (case-insensitive). */
1520
+ notEqualToInsensitive?: string;
1521
+ /** Not equal to the specified value, treating null like an ordinary value (case-insensitive). */
1522
+ distinctFromInsensitive?: string;
1523
+ /** Equal to the specified value, treating null like an ordinary value (case-insensitive). */
1524
+ notDistinctFromInsensitive?: string;
1525
+ /** Included in the specified list (case-insensitive). */
1526
+ inInsensitive?: string[];
1527
+ /** Not included in the specified list (case-insensitive). */
1528
+ notInInsensitive?: string[];
1529
+ /** Less than the specified value (case-insensitive). */
1530
+ lessThanInsensitive?: string;
1531
+ /** Less than or equal to the specified value (case-insensitive). */
1532
+ lessThanOrEqualToInsensitive?: string;
1533
+ /** Greater than the specified value (case-insensitive). */
1534
+ greaterThanInsensitive?: string;
1535
+ /** Greater than or equal to the specified value (case-insensitive). */
1536
+ greaterThanOrEqualToInsensitive?: string;
1537
+ /** Fuzzy matches using pg_trgm trigram similarity. Tolerates typos and misspellings. */
1538
+ similarTo?: TrgmSearchInput;
1539
+ /** Fuzzy matches using pg_trgm word_similarity. Finds the best matching substring within the column value. */
1540
+ wordSimilarTo?: TrgmSearchInput;
1541
+ }
1542
+ /** A filter to be used against many `AgentResourceChunk` object types. All fields are combined with a logical ‘and.’ */
1543
+ export interface AgentResourceToManyAgentResourceChunkFilter {
1544
+ /** Filters to entities where at least one related entity matches. */
1545
+ some?: AgentResourceChunkFilter;
1546
+ /** Filters to entities where every related entity matches. */
1547
+ every?: AgentResourceChunkFilter;
1548
+ /** Filters to entities where no related entity matches. */
1549
+ none?: AgentResourceChunkFilter;
1550
+ }
1551
+ /** Input for pg_trgm fuzzy text matching. Provide a search value and optional similarity threshold. */
1552
+ export interface TrgmSearchInput {
1553
+ /** The text to fuzzy-match against. Typos and misspellings are tolerated. */
1554
+ value: string;
1555
+ /** Minimum similarity threshold (0.0 to 1.0). Higher = stricter matching. Default is 0.3. */
1556
+ threshold?: number;
1557
+ }
1558
+ /** A filter to be used against `AgentTask` object types. All fields are combined with a logical ‘and.’ */
1559
+ export interface AgentTaskFilter {
1560
+ /** Filter by the object’s `id` field. */
1561
+ id?: UUIDFilter;
1562
+ /** Filter by the object’s `createdAt` field. */
1563
+ createdAt?: DatetimeFilter;
1564
+ /** Filter by the object’s `updatedAt` field. */
1565
+ updatedAt?: DatetimeFilter;
1566
+ /** Filter by the object’s `ownerId` field. */
1567
+ ownerId?: UUIDFilter;
1568
+ /** Filter by the object’s `status` field. */
1569
+ status?: StringFilter;
1570
+ /** Filter by the object’s `planId` field. */
1571
+ planId?: UUIDFilter;
1572
+ /** Filter by the object’s `description` field. */
1573
+ description?: StringFilter;
1574
+ /** Filter by the object’s `source` field. */
1575
+ source?: StringFilter;
1576
+ /** Filter by the object’s `error` field. */
1577
+ error?: StringFilter;
1578
+ /** Filter by the object’s `orderIndex` field. */
1579
+ orderIndex?: IntFilter;
1580
+ /** Filter by the object’s `requiresApproval` field. */
1581
+ requiresApproval?: BooleanFilter;
1582
+ /** Filter by the object’s `approvalStatus` field. */
1583
+ approvalStatus?: StringFilter;
1584
+ /** Filter by the object’s `approvedBy` field. */
1585
+ approvedBy?: UUIDFilter;
1586
+ /** Filter by the object’s `approvedAt` field. */
1587
+ approvedAt?: DatetimeFilter;
1588
+ /** Filter by the object’s `approvalFeedback` field. */
1589
+ approvalFeedback?: StringFilter;
1590
+ /** Checks for all expressions in this list. */
1591
+ and?: AgentTaskFilter[];
1592
+ /** Checks for any expressions in this list. */
1593
+ or?: AgentTaskFilter[];
1594
+ /** Negates the expression. */
1595
+ not?: AgentTaskFilter;
1596
+ /** Filter by the object’s `plan` relation. */
1597
+ plan?: AgentPlanFilter;
1598
+ }
1599
+ /** A filter to be used against `AgentThread` object types. All fields are combined with a logical ‘and.’ */
1600
+ export interface AgentThreadFilter {
1601
+ /** Filter by the object’s `id` field. */
1602
+ id?: UUIDFilter;
1603
+ /** Filter by the object’s `createdAt` field. */
1604
+ createdAt?: DatetimeFilter;
1605
+ /** Filter by the object’s `updatedAt` field. */
1606
+ updatedAt?: DatetimeFilter;
1607
+ /** Filter by the object’s `ownerId` field. */
1608
+ ownerId?: UUIDFilter;
1609
+ /** Filter by the object’s `status` field. */
1610
+ status?: StringFilter;
1611
+ /** Filter by the object’s `isArchived` field. */
1612
+ isArchived?: BooleanFilter;
1613
+ /** Filter by the object’s `archivedAt` field. */
1614
+ archivedAt?: DatetimeFilter;
1615
+ /** Filter by the object’s `title` field. */
1616
+ title?: StringFilter;
1617
+ /** Filter by the object’s `mode` field. */
1618
+ mode?: StringFilter;
1619
+ /** Filter by the object’s `model` field. */
1620
+ model?: StringFilter;
1621
+ /** Filter by the object’s `systemPrompt` field. */
1622
+ systemPrompt?: StringFilter;
1623
+ /** Filter by the object’s `tags` field. */
1624
+ tags?: StringListFilter;
1625
+ /** Filter by the object’s `promptTemplateId` field. */
1626
+ promptTemplateId?: UUIDFilter;
1627
+ /** Filter by the object’s `agentId` field. */
1628
+ agentId?: UUIDFilter;
1629
+ /** Filter by the object’s `parentThreadId` field. */
1630
+ parentThreadId?: UUIDFilter;
1631
+ /** Checks for all expressions in this list. */
1632
+ and?: AgentThreadFilter[];
1633
+ /** Checks for any expressions in this list. */
1634
+ or?: AgentThreadFilter[];
1635
+ /** Negates the expression. */
1636
+ not?: AgentThreadFilter;
1637
+ /** Filter by the object’s `agent` relation. */
1638
+ agent?: AgentFilter;
1639
+ /** A related `agent` exists. */
1640
+ agentExists?: boolean;
1641
+ /** Filter by the object’s `parentThread` relation. */
1642
+ parentThread?: AgentThreadFilter;
1643
+ /** A related `parentThread` exists. */
1644
+ parentThreadExists?: boolean;
1645
+ /** Filter by the object’s `promptTemplate` relation. */
1646
+ promptTemplate?: AgentPromptFilter;
1647
+ /** A related `promptTemplate` exists. */
1648
+ promptTemplateExists?: boolean;
1649
+ /** Filter by the object’s `agentThreadsByParentThreadId` relation. */
1650
+ agentThreadsByParentThreadId?: AgentThreadToManyAgentThreadFilter;
1651
+ /** `agentThreadsByParentThreadId` exist. */
1652
+ agentThreadsByParentThreadIdExist?: boolean;
1653
+ /** Filter by the object’s `agentMessagesByThreadId` relation. */
1654
+ agentMessagesByThreadId?: AgentThreadToManyAgentMessageFilter;
1655
+ /** `agentMessagesByThreadId` exist. */
1656
+ agentMessagesByThreadIdExist?: boolean;
1657
+ /** Filter by the object’s `agentPlansByThreadId` relation. */
1658
+ agentPlansByThreadId?: AgentThreadToManyAgentPlanFilter;
1659
+ /** `agentPlansByThreadId` exist. */
1660
+ agentPlansByThreadIdExist?: boolean;
1661
+ }
1662
+ /** A filter to be used against `Agent` object types. All fields are combined with a logical ‘and.’ */
1663
+ export interface AgentFilter {
1664
+ /** Filter by the object’s `id` field. */
1665
+ id?: UUIDFilter;
1666
+ /** Filter by the object’s `createdAt` field. */
1667
+ createdAt?: DatetimeFilter;
1668
+ /** Filter by the object’s `updatedAt` field. */
1669
+ updatedAt?: DatetimeFilter;
1670
+ /** Filter by the object’s `ownerId` field. */
1671
+ ownerId?: UUIDFilter;
1672
+ /** Filter by the object’s `personaId` field. */
1673
+ personaId?: UUIDFilter;
1674
+ /** Filter by the object’s `parentId` field. */
1675
+ parentId?: UUIDFilter;
1676
+ /** Filter by the object’s `name` field. */
1677
+ name?: StringFilter;
1678
+ /** Filter by the object’s `systemPrompt` field. */
1679
+ systemPrompt?: StringFilter;
1680
+ /** Filter by the object’s `config` field. */
1681
+ config?: JSONFilter;
1682
+ /** Filter by the object’s `status` field. */
1683
+ status?: StringFilter;
1684
+ /** Filter by the object’s `isEphemeral` field. */
1685
+ isEphemeral?: BooleanFilter;
1686
+ /** Checks for all expressions in this list. */
1687
+ and?: AgentFilter[];
1688
+ /** Checks for any expressions in this list. */
1689
+ or?: AgentFilter[];
1690
+ /** Negates the expression. */
1691
+ not?: AgentFilter;
1692
+ /** Filter by the object’s `parent` relation. */
1693
+ parent?: AgentFilter;
1694
+ /** A related `parent` exists. */
1695
+ parentExists?: boolean;
1696
+ /** Filter by the object’s `persona` relation. */
1697
+ persona?: AgentPersonaFilter;
1698
+ /** A related `persona` exists. */
1699
+ personaExists?: boolean;
1700
+ /** Filter by the object’s `agentThreads` relation. */
1701
+ agentThreads?: AgentToManyAgentThreadFilter;
1702
+ /** `agentThreads` exist. */
1703
+ agentThreadsExist?: boolean;
1704
+ /** Filter by the object’s `childAgents` relation. */
1705
+ childAgents?: AgentToManyAgentFilter;
1706
+ /** `childAgents` exist. */
1707
+ childAgentsExist?: boolean;
1708
+ }
1709
+ /** A filter to be used against `AgentMessage` object types. All fields are combined with a logical ‘and.’ */
1710
+ export interface AgentMessageFilter {
1711
+ /** Filter by the object’s `id` field. */
1712
+ id?: UUIDFilter;
1713
+ /** Filter by the object’s `createdAt` field. */
1714
+ createdAt?: DatetimeFilter;
1715
+ /** Filter by the object’s `updatedAt` field. */
1716
+ updatedAt?: DatetimeFilter;
1717
+ /** Filter by the object’s `ownerId` field. */
1718
+ ownerId?: UUIDFilter;
1719
+ /** Filter by the object’s `parts` field. */
1720
+ parts?: JSONFilter;
1721
+ /** Filter by the object’s `threadId` field. */
1722
+ threadId?: UUIDFilter;
1723
+ /** Filter by the object’s `authorRole` field. */
1724
+ authorRole?: StringFilter;
1725
+ /** Filter by the object’s `model` field. */
1726
+ model?: StringFilter;
1727
+ /** Checks for all expressions in this list. */
1728
+ and?: AgentMessageFilter[];
1729
+ /** Checks for any expressions in this list. */
1730
+ or?: AgentMessageFilter[];
1731
+ /** Negates the expression. */
1732
+ not?: AgentMessageFilter;
1733
+ /** Filter by the object’s `thread` relation. */
1734
+ thread?: AgentThreadFilter;
1735
+ }
1736
+ /** A filter to be used against `AgentPlan` object types. All fields are combined with a logical ‘and.’ */
1737
+ export interface AgentPlanFilter {
1738
+ /** Filter by the object’s `id` field. */
1739
+ id?: UUIDFilter;
1740
+ /** Filter by the object’s `createdAt` field. */
1741
+ createdAt?: DatetimeFilter;
1742
+ /** Filter by the object’s `updatedAt` field. */
1743
+ updatedAt?: DatetimeFilter;
1744
+ /** Filter by the object’s `ownerId` field. */
1745
+ ownerId?: UUIDFilter;
1746
+ /** Filter by the object’s `threadId` field. */
1747
+ threadId?: UUIDFilter;
1748
+ /** Filter by the object’s `title` field. */
1749
+ title?: StringFilter;
1750
+ /** Filter by the object’s `description` field. */
1751
+ description?: StringFilter;
1752
+ /** Filter by the object’s `status` field. */
1753
+ status?: StringFilter;
1754
+ /** Checks for all expressions in this list. */
1755
+ and?: AgentPlanFilter[];
1756
+ /** Checks for any expressions in this list. */
1757
+ or?: AgentPlanFilter[];
1758
+ /** Negates the expression. */
1759
+ not?: AgentPlanFilter;
1760
+ /** Filter by the object’s `thread` relation. */
1761
+ thread?: AgentThreadFilter;
1762
+ /** Filter by the object’s `agentTasksByPlanId` relation. */
1763
+ agentTasksByPlanId?: AgentPlanToManyAgentTaskFilter;
1764
+ /** `agentTasksByPlanId` exist. */
1765
+ agentTasksByPlanIdExist?: boolean;
1766
+ }
1767
+ /** Similarity metric for vector search */
1768
+ export type VectorMetric = 'COSINE' | 'L2' | 'IP';
1769
+ /** A filter to be used against `AgentResourceChunk` object types. All fields are combined with a logical ‘and.’ */
1770
+ export interface AgentResourceChunkFilter {
1771
+ /** Filter by the object’s `id` field. */
1772
+ id?: UUIDFilter;
1773
+ /** Filter by the object’s `agentResourceId` field. */
1774
+ agentResourceId?: UUIDFilter;
1775
+ /** Filter by the object’s `body` field. */
1776
+ body?: StringFilter;
1777
+ /** Filter by the object’s `chunkIndex` field. */
1778
+ chunkIndex?: IntFilter;
1779
+ /** Filter by the object’s `embedding` field. */
1780
+ embedding?: VectorFilter;
1781
+ /** Filter by the object’s `metadata` field. */
1782
+ metadata?: JSONFilter;
1783
+ /** Filter by the object’s `createdAt` field. */
1784
+ createdAt?: DatetimeFilter;
1785
+ /** Filter by the object’s `updatedAt` field. */
1786
+ updatedAt?: DatetimeFilter;
1787
+ /** Checks for all expressions in this list. */
1788
+ and?: AgentResourceChunkFilter[];
1789
+ /** Checks for any expressions in this list. */
1790
+ or?: AgentResourceChunkFilter[];
1791
+ /** Negates the expression. */
1792
+ not?: AgentResourceChunkFilter;
1793
+ /** Filter by the object’s `agentResource` relation. */
1794
+ agentResource?: AgentResourceFilter;
1795
+ /** VECTOR search on the `embedding` column. */
1796
+ vectorEmbedding?: VectorNearbyInput;
1797
+ }
1798
+ /** A filter to be used against UUID fields. All fields are combined with a logical ‘and.’ */
1799
+ export interface UUIDFilter {
1800
+ /** Is null (if `true` is specified) or is not null (if `false` is specified). */
1801
+ isNull?: boolean;
1802
+ /** Equal to the specified value. */
1803
+ equalTo?: string;
1804
+ /** Not equal to the specified value. */
1805
+ notEqualTo?: string;
1806
+ /** Not equal to the specified value, treating null like an ordinary value. */
1807
+ distinctFrom?: string;
1808
+ /** Equal to the specified value, treating null like an ordinary value. */
1809
+ notDistinctFrom?: string;
1810
+ /** Included in the specified list. */
1811
+ in?: string[];
1812
+ /** Not included in the specified list. */
1813
+ notIn?: string[];
1814
+ /** Less than the specified value. */
1815
+ lessThan?: string;
1816
+ /** Less than or equal to the specified value. */
1817
+ lessThanOrEqualTo?: string;
1818
+ /** Greater than the specified value. */
1819
+ greaterThan?: string;
1820
+ /** Greater than or equal to the specified value. */
1821
+ greaterThanOrEqualTo?: string;
1822
+ }
1823
+ /** A filter to be used against Datetime fields. All fields are combined with a logical ‘and.’ */
1824
+ export interface DatetimeFilter {
1825
+ /** Is null (if `true` is specified) or is not null (if `false` is specified). */
1826
+ isNull?: boolean;
1827
+ /** Equal to the specified value. */
1828
+ equalTo?: string;
1829
+ /** Not equal to the specified value. */
1830
+ notEqualTo?: string;
1831
+ /** Not equal to the specified value, treating null like an ordinary value. */
1832
+ distinctFrom?: string;
1833
+ /** Equal to the specified value, treating null like an ordinary value. */
1834
+ notDistinctFrom?: string;
1835
+ /** Included in the specified list. */
1836
+ in?: string[];
1837
+ /** Not included in the specified list. */
1838
+ notIn?: string[];
1839
+ /** Less than the specified value. */
1840
+ lessThan?: string;
1841
+ /** Less than or equal to the specified value. */
1842
+ lessThanOrEqualTo?: string;
1843
+ /** Greater than the specified value. */
1844
+ greaterThan?: string;
1845
+ /** Greater than or equal to the specified value. */
1846
+ greaterThanOrEqualTo?: string;
1847
+ }
1848
+ /** A filter to be used against String fields. All fields are combined with a logical ‘and.’ */
1849
+ export interface StringFilter {
1850
+ /** Is null (if `true` is specified) or is not null (if `false` is specified). */
1851
+ isNull?: boolean;
1852
+ /** Equal to the specified value. */
1853
+ equalTo?: string;
1854
+ /** Not equal to the specified value. */
1855
+ notEqualTo?: string;
1856
+ /** Not equal to the specified value, treating null like an ordinary value. */
1857
+ distinctFrom?: string;
1858
+ /** Equal to the specified value, treating null like an ordinary value. */
1859
+ notDistinctFrom?: string;
1860
+ /** Included in the specified list. */
1861
+ in?: string[];
1862
+ /** Not included in the specified list. */
1863
+ notIn?: string[];
1864
+ /** Less than the specified value. */
1865
+ lessThan?: string;
1866
+ /** Less than or equal to the specified value. */
1867
+ lessThanOrEqualTo?: string;
1868
+ /** Greater than the specified value. */
1869
+ greaterThan?: string;
1870
+ /** Greater than or equal to the specified value. */
1871
+ greaterThanOrEqualTo?: string;
1872
+ /** Contains the specified string (case-sensitive). */
1873
+ includes?: string;
1874
+ /** Does not contain the specified string (case-sensitive). */
1875
+ notIncludes?: string;
1876
+ /** Contains the specified string (case-insensitive). */
1877
+ includesInsensitive?: string;
1878
+ /** Does not contain the specified string (case-insensitive). */
1879
+ notIncludesInsensitive?: string;
1880
+ /** Starts with the specified string (case-sensitive). */
1881
+ startsWith?: string;
1882
+ /** Does not start with the specified string (case-sensitive). */
1883
+ notStartsWith?: string;
1884
+ /** Starts with the specified string (case-insensitive). */
1885
+ startsWithInsensitive?: string;
1886
+ /** Does not start with the specified string (case-insensitive). */
1887
+ notStartsWithInsensitive?: string;
1888
+ /** Ends with the specified string (case-sensitive). */
1889
+ endsWith?: string;
1890
+ /** Does not end with the specified string (case-sensitive). */
1891
+ notEndsWith?: string;
1892
+ /** Ends with the specified string (case-insensitive). */
1893
+ endsWithInsensitive?: string;
1894
+ /** Does not end with the specified string (case-insensitive). */
1895
+ notEndsWithInsensitive?: string;
1896
+ /** Matches the specified pattern (case-sensitive). An underscore (_) matches any single character; a percent sign (%) matches any sequence of zero or more characters. */
1897
+ like?: string;
1898
+ /** Does not match the specified pattern (case-sensitive). An underscore (_) matches any single character; a percent sign (%) matches any sequence of zero or more characters. */
1899
+ notLike?: string;
1900
+ /** Matches the specified pattern (case-insensitive). An underscore (_) matches any single character; a percent sign (%) matches any sequence of zero or more characters. */
1901
+ likeInsensitive?: string;
1902
+ /** Does not match the specified pattern (case-insensitive). An underscore (_) matches any single character; a percent sign (%) matches any sequence of zero or more characters. */
1903
+ notLikeInsensitive?: string;
1904
+ /** Equal to the specified value (case-insensitive). */
1905
+ equalToInsensitive?: string;
1906
+ /** Not equal to the specified value (case-insensitive). */
1907
+ notEqualToInsensitive?: string;
1908
+ /** Not equal to the specified value, treating null like an ordinary value (case-insensitive). */
1909
+ distinctFromInsensitive?: string;
1910
+ /** Equal to the specified value, treating null like an ordinary value (case-insensitive). */
1911
+ notDistinctFromInsensitive?: string;
1912
+ /** Included in the specified list (case-insensitive). */
1913
+ inInsensitive?: string[];
1914
+ /** Not included in the specified list (case-insensitive). */
1915
+ notInInsensitive?: string[];
1916
+ /** Less than the specified value (case-insensitive). */
1917
+ lessThanInsensitive?: string;
1918
+ /** Less than or equal to the specified value (case-insensitive). */
1919
+ lessThanOrEqualToInsensitive?: string;
1920
+ /** Greater than the specified value (case-insensitive). */
1921
+ greaterThanInsensitive?: string;
1922
+ /** Greater than or equal to the specified value (case-insensitive). */
1923
+ greaterThanOrEqualToInsensitive?: string;
1924
+ }
1925
+ /** A filter to be used against Int fields. All fields are combined with a logical ‘and.’ */
1926
+ export interface IntFilter {
1927
+ /** Is null (if `true` is specified) or is not null (if `false` is specified). */
1928
+ isNull?: boolean;
1929
+ /** Equal to the specified value. */
1930
+ equalTo?: number;
1931
+ /** Not equal to the specified value. */
1932
+ notEqualTo?: number;
1933
+ /** Not equal to the specified value, treating null like an ordinary value. */
1934
+ distinctFrom?: number;
1935
+ /** Equal to the specified value, treating null like an ordinary value. */
1936
+ notDistinctFrom?: number;
1937
+ /** Included in the specified list. */
1938
+ in?: number[];
1939
+ /** Not included in the specified list. */
1940
+ notIn?: number[];
1941
+ /** Less than the specified value. */
1942
+ lessThan?: number;
1943
+ /** Less than or equal to the specified value. */
1944
+ lessThanOrEqualTo?: number;
1945
+ /** Greater than the specified value. */
1946
+ greaterThan?: number;
1947
+ /** Greater than or equal to the specified value. */
1948
+ greaterThanOrEqualTo?: number;
1949
+ }
1950
+ /** A filter to be used against Boolean fields. All fields are combined with a logical ‘and.’ */
1951
+ export interface BooleanFilter {
1952
+ /** Is null (if `true` is specified) or is not null (if `false` is specified). */
1953
+ isNull?: boolean;
1954
+ /** Equal to the specified value. */
1955
+ equalTo?: boolean;
1956
+ /** Not equal to the specified value. */
1957
+ notEqualTo?: boolean;
1958
+ /** Not equal to the specified value, treating null like an ordinary value. */
1959
+ distinctFrom?: boolean;
1960
+ /** Equal to the specified value, treating null like an ordinary value. */
1961
+ notDistinctFrom?: boolean;
1962
+ /** Included in the specified list. */
1963
+ in?: boolean[];
1964
+ /** Not included in the specified list. */
1965
+ notIn?: boolean[];
1966
+ /** Less than the specified value. */
1967
+ lessThan?: boolean;
1968
+ /** Less than or equal to the specified value. */
1969
+ lessThanOrEqualTo?: boolean;
1970
+ /** Greater than the specified value. */
1971
+ greaterThan?: boolean;
1972
+ /** Greater than or equal to the specified value. */
1973
+ greaterThanOrEqualTo?: boolean;
1974
+ }
1975
+ /** A filter to be used against String List fields. All fields are combined with a logical ‘and.’ */
1976
+ export interface StringListFilter {
1977
+ /** Is null (if `true` is specified) or is not null (if `false` is specified). */
1978
+ isNull?: boolean;
1979
+ /** Equal to the specified value. */
1980
+ equalTo?: string[];
1981
+ /** Not equal to the specified value. */
1982
+ notEqualTo?: string[];
1983
+ /** Not equal to the specified value, treating null like an ordinary value. */
1984
+ distinctFrom?: string[];
1985
+ /** Equal to the specified value, treating null like an ordinary value. */
1986
+ notDistinctFrom?: string[];
1987
+ /** Less than the specified value. */
1988
+ lessThan?: string[];
1989
+ /** Less than or equal to the specified value. */
1990
+ lessThanOrEqualTo?: string[];
1991
+ /** Greater than the specified value. */
1992
+ greaterThan?: string[];
1993
+ /** Greater than or equal to the specified value. */
1994
+ greaterThanOrEqualTo?: string[];
1995
+ /** Contains the specified list of values. */
1996
+ contains?: string[];
1997
+ /** Contained by the specified list of values. */
1998
+ containedBy?: string[];
1999
+ /** Overlaps the specified list of values. */
2000
+ overlaps?: string[];
2001
+ /** Any array item is equal to the specified value. */
2002
+ anyEqualTo?: string;
2003
+ /** Any array item is not equal to the specified value. */
2004
+ anyNotEqualTo?: string;
2005
+ /** Any array item is less than the specified value. */
2006
+ anyLessThan?: string;
2007
+ /** Any array item is less than or equal to the specified value. */
2008
+ anyLessThanOrEqualTo?: string;
2009
+ /** Any array item is greater than the specified value. */
2010
+ anyGreaterThan?: string;
2011
+ /** Any array item is greater than or equal to the specified value. */
2012
+ anyGreaterThanOrEqualTo?: string;
2013
+ }
2014
+ /** A filter to be used against `AgentPrompt` object types. All fields are combined with a logical ‘and.’ */
2015
+ export interface AgentPromptFilter {
2016
+ /** Filter by the object’s `id` field. */
2017
+ id?: UUIDFilter;
2018
+ /** Filter by the object’s `createdAt` field. */
2019
+ createdAt?: DatetimeFilter;
2020
+ /** Filter by the object’s `updatedAt` field. */
2021
+ updatedAt?: DatetimeFilter;
2022
+ /** Filter by the object’s `createdBy` field. */
2023
+ createdBy?: UUIDFilter;
2024
+ /** Filter by the object’s `updatedBy` field. */
2025
+ updatedBy?: UUIDFilter;
2026
+ /** Filter by the object’s `name` field. */
2027
+ name?: StringFilter;
2028
+ /** Filter by the object’s `content` field. */
2029
+ content?: StringFilter;
2030
+ /** Filter by the object’s `description` field. */
2031
+ description?: StringFilter;
2032
+ /** Filter by the object’s `isDefault` field. */
2033
+ isDefault?: BooleanFilter;
2034
+ /** Filter by the object’s `metadata` field. */
2035
+ metadata?: JSONFilter;
2036
+ /** Checks for all expressions in this list. */
2037
+ and?: AgentPromptFilter[];
2038
+ /** Checks for any expressions in this list. */
2039
+ or?: AgentPromptFilter[];
2040
+ /** Negates the expression. */
2041
+ not?: AgentPromptFilter;
2042
+ }
2043
+ /** A filter to be used against JSON fields. All fields are combined with a logical ‘and.’ */
2044
+ export interface JSONFilter {
2045
+ /** Is null (if `true` is specified) or is not null (if `false` is specified). */
2046
+ isNull?: boolean;
2047
+ /** Equal to the specified value. */
2048
+ equalTo?: Record<string, unknown>;
2049
+ /** Not equal to the specified value. */
2050
+ notEqualTo?: Record<string, unknown>;
2051
+ /** Not equal to the specified value, treating null like an ordinary value. */
2052
+ distinctFrom?: Record<string, unknown>;
2053
+ /** Equal to the specified value, treating null like an ordinary value. */
2054
+ notDistinctFrom?: Record<string, unknown>;
2055
+ /** Included in the specified list. */
2056
+ in?: Record<string, unknown>[];
2057
+ /** Not included in the specified list. */
2058
+ notIn?: Record<string, unknown>[];
2059
+ /** Less than the specified value. */
2060
+ lessThan?: Record<string, unknown>;
2061
+ /** Less than or equal to the specified value. */
2062
+ lessThanOrEqualTo?: Record<string, unknown>;
2063
+ /** Greater than the specified value. */
2064
+ greaterThan?: Record<string, unknown>;
2065
+ /** Greater than or equal to the specified value. */
2066
+ greaterThanOrEqualTo?: Record<string, unknown>;
2067
+ /** Contains the specified JSON. */
2068
+ contains?: Record<string, unknown>;
2069
+ /** Contains the specified key. */
2070
+ containsKey?: string;
2071
+ /** Contains all of the specified keys. */
2072
+ containsAllKeys?: string[];
2073
+ /** Contains any of the specified keys. */
2074
+ containsAnyKeys?: string[];
2075
+ /** Contained by the specified JSON. */
2076
+ containedBy?: Record<string, unknown>;
2077
+ }
2078
+ /** A filter to be used against `AgentPersona` object types. All fields are combined with a logical ‘and.’ */
2079
+ export interface AgentPersonaFilter {
2080
+ /** Filter by the object’s `id` field. */
2081
+ id?: UUIDFilter;
2082
+ /** Filter by the object’s `createdAt` field. */
2083
+ createdAt?: DatetimeFilter;
2084
+ /** Filter by the object’s `updatedAt` field. */
2085
+ updatedAt?: DatetimeFilter;
2086
+ /** Filter by the object’s `createdBy` field. */
2087
+ createdBy?: UUIDFilter;
2088
+ /** Filter by the object’s `updatedBy` field. */
2089
+ updatedBy?: UUIDFilter;
2090
+ /** Filter by the object’s `slug` field. */
2091
+ slug?: StringFilter;
2092
+ /** Filter by the object’s `name` field. */
2093
+ name?: StringFilter;
2094
+ /** Filter by the object’s `description` field. */
2095
+ description?: StringFilter;
2096
+ /** Filter by the object’s `systemPrompt` field. */
2097
+ systemPrompt?: StringFilter;
2098
+ /** Filter by the object’s `resources` field. */
2099
+ resources?: StringListFilter;
2100
+ /** Filter by the object’s `config` field. */
2101
+ config?: JSONFilter;
2102
+ /** Filter by the object’s `isActive` field. */
2103
+ isActive?: BooleanFilter;
2104
+ /** Checks for all expressions in this list. */
2105
+ and?: AgentPersonaFilter[];
2106
+ /** Checks for any expressions in this list. */
2107
+ or?: AgentPersonaFilter[];
2108
+ /** Negates the expression. */
2109
+ not?: AgentPersonaFilter;
2110
+ /** Filter by the object’s `agentsByPersonaId` relation. */
2111
+ agentsByPersonaId?: AgentPersonaToManyAgentFilter;
2112
+ /** `agentsByPersonaId` exist. */
2113
+ agentsByPersonaIdExist?: boolean;
2114
+ }
2115
+ /** A filter to be used against Vector fields. All fields are combined with a logical ‘and.’ */
2116
+ export interface VectorFilter {
2117
+ /** Is null (if `true` is specified) or is not null (if `false` is specified). */
2118
+ isNull?: boolean;
2119
+ /** Equal to the specified value. */
2120
+ equalTo?: number[];
2121
+ /** Not equal to the specified value. */
2122
+ notEqualTo?: number[];
2123
+ /** Not equal to the specified value, treating null like an ordinary value. */
2124
+ distinctFrom?: number[];
2125
+ /** Equal to the specified value, treating null like an ordinary value. */
2126
+ notDistinctFrom?: number[];
2127
+ /** Included in the specified list. */
2128
+ in?: number[][];
2129
+ /** Not included in the specified list. */
2130
+ notIn?: number[][];
2131
+ }
2132
+ /** A filter to be used against `AgentResource` object types. All fields are combined with a logical ‘and.’ */
2133
+ export interface AgentResourceFilter {
2134
+ /** Filter by the object’s `id` field. */
2135
+ id?: UUIDFilter;
2136
+ /** Filter by the object’s `createdAt` field. */
2137
+ createdAt?: DatetimeFilter;
2138
+ /** Filter by the object’s `updatedAt` field. */
2139
+ updatedAt?: DatetimeFilter;
2140
+ /** Filter by the object’s `createdBy` field. */
2141
+ createdBy?: UUIDFilter;
2142
+ /** Filter by the object’s `updatedBy` field. */
2143
+ updatedBy?: UUIDFilter;
2144
+ /** Filter by the object’s `slug` field. */
2145
+ slug?: StringTrgmFilter;
2146
+ /** Filter by the object’s `kind` field. */
2147
+ kind?: StringTrgmFilter;
2148
+ /** Filter by the object’s `title` field. */
2149
+ title?: StringTrgmFilter;
2150
+ /** Filter by the object’s `description` field. */
2151
+ description?: StringTrgmFilter;
2152
+ /** Filter by the object’s `body` field. */
2153
+ body?: StringTrgmFilter;
2154
+ /** Filter by the object’s `keywords` field. */
2155
+ keywords?: StringListFilter;
2156
+ /** Filter by the object’s `isActive` field. */
2157
+ isActive?: BooleanFilter;
2158
+ /** Filter by the object’s `metadata` field. */
2159
+ metadata?: JSONFilter;
2160
+ /** Filter by the object’s `isArchived` field. */
2161
+ isArchived?: BooleanFilter;
2162
+ /** Filter by the object’s `archivedAt` field. */
2163
+ archivedAt?: DatetimeFilter;
2164
+ /** Filter by the object’s `search` field. */
2165
+ search?: FullTextFilter;
2166
+ /** Filter by the object’s `embedding` field. */
2167
+ embedding?: VectorFilter;
2168
+ /** Filter by the object’s `embeddingUpdatedAt` field. */
2169
+ embeddingUpdatedAt?: DatetimeFilter;
2170
+ /** Checks for all expressions in this list. */
2171
+ and?: AgentResourceFilter[];
2172
+ /** Checks for any expressions in this list. */
2173
+ or?: AgentResourceFilter[];
2174
+ /** Negates the expression. */
2175
+ not?: AgentResourceFilter;
2176
+ /** Filter by the object’s `agentResourceChunks` relation. */
2177
+ agentResourceChunks?: AgentResourceToManyAgentResourceChunkFilter;
2178
+ /** `agentResourceChunks` exist. */
2179
+ agentResourceChunksExist?: boolean;
2180
+ /** TSV search on the `search` column. */
2181
+ tsvSearch?: string;
2182
+ /** VECTOR search on the `embedding` column. */
2183
+ vectorEmbedding?: VectorNearbyInput;
2184
+ /** TRGM search on the `kind` column. */
2185
+ trgmKind?: TrgmSearchInput;
2186
+ /** TRGM search on the `title` column. */
2187
+ trgmTitle?: TrgmSearchInput;
2188
+ /** TRGM search on the `description` column. */
2189
+ trgmDescription?: TrgmSearchInput;
2190
+ /** TRGM search on the `body` column. */
2191
+ trgmBody?: TrgmSearchInput;
2192
+ /**
2193
+ * Composite unified search. Provide a search string and it will be dispatched to
2194
+ * all text-compatible search algorithms (tsvector, BM25, pg_trgm)
2195
+ * simultaneously. Rows matching ANY algorithm are returned. All matching score
2196
+ * fields are populated.
2197
+ */
2198
+ unifiedSearch?: string;
2199
+ }
2200
+ /** A filter to be used against FullText fields. All fields are combined with a logical ‘and.’ */
2201
+ export interface FullTextFilter {
2202
+ /** Is null (if `true` is specified) or is not null (if `false` is specified). */
2203
+ isNull?: boolean;
2204
+ /** Equal to the specified value. */
2205
+ equalTo?: string;
2206
+ /** Not equal to the specified value. */
2207
+ notEqualTo?: string;
2208
+ /** Not equal to the specified value, treating null like an ordinary value. */
2209
+ distinctFrom?: string;
2210
+ /** Equal to the specified value, treating null like an ordinary value. */
2211
+ notDistinctFrom?: string;
2212
+ /** Included in the specified list. */
2213
+ in?: string[];
2214
+ /** Not included in the specified list. */
2215
+ notIn?: string[];
2216
+ /** Performs a full text search on the field. */
2217
+ matches?: string;
2218
+ }
2219
+ export interface ProvisionBucketPayload {
2220
+ /** Whether provisioning succeeded */
2221
+ success: boolean;
2222
+ /** The S3 bucket name that was provisioned */
2223
+ bucketName: string;
2224
+ /** The access type applied */
2225
+ accessType: string;
2226
+ /** The storage provider used */
2227
+ provider: string;
2228
+ /** The S3 endpoint (null for AWS S3 default) */
2229
+ endpoint?: string | null;
2230
+ /** Error message if provisioning failed */
2231
+ error?: string | null;
2232
+ }
2233
+ export type ProvisionBucketPayloadSelect = {
2234
+ success?: boolean;
2235
+ bucketName?: boolean;
2236
+ accessType?: boolean;
2237
+ provider?: boolean;
2238
+ endpoint?: boolean;
2239
+ error?: boolean;
2240
+ };
2241
+ export interface CreateAgentPlanPayload {
2242
+ clientMutationId?: string | null;
2243
+ /** The `AgentPlan` that was created by this mutation. */
2244
+ agentPlan?: AgentPlan | null;
2245
+ agentPlanEdge?: AgentPlanEdge | null;
2246
+ }
2247
+ export type CreateAgentPlanPayloadSelect = {
2248
+ clientMutationId?: boolean;
2249
+ agentPlan?: {
2250
+ select: AgentPlanSelect;
2251
+ };
2252
+ agentPlanEdge?: {
2253
+ select: AgentPlanEdgeSelect;
2254
+ };
2255
+ };
2256
+ export interface UpdateAgentPlanPayload {
2257
+ clientMutationId?: string | null;
2258
+ /** The `AgentPlan` that was updated by this mutation. */
2259
+ agentPlan?: AgentPlan | null;
2260
+ agentPlanEdge?: AgentPlanEdge | null;
2261
+ }
2262
+ export type UpdateAgentPlanPayloadSelect = {
2263
+ clientMutationId?: boolean;
2264
+ agentPlan?: {
2265
+ select: AgentPlanSelect;
2266
+ };
2267
+ agentPlanEdge?: {
2268
+ select: AgentPlanEdgeSelect;
2269
+ };
2270
+ };
2271
+ export interface DeleteAgentPlanPayload {
2272
+ clientMutationId?: string | null;
2273
+ /** The `AgentPlan` that was deleted by this mutation. */
2274
+ agentPlan?: AgentPlan | null;
2275
+ agentPlanEdge?: AgentPlanEdge | null;
2276
+ }
2277
+ export type DeleteAgentPlanPayloadSelect = {
2278
+ clientMutationId?: boolean;
2279
+ agentPlan?: {
2280
+ select: AgentPlanSelect;
2281
+ };
2282
+ agentPlanEdge?: {
2283
+ select: AgentPlanEdgeSelect;
2284
+ };
2285
+ };
2286
+ export interface CreateAgentPayload {
2287
+ clientMutationId?: string | null;
2288
+ /** The `Agent` that was created by this mutation. */
2289
+ agent?: Agent | null;
2290
+ agentEdge?: AgentEdge | null;
2291
+ }
2292
+ export type CreateAgentPayloadSelect = {
2293
+ clientMutationId?: boolean;
2294
+ agent?: {
2295
+ select: AgentSelect;
2296
+ };
2297
+ agentEdge?: {
2298
+ select: AgentEdgeSelect;
2299
+ };
2300
+ };
2301
+ export interface UpdateAgentPayload {
2302
+ clientMutationId?: string | null;
2303
+ /** The `Agent` that was updated by this mutation. */
2304
+ agent?: Agent | null;
2305
+ agentEdge?: AgentEdge | null;
2306
+ }
2307
+ export type UpdateAgentPayloadSelect = {
2308
+ clientMutationId?: boolean;
2309
+ agent?: {
2310
+ select: AgentSelect;
2311
+ };
2312
+ agentEdge?: {
2313
+ select: AgentEdgeSelect;
2314
+ };
2315
+ };
2316
+ export interface DeleteAgentPayload {
2317
+ clientMutationId?: string | null;
2318
+ /** The `Agent` that was deleted by this mutation. */
2319
+ agent?: Agent | null;
2320
+ agentEdge?: AgentEdge | null;
2321
+ }
2322
+ export type DeleteAgentPayloadSelect = {
2323
+ clientMutationId?: boolean;
2324
+ agent?: {
2325
+ select: AgentSelect;
2326
+ };
2327
+ agentEdge?: {
2328
+ select: AgentEdgeSelect;
2329
+ };
2330
+ };
2331
+ export interface CreateAgentThreadPayload {
2332
+ clientMutationId?: string | null;
2333
+ /** The `AgentThread` that was created by this mutation. */
2334
+ agentThread?: AgentThread | null;
2335
+ agentThreadEdge?: AgentThreadEdge | null;
2336
+ }
2337
+ export type CreateAgentThreadPayloadSelect = {
2338
+ clientMutationId?: boolean;
2339
+ agentThread?: {
2340
+ select: AgentThreadSelect;
2341
+ };
2342
+ agentThreadEdge?: {
2343
+ select: AgentThreadEdgeSelect;
2344
+ };
2345
+ };
2346
+ export interface UpdateAgentThreadPayload {
2347
+ clientMutationId?: string | null;
2348
+ /** The `AgentThread` that was updated by this mutation. */
2349
+ agentThread?: AgentThread | null;
2350
+ agentThreadEdge?: AgentThreadEdge | null;
2351
+ }
2352
+ export type UpdateAgentThreadPayloadSelect = {
2353
+ clientMutationId?: boolean;
2354
+ agentThread?: {
2355
+ select: AgentThreadSelect;
2356
+ };
2357
+ agentThreadEdge?: {
2358
+ select: AgentThreadEdgeSelect;
2359
+ };
2360
+ };
2361
+ export interface DeleteAgentThreadPayload {
2362
+ clientMutationId?: string | null;
2363
+ /** The `AgentThread` that was deleted by this mutation. */
2364
+ agentThread?: AgentThread | null;
2365
+ agentThreadEdge?: AgentThreadEdge | null;
2366
+ }
2367
+ export type DeleteAgentThreadPayloadSelect = {
2368
+ clientMutationId?: boolean;
2369
+ agentThread?: {
2370
+ select: AgentThreadSelect;
2371
+ };
2372
+ agentThreadEdge?: {
2373
+ select: AgentThreadEdgeSelect;
2374
+ };
2375
+ };
2376
+ export interface CreateAgentMessagePayload {
2377
+ clientMutationId?: string | null;
2378
+ /** The `AgentMessage` that was created by this mutation. */
2379
+ agentMessage?: AgentMessage | null;
2380
+ agentMessageEdge?: AgentMessageEdge | null;
2381
+ }
2382
+ export type CreateAgentMessagePayloadSelect = {
2383
+ clientMutationId?: boolean;
2384
+ agentMessage?: {
2385
+ select: AgentMessageSelect;
2386
+ };
2387
+ agentMessageEdge?: {
2388
+ select: AgentMessageEdgeSelect;
2389
+ };
2390
+ };
2391
+ export interface UpdateAgentMessagePayload {
2392
+ clientMutationId?: string | null;
2393
+ /** The `AgentMessage` that was updated by this mutation. */
2394
+ agentMessage?: AgentMessage | null;
2395
+ agentMessageEdge?: AgentMessageEdge | null;
2396
+ }
2397
+ export type UpdateAgentMessagePayloadSelect = {
2398
+ clientMutationId?: boolean;
2399
+ agentMessage?: {
2400
+ select: AgentMessageSelect;
2401
+ };
2402
+ agentMessageEdge?: {
2403
+ select: AgentMessageEdgeSelect;
2404
+ };
2405
+ };
2406
+ export interface DeleteAgentMessagePayload {
2407
+ clientMutationId?: string | null;
2408
+ /** The `AgentMessage` that was deleted by this mutation. */
2409
+ agentMessage?: AgentMessage | null;
2410
+ agentMessageEdge?: AgentMessageEdge | null;
2411
+ }
2412
+ export type DeleteAgentMessagePayloadSelect = {
2413
+ clientMutationId?: boolean;
2414
+ agentMessage?: {
2415
+ select: AgentMessageSelect;
2416
+ };
2417
+ agentMessageEdge?: {
2418
+ select: AgentMessageEdgeSelect;
2419
+ };
2420
+ };
2421
+ export interface CreateAgentTaskPayload {
2422
+ clientMutationId?: string | null;
2423
+ /** The `AgentTask` that was created by this mutation. */
2424
+ agentTask?: AgentTask | null;
2425
+ agentTaskEdge?: AgentTaskEdge | null;
2426
+ }
2427
+ export type CreateAgentTaskPayloadSelect = {
2428
+ clientMutationId?: boolean;
2429
+ agentTask?: {
2430
+ select: AgentTaskSelect;
2431
+ };
2432
+ agentTaskEdge?: {
2433
+ select: AgentTaskEdgeSelect;
2434
+ };
2435
+ };
2436
+ export interface UpdateAgentTaskPayload {
2437
+ clientMutationId?: string | null;
2438
+ /** The `AgentTask` that was updated by this mutation. */
2439
+ agentTask?: AgentTask | null;
2440
+ agentTaskEdge?: AgentTaskEdge | null;
2441
+ }
2442
+ export type UpdateAgentTaskPayloadSelect = {
2443
+ clientMutationId?: boolean;
2444
+ agentTask?: {
2445
+ select: AgentTaskSelect;
2446
+ };
2447
+ agentTaskEdge?: {
2448
+ select: AgentTaskEdgeSelect;
2449
+ };
2450
+ };
2451
+ export interface DeleteAgentTaskPayload {
2452
+ clientMutationId?: string | null;
2453
+ /** The `AgentTask` that was deleted by this mutation. */
2454
+ agentTask?: AgentTask | null;
2455
+ agentTaskEdge?: AgentTaskEdge | null;
2456
+ }
2457
+ export type DeleteAgentTaskPayloadSelect = {
2458
+ clientMutationId?: boolean;
2459
+ agentTask?: {
2460
+ select: AgentTaskSelect;
2461
+ };
2462
+ agentTaskEdge?: {
2463
+ select: AgentTaskEdgeSelect;
2464
+ };
2465
+ };
2466
+ export interface CreateAgentPromptPayload {
2467
+ clientMutationId?: string | null;
2468
+ /** The `AgentPrompt` that was created by this mutation. */
2469
+ agentPrompt?: AgentPrompt | null;
2470
+ agentPromptEdge?: AgentPromptEdge | null;
2471
+ }
2472
+ export type CreateAgentPromptPayloadSelect = {
2473
+ clientMutationId?: boolean;
2474
+ agentPrompt?: {
2475
+ select: AgentPromptSelect;
2476
+ };
2477
+ agentPromptEdge?: {
2478
+ select: AgentPromptEdgeSelect;
2479
+ };
2480
+ };
2481
+ export interface UpdateAgentPromptPayload {
2482
+ clientMutationId?: string | null;
2483
+ /** The `AgentPrompt` that was updated by this mutation. */
2484
+ agentPrompt?: AgentPrompt | null;
2485
+ agentPromptEdge?: AgentPromptEdge | null;
2486
+ }
2487
+ export type UpdateAgentPromptPayloadSelect = {
2488
+ clientMutationId?: boolean;
2489
+ agentPrompt?: {
2490
+ select: AgentPromptSelect;
2491
+ };
2492
+ agentPromptEdge?: {
2493
+ select: AgentPromptEdgeSelect;
2494
+ };
2495
+ };
2496
+ export interface DeleteAgentPromptPayload {
2497
+ clientMutationId?: string | null;
2498
+ /** The `AgentPrompt` that was deleted by this mutation. */
2499
+ agentPrompt?: AgentPrompt | null;
2500
+ agentPromptEdge?: AgentPromptEdge | null;
2501
+ }
2502
+ export type DeleteAgentPromptPayloadSelect = {
2503
+ clientMutationId?: boolean;
2504
+ agentPrompt?: {
2505
+ select: AgentPromptSelect;
2506
+ };
2507
+ agentPromptEdge?: {
2508
+ select: AgentPromptEdgeSelect;
2509
+ };
2510
+ };
2511
+ export interface CreateAgentResourceChunkPayload {
2512
+ clientMutationId?: string | null;
2513
+ /** The `AgentResourceChunk` that was created by this mutation. */
2514
+ agentResourceChunk?: AgentResourceChunk | null;
2515
+ agentResourceChunkEdge?: AgentResourceChunkEdge | null;
2516
+ }
2517
+ export type CreateAgentResourceChunkPayloadSelect = {
2518
+ clientMutationId?: boolean;
2519
+ agentResourceChunk?: {
2520
+ select: AgentResourceChunkSelect;
2521
+ };
2522
+ agentResourceChunkEdge?: {
2523
+ select: AgentResourceChunkEdgeSelect;
2524
+ };
2525
+ };
2526
+ export interface UpdateAgentResourceChunkPayload {
2527
+ clientMutationId?: string | null;
2528
+ /** The `AgentResourceChunk` that was updated by this mutation. */
2529
+ agentResourceChunk?: AgentResourceChunk | null;
2530
+ agentResourceChunkEdge?: AgentResourceChunkEdge | null;
2531
+ }
2532
+ export type UpdateAgentResourceChunkPayloadSelect = {
2533
+ clientMutationId?: boolean;
2534
+ agentResourceChunk?: {
2535
+ select: AgentResourceChunkSelect;
2536
+ };
2537
+ agentResourceChunkEdge?: {
2538
+ select: AgentResourceChunkEdgeSelect;
2539
+ };
2540
+ };
2541
+ export interface DeleteAgentResourceChunkPayload {
2542
+ clientMutationId?: string | null;
2543
+ /** The `AgentResourceChunk` that was deleted by this mutation. */
2544
+ agentResourceChunk?: AgentResourceChunk | null;
2545
+ agentResourceChunkEdge?: AgentResourceChunkEdge | null;
2546
+ }
2547
+ export type DeleteAgentResourceChunkPayloadSelect = {
2548
+ clientMutationId?: boolean;
2549
+ agentResourceChunk?: {
2550
+ select: AgentResourceChunkSelect;
2551
+ };
2552
+ agentResourceChunkEdge?: {
2553
+ select: AgentResourceChunkEdgeSelect;
2554
+ };
2555
+ };
2556
+ export interface CreateAgentPersonaPayload {
2557
+ clientMutationId?: string | null;
2558
+ /** The `AgentPersona` that was created by this mutation. */
2559
+ agentPersona?: AgentPersona | null;
2560
+ agentPersonaEdge?: AgentPersonaEdge | null;
2561
+ }
2562
+ export type CreateAgentPersonaPayloadSelect = {
2563
+ clientMutationId?: boolean;
2564
+ agentPersona?: {
2565
+ select: AgentPersonaSelect;
2566
+ };
2567
+ agentPersonaEdge?: {
2568
+ select: AgentPersonaEdgeSelect;
2569
+ };
2570
+ };
2571
+ export interface UpdateAgentPersonaPayload {
2572
+ clientMutationId?: string | null;
2573
+ /** The `AgentPersona` that was updated by this mutation. */
2574
+ agentPersona?: AgentPersona | null;
2575
+ agentPersonaEdge?: AgentPersonaEdge | null;
2576
+ }
2577
+ export type UpdateAgentPersonaPayloadSelect = {
2578
+ clientMutationId?: boolean;
2579
+ agentPersona?: {
2580
+ select: AgentPersonaSelect;
2581
+ };
2582
+ agentPersonaEdge?: {
2583
+ select: AgentPersonaEdgeSelect;
2584
+ };
2585
+ };
2586
+ export interface DeleteAgentPersonaPayload {
2587
+ clientMutationId?: string | null;
2588
+ /** The `AgentPersona` that was deleted by this mutation. */
2589
+ agentPersona?: AgentPersona | null;
2590
+ agentPersonaEdge?: AgentPersonaEdge | null;
2591
+ }
2592
+ export type DeleteAgentPersonaPayloadSelect = {
2593
+ clientMutationId?: boolean;
2594
+ agentPersona?: {
2595
+ select: AgentPersonaSelect;
2596
+ };
2597
+ agentPersonaEdge?: {
2598
+ select: AgentPersonaEdgeSelect;
2599
+ };
2600
+ };
2601
+ export interface CreateAgentResourcePayload {
2602
+ clientMutationId?: string | null;
2603
+ /** The `AgentResource` that was created by this mutation. */
2604
+ agentResource?: AgentResource | null;
2605
+ agentResourceEdge?: AgentResourceEdge | null;
2606
+ }
2607
+ export type CreateAgentResourcePayloadSelect = {
2608
+ clientMutationId?: boolean;
2609
+ agentResource?: {
2610
+ select: AgentResourceSelect;
2611
+ };
2612
+ agentResourceEdge?: {
2613
+ select: AgentResourceEdgeSelect;
2614
+ };
2615
+ };
2616
+ export interface UpdateAgentResourcePayload {
2617
+ clientMutationId?: string | null;
2618
+ /** The `AgentResource` that was updated by this mutation. */
2619
+ agentResource?: AgentResource | null;
2620
+ agentResourceEdge?: AgentResourceEdge | null;
2621
+ }
2622
+ export type UpdateAgentResourcePayloadSelect = {
2623
+ clientMutationId?: boolean;
2624
+ agentResource?: {
2625
+ select: AgentResourceSelect;
2626
+ };
2627
+ agentResourceEdge?: {
2628
+ select: AgentResourceEdgeSelect;
2629
+ };
2630
+ };
2631
+ export interface DeleteAgentResourcePayload {
2632
+ clientMutationId?: string | null;
2633
+ /** The `AgentResource` that was deleted by this mutation. */
2634
+ agentResource?: AgentResource | null;
2635
+ agentResourceEdge?: AgentResourceEdge | null;
2636
+ }
2637
+ export type DeleteAgentResourcePayloadSelect = {
2638
+ clientMutationId?: boolean;
2639
+ agentResource?: {
2640
+ select: AgentResourceSelect;
2641
+ };
2642
+ agentResourceEdge?: {
2643
+ select: AgentResourceEdgeSelect;
2644
+ };
2645
+ };
2646
+ /** A `AgentPlan` edge in the connection. */
2647
+ export interface AgentPlanEdge {
2648
+ cursor?: string | null;
2649
+ /** The `AgentPlan` at the end of the edge. */
2650
+ node?: AgentPlan | null;
2651
+ }
2652
+ export type AgentPlanEdgeSelect = {
2653
+ cursor?: boolean;
2654
+ node?: {
2655
+ select: AgentPlanSelect;
2656
+ };
2657
+ };
2658
+ /** A `Agent` edge in the connection. */
2659
+ export interface AgentEdge {
2660
+ cursor?: string | null;
2661
+ /** The `Agent` at the end of the edge. */
2662
+ node?: Agent | null;
2663
+ }
2664
+ export type AgentEdgeSelect = {
2665
+ cursor?: boolean;
2666
+ node?: {
2667
+ select: AgentSelect;
2668
+ };
2669
+ };
2670
+ /** A `AgentThread` edge in the connection. */
2671
+ export interface AgentThreadEdge {
2672
+ cursor?: string | null;
2673
+ /** The `AgentThread` at the end of the edge. */
2674
+ node?: AgentThread | null;
2675
+ }
2676
+ export type AgentThreadEdgeSelect = {
2677
+ cursor?: boolean;
2678
+ node?: {
2679
+ select: AgentThreadSelect;
2680
+ };
2681
+ };
2682
+ /** A `AgentMessage` edge in the connection. */
2683
+ export interface AgentMessageEdge {
2684
+ cursor?: string | null;
2685
+ /** The `AgentMessage` at the end of the edge. */
2686
+ node?: AgentMessage | null;
2687
+ }
2688
+ export type AgentMessageEdgeSelect = {
2689
+ cursor?: boolean;
2690
+ node?: {
2691
+ select: AgentMessageSelect;
2692
+ };
2693
+ };
2694
+ /** A `AgentTask` edge in the connection. */
2695
+ export interface AgentTaskEdge {
2696
+ cursor?: string | null;
2697
+ /** The `AgentTask` at the end of the edge. */
2698
+ node?: AgentTask | null;
2699
+ }
2700
+ export type AgentTaskEdgeSelect = {
2701
+ cursor?: boolean;
2702
+ node?: {
2703
+ select: AgentTaskSelect;
2704
+ };
2705
+ };
2706
+ /** A `AgentPrompt` edge in the connection. */
2707
+ export interface AgentPromptEdge {
2708
+ cursor?: string | null;
2709
+ /** The `AgentPrompt` at the end of the edge. */
2710
+ node?: AgentPrompt | null;
2711
+ }
2712
+ export type AgentPromptEdgeSelect = {
2713
+ cursor?: boolean;
2714
+ node?: {
2715
+ select: AgentPromptSelect;
2716
+ };
2717
+ };
2718
+ /** A `AgentResourceChunk` edge in the connection. */
2719
+ export interface AgentResourceChunkEdge {
2720
+ cursor?: string | null;
2721
+ /** The `AgentResourceChunk` at the end of the edge. */
2722
+ node?: AgentResourceChunk | null;
2723
+ }
2724
+ export type AgentResourceChunkEdgeSelect = {
2725
+ cursor?: boolean;
2726
+ node?: {
2727
+ select: AgentResourceChunkSelect;
2728
+ };
2729
+ };
2730
+ /** A `AgentPersona` edge in the connection. */
2731
+ export interface AgentPersonaEdge {
2732
+ cursor?: string | null;
2733
+ /** The `AgentPersona` at the end of the edge. */
2734
+ node?: AgentPersona | null;
2735
+ }
2736
+ export type AgentPersonaEdgeSelect = {
2737
+ cursor?: boolean;
2738
+ node?: {
2739
+ select: AgentPersonaSelect;
2740
+ };
2741
+ };
2742
+ /** A `AgentResource` edge in the connection. */
2743
+ export interface AgentResourceEdge {
2744
+ cursor?: string | null;
2745
+ /** The `AgentResource` at the end of the edge. */
2746
+ node?: AgentResource | null;
2747
+ }
2748
+ export type AgentResourceEdgeSelect = {
2749
+ cursor?: boolean;
2750
+ node?: {
2751
+ select: AgentResourceSelect;
2752
+ };
2753
+ };