@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
@@ -1,155 +0,0 @@
1
- /**
2
- * Models barrel export
3
- * @generated by @constructive-io/graphql-codegen
4
- * DO NOT EDIT - changes will be overwritten
5
- */
6
- export { OrgGetManagersRecordModel } from './orgGetManagersRecord';
7
- export { OrgGetSubordinatesRecordModel } from './orgGetSubordinatesRecord';
8
- export { AppPermissionModel } from './appPermission';
9
- export { OrgPermissionModel } from './orgPermission';
10
- export { DatabaseModel } from './database';
11
- export { SchemaModel } from './schema';
12
- export { TableModel } from './table';
13
- export { CheckConstraintModel } from './checkConstraint';
14
- export { FieldModel } from './field';
15
- export { SpatialRelationModel } from './spatialRelation';
16
- export { ForeignKeyConstraintModel } from './foreignKeyConstraint';
17
- export { FullTextSearchModel } from './fullTextSearch';
18
- export { IndexModel } from './indexModel';
19
- export { PolicyModel } from './policy';
20
- export { PrimaryKeyConstraintModel } from './primaryKeyConstraint';
21
- export { TableGrantModel } from './tableGrant';
22
- export { TriggerModel } from './trigger';
23
- export { UniqueConstraintModel } from './uniqueConstraint';
24
- export { ViewModel } from './view';
25
- export { ViewTableModel } from './viewTable';
26
- export { ViewGrantModel } from './viewGrant';
27
- export { ViewRuleModel } from './viewRule';
28
- export { EmbeddingChunkModel } from './embeddingChunk';
29
- export { SecureTableProvisionModel } from './secureTableProvision';
30
- export { RelationProvisionModel } from './relationProvision';
31
- export { SessionSecretsModuleModel } from './sessionSecretsModule';
32
- export { IdentityProvidersModuleModel } from './identityProvidersModule';
33
- export { RealtimeModuleModel } from './realtimeModule';
34
- export { ConfigSecretsOrgModuleModel } from './configSecretsOrgModule';
35
- export { SchemaGrantModel } from './schemaGrant';
36
- export { DefaultPrivilegeModel } from './defaultPrivilege';
37
- export { EnumModel } from './enum';
38
- export { FunctionModel } from './function';
39
- export { ApiSchemaModel } from './apiSchema';
40
- export { ApiModuleModel } from './apiModule';
41
- export { DomainModel } from './domain';
42
- export { SiteMetadatumModel } from './siteMetadatum';
43
- export { SiteModuleModel } from './siteModule';
44
- export { SiteThemeModel } from './siteTheme';
45
- export { CorsSettingModel } from './corsSetting';
46
- export { MerkleStoreModuleModel } from './merkleStoreModule';
47
- export { GraphModuleModel } from './graphModule';
48
- export { TriggerFunctionModel } from './triggerFunction';
49
- export { PartitionModel } from './partition';
50
- export { DatabaseTransferModel } from './databaseTransfer';
51
- export { ApiModel } from './api';
52
- export { SiteModel } from './site';
53
- export { AppModel } from './app';
54
- export { ApiSettingModel } from './apiSetting';
55
- export { ConnectedAccountsModuleModel } from './connectedAccountsModule';
56
- export { CryptoAddressesModuleModel } from './cryptoAddressesModule';
57
- export { CryptoAuthModuleModel } from './cryptoAuthModule';
58
- export { DefaultIdsModuleModel } from './defaultIdsModule';
59
- export { DenormalizedTableFieldModel } from './denormalizedTableField';
60
- export { EmailsModuleModel } from './emailsModule';
61
- export { ConfigSecretsUserModuleModel } from './configSecretsUserModule';
62
- export { InvitesModuleModel } from './invitesModule';
63
- export { EventsModuleModel } from './eventsModule';
64
- export { LimitsModuleModel } from './limitsModule';
65
- export { MembershipTypesModuleModel } from './membershipTypesModule';
66
- export { MembershipsModuleModel } from './membershipsModule';
67
- export { PermissionsModuleModel } from './permissionsModule';
68
- export { PhoneNumbersModuleModel } from './phoneNumbersModule';
69
- export { ProfilesModuleModel } from './profilesModule';
70
- export { UserStateModuleModel } from './userStateModule';
71
- export { SessionsModuleModel } from './sessionsModule';
72
- export { UserAuthModuleModel } from './userAuthModule';
73
- export { UsersModuleModel } from './usersModule';
74
- export { BlueprintModel } from './blueprint';
75
- export { BlueprintTemplateModel } from './blueprintTemplate';
76
- export { BlueprintConstructionModel } from './blueprintConstruction';
77
- export { StorageModuleModel } from './storageModule';
78
- export { EntityTypeProvisionModel } from './entityTypeProvision';
79
- export { WebauthnCredentialsModuleModel } from './webauthnCredentialsModule';
80
- export { WebauthnAuthModuleModel } from './webauthnAuthModule';
81
- export { NotificationsModuleModel } from './notificationsModule';
82
- export { InferenceLogModuleModel } from './inferenceLogModule';
83
- export { ComputeLogModuleModel } from './computeLogModule';
84
- export { TransferLogModuleModel } from './transferLogModule';
85
- export { StorageLogModuleModel } from './storageLogModule';
86
- export { DbUsageModuleModel } from './dbUsageModule';
87
- export { AgentModuleModel } from './agentModule';
88
- export { NamespaceModuleModel } from './namespaceModule';
89
- export { FunctionModuleModel } from './functionModule';
90
- export { DatabaseProvisionModuleModel } from './databaseProvisionModule';
91
- export { AppAdminGrantModel } from './appAdminGrant';
92
- export { AppOwnerGrantModel } from './appOwnerGrant';
93
- export { AppGrantModel } from './appGrant';
94
- export { OrgMembershipModel } from './orgMembership';
95
- export { OrgMemberModel } from './orgMember';
96
- export { OrgAdminGrantModel } from './orgAdminGrant';
97
- export { OrgOwnerGrantModel } from './orgOwnerGrant';
98
- export { OrgMemberProfileModel } from './orgMemberProfile';
99
- export { OrgGrantModel } from './orgGrant';
100
- export { OrgChartEdgeModel } from './orgChartEdge';
101
- export { OrgChartEdgeGrantModel } from './orgChartEdgeGrant';
102
- export { OrgPermissionDefaultModel } from './orgPermissionDefault';
103
- export { AppLimitModel } from './appLimit';
104
- export { AppLimitCreditModel } from './appLimitCredit';
105
- export { AppLimitCreditCodeItemModel } from './appLimitCreditCodeItem';
106
- export { AppLimitCreditRedemptionModel } from './appLimitCreditRedemption';
107
- export { OrgLimitModel } from './orgLimit';
108
- export { OrgLimitCreditModel } from './orgLimitCredit';
109
- export { OrgLimitAggregateModel } from './orgLimitAggregate';
110
- export { OrgLimitWarningModel } from './orgLimitWarning';
111
- export { EmailModel } from './email';
112
- export { PhoneNumberModel } from './phoneNumber';
113
- export { CryptoAddressModel } from './cryptoAddress';
114
- export { WebauthnCredentialModel } from './webauthnCredential';
115
- export { AppInviteModel } from './appInvite';
116
- export { AppClaimedInviteModel } from './appClaimedInvite';
117
- export { OrgInviteModel } from './orgInvite';
118
- export { OrgClaimedInviteModel } from './orgClaimedInvite';
119
- export { AuditLogAuthModel } from './auditLogAuth';
120
- export { IdentityProviderModel } from './identityProvider';
121
- export { AppPermissionDefaultModel } from './appPermissionDefault';
122
- export { RoleTypeModel } from './roleType';
123
- export { MigrateFileModel } from './migrateFile';
124
- export { DevicesModuleModel } from './devicesModule';
125
- export { AppMembershipDefaultModel } from './appMembershipDefault';
126
- export { OrgMembershipDefaultModel } from './orgMembershipDefault';
127
- export { NodeTypeRegistryModel } from './nodeTypeRegistry';
128
- export { AppLimitCapsDefaultModel } from './appLimitCapsDefault';
129
- export { OrgLimitCapsDefaultModel } from './orgLimitCapsDefault';
130
- export { AppLimitCapModel } from './appLimitCap';
131
- export { OrgLimitCapModel } from './orgLimitCap';
132
- export { UserConnectedAccountModel } from './userConnectedAccount';
133
- export { AppLimitDefaultModel } from './appLimitDefault';
134
- export { OrgLimitDefaultModel } from './orgLimitDefault';
135
- export { AppLimitCreditCodeModel } from './appLimitCreditCode';
136
- export { AppLimitWarningModel } from './appLimitWarning';
137
- export { PubkeySettingModel } from './pubkeySetting';
138
- export { RateLimitsModuleModel } from './rateLimitsModule';
139
- export { MembershipTypeModel } from './membershipType';
140
- export { RlsSettingModel } from './rlsSetting';
141
- export { RlsModuleModel } from './rlsModule';
142
- export { RateLimitMetersModuleModel } from './rateLimitMetersModule';
143
- export { PlansModuleModel } from './plansModule';
144
- export { SqlActionModel } from './sqlAction';
145
- export { DatabaseSettingModel } from './databaseSetting';
146
- export { OrgMembershipSettingModel } from './orgMembershipSetting';
147
- export { AppLimitEventModel } from './appLimitEvent';
148
- export { OrgLimitEventModel } from './orgLimitEvent';
149
- export { AppMembershipModel } from './appMembership';
150
- export { UserModel } from './user';
151
- export { AstMigrationModel } from './astMigration';
152
- export { WebauthnSettingModel } from './webauthnSetting';
153
- export { BillingModuleModel } from './billingModule';
154
- export { BillingProviderModuleModel } from './billingProviderModule';
155
- export { HierarchyModuleModel } from './hierarchyModule';
@@ -1,310 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ConnectedAccountsModuleModel = exports.ApiSettingModel = exports.AppModel = exports.SiteModel = exports.ApiModel = exports.DatabaseTransferModel = exports.PartitionModel = exports.TriggerFunctionModel = exports.GraphModuleModel = exports.MerkleStoreModuleModel = exports.CorsSettingModel = exports.SiteThemeModel = exports.SiteModuleModel = exports.SiteMetadatumModel = exports.DomainModel = exports.ApiModuleModel = exports.ApiSchemaModel = exports.FunctionModel = exports.EnumModel = exports.DefaultPrivilegeModel = exports.SchemaGrantModel = exports.ConfigSecretsOrgModuleModel = exports.RealtimeModuleModel = exports.IdentityProvidersModuleModel = exports.SessionSecretsModuleModel = exports.RelationProvisionModel = exports.SecureTableProvisionModel = exports.EmbeddingChunkModel = exports.ViewRuleModel = exports.ViewGrantModel = exports.ViewTableModel = exports.ViewModel = exports.UniqueConstraintModel = exports.TriggerModel = exports.TableGrantModel = exports.PrimaryKeyConstraintModel = exports.PolicyModel = exports.IndexModel = exports.FullTextSearchModel = exports.ForeignKeyConstraintModel = exports.SpatialRelationModel = exports.FieldModel = exports.CheckConstraintModel = exports.TableModel = exports.SchemaModel = exports.DatabaseModel = exports.OrgPermissionModel = exports.AppPermissionModel = exports.OrgGetSubordinatesRecordModel = exports.OrgGetManagersRecordModel = void 0;
4
- exports.AppLimitCreditCodeItemModel = exports.AppLimitCreditModel = exports.AppLimitModel = exports.OrgPermissionDefaultModel = exports.OrgChartEdgeGrantModel = exports.OrgChartEdgeModel = exports.OrgGrantModel = exports.OrgMemberProfileModel = exports.OrgOwnerGrantModel = exports.OrgAdminGrantModel = exports.OrgMemberModel = exports.OrgMembershipModel = exports.AppGrantModel = exports.AppOwnerGrantModel = exports.AppAdminGrantModel = exports.DatabaseProvisionModuleModel = exports.FunctionModuleModel = exports.NamespaceModuleModel = exports.AgentModuleModel = exports.DbUsageModuleModel = exports.StorageLogModuleModel = exports.TransferLogModuleModel = exports.ComputeLogModuleModel = exports.InferenceLogModuleModel = exports.NotificationsModuleModel = exports.WebauthnAuthModuleModel = exports.WebauthnCredentialsModuleModel = exports.EntityTypeProvisionModel = exports.StorageModuleModel = exports.BlueprintConstructionModel = exports.BlueprintTemplateModel = exports.BlueprintModel = exports.UsersModuleModel = exports.UserAuthModuleModel = exports.SessionsModuleModel = exports.UserStateModuleModel = exports.ProfilesModuleModel = exports.PhoneNumbersModuleModel = exports.PermissionsModuleModel = exports.MembershipsModuleModel = exports.MembershipTypesModuleModel = exports.LimitsModuleModel = exports.EventsModuleModel = exports.InvitesModuleModel = exports.ConfigSecretsUserModuleModel = exports.EmailsModuleModel = exports.DenormalizedTableFieldModel = exports.DefaultIdsModuleModel = exports.CryptoAuthModuleModel = exports.CryptoAddressesModuleModel = void 0;
5
- exports.HierarchyModuleModel = exports.BillingProviderModuleModel = exports.BillingModuleModel = exports.WebauthnSettingModel = exports.AstMigrationModel = exports.UserModel = exports.AppMembershipModel = exports.OrgLimitEventModel = exports.AppLimitEventModel = exports.OrgMembershipSettingModel = exports.DatabaseSettingModel = exports.SqlActionModel = exports.PlansModuleModel = exports.RateLimitMetersModuleModel = exports.RlsModuleModel = exports.RlsSettingModel = exports.MembershipTypeModel = exports.RateLimitsModuleModel = exports.PubkeySettingModel = exports.AppLimitWarningModel = exports.AppLimitCreditCodeModel = exports.OrgLimitDefaultModel = exports.AppLimitDefaultModel = exports.UserConnectedAccountModel = exports.OrgLimitCapModel = exports.AppLimitCapModel = exports.OrgLimitCapsDefaultModel = exports.AppLimitCapsDefaultModel = exports.NodeTypeRegistryModel = exports.OrgMembershipDefaultModel = exports.AppMembershipDefaultModel = exports.DevicesModuleModel = exports.MigrateFileModel = exports.RoleTypeModel = exports.AppPermissionDefaultModel = exports.IdentityProviderModel = exports.AuditLogAuthModel = exports.OrgClaimedInviteModel = exports.OrgInviteModel = exports.AppClaimedInviteModel = exports.AppInviteModel = exports.WebauthnCredentialModel = exports.CryptoAddressModel = exports.PhoneNumberModel = exports.EmailModel = exports.OrgLimitWarningModel = exports.OrgLimitAggregateModel = exports.OrgLimitCreditModel = exports.OrgLimitModel = exports.AppLimitCreditRedemptionModel = void 0;
6
- /**
7
- * Models barrel export
8
- * @generated by @constructive-io/graphql-codegen
9
- * DO NOT EDIT - changes will be overwritten
10
- */
11
- var orgGetManagersRecord_1 = require("./orgGetManagersRecord");
12
- Object.defineProperty(exports, "OrgGetManagersRecordModel", { enumerable: true, get: function () { return orgGetManagersRecord_1.OrgGetManagersRecordModel; } });
13
- var orgGetSubordinatesRecord_1 = require("./orgGetSubordinatesRecord");
14
- Object.defineProperty(exports, "OrgGetSubordinatesRecordModel", { enumerable: true, get: function () { return orgGetSubordinatesRecord_1.OrgGetSubordinatesRecordModel; } });
15
- var appPermission_1 = require("./appPermission");
16
- Object.defineProperty(exports, "AppPermissionModel", { enumerable: true, get: function () { return appPermission_1.AppPermissionModel; } });
17
- var orgPermission_1 = require("./orgPermission");
18
- Object.defineProperty(exports, "OrgPermissionModel", { enumerable: true, get: function () { return orgPermission_1.OrgPermissionModel; } });
19
- var database_1 = require("./database");
20
- Object.defineProperty(exports, "DatabaseModel", { enumerable: true, get: function () { return database_1.DatabaseModel; } });
21
- var schema_1 = require("./schema");
22
- Object.defineProperty(exports, "SchemaModel", { enumerable: true, get: function () { return schema_1.SchemaModel; } });
23
- var table_1 = require("./table");
24
- Object.defineProperty(exports, "TableModel", { enumerable: true, get: function () { return table_1.TableModel; } });
25
- var checkConstraint_1 = require("./checkConstraint");
26
- Object.defineProperty(exports, "CheckConstraintModel", { enumerable: true, get: function () { return checkConstraint_1.CheckConstraintModel; } });
27
- var field_1 = require("./field");
28
- Object.defineProperty(exports, "FieldModel", { enumerable: true, get: function () { return field_1.FieldModel; } });
29
- var spatialRelation_1 = require("./spatialRelation");
30
- Object.defineProperty(exports, "SpatialRelationModel", { enumerable: true, get: function () { return spatialRelation_1.SpatialRelationModel; } });
31
- var foreignKeyConstraint_1 = require("./foreignKeyConstraint");
32
- Object.defineProperty(exports, "ForeignKeyConstraintModel", { enumerable: true, get: function () { return foreignKeyConstraint_1.ForeignKeyConstraintModel; } });
33
- var fullTextSearch_1 = require("./fullTextSearch");
34
- Object.defineProperty(exports, "FullTextSearchModel", { enumerable: true, get: function () { return fullTextSearch_1.FullTextSearchModel; } });
35
- var indexModel_1 = require("./indexModel");
36
- Object.defineProperty(exports, "IndexModel", { enumerable: true, get: function () { return indexModel_1.IndexModel; } });
37
- var policy_1 = require("./policy");
38
- Object.defineProperty(exports, "PolicyModel", { enumerable: true, get: function () { return policy_1.PolicyModel; } });
39
- var primaryKeyConstraint_1 = require("./primaryKeyConstraint");
40
- Object.defineProperty(exports, "PrimaryKeyConstraintModel", { enumerable: true, get: function () { return primaryKeyConstraint_1.PrimaryKeyConstraintModel; } });
41
- var tableGrant_1 = require("./tableGrant");
42
- Object.defineProperty(exports, "TableGrantModel", { enumerable: true, get: function () { return tableGrant_1.TableGrantModel; } });
43
- var trigger_1 = require("./trigger");
44
- Object.defineProperty(exports, "TriggerModel", { enumerable: true, get: function () { return trigger_1.TriggerModel; } });
45
- var uniqueConstraint_1 = require("./uniqueConstraint");
46
- Object.defineProperty(exports, "UniqueConstraintModel", { enumerable: true, get: function () { return uniqueConstraint_1.UniqueConstraintModel; } });
47
- var view_1 = require("./view");
48
- Object.defineProperty(exports, "ViewModel", { enumerable: true, get: function () { return view_1.ViewModel; } });
49
- var viewTable_1 = require("./viewTable");
50
- Object.defineProperty(exports, "ViewTableModel", { enumerable: true, get: function () { return viewTable_1.ViewTableModel; } });
51
- var viewGrant_1 = require("./viewGrant");
52
- Object.defineProperty(exports, "ViewGrantModel", { enumerable: true, get: function () { return viewGrant_1.ViewGrantModel; } });
53
- var viewRule_1 = require("./viewRule");
54
- Object.defineProperty(exports, "ViewRuleModel", { enumerable: true, get: function () { return viewRule_1.ViewRuleModel; } });
55
- var embeddingChunk_1 = require("./embeddingChunk");
56
- Object.defineProperty(exports, "EmbeddingChunkModel", { enumerable: true, get: function () { return embeddingChunk_1.EmbeddingChunkModel; } });
57
- var secureTableProvision_1 = require("./secureTableProvision");
58
- Object.defineProperty(exports, "SecureTableProvisionModel", { enumerable: true, get: function () { return secureTableProvision_1.SecureTableProvisionModel; } });
59
- var relationProvision_1 = require("./relationProvision");
60
- Object.defineProperty(exports, "RelationProvisionModel", { enumerable: true, get: function () { return relationProvision_1.RelationProvisionModel; } });
61
- var sessionSecretsModule_1 = require("./sessionSecretsModule");
62
- Object.defineProperty(exports, "SessionSecretsModuleModel", { enumerable: true, get: function () { return sessionSecretsModule_1.SessionSecretsModuleModel; } });
63
- var identityProvidersModule_1 = require("./identityProvidersModule");
64
- Object.defineProperty(exports, "IdentityProvidersModuleModel", { enumerable: true, get: function () { return identityProvidersModule_1.IdentityProvidersModuleModel; } });
65
- var realtimeModule_1 = require("./realtimeModule");
66
- Object.defineProperty(exports, "RealtimeModuleModel", { enumerable: true, get: function () { return realtimeModule_1.RealtimeModuleModel; } });
67
- var configSecretsOrgModule_1 = require("./configSecretsOrgModule");
68
- Object.defineProperty(exports, "ConfigSecretsOrgModuleModel", { enumerable: true, get: function () { return configSecretsOrgModule_1.ConfigSecretsOrgModuleModel; } });
69
- var schemaGrant_1 = require("./schemaGrant");
70
- Object.defineProperty(exports, "SchemaGrantModel", { enumerable: true, get: function () { return schemaGrant_1.SchemaGrantModel; } });
71
- var defaultPrivilege_1 = require("./defaultPrivilege");
72
- Object.defineProperty(exports, "DefaultPrivilegeModel", { enumerable: true, get: function () { return defaultPrivilege_1.DefaultPrivilegeModel; } });
73
- var enum_1 = require("./enum");
74
- Object.defineProperty(exports, "EnumModel", { enumerable: true, get: function () { return enum_1.EnumModel; } });
75
- var function_1 = require("./function");
76
- Object.defineProperty(exports, "FunctionModel", { enumerable: true, get: function () { return function_1.FunctionModel; } });
77
- var apiSchema_1 = require("./apiSchema");
78
- Object.defineProperty(exports, "ApiSchemaModel", { enumerable: true, get: function () { return apiSchema_1.ApiSchemaModel; } });
79
- var apiModule_1 = require("./apiModule");
80
- Object.defineProperty(exports, "ApiModuleModel", { enumerable: true, get: function () { return apiModule_1.ApiModuleModel; } });
81
- var domain_1 = require("./domain");
82
- Object.defineProperty(exports, "DomainModel", { enumerable: true, get: function () { return domain_1.DomainModel; } });
83
- var siteMetadatum_1 = require("./siteMetadatum");
84
- Object.defineProperty(exports, "SiteMetadatumModel", { enumerable: true, get: function () { return siteMetadatum_1.SiteMetadatumModel; } });
85
- var siteModule_1 = require("./siteModule");
86
- Object.defineProperty(exports, "SiteModuleModel", { enumerable: true, get: function () { return siteModule_1.SiteModuleModel; } });
87
- var siteTheme_1 = require("./siteTheme");
88
- Object.defineProperty(exports, "SiteThemeModel", { enumerable: true, get: function () { return siteTheme_1.SiteThemeModel; } });
89
- var corsSetting_1 = require("./corsSetting");
90
- Object.defineProperty(exports, "CorsSettingModel", { enumerable: true, get: function () { return corsSetting_1.CorsSettingModel; } });
91
- var merkleStoreModule_1 = require("./merkleStoreModule");
92
- Object.defineProperty(exports, "MerkleStoreModuleModel", { enumerable: true, get: function () { return merkleStoreModule_1.MerkleStoreModuleModel; } });
93
- var graphModule_1 = require("./graphModule");
94
- Object.defineProperty(exports, "GraphModuleModel", { enumerable: true, get: function () { return graphModule_1.GraphModuleModel; } });
95
- var triggerFunction_1 = require("./triggerFunction");
96
- Object.defineProperty(exports, "TriggerFunctionModel", { enumerable: true, get: function () { return triggerFunction_1.TriggerFunctionModel; } });
97
- var partition_1 = require("./partition");
98
- Object.defineProperty(exports, "PartitionModel", { enumerable: true, get: function () { return partition_1.PartitionModel; } });
99
- var databaseTransfer_1 = require("./databaseTransfer");
100
- Object.defineProperty(exports, "DatabaseTransferModel", { enumerable: true, get: function () { return databaseTransfer_1.DatabaseTransferModel; } });
101
- var api_1 = require("./api");
102
- Object.defineProperty(exports, "ApiModel", { enumerable: true, get: function () { return api_1.ApiModel; } });
103
- var site_1 = require("./site");
104
- Object.defineProperty(exports, "SiteModel", { enumerable: true, get: function () { return site_1.SiteModel; } });
105
- var app_1 = require("./app");
106
- Object.defineProperty(exports, "AppModel", { enumerable: true, get: function () { return app_1.AppModel; } });
107
- var apiSetting_1 = require("./apiSetting");
108
- Object.defineProperty(exports, "ApiSettingModel", { enumerable: true, get: function () { return apiSetting_1.ApiSettingModel; } });
109
- var connectedAccountsModule_1 = require("./connectedAccountsModule");
110
- Object.defineProperty(exports, "ConnectedAccountsModuleModel", { enumerable: true, get: function () { return connectedAccountsModule_1.ConnectedAccountsModuleModel; } });
111
- var cryptoAddressesModule_1 = require("./cryptoAddressesModule");
112
- Object.defineProperty(exports, "CryptoAddressesModuleModel", { enumerable: true, get: function () { return cryptoAddressesModule_1.CryptoAddressesModuleModel; } });
113
- var cryptoAuthModule_1 = require("./cryptoAuthModule");
114
- Object.defineProperty(exports, "CryptoAuthModuleModel", { enumerable: true, get: function () { return cryptoAuthModule_1.CryptoAuthModuleModel; } });
115
- var defaultIdsModule_1 = require("./defaultIdsModule");
116
- Object.defineProperty(exports, "DefaultIdsModuleModel", { enumerable: true, get: function () { return defaultIdsModule_1.DefaultIdsModuleModel; } });
117
- var denormalizedTableField_1 = require("./denormalizedTableField");
118
- Object.defineProperty(exports, "DenormalizedTableFieldModel", { enumerable: true, get: function () { return denormalizedTableField_1.DenormalizedTableFieldModel; } });
119
- var emailsModule_1 = require("./emailsModule");
120
- Object.defineProperty(exports, "EmailsModuleModel", { enumerable: true, get: function () { return emailsModule_1.EmailsModuleModel; } });
121
- var configSecretsUserModule_1 = require("./configSecretsUserModule");
122
- Object.defineProperty(exports, "ConfigSecretsUserModuleModel", { enumerable: true, get: function () { return configSecretsUserModule_1.ConfigSecretsUserModuleModel; } });
123
- var invitesModule_1 = require("./invitesModule");
124
- Object.defineProperty(exports, "InvitesModuleModel", { enumerable: true, get: function () { return invitesModule_1.InvitesModuleModel; } });
125
- var eventsModule_1 = require("./eventsModule");
126
- Object.defineProperty(exports, "EventsModuleModel", { enumerable: true, get: function () { return eventsModule_1.EventsModuleModel; } });
127
- var limitsModule_1 = require("./limitsModule");
128
- Object.defineProperty(exports, "LimitsModuleModel", { enumerable: true, get: function () { return limitsModule_1.LimitsModuleModel; } });
129
- var membershipTypesModule_1 = require("./membershipTypesModule");
130
- Object.defineProperty(exports, "MembershipTypesModuleModel", { enumerable: true, get: function () { return membershipTypesModule_1.MembershipTypesModuleModel; } });
131
- var membershipsModule_1 = require("./membershipsModule");
132
- Object.defineProperty(exports, "MembershipsModuleModel", { enumerable: true, get: function () { return membershipsModule_1.MembershipsModuleModel; } });
133
- var permissionsModule_1 = require("./permissionsModule");
134
- Object.defineProperty(exports, "PermissionsModuleModel", { enumerable: true, get: function () { return permissionsModule_1.PermissionsModuleModel; } });
135
- var phoneNumbersModule_1 = require("./phoneNumbersModule");
136
- Object.defineProperty(exports, "PhoneNumbersModuleModel", { enumerable: true, get: function () { return phoneNumbersModule_1.PhoneNumbersModuleModel; } });
137
- var profilesModule_1 = require("./profilesModule");
138
- Object.defineProperty(exports, "ProfilesModuleModel", { enumerable: true, get: function () { return profilesModule_1.ProfilesModuleModel; } });
139
- var userStateModule_1 = require("./userStateModule");
140
- Object.defineProperty(exports, "UserStateModuleModel", { enumerable: true, get: function () { return userStateModule_1.UserStateModuleModel; } });
141
- var sessionsModule_1 = require("./sessionsModule");
142
- Object.defineProperty(exports, "SessionsModuleModel", { enumerable: true, get: function () { return sessionsModule_1.SessionsModuleModel; } });
143
- var userAuthModule_1 = require("./userAuthModule");
144
- Object.defineProperty(exports, "UserAuthModuleModel", { enumerable: true, get: function () { return userAuthModule_1.UserAuthModuleModel; } });
145
- var usersModule_1 = require("./usersModule");
146
- Object.defineProperty(exports, "UsersModuleModel", { enumerable: true, get: function () { return usersModule_1.UsersModuleModel; } });
147
- var blueprint_1 = require("./blueprint");
148
- Object.defineProperty(exports, "BlueprintModel", { enumerable: true, get: function () { return blueprint_1.BlueprintModel; } });
149
- var blueprintTemplate_1 = require("./blueprintTemplate");
150
- Object.defineProperty(exports, "BlueprintTemplateModel", { enumerable: true, get: function () { return blueprintTemplate_1.BlueprintTemplateModel; } });
151
- var blueprintConstruction_1 = require("./blueprintConstruction");
152
- Object.defineProperty(exports, "BlueprintConstructionModel", { enumerable: true, get: function () { return blueprintConstruction_1.BlueprintConstructionModel; } });
153
- var storageModule_1 = require("./storageModule");
154
- Object.defineProperty(exports, "StorageModuleModel", { enumerable: true, get: function () { return storageModule_1.StorageModuleModel; } });
155
- var entityTypeProvision_1 = require("./entityTypeProvision");
156
- Object.defineProperty(exports, "EntityTypeProvisionModel", { enumerable: true, get: function () { return entityTypeProvision_1.EntityTypeProvisionModel; } });
157
- var webauthnCredentialsModule_1 = require("./webauthnCredentialsModule");
158
- Object.defineProperty(exports, "WebauthnCredentialsModuleModel", { enumerable: true, get: function () { return webauthnCredentialsModule_1.WebauthnCredentialsModuleModel; } });
159
- var webauthnAuthModule_1 = require("./webauthnAuthModule");
160
- Object.defineProperty(exports, "WebauthnAuthModuleModel", { enumerable: true, get: function () { return webauthnAuthModule_1.WebauthnAuthModuleModel; } });
161
- var notificationsModule_1 = require("./notificationsModule");
162
- Object.defineProperty(exports, "NotificationsModuleModel", { enumerable: true, get: function () { return notificationsModule_1.NotificationsModuleModel; } });
163
- var inferenceLogModule_1 = require("./inferenceLogModule");
164
- Object.defineProperty(exports, "InferenceLogModuleModel", { enumerable: true, get: function () { return inferenceLogModule_1.InferenceLogModuleModel; } });
165
- var computeLogModule_1 = require("./computeLogModule");
166
- Object.defineProperty(exports, "ComputeLogModuleModel", { enumerable: true, get: function () { return computeLogModule_1.ComputeLogModuleModel; } });
167
- var transferLogModule_1 = require("./transferLogModule");
168
- Object.defineProperty(exports, "TransferLogModuleModel", { enumerable: true, get: function () { return transferLogModule_1.TransferLogModuleModel; } });
169
- var storageLogModule_1 = require("./storageLogModule");
170
- Object.defineProperty(exports, "StorageLogModuleModel", { enumerable: true, get: function () { return storageLogModule_1.StorageLogModuleModel; } });
171
- var dbUsageModule_1 = require("./dbUsageModule");
172
- Object.defineProperty(exports, "DbUsageModuleModel", { enumerable: true, get: function () { return dbUsageModule_1.DbUsageModuleModel; } });
173
- var agentModule_1 = require("./agentModule");
174
- Object.defineProperty(exports, "AgentModuleModel", { enumerable: true, get: function () { return agentModule_1.AgentModuleModel; } });
175
- var namespaceModule_1 = require("./namespaceModule");
176
- Object.defineProperty(exports, "NamespaceModuleModel", { enumerable: true, get: function () { return namespaceModule_1.NamespaceModuleModel; } });
177
- var functionModule_1 = require("./functionModule");
178
- Object.defineProperty(exports, "FunctionModuleModel", { enumerable: true, get: function () { return functionModule_1.FunctionModuleModel; } });
179
- var databaseProvisionModule_1 = require("./databaseProvisionModule");
180
- Object.defineProperty(exports, "DatabaseProvisionModuleModel", { enumerable: true, get: function () { return databaseProvisionModule_1.DatabaseProvisionModuleModel; } });
181
- var appAdminGrant_1 = require("./appAdminGrant");
182
- Object.defineProperty(exports, "AppAdminGrantModel", { enumerable: true, get: function () { return appAdminGrant_1.AppAdminGrantModel; } });
183
- var appOwnerGrant_1 = require("./appOwnerGrant");
184
- Object.defineProperty(exports, "AppOwnerGrantModel", { enumerable: true, get: function () { return appOwnerGrant_1.AppOwnerGrantModel; } });
185
- var appGrant_1 = require("./appGrant");
186
- Object.defineProperty(exports, "AppGrantModel", { enumerable: true, get: function () { return appGrant_1.AppGrantModel; } });
187
- var orgMembership_1 = require("./orgMembership");
188
- Object.defineProperty(exports, "OrgMembershipModel", { enumerable: true, get: function () { return orgMembership_1.OrgMembershipModel; } });
189
- var orgMember_1 = require("./orgMember");
190
- Object.defineProperty(exports, "OrgMemberModel", { enumerable: true, get: function () { return orgMember_1.OrgMemberModel; } });
191
- var orgAdminGrant_1 = require("./orgAdminGrant");
192
- Object.defineProperty(exports, "OrgAdminGrantModel", { enumerable: true, get: function () { return orgAdminGrant_1.OrgAdminGrantModel; } });
193
- var orgOwnerGrant_1 = require("./orgOwnerGrant");
194
- Object.defineProperty(exports, "OrgOwnerGrantModel", { enumerable: true, get: function () { return orgOwnerGrant_1.OrgOwnerGrantModel; } });
195
- var orgMemberProfile_1 = require("./orgMemberProfile");
196
- Object.defineProperty(exports, "OrgMemberProfileModel", { enumerable: true, get: function () { return orgMemberProfile_1.OrgMemberProfileModel; } });
197
- var orgGrant_1 = require("./orgGrant");
198
- Object.defineProperty(exports, "OrgGrantModel", { enumerable: true, get: function () { return orgGrant_1.OrgGrantModel; } });
199
- var orgChartEdge_1 = require("./orgChartEdge");
200
- Object.defineProperty(exports, "OrgChartEdgeModel", { enumerable: true, get: function () { return orgChartEdge_1.OrgChartEdgeModel; } });
201
- var orgChartEdgeGrant_1 = require("./orgChartEdgeGrant");
202
- Object.defineProperty(exports, "OrgChartEdgeGrantModel", { enumerable: true, get: function () { return orgChartEdgeGrant_1.OrgChartEdgeGrantModel; } });
203
- var orgPermissionDefault_1 = require("./orgPermissionDefault");
204
- Object.defineProperty(exports, "OrgPermissionDefaultModel", { enumerable: true, get: function () { return orgPermissionDefault_1.OrgPermissionDefaultModel; } });
205
- var appLimit_1 = require("./appLimit");
206
- Object.defineProperty(exports, "AppLimitModel", { enumerable: true, get: function () { return appLimit_1.AppLimitModel; } });
207
- var appLimitCredit_1 = require("./appLimitCredit");
208
- Object.defineProperty(exports, "AppLimitCreditModel", { enumerable: true, get: function () { return appLimitCredit_1.AppLimitCreditModel; } });
209
- var appLimitCreditCodeItem_1 = require("./appLimitCreditCodeItem");
210
- Object.defineProperty(exports, "AppLimitCreditCodeItemModel", { enumerable: true, get: function () { return appLimitCreditCodeItem_1.AppLimitCreditCodeItemModel; } });
211
- var appLimitCreditRedemption_1 = require("./appLimitCreditRedemption");
212
- Object.defineProperty(exports, "AppLimitCreditRedemptionModel", { enumerable: true, get: function () { return appLimitCreditRedemption_1.AppLimitCreditRedemptionModel; } });
213
- var orgLimit_1 = require("./orgLimit");
214
- Object.defineProperty(exports, "OrgLimitModel", { enumerable: true, get: function () { return orgLimit_1.OrgLimitModel; } });
215
- var orgLimitCredit_1 = require("./orgLimitCredit");
216
- Object.defineProperty(exports, "OrgLimitCreditModel", { enumerable: true, get: function () { return orgLimitCredit_1.OrgLimitCreditModel; } });
217
- var orgLimitAggregate_1 = require("./orgLimitAggregate");
218
- Object.defineProperty(exports, "OrgLimitAggregateModel", { enumerable: true, get: function () { return orgLimitAggregate_1.OrgLimitAggregateModel; } });
219
- var orgLimitWarning_1 = require("./orgLimitWarning");
220
- Object.defineProperty(exports, "OrgLimitWarningModel", { enumerable: true, get: function () { return orgLimitWarning_1.OrgLimitWarningModel; } });
221
- var email_1 = require("./email");
222
- Object.defineProperty(exports, "EmailModel", { enumerable: true, get: function () { return email_1.EmailModel; } });
223
- var phoneNumber_1 = require("./phoneNumber");
224
- Object.defineProperty(exports, "PhoneNumberModel", { enumerable: true, get: function () { return phoneNumber_1.PhoneNumberModel; } });
225
- var cryptoAddress_1 = require("./cryptoAddress");
226
- Object.defineProperty(exports, "CryptoAddressModel", { enumerable: true, get: function () { return cryptoAddress_1.CryptoAddressModel; } });
227
- var webauthnCredential_1 = require("./webauthnCredential");
228
- Object.defineProperty(exports, "WebauthnCredentialModel", { enumerable: true, get: function () { return webauthnCredential_1.WebauthnCredentialModel; } });
229
- var appInvite_1 = require("./appInvite");
230
- Object.defineProperty(exports, "AppInviteModel", { enumerable: true, get: function () { return appInvite_1.AppInviteModel; } });
231
- var appClaimedInvite_1 = require("./appClaimedInvite");
232
- Object.defineProperty(exports, "AppClaimedInviteModel", { enumerable: true, get: function () { return appClaimedInvite_1.AppClaimedInviteModel; } });
233
- var orgInvite_1 = require("./orgInvite");
234
- Object.defineProperty(exports, "OrgInviteModel", { enumerable: true, get: function () { return orgInvite_1.OrgInviteModel; } });
235
- var orgClaimedInvite_1 = require("./orgClaimedInvite");
236
- Object.defineProperty(exports, "OrgClaimedInviteModel", { enumerable: true, get: function () { return orgClaimedInvite_1.OrgClaimedInviteModel; } });
237
- var auditLogAuth_1 = require("./auditLogAuth");
238
- Object.defineProperty(exports, "AuditLogAuthModel", { enumerable: true, get: function () { return auditLogAuth_1.AuditLogAuthModel; } });
239
- var identityProvider_1 = require("./identityProvider");
240
- Object.defineProperty(exports, "IdentityProviderModel", { enumerable: true, get: function () { return identityProvider_1.IdentityProviderModel; } });
241
- var appPermissionDefault_1 = require("./appPermissionDefault");
242
- Object.defineProperty(exports, "AppPermissionDefaultModel", { enumerable: true, get: function () { return appPermissionDefault_1.AppPermissionDefaultModel; } });
243
- var roleType_1 = require("./roleType");
244
- Object.defineProperty(exports, "RoleTypeModel", { enumerable: true, get: function () { return roleType_1.RoleTypeModel; } });
245
- var migrateFile_1 = require("./migrateFile");
246
- Object.defineProperty(exports, "MigrateFileModel", { enumerable: true, get: function () { return migrateFile_1.MigrateFileModel; } });
247
- var devicesModule_1 = require("./devicesModule");
248
- Object.defineProperty(exports, "DevicesModuleModel", { enumerable: true, get: function () { return devicesModule_1.DevicesModuleModel; } });
249
- var appMembershipDefault_1 = require("./appMembershipDefault");
250
- Object.defineProperty(exports, "AppMembershipDefaultModel", { enumerable: true, get: function () { return appMembershipDefault_1.AppMembershipDefaultModel; } });
251
- var orgMembershipDefault_1 = require("./orgMembershipDefault");
252
- Object.defineProperty(exports, "OrgMembershipDefaultModel", { enumerable: true, get: function () { return orgMembershipDefault_1.OrgMembershipDefaultModel; } });
253
- var nodeTypeRegistry_1 = require("./nodeTypeRegistry");
254
- Object.defineProperty(exports, "NodeTypeRegistryModel", { enumerable: true, get: function () { return nodeTypeRegistry_1.NodeTypeRegistryModel; } });
255
- var appLimitCapsDefault_1 = require("./appLimitCapsDefault");
256
- Object.defineProperty(exports, "AppLimitCapsDefaultModel", { enumerable: true, get: function () { return appLimitCapsDefault_1.AppLimitCapsDefaultModel; } });
257
- var orgLimitCapsDefault_1 = require("./orgLimitCapsDefault");
258
- Object.defineProperty(exports, "OrgLimitCapsDefaultModel", { enumerable: true, get: function () { return orgLimitCapsDefault_1.OrgLimitCapsDefaultModel; } });
259
- var appLimitCap_1 = require("./appLimitCap");
260
- Object.defineProperty(exports, "AppLimitCapModel", { enumerable: true, get: function () { return appLimitCap_1.AppLimitCapModel; } });
261
- var orgLimitCap_1 = require("./orgLimitCap");
262
- Object.defineProperty(exports, "OrgLimitCapModel", { enumerable: true, get: function () { return orgLimitCap_1.OrgLimitCapModel; } });
263
- var userConnectedAccount_1 = require("./userConnectedAccount");
264
- Object.defineProperty(exports, "UserConnectedAccountModel", { enumerable: true, get: function () { return userConnectedAccount_1.UserConnectedAccountModel; } });
265
- var appLimitDefault_1 = require("./appLimitDefault");
266
- Object.defineProperty(exports, "AppLimitDefaultModel", { enumerable: true, get: function () { return appLimitDefault_1.AppLimitDefaultModel; } });
267
- var orgLimitDefault_1 = require("./orgLimitDefault");
268
- Object.defineProperty(exports, "OrgLimitDefaultModel", { enumerable: true, get: function () { return orgLimitDefault_1.OrgLimitDefaultModel; } });
269
- var appLimitCreditCode_1 = require("./appLimitCreditCode");
270
- Object.defineProperty(exports, "AppLimitCreditCodeModel", { enumerable: true, get: function () { return appLimitCreditCode_1.AppLimitCreditCodeModel; } });
271
- var appLimitWarning_1 = require("./appLimitWarning");
272
- Object.defineProperty(exports, "AppLimitWarningModel", { enumerable: true, get: function () { return appLimitWarning_1.AppLimitWarningModel; } });
273
- var pubkeySetting_1 = require("./pubkeySetting");
274
- Object.defineProperty(exports, "PubkeySettingModel", { enumerable: true, get: function () { return pubkeySetting_1.PubkeySettingModel; } });
275
- var rateLimitsModule_1 = require("./rateLimitsModule");
276
- Object.defineProperty(exports, "RateLimitsModuleModel", { enumerable: true, get: function () { return rateLimitsModule_1.RateLimitsModuleModel; } });
277
- var membershipType_1 = require("./membershipType");
278
- Object.defineProperty(exports, "MembershipTypeModel", { enumerable: true, get: function () { return membershipType_1.MembershipTypeModel; } });
279
- var rlsSetting_1 = require("./rlsSetting");
280
- Object.defineProperty(exports, "RlsSettingModel", { enumerable: true, get: function () { return rlsSetting_1.RlsSettingModel; } });
281
- var rlsModule_1 = require("./rlsModule");
282
- Object.defineProperty(exports, "RlsModuleModel", { enumerable: true, get: function () { return rlsModule_1.RlsModuleModel; } });
283
- var rateLimitMetersModule_1 = require("./rateLimitMetersModule");
284
- Object.defineProperty(exports, "RateLimitMetersModuleModel", { enumerable: true, get: function () { return rateLimitMetersModule_1.RateLimitMetersModuleModel; } });
285
- var plansModule_1 = require("./plansModule");
286
- Object.defineProperty(exports, "PlansModuleModel", { enumerable: true, get: function () { return plansModule_1.PlansModuleModel; } });
287
- var sqlAction_1 = require("./sqlAction");
288
- Object.defineProperty(exports, "SqlActionModel", { enumerable: true, get: function () { return sqlAction_1.SqlActionModel; } });
289
- var databaseSetting_1 = require("./databaseSetting");
290
- Object.defineProperty(exports, "DatabaseSettingModel", { enumerable: true, get: function () { return databaseSetting_1.DatabaseSettingModel; } });
291
- var orgMembershipSetting_1 = require("./orgMembershipSetting");
292
- Object.defineProperty(exports, "OrgMembershipSettingModel", { enumerable: true, get: function () { return orgMembershipSetting_1.OrgMembershipSettingModel; } });
293
- var appLimitEvent_1 = require("./appLimitEvent");
294
- Object.defineProperty(exports, "AppLimitEventModel", { enumerable: true, get: function () { return appLimitEvent_1.AppLimitEventModel; } });
295
- var orgLimitEvent_1 = require("./orgLimitEvent");
296
- Object.defineProperty(exports, "OrgLimitEventModel", { enumerable: true, get: function () { return orgLimitEvent_1.OrgLimitEventModel; } });
297
- var appMembership_1 = require("./appMembership");
298
- Object.defineProperty(exports, "AppMembershipModel", { enumerable: true, get: function () { return appMembership_1.AppMembershipModel; } });
299
- var user_1 = require("./user");
300
- Object.defineProperty(exports, "UserModel", { enumerable: true, get: function () { return user_1.UserModel; } });
301
- var astMigration_1 = require("./astMigration");
302
- Object.defineProperty(exports, "AstMigrationModel", { enumerable: true, get: function () { return astMigration_1.AstMigrationModel; } });
303
- var webauthnSetting_1 = require("./webauthnSetting");
304
- Object.defineProperty(exports, "WebauthnSettingModel", { enumerable: true, get: function () { return webauthnSetting_1.WebauthnSettingModel; } });
305
- var billingModule_1 = require("./billingModule");
306
- Object.defineProperty(exports, "BillingModuleModel", { enumerable: true, get: function () { return billingModule_1.BillingModuleModel; } });
307
- var billingProviderModule_1 = require("./billingProviderModule");
308
- Object.defineProperty(exports, "BillingProviderModuleModel", { enumerable: true, get: function () { return billingProviderModule_1.BillingProviderModuleModel; } });
309
- var hierarchyModule_1 = require("./hierarchyModule");
310
- Object.defineProperty(exports, "HierarchyModuleModel", { enumerable: true, get: function () { return hierarchyModule_1.HierarchyModuleModel; } });
@@ -1,54 +0,0 @@
1
- /**
2
- * MembershipType model for ORM client
3
- * @generated by @constructive-io/graphql-codegen
4
- * DO NOT EDIT - changes will be overwritten
5
- */
6
- import { OrmClient } from '../client';
7
- import { QueryBuilder } from '../query-builder';
8
- import type { ConnectionResult, FindManyArgs, FindFirstArgs, CreateArgs, UpdateArgs, DeleteArgs, InferSelectResult, StrictSelect } from '../select-types';
9
- import type { MembershipTypeWithRelations, MembershipTypeSelect, MembershipTypeFilter, MembershipTypeOrderBy, CreateMembershipTypeInput, MembershipTypePatch } from '../input-types';
10
- export declare class MembershipTypeModel {
11
- private client;
12
- constructor(client: OrmClient);
13
- findMany<S extends MembershipTypeSelect>(args: FindManyArgs<S, MembershipTypeFilter, MembershipTypeOrderBy> & {
14
- select: S;
15
- } & StrictSelect<S, MembershipTypeSelect>): QueryBuilder<{
16
- membershipTypes: ConnectionResult<InferSelectResult<MembershipTypeWithRelations, S>>;
17
- }>;
18
- findFirst<S extends MembershipTypeSelect>(args: FindFirstArgs<S, MembershipTypeFilter, MembershipTypeOrderBy> & {
19
- select: S;
20
- } & StrictSelect<S, MembershipTypeSelect>): QueryBuilder<{
21
- membershipType: InferSelectResult<MembershipTypeWithRelations, S> | null;
22
- }>;
23
- findOne<S extends MembershipTypeSelect>(args: {
24
- id: number;
25
- select: S;
26
- } & StrictSelect<S, MembershipTypeSelect>): QueryBuilder<{
27
- membershipType: InferSelectResult<MembershipTypeWithRelations, S> | null;
28
- }>;
29
- create<S extends MembershipTypeSelect>(args: CreateArgs<S, CreateMembershipTypeInput['membershipType']> & {
30
- select: S;
31
- } & StrictSelect<S, MembershipTypeSelect>): QueryBuilder<{
32
- createMembershipType: {
33
- membershipType: InferSelectResult<MembershipTypeWithRelations, S>;
34
- };
35
- }>;
36
- update<S extends MembershipTypeSelect>(args: UpdateArgs<S, {
37
- id: number;
38
- }, MembershipTypePatch> & {
39
- select: S;
40
- } & StrictSelect<S, MembershipTypeSelect>): QueryBuilder<{
41
- updateMembershipType: {
42
- membershipType: InferSelectResult<MembershipTypeWithRelations, S>;
43
- };
44
- }>;
45
- delete<S extends MembershipTypeSelect>(args: DeleteArgs<{
46
- id: number;
47
- }, S> & {
48
- select: S;
49
- } & StrictSelect<S, MembershipTypeSelect>): QueryBuilder<{
50
- deleteMembershipType: {
51
- membershipType: InferSelectResult<MembershipTypeWithRelations, S>;
52
- };
53
- }>;
54
- }