@constructive-sdk/cli 0.24.1 → 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 +5 -5
  439. package/usage/cli/commands/app-limit-credit-redemption.js +294 -0
  440. package/usage/cli/commands/auth.d.ts +8 -0
  441. package/usage/cli/commands/auth.js +107 -0
  442. package/usage/cli/commands/context.d.ts +8 -0
  443. package/usage/cli/commands/context.js +158 -0
  444. package/usage/cli/commands/org-limit-credit.js +382 -0
  445. package/usage/cli/commands/provision-bucket.d.ts +8 -0
  446. package/usage/cli/commands/provision-bucket.js +36 -0
  447. package/usage/cli/commands/seed-app-limit-caps-defaults.d.ts +8 -0
  448. package/usage/cli/commands/seed-app-limit-caps-defaults.js +36 -0
  449. package/usage/cli/commands/seed-app-limit-defaults.d.ts +8 -0
  450. package/usage/cli/commands/seed-app-limit-defaults.js +36 -0
  451. package/usage/cli/commands/seed-org-limit-caps-defaults.d.ts +8 -0
  452. package/usage/cli/commands/seed-org-limit-caps-defaults.js +36 -0
  453. package/usage/cli/commands/seed-org-limit-defaults.d.ts +8 -0
  454. package/usage/cli/commands/seed-org-limit-defaults.js +36 -0
  455. package/usage/cli/commands.d.ts +7 -0
  456. package/usage/cli/commands.js +94 -0
  457. package/usage/cli/executor.d.ts +48 -0
  458. package/usage/cli/executor.js +40 -0
  459. package/usage/cli/index.d.ts +1 -0
  460. package/usage/cli/index.js +26 -0
  461. package/usage/cli/utils.d.ts +88 -0
  462. package/usage/cli/utils.js +297 -0
  463. package/usage/index.d.ts +6 -0
  464. package/usage/index.js +22 -0
  465. package/usage/orm/client.d.ts +97 -0
  466. package/usage/orm/client.js +152 -0
  467. package/usage/orm/index.d.ts +95 -0
  468. package/usage/orm/index.js +99 -0
  469. package/usage/orm/input-types.d.ts +3313 -0
  470. package/usage/orm/input-types.js +17 -0
  471. package/usage/orm/models/index.d.ts +23 -0
  472. package/usage/orm/models/index.js +44 -0
  473. package/usage/orm/mutation/index.d.ts +58 -0
  474. package/usage/orm/mutation/index.js +69 -0
  475. package/usage/orm/query-builder.d.ts +110 -0
  476. package/usage/orm/query-builder.js +756 -0
  477. package/usage/orm/realtime.d.ts +142 -0
  478. package/usage/orm/realtime.js +104 -0
  479. package/usage/orm/select-types.d.ts +125 -0
  480. package/usage/orm/select-types.js +2 -0
  481. package/usage/orm/types.d.ts +6 -0
  482. package/usage/orm/types.js +23 -0
  483. package/admin/cli/commands/app-limit-credit-redemption.js +0 -250
  484. package/admin/cli/commands/org-limit-credit.js +0 -338
  485. package/commands/base-handler.d.ts +0 -44
  486. package/commands/base-handler.js +0 -47
  487. package/commands/index.d.ts +0 -2
  488. package/commands/index.js +0 -6
  489. package/esm/admin/cli/commands/app-limit-credit-redemption.js +0 -248
  490. package/esm/admin/cli/commands/org-limit-credit.js +0 -336
  491. package/esm/commands/base-handler.d.ts +0 -44
  492. package/esm/commands/base-handler.js +0 -43
  493. package/esm/commands/index.d.ts +0 -2
  494. package/esm/commands/index.js +0 -1
  495. package/esm/objects/cli/commands/freeze-objects.d.ts +0 -8
  496. package/esm/objects/cli/commands/freeze-objects.js +0 -34
  497. package/esm/objects/cli/commands/get-all-objects-from-root.d.ts +0 -8
  498. package/esm/objects/cli/commands/get-all-objects-from-root.js +0 -52
  499. package/esm/objects/cli/commands/get-object-at-path.d.ts +0 -8
  500. package/esm/objects/cli/commands/get-object-at-path.js +0 -47
  501. package/esm/objects/cli/commands/get-path-objects-from-root.d.ts +0 -8
  502. package/esm/objects/cli/commands/get-path-objects-from-root.js +0 -57
  503. package/esm/objects/cli/commands/remove-node-at-path.d.ts +0 -8
  504. package/esm/objects/cli/commands/remove-node-at-path.js +0 -34
  505. package/esm/objects/cli/commands/rev-parse.d.ts +0 -8
  506. package/esm/objects/cli/commands/rev-parse.js +0 -36
  507. package/esm/objects/cli/commands/set-and-commit.d.ts +0 -8
  508. package/esm/objects/cli/commands/set-and-commit.js +0 -34
  509. package/esm/objects/cli/commands/set-props-and-commit.d.ts +0 -8
  510. package/esm/objects/cli/commands/set-props-and-commit.js +0 -34
  511. package/esm/objects/cli/commands/update-node-at-path.d.ts +0 -8
  512. package/esm/objects/cli/commands/update-node-at-path.js +0 -34
  513. package/esm/objects/orm/query/index.d.ts +0 -69
  514. package/esm/objects/orm/query/index.js +0 -110
  515. package/esm/public/cli/commands/agent-module.js +0 -690
  516. package/esm/public/cli/commands/api-setting.js +0 -512
  517. package/esm/public/cli/commands/app-admin-grant.d.ts +0 -8
  518. package/esm/public/cli/commands/app-admin-grant.js +0 -284
  519. package/esm/public/cli/commands/app-claimed-invite.d.ts +0 -8
  520. package/esm/public/cli/commands/app-claimed-invite.js +0 -286
  521. package/esm/public/cli/commands/app-grant.d.ts +0 -8
  522. package/esm/public/cli/commands/app-grant.js +0 -306
  523. package/esm/public/cli/commands/app-invite.d.ts +0 -8
  524. package/esm/public/cli/commands/app-invite.js +0 -440
  525. package/esm/public/cli/commands/app-limit-cap.d.ts +0 -8
  526. package/esm/public/cli/commands/app-limit-cap.js +0 -270
  527. package/esm/public/cli/commands/app-limit-caps-default.d.ts +0 -8
  528. package/esm/public/cli/commands/app-limit-caps-default.js +0 -250
  529. package/esm/public/cli/commands/app-limit-credit-code-item.d.ts +0 -8
  530. package/esm/public/cli/commands/app-limit-credit-code-item.js +0 -290
  531. package/esm/public/cli/commands/app-limit-credit-code.d.ts +0 -8
  532. package/esm/public/cli/commands/app-limit-credit-code.js +0 -294
  533. package/esm/public/cli/commands/app-limit-credit-redemption.d.ts +0 -8
  534. package/esm/public/cli/commands/app-limit-credit-redemption.js +0 -248
  535. package/esm/public/cli/commands/app-limit-credit.d.ts +0 -8
  536. package/esm/public/cli/commands/app-limit-credit.js +0 -314
  537. package/esm/public/cli/commands/app-limit-default.d.ts +0 -8
  538. package/esm/public/cli/commands/app-limit-default.js +0 -272
  539. package/esm/public/cli/commands/app-limit-event.d.ts +0 -8
  540. package/esm/public/cli/commands/app-limit-event.js +0 -456
  541. package/esm/public/cli/commands/app-limit-warning.d.ts +0 -8
  542. package/esm/public/cli/commands/app-limit-warning.js +0 -288
  543. package/esm/public/cli/commands/app-limit.d.ts +0 -8
  544. package/esm/public/cli/commands/app-limit.js +0 -470
  545. package/esm/public/cli/commands/app-membership-default.d.ts +0 -8
  546. package/esm/public/cli/commands/app-membership-default.js +0 -308
  547. package/esm/public/cli/commands/app-membership.d.ts +0 -8
  548. package/esm/public/cli/commands/app-membership.js +0 -504
  549. package/esm/public/cli/commands/app-owner-grant.d.ts +0 -8
  550. package/esm/public/cli/commands/app-owner-grant.js +0 -284
  551. package/esm/public/cli/commands/app-permission-default.d.ts +0 -8
  552. package/esm/public/cli/commands/app-permission-default.js +0 -230
  553. package/esm/public/cli/commands/app-permission.d.ts +0 -8
  554. package/esm/public/cli/commands/app-permission.js +0 -296
  555. package/esm/public/cli/commands/app-permissions-get-by-mask.d.ts +0 -8
  556. package/esm/public/cli/commands/app-permissions-get-by-mask.js +0 -47
  557. package/esm/public/cli/commands/app-permissions-get-mask-by-names.d.ts +0 -8
  558. package/esm/public/cli/commands/app-permissions-get-mask-by-names.js +0 -28
  559. package/esm/public/cli/commands/app-permissions-get-mask.d.ts +0 -8
  560. package/esm/public/cli/commands/app-permissions-get-mask.js +0 -28
  561. package/esm/public/cli/commands/app-permissions-get-padded-mask.d.ts +0 -8
  562. package/esm/public/cli/commands/app-permissions-get-padded-mask.js +0 -28
  563. package/esm/public/cli/commands/audit-log-auth.d.ts +0 -8
  564. package/esm/public/cli/commands/audit-log-auth.js +0 -342
  565. package/esm/public/cli/commands/billing-module.js +0 -580
  566. package/esm/public/cli/commands/billing-provider-module.js +0 -624
  567. package/esm/public/cli/commands/check-password.d.ts +0 -8
  568. package/esm/public/cli/commands/check-password.js +0 -34
  569. package/esm/public/cli/commands/compute-log-module.js +0 -514
  570. package/esm/public/cli/commands/config-secrets-org-module.js +0 -294
  571. package/esm/public/cli/commands/config-secrets-user-module.js +0 -316
  572. package/esm/public/cli/commands/confirm-delete-account.d.ts +0 -8
  573. package/esm/public/cli/commands/confirm-delete-account.js +0 -34
  574. package/esm/public/cli/commands/connected-accounts-module.js +0 -336
  575. package/esm/public/cli/commands/create-api-key.d.ts +0 -8
  576. package/esm/public/cli/commands/create-api-key.js +0 -34
  577. package/esm/public/cli/commands/crypto-address.d.ts +0 -8
  578. package/esm/public/cli/commands/crypto-address.js +0 -328
  579. package/esm/public/cli/commands/crypto-addresses-module.js +0 -358
  580. package/esm/public/cli/commands/current-ip-address.d.ts +0 -8
  581. package/esm/public/cli/commands/current-ip-address.js +0 -19
  582. package/esm/public/cli/commands/current-user-agent.d.ts +0 -8
  583. package/esm/public/cli/commands/current-user-agent.js +0 -19
  584. package/esm/public/cli/commands/current-user-id.d.ts +0 -8
  585. package/esm/public/cli/commands/current-user-id.js +0 -19
  586. package/esm/public/cli/commands/current-user.d.ts +0 -8
  587. package/esm/public/cli/commands/current-user.js +0 -25
  588. package/esm/public/cli/commands/database-provision-module.js +0 -456
  589. package/esm/public/cli/commands/database-setting.js +0 -492
  590. package/esm/public/cli/commands/db-usage-module.js +0 -558
  591. package/esm/public/cli/commands/disconnect-account.d.ts +0 -8
  592. package/esm/public/cli/commands/disconnect-account.js +0 -34
  593. package/esm/public/cli/commands/email.d.ts +0 -8
  594. package/esm/public/cli/commands/email.js +0 -328
  595. package/esm/public/cli/commands/emails-module.js +0 -336
  596. package/esm/public/cli/commands/events-module.js +0 -1040
  597. package/esm/public/cli/commands/extend-token-expires.d.ts +0 -8
  598. package/esm/public/cli/commands/extend-token-expires.js +0 -34
  599. package/esm/public/cli/commands/forgot-password.d.ts +0 -8
  600. package/esm/public/cli/commands/forgot-password.js +0 -34
  601. package/esm/public/cli/commands/full-text-search.js +0 -342
  602. package/esm/public/cli/commands/function-module.js +0 -778
  603. package/esm/public/cli/commands/graph-module.js +0 -584
  604. package/esm/public/cli/commands/hierarchy-module.js +0 -604
  605. package/esm/public/cli/commands/identity-provider.d.ts +0 -8
  606. package/esm/public/cli/commands/identity-provider.js +0 -162
  607. package/esm/public/cli/commands/identity-providers-module.js +0 -316
  608. package/esm/public/cli/commands/inference-log-module.js +0 -514
  609. package/esm/public/cli/commands/invites-module.js +0 -490
  610. package/esm/public/cli/commands/limits-module.js +0 -886
  611. package/esm/public/cli/commands/membership-type.d.ts +0 -8
  612. package/esm/public/cli/commands/membership-type.js +0 -312
  613. package/esm/public/cli/commands/memberships-module.js +0 -952
  614. package/esm/public/cli/commands/merkle-store-module.js +0 -498
  615. package/esm/public/cli/commands/namespace-module.js +0 -558
  616. package/esm/public/cli/commands/notifications-module.js +0 -558
  617. package/esm/public/cli/commands/org-admin-grant.d.ts +0 -8
  618. package/esm/public/cli/commands/org-admin-grant.js +0 -304
  619. package/esm/public/cli/commands/org-chart-edge-grant.d.ts +0 -8
  620. package/esm/public/cli/commands/org-chart-edge-grant.js +0 -364
  621. package/esm/public/cli/commands/org-chart-edge.d.ts +0 -8
  622. package/esm/public/cli/commands/org-chart-edge.js +0 -326
  623. package/esm/public/cli/commands/org-claimed-invite.d.ts +0 -8
  624. package/esm/public/cli/commands/org-claimed-invite.js +0 -306
  625. package/esm/public/cli/commands/org-get-managers-record.d.ts +0 -8
  626. package/esm/public/cli/commands/org-get-managers-record.js +0 -124
  627. package/esm/public/cli/commands/org-get-subordinates-record.d.ts +0 -8
  628. package/esm/public/cli/commands/org-get-subordinates-record.js +0 -124
  629. package/esm/public/cli/commands/org-grant.d.ts +0 -8
  630. package/esm/public/cli/commands/org-grant.js +0 -326
  631. package/esm/public/cli/commands/org-invite.d.ts +0 -8
  632. package/esm/public/cli/commands/org-invite.js +0 -504
  633. package/esm/public/cli/commands/org-is-manager-of.d.ts +0 -8
  634. package/esm/public/cli/commands/org-is-manager-of.js +0 -43
  635. package/esm/public/cli/commands/org-limit-aggregate.d.ts +0 -8
  636. package/esm/public/cli/commands/org-limit-aggregate.js +0 -492
  637. package/esm/public/cli/commands/org-limit-cap.d.ts +0 -8
  638. package/esm/public/cli/commands/org-limit-cap.js +0 -270
  639. package/esm/public/cli/commands/org-limit-caps-default.d.ts +0 -8
  640. package/esm/public/cli/commands/org-limit-caps-default.js +0 -250
  641. package/esm/public/cli/commands/org-limit-credit.d.ts +0 -8
  642. package/esm/public/cli/commands/org-limit-credit.js +0 -336
  643. package/esm/public/cli/commands/org-limit-default.d.ts +0 -8
  644. package/esm/public/cli/commands/org-limit-default.js +0 -272
  645. package/esm/public/cli/commands/org-limit-event.d.ts +0 -8
  646. package/esm/public/cli/commands/org-limit-event.js +0 -456
  647. package/esm/public/cli/commands/org-limit-warning.d.ts +0 -8
  648. package/esm/public/cli/commands/org-limit-warning.js +0 -310
  649. package/esm/public/cli/commands/org-limit.d.ts +0 -8
  650. package/esm/public/cli/commands/org-limit.js +0 -490
  651. package/esm/public/cli/commands/org-member-profile.d.ts +0 -8
  652. package/esm/public/cli/commands/org-member-profile.js +0 -390
  653. package/esm/public/cli/commands/org-member.d.ts +0 -8
  654. package/esm/public/cli/commands/org-member.js +0 -270
  655. package/esm/public/cli/commands/org-membership-default.d.ts +0 -8
  656. package/esm/public/cli/commands/org-membership-default.js +0 -306
  657. package/esm/public/cli/commands/org-membership-setting.d.ts +0 -8
  658. package/esm/public/cli/commands/org-membership-setting.js +0 -460
  659. package/esm/public/cli/commands/org-membership.d.ts +0 -8
  660. package/esm/public/cli/commands/org-membership.js +0 -546
  661. package/esm/public/cli/commands/org-owner-grant.d.ts +0 -8
  662. package/esm/public/cli/commands/org-owner-grant.js +0 -304
  663. package/esm/public/cli/commands/org-permission-default.d.ts +0 -8
  664. package/esm/public/cli/commands/org-permission-default.js +0 -250
  665. package/esm/public/cli/commands/org-permission.d.ts +0 -8
  666. package/esm/public/cli/commands/org-permission.js +0 -296
  667. package/esm/public/cli/commands/org-permissions-get-by-mask.d.ts +0 -8
  668. package/esm/public/cli/commands/org-permissions-get-by-mask.js +0 -47
  669. package/esm/public/cli/commands/org-permissions-get-mask-by-names.d.ts +0 -8
  670. package/esm/public/cli/commands/org-permissions-get-mask-by-names.js +0 -28
  671. package/esm/public/cli/commands/org-permissions-get-mask.d.ts +0 -8
  672. package/esm/public/cli/commands/org-permissions-get-mask.js +0 -28
  673. package/esm/public/cli/commands/org-permissions-get-padded-mask.d.ts +0 -8
  674. package/esm/public/cli/commands/org-permissions-get-padded-mask.js +0 -28
  675. package/esm/public/cli/commands/permissions-module.js +0 -556
  676. package/esm/public/cli/commands/phone-number.d.ts +0 -8
  677. package/esm/public/cli/commands/phone-number.js +0 -348
  678. package/esm/public/cli/commands/phone-numbers-module.js +0 -336
  679. package/esm/public/cli/commands/plans-module.js +0 -470
  680. package/esm/public/cli/commands/profiles-module.js +0 -622
  681. package/esm/public/cli/commands/provision-new-user.d.ts +0 -8
  682. package/esm/public/cli/commands/provision-new-user.js +0 -34
  683. package/esm/public/cli/commands/rate-limit-meters-module.js +0 -448
  684. package/esm/public/cli/commands/realtime-module.js +0 -448
  685. package/esm/public/cli/commands/request-cross-origin-token.d.ts +0 -8
  686. package/esm/public/cli/commands/request-cross-origin-token.js +0 -34
  687. package/esm/public/cli/commands/require-step-up.d.ts +0 -8
  688. package/esm/public/cli/commands/require-step-up.js +0 -28
  689. package/esm/public/cli/commands/reset-password.d.ts +0 -8
  690. package/esm/public/cli/commands/reset-password.js +0 -34
  691. package/esm/public/cli/commands/revoke-api-key.d.ts +0 -8
  692. package/esm/public/cli/commands/revoke-api-key.js +0 -34
  693. package/esm/public/cli/commands/revoke-session.d.ts +0 -8
  694. package/esm/public/cli/commands/revoke-session.js +0 -34
  695. package/esm/public/cli/commands/rls-module.js +0 -426
  696. package/esm/public/cli/commands/role-type.d.ts +0 -8
  697. package/esm/public/cli/commands/role-type.js +0 -228
  698. package/esm/public/cli/commands/send-account-deletion-email.d.ts +0 -8
  699. package/esm/public/cli/commands/send-account-deletion-email.js +0 -34
  700. package/esm/public/cli/commands/send-verification-email.d.ts +0 -8
  701. package/esm/public/cli/commands/send-verification-email.js +0 -34
  702. package/esm/public/cli/commands/set-password.d.ts +0 -8
  703. package/esm/public/cli/commands/set-password.js +0 -34
  704. package/esm/public/cli/commands/sign-in-cross-origin.d.ts +0 -8
  705. package/esm/public/cli/commands/sign-in-cross-origin.js +0 -34
  706. package/esm/public/cli/commands/sign-in.d.ts +0 -8
  707. package/esm/public/cli/commands/sign-in.js +0 -34
  708. package/esm/public/cli/commands/sign-out.d.ts +0 -8
  709. package/esm/public/cli/commands/sign-out.js +0 -34
  710. package/esm/public/cli/commands/sign-up.d.ts +0 -8
  711. package/esm/public/cli/commands/sign-up.js +0 -34
  712. package/esm/public/cli/commands/storage-log-module.js +0 -514
  713. package/esm/public/cli/commands/storage-module.js +0 -932
  714. package/esm/public/cli/commands/submit-app-invite-code.d.ts +0 -8
  715. package/esm/public/cli/commands/submit-app-invite-code.js +0 -34
  716. package/esm/public/cli/commands/submit-org-invite-code.d.ts +0 -8
  717. package/esm/public/cli/commands/submit-org-invite-code.js +0 -34
  718. package/esm/public/cli/commands/transfer-log-module.js +0 -514
  719. package/esm/public/cli/commands/user-auth-module.js +0 -756
  720. package/esm/public/cli/commands/user-connected-account.d.ts +0 -8
  721. package/esm/public/cli/commands/user-connected-account.js +0 -174
  722. package/esm/public/cli/commands/user.d.ts +0 -8
  723. package/esm/public/cli/commands/user.js +0 -352
  724. package/esm/public/cli/commands/users-module.js +0 -338
  725. package/esm/public/cli/commands/verify-email.d.ts +0 -8
  726. package/esm/public/cli/commands/verify-email.js +0 -34
  727. package/esm/public/cli/commands/verify-password.d.ts +0 -8
  728. package/esm/public/cli/commands/verify-password.js +0 -34
  729. package/esm/public/cli/commands/verify-totp.d.ts +0 -8
  730. package/esm/public/cli/commands/verify-totp.js +0 -34
  731. package/esm/public/cli/commands/webauthn-credential.d.ts +0 -8
  732. package/esm/public/cli/commands/webauthn-credential.js +0 -454
  733. package/esm/public/cli/commands/webauthn-credentials-module.js +0 -338
  734. package/esm/public/cli/commands.js +0 -457
  735. package/esm/public/cli/executor.d.ts +0 -447
  736. package/esm/public/orm/index.d.ts +0 -627
  737. package/esm/public/orm/index.js +0 -344
  738. package/esm/public/orm/input-types.d.ts +0 -38680
  739. package/esm/public/orm/input-types.js +0 -224
  740. package/esm/public/orm/models/appAdminGrant.d.ts +0 -54
  741. package/esm/public/orm/models/appAdminGrant.js +0 -100
  742. package/esm/public/orm/models/appClaimedInvite.d.ts +0 -54
  743. package/esm/public/orm/models/appClaimedInvite.js +0 -100
  744. package/esm/public/orm/models/appGrant.d.ts +0 -54
  745. package/esm/public/orm/models/appGrant.js +0 -100
  746. package/esm/public/orm/models/appInvite.d.ts +0 -54
  747. package/esm/public/orm/models/appInvite.js +0 -100
  748. package/esm/public/orm/models/appLimit.d.ts +0 -54
  749. package/esm/public/orm/models/appLimit.js +0 -100
  750. package/esm/public/orm/models/appLimitCap.d.ts +0 -54
  751. package/esm/public/orm/models/appLimitCap.js +0 -100
  752. package/esm/public/orm/models/appLimitCapsDefault.d.ts +0 -54
  753. package/esm/public/orm/models/appLimitCapsDefault.js +0 -100
  754. package/esm/public/orm/models/appLimitCredit.d.ts +0 -54
  755. package/esm/public/orm/models/appLimitCredit.js +0 -100
  756. package/esm/public/orm/models/appLimitCreditCode.d.ts +0 -54
  757. package/esm/public/orm/models/appLimitCreditCode.js +0 -100
  758. package/esm/public/orm/models/appLimitCreditCodeItem.d.ts +0 -54
  759. package/esm/public/orm/models/appLimitCreditCodeItem.js +0 -100
  760. package/esm/public/orm/models/appLimitCreditRedemption.d.ts +0 -54
  761. package/esm/public/orm/models/appLimitCreditRedemption.js +0 -100
  762. package/esm/public/orm/models/appLimitDefault.d.ts +0 -54
  763. package/esm/public/orm/models/appLimitDefault.js +0 -100
  764. package/esm/public/orm/models/appLimitEvent.d.ts +0 -54
  765. package/esm/public/orm/models/appLimitEvent.js +0 -100
  766. package/esm/public/orm/models/appLimitWarning.d.ts +0 -54
  767. package/esm/public/orm/models/appLimitWarning.js +0 -100
  768. package/esm/public/orm/models/appMembership.d.ts +0 -54
  769. package/esm/public/orm/models/appMembership.js +0 -100
  770. package/esm/public/orm/models/appMembershipDefault.d.ts +0 -54
  771. package/esm/public/orm/models/appMembershipDefault.js +0 -100
  772. package/esm/public/orm/models/appOwnerGrant.d.ts +0 -54
  773. package/esm/public/orm/models/appOwnerGrant.js +0 -100
  774. package/esm/public/orm/models/appPermission.d.ts +0 -54
  775. package/esm/public/orm/models/appPermission.js +0 -100
  776. package/esm/public/orm/models/appPermissionDefault.d.ts +0 -54
  777. package/esm/public/orm/models/appPermissionDefault.js +0 -100
  778. package/esm/public/orm/models/auditLogAuth.d.ts +0 -54
  779. package/esm/public/orm/models/auditLogAuth.js +0 -100
  780. package/esm/public/orm/models/cryptoAddress.d.ts +0 -54
  781. package/esm/public/orm/models/cryptoAddress.js +0 -100
  782. package/esm/public/orm/models/email.d.ts +0 -54
  783. package/esm/public/orm/models/email.js +0 -100
  784. package/esm/public/orm/models/identityProvider.d.ts +0 -30
  785. package/esm/public/orm/models/identityProvider.js +0 -55
  786. package/esm/public/orm/models/index.d.ts +0 -155
  787. package/esm/public/orm/models/index.js +0 -155
  788. package/esm/public/orm/models/membershipType.d.ts +0 -54
  789. package/esm/public/orm/models/membershipType.js +0 -100
  790. package/esm/public/orm/models/orgAdminGrant.d.ts +0 -54
  791. package/esm/public/orm/models/orgAdminGrant.js +0 -100
  792. package/esm/public/orm/models/orgChartEdge.d.ts +0 -54
  793. package/esm/public/orm/models/orgChartEdge.js +0 -100
  794. package/esm/public/orm/models/orgChartEdgeGrant.d.ts +0 -54
  795. package/esm/public/orm/models/orgChartEdgeGrant.js +0 -100
  796. package/esm/public/orm/models/orgClaimedInvite.d.ts +0 -54
  797. package/esm/public/orm/models/orgClaimedInvite.js +0 -100
  798. package/esm/public/orm/models/orgGetManagersRecord.d.ts +0 -30
  799. package/esm/public/orm/models/orgGetManagersRecord.js +0 -55
  800. package/esm/public/orm/models/orgGetSubordinatesRecord.d.ts +0 -30
  801. package/esm/public/orm/models/orgGetSubordinatesRecord.js +0 -55
  802. package/esm/public/orm/models/orgGrant.d.ts +0 -54
  803. package/esm/public/orm/models/orgGrant.js +0 -100
  804. package/esm/public/orm/models/orgInvite.d.ts +0 -54
  805. package/esm/public/orm/models/orgInvite.js +0 -100
  806. package/esm/public/orm/models/orgLimit.d.ts +0 -54
  807. package/esm/public/orm/models/orgLimit.js +0 -100
  808. package/esm/public/orm/models/orgLimitAggregate.d.ts +0 -54
  809. package/esm/public/orm/models/orgLimitAggregate.js +0 -100
  810. package/esm/public/orm/models/orgLimitCap.d.ts +0 -54
  811. package/esm/public/orm/models/orgLimitCap.js +0 -100
  812. package/esm/public/orm/models/orgLimitCapsDefault.d.ts +0 -54
  813. package/esm/public/orm/models/orgLimitCapsDefault.js +0 -100
  814. package/esm/public/orm/models/orgLimitCredit.d.ts +0 -54
  815. package/esm/public/orm/models/orgLimitCredit.js +0 -100
  816. package/esm/public/orm/models/orgLimitDefault.d.ts +0 -54
  817. package/esm/public/orm/models/orgLimitDefault.js +0 -100
  818. package/esm/public/orm/models/orgLimitEvent.d.ts +0 -54
  819. package/esm/public/orm/models/orgLimitEvent.js +0 -100
  820. package/esm/public/orm/models/orgLimitWarning.d.ts +0 -54
  821. package/esm/public/orm/models/orgLimitWarning.js +0 -100
  822. package/esm/public/orm/models/orgMember.d.ts +0 -54
  823. package/esm/public/orm/models/orgMember.js +0 -100
  824. package/esm/public/orm/models/orgMemberProfile.d.ts +0 -54
  825. package/esm/public/orm/models/orgMemberProfile.js +0 -100
  826. package/esm/public/orm/models/orgMembership.d.ts +0 -54
  827. package/esm/public/orm/models/orgMembership.js +0 -100
  828. package/esm/public/orm/models/orgMembershipDefault.d.ts +0 -54
  829. package/esm/public/orm/models/orgMembershipDefault.js +0 -100
  830. package/esm/public/orm/models/orgMembershipSetting.d.ts +0 -54
  831. package/esm/public/orm/models/orgMembershipSetting.js +0 -100
  832. package/esm/public/orm/models/orgOwnerGrant.d.ts +0 -54
  833. package/esm/public/orm/models/orgOwnerGrant.js +0 -100
  834. package/esm/public/orm/models/orgPermission.d.ts +0 -54
  835. package/esm/public/orm/models/orgPermission.js +0 -100
  836. package/esm/public/orm/models/orgPermissionDefault.d.ts +0 -54
  837. package/esm/public/orm/models/orgPermissionDefault.js +0 -100
  838. package/esm/public/orm/models/phoneNumber.d.ts +0 -54
  839. package/esm/public/orm/models/phoneNumber.js +0 -100
  840. package/esm/public/orm/models/roleType.d.ts +0 -54
  841. package/esm/public/orm/models/roleType.js +0 -100
  842. package/esm/public/orm/models/user.d.ts +0 -54
  843. package/esm/public/orm/models/user.js +0 -100
  844. package/esm/public/orm/models/userConnectedAccount.d.ts +0 -36
  845. package/esm/public/orm/models/userConnectedAccount.js +0 -76
  846. package/esm/public/orm/models/webauthnCredential.d.ts +0 -54
  847. package/esm/public/orm/models/webauthnCredential.js +0 -100
  848. package/esm/public/orm/mutation/index.d.ts +0 -401
  849. package/esm/public/orm/mutation/index.js +0 -498
  850. package/esm/public/orm/query/index.d.ts +0 -171
  851. package/esm/public/orm/query/index.js +0 -254
  852. package/objects/cli/commands/freeze-objects.d.ts +0 -8
  853. package/objects/cli/commands/freeze-objects.js +0 -36
  854. package/objects/cli/commands/get-all-objects-from-root.d.ts +0 -8
  855. package/objects/cli/commands/get-all-objects-from-root.js +0 -54
  856. package/objects/cli/commands/get-object-at-path.d.ts +0 -8
  857. package/objects/cli/commands/get-object-at-path.js +0 -49
  858. package/objects/cli/commands/get-path-objects-from-root.d.ts +0 -8
  859. package/objects/cli/commands/get-path-objects-from-root.js +0 -59
  860. package/objects/cli/commands/remove-node-at-path.d.ts +0 -8
  861. package/objects/cli/commands/remove-node-at-path.js +0 -36
  862. package/objects/cli/commands/rev-parse.d.ts +0 -8
  863. package/objects/cli/commands/rev-parse.js +0 -38
  864. package/objects/cli/commands/set-and-commit.d.ts +0 -8
  865. package/objects/cli/commands/set-and-commit.js +0 -36
  866. package/objects/cli/commands/set-props-and-commit.d.ts +0 -8
  867. package/objects/cli/commands/set-props-and-commit.js +0 -36
  868. package/objects/cli/commands/update-node-at-path.d.ts +0 -8
  869. package/objects/cli/commands/update-node-at-path.js +0 -36
  870. package/objects/orm/query/index.d.ts +0 -69
  871. package/objects/orm/query/index.js +0 -113
  872. package/public/cli/commands/agent-module.js +0 -692
  873. package/public/cli/commands/api-setting.js +0 -514
  874. package/public/cli/commands/app-admin-grant.d.ts +0 -8
  875. package/public/cli/commands/app-admin-grant.js +0 -286
  876. package/public/cli/commands/app-claimed-invite.d.ts +0 -8
  877. package/public/cli/commands/app-claimed-invite.js +0 -288
  878. package/public/cli/commands/app-grant.d.ts +0 -8
  879. package/public/cli/commands/app-grant.js +0 -308
  880. package/public/cli/commands/app-invite.d.ts +0 -8
  881. package/public/cli/commands/app-invite.js +0 -442
  882. package/public/cli/commands/app-limit-cap.d.ts +0 -8
  883. package/public/cli/commands/app-limit-cap.js +0 -272
  884. package/public/cli/commands/app-limit-caps-default.d.ts +0 -8
  885. package/public/cli/commands/app-limit-caps-default.js +0 -252
  886. package/public/cli/commands/app-limit-credit-code-item.d.ts +0 -8
  887. package/public/cli/commands/app-limit-credit-code-item.js +0 -292
  888. package/public/cli/commands/app-limit-credit-code.d.ts +0 -8
  889. package/public/cli/commands/app-limit-credit-code.js +0 -296
  890. package/public/cli/commands/app-limit-credit-redemption.d.ts +0 -8
  891. package/public/cli/commands/app-limit-credit-redemption.js +0 -250
  892. package/public/cli/commands/app-limit-credit.d.ts +0 -8
  893. package/public/cli/commands/app-limit-credit.js +0 -316
  894. package/public/cli/commands/app-limit-default.d.ts +0 -8
  895. package/public/cli/commands/app-limit-default.js +0 -274
  896. package/public/cli/commands/app-limit-event.d.ts +0 -8
  897. package/public/cli/commands/app-limit-event.js +0 -458
  898. package/public/cli/commands/app-limit-warning.d.ts +0 -8
  899. package/public/cli/commands/app-limit-warning.js +0 -290
  900. package/public/cli/commands/app-limit.d.ts +0 -8
  901. package/public/cli/commands/app-limit.js +0 -472
  902. package/public/cli/commands/app-membership-default.d.ts +0 -8
  903. package/public/cli/commands/app-membership-default.js +0 -310
  904. package/public/cli/commands/app-membership.d.ts +0 -8
  905. package/public/cli/commands/app-membership.js +0 -506
  906. package/public/cli/commands/app-owner-grant.d.ts +0 -8
  907. package/public/cli/commands/app-owner-grant.js +0 -286
  908. package/public/cli/commands/app-permission-default.d.ts +0 -8
  909. package/public/cli/commands/app-permission-default.js +0 -232
  910. package/public/cli/commands/app-permission.d.ts +0 -8
  911. package/public/cli/commands/app-permission.js +0 -298
  912. package/public/cli/commands/app-permissions-get-by-mask.d.ts +0 -8
  913. package/public/cli/commands/app-permissions-get-by-mask.js +0 -49
  914. package/public/cli/commands/app-permissions-get-mask-by-names.d.ts +0 -8
  915. package/public/cli/commands/app-permissions-get-mask-by-names.js +0 -30
  916. package/public/cli/commands/app-permissions-get-mask.d.ts +0 -8
  917. package/public/cli/commands/app-permissions-get-mask.js +0 -30
  918. package/public/cli/commands/app-permissions-get-padded-mask.d.ts +0 -8
  919. package/public/cli/commands/app-permissions-get-padded-mask.js +0 -30
  920. package/public/cli/commands/audit-log-auth.d.ts +0 -8
  921. package/public/cli/commands/audit-log-auth.js +0 -344
  922. package/public/cli/commands/billing-module.js +0 -582
  923. package/public/cli/commands/billing-provider-module.js +0 -626
  924. package/public/cli/commands/check-password.d.ts +0 -8
  925. package/public/cli/commands/check-password.js +0 -36
  926. package/public/cli/commands/compute-log-module.js +0 -516
  927. package/public/cli/commands/config-secrets-org-module.js +0 -296
  928. package/public/cli/commands/config-secrets-user-module.js +0 -318
  929. package/public/cli/commands/confirm-delete-account.d.ts +0 -8
  930. package/public/cli/commands/confirm-delete-account.js +0 -36
  931. package/public/cli/commands/connected-accounts-module.js +0 -338
  932. package/public/cli/commands/create-api-key.d.ts +0 -8
  933. package/public/cli/commands/create-api-key.js +0 -36
  934. package/public/cli/commands/crypto-address.d.ts +0 -8
  935. package/public/cli/commands/crypto-address.js +0 -330
  936. package/public/cli/commands/crypto-addresses-module.js +0 -360
  937. package/public/cli/commands/current-ip-address.d.ts +0 -8
  938. package/public/cli/commands/current-ip-address.js +0 -21
  939. package/public/cli/commands/current-user-agent.d.ts +0 -8
  940. package/public/cli/commands/current-user-agent.js +0 -21
  941. package/public/cli/commands/current-user-id.d.ts +0 -8
  942. package/public/cli/commands/current-user-id.js +0 -21
  943. package/public/cli/commands/current-user.d.ts +0 -8
  944. package/public/cli/commands/current-user.js +0 -27
  945. package/public/cli/commands/database-provision-module.js +0 -458
  946. package/public/cli/commands/database-setting.js +0 -494
  947. package/public/cli/commands/db-usage-module.js +0 -560
  948. package/public/cli/commands/disconnect-account.d.ts +0 -8
  949. package/public/cli/commands/disconnect-account.js +0 -36
  950. package/public/cli/commands/email.d.ts +0 -8
  951. package/public/cli/commands/email.js +0 -330
  952. package/public/cli/commands/emails-module.js +0 -338
  953. package/public/cli/commands/events-module.js +0 -1042
  954. package/public/cli/commands/extend-token-expires.d.ts +0 -8
  955. package/public/cli/commands/extend-token-expires.js +0 -36
  956. package/public/cli/commands/forgot-password.d.ts +0 -8
  957. package/public/cli/commands/forgot-password.js +0 -36
  958. package/public/cli/commands/full-text-search.js +0 -344
  959. package/public/cli/commands/function-module.js +0 -780
  960. package/public/cli/commands/graph-module.js +0 -586
  961. package/public/cli/commands/hierarchy-module.js +0 -606
  962. package/public/cli/commands/identity-provider.d.ts +0 -8
  963. package/public/cli/commands/identity-provider.js +0 -164
  964. package/public/cli/commands/identity-providers-module.js +0 -318
  965. package/public/cli/commands/inference-log-module.js +0 -516
  966. package/public/cli/commands/invites-module.js +0 -492
  967. package/public/cli/commands/limits-module.js +0 -888
  968. package/public/cli/commands/membership-type.d.ts +0 -8
  969. package/public/cli/commands/membership-type.js +0 -314
  970. package/public/cli/commands/memberships-module.js +0 -954
  971. package/public/cli/commands/merkle-store-module.js +0 -500
  972. package/public/cli/commands/namespace-module.js +0 -560
  973. package/public/cli/commands/notifications-module.js +0 -560
  974. package/public/cli/commands/org-admin-grant.d.ts +0 -8
  975. package/public/cli/commands/org-admin-grant.js +0 -306
  976. package/public/cli/commands/org-chart-edge-grant.d.ts +0 -8
  977. package/public/cli/commands/org-chart-edge-grant.js +0 -366
  978. package/public/cli/commands/org-chart-edge.d.ts +0 -8
  979. package/public/cli/commands/org-chart-edge.js +0 -328
  980. package/public/cli/commands/org-claimed-invite.d.ts +0 -8
  981. package/public/cli/commands/org-claimed-invite.js +0 -308
  982. package/public/cli/commands/org-get-managers-record.d.ts +0 -8
  983. package/public/cli/commands/org-get-managers-record.js +0 -126
  984. package/public/cli/commands/org-get-subordinates-record.d.ts +0 -8
  985. package/public/cli/commands/org-get-subordinates-record.js +0 -126
  986. package/public/cli/commands/org-grant.d.ts +0 -8
  987. package/public/cli/commands/org-grant.js +0 -328
  988. package/public/cli/commands/org-invite.d.ts +0 -8
  989. package/public/cli/commands/org-invite.js +0 -506
  990. package/public/cli/commands/org-is-manager-of.d.ts +0 -8
  991. package/public/cli/commands/org-is-manager-of.js +0 -45
  992. package/public/cli/commands/org-limit-aggregate.d.ts +0 -8
  993. package/public/cli/commands/org-limit-aggregate.js +0 -494
  994. package/public/cli/commands/org-limit-cap.d.ts +0 -8
  995. package/public/cli/commands/org-limit-cap.js +0 -272
  996. package/public/cli/commands/org-limit-caps-default.d.ts +0 -8
  997. package/public/cli/commands/org-limit-caps-default.js +0 -252
  998. package/public/cli/commands/org-limit-credit.d.ts +0 -8
  999. package/public/cli/commands/org-limit-credit.js +0 -338
  1000. package/public/cli/commands/org-limit-default.d.ts +0 -8
  1001. package/public/cli/commands/org-limit-default.js +0 -274
  1002. package/public/cli/commands/org-limit-event.d.ts +0 -8
  1003. package/public/cli/commands/org-limit-event.js +0 -458
  1004. package/public/cli/commands/org-limit-warning.d.ts +0 -8
  1005. package/public/cli/commands/org-limit-warning.js +0 -312
  1006. package/public/cli/commands/org-limit.d.ts +0 -8
  1007. package/public/cli/commands/org-limit.js +0 -492
  1008. package/public/cli/commands/org-member-profile.d.ts +0 -8
  1009. package/public/cli/commands/org-member-profile.js +0 -392
  1010. package/public/cli/commands/org-member.d.ts +0 -8
  1011. package/public/cli/commands/org-member.js +0 -272
  1012. package/public/cli/commands/org-membership-default.d.ts +0 -8
  1013. package/public/cli/commands/org-membership-default.js +0 -308
  1014. package/public/cli/commands/org-membership-setting.d.ts +0 -8
  1015. package/public/cli/commands/org-membership-setting.js +0 -462
  1016. package/public/cli/commands/org-membership.d.ts +0 -8
  1017. package/public/cli/commands/org-membership.js +0 -548
  1018. package/public/cli/commands/org-owner-grant.d.ts +0 -8
  1019. package/public/cli/commands/org-owner-grant.js +0 -306
  1020. package/public/cli/commands/org-permission-default.d.ts +0 -8
  1021. package/public/cli/commands/org-permission-default.js +0 -252
  1022. package/public/cli/commands/org-permission.d.ts +0 -8
  1023. package/public/cli/commands/org-permission.js +0 -298
  1024. package/public/cli/commands/org-permissions-get-by-mask.d.ts +0 -8
  1025. package/public/cli/commands/org-permissions-get-by-mask.js +0 -49
  1026. package/public/cli/commands/org-permissions-get-mask-by-names.d.ts +0 -8
  1027. package/public/cli/commands/org-permissions-get-mask-by-names.js +0 -30
  1028. package/public/cli/commands/org-permissions-get-mask.d.ts +0 -8
  1029. package/public/cli/commands/org-permissions-get-mask.js +0 -30
  1030. package/public/cli/commands/org-permissions-get-padded-mask.d.ts +0 -8
  1031. package/public/cli/commands/org-permissions-get-padded-mask.js +0 -30
  1032. package/public/cli/commands/permissions-module.js +0 -558
  1033. package/public/cli/commands/phone-number.d.ts +0 -8
  1034. package/public/cli/commands/phone-number.js +0 -350
  1035. package/public/cli/commands/phone-numbers-module.js +0 -338
  1036. package/public/cli/commands/plans-module.js +0 -472
  1037. package/public/cli/commands/profiles-module.js +0 -624
  1038. package/public/cli/commands/provision-new-user.d.ts +0 -8
  1039. package/public/cli/commands/provision-new-user.js +0 -36
  1040. package/public/cli/commands/rate-limit-meters-module.js +0 -450
  1041. package/public/cli/commands/realtime-module.js +0 -450
  1042. package/public/cli/commands/request-cross-origin-token.d.ts +0 -8
  1043. package/public/cli/commands/request-cross-origin-token.js +0 -36
  1044. package/public/cli/commands/require-step-up.d.ts +0 -8
  1045. package/public/cli/commands/require-step-up.js +0 -30
  1046. package/public/cli/commands/reset-password.d.ts +0 -8
  1047. package/public/cli/commands/reset-password.js +0 -36
  1048. package/public/cli/commands/revoke-api-key.d.ts +0 -8
  1049. package/public/cli/commands/revoke-api-key.js +0 -36
  1050. package/public/cli/commands/revoke-session.d.ts +0 -8
  1051. package/public/cli/commands/revoke-session.js +0 -36
  1052. package/public/cli/commands/rls-module.js +0 -428
  1053. package/public/cli/commands/role-type.d.ts +0 -8
  1054. package/public/cli/commands/role-type.js +0 -230
  1055. package/public/cli/commands/send-account-deletion-email.d.ts +0 -8
  1056. package/public/cli/commands/send-account-deletion-email.js +0 -36
  1057. package/public/cli/commands/send-verification-email.d.ts +0 -8
  1058. package/public/cli/commands/send-verification-email.js +0 -36
  1059. package/public/cli/commands/set-password.d.ts +0 -8
  1060. package/public/cli/commands/set-password.js +0 -36
  1061. package/public/cli/commands/sign-in-cross-origin.d.ts +0 -8
  1062. package/public/cli/commands/sign-in-cross-origin.js +0 -36
  1063. package/public/cli/commands/sign-in.d.ts +0 -8
  1064. package/public/cli/commands/sign-in.js +0 -36
  1065. package/public/cli/commands/sign-out.d.ts +0 -8
  1066. package/public/cli/commands/sign-out.js +0 -36
  1067. package/public/cli/commands/sign-up.d.ts +0 -8
  1068. package/public/cli/commands/sign-up.js +0 -36
  1069. package/public/cli/commands/storage-log-module.js +0 -516
  1070. package/public/cli/commands/storage-module.js +0 -934
  1071. package/public/cli/commands/submit-app-invite-code.d.ts +0 -8
  1072. package/public/cli/commands/submit-app-invite-code.js +0 -36
  1073. package/public/cli/commands/submit-org-invite-code.d.ts +0 -8
  1074. package/public/cli/commands/submit-org-invite-code.js +0 -36
  1075. package/public/cli/commands/transfer-log-module.js +0 -516
  1076. package/public/cli/commands/user-auth-module.js +0 -758
  1077. package/public/cli/commands/user-connected-account.d.ts +0 -8
  1078. package/public/cli/commands/user-connected-account.js +0 -176
  1079. package/public/cli/commands/user.d.ts +0 -8
  1080. package/public/cli/commands/user.js +0 -354
  1081. package/public/cli/commands/users-module.js +0 -340
  1082. package/public/cli/commands/verify-email.d.ts +0 -8
  1083. package/public/cli/commands/verify-email.js +0 -36
  1084. package/public/cli/commands/verify-password.d.ts +0 -8
  1085. package/public/cli/commands/verify-password.js +0 -36
  1086. package/public/cli/commands/verify-totp.d.ts +0 -8
  1087. package/public/cli/commands/verify-totp.js +0 -36
  1088. package/public/cli/commands/webauthn-credential.d.ts +0 -8
  1089. package/public/cli/commands/webauthn-credential.js +0 -456
  1090. package/public/cli/commands/webauthn-credentials-module.js +0 -340
  1091. package/public/cli/commands.js +0 -464
  1092. package/public/cli/executor.d.ts +0 -447
  1093. package/public/orm/index.d.ts +0 -627
  1094. package/public/orm/index.js +0 -367
  1095. package/public/orm/input-types.d.ts +0 -38680
  1096. package/public/orm/input-types.js +0 -227
  1097. package/public/orm/models/appAdminGrant.d.ts +0 -54
  1098. package/public/orm/models/appAdminGrant.js +0 -104
  1099. package/public/orm/models/appClaimedInvite.d.ts +0 -54
  1100. package/public/orm/models/appClaimedInvite.js +0 -104
  1101. package/public/orm/models/appGrant.d.ts +0 -54
  1102. package/public/orm/models/appGrant.js +0 -104
  1103. package/public/orm/models/appInvite.d.ts +0 -54
  1104. package/public/orm/models/appInvite.js +0 -104
  1105. package/public/orm/models/appLimit.d.ts +0 -54
  1106. package/public/orm/models/appLimit.js +0 -104
  1107. package/public/orm/models/appLimitCap.d.ts +0 -54
  1108. package/public/orm/models/appLimitCap.js +0 -104
  1109. package/public/orm/models/appLimitCapsDefault.d.ts +0 -54
  1110. package/public/orm/models/appLimitCapsDefault.js +0 -104
  1111. package/public/orm/models/appLimitCredit.d.ts +0 -54
  1112. package/public/orm/models/appLimitCredit.js +0 -104
  1113. package/public/orm/models/appLimitCreditCode.d.ts +0 -54
  1114. package/public/orm/models/appLimitCreditCode.js +0 -104
  1115. package/public/orm/models/appLimitCreditCodeItem.d.ts +0 -54
  1116. package/public/orm/models/appLimitCreditCodeItem.js +0 -104
  1117. package/public/orm/models/appLimitCreditRedemption.d.ts +0 -54
  1118. package/public/orm/models/appLimitCreditRedemption.js +0 -104
  1119. package/public/orm/models/appLimitDefault.d.ts +0 -54
  1120. package/public/orm/models/appLimitDefault.js +0 -104
  1121. package/public/orm/models/appLimitEvent.d.ts +0 -54
  1122. package/public/orm/models/appLimitEvent.js +0 -104
  1123. package/public/orm/models/appLimitWarning.d.ts +0 -54
  1124. package/public/orm/models/appLimitWarning.js +0 -104
  1125. package/public/orm/models/appMembership.d.ts +0 -54
  1126. package/public/orm/models/appMembership.js +0 -104
  1127. package/public/orm/models/appMembershipDefault.d.ts +0 -54
  1128. package/public/orm/models/appMembershipDefault.js +0 -104
  1129. package/public/orm/models/appOwnerGrant.d.ts +0 -54
  1130. package/public/orm/models/appOwnerGrant.js +0 -104
  1131. package/public/orm/models/appPermission.d.ts +0 -54
  1132. package/public/orm/models/appPermission.js +0 -104
  1133. package/public/orm/models/appPermissionDefault.d.ts +0 -54
  1134. package/public/orm/models/appPermissionDefault.js +0 -104
  1135. package/public/orm/models/auditLogAuth.d.ts +0 -54
  1136. package/public/orm/models/auditLogAuth.js +0 -104
  1137. package/public/orm/models/cryptoAddress.d.ts +0 -54
  1138. package/public/orm/models/cryptoAddress.js +0 -104
  1139. package/public/orm/models/email.d.ts +0 -54
  1140. package/public/orm/models/email.js +0 -104
  1141. package/public/orm/models/identityProvider.d.ts +0 -30
  1142. package/public/orm/models/identityProvider.js +0 -59
  1143. package/public/orm/models/index.d.ts +0 -155
  1144. package/public/orm/models/index.js +0 -310
  1145. package/public/orm/models/membershipType.d.ts +0 -54
  1146. package/public/orm/models/membershipType.js +0 -104
  1147. package/public/orm/models/orgAdminGrant.d.ts +0 -54
  1148. package/public/orm/models/orgAdminGrant.js +0 -104
  1149. package/public/orm/models/orgChartEdge.d.ts +0 -54
  1150. package/public/orm/models/orgChartEdge.js +0 -104
  1151. package/public/orm/models/orgChartEdgeGrant.d.ts +0 -54
  1152. package/public/orm/models/orgChartEdgeGrant.js +0 -104
  1153. package/public/orm/models/orgClaimedInvite.d.ts +0 -54
  1154. package/public/orm/models/orgClaimedInvite.js +0 -104
  1155. package/public/orm/models/orgGetManagersRecord.d.ts +0 -30
  1156. package/public/orm/models/orgGetManagersRecord.js +0 -59
  1157. package/public/orm/models/orgGetSubordinatesRecord.d.ts +0 -30
  1158. package/public/orm/models/orgGetSubordinatesRecord.js +0 -59
  1159. package/public/orm/models/orgGrant.d.ts +0 -54
  1160. package/public/orm/models/orgGrant.js +0 -104
  1161. package/public/orm/models/orgInvite.d.ts +0 -54
  1162. package/public/orm/models/orgInvite.js +0 -104
  1163. package/public/orm/models/orgLimit.d.ts +0 -54
  1164. package/public/orm/models/orgLimit.js +0 -104
  1165. package/public/orm/models/orgLimitAggregate.d.ts +0 -54
  1166. package/public/orm/models/orgLimitAggregate.js +0 -104
  1167. package/public/orm/models/orgLimitCap.d.ts +0 -54
  1168. package/public/orm/models/orgLimitCap.js +0 -104
  1169. package/public/orm/models/orgLimitCapsDefault.d.ts +0 -54
  1170. package/public/orm/models/orgLimitCapsDefault.js +0 -104
  1171. package/public/orm/models/orgLimitCredit.d.ts +0 -54
  1172. package/public/orm/models/orgLimitCredit.js +0 -104
  1173. package/public/orm/models/orgLimitDefault.d.ts +0 -54
  1174. package/public/orm/models/orgLimitDefault.js +0 -104
  1175. package/public/orm/models/orgLimitEvent.d.ts +0 -54
  1176. package/public/orm/models/orgLimitEvent.js +0 -104
  1177. package/public/orm/models/orgLimitWarning.d.ts +0 -54
  1178. package/public/orm/models/orgLimitWarning.js +0 -104
  1179. package/public/orm/models/orgMember.d.ts +0 -54
  1180. package/public/orm/models/orgMember.js +0 -104
  1181. package/public/orm/models/orgMemberProfile.d.ts +0 -54
  1182. package/public/orm/models/orgMemberProfile.js +0 -104
  1183. package/public/orm/models/orgMembership.d.ts +0 -54
  1184. package/public/orm/models/orgMembership.js +0 -104
  1185. package/public/orm/models/orgMembershipDefault.d.ts +0 -54
  1186. package/public/orm/models/orgMembershipDefault.js +0 -104
  1187. package/public/orm/models/orgMembershipSetting.d.ts +0 -54
  1188. package/public/orm/models/orgMembershipSetting.js +0 -104
  1189. package/public/orm/models/orgOwnerGrant.d.ts +0 -54
  1190. package/public/orm/models/orgOwnerGrant.js +0 -104
  1191. package/public/orm/models/orgPermission.d.ts +0 -54
  1192. package/public/orm/models/orgPermission.js +0 -104
  1193. package/public/orm/models/orgPermissionDefault.d.ts +0 -54
  1194. package/public/orm/models/orgPermissionDefault.js +0 -104
  1195. package/public/orm/models/phoneNumber.d.ts +0 -54
  1196. package/public/orm/models/phoneNumber.js +0 -104
  1197. package/public/orm/models/roleType.d.ts +0 -54
  1198. package/public/orm/models/roleType.js +0 -104
  1199. package/public/orm/models/user.d.ts +0 -54
  1200. package/public/orm/models/user.js +0 -104
  1201. package/public/orm/models/userConnectedAccount.d.ts +0 -36
  1202. package/public/orm/models/userConnectedAccount.js +0 -80
  1203. package/public/orm/models/webauthnCredential.d.ts +0 -54
  1204. package/public/orm/models/webauthnCredential.js +0 -104
  1205. package/public/orm/mutation/index.d.ts +0 -401
  1206. package/public/orm/mutation/index.js +0 -501
  1207. package/public/orm/query/index.d.ts +0 -171
  1208. package/public/orm/query/index.js +0 -257
  1209. /package/{esm/public → agent}/cli/commands/auth.d.ts +0 -0
  1210. /package/{public → agent}/cli/commands/auth.js +0 -0
  1211. /package/{esm/public → agent}/cli/commands/context.d.ts +0 -0
  1212. /package/{public → agent}/cli/commands/context.js +0 -0
  1213. /package/{esm/public → agent}/cli/commands/provision-bucket.d.ts +0 -0
  1214. /package/{public → agent}/cli/commands/provision-bucket.js +0 -0
  1215. /package/{esm/public → agent}/cli/commands.d.ts +0 -0
  1216. /package/{public → agent}/cli/executor.js +0 -0
  1217. /package/{esm/public → agent}/cli/index.d.ts +0 -0
  1218. /package/{public → agent}/cli/index.js +0 -0
  1219. /package/{esm/public → agent}/cli/utils.d.ts +0 -0
  1220. /package/{public → agent}/cli/utils.js +0 -0
  1221. /package/{esm/public → agent}/index.d.ts +0 -0
  1222. /package/{public → agent}/index.js +0 -0
  1223. /package/{esm/public → agent}/orm/client.d.ts +0 -0
  1224. /package/{public → agent}/orm/client.js +0 -0
  1225. /package/{esm/public → agent}/orm/query-builder.d.ts +0 -0
  1226. /package/{public → agent}/orm/query-builder.js +0 -0
  1227. /package/{esm/public → agent}/orm/realtime.d.ts +0 -0
  1228. /package/{public → agent}/orm/realtime.js +0 -0
  1229. /package/{esm/public → agent}/orm/select-types.d.ts +0 -0
  1230. /package/{public → agent}/orm/select-types.js +0 -0
  1231. /package/{esm/public → agent}/orm/types.d.ts +0 -0
  1232. /package/{public → agent}/orm/types.js +0 -0
  1233. /package/{esm/public → api}/cli/commands/accept-database-transfer.d.ts +0 -0
  1234. /package/{public → api}/cli/commands/accept-database-transfer.js +0 -0
  1235. /package/{esm/public → api}/cli/commands/api-module.d.ts +0 -0
  1236. /package/{public → api}/cli/commands/api-module.js +0 -0
  1237. /package/{esm/public → api}/cli/commands/api-schema.d.ts +0 -0
  1238. /package/{public → api}/cli/commands/api-schema.js +0 -0
  1239. /package/{esm/public → api}/cli/commands/api-setting.d.ts +0 -0
  1240. /package/{esm/public → api}/cli/commands/api.d.ts +0 -0
  1241. /package/{public → api}/cli/commands/api.js +0 -0
  1242. /package/{esm/public → api}/cli/commands/app.d.ts +0 -0
  1243. /package/{public → api}/cli/commands/app.js +0 -0
  1244. /package/{esm/public → api}/cli/commands/apply-registry-defaults.d.ts +0 -0
  1245. /package/{public → api}/cli/commands/apply-registry-defaults.js +0 -0
  1246. /package/{esm/public → api}/cli/commands/apply-rls.d.ts +0 -0
  1247. /package/{public → api}/cli/commands/apply-rls.js +0 -0
  1248. /package/{esm/public → api}/cli/commands/ast-migration.d.ts +0 -0
  1249. /package/{public → api}/cli/commands/ast-migration.js +0 -0
  1250. /package/{public → api}/cli/commands/auth.d.ts +0 -0
  1251. /package/{esm/public → api}/cli/commands/bootstrap-user.d.ts +0 -0
  1252. /package/{public → api}/cli/commands/bootstrap-user.js +0 -0
  1253. /package/{esm/public → api}/cli/commands/cancel-database-transfer.d.ts +0 -0
  1254. /package/{public → api}/cli/commands/cancel-database-transfer.js +0 -0
  1255. /package/{esm/public → api}/cli/commands/check-constraint.d.ts +0 -0
  1256. /package/{public → api}/cli/commands/check-constraint.js +0 -0
  1257. /package/{public → api}/cli/commands/context.d.ts +0 -0
  1258. /package/{esm/public → api}/cli/commands/cors-setting.d.ts +0 -0
  1259. /package/{public → api}/cli/commands/cors-setting.js +0 -0
  1260. /package/{esm/public → api}/cli/commands/create-user-database.d.ts +0 -0
  1261. /package/{public → api}/cli/commands/create-user-database.js +0 -0
  1262. /package/{esm/public → api}/cli/commands/database-setting.d.ts +0 -0
  1263. /package/{esm/public → api}/cli/commands/database-transfer.d.ts +0 -0
  1264. /package/{public → api}/cli/commands/database-transfer.js +0 -0
  1265. /package/{esm/public → api}/cli/commands/database.d.ts +0 -0
  1266. /package/{public → api}/cli/commands/database.js +0 -0
  1267. /package/{esm/public → api}/cli/commands/default-privilege.d.ts +0 -0
  1268. /package/{public → api}/cli/commands/default-privilege.js +0 -0
  1269. /package/{esm/public → api}/cli/commands/domain.d.ts +0 -0
  1270. /package/{public → api}/cli/commands/domain.js +0 -0
  1271. /package/{esm/public → api}/cli/commands/embedding-chunk.d.ts +0 -0
  1272. /package/{public → api}/cli/commands/embedding-chunk.js +0 -0
  1273. /package/{esm/public → api}/cli/commands/enum.d.ts +0 -0
  1274. /package/{public → api}/cli/commands/enum.js +0 -0
  1275. /package/{esm/public → api}/cli/commands/field.d.ts +0 -0
  1276. /package/{public → api}/cli/commands/field.js +0 -0
  1277. /package/{esm/public → api}/cli/commands/foreign-key-constraint.d.ts +0 -0
  1278. /package/{public → api}/cli/commands/foreign-key-constraint.js +0 -0
  1279. /package/{esm/public → api}/cli/commands/full-text-search.d.ts +0 -0
  1280. /package/{esm/public → api}/cli/commands/function.d.ts +0 -0
  1281. /package/{public → api}/cli/commands/function.js +0 -0
  1282. /package/{esm/public → api}/cli/commands/index.d.ts +0 -0
  1283. /package/{public → api}/cli/commands/index.js +0 -0
  1284. /package/{esm/public → api}/cli/commands/migrate-file.d.ts +0 -0
  1285. /package/{public → api}/cli/commands/migrate-file.js +0 -0
  1286. /package/{esm/public → api}/cli/commands/node-type-registry.d.ts +0 -0
  1287. /package/{public → api}/cli/commands/node-type-registry.js +0 -0
  1288. /package/{esm/public → api}/cli/commands/partition.d.ts +0 -0
  1289. /package/{public → api}/cli/commands/partition.js +0 -0
  1290. /package/{esm/public → api}/cli/commands/policy.d.ts +0 -0
  1291. /package/{public → api}/cli/commands/policy.js +0 -0
  1292. /package/{esm/public → api}/cli/commands/primary-key-constraint.d.ts +0 -0
  1293. /package/{public → api}/cli/commands/primary-key-constraint.js +0 -0
  1294. /package/{public → api}/cli/commands/provision-bucket.d.ts +0 -0
  1295. /package/{esm/public → api}/cli/commands/provision-database-with-user.d.ts +0 -0
  1296. /package/{public → api}/cli/commands/provision-database-with-user.js +0 -0
  1297. /package/{esm/public → api}/cli/commands/pubkey-setting.d.ts +0 -0
  1298. /package/{public → api}/cli/commands/pubkey-setting.js +0 -0
  1299. /package/{esm/public → api}/cli/commands/reject-database-transfer.d.ts +0 -0
  1300. /package/{public → api}/cli/commands/reject-database-transfer.js +0 -0
  1301. /package/{esm/public → api}/cli/commands/rls-setting.d.ts +0 -0
  1302. /package/{public → api}/cli/commands/rls-setting.js +0 -0
  1303. /package/{esm/public → api}/cli/commands/schema-grant.d.ts +0 -0
  1304. /package/{public → api}/cli/commands/schema-grant.js +0 -0
  1305. /package/{esm/public → api}/cli/commands/schema.d.ts +0 -0
  1306. /package/{public → api}/cli/commands/schema.js +0 -0
  1307. /package/{esm/public → api}/cli/commands/set-field-order.d.ts +0 -0
  1308. /package/{public → api}/cli/commands/set-field-order.js +0 -0
  1309. /package/{esm/public → api}/cli/commands/site-metadatum.d.ts +0 -0
  1310. /package/{public → api}/cli/commands/site-metadatum.js +0 -0
  1311. /package/{esm/public → api}/cli/commands/site-module.d.ts +0 -0
  1312. /package/{public → api}/cli/commands/site-module.js +0 -0
  1313. /package/{esm/public → api}/cli/commands/site-theme.d.ts +0 -0
  1314. /package/{public → api}/cli/commands/site-theme.js +0 -0
  1315. /package/{esm/public → api}/cli/commands/site.d.ts +0 -0
  1316. /package/{public → api}/cli/commands/site.js +0 -0
  1317. /package/{esm/public → api}/cli/commands/spatial-relation.d.ts +0 -0
  1318. /package/{public → api}/cli/commands/spatial-relation.js +0 -0
  1319. /package/{esm/public → api}/cli/commands/sql-action.d.ts +0 -0
  1320. /package/{public → api}/cli/commands/sql-action.js +0 -0
  1321. /package/{esm/public → api}/cli/commands/table-grant.d.ts +0 -0
  1322. /package/{public → api}/cli/commands/table-grant.js +0 -0
  1323. /package/{esm/public → api}/cli/commands/table.d.ts +0 -0
  1324. /package/{public → api}/cli/commands/table.js +0 -0
  1325. /package/{esm/public → api}/cli/commands/trigger-function.d.ts +0 -0
  1326. /package/{public → api}/cli/commands/trigger-function.js +0 -0
  1327. /package/{esm/public → api}/cli/commands/trigger.d.ts +0 -0
  1328. /package/{public → api}/cli/commands/trigger.js +0 -0
  1329. /package/{esm/public → api}/cli/commands/unique-constraint.d.ts +0 -0
  1330. /package/{public → api}/cli/commands/unique-constraint.js +0 -0
  1331. /package/{esm/public → api}/cli/commands/view-grant.d.ts +0 -0
  1332. /package/{public → api}/cli/commands/view-grant.js +0 -0
  1333. /package/{esm/public → api}/cli/commands/view-rule.d.ts +0 -0
  1334. /package/{public → api}/cli/commands/view-rule.js +0 -0
  1335. /package/{esm/public → api}/cli/commands/view-table.d.ts +0 -0
  1336. /package/{public → api}/cli/commands/view-table.js +0 -0
  1337. /package/{esm/public → api}/cli/commands/view.d.ts +0 -0
  1338. /package/{public → api}/cli/commands/view.js +0 -0
  1339. /package/{esm/public → api}/cli/commands/webauthn-setting.d.ts +0 -0
  1340. /package/{public → api}/cli/commands/webauthn-setting.js +0 -0
  1341. /package/{public → api}/cli/commands.d.ts +0 -0
  1342. /package/{public → api}/cli/index.d.ts +0 -0
  1343. /package/{public → api}/cli/utils.d.ts +0 -0
  1344. /package/{public → api}/index.d.ts +0 -0
  1345. /package/{public → api}/orm/client.d.ts +0 -0
  1346. /package/{esm/public → api}/orm/models/api.d.ts +0 -0
  1347. /package/{public → api}/orm/models/api.js +0 -0
  1348. /package/{esm/public → api}/orm/models/apiModule.d.ts +0 -0
  1349. /package/{public → api}/orm/models/apiModule.js +0 -0
  1350. /package/{esm/public → api}/orm/models/apiSchema.d.ts +0 -0
  1351. /package/{public → api}/orm/models/apiSchema.js +0 -0
  1352. /package/{esm/public → api}/orm/models/apiSetting.d.ts +0 -0
  1353. /package/{public → api}/orm/models/apiSetting.js +0 -0
  1354. /package/{esm/public → api}/orm/models/app.d.ts +0 -0
  1355. /package/{public → api}/orm/models/app.js +0 -0
  1356. /package/{esm/public → api}/orm/models/astMigration.d.ts +0 -0
  1357. /package/{public → api}/orm/models/astMigration.js +0 -0
  1358. /package/{esm/public → api}/orm/models/checkConstraint.d.ts +0 -0
  1359. /package/{public → api}/orm/models/checkConstraint.js +0 -0
  1360. /package/{esm/public → api}/orm/models/corsSetting.d.ts +0 -0
  1361. /package/{public → api}/orm/models/corsSetting.js +0 -0
  1362. /package/{esm/public → api}/orm/models/database.d.ts +0 -0
  1363. /package/{public → api}/orm/models/database.js +0 -0
  1364. /package/{esm/public → api}/orm/models/databaseSetting.d.ts +0 -0
  1365. /package/{public → api}/orm/models/databaseSetting.js +0 -0
  1366. /package/{esm/public → api}/orm/models/databaseTransfer.d.ts +0 -0
  1367. /package/{public → api}/orm/models/databaseTransfer.js +0 -0
  1368. /package/{esm/public → api}/orm/models/defaultPrivilege.d.ts +0 -0
  1369. /package/{public → api}/orm/models/defaultPrivilege.js +0 -0
  1370. /package/{esm/public → api}/orm/models/domain.d.ts +0 -0
  1371. /package/{public → api}/orm/models/domain.js +0 -0
  1372. /package/{esm/public → api}/orm/models/embeddingChunk.d.ts +0 -0
  1373. /package/{public → api}/orm/models/embeddingChunk.js +0 -0
  1374. /package/{esm/public → api}/orm/models/enum.d.ts +0 -0
  1375. /package/{public → api}/orm/models/enum.js +0 -0
  1376. /package/{esm/public → api}/orm/models/field.d.ts +0 -0
  1377. /package/{public → api}/orm/models/field.js +0 -0
  1378. /package/{esm/public → api}/orm/models/foreignKeyConstraint.d.ts +0 -0
  1379. /package/{public → api}/orm/models/foreignKeyConstraint.js +0 -0
  1380. /package/{esm/public → api}/orm/models/fullTextSearch.d.ts +0 -0
  1381. /package/{public → api}/orm/models/fullTextSearch.js +0 -0
  1382. /package/{esm/public → api}/orm/models/function.d.ts +0 -0
  1383. /package/{public → api}/orm/models/function.js +0 -0
  1384. /package/{esm/public → api}/orm/models/indexModel.d.ts +0 -0
  1385. /package/{public → api}/orm/models/indexModel.js +0 -0
  1386. /package/{esm/public → api}/orm/models/migrateFile.d.ts +0 -0
  1387. /package/{public → api}/orm/models/migrateFile.js +0 -0
  1388. /package/{esm/public → api}/orm/models/nodeTypeRegistry.d.ts +0 -0
  1389. /package/{public → api}/orm/models/nodeTypeRegistry.js +0 -0
  1390. /package/{esm/public → api}/orm/models/partition.d.ts +0 -0
  1391. /package/{public → api}/orm/models/partition.js +0 -0
  1392. /package/{esm/public → api}/orm/models/policy.d.ts +0 -0
  1393. /package/{public → api}/orm/models/policy.js +0 -0
  1394. /package/{esm/public → api}/orm/models/primaryKeyConstraint.d.ts +0 -0
  1395. /package/{public → api}/orm/models/primaryKeyConstraint.js +0 -0
  1396. /package/{esm/public → api}/orm/models/pubkeySetting.d.ts +0 -0
  1397. /package/{public → api}/orm/models/pubkeySetting.js +0 -0
  1398. /package/{esm/public → api}/orm/models/rlsSetting.d.ts +0 -0
  1399. /package/{public → api}/orm/models/rlsSetting.js +0 -0
  1400. /package/{esm/public → api}/orm/models/schema.d.ts +0 -0
  1401. /package/{public → api}/orm/models/schema.js +0 -0
  1402. /package/{esm/public → api}/orm/models/schemaGrant.d.ts +0 -0
  1403. /package/{public → api}/orm/models/schemaGrant.js +0 -0
  1404. /package/{esm/public → api}/orm/models/site.d.ts +0 -0
  1405. /package/{public → api}/orm/models/site.js +0 -0
  1406. /package/{esm/public → api}/orm/models/siteMetadatum.d.ts +0 -0
  1407. /package/{public → api}/orm/models/siteMetadatum.js +0 -0
  1408. /package/{esm/public → api}/orm/models/siteModule.d.ts +0 -0
  1409. /package/{public → api}/orm/models/siteModule.js +0 -0
  1410. /package/{esm/public → api}/orm/models/siteTheme.d.ts +0 -0
  1411. /package/{public → api}/orm/models/siteTheme.js +0 -0
  1412. /package/{esm/public → api}/orm/models/spatialRelation.d.ts +0 -0
  1413. /package/{public → api}/orm/models/spatialRelation.js +0 -0
  1414. /package/{esm/public → api}/orm/models/sqlAction.d.ts +0 -0
  1415. /package/{public → api}/orm/models/sqlAction.js +0 -0
  1416. /package/{esm/public → api}/orm/models/table.d.ts +0 -0
  1417. /package/{public → api}/orm/models/table.js +0 -0
  1418. /package/{esm/public → api}/orm/models/tableGrant.d.ts +0 -0
  1419. /package/{public → api}/orm/models/tableGrant.js +0 -0
  1420. /package/{esm/public → api}/orm/models/trigger.d.ts +0 -0
  1421. /package/{public → api}/orm/models/trigger.js +0 -0
  1422. /package/{esm/public → api}/orm/models/triggerFunction.d.ts +0 -0
  1423. /package/{public → api}/orm/models/triggerFunction.js +0 -0
  1424. /package/{esm/public → api}/orm/models/uniqueConstraint.d.ts +0 -0
  1425. /package/{public → api}/orm/models/uniqueConstraint.js +0 -0
  1426. /package/{esm/public → api}/orm/models/view.d.ts +0 -0
  1427. /package/{public → api}/orm/models/view.js +0 -0
  1428. /package/{esm/public → api}/orm/models/viewGrant.d.ts +0 -0
  1429. /package/{public → api}/orm/models/viewGrant.js +0 -0
  1430. /package/{esm/public → api}/orm/models/viewRule.d.ts +0 -0
  1431. /package/{public → api}/orm/models/viewRule.js +0 -0
  1432. /package/{esm/public → api}/orm/models/viewTable.d.ts +0 -0
  1433. /package/{public → api}/orm/models/viewTable.js +0 -0
  1434. /package/{esm/public → api}/orm/models/webauthnSetting.d.ts +0 -0
  1435. /package/{public → api}/orm/models/webauthnSetting.js +0 -0
  1436. /package/{public → api}/orm/query-builder.d.ts +0 -0
  1437. /package/{public → api}/orm/realtime.d.ts +0 -0
  1438. /package/{public → api}/orm/select-types.d.ts +0 -0
  1439. /package/{public → api}/orm/types.d.ts +0 -0
  1440. /package/esm/{public → agent}/cli/commands/auth.js +0 -0
  1441. /package/esm/{public → agent}/cli/commands/context.js +0 -0
  1442. /package/esm/{public → agent}/cli/commands/provision-bucket.js +0 -0
  1443. /package/esm/{public → agent}/cli/executor.js +0 -0
  1444. /package/esm/{public/orm/select-types.js → agent/cli/index.d.ts} +0 -0
  1445. /package/esm/{public → agent}/cli/index.js +0 -0
  1446. /package/esm/{public → agent}/cli/utils.js +0 -0
  1447. /package/esm/{public/index.js → agent/index.d.ts} +0 -0
  1448. /package/esm/{public → agent}/orm/client.js +0 -0
  1449. /package/esm/{public → agent}/orm/query-builder.js +0 -0
  1450. /package/esm/{public → agent}/orm/realtime.js +0 -0
  1451. /package/esm/{public → agent}/orm/types.js +0 -0
  1452. /package/{public → esm/api}/cli/commands/accept-database-transfer.d.ts +0 -0
  1453. /package/esm/{public → api}/cli/commands/accept-database-transfer.js +0 -0
  1454. /package/{public → esm/api}/cli/commands/api-module.d.ts +0 -0
  1455. /package/esm/{public → api}/cli/commands/api-module.js +0 -0
  1456. /package/{public → esm/api}/cli/commands/api-schema.d.ts +0 -0
  1457. /package/esm/{public → api}/cli/commands/api-schema.js +0 -0
  1458. /package/{public → esm/api}/cli/commands/api-setting.d.ts +0 -0
  1459. /package/{public → esm/api}/cli/commands/api.d.ts +0 -0
  1460. /package/esm/{public → api}/cli/commands/api.js +0 -0
  1461. /package/{public → esm/api}/cli/commands/app.d.ts +0 -0
  1462. /package/esm/{public → api}/cli/commands/app.js +0 -0
  1463. /package/{public → esm/api}/cli/commands/apply-registry-defaults.d.ts +0 -0
  1464. /package/esm/{public → api}/cli/commands/apply-registry-defaults.js +0 -0
  1465. /package/{public → esm/api}/cli/commands/apply-rls.d.ts +0 -0
  1466. /package/esm/{public → api}/cli/commands/apply-rls.js +0 -0
  1467. /package/{public → esm/api}/cli/commands/ast-migration.d.ts +0 -0
  1468. /package/esm/{public → api}/cli/commands/ast-migration.js +0 -0
  1469. /package/{public → esm/api}/cli/commands/bootstrap-user.d.ts +0 -0
  1470. /package/esm/{public → api}/cli/commands/bootstrap-user.js +0 -0
  1471. /package/{public → esm/api}/cli/commands/cancel-database-transfer.d.ts +0 -0
  1472. /package/esm/{public → api}/cli/commands/cancel-database-transfer.js +0 -0
  1473. /package/{public → esm/api}/cli/commands/check-constraint.d.ts +0 -0
  1474. /package/esm/{public → api}/cli/commands/check-constraint.js +0 -0
  1475. /package/{public → esm/api}/cli/commands/cors-setting.d.ts +0 -0
  1476. /package/esm/{public → api}/cli/commands/cors-setting.js +0 -0
  1477. /package/{public → esm/api}/cli/commands/create-user-database.d.ts +0 -0
  1478. /package/esm/{public → api}/cli/commands/create-user-database.js +0 -0
  1479. /package/{public → esm/api}/cli/commands/database-setting.d.ts +0 -0
  1480. /package/{public → esm/api}/cli/commands/database-transfer.d.ts +0 -0
  1481. /package/esm/{public → api}/cli/commands/database-transfer.js +0 -0
  1482. /package/{public → esm/api}/cli/commands/database.d.ts +0 -0
  1483. /package/esm/{public → api}/cli/commands/database.js +0 -0
  1484. /package/{public → esm/api}/cli/commands/default-privilege.d.ts +0 -0
  1485. /package/esm/{public → api}/cli/commands/default-privilege.js +0 -0
  1486. /package/{public → esm/api}/cli/commands/domain.d.ts +0 -0
  1487. /package/esm/{public → api}/cli/commands/domain.js +0 -0
  1488. /package/{public → esm/api}/cli/commands/embedding-chunk.d.ts +0 -0
  1489. /package/esm/{public → api}/cli/commands/embedding-chunk.js +0 -0
  1490. /package/{public → esm/api}/cli/commands/enum.d.ts +0 -0
  1491. /package/esm/{public → api}/cli/commands/enum.js +0 -0
  1492. /package/{public → esm/api}/cli/commands/field.d.ts +0 -0
  1493. /package/esm/{public → api}/cli/commands/field.js +0 -0
  1494. /package/{public → esm/api}/cli/commands/foreign-key-constraint.d.ts +0 -0
  1495. /package/esm/{public → api}/cli/commands/foreign-key-constraint.js +0 -0
  1496. /package/{public → esm/api}/cli/commands/full-text-search.d.ts +0 -0
  1497. /package/{public → esm/api}/cli/commands/function.d.ts +0 -0
  1498. /package/esm/{public → api}/cli/commands/function.js +0 -0
  1499. /package/{public → esm/api}/cli/commands/index.d.ts +0 -0
  1500. /package/esm/{public → api}/cli/commands/index.js +0 -0
  1501. /package/{public → esm/api}/cli/commands/migrate-file.d.ts +0 -0
  1502. /package/esm/{public → api}/cli/commands/migrate-file.js +0 -0
  1503. /package/{public → esm/api}/cli/commands/node-type-registry.d.ts +0 -0
  1504. /package/esm/{public → api}/cli/commands/node-type-registry.js +0 -0
  1505. /package/{public → esm/api}/cli/commands/partition.d.ts +0 -0
  1506. /package/esm/{public → api}/cli/commands/partition.js +0 -0
  1507. /package/{public → esm/api}/cli/commands/policy.d.ts +0 -0
  1508. /package/esm/{public → api}/cli/commands/policy.js +0 -0
  1509. /package/{public → esm/api}/cli/commands/primary-key-constraint.d.ts +0 -0
  1510. /package/esm/{public → api}/cli/commands/primary-key-constraint.js +0 -0
  1511. /package/{public → esm/api}/cli/commands/provision-database-with-user.d.ts +0 -0
  1512. /package/esm/{public → api}/cli/commands/provision-database-with-user.js +0 -0
  1513. /package/{public → esm/api}/cli/commands/pubkey-setting.d.ts +0 -0
  1514. /package/esm/{public → api}/cli/commands/pubkey-setting.js +0 -0
  1515. /package/{public → esm/api}/cli/commands/reject-database-transfer.d.ts +0 -0
  1516. /package/esm/{public → api}/cli/commands/reject-database-transfer.js +0 -0
  1517. /package/{public → esm/api}/cli/commands/rls-setting.d.ts +0 -0
  1518. /package/esm/{public → api}/cli/commands/rls-setting.js +0 -0
  1519. /package/{public → esm/api}/cli/commands/schema-grant.d.ts +0 -0
  1520. /package/esm/{public → api}/cli/commands/schema-grant.js +0 -0
  1521. /package/{public → esm/api}/cli/commands/schema.d.ts +0 -0
  1522. /package/esm/{public → api}/cli/commands/schema.js +0 -0
  1523. /package/{public → esm/api}/cli/commands/set-field-order.d.ts +0 -0
  1524. /package/esm/{public → api}/cli/commands/set-field-order.js +0 -0
  1525. /package/{public → esm/api}/cli/commands/site-metadatum.d.ts +0 -0
  1526. /package/esm/{public → api}/cli/commands/site-metadatum.js +0 -0
  1527. /package/{public → esm/api}/cli/commands/site-module.d.ts +0 -0
  1528. /package/esm/{public → api}/cli/commands/site-module.js +0 -0
  1529. /package/{public → esm/api}/cli/commands/site-theme.d.ts +0 -0
  1530. /package/esm/{public → api}/cli/commands/site-theme.js +0 -0
  1531. /package/{public → esm/api}/cli/commands/site.d.ts +0 -0
  1532. /package/esm/{public → api}/cli/commands/site.js +0 -0
  1533. /package/{public → esm/api}/cli/commands/spatial-relation.d.ts +0 -0
  1534. /package/esm/{public → api}/cli/commands/spatial-relation.js +0 -0
  1535. /package/{public → esm/api}/cli/commands/sql-action.d.ts +0 -0
  1536. /package/esm/{public → api}/cli/commands/sql-action.js +0 -0
  1537. /package/{public → esm/api}/cli/commands/table-grant.d.ts +0 -0
  1538. /package/esm/{public → api}/cli/commands/table-grant.js +0 -0
  1539. /package/{public → esm/api}/cli/commands/table.d.ts +0 -0
  1540. /package/esm/{public → api}/cli/commands/table.js +0 -0
  1541. /package/{public → esm/api}/cli/commands/trigger-function.d.ts +0 -0
  1542. /package/esm/{public → api}/cli/commands/trigger-function.js +0 -0
  1543. /package/{public → esm/api}/cli/commands/trigger.d.ts +0 -0
  1544. /package/esm/{public → api}/cli/commands/trigger.js +0 -0
  1545. /package/{public → esm/api}/cli/commands/unique-constraint.d.ts +0 -0
  1546. /package/esm/{public → api}/cli/commands/unique-constraint.js +0 -0
  1547. /package/{public → esm/api}/cli/commands/view-grant.d.ts +0 -0
  1548. /package/esm/{public → api}/cli/commands/view-grant.js +0 -0
  1549. /package/{public → esm/api}/cli/commands/view-rule.d.ts +0 -0
  1550. /package/esm/{public → api}/cli/commands/view-rule.js +0 -0
  1551. /package/{public → esm/api}/cli/commands/view-table.d.ts +0 -0
  1552. /package/esm/{public → api}/cli/commands/view-table.js +0 -0
  1553. /package/{public → esm/api}/cli/commands/view.d.ts +0 -0
  1554. /package/esm/{public → api}/cli/commands/view.js +0 -0
  1555. /package/{public → esm/api}/cli/commands/webauthn-setting.d.ts +0 -0
  1556. /package/esm/{public → api}/cli/commands/webauthn-setting.js +0 -0
  1557. /package/{public → esm/api}/orm/models/api.d.ts +0 -0
  1558. /package/esm/{public → api}/orm/models/api.js +0 -0
  1559. /package/{public → esm/api}/orm/models/apiModule.d.ts +0 -0
  1560. /package/esm/{public → api}/orm/models/apiModule.js +0 -0
  1561. /package/{public → esm/api}/orm/models/apiSchema.d.ts +0 -0
  1562. /package/esm/{public → api}/orm/models/apiSchema.js +0 -0
  1563. /package/{public → esm/api}/orm/models/apiSetting.d.ts +0 -0
  1564. /package/esm/{public → api}/orm/models/apiSetting.js +0 -0
  1565. /package/{public → esm/api}/orm/models/app.d.ts +0 -0
  1566. /package/esm/{public → api}/orm/models/app.js +0 -0
  1567. /package/{public → esm/api}/orm/models/astMigration.d.ts +0 -0
  1568. /package/esm/{public → api}/orm/models/astMigration.js +0 -0
  1569. /package/{public → esm/api}/orm/models/checkConstraint.d.ts +0 -0
  1570. /package/esm/{public → api}/orm/models/checkConstraint.js +0 -0
  1571. /package/{public → esm/api}/orm/models/corsSetting.d.ts +0 -0
  1572. /package/esm/{public → api}/orm/models/corsSetting.js +0 -0
  1573. /package/{public → esm/api}/orm/models/database.d.ts +0 -0
  1574. /package/esm/{public → api}/orm/models/database.js +0 -0
  1575. /package/{public → esm/api}/orm/models/databaseSetting.d.ts +0 -0
  1576. /package/esm/{public → api}/orm/models/databaseSetting.js +0 -0
  1577. /package/{public → esm/api}/orm/models/databaseTransfer.d.ts +0 -0
  1578. /package/esm/{public → api}/orm/models/databaseTransfer.js +0 -0
  1579. /package/{public → esm/api}/orm/models/defaultPrivilege.d.ts +0 -0
  1580. /package/esm/{public → api}/orm/models/defaultPrivilege.js +0 -0
  1581. /package/{public → esm/api}/orm/models/domain.d.ts +0 -0
  1582. /package/esm/{public → api}/orm/models/domain.js +0 -0
  1583. /package/{public → esm/api}/orm/models/embeddingChunk.d.ts +0 -0
  1584. /package/esm/{public → api}/orm/models/embeddingChunk.js +0 -0
  1585. /package/{public → esm/api}/orm/models/enum.d.ts +0 -0
  1586. /package/esm/{public → api}/orm/models/enum.js +0 -0
  1587. /package/{public → esm/api}/orm/models/field.d.ts +0 -0
  1588. /package/esm/{public → api}/orm/models/field.js +0 -0
  1589. /package/{public → esm/api}/orm/models/foreignKeyConstraint.d.ts +0 -0
  1590. /package/esm/{public → api}/orm/models/foreignKeyConstraint.js +0 -0
  1591. /package/{public → esm/api}/orm/models/fullTextSearch.d.ts +0 -0
  1592. /package/esm/{public → api}/orm/models/fullTextSearch.js +0 -0
  1593. /package/{public → esm/api}/orm/models/function.d.ts +0 -0
  1594. /package/esm/{public → api}/orm/models/function.js +0 -0
  1595. /package/{public → esm/api}/orm/models/indexModel.d.ts +0 -0
  1596. /package/esm/{public → api}/orm/models/indexModel.js +0 -0
  1597. /package/{public → esm/api}/orm/models/migrateFile.d.ts +0 -0
  1598. /package/esm/{public → api}/orm/models/migrateFile.js +0 -0
  1599. /package/{public → esm/api}/orm/models/nodeTypeRegistry.d.ts +0 -0
  1600. /package/esm/{public → api}/orm/models/nodeTypeRegistry.js +0 -0
  1601. /package/{public → esm/api}/orm/models/partition.d.ts +0 -0
  1602. /package/esm/{public → api}/orm/models/partition.js +0 -0
  1603. /package/{public → esm/api}/orm/models/policy.d.ts +0 -0
  1604. /package/esm/{public → api}/orm/models/policy.js +0 -0
  1605. /package/{public → esm/api}/orm/models/primaryKeyConstraint.d.ts +0 -0
  1606. /package/esm/{public → api}/orm/models/primaryKeyConstraint.js +0 -0
  1607. /package/{public → esm/api}/orm/models/pubkeySetting.d.ts +0 -0
  1608. /package/esm/{public → api}/orm/models/pubkeySetting.js +0 -0
  1609. /package/{public → esm/api}/orm/models/rlsSetting.d.ts +0 -0
  1610. /package/esm/{public → api}/orm/models/rlsSetting.js +0 -0
  1611. /package/{public → esm/api}/orm/models/schema.d.ts +0 -0
  1612. /package/esm/{public → api}/orm/models/schema.js +0 -0
  1613. /package/{public → esm/api}/orm/models/schemaGrant.d.ts +0 -0
  1614. /package/esm/{public → api}/orm/models/schemaGrant.js +0 -0
  1615. /package/{public → esm/api}/orm/models/site.d.ts +0 -0
  1616. /package/esm/{public → api}/orm/models/site.js +0 -0
  1617. /package/{public → esm/api}/orm/models/siteMetadatum.d.ts +0 -0
  1618. /package/esm/{public → api}/orm/models/siteMetadatum.js +0 -0
  1619. /package/{public → esm/api}/orm/models/siteModule.d.ts +0 -0
  1620. /package/esm/{public → api}/orm/models/siteModule.js +0 -0
  1621. /package/{public → esm/api}/orm/models/siteTheme.d.ts +0 -0
  1622. /package/esm/{public → api}/orm/models/siteTheme.js +0 -0
  1623. /package/{public → esm/api}/orm/models/spatialRelation.d.ts +0 -0
  1624. /package/esm/{public → api}/orm/models/spatialRelation.js +0 -0
  1625. /package/{public → esm/api}/orm/models/sqlAction.d.ts +0 -0
  1626. /package/esm/{public → api}/orm/models/sqlAction.js +0 -0
  1627. /package/{public → esm/api}/orm/models/table.d.ts +0 -0
  1628. /package/esm/{public → api}/orm/models/table.js +0 -0
  1629. /package/{public → esm/api}/orm/models/tableGrant.d.ts +0 -0
  1630. /package/esm/{public → api}/orm/models/tableGrant.js +0 -0
  1631. /package/{public → esm/api}/orm/models/trigger.d.ts +0 -0
  1632. /package/esm/{public → api}/orm/models/trigger.js +0 -0
  1633. /package/{public → esm/api}/orm/models/triggerFunction.d.ts +0 -0
  1634. /package/esm/{public → api}/orm/models/triggerFunction.js +0 -0
  1635. /package/{public → esm/api}/orm/models/uniqueConstraint.d.ts +0 -0
  1636. /package/esm/{public → api}/orm/models/uniqueConstraint.js +0 -0
  1637. /package/{public → esm/api}/orm/models/view.d.ts +0 -0
  1638. /package/esm/{public → api}/orm/models/view.js +0 -0
  1639. /package/{public → esm/api}/orm/models/viewGrant.d.ts +0 -0
  1640. /package/esm/{public → api}/orm/models/viewGrant.js +0 -0
  1641. /package/{public → esm/api}/orm/models/viewRule.d.ts +0 -0
  1642. /package/esm/{public → api}/orm/models/viewRule.js +0 -0
  1643. /package/{public → esm/api}/orm/models/viewTable.d.ts +0 -0
  1644. /package/esm/{public → api}/orm/models/viewTable.js +0 -0
  1645. /package/{public → esm/api}/orm/models/webauthnSetting.d.ts +0 -0
  1646. /package/esm/{public → api}/orm/models/webauthnSetting.js +0 -0
  1647. /package/esm/{public → modules}/cli/commands/agent-module.d.ts +0 -0
  1648. /package/esm/{public → modules}/cli/commands/billing-module.d.ts +0 -0
  1649. /package/esm/{public → modules}/cli/commands/billing-provider-module.d.ts +0 -0
  1650. /package/esm/{public → modules}/cli/commands/blueprint-construction.d.ts +0 -0
  1651. /package/esm/{public → modules}/cli/commands/blueprint-construction.js +0 -0
  1652. /package/esm/{public → modules}/cli/commands/blueprint-template.d.ts +0 -0
  1653. /package/esm/{public → modules}/cli/commands/blueprint-template.js +0 -0
  1654. /package/esm/{public → modules}/cli/commands/blueprint.d.ts +0 -0
  1655. /package/esm/{public → modules}/cli/commands/blueprint.js +0 -0
  1656. /package/esm/{public → modules}/cli/commands/compute-log-module.d.ts +0 -0
  1657. /package/esm/{public → modules}/cli/commands/config-secrets-org-module.d.ts +0 -0
  1658. /package/esm/{public → modules}/cli/commands/config-secrets-user-module.d.ts +0 -0
  1659. /package/esm/{public → modules}/cli/commands/connected-accounts-module.d.ts +0 -0
  1660. /package/esm/{public → modules}/cli/commands/construct-blueprint.d.ts +0 -0
  1661. /package/esm/{public → modules}/cli/commands/construct-blueprint.js +0 -0
  1662. /package/esm/{public → modules}/cli/commands/copy-template-to-blueprint.d.ts +0 -0
  1663. /package/esm/{public → modules}/cli/commands/copy-template-to-blueprint.js +0 -0
  1664. /package/esm/{public → modules}/cli/commands/crypto-addresses-module.d.ts +0 -0
  1665. /package/esm/{public → modules}/cli/commands/crypto-auth-module.d.ts +0 -0
  1666. /package/esm/{public → modules}/cli/commands/crypto-auth-module.js +0 -0
  1667. /package/esm/{public → modules}/cli/commands/database-provision-module.d.ts +0 -0
  1668. /package/esm/{public → modules}/cli/commands/db-usage-module.d.ts +0 -0
  1669. /package/esm/{public → modules}/cli/commands/default-ids-module.d.ts +0 -0
  1670. /package/esm/{public → modules}/cli/commands/default-ids-module.js +0 -0
  1671. /package/esm/{public → modules}/cli/commands/denormalized-table-field.d.ts +0 -0
  1672. /package/esm/{public → modules}/cli/commands/denormalized-table-field.js +0 -0
  1673. /package/esm/{public → modules}/cli/commands/devices-module.d.ts +0 -0
  1674. /package/esm/{public → modules}/cli/commands/devices-module.js +0 -0
  1675. /package/esm/{public → modules}/cli/commands/emails-module.d.ts +0 -0
  1676. /package/esm/{public → modules}/cli/commands/entity-type-provision.d.ts +0 -0
  1677. /package/esm/{public → modules}/cli/commands/entity-type-provision.js +0 -0
  1678. /package/esm/{public → modules}/cli/commands/events-module.d.ts +0 -0
  1679. /package/esm/{public → modules}/cli/commands/function-module.d.ts +0 -0
  1680. /package/esm/{public → modules}/cli/commands/graph-module.d.ts +0 -0
  1681. /package/esm/{public → modules}/cli/commands/hierarchy-module.d.ts +0 -0
  1682. /package/esm/{public → modules}/cli/commands/identity-providers-module.d.ts +0 -0
  1683. /package/esm/{public → modules}/cli/commands/inference-log-module.d.ts +0 -0
  1684. /package/esm/{public → modules}/cli/commands/invites-module.d.ts +0 -0
  1685. /package/esm/{public → modules}/cli/commands/limits-module.d.ts +0 -0
  1686. /package/esm/{public → modules}/cli/commands/membership-types-module.d.ts +0 -0
  1687. /package/esm/{public → modules}/cli/commands/membership-types-module.js +0 -0
  1688. /package/esm/{public → modules}/cli/commands/memberships-module.d.ts +0 -0
  1689. /package/esm/{public → modules}/cli/commands/merkle-store-module.d.ts +0 -0
  1690. /package/esm/{public → modules}/cli/commands/namespace-module.d.ts +0 -0
  1691. /package/esm/{public → modules}/cli/commands/notifications-module.d.ts +0 -0
  1692. /package/esm/{public → modules}/cli/commands/permissions-module.d.ts +0 -0
  1693. /package/esm/{public → modules}/cli/commands/phone-numbers-module.d.ts +0 -0
  1694. /package/esm/{public → modules}/cli/commands/plans-module.d.ts +0 -0
  1695. /package/esm/{public → modules}/cli/commands/profiles-module.d.ts +0 -0
  1696. /package/esm/{public → modules}/cli/commands/provision-check-constraint.d.ts +0 -0
  1697. /package/esm/{public → modules}/cli/commands/provision-check-constraint.js +0 -0
  1698. /package/esm/{public → modules}/cli/commands/provision-full-text-search.d.ts +0 -0
  1699. /package/esm/{public → modules}/cli/commands/provision-full-text-search.js +0 -0
  1700. /package/esm/{public → modules}/cli/commands/provision-index.d.ts +0 -0
  1701. /package/esm/{public → modules}/cli/commands/provision-index.js +0 -0
  1702. /package/esm/{public → modules}/cli/commands/provision-relation.d.ts +0 -0
  1703. /package/esm/{public → modules}/cli/commands/provision-relation.js +0 -0
  1704. /package/esm/{public → modules}/cli/commands/provision-spatial-relation.d.ts +0 -0
  1705. /package/esm/{public → modules}/cli/commands/provision-spatial-relation.js +0 -0
  1706. /package/esm/{public → modules}/cli/commands/provision-table.d.ts +0 -0
  1707. /package/esm/{public → modules}/cli/commands/provision-table.js +0 -0
  1708. /package/esm/{public → modules}/cli/commands/provision-unique-constraint.d.ts +0 -0
  1709. /package/esm/{public → modules}/cli/commands/provision-unique-constraint.js +0 -0
  1710. /package/esm/{public → modules}/cli/commands/rate-limit-meters-module.d.ts +0 -0
  1711. /package/esm/{public → modules}/cli/commands/rate-limits-module.d.ts +0 -0
  1712. /package/esm/{public → modules}/cli/commands/rate-limits-module.js +0 -0
  1713. /package/esm/{public → modules}/cli/commands/realtime-module.d.ts +0 -0
  1714. /package/esm/{public → modules}/cli/commands/relation-provision.d.ts +0 -0
  1715. /package/esm/{public → modules}/cli/commands/relation-provision.js +0 -0
  1716. /package/esm/{public → modules}/cli/commands/resolve-blueprint-field.d.ts +0 -0
  1717. /package/esm/{public → modules}/cli/commands/resolve-blueprint-field.js +0 -0
  1718. /package/esm/{public → modules}/cli/commands/resolve-blueprint-table.d.ts +0 -0
  1719. /package/esm/{public → modules}/cli/commands/resolve-blueprint-table.js +0 -0
  1720. /package/esm/{public → modules}/cli/commands/rls-module.d.ts +0 -0
  1721. /package/esm/{public → modules}/cli/commands/secure-table-provision.d.ts +0 -0
  1722. /package/esm/{public → modules}/cli/commands/secure-table-provision.js +0 -0
  1723. /package/esm/{public → modules}/cli/commands/session-secrets-module.d.ts +0 -0
  1724. /package/esm/{public → modules}/cli/commands/session-secrets-module.js +0 -0
  1725. /package/esm/{public → modules}/cli/commands/sessions-module.d.ts +0 -0
  1726. /package/esm/{public → modules}/cli/commands/sessions-module.js +0 -0
  1727. /package/esm/{public → modules}/cli/commands/storage-log-module.d.ts +0 -0
  1728. /package/esm/{public → modules}/cli/commands/storage-module.d.ts +0 -0
  1729. /package/esm/{public → modules}/cli/commands/transfer-log-module.d.ts +0 -0
  1730. /package/esm/{public → modules}/cli/commands/user-auth-module.d.ts +0 -0
  1731. /package/esm/{public → modules}/cli/commands/user-state-module.d.ts +0 -0
  1732. /package/esm/{public → modules}/cli/commands/user-state-module.js +0 -0
  1733. /package/esm/{public → modules}/cli/commands/users-module.d.ts +0 -0
  1734. /package/esm/{public → modules}/cli/commands/webauthn-auth-module.d.ts +0 -0
  1735. /package/esm/{public → modules}/cli/commands/webauthn-auth-module.js +0 -0
  1736. /package/esm/{public → modules}/cli/commands/webauthn-credentials-module.d.ts +0 -0
  1737. /package/esm/{public → modules}/orm/models/agentModule.d.ts +0 -0
  1738. /package/esm/{public → modules}/orm/models/agentModule.js +0 -0
  1739. /package/esm/{public → modules}/orm/models/billingModule.d.ts +0 -0
  1740. /package/esm/{public → modules}/orm/models/billingModule.js +0 -0
  1741. /package/esm/{public → modules}/orm/models/billingProviderModule.d.ts +0 -0
  1742. /package/esm/{public → modules}/orm/models/billingProviderModule.js +0 -0
  1743. /package/esm/{public → modules}/orm/models/blueprint.d.ts +0 -0
  1744. /package/esm/{public → modules}/orm/models/blueprint.js +0 -0
  1745. /package/esm/{public → modules}/orm/models/blueprintConstruction.d.ts +0 -0
  1746. /package/esm/{public → modules}/orm/models/blueprintConstruction.js +0 -0
  1747. /package/esm/{public → modules}/orm/models/blueprintTemplate.d.ts +0 -0
  1748. /package/esm/{public → modules}/orm/models/blueprintTemplate.js +0 -0
  1749. /package/esm/{public → modules}/orm/models/computeLogModule.d.ts +0 -0
  1750. /package/esm/{public → modules}/orm/models/computeLogModule.js +0 -0
  1751. /package/esm/{public → modules}/orm/models/configSecretsOrgModule.d.ts +0 -0
  1752. /package/esm/{public → modules}/orm/models/configSecretsOrgModule.js +0 -0
  1753. /package/esm/{public → modules}/orm/models/configSecretsUserModule.d.ts +0 -0
  1754. /package/esm/{public → modules}/orm/models/configSecretsUserModule.js +0 -0
  1755. /package/esm/{public → modules}/orm/models/connectedAccountsModule.d.ts +0 -0
  1756. /package/esm/{public → modules}/orm/models/connectedAccountsModule.js +0 -0
  1757. /package/esm/{public → modules}/orm/models/cryptoAddressesModule.d.ts +0 -0
  1758. /package/esm/{public → modules}/orm/models/cryptoAddressesModule.js +0 -0
  1759. /package/esm/{public → modules}/orm/models/cryptoAuthModule.d.ts +0 -0
  1760. /package/esm/{public → modules}/orm/models/cryptoAuthModule.js +0 -0
  1761. /package/esm/{public → modules}/orm/models/databaseProvisionModule.d.ts +0 -0
  1762. /package/esm/{public → modules}/orm/models/databaseProvisionModule.js +0 -0
  1763. /package/esm/{public → modules}/orm/models/dbUsageModule.d.ts +0 -0
  1764. /package/esm/{public → modules}/orm/models/dbUsageModule.js +0 -0
  1765. /package/esm/{public → modules}/orm/models/defaultIdsModule.d.ts +0 -0
  1766. /package/esm/{public → modules}/orm/models/defaultIdsModule.js +0 -0
  1767. /package/esm/{public → modules}/orm/models/denormalizedTableField.d.ts +0 -0
  1768. /package/esm/{public → modules}/orm/models/denormalizedTableField.js +0 -0
  1769. /package/esm/{public → modules}/orm/models/devicesModule.d.ts +0 -0
  1770. /package/esm/{public → modules}/orm/models/devicesModule.js +0 -0
  1771. /package/esm/{public → modules}/orm/models/emailsModule.d.ts +0 -0
  1772. /package/esm/{public → modules}/orm/models/emailsModule.js +0 -0
  1773. /package/esm/{public → modules}/orm/models/entityTypeProvision.d.ts +0 -0
  1774. /package/esm/{public → modules}/orm/models/entityTypeProvision.js +0 -0
  1775. /package/esm/{public → modules}/orm/models/eventsModule.d.ts +0 -0
  1776. /package/esm/{public → modules}/orm/models/eventsModule.js +0 -0
  1777. /package/esm/{public → modules}/orm/models/functionModule.d.ts +0 -0
  1778. /package/esm/{public → modules}/orm/models/functionModule.js +0 -0
  1779. /package/esm/{public → modules}/orm/models/graphModule.d.ts +0 -0
  1780. /package/esm/{public → modules}/orm/models/graphModule.js +0 -0
  1781. /package/esm/{public → modules}/orm/models/hierarchyModule.d.ts +0 -0
  1782. /package/esm/{public → modules}/orm/models/hierarchyModule.js +0 -0
  1783. /package/esm/{public → modules}/orm/models/identityProvidersModule.d.ts +0 -0
  1784. /package/esm/{public → modules}/orm/models/identityProvidersModule.js +0 -0
  1785. /package/esm/{public → modules}/orm/models/inferenceLogModule.d.ts +0 -0
  1786. /package/esm/{public → modules}/orm/models/inferenceLogModule.js +0 -0
  1787. /package/esm/{public → modules}/orm/models/invitesModule.d.ts +0 -0
  1788. /package/esm/{public → modules}/orm/models/invitesModule.js +0 -0
  1789. /package/esm/{public → modules}/orm/models/limitsModule.d.ts +0 -0
  1790. /package/esm/{public → modules}/orm/models/limitsModule.js +0 -0
  1791. /package/esm/{public → modules}/orm/models/membershipTypesModule.d.ts +0 -0
  1792. /package/esm/{public → modules}/orm/models/membershipTypesModule.js +0 -0
  1793. /package/esm/{public → modules}/orm/models/membershipsModule.d.ts +0 -0
  1794. /package/esm/{public → modules}/orm/models/membershipsModule.js +0 -0
  1795. /package/esm/{public → modules}/orm/models/merkleStoreModule.d.ts +0 -0
  1796. /package/esm/{public → modules}/orm/models/merkleStoreModule.js +0 -0
  1797. /package/esm/{public → modules}/orm/models/namespaceModule.d.ts +0 -0
  1798. /package/esm/{public → modules}/orm/models/namespaceModule.js +0 -0
  1799. /package/esm/{public → modules}/orm/models/notificationsModule.d.ts +0 -0
  1800. /package/esm/{public → modules}/orm/models/notificationsModule.js +0 -0
  1801. /package/esm/{public → modules}/orm/models/permissionsModule.d.ts +0 -0
  1802. /package/esm/{public → modules}/orm/models/permissionsModule.js +0 -0
  1803. /package/esm/{public → modules}/orm/models/phoneNumbersModule.d.ts +0 -0
  1804. /package/esm/{public → modules}/orm/models/phoneNumbersModule.js +0 -0
  1805. /package/esm/{public → modules}/orm/models/plansModule.d.ts +0 -0
  1806. /package/esm/{public → modules}/orm/models/plansModule.js +0 -0
  1807. /package/esm/{public → modules}/orm/models/profilesModule.d.ts +0 -0
  1808. /package/esm/{public → modules}/orm/models/profilesModule.js +0 -0
  1809. /package/esm/{public → modules}/orm/models/rateLimitMetersModule.d.ts +0 -0
  1810. /package/esm/{public → modules}/orm/models/rateLimitMetersModule.js +0 -0
  1811. /package/esm/{public → modules}/orm/models/rateLimitsModule.d.ts +0 -0
  1812. /package/esm/{public → modules}/orm/models/rateLimitsModule.js +0 -0
  1813. /package/esm/{public → modules}/orm/models/realtimeModule.d.ts +0 -0
  1814. /package/esm/{public → modules}/orm/models/realtimeModule.js +0 -0
  1815. /package/esm/{public → modules}/orm/models/relationProvision.d.ts +0 -0
  1816. /package/esm/{public → modules}/orm/models/relationProvision.js +0 -0
  1817. /package/esm/{public → modules}/orm/models/rlsModule.d.ts +0 -0
  1818. /package/esm/{public → modules}/orm/models/rlsModule.js +0 -0
  1819. /package/esm/{public → modules}/orm/models/secureTableProvision.d.ts +0 -0
  1820. /package/esm/{public → modules}/orm/models/secureTableProvision.js +0 -0
  1821. /package/esm/{public → modules}/orm/models/sessionSecretsModule.d.ts +0 -0
  1822. /package/esm/{public → modules}/orm/models/sessionSecretsModule.js +0 -0
  1823. /package/esm/{public → modules}/orm/models/sessionsModule.d.ts +0 -0
  1824. /package/esm/{public → modules}/orm/models/sessionsModule.js +0 -0
  1825. /package/esm/{public → modules}/orm/models/storageLogModule.d.ts +0 -0
  1826. /package/esm/{public → modules}/orm/models/storageLogModule.js +0 -0
  1827. /package/esm/{public → modules}/orm/models/storageModule.d.ts +0 -0
  1828. /package/esm/{public → modules}/orm/models/storageModule.js +0 -0
  1829. /package/esm/{public → modules}/orm/models/transferLogModule.d.ts +0 -0
  1830. /package/esm/{public → modules}/orm/models/transferLogModule.js +0 -0
  1831. /package/esm/{public → modules}/orm/models/userAuthModule.d.ts +0 -0
  1832. /package/esm/{public → modules}/orm/models/userAuthModule.js +0 -0
  1833. /package/esm/{public → modules}/orm/models/userStateModule.d.ts +0 -0
  1834. /package/esm/{public → modules}/orm/models/userStateModule.js +0 -0
  1835. /package/esm/{public → modules}/orm/models/usersModule.d.ts +0 -0
  1836. /package/esm/{public → modules}/orm/models/usersModule.js +0 -0
  1837. /package/esm/{public → modules}/orm/models/webauthnAuthModule.d.ts +0 -0
  1838. /package/esm/{public → modules}/orm/models/webauthnAuthModule.js +0 -0
  1839. /package/esm/{public → modules}/orm/models/webauthnCredentialsModule.d.ts +0 -0
  1840. /package/esm/{public → modules}/orm/models/webauthnCredentialsModule.js +0 -0
  1841. /package/{admin → esm/usage}/cli/commands/app-limit-cap.d.ts +0 -0
  1842. /package/esm/{admin → usage}/cli/commands/app-limit-cap.js +0 -0
  1843. /package/{admin → esm/usage}/cli/commands/app-limit-caps-default.d.ts +0 -0
  1844. /package/esm/{admin → usage}/cli/commands/app-limit-caps-default.js +0 -0
  1845. /package/{admin → esm/usage}/cli/commands/app-limit-credit-code-item.d.ts +0 -0
  1846. /package/esm/{admin → usage}/cli/commands/app-limit-credit-code-item.js +0 -0
  1847. /package/{admin → esm/usage}/cli/commands/app-limit-credit-code.d.ts +0 -0
  1848. /package/esm/{admin → usage}/cli/commands/app-limit-credit-code.js +0 -0
  1849. /package/{admin → esm/usage}/cli/commands/app-limit-credit-redemption.d.ts +0 -0
  1850. /package/{admin → esm/usage}/cli/commands/app-limit-credit.d.ts +0 -0
  1851. /package/esm/{admin → usage}/cli/commands/app-limit-credit.js +0 -0
  1852. /package/{admin → esm/usage}/cli/commands/app-limit-default.d.ts +0 -0
  1853. /package/esm/{admin → usage}/cli/commands/app-limit-default.js +0 -0
  1854. /package/{admin → esm/usage}/cli/commands/app-limit-event.d.ts +0 -0
  1855. /package/esm/{admin → usage}/cli/commands/app-limit-event.js +0 -0
  1856. /package/{admin → esm/usage}/cli/commands/app-limit-warning.d.ts +0 -0
  1857. /package/esm/{admin → usage}/cli/commands/app-limit-warning.js +0 -0
  1858. /package/{admin → esm/usage}/cli/commands/app-limit.d.ts +0 -0
  1859. /package/esm/{admin → usage}/cli/commands/app-limit.js +0 -0
  1860. /package/{admin → esm/usage}/cli/commands/org-limit-aggregate.d.ts +0 -0
  1861. /package/esm/{admin → usage}/cli/commands/org-limit-aggregate.js +0 -0
  1862. /package/{admin → esm/usage}/cli/commands/org-limit-cap.d.ts +0 -0
  1863. /package/esm/{admin → usage}/cli/commands/org-limit-cap.js +0 -0
  1864. /package/{admin → esm/usage}/cli/commands/org-limit-caps-default.d.ts +0 -0
  1865. /package/esm/{admin → usage}/cli/commands/org-limit-caps-default.js +0 -0
  1866. /package/{admin → esm/usage}/cli/commands/org-limit-credit.d.ts +0 -0
  1867. /package/{admin → esm/usage}/cli/commands/org-limit-default.d.ts +0 -0
  1868. /package/esm/{admin → usage}/cli/commands/org-limit-default.js +0 -0
  1869. /package/{admin → esm/usage}/cli/commands/org-limit-event.d.ts +0 -0
  1870. /package/esm/{admin → usage}/cli/commands/org-limit-event.js +0 -0
  1871. /package/{admin → esm/usage}/cli/commands/org-limit-warning.d.ts +0 -0
  1872. /package/esm/{admin → usage}/cli/commands/org-limit-warning.js +0 -0
  1873. /package/{admin → esm/usage}/cli/commands/org-limit.d.ts +0 -0
  1874. /package/esm/{admin → usage}/cli/commands/org-limit.js +0 -0
  1875. /package/{admin → esm/usage}/orm/models/appLimit.d.ts +0 -0
  1876. /package/esm/{admin → usage}/orm/models/appLimit.js +0 -0
  1877. /package/{admin → esm/usage}/orm/models/appLimitCap.d.ts +0 -0
  1878. /package/esm/{admin → usage}/orm/models/appLimitCap.js +0 -0
  1879. /package/{admin → esm/usage}/orm/models/appLimitCapsDefault.d.ts +0 -0
  1880. /package/esm/{admin → usage}/orm/models/appLimitCapsDefault.js +0 -0
  1881. /package/{admin → esm/usage}/orm/models/appLimitCredit.d.ts +0 -0
  1882. /package/esm/{admin → usage}/orm/models/appLimitCredit.js +0 -0
  1883. /package/{admin → esm/usage}/orm/models/appLimitCreditCode.d.ts +0 -0
  1884. /package/esm/{admin → usage}/orm/models/appLimitCreditCode.js +0 -0
  1885. /package/{admin → esm/usage}/orm/models/appLimitCreditCodeItem.d.ts +0 -0
  1886. /package/esm/{admin → usage}/orm/models/appLimitCreditCodeItem.js +0 -0
  1887. /package/{admin → esm/usage}/orm/models/appLimitCreditRedemption.d.ts +0 -0
  1888. /package/esm/{admin → usage}/orm/models/appLimitCreditRedemption.js +0 -0
  1889. /package/{admin → esm/usage}/orm/models/appLimitDefault.d.ts +0 -0
  1890. /package/esm/{admin → usage}/orm/models/appLimitDefault.js +0 -0
  1891. /package/{admin → esm/usage}/orm/models/appLimitEvent.d.ts +0 -0
  1892. /package/esm/{admin → usage}/orm/models/appLimitEvent.js +0 -0
  1893. /package/{admin → esm/usage}/orm/models/appLimitWarning.d.ts +0 -0
  1894. /package/esm/{admin → usage}/orm/models/appLimitWarning.js +0 -0
  1895. /package/{admin → esm/usage}/orm/models/orgLimit.d.ts +0 -0
  1896. /package/esm/{admin → usage}/orm/models/orgLimit.js +0 -0
  1897. /package/{admin → esm/usage}/orm/models/orgLimitAggregate.d.ts +0 -0
  1898. /package/esm/{admin → usage}/orm/models/orgLimitAggregate.js +0 -0
  1899. /package/{admin → esm/usage}/orm/models/orgLimitCap.d.ts +0 -0
  1900. /package/esm/{admin → usage}/orm/models/orgLimitCap.js +0 -0
  1901. /package/{admin → esm/usage}/orm/models/orgLimitCapsDefault.d.ts +0 -0
  1902. /package/esm/{admin → usage}/orm/models/orgLimitCapsDefault.js +0 -0
  1903. /package/{admin → esm/usage}/orm/models/orgLimitCredit.d.ts +0 -0
  1904. /package/esm/{admin → usage}/orm/models/orgLimitCredit.js +0 -0
  1905. /package/{admin → esm/usage}/orm/models/orgLimitDefault.d.ts +0 -0
  1906. /package/esm/{admin → usage}/orm/models/orgLimitDefault.js +0 -0
  1907. /package/{admin → esm/usage}/orm/models/orgLimitEvent.d.ts +0 -0
  1908. /package/esm/{admin → usage}/orm/models/orgLimitEvent.js +0 -0
  1909. /package/{admin → esm/usage}/orm/models/orgLimitWarning.d.ts +0 -0
  1910. /package/esm/{admin → usage}/orm/models/orgLimitWarning.js +0 -0
  1911. /package/{public → modules}/cli/commands/agent-module.d.ts +0 -0
  1912. /package/{public → modules}/cli/commands/billing-module.d.ts +0 -0
  1913. /package/{public → modules}/cli/commands/billing-provider-module.d.ts +0 -0
  1914. /package/{public → modules}/cli/commands/blueprint-construction.d.ts +0 -0
  1915. /package/{public → modules}/cli/commands/blueprint-construction.js +0 -0
  1916. /package/{public → modules}/cli/commands/blueprint-template.d.ts +0 -0
  1917. /package/{public → modules}/cli/commands/blueprint-template.js +0 -0
  1918. /package/{public → modules}/cli/commands/blueprint.d.ts +0 -0
  1919. /package/{public → modules}/cli/commands/blueprint.js +0 -0
  1920. /package/{public → modules}/cli/commands/compute-log-module.d.ts +0 -0
  1921. /package/{public → modules}/cli/commands/config-secrets-org-module.d.ts +0 -0
  1922. /package/{public → modules}/cli/commands/config-secrets-user-module.d.ts +0 -0
  1923. /package/{public → modules}/cli/commands/connected-accounts-module.d.ts +0 -0
  1924. /package/{public → modules}/cli/commands/construct-blueprint.d.ts +0 -0
  1925. /package/{public → modules}/cli/commands/construct-blueprint.js +0 -0
  1926. /package/{public → modules}/cli/commands/copy-template-to-blueprint.d.ts +0 -0
  1927. /package/{public → modules}/cli/commands/copy-template-to-blueprint.js +0 -0
  1928. /package/{public → modules}/cli/commands/crypto-addresses-module.d.ts +0 -0
  1929. /package/{public → modules}/cli/commands/crypto-auth-module.d.ts +0 -0
  1930. /package/{public → modules}/cli/commands/crypto-auth-module.js +0 -0
  1931. /package/{public → modules}/cli/commands/database-provision-module.d.ts +0 -0
  1932. /package/{public → modules}/cli/commands/db-usage-module.d.ts +0 -0
  1933. /package/{public → modules}/cli/commands/default-ids-module.d.ts +0 -0
  1934. /package/{public → modules}/cli/commands/default-ids-module.js +0 -0
  1935. /package/{public → modules}/cli/commands/denormalized-table-field.d.ts +0 -0
  1936. /package/{public → modules}/cli/commands/denormalized-table-field.js +0 -0
  1937. /package/{public → modules}/cli/commands/devices-module.d.ts +0 -0
  1938. /package/{public → modules}/cli/commands/devices-module.js +0 -0
  1939. /package/{public → modules}/cli/commands/emails-module.d.ts +0 -0
  1940. /package/{public → modules}/cli/commands/entity-type-provision.d.ts +0 -0
  1941. /package/{public → modules}/cli/commands/entity-type-provision.js +0 -0
  1942. /package/{public → modules}/cli/commands/events-module.d.ts +0 -0
  1943. /package/{public → modules}/cli/commands/function-module.d.ts +0 -0
  1944. /package/{public → modules}/cli/commands/graph-module.d.ts +0 -0
  1945. /package/{public → modules}/cli/commands/hierarchy-module.d.ts +0 -0
  1946. /package/{public → modules}/cli/commands/identity-providers-module.d.ts +0 -0
  1947. /package/{public → modules}/cli/commands/inference-log-module.d.ts +0 -0
  1948. /package/{public → modules}/cli/commands/invites-module.d.ts +0 -0
  1949. /package/{public → modules}/cli/commands/limits-module.d.ts +0 -0
  1950. /package/{public → modules}/cli/commands/membership-types-module.d.ts +0 -0
  1951. /package/{public → modules}/cli/commands/membership-types-module.js +0 -0
  1952. /package/{public → modules}/cli/commands/memberships-module.d.ts +0 -0
  1953. /package/{public → modules}/cli/commands/merkle-store-module.d.ts +0 -0
  1954. /package/{public → modules}/cli/commands/namespace-module.d.ts +0 -0
  1955. /package/{public → modules}/cli/commands/notifications-module.d.ts +0 -0
  1956. /package/{public → modules}/cli/commands/permissions-module.d.ts +0 -0
  1957. /package/{public → modules}/cli/commands/phone-numbers-module.d.ts +0 -0
  1958. /package/{public → modules}/cli/commands/plans-module.d.ts +0 -0
  1959. /package/{public → modules}/cli/commands/profiles-module.d.ts +0 -0
  1960. /package/{public → modules}/cli/commands/provision-check-constraint.d.ts +0 -0
  1961. /package/{public → modules}/cli/commands/provision-check-constraint.js +0 -0
  1962. /package/{public → modules}/cli/commands/provision-full-text-search.d.ts +0 -0
  1963. /package/{public → modules}/cli/commands/provision-full-text-search.js +0 -0
  1964. /package/{public → modules}/cli/commands/provision-index.d.ts +0 -0
  1965. /package/{public → modules}/cli/commands/provision-index.js +0 -0
  1966. /package/{public → modules}/cli/commands/provision-relation.d.ts +0 -0
  1967. /package/{public → modules}/cli/commands/provision-relation.js +0 -0
  1968. /package/{public → modules}/cli/commands/provision-spatial-relation.d.ts +0 -0
  1969. /package/{public → modules}/cli/commands/provision-spatial-relation.js +0 -0
  1970. /package/{public → modules}/cli/commands/provision-table.d.ts +0 -0
  1971. /package/{public → modules}/cli/commands/provision-table.js +0 -0
  1972. /package/{public → modules}/cli/commands/provision-unique-constraint.d.ts +0 -0
  1973. /package/{public → modules}/cli/commands/provision-unique-constraint.js +0 -0
  1974. /package/{public → modules}/cli/commands/rate-limit-meters-module.d.ts +0 -0
  1975. /package/{public → modules}/cli/commands/rate-limits-module.d.ts +0 -0
  1976. /package/{public → modules}/cli/commands/rate-limits-module.js +0 -0
  1977. /package/{public → modules}/cli/commands/realtime-module.d.ts +0 -0
  1978. /package/{public → modules}/cli/commands/relation-provision.d.ts +0 -0
  1979. /package/{public → modules}/cli/commands/relation-provision.js +0 -0
  1980. /package/{public → modules}/cli/commands/resolve-blueprint-field.d.ts +0 -0
  1981. /package/{public → modules}/cli/commands/resolve-blueprint-field.js +0 -0
  1982. /package/{public → modules}/cli/commands/resolve-blueprint-table.d.ts +0 -0
  1983. /package/{public → modules}/cli/commands/resolve-blueprint-table.js +0 -0
  1984. /package/{public → modules}/cli/commands/rls-module.d.ts +0 -0
  1985. /package/{public → modules}/cli/commands/secure-table-provision.d.ts +0 -0
  1986. /package/{public → modules}/cli/commands/secure-table-provision.js +0 -0
  1987. /package/{public → modules}/cli/commands/session-secrets-module.d.ts +0 -0
  1988. /package/{public → modules}/cli/commands/session-secrets-module.js +0 -0
  1989. /package/{public → modules}/cli/commands/sessions-module.d.ts +0 -0
  1990. /package/{public → modules}/cli/commands/sessions-module.js +0 -0
  1991. /package/{public → modules}/cli/commands/storage-log-module.d.ts +0 -0
  1992. /package/{public → modules}/cli/commands/storage-module.d.ts +0 -0
  1993. /package/{public → modules}/cli/commands/transfer-log-module.d.ts +0 -0
  1994. /package/{public → modules}/cli/commands/user-auth-module.d.ts +0 -0
  1995. /package/{public → modules}/cli/commands/user-state-module.d.ts +0 -0
  1996. /package/{public → modules}/cli/commands/user-state-module.js +0 -0
  1997. /package/{public → modules}/cli/commands/users-module.d.ts +0 -0
  1998. /package/{public → modules}/cli/commands/webauthn-auth-module.d.ts +0 -0
  1999. /package/{public → modules}/cli/commands/webauthn-auth-module.js +0 -0
  2000. /package/{public → modules}/cli/commands/webauthn-credentials-module.d.ts +0 -0
  2001. /package/{public → modules}/orm/models/agentModule.d.ts +0 -0
  2002. /package/{public → modules}/orm/models/agentModule.js +0 -0
  2003. /package/{public → modules}/orm/models/billingModule.d.ts +0 -0
  2004. /package/{public → modules}/orm/models/billingModule.js +0 -0
  2005. /package/{public → modules}/orm/models/billingProviderModule.d.ts +0 -0
  2006. /package/{public → modules}/orm/models/billingProviderModule.js +0 -0
  2007. /package/{public → modules}/orm/models/blueprint.d.ts +0 -0
  2008. /package/{public → modules}/orm/models/blueprint.js +0 -0
  2009. /package/{public → modules}/orm/models/blueprintConstruction.d.ts +0 -0
  2010. /package/{public → modules}/orm/models/blueprintConstruction.js +0 -0
  2011. /package/{public → modules}/orm/models/blueprintTemplate.d.ts +0 -0
  2012. /package/{public → modules}/orm/models/blueprintTemplate.js +0 -0
  2013. /package/{public → modules}/orm/models/computeLogModule.d.ts +0 -0
  2014. /package/{public → modules}/orm/models/computeLogModule.js +0 -0
  2015. /package/{public → modules}/orm/models/configSecretsOrgModule.d.ts +0 -0
  2016. /package/{public → modules}/orm/models/configSecretsOrgModule.js +0 -0
  2017. /package/{public → modules}/orm/models/configSecretsUserModule.d.ts +0 -0
  2018. /package/{public → modules}/orm/models/configSecretsUserModule.js +0 -0
  2019. /package/{public → modules}/orm/models/connectedAccountsModule.d.ts +0 -0
  2020. /package/{public → modules}/orm/models/connectedAccountsModule.js +0 -0
  2021. /package/{public → modules}/orm/models/cryptoAddressesModule.d.ts +0 -0
  2022. /package/{public → modules}/orm/models/cryptoAddressesModule.js +0 -0
  2023. /package/{public → modules}/orm/models/cryptoAuthModule.d.ts +0 -0
  2024. /package/{public → modules}/orm/models/cryptoAuthModule.js +0 -0
  2025. /package/{public → modules}/orm/models/databaseProvisionModule.d.ts +0 -0
  2026. /package/{public → modules}/orm/models/databaseProvisionModule.js +0 -0
  2027. /package/{public → modules}/orm/models/dbUsageModule.d.ts +0 -0
  2028. /package/{public → modules}/orm/models/dbUsageModule.js +0 -0
  2029. /package/{public → modules}/orm/models/defaultIdsModule.d.ts +0 -0
  2030. /package/{public → modules}/orm/models/defaultIdsModule.js +0 -0
  2031. /package/{public → modules}/orm/models/denormalizedTableField.d.ts +0 -0
  2032. /package/{public → modules}/orm/models/denormalizedTableField.js +0 -0
  2033. /package/{public → modules}/orm/models/devicesModule.d.ts +0 -0
  2034. /package/{public → modules}/orm/models/devicesModule.js +0 -0
  2035. /package/{public → modules}/orm/models/emailsModule.d.ts +0 -0
  2036. /package/{public → modules}/orm/models/emailsModule.js +0 -0
  2037. /package/{public → modules}/orm/models/entityTypeProvision.d.ts +0 -0
  2038. /package/{public → modules}/orm/models/entityTypeProvision.js +0 -0
  2039. /package/{public → modules}/orm/models/eventsModule.d.ts +0 -0
  2040. /package/{public → modules}/orm/models/eventsModule.js +0 -0
  2041. /package/{public → modules}/orm/models/functionModule.d.ts +0 -0
  2042. /package/{public → modules}/orm/models/functionModule.js +0 -0
  2043. /package/{public → modules}/orm/models/graphModule.d.ts +0 -0
  2044. /package/{public → modules}/orm/models/graphModule.js +0 -0
  2045. /package/{public → modules}/orm/models/hierarchyModule.d.ts +0 -0
  2046. /package/{public → modules}/orm/models/hierarchyModule.js +0 -0
  2047. /package/{public → modules}/orm/models/identityProvidersModule.d.ts +0 -0
  2048. /package/{public → modules}/orm/models/identityProvidersModule.js +0 -0
  2049. /package/{public → modules}/orm/models/inferenceLogModule.d.ts +0 -0
  2050. /package/{public → modules}/orm/models/inferenceLogModule.js +0 -0
  2051. /package/{public → modules}/orm/models/invitesModule.d.ts +0 -0
  2052. /package/{public → modules}/orm/models/invitesModule.js +0 -0
  2053. /package/{public → modules}/orm/models/limitsModule.d.ts +0 -0
  2054. /package/{public → modules}/orm/models/limitsModule.js +0 -0
  2055. /package/{public → modules}/orm/models/membershipTypesModule.d.ts +0 -0
  2056. /package/{public → modules}/orm/models/membershipTypesModule.js +0 -0
  2057. /package/{public → modules}/orm/models/membershipsModule.d.ts +0 -0
  2058. /package/{public → modules}/orm/models/membershipsModule.js +0 -0
  2059. /package/{public → modules}/orm/models/merkleStoreModule.d.ts +0 -0
  2060. /package/{public → modules}/orm/models/merkleStoreModule.js +0 -0
  2061. /package/{public → modules}/orm/models/namespaceModule.d.ts +0 -0
  2062. /package/{public → modules}/orm/models/namespaceModule.js +0 -0
  2063. /package/{public → modules}/orm/models/notificationsModule.d.ts +0 -0
  2064. /package/{public → modules}/orm/models/notificationsModule.js +0 -0
  2065. /package/{public → modules}/orm/models/permissionsModule.d.ts +0 -0
  2066. /package/{public → modules}/orm/models/permissionsModule.js +0 -0
  2067. /package/{public → modules}/orm/models/phoneNumbersModule.d.ts +0 -0
  2068. /package/{public → modules}/orm/models/phoneNumbersModule.js +0 -0
  2069. /package/{public → modules}/orm/models/plansModule.d.ts +0 -0
  2070. /package/{public → modules}/orm/models/plansModule.js +0 -0
  2071. /package/{public → modules}/orm/models/profilesModule.d.ts +0 -0
  2072. /package/{public → modules}/orm/models/profilesModule.js +0 -0
  2073. /package/{public → modules}/orm/models/rateLimitMetersModule.d.ts +0 -0
  2074. /package/{public → modules}/orm/models/rateLimitMetersModule.js +0 -0
  2075. /package/{public → modules}/orm/models/rateLimitsModule.d.ts +0 -0
  2076. /package/{public → modules}/orm/models/rateLimitsModule.js +0 -0
  2077. /package/{public → modules}/orm/models/realtimeModule.d.ts +0 -0
  2078. /package/{public → modules}/orm/models/realtimeModule.js +0 -0
  2079. /package/{public → modules}/orm/models/relationProvision.d.ts +0 -0
  2080. /package/{public → modules}/orm/models/relationProvision.js +0 -0
  2081. /package/{public → modules}/orm/models/rlsModule.d.ts +0 -0
  2082. /package/{public → modules}/orm/models/rlsModule.js +0 -0
  2083. /package/{public → modules}/orm/models/secureTableProvision.d.ts +0 -0
  2084. /package/{public → modules}/orm/models/secureTableProvision.js +0 -0
  2085. /package/{public → modules}/orm/models/sessionSecretsModule.d.ts +0 -0
  2086. /package/{public → modules}/orm/models/sessionSecretsModule.js +0 -0
  2087. /package/{public → modules}/orm/models/sessionsModule.d.ts +0 -0
  2088. /package/{public → modules}/orm/models/sessionsModule.js +0 -0
  2089. /package/{public → modules}/orm/models/storageLogModule.d.ts +0 -0
  2090. /package/{public → modules}/orm/models/storageLogModule.js +0 -0
  2091. /package/{public → modules}/orm/models/storageModule.d.ts +0 -0
  2092. /package/{public → modules}/orm/models/storageModule.js +0 -0
  2093. /package/{public → modules}/orm/models/transferLogModule.d.ts +0 -0
  2094. /package/{public → modules}/orm/models/transferLogModule.js +0 -0
  2095. /package/{public → modules}/orm/models/userAuthModule.d.ts +0 -0
  2096. /package/{public → modules}/orm/models/userAuthModule.js +0 -0
  2097. /package/{public → modules}/orm/models/userStateModule.d.ts +0 -0
  2098. /package/{public → modules}/orm/models/userStateModule.js +0 -0
  2099. /package/{public → modules}/orm/models/usersModule.d.ts +0 -0
  2100. /package/{public → modules}/orm/models/usersModule.js +0 -0
  2101. /package/{public → modules}/orm/models/webauthnAuthModule.d.ts +0 -0
  2102. /package/{public → modules}/orm/models/webauthnAuthModule.js +0 -0
  2103. /package/{public → modules}/orm/models/webauthnCredentialsModule.d.ts +0 -0
  2104. /package/{public → modules}/orm/models/webauthnCredentialsModule.js +0 -0
  2105. /package/{esm/admin → usage}/cli/commands/app-limit-cap.d.ts +0 -0
  2106. /package/{admin → usage}/cli/commands/app-limit-cap.js +0 -0
  2107. /package/{esm/admin → usage}/cli/commands/app-limit-caps-default.d.ts +0 -0
  2108. /package/{admin → usage}/cli/commands/app-limit-caps-default.js +0 -0
  2109. /package/{esm/admin → usage}/cli/commands/app-limit-credit-code-item.d.ts +0 -0
  2110. /package/{admin → usage}/cli/commands/app-limit-credit-code-item.js +0 -0
  2111. /package/{esm/admin → usage}/cli/commands/app-limit-credit-code.d.ts +0 -0
  2112. /package/{admin → usage}/cli/commands/app-limit-credit-code.js +0 -0
  2113. /package/{esm/admin → usage}/cli/commands/app-limit-credit-redemption.d.ts +0 -0
  2114. /package/{esm/admin → usage}/cli/commands/app-limit-credit.d.ts +0 -0
  2115. /package/{admin → usage}/cli/commands/app-limit-credit.js +0 -0
  2116. /package/{esm/admin → usage}/cli/commands/app-limit-default.d.ts +0 -0
  2117. /package/{admin → usage}/cli/commands/app-limit-default.js +0 -0
  2118. /package/{esm/admin → usage}/cli/commands/app-limit-event.d.ts +0 -0
  2119. /package/{admin → usage}/cli/commands/app-limit-event.js +0 -0
  2120. /package/{esm/admin → usage}/cli/commands/app-limit-warning.d.ts +0 -0
  2121. /package/{admin → usage}/cli/commands/app-limit-warning.js +0 -0
  2122. /package/{esm/admin → usage}/cli/commands/app-limit.d.ts +0 -0
  2123. /package/{admin → usage}/cli/commands/app-limit.js +0 -0
  2124. /package/{esm/admin → usage}/cli/commands/org-limit-aggregate.d.ts +0 -0
  2125. /package/{admin → usage}/cli/commands/org-limit-aggregate.js +0 -0
  2126. /package/{esm/admin → usage}/cli/commands/org-limit-cap.d.ts +0 -0
  2127. /package/{admin → usage}/cli/commands/org-limit-cap.js +0 -0
  2128. /package/{esm/admin → usage}/cli/commands/org-limit-caps-default.d.ts +0 -0
  2129. /package/{admin → usage}/cli/commands/org-limit-caps-default.js +0 -0
  2130. /package/{esm/admin → usage}/cli/commands/org-limit-credit.d.ts +0 -0
  2131. /package/{esm/admin → usage}/cli/commands/org-limit-default.d.ts +0 -0
  2132. /package/{admin → usage}/cli/commands/org-limit-default.js +0 -0
  2133. /package/{esm/admin → usage}/cli/commands/org-limit-event.d.ts +0 -0
  2134. /package/{admin → usage}/cli/commands/org-limit-event.js +0 -0
  2135. /package/{esm/admin → usage}/cli/commands/org-limit-warning.d.ts +0 -0
  2136. /package/{admin → usage}/cli/commands/org-limit-warning.js +0 -0
  2137. /package/{esm/admin → usage}/cli/commands/org-limit.d.ts +0 -0
  2138. /package/{admin → usage}/cli/commands/org-limit.js +0 -0
  2139. /package/{esm/admin → usage}/orm/models/appLimit.d.ts +0 -0
  2140. /package/{admin → usage}/orm/models/appLimit.js +0 -0
  2141. /package/{esm/admin → usage}/orm/models/appLimitCap.d.ts +0 -0
  2142. /package/{admin → usage}/orm/models/appLimitCap.js +0 -0
  2143. /package/{esm/admin → usage}/orm/models/appLimitCapsDefault.d.ts +0 -0
  2144. /package/{admin → usage}/orm/models/appLimitCapsDefault.js +0 -0
  2145. /package/{esm/admin → usage}/orm/models/appLimitCredit.d.ts +0 -0
  2146. /package/{admin → usage}/orm/models/appLimitCredit.js +0 -0
  2147. /package/{esm/admin → usage}/orm/models/appLimitCreditCode.d.ts +0 -0
  2148. /package/{admin → usage}/orm/models/appLimitCreditCode.js +0 -0
  2149. /package/{esm/admin → usage}/orm/models/appLimitCreditCodeItem.d.ts +0 -0
  2150. /package/{admin → usage}/orm/models/appLimitCreditCodeItem.js +0 -0
  2151. /package/{esm/admin → usage}/orm/models/appLimitCreditRedemption.d.ts +0 -0
  2152. /package/{admin → usage}/orm/models/appLimitCreditRedemption.js +0 -0
  2153. /package/{esm/admin → usage}/orm/models/appLimitDefault.d.ts +0 -0
  2154. /package/{admin → usage}/orm/models/appLimitDefault.js +0 -0
  2155. /package/{esm/admin → usage}/orm/models/appLimitEvent.d.ts +0 -0
  2156. /package/{admin → usage}/orm/models/appLimitEvent.js +0 -0
  2157. /package/{esm/admin → usage}/orm/models/appLimitWarning.d.ts +0 -0
  2158. /package/{admin → usage}/orm/models/appLimitWarning.js +0 -0
  2159. /package/{esm/admin → usage}/orm/models/orgLimit.d.ts +0 -0
  2160. /package/{admin → usage}/orm/models/orgLimit.js +0 -0
  2161. /package/{esm/admin → usage}/orm/models/orgLimitAggregate.d.ts +0 -0
  2162. /package/{admin → usage}/orm/models/orgLimitAggregate.js +0 -0
  2163. /package/{esm/admin → usage}/orm/models/orgLimitCap.d.ts +0 -0
  2164. /package/{admin → usage}/orm/models/orgLimitCap.js +0 -0
  2165. /package/{esm/admin → usage}/orm/models/orgLimitCapsDefault.d.ts +0 -0
  2166. /package/{admin → usage}/orm/models/orgLimitCapsDefault.js +0 -0
  2167. /package/{esm/admin → usage}/orm/models/orgLimitCredit.d.ts +0 -0
  2168. /package/{admin → usage}/orm/models/orgLimitCredit.js +0 -0
  2169. /package/{esm/admin → usage}/orm/models/orgLimitDefault.d.ts +0 -0
  2170. /package/{admin → usage}/orm/models/orgLimitDefault.js +0 -0
  2171. /package/{esm/admin → usage}/orm/models/orgLimitEvent.d.ts +0 -0
  2172. /package/{admin → usage}/orm/models/orgLimitEvent.js +0 -0
  2173. /package/{esm/admin → usage}/orm/models/orgLimitWarning.d.ts +0 -0
  2174. /package/{admin → usage}/orm/models/orgLimitWarning.js +0 -0
@@ -0,0 +1,3313 @@
1
+ /**
2
+ * GraphQL types for ORM client
3
+ * @generated by @constructive-io/graphql-codegen
4
+ * DO NOT EDIT - changes will be overwritten
5
+ */
6
+ export interface StringFilter {
7
+ isNull?: boolean;
8
+ equalTo?: string;
9
+ notEqualTo?: string;
10
+ distinctFrom?: string;
11
+ notDistinctFrom?: string;
12
+ in?: string[];
13
+ notIn?: string[];
14
+ lessThan?: string;
15
+ lessThanOrEqualTo?: string;
16
+ greaterThan?: string;
17
+ greaterThanOrEqualTo?: string;
18
+ includes?: string;
19
+ notIncludes?: string;
20
+ includesInsensitive?: string;
21
+ notIncludesInsensitive?: string;
22
+ startsWith?: string;
23
+ notStartsWith?: string;
24
+ startsWithInsensitive?: string;
25
+ notStartsWithInsensitive?: string;
26
+ endsWith?: string;
27
+ notEndsWith?: string;
28
+ endsWithInsensitive?: string;
29
+ notEndsWithInsensitive?: string;
30
+ like?: string;
31
+ notLike?: string;
32
+ likeInsensitive?: string;
33
+ notLikeInsensitive?: string;
34
+ }
35
+ export interface IntFilter {
36
+ isNull?: boolean;
37
+ equalTo?: number;
38
+ notEqualTo?: number;
39
+ distinctFrom?: number;
40
+ notDistinctFrom?: number;
41
+ in?: number[];
42
+ notIn?: number[];
43
+ lessThan?: number;
44
+ lessThanOrEqualTo?: number;
45
+ greaterThan?: number;
46
+ greaterThanOrEqualTo?: number;
47
+ }
48
+ export interface FloatFilter {
49
+ isNull?: boolean;
50
+ equalTo?: number;
51
+ notEqualTo?: number;
52
+ distinctFrom?: number;
53
+ notDistinctFrom?: number;
54
+ in?: number[];
55
+ notIn?: number[];
56
+ lessThan?: number;
57
+ lessThanOrEqualTo?: number;
58
+ greaterThan?: number;
59
+ greaterThanOrEqualTo?: number;
60
+ }
61
+ export interface BooleanFilter {
62
+ isNull?: boolean;
63
+ equalTo?: boolean;
64
+ notEqualTo?: boolean;
65
+ }
66
+ export interface UUIDFilter {
67
+ isNull?: boolean;
68
+ equalTo?: string;
69
+ notEqualTo?: string;
70
+ distinctFrom?: string;
71
+ notDistinctFrom?: string;
72
+ in?: string[];
73
+ notIn?: string[];
74
+ }
75
+ export interface DatetimeFilter {
76
+ isNull?: boolean;
77
+ equalTo?: string;
78
+ notEqualTo?: string;
79
+ distinctFrom?: string;
80
+ notDistinctFrom?: string;
81
+ in?: string[];
82
+ notIn?: string[];
83
+ lessThan?: string;
84
+ lessThanOrEqualTo?: string;
85
+ greaterThan?: string;
86
+ greaterThanOrEqualTo?: string;
87
+ }
88
+ export interface DateFilter {
89
+ isNull?: boolean;
90
+ equalTo?: string;
91
+ notEqualTo?: string;
92
+ distinctFrom?: string;
93
+ notDistinctFrom?: string;
94
+ in?: string[];
95
+ notIn?: string[];
96
+ lessThan?: string;
97
+ lessThanOrEqualTo?: string;
98
+ greaterThan?: string;
99
+ greaterThanOrEqualTo?: string;
100
+ }
101
+ export interface JSONFilter {
102
+ isNull?: boolean;
103
+ equalTo?: Record<string, unknown>;
104
+ notEqualTo?: Record<string, unknown>;
105
+ distinctFrom?: Record<string, unknown>;
106
+ notDistinctFrom?: Record<string, unknown>;
107
+ contains?: Record<string, unknown>;
108
+ containedBy?: Record<string, unknown>;
109
+ containsKey?: string;
110
+ containsAllKeys?: string[];
111
+ containsAnyKeys?: string[];
112
+ }
113
+ export interface BigIntFilter {
114
+ isNull?: boolean;
115
+ equalTo?: string;
116
+ notEqualTo?: string;
117
+ distinctFrom?: string;
118
+ notDistinctFrom?: string;
119
+ in?: string[];
120
+ notIn?: string[];
121
+ lessThan?: string;
122
+ lessThanOrEqualTo?: string;
123
+ greaterThan?: string;
124
+ greaterThanOrEqualTo?: string;
125
+ }
126
+ export interface BigFloatFilter {
127
+ isNull?: boolean;
128
+ equalTo?: string;
129
+ notEqualTo?: string;
130
+ distinctFrom?: string;
131
+ notDistinctFrom?: string;
132
+ in?: string[];
133
+ notIn?: string[];
134
+ lessThan?: string;
135
+ lessThanOrEqualTo?: string;
136
+ greaterThan?: string;
137
+ greaterThanOrEqualTo?: string;
138
+ }
139
+ export interface BitStringFilter {
140
+ isNull?: boolean;
141
+ equalTo?: string;
142
+ notEqualTo?: string;
143
+ }
144
+ export interface InternetAddressFilter {
145
+ isNull?: boolean;
146
+ equalTo?: string;
147
+ notEqualTo?: string;
148
+ distinctFrom?: string;
149
+ notDistinctFrom?: string;
150
+ in?: string[];
151
+ notIn?: string[];
152
+ lessThan?: string;
153
+ lessThanOrEqualTo?: string;
154
+ greaterThan?: string;
155
+ greaterThanOrEqualTo?: string;
156
+ contains?: string;
157
+ containsOrEqualTo?: string;
158
+ containedBy?: string;
159
+ containedByOrEqualTo?: string;
160
+ containsOrContainedBy?: string;
161
+ }
162
+ export interface FullTextFilter {
163
+ matches?: string;
164
+ }
165
+ export interface VectorFilter {
166
+ isNull?: boolean;
167
+ equalTo?: number[];
168
+ notEqualTo?: number[];
169
+ distinctFrom?: number[];
170
+ notDistinctFrom?: number[];
171
+ }
172
+ export interface StringListFilter {
173
+ isNull?: boolean;
174
+ equalTo?: string[];
175
+ notEqualTo?: string[];
176
+ distinctFrom?: string[];
177
+ notDistinctFrom?: string[];
178
+ lessThan?: string[];
179
+ lessThanOrEqualTo?: string[];
180
+ greaterThan?: string[];
181
+ greaterThanOrEqualTo?: string[];
182
+ contains?: string[];
183
+ containedBy?: string[];
184
+ overlaps?: string[];
185
+ anyEqualTo?: string;
186
+ anyNotEqualTo?: string;
187
+ anyLessThan?: string;
188
+ anyLessThanOrEqualTo?: string;
189
+ anyGreaterThan?: string;
190
+ anyGreaterThanOrEqualTo?: string;
191
+ }
192
+ export interface IntListFilter {
193
+ isNull?: boolean;
194
+ equalTo?: number[];
195
+ notEqualTo?: number[];
196
+ distinctFrom?: number[];
197
+ notDistinctFrom?: number[];
198
+ lessThan?: number[];
199
+ lessThanOrEqualTo?: number[];
200
+ greaterThan?: number[];
201
+ greaterThanOrEqualTo?: number[];
202
+ contains?: number[];
203
+ containedBy?: number[];
204
+ overlaps?: number[];
205
+ anyEqualTo?: number;
206
+ anyNotEqualTo?: number;
207
+ anyLessThan?: number;
208
+ anyLessThanOrEqualTo?: number;
209
+ anyGreaterThan?: number;
210
+ anyGreaterThanOrEqualTo?: number;
211
+ }
212
+ export interface UUIDListFilter {
213
+ isNull?: boolean;
214
+ equalTo?: string[];
215
+ notEqualTo?: string[];
216
+ distinctFrom?: string[];
217
+ notDistinctFrom?: string[];
218
+ lessThan?: string[];
219
+ lessThanOrEqualTo?: string[];
220
+ greaterThan?: string[];
221
+ greaterThanOrEqualTo?: string[];
222
+ contains?: string[];
223
+ containedBy?: string[];
224
+ overlaps?: string[];
225
+ anyEqualTo?: string;
226
+ anyNotEqualTo?: string;
227
+ anyLessThan?: string;
228
+ anyLessThanOrEqualTo?: string;
229
+ anyGreaterThan?: string;
230
+ anyGreaterThanOrEqualTo?: string;
231
+ }
232
+ /** Default cap values for static configuration limits (max file size, feature flags, etc.). Not metered — just read by consumers. */
233
+ export interface AppLimitCapsDefault {
234
+ id: string;
235
+ /** Name identifier of the cap (e.g. max_file_upload_size, advanced_analytics) */
236
+ name?: string | null;
237
+ /** Default cap value. For feature flags: 0=disabled, 1=enabled. For size caps: the limit in bytes/units. */
238
+ max?: string | null;
239
+ }
240
+ /** Default cap values for static configuration limits (max file size, feature flags, etc.). Not metered — just read by consumers. */
241
+ export interface OrgLimitCapsDefault {
242
+ id: string;
243
+ /** Name identifier of the cap (e.g. max_file_upload_size, advanced_analytics) */
244
+ name?: string | null;
245
+ /** Default cap value. For feature flags: 0=disabled, 1=enabled. For size caps: the limit in bytes/units. */
246
+ max?: string | null;
247
+ }
248
+ /** Per-entity cap overrides. Allows specific orgs/entities to have different cap values than the scope default. */
249
+ export interface AppLimitCap {
250
+ id: string;
251
+ /** Name identifier of the cap being overridden */
252
+ name?: string | null;
253
+ /** Entity this cap override applies to */
254
+ entityId?: string | null;
255
+ /** Override cap value for this entity */
256
+ max?: string | null;
257
+ }
258
+ /** Per-entity cap overrides. Allows specific orgs/entities to have different cap values than the scope default. */
259
+ export interface OrgLimitCap {
260
+ id: string;
261
+ /** Name identifier of the cap being overridden */
262
+ name?: string | null;
263
+ /** Entity this cap override applies to */
264
+ entityId?: string | null;
265
+ /** Override cap value for this entity */
266
+ max?: string | null;
267
+ }
268
+ /** Default maximum values for each named limit, applied when no per-actor override exists */
269
+ export interface AppLimitDefault {
270
+ id: string;
271
+ /** Name identifier of the limit this default applies to */
272
+ name?: string | null;
273
+ /** Default maximum usage allowed for this limit */
274
+ max?: string | null;
275
+ /** Default soft limit threshold for warnings; NULL means no soft limit */
276
+ softMax?: string | null;
277
+ }
278
+ /** Append-only ledger of credit grants that automatically update limit ceilings */
279
+ export interface AppLimitCredit {
280
+ id: string;
281
+ /** FK to default_limits — which limit definition this credit applies to */
282
+ defaultLimitId?: string | null;
283
+ /** User this credit is for; NULL for aggregate entity-level credits */
284
+ actorId?: string | null;
285
+ /** Number of credits to grant (positive to add, negative to revoke) */
286
+ amount?: string | null;
287
+ /** Credit durability: permanent (survives window reset) or period (resets on window expiry) */
288
+ creditType?: string | null;
289
+ /** Optional reason for the credit grant (promo code, admin grant, etc.) */
290
+ reason?: string | null;
291
+ }
292
+ /** Items within a credit code — each row grants credits for a specific limit definition */
293
+ export interface AppLimitCreditCodeItem {
294
+ id: string;
295
+ /** FK to credit_codes — which code this item belongs to */
296
+ creditCodeId?: string | null;
297
+ /** FK to default_limits — which limit this item grants credits for */
298
+ defaultLimitId?: string | null;
299
+ /** Number of credits this item grants per redemption */
300
+ amount?: string | null;
301
+ /** Credit durability: permanent (survives window reset) or period (resets on window expiry) */
302
+ creditType?: string | null;
303
+ }
304
+ /** Append-only ledger of code redemptions; AFTER INSERT trigger validates and cascades to limit_credits */
305
+ export interface AppLimitCreditRedemption {
306
+ id: string;
307
+ /** FK to credit_codes — which code is being redeemed */
308
+ creditCodeId?: string | null;
309
+ /** Entity receiving the credits (personal org user_id or org entity_id) */
310
+ entityId?: string | null;
311
+ /** Resolved billable organization via get_organization_id */
312
+ organizationId?: string | null;
313
+ /** Membership prefix identifying the entity kind (org, team, app) */
314
+ entityType?: string | null;
315
+ }
316
+ /** Default maximum values for each named limit, applied when no per-actor override exists */
317
+ export interface OrgLimitDefault {
318
+ id: string;
319
+ /** Name identifier of the limit this default applies to */
320
+ name?: string | null;
321
+ /** Default maximum usage allowed for this limit */
322
+ max?: string | null;
323
+ /** Default soft limit threshold for warnings; NULL means no soft limit */
324
+ softMax?: string | null;
325
+ }
326
+ /** Append-only ledger of credit grants that automatically update limit ceilings */
327
+ export interface OrgLimitCredit {
328
+ id: string;
329
+ /** FK to default_limits — which limit definition this credit applies to */
330
+ defaultLimitId?: string | null;
331
+ /** User this credit is for; NULL for aggregate entity-level credits */
332
+ actorId?: string | null;
333
+ /** Entity this credit applies to; NULL for actor-only credits */
334
+ entityId?: string | null;
335
+ /** Resolved billable organization via get_organization_id */
336
+ organizationId?: string | null;
337
+ /** Membership prefix identifying the entity kind (org, team, app) */
338
+ entityType?: string | null;
339
+ /** Number of credits to grant (positive to add, negative to revoke) */
340
+ amount?: string | null;
341
+ /** Credit durability: permanent (survives window reset) or period (resets on window expiry) */
342
+ creditType?: string | null;
343
+ /** Optional reason for the credit grant (promo code, admin grant, etc.) */
344
+ reason?: string | null;
345
+ }
346
+ /** Warning configuration for soft limits. Each row defines a warning threshold and the job task to enqueue when usage approaches it. */
347
+ export interface AppLimitWarning {
348
+ id: string;
349
+ /** Limit name this warning applies to (must match a default_limits entry) */
350
+ name?: string | null;
351
+ /** Threshold type: absolute (fixed count) or percentage (of max) */
352
+ warningType?: string | null;
353
+ /** Threshold value — either an absolute count or a percentage (1-100) depending on warning_type */
354
+ thresholdValue?: string | null;
355
+ /** Job task name to enqueue when warning fires (e.g. email:limit_warning, notification:approaching_limit) */
356
+ taskIdentifier?: string | null;
357
+ }
358
+ /** Warning configuration for soft limits. Each row defines a warning threshold and the job task to enqueue when usage approaches it. */
359
+ export interface OrgLimitWarning {
360
+ id: string;
361
+ /** Limit name this warning applies to (must match a default_limits entry) */
362
+ name?: string | null;
363
+ /** Threshold type: absolute (fixed count) or percentage (of max) */
364
+ warningType?: string | null;
365
+ /** Threshold value — either an absolute count or a percentage (1-100) depending on warning_type */
366
+ thresholdValue?: string | null;
367
+ /** Job task name to enqueue when warning fires (e.g. email:limit_warning, notification:approaching_limit) */
368
+ taskIdentifier?: string | null;
369
+ /** Per-entity override (NULL = scope default for all entities) */
370
+ entityId?: string | null;
371
+ }
372
+ /** Redeemable credit codes managed by admins with the add_credits permission */
373
+ export interface AppLimitCreditCode {
374
+ id: string;
375
+ /** Human-readable credit code (case-insensitive, unique) */
376
+ code?: string | null;
377
+ /** Maximum total redemptions allowed; NULL for unlimited */
378
+ maxRedemptions?: number | null;
379
+ /** Current number of redemptions (incremented by trigger on credit_redemptions) */
380
+ currentRedemptions?: number | null;
381
+ /** Expiration timestamp; NULL for no expiry */
382
+ expiresAt?: string | null;
383
+ }
384
+ /** Append-only log of limit events for historical reporting and audit */
385
+ export interface AppLimitEvent {
386
+ createdAt?: string | null;
387
+ /** Unique identifier for each limit event */
388
+ id: string;
389
+ /** Limit name this event applies to */
390
+ name?: string | null;
391
+ /** User who triggered this event; NULL for system/aggregate events */
392
+ actorId?: string | null;
393
+ /** Entity this event applies to; NULL for app-level events */
394
+ entityId?: string | null;
395
+ /** Resolved billable organization via get_organization_id; NULL for app-level events */
396
+ organizationId?: string | null;
397
+ /** Entity type prefix (org, team, app, etc.) for interpreting entity_id */
398
+ entityType?: string | null;
399
+ /** Event type: inc, dec, check, modify, transfer, apply_plan, reset */
400
+ eventType?: string | null;
401
+ /** Change amount: positive for increment, negative for decrement */
402
+ delta?: string | null;
403
+ /** Usage count before this event */
404
+ numBefore?: string | null;
405
+ /** Usage count after this event */
406
+ numAfter?: string | null;
407
+ /** Max limit ceiling at the time of this event */
408
+ maxAtEvent?: string | null;
409
+ /** Optional reason or source: achievement, invite, plan_change, purchase, etc. */
410
+ reason?: string | null;
411
+ }
412
+ /** Append-only log of limit events for historical reporting and audit */
413
+ export interface OrgLimitEvent {
414
+ createdAt?: string | null;
415
+ /** Unique identifier for each limit event */
416
+ id: string;
417
+ /** Limit name this event applies to */
418
+ name?: string | null;
419
+ /** User who triggered this event; NULL for system/aggregate events */
420
+ actorId?: string | null;
421
+ /** Entity this event applies to; NULL for app-level events */
422
+ entityId?: string | null;
423
+ /** Resolved billable organization via get_organization_id; NULL for app-level events */
424
+ organizationId?: string | null;
425
+ /** Entity type prefix (org, team, app, etc.) for interpreting entity_id */
426
+ entityType?: string | null;
427
+ /** Event type: inc, dec, check, modify, transfer, apply_plan, reset */
428
+ eventType?: string | null;
429
+ /** Change amount: positive for increment, negative for decrement */
430
+ delta?: string | null;
431
+ /** Usage count before this event */
432
+ numBefore?: string | null;
433
+ /** Usage count after this event */
434
+ numAfter?: string | null;
435
+ /** Max limit ceiling at the time of this event */
436
+ maxAtEvent?: string | null;
437
+ /** Optional reason or source: achievement, invite, plan_change, purchase, etc. */
438
+ reason?: string | null;
439
+ }
440
+ /** Tracks per-actor usage counts against configurable maximum limits */
441
+ export interface AppLimit {
442
+ id: string;
443
+ /** Name identifier of the limit being tracked */
444
+ name?: string | null;
445
+ /** User whose usage is being tracked against this limit */
446
+ actorId?: string | null;
447
+ /** Current usage count for this actor and limit */
448
+ num?: string | null;
449
+ /** Maximum allowed usage; negative means unlimited. Modified by plans, credits, and achievements. */
450
+ max?: string | null;
451
+ /** Soft limit threshold for warnings; NULL means no soft limit. When num >= soft_max, consumers should warn but still allow until max is reached. */
452
+ softMax?: string | null;
453
+ /** Start of the current metering window; NULL means no time window */
454
+ windowStart?: string | null;
455
+ /** Duration of the metering window (e.g. 1 day, 1 month); NULL means no time window */
456
+ windowDuration?: string | null;
457
+ /** Ceiling set by the active plan via apply_plan(). Window reset does not change this value. */
458
+ planMax?: string | null;
459
+ /** Permanent credits from purchases, admin grants, or lifetime rewards. Survives window reset. */
460
+ purchasedCredits?: string | null;
461
+ /** Temporary credits for the current billing window. Resets to 0 on window expiry. */
462
+ periodCredits?: string | null;
463
+ /** Resolved billable organization via get_organization_id */
464
+ organizationId?: string | null;
465
+ /** Entity type prefix (org, team, app, etc.) for interpreting entity_id */
466
+ entityType?: string | null;
467
+ }
468
+ /** Tracks aggregate entity-level usage counts (org-wide caps, no per-user breakdown) */
469
+ export interface OrgLimitAggregate {
470
+ id: string;
471
+ /** Name identifier of the aggregate limit being tracked */
472
+ name?: string | null;
473
+ /** Entity (org) whose aggregate usage is being tracked */
474
+ entityId?: string | null;
475
+ /** Current aggregate usage count for this entity and limit */
476
+ num?: string | null;
477
+ /** Maximum allowed aggregate usage; negative means unlimited */
478
+ max?: string | null;
479
+ /** Soft limit threshold for warnings; NULL means no soft limit */
480
+ softMax?: string | null;
481
+ /** Start of the current metering window; NULL means no time window */
482
+ windowStart?: string | null;
483
+ /** Duration of the metering window (e.g. 1 day, 1 month); NULL means no time window */
484
+ windowDuration?: string | null;
485
+ /** Ceiling set by the active plan via apply_plan(). Window reset does not change this value. */
486
+ planMax?: string | null;
487
+ /** Permanent credits from purchases, admin grants, or lifetime rewards. Survives window reset. */
488
+ purchasedCredits?: string | null;
489
+ /** Temporary credits for the current billing window. Resets to 0 on window expiry. */
490
+ periodCredits?: string | null;
491
+ /** Capacity reserved by child entities in budgeted allocation mode. Available = max - num - reserved. */
492
+ reserved?: string | null;
493
+ /** Resolved billable organization via get_organization_id */
494
+ organizationId?: string | null;
495
+ /** Entity type prefix (org, team, app, etc.) for interpreting entity_id */
496
+ entityType?: string | null;
497
+ }
498
+ /** Tracks per-actor usage counts against configurable maximum limits */
499
+ export interface OrgLimit {
500
+ id: string;
501
+ /** Name identifier of the limit being tracked */
502
+ name?: string | null;
503
+ /** User whose usage is being tracked against this limit */
504
+ actorId?: string | null;
505
+ /** Current usage count for this actor and limit */
506
+ num?: string | null;
507
+ /** Maximum allowed usage; negative means unlimited. Modified by plans, credits, and achievements. */
508
+ max?: string | null;
509
+ /** Soft limit threshold for warnings; NULL means no soft limit. When num >= soft_max, consumers should warn but still allow until max is reached. */
510
+ softMax?: string | null;
511
+ /** Start of the current metering window; NULL means no time window */
512
+ windowStart?: string | null;
513
+ /** Duration of the metering window (e.g. 1 day, 1 month); NULL means no time window */
514
+ windowDuration?: string | null;
515
+ /** Ceiling set by the active plan via apply_plan(). Window reset does not change this value. */
516
+ planMax?: string | null;
517
+ /** Permanent credits from purchases, admin grants, or lifetime rewards. Survives window reset. */
518
+ purchasedCredits?: string | null;
519
+ /** Temporary credits for the current billing window. Resets to 0 on window expiry. */
520
+ periodCredits?: string | null;
521
+ entityId?: string | null;
522
+ /** Resolved billable organization via get_organization_id */
523
+ organizationId?: string | null;
524
+ /** Entity type prefix (org, team, app, etc.) for interpreting entity_id */
525
+ entityType?: string | null;
526
+ }
527
+ export interface ConnectionResult<T> {
528
+ nodes: T[];
529
+ totalCount: number;
530
+ pageInfo: PageInfo;
531
+ }
532
+ export interface PageInfo {
533
+ hasNextPage: boolean;
534
+ hasPreviousPage: boolean;
535
+ startCursor?: string | null;
536
+ endCursor?: string | null;
537
+ }
538
+ export interface AppLimitCapsDefaultRelations {
539
+ }
540
+ export interface OrgLimitCapsDefaultRelations {
541
+ }
542
+ export interface AppLimitCapRelations {
543
+ }
544
+ export interface OrgLimitCapRelations {
545
+ }
546
+ export interface AppLimitDefaultRelations {
547
+ appLimitCreditsByDefaultLimitId?: ConnectionResult<AppLimitCredit>;
548
+ appLimitCreditCodeItemsByDefaultLimitId?: ConnectionResult<AppLimitCreditCodeItem>;
549
+ }
550
+ export interface AppLimitCreditRelations {
551
+ defaultLimit?: AppLimitDefault | null;
552
+ }
553
+ export interface AppLimitCreditCodeItemRelations {
554
+ creditCode?: AppLimitCreditCode | null;
555
+ defaultLimit?: AppLimitDefault | null;
556
+ }
557
+ export interface AppLimitCreditRedemptionRelations {
558
+ creditCode?: AppLimitCreditCode | null;
559
+ }
560
+ export interface OrgLimitDefaultRelations {
561
+ orgLimitCreditsByDefaultLimitId?: ConnectionResult<OrgLimitCredit>;
562
+ }
563
+ export interface OrgLimitCreditRelations {
564
+ defaultLimit?: OrgLimitDefault | null;
565
+ }
566
+ export interface AppLimitWarningRelations {
567
+ }
568
+ export interface OrgLimitWarningRelations {
569
+ }
570
+ export interface AppLimitCreditCodeRelations {
571
+ appLimitCreditCodeItemsByCreditCodeId?: ConnectionResult<AppLimitCreditCodeItem>;
572
+ appLimitCreditRedemptionsByCreditCodeId?: ConnectionResult<AppLimitCreditRedemption>;
573
+ }
574
+ export interface AppLimitEventRelations {
575
+ }
576
+ export interface OrgLimitEventRelations {
577
+ }
578
+ export interface AppLimitRelations {
579
+ }
580
+ export interface OrgLimitAggregateRelations {
581
+ }
582
+ export interface OrgLimitRelations {
583
+ }
584
+ export type AppLimitCapsDefaultWithRelations = AppLimitCapsDefault & AppLimitCapsDefaultRelations;
585
+ export type OrgLimitCapsDefaultWithRelations = OrgLimitCapsDefault & OrgLimitCapsDefaultRelations;
586
+ export type AppLimitCapWithRelations = AppLimitCap & AppLimitCapRelations;
587
+ export type OrgLimitCapWithRelations = OrgLimitCap & OrgLimitCapRelations;
588
+ export type AppLimitDefaultWithRelations = AppLimitDefault & AppLimitDefaultRelations;
589
+ export type AppLimitCreditWithRelations = AppLimitCredit & AppLimitCreditRelations;
590
+ export type AppLimitCreditCodeItemWithRelations = AppLimitCreditCodeItem & AppLimitCreditCodeItemRelations;
591
+ export type AppLimitCreditRedemptionWithRelations = AppLimitCreditRedemption & AppLimitCreditRedemptionRelations;
592
+ export type OrgLimitDefaultWithRelations = OrgLimitDefault & OrgLimitDefaultRelations;
593
+ export type OrgLimitCreditWithRelations = OrgLimitCredit & OrgLimitCreditRelations;
594
+ export type AppLimitWarningWithRelations = AppLimitWarning & AppLimitWarningRelations;
595
+ export type OrgLimitWarningWithRelations = OrgLimitWarning & OrgLimitWarningRelations;
596
+ export type AppLimitCreditCodeWithRelations = AppLimitCreditCode & AppLimitCreditCodeRelations;
597
+ export type AppLimitEventWithRelations = AppLimitEvent & AppLimitEventRelations;
598
+ export type OrgLimitEventWithRelations = OrgLimitEvent & OrgLimitEventRelations;
599
+ export type AppLimitWithRelations = AppLimit & AppLimitRelations;
600
+ export type OrgLimitAggregateWithRelations = OrgLimitAggregate & OrgLimitAggregateRelations;
601
+ export type OrgLimitWithRelations = OrgLimit & OrgLimitRelations;
602
+ export type AppLimitCapsDefaultSelect = {
603
+ id?: boolean;
604
+ name?: boolean;
605
+ max?: boolean;
606
+ };
607
+ export type OrgLimitCapsDefaultSelect = {
608
+ id?: boolean;
609
+ name?: boolean;
610
+ max?: boolean;
611
+ };
612
+ export type AppLimitCapSelect = {
613
+ id?: boolean;
614
+ name?: boolean;
615
+ entityId?: boolean;
616
+ max?: boolean;
617
+ };
618
+ export type OrgLimitCapSelect = {
619
+ id?: boolean;
620
+ name?: boolean;
621
+ entityId?: boolean;
622
+ max?: boolean;
623
+ };
624
+ export type AppLimitDefaultSelect = {
625
+ id?: boolean;
626
+ name?: boolean;
627
+ max?: boolean;
628
+ softMax?: boolean;
629
+ appLimitCreditsByDefaultLimitId?: {
630
+ select: AppLimitCreditSelect;
631
+ first?: number;
632
+ filter?: AppLimitCreditFilter;
633
+ orderBy?: AppLimitCreditOrderBy[];
634
+ };
635
+ appLimitCreditCodeItemsByDefaultLimitId?: {
636
+ select: AppLimitCreditCodeItemSelect;
637
+ first?: number;
638
+ filter?: AppLimitCreditCodeItemFilter;
639
+ orderBy?: AppLimitCreditCodeItemOrderBy[];
640
+ };
641
+ };
642
+ export type AppLimitCreditSelect = {
643
+ id?: boolean;
644
+ defaultLimitId?: boolean;
645
+ actorId?: boolean;
646
+ amount?: boolean;
647
+ creditType?: boolean;
648
+ reason?: boolean;
649
+ defaultLimit?: {
650
+ select: AppLimitDefaultSelect;
651
+ };
652
+ };
653
+ export type AppLimitCreditCodeItemSelect = {
654
+ id?: boolean;
655
+ creditCodeId?: boolean;
656
+ defaultLimitId?: boolean;
657
+ amount?: boolean;
658
+ creditType?: boolean;
659
+ creditCode?: {
660
+ select: AppLimitCreditCodeSelect;
661
+ };
662
+ defaultLimit?: {
663
+ select: AppLimitDefaultSelect;
664
+ };
665
+ };
666
+ export type AppLimitCreditRedemptionSelect = {
667
+ id?: boolean;
668
+ creditCodeId?: boolean;
669
+ entityId?: boolean;
670
+ organizationId?: boolean;
671
+ entityType?: boolean;
672
+ creditCode?: {
673
+ select: AppLimitCreditCodeSelect;
674
+ };
675
+ };
676
+ export type OrgLimitDefaultSelect = {
677
+ id?: boolean;
678
+ name?: boolean;
679
+ max?: boolean;
680
+ softMax?: boolean;
681
+ orgLimitCreditsByDefaultLimitId?: {
682
+ select: OrgLimitCreditSelect;
683
+ first?: number;
684
+ filter?: OrgLimitCreditFilter;
685
+ orderBy?: OrgLimitCreditOrderBy[];
686
+ };
687
+ };
688
+ export type OrgLimitCreditSelect = {
689
+ id?: boolean;
690
+ defaultLimitId?: boolean;
691
+ actorId?: boolean;
692
+ entityId?: boolean;
693
+ organizationId?: boolean;
694
+ entityType?: boolean;
695
+ amount?: boolean;
696
+ creditType?: boolean;
697
+ reason?: boolean;
698
+ defaultLimit?: {
699
+ select: OrgLimitDefaultSelect;
700
+ };
701
+ };
702
+ export type AppLimitWarningSelect = {
703
+ id?: boolean;
704
+ name?: boolean;
705
+ warningType?: boolean;
706
+ thresholdValue?: boolean;
707
+ taskIdentifier?: boolean;
708
+ };
709
+ export type OrgLimitWarningSelect = {
710
+ id?: boolean;
711
+ name?: boolean;
712
+ warningType?: boolean;
713
+ thresholdValue?: boolean;
714
+ taskIdentifier?: boolean;
715
+ entityId?: boolean;
716
+ };
717
+ export type AppLimitCreditCodeSelect = {
718
+ id?: boolean;
719
+ code?: boolean;
720
+ maxRedemptions?: boolean;
721
+ currentRedemptions?: boolean;
722
+ expiresAt?: boolean;
723
+ appLimitCreditCodeItemsByCreditCodeId?: {
724
+ select: AppLimitCreditCodeItemSelect;
725
+ first?: number;
726
+ filter?: AppLimitCreditCodeItemFilter;
727
+ orderBy?: AppLimitCreditCodeItemOrderBy[];
728
+ };
729
+ appLimitCreditRedemptionsByCreditCodeId?: {
730
+ select: AppLimitCreditRedemptionSelect;
731
+ first?: number;
732
+ filter?: AppLimitCreditRedemptionFilter;
733
+ orderBy?: AppLimitCreditRedemptionOrderBy[];
734
+ };
735
+ };
736
+ export type AppLimitEventSelect = {
737
+ createdAt?: boolean;
738
+ id?: boolean;
739
+ name?: boolean;
740
+ actorId?: boolean;
741
+ entityId?: boolean;
742
+ organizationId?: boolean;
743
+ entityType?: boolean;
744
+ eventType?: boolean;
745
+ delta?: boolean;
746
+ numBefore?: boolean;
747
+ numAfter?: boolean;
748
+ maxAtEvent?: boolean;
749
+ reason?: boolean;
750
+ };
751
+ export type OrgLimitEventSelect = {
752
+ createdAt?: boolean;
753
+ id?: boolean;
754
+ name?: boolean;
755
+ actorId?: boolean;
756
+ entityId?: boolean;
757
+ organizationId?: boolean;
758
+ entityType?: boolean;
759
+ eventType?: boolean;
760
+ delta?: boolean;
761
+ numBefore?: boolean;
762
+ numAfter?: boolean;
763
+ maxAtEvent?: boolean;
764
+ reason?: boolean;
765
+ };
766
+ export type AppLimitSelect = {
767
+ id?: boolean;
768
+ name?: boolean;
769
+ actorId?: boolean;
770
+ num?: boolean;
771
+ max?: boolean;
772
+ softMax?: boolean;
773
+ windowStart?: boolean;
774
+ windowDuration?: boolean;
775
+ planMax?: boolean;
776
+ purchasedCredits?: boolean;
777
+ periodCredits?: boolean;
778
+ organizationId?: boolean;
779
+ entityType?: boolean;
780
+ };
781
+ export type OrgLimitAggregateSelect = {
782
+ id?: boolean;
783
+ name?: boolean;
784
+ entityId?: boolean;
785
+ num?: boolean;
786
+ max?: boolean;
787
+ softMax?: boolean;
788
+ windowStart?: boolean;
789
+ windowDuration?: boolean;
790
+ planMax?: boolean;
791
+ purchasedCredits?: boolean;
792
+ periodCredits?: boolean;
793
+ reserved?: boolean;
794
+ organizationId?: boolean;
795
+ entityType?: boolean;
796
+ };
797
+ export type OrgLimitSelect = {
798
+ id?: boolean;
799
+ name?: boolean;
800
+ actorId?: boolean;
801
+ num?: boolean;
802
+ max?: boolean;
803
+ softMax?: boolean;
804
+ windowStart?: boolean;
805
+ windowDuration?: boolean;
806
+ planMax?: boolean;
807
+ purchasedCredits?: boolean;
808
+ periodCredits?: boolean;
809
+ entityId?: boolean;
810
+ organizationId?: boolean;
811
+ entityType?: boolean;
812
+ };
813
+ export interface AppLimitCapsDefaultFilter {
814
+ /** Filter by the object’s `id` field. */
815
+ id?: UUIDFilter;
816
+ /** Filter by the object’s `name` field. */
817
+ name?: StringFilter;
818
+ /** Filter by the object’s `max` field. */
819
+ max?: BigIntFilter;
820
+ /** Checks for all expressions in this list. */
821
+ and?: AppLimitCapsDefaultFilter[];
822
+ /** Checks for any expressions in this list. */
823
+ or?: AppLimitCapsDefaultFilter[];
824
+ /** Negates the expression. */
825
+ not?: AppLimitCapsDefaultFilter;
826
+ }
827
+ export interface OrgLimitCapsDefaultFilter {
828
+ /** Filter by the object’s `id` field. */
829
+ id?: UUIDFilter;
830
+ /** Filter by the object’s `name` field. */
831
+ name?: StringFilter;
832
+ /** Filter by the object’s `max` field. */
833
+ max?: BigIntFilter;
834
+ /** Checks for all expressions in this list. */
835
+ and?: OrgLimitCapsDefaultFilter[];
836
+ /** Checks for any expressions in this list. */
837
+ or?: OrgLimitCapsDefaultFilter[];
838
+ /** Negates the expression. */
839
+ not?: OrgLimitCapsDefaultFilter;
840
+ }
841
+ export interface AppLimitCapFilter {
842
+ /** Filter by the object’s `id` field. */
843
+ id?: UUIDFilter;
844
+ /** Filter by the object’s `name` field. */
845
+ name?: StringFilter;
846
+ /** Filter by the object’s `entityId` field. */
847
+ entityId?: UUIDFilter;
848
+ /** Filter by the object’s `max` field. */
849
+ max?: BigIntFilter;
850
+ /** Checks for all expressions in this list. */
851
+ and?: AppLimitCapFilter[];
852
+ /** Checks for any expressions in this list. */
853
+ or?: AppLimitCapFilter[];
854
+ /** Negates the expression. */
855
+ not?: AppLimitCapFilter;
856
+ }
857
+ export interface OrgLimitCapFilter {
858
+ /** Filter by the object’s `id` field. */
859
+ id?: UUIDFilter;
860
+ /** Filter by the object’s `name` field. */
861
+ name?: StringFilter;
862
+ /** Filter by the object’s `entityId` field. */
863
+ entityId?: UUIDFilter;
864
+ /** Filter by the object’s `max` field. */
865
+ max?: BigIntFilter;
866
+ /** Checks for all expressions in this list. */
867
+ and?: OrgLimitCapFilter[];
868
+ /** Checks for any expressions in this list. */
869
+ or?: OrgLimitCapFilter[];
870
+ /** Negates the expression. */
871
+ not?: OrgLimitCapFilter;
872
+ }
873
+ export interface AppLimitDefaultFilter {
874
+ /** Filter by the object’s `id` field. */
875
+ id?: UUIDFilter;
876
+ /** Filter by the object’s `name` field. */
877
+ name?: StringFilter;
878
+ /** Filter by the object’s `max` field. */
879
+ max?: BigIntFilter;
880
+ /** Filter by the object’s `softMax` field. */
881
+ softMax?: BigIntFilter;
882
+ /** Checks for all expressions in this list. */
883
+ and?: AppLimitDefaultFilter[];
884
+ /** Checks for any expressions in this list. */
885
+ or?: AppLimitDefaultFilter[];
886
+ /** Negates the expression. */
887
+ not?: AppLimitDefaultFilter;
888
+ /** Filter by the object’s `appLimitCreditsByDefaultLimitId` relation. */
889
+ appLimitCreditsByDefaultLimitId?: AppLimitDefaultToManyAppLimitCreditFilter;
890
+ /** `appLimitCreditsByDefaultLimitId` exist. */
891
+ appLimitCreditsByDefaultLimitIdExist?: boolean;
892
+ /** Filter by the object’s `appLimitCreditCodeItemsByDefaultLimitId` relation. */
893
+ appLimitCreditCodeItemsByDefaultLimitId?: AppLimitDefaultToManyAppLimitCreditCodeItemFilter;
894
+ /** `appLimitCreditCodeItemsByDefaultLimitId` exist. */
895
+ appLimitCreditCodeItemsByDefaultLimitIdExist?: boolean;
896
+ }
897
+ export interface AppLimitCreditFilter {
898
+ /** Filter by the object’s `id` field. */
899
+ id?: UUIDFilter;
900
+ /** Filter by the object’s `defaultLimitId` field. */
901
+ defaultLimitId?: UUIDFilter;
902
+ /** Filter by the object’s `actorId` field. */
903
+ actorId?: UUIDFilter;
904
+ /** Filter by the object’s `amount` field. */
905
+ amount?: BigIntFilter;
906
+ /** Filter by the object’s `creditType` field. */
907
+ creditType?: StringFilter;
908
+ /** Filter by the object’s `reason` field. */
909
+ reason?: StringFilter;
910
+ /** Checks for all expressions in this list. */
911
+ and?: AppLimitCreditFilter[];
912
+ /** Checks for any expressions in this list. */
913
+ or?: AppLimitCreditFilter[];
914
+ /** Negates the expression. */
915
+ not?: AppLimitCreditFilter;
916
+ /** Filter by the object’s `defaultLimit` relation. */
917
+ defaultLimit?: AppLimitDefaultFilter;
918
+ }
919
+ export interface AppLimitCreditCodeItemFilter {
920
+ /** Filter by the object’s `id` field. */
921
+ id?: UUIDFilter;
922
+ /** Filter by the object’s `creditCodeId` field. */
923
+ creditCodeId?: UUIDFilter;
924
+ /** Filter by the object’s `defaultLimitId` field. */
925
+ defaultLimitId?: UUIDFilter;
926
+ /** Filter by the object’s `amount` field. */
927
+ amount?: BigIntFilter;
928
+ /** Filter by the object’s `creditType` field. */
929
+ creditType?: StringFilter;
930
+ /** Checks for all expressions in this list. */
931
+ and?: AppLimitCreditCodeItemFilter[];
932
+ /** Checks for any expressions in this list. */
933
+ or?: AppLimitCreditCodeItemFilter[];
934
+ /** Negates the expression. */
935
+ not?: AppLimitCreditCodeItemFilter;
936
+ /** Filter by the object’s `creditCode` relation. */
937
+ creditCode?: AppLimitCreditCodeFilter;
938
+ /** Filter by the object’s `defaultLimit` relation. */
939
+ defaultLimit?: AppLimitDefaultFilter;
940
+ }
941
+ export interface AppLimitCreditRedemptionFilter {
942
+ /** Filter by the object’s `id` field. */
943
+ id?: UUIDFilter;
944
+ /** Filter by the object’s `creditCodeId` field. */
945
+ creditCodeId?: UUIDFilter;
946
+ /** Filter by the object’s `entityId` field. */
947
+ entityId?: UUIDFilter;
948
+ /** Filter by the object’s `organizationId` field. */
949
+ organizationId?: UUIDFilter;
950
+ /** Filter by the object’s `entityType` field. */
951
+ entityType?: StringFilter;
952
+ /** Checks for all expressions in this list. */
953
+ and?: AppLimitCreditRedemptionFilter[];
954
+ /** Checks for any expressions in this list. */
955
+ or?: AppLimitCreditRedemptionFilter[];
956
+ /** Negates the expression. */
957
+ not?: AppLimitCreditRedemptionFilter;
958
+ /** Filter by the object’s `creditCode` relation. */
959
+ creditCode?: AppLimitCreditCodeFilter;
960
+ }
961
+ export interface OrgLimitDefaultFilter {
962
+ /** Filter by the object’s `id` field. */
963
+ id?: UUIDFilter;
964
+ /** Filter by the object’s `name` field. */
965
+ name?: StringFilter;
966
+ /** Filter by the object’s `max` field. */
967
+ max?: BigIntFilter;
968
+ /** Filter by the object’s `softMax` field. */
969
+ softMax?: BigIntFilter;
970
+ /** Checks for all expressions in this list. */
971
+ and?: OrgLimitDefaultFilter[];
972
+ /** Checks for any expressions in this list. */
973
+ or?: OrgLimitDefaultFilter[];
974
+ /** Negates the expression. */
975
+ not?: OrgLimitDefaultFilter;
976
+ /** Filter by the object’s `orgLimitCreditsByDefaultLimitId` relation. */
977
+ orgLimitCreditsByDefaultLimitId?: OrgLimitDefaultToManyOrgLimitCreditFilter;
978
+ /** `orgLimitCreditsByDefaultLimitId` exist. */
979
+ orgLimitCreditsByDefaultLimitIdExist?: boolean;
980
+ }
981
+ export interface OrgLimitCreditFilter {
982
+ /** Filter by the object’s `id` field. */
983
+ id?: UUIDFilter;
984
+ /** Filter by the object’s `defaultLimitId` field. */
985
+ defaultLimitId?: UUIDFilter;
986
+ /** Filter by the object’s `actorId` field. */
987
+ actorId?: UUIDFilter;
988
+ /** Filter by the object’s `entityId` field. */
989
+ entityId?: UUIDFilter;
990
+ /** Filter by the object’s `organizationId` field. */
991
+ organizationId?: UUIDFilter;
992
+ /** Filter by the object’s `entityType` field. */
993
+ entityType?: StringFilter;
994
+ /** Filter by the object’s `amount` field. */
995
+ amount?: BigIntFilter;
996
+ /** Filter by the object’s `creditType` field. */
997
+ creditType?: StringFilter;
998
+ /** Filter by the object’s `reason` field. */
999
+ reason?: StringFilter;
1000
+ /** Checks for all expressions in this list. */
1001
+ and?: OrgLimitCreditFilter[];
1002
+ /** Checks for any expressions in this list. */
1003
+ or?: OrgLimitCreditFilter[];
1004
+ /** Negates the expression. */
1005
+ not?: OrgLimitCreditFilter;
1006
+ /** Filter by the object’s `defaultLimit` relation. */
1007
+ defaultLimit?: OrgLimitDefaultFilter;
1008
+ }
1009
+ export interface AppLimitWarningFilter {
1010
+ /** Filter by the object’s `id` field. */
1011
+ id?: UUIDFilter;
1012
+ /** Filter by the object’s `name` field. */
1013
+ name?: StringFilter;
1014
+ /** Filter by the object’s `warningType` field. */
1015
+ warningType?: StringFilter;
1016
+ /** Filter by the object’s `thresholdValue` field. */
1017
+ thresholdValue?: BigIntFilter;
1018
+ /** Filter by the object’s `taskIdentifier` field. */
1019
+ taskIdentifier?: StringFilter;
1020
+ /** Checks for all expressions in this list. */
1021
+ and?: AppLimitWarningFilter[];
1022
+ /** Checks for any expressions in this list. */
1023
+ or?: AppLimitWarningFilter[];
1024
+ /** Negates the expression. */
1025
+ not?: AppLimitWarningFilter;
1026
+ }
1027
+ export interface OrgLimitWarningFilter {
1028
+ /** Filter by the object’s `id` field. */
1029
+ id?: UUIDFilter;
1030
+ /** Filter by the object’s `name` field. */
1031
+ name?: StringFilter;
1032
+ /** Filter by the object’s `warningType` field. */
1033
+ warningType?: StringFilter;
1034
+ /** Filter by the object’s `thresholdValue` field. */
1035
+ thresholdValue?: BigIntFilter;
1036
+ /** Filter by the object’s `taskIdentifier` field. */
1037
+ taskIdentifier?: StringFilter;
1038
+ /** Filter by the object’s `entityId` field. */
1039
+ entityId?: UUIDFilter;
1040
+ /** Checks for all expressions in this list. */
1041
+ and?: OrgLimitWarningFilter[];
1042
+ /** Checks for any expressions in this list. */
1043
+ or?: OrgLimitWarningFilter[];
1044
+ /** Negates the expression. */
1045
+ not?: OrgLimitWarningFilter;
1046
+ }
1047
+ export interface AppLimitCreditCodeFilter {
1048
+ /** Filter by the object’s `id` field. */
1049
+ id?: UUIDFilter;
1050
+ /** Filter by the object’s `code` field. */
1051
+ code?: StringFilter;
1052
+ /** Filter by the object’s `maxRedemptions` field. */
1053
+ maxRedemptions?: IntFilter;
1054
+ /** Filter by the object’s `currentRedemptions` field. */
1055
+ currentRedemptions?: IntFilter;
1056
+ /** Filter by the object’s `expiresAt` field. */
1057
+ expiresAt?: DatetimeFilter;
1058
+ /** Checks for all expressions in this list. */
1059
+ and?: AppLimitCreditCodeFilter[];
1060
+ /** Checks for any expressions in this list. */
1061
+ or?: AppLimitCreditCodeFilter[];
1062
+ /** Negates the expression. */
1063
+ not?: AppLimitCreditCodeFilter;
1064
+ /** Filter by the object’s `appLimitCreditCodeItemsByCreditCodeId` relation. */
1065
+ appLimitCreditCodeItemsByCreditCodeId?: AppLimitCreditCodeToManyAppLimitCreditCodeItemFilter;
1066
+ /** `appLimitCreditCodeItemsByCreditCodeId` exist. */
1067
+ appLimitCreditCodeItemsByCreditCodeIdExist?: boolean;
1068
+ /** Filter by the object’s `appLimitCreditRedemptionsByCreditCodeId` relation. */
1069
+ appLimitCreditRedemptionsByCreditCodeId?: AppLimitCreditCodeToManyAppLimitCreditRedemptionFilter;
1070
+ /** `appLimitCreditRedemptionsByCreditCodeId` exist. */
1071
+ appLimitCreditRedemptionsByCreditCodeIdExist?: boolean;
1072
+ }
1073
+ export interface AppLimitEventFilter {
1074
+ /** Filter by the object’s `createdAt` field. */
1075
+ createdAt?: DatetimeFilter;
1076
+ /** Filter by the object’s `id` field. */
1077
+ id?: UUIDFilter;
1078
+ /** Filter by the object’s `name` field. */
1079
+ name?: StringFilter;
1080
+ /** Filter by the object’s `actorId` field. */
1081
+ actorId?: UUIDFilter;
1082
+ /** Filter by the object’s `entityId` field. */
1083
+ entityId?: UUIDFilter;
1084
+ /** Filter by the object’s `organizationId` field. */
1085
+ organizationId?: UUIDFilter;
1086
+ /** Filter by the object’s `entityType` field. */
1087
+ entityType?: StringFilter;
1088
+ /** Filter by the object’s `eventType` field. */
1089
+ eventType?: StringFilter;
1090
+ /** Filter by the object’s `delta` field. */
1091
+ delta?: BigIntFilter;
1092
+ /** Filter by the object’s `numBefore` field. */
1093
+ numBefore?: BigIntFilter;
1094
+ /** Filter by the object’s `numAfter` field. */
1095
+ numAfter?: BigIntFilter;
1096
+ /** Filter by the object’s `maxAtEvent` field. */
1097
+ maxAtEvent?: BigIntFilter;
1098
+ /** Filter by the object’s `reason` field. */
1099
+ reason?: StringFilter;
1100
+ /** Checks for all expressions in this list. */
1101
+ and?: AppLimitEventFilter[];
1102
+ /** Checks for any expressions in this list. */
1103
+ or?: AppLimitEventFilter[];
1104
+ /** Negates the expression. */
1105
+ not?: AppLimitEventFilter;
1106
+ }
1107
+ export interface OrgLimitEventFilter {
1108
+ /** Filter by the object’s `createdAt` field. */
1109
+ createdAt?: DatetimeFilter;
1110
+ /** Filter by the object’s `id` field. */
1111
+ id?: UUIDFilter;
1112
+ /** Filter by the object’s `name` field. */
1113
+ name?: StringFilter;
1114
+ /** Filter by the object’s `actorId` field. */
1115
+ actorId?: UUIDFilter;
1116
+ /** Filter by the object’s `entityId` field. */
1117
+ entityId?: UUIDFilter;
1118
+ /** Filter by the object’s `organizationId` field. */
1119
+ organizationId?: UUIDFilter;
1120
+ /** Filter by the object’s `entityType` field. */
1121
+ entityType?: StringFilter;
1122
+ /** Filter by the object’s `eventType` field. */
1123
+ eventType?: StringFilter;
1124
+ /** Filter by the object’s `delta` field. */
1125
+ delta?: BigIntFilter;
1126
+ /** Filter by the object’s `numBefore` field. */
1127
+ numBefore?: BigIntFilter;
1128
+ /** Filter by the object’s `numAfter` field. */
1129
+ numAfter?: BigIntFilter;
1130
+ /** Filter by the object’s `maxAtEvent` field. */
1131
+ maxAtEvent?: BigIntFilter;
1132
+ /** Filter by the object’s `reason` field. */
1133
+ reason?: StringFilter;
1134
+ /** Checks for all expressions in this list. */
1135
+ and?: OrgLimitEventFilter[];
1136
+ /** Checks for any expressions in this list. */
1137
+ or?: OrgLimitEventFilter[];
1138
+ /** Negates the expression. */
1139
+ not?: OrgLimitEventFilter;
1140
+ }
1141
+ export interface AppLimitFilter {
1142
+ /** Filter by the object’s `id` field. */
1143
+ id?: UUIDFilter;
1144
+ /** Filter by the object’s `name` field. */
1145
+ name?: StringFilter;
1146
+ /** Filter by the object’s `actorId` field. */
1147
+ actorId?: UUIDFilter;
1148
+ /** Filter by the object’s `num` field. */
1149
+ num?: BigIntFilter;
1150
+ /** Filter by the object’s `max` field. */
1151
+ max?: BigIntFilter;
1152
+ /** Filter by the object’s `softMax` field. */
1153
+ softMax?: BigIntFilter;
1154
+ /** Filter by the object’s `windowStart` field. */
1155
+ windowStart?: DatetimeFilter;
1156
+ /** Filter by the object’s `windowDuration` field. */
1157
+ windowDuration?: IntervalFilter;
1158
+ /** Filter by the object’s `planMax` field. */
1159
+ planMax?: BigIntFilter;
1160
+ /** Filter by the object’s `purchasedCredits` field. */
1161
+ purchasedCredits?: BigIntFilter;
1162
+ /** Filter by the object’s `periodCredits` field. */
1163
+ periodCredits?: BigIntFilter;
1164
+ /** Filter by the object’s `organizationId` field. */
1165
+ organizationId?: UUIDFilter;
1166
+ /** Filter by the object’s `entityType` field. */
1167
+ entityType?: StringFilter;
1168
+ /** Checks for all expressions in this list. */
1169
+ and?: AppLimitFilter[];
1170
+ /** Checks for any expressions in this list. */
1171
+ or?: AppLimitFilter[];
1172
+ /** Negates the expression. */
1173
+ not?: AppLimitFilter;
1174
+ }
1175
+ export interface OrgLimitAggregateFilter {
1176
+ /** Filter by the object’s `id` field. */
1177
+ id?: UUIDFilter;
1178
+ /** Filter by the object’s `name` field. */
1179
+ name?: StringFilter;
1180
+ /** Filter by the object’s `entityId` field. */
1181
+ entityId?: UUIDFilter;
1182
+ /** Filter by the object’s `num` field. */
1183
+ num?: BigIntFilter;
1184
+ /** Filter by the object’s `max` field. */
1185
+ max?: BigIntFilter;
1186
+ /** Filter by the object’s `softMax` field. */
1187
+ softMax?: BigIntFilter;
1188
+ /** Filter by the object’s `windowStart` field. */
1189
+ windowStart?: DatetimeFilter;
1190
+ /** Filter by the object’s `windowDuration` field. */
1191
+ windowDuration?: IntervalFilter;
1192
+ /** Filter by the object’s `planMax` field. */
1193
+ planMax?: BigIntFilter;
1194
+ /** Filter by the object’s `purchasedCredits` field. */
1195
+ purchasedCredits?: BigIntFilter;
1196
+ /** Filter by the object’s `periodCredits` field. */
1197
+ periodCredits?: BigIntFilter;
1198
+ /** Filter by the object’s `reserved` field. */
1199
+ reserved?: BigIntFilter;
1200
+ /** Filter by the object’s `organizationId` field. */
1201
+ organizationId?: UUIDFilter;
1202
+ /** Filter by the object’s `entityType` field. */
1203
+ entityType?: StringFilter;
1204
+ /** Checks for all expressions in this list. */
1205
+ and?: OrgLimitAggregateFilter[];
1206
+ /** Checks for any expressions in this list. */
1207
+ or?: OrgLimitAggregateFilter[];
1208
+ /** Negates the expression. */
1209
+ not?: OrgLimitAggregateFilter;
1210
+ }
1211
+ export interface OrgLimitFilter {
1212
+ /** Filter by the object’s `id` field. */
1213
+ id?: UUIDFilter;
1214
+ /** Filter by the object’s `name` field. */
1215
+ name?: StringFilter;
1216
+ /** Filter by the object’s `actorId` field. */
1217
+ actorId?: UUIDFilter;
1218
+ /** Filter by the object’s `num` field. */
1219
+ num?: BigIntFilter;
1220
+ /** Filter by the object’s `max` field. */
1221
+ max?: BigIntFilter;
1222
+ /** Filter by the object’s `softMax` field. */
1223
+ softMax?: BigIntFilter;
1224
+ /** Filter by the object’s `windowStart` field. */
1225
+ windowStart?: DatetimeFilter;
1226
+ /** Filter by the object’s `windowDuration` field. */
1227
+ windowDuration?: IntervalFilter;
1228
+ /** Filter by the object’s `planMax` field. */
1229
+ planMax?: BigIntFilter;
1230
+ /** Filter by the object’s `purchasedCredits` field. */
1231
+ purchasedCredits?: BigIntFilter;
1232
+ /** Filter by the object’s `periodCredits` field. */
1233
+ periodCredits?: BigIntFilter;
1234
+ /** Filter by the object’s `entityId` field. */
1235
+ entityId?: UUIDFilter;
1236
+ /** Filter by the object’s `organizationId` field. */
1237
+ organizationId?: UUIDFilter;
1238
+ /** Filter by the object’s `entityType` field. */
1239
+ entityType?: StringFilter;
1240
+ /** Checks for all expressions in this list. */
1241
+ and?: OrgLimitFilter[];
1242
+ /** Checks for any expressions in this list. */
1243
+ or?: OrgLimitFilter[];
1244
+ /** Negates the expression. */
1245
+ not?: OrgLimitFilter;
1246
+ }
1247
+ export type AppLimitCapsDefaultOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'MAX_ASC' | 'MAX_DESC';
1248
+ export type OrgLimitCapsDefaultOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'MAX_ASC' | 'MAX_DESC';
1249
+ export type AppLimitCapOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC' | 'MAX_ASC' | 'MAX_DESC';
1250
+ export type OrgLimitCapOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC' | 'MAX_ASC' | 'MAX_DESC';
1251
+ export type AppLimitDefaultOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'MAX_ASC' | 'MAX_DESC' | 'SOFT_MAX_ASC' | 'SOFT_MAX_DESC';
1252
+ export type AppLimitCreditOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DEFAULT_LIMIT_ID_ASC' | 'DEFAULT_LIMIT_ID_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'AMOUNT_ASC' | 'AMOUNT_DESC' | 'CREDIT_TYPE_ASC' | 'CREDIT_TYPE_DESC' | 'REASON_ASC' | 'REASON_DESC';
1253
+ export type AppLimitCreditCodeItemOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'CREDIT_CODE_ID_ASC' | 'CREDIT_CODE_ID_DESC' | 'DEFAULT_LIMIT_ID_ASC' | 'DEFAULT_LIMIT_ID_DESC' | 'AMOUNT_ASC' | 'AMOUNT_DESC' | 'CREDIT_TYPE_ASC' | 'CREDIT_TYPE_DESC';
1254
+ export type AppLimitCreditRedemptionOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'CREDIT_CODE_ID_ASC' | 'CREDIT_CODE_ID_DESC' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC' | 'ORGANIZATION_ID_ASC' | 'ORGANIZATION_ID_DESC' | 'ENTITY_TYPE_ASC' | 'ENTITY_TYPE_DESC';
1255
+ export type OrgLimitDefaultOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'MAX_ASC' | 'MAX_DESC' | 'SOFT_MAX_ASC' | 'SOFT_MAX_DESC';
1256
+ export type OrgLimitCreditOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DEFAULT_LIMIT_ID_ASC' | 'DEFAULT_LIMIT_ID_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC' | 'ORGANIZATION_ID_ASC' | 'ORGANIZATION_ID_DESC' | 'ENTITY_TYPE_ASC' | 'ENTITY_TYPE_DESC' | 'AMOUNT_ASC' | 'AMOUNT_DESC' | 'CREDIT_TYPE_ASC' | 'CREDIT_TYPE_DESC' | 'REASON_ASC' | 'REASON_DESC';
1257
+ export type AppLimitWarningOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'WARNING_TYPE_ASC' | 'WARNING_TYPE_DESC' | 'THRESHOLD_VALUE_ASC' | 'THRESHOLD_VALUE_DESC' | 'TASK_IDENTIFIER_ASC' | 'TASK_IDENTIFIER_DESC';
1258
+ export type OrgLimitWarningOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'WARNING_TYPE_ASC' | 'WARNING_TYPE_DESC' | 'THRESHOLD_VALUE_ASC' | 'THRESHOLD_VALUE_DESC' | 'TASK_IDENTIFIER_ASC' | 'TASK_IDENTIFIER_DESC' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC';
1259
+ export type AppLimitCreditCodeOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'CODE_ASC' | 'CODE_DESC' | 'MAX_REDEMPTIONS_ASC' | 'MAX_REDEMPTIONS_DESC' | 'CURRENT_REDEMPTIONS_ASC' | 'CURRENT_REDEMPTIONS_DESC' | 'EXPIRES_AT_ASC' | 'EXPIRES_AT_DESC';
1260
+ export type AppLimitEventOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC' | 'ORGANIZATION_ID_ASC' | 'ORGANIZATION_ID_DESC' | 'ENTITY_TYPE_ASC' | 'ENTITY_TYPE_DESC' | 'EVENT_TYPE_ASC' | 'EVENT_TYPE_DESC' | 'DELTA_ASC' | 'DELTA_DESC' | 'NUM_BEFORE_ASC' | 'NUM_BEFORE_DESC' | 'NUM_AFTER_ASC' | 'NUM_AFTER_DESC' | 'MAX_AT_EVENT_ASC' | 'MAX_AT_EVENT_DESC' | 'REASON_ASC' | 'REASON_DESC';
1261
+ export type OrgLimitEventOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC' | 'ORGANIZATION_ID_ASC' | 'ORGANIZATION_ID_DESC' | 'ENTITY_TYPE_ASC' | 'ENTITY_TYPE_DESC' | 'EVENT_TYPE_ASC' | 'EVENT_TYPE_DESC' | 'DELTA_ASC' | 'DELTA_DESC' | 'NUM_BEFORE_ASC' | 'NUM_BEFORE_DESC' | 'NUM_AFTER_ASC' | 'NUM_AFTER_DESC' | 'MAX_AT_EVENT_ASC' | 'MAX_AT_EVENT_DESC' | 'REASON_ASC' | 'REASON_DESC';
1262
+ export type AppLimitOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'NUM_ASC' | 'NUM_DESC' | 'MAX_ASC' | 'MAX_DESC' | 'SOFT_MAX_ASC' | 'SOFT_MAX_DESC' | 'WINDOW_START_ASC' | 'WINDOW_START_DESC' | 'WINDOW_DURATION_ASC' | 'WINDOW_DURATION_DESC' | 'PLAN_MAX_ASC' | 'PLAN_MAX_DESC' | 'PURCHASED_CREDITS_ASC' | 'PURCHASED_CREDITS_DESC' | 'PERIOD_CREDITS_ASC' | 'PERIOD_CREDITS_DESC' | 'ORGANIZATION_ID_ASC' | 'ORGANIZATION_ID_DESC' | 'ENTITY_TYPE_ASC' | 'ENTITY_TYPE_DESC';
1263
+ export type OrgLimitAggregateOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC' | 'NUM_ASC' | 'NUM_DESC' | 'MAX_ASC' | 'MAX_DESC' | 'SOFT_MAX_ASC' | 'SOFT_MAX_DESC' | 'WINDOW_START_ASC' | 'WINDOW_START_DESC' | 'WINDOW_DURATION_ASC' | 'WINDOW_DURATION_DESC' | 'PLAN_MAX_ASC' | 'PLAN_MAX_DESC' | 'PURCHASED_CREDITS_ASC' | 'PURCHASED_CREDITS_DESC' | 'PERIOD_CREDITS_ASC' | 'PERIOD_CREDITS_DESC' | 'RESERVED_ASC' | 'RESERVED_DESC' | 'ORGANIZATION_ID_ASC' | 'ORGANIZATION_ID_DESC' | 'ENTITY_TYPE_ASC' | 'ENTITY_TYPE_DESC';
1264
+ export type OrgLimitOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'NUM_ASC' | 'NUM_DESC' | 'MAX_ASC' | 'MAX_DESC' | 'SOFT_MAX_ASC' | 'SOFT_MAX_DESC' | 'WINDOW_START_ASC' | 'WINDOW_START_DESC' | 'WINDOW_DURATION_ASC' | 'WINDOW_DURATION_DESC' | 'PLAN_MAX_ASC' | 'PLAN_MAX_DESC' | 'PURCHASED_CREDITS_ASC' | 'PURCHASED_CREDITS_DESC' | 'PERIOD_CREDITS_ASC' | 'PERIOD_CREDITS_DESC' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC' | 'ORGANIZATION_ID_ASC' | 'ORGANIZATION_ID_DESC' | 'ENTITY_TYPE_ASC' | 'ENTITY_TYPE_DESC';
1265
+ export interface CreateAppLimitCapsDefaultInput {
1266
+ clientMutationId?: string;
1267
+ appLimitCapsDefault: {
1268
+ name: string;
1269
+ max?: string;
1270
+ };
1271
+ }
1272
+ export interface AppLimitCapsDefaultPatch {
1273
+ name?: string | null;
1274
+ max?: string | null;
1275
+ }
1276
+ export interface UpdateAppLimitCapsDefaultInput {
1277
+ clientMutationId?: string;
1278
+ id: string;
1279
+ appLimitCapsDefaultPatch: AppLimitCapsDefaultPatch;
1280
+ }
1281
+ export interface DeleteAppLimitCapsDefaultInput {
1282
+ clientMutationId?: string;
1283
+ id: string;
1284
+ }
1285
+ export interface CreateOrgLimitCapsDefaultInput {
1286
+ clientMutationId?: string;
1287
+ orgLimitCapsDefault: {
1288
+ name: string;
1289
+ max?: string;
1290
+ };
1291
+ }
1292
+ export interface OrgLimitCapsDefaultPatch {
1293
+ name?: string | null;
1294
+ max?: string | null;
1295
+ }
1296
+ export interface UpdateOrgLimitCapsDefaultInput {
1297
+ clientMutationId?: string;
1298
+ id: string;
1299
+ orgLimitCapsDefaultPatch: OrgLimitCapsDefaultPatch;
1300
+ }
1301
+ export interface DeleteOrgLimitCapsDefaultInput {
1302
+ clientMutationId?: string;
1303
+ id: string;
1304
+ }
1305
+ export interface CreateAppLimitCapInput {
1306
+ clientMutationId?: string;
1307
+ appLimitCap: {
1308
+ name: string;
1309
+ entityId: string;
1310
+ max?: string;
1311
+ };
1312
+ }
1313
+ export interface AppLimitCapPatch {
1314
+ name?: string | null;
1315
+ entityId?: string | null;
1316
+ max?: string | null;
1317
+ }
1318
+ export interface UpdateAppLimitCapInput {
1319
+ clientMutationId?: string;
1320
+ id: string;
1321
+ appLimitCapPatch: AppLimitCapPatch;
1322
+ }
1323
+ export interface DeleteAppLimitCapInput {
1324
+ clientMutationId?: string;
1325
+ id: string;
1326
+ }
1327
+ export interface CreateOrgLimitCapInput {
1328
+ clientMutationId?: string;
1329
+ orgLimitCap: {
1330
+ name: string;
1331
+ entityId: string;
1332
+ max?: string;
1333
+ };
1334
+ }
1335
+ export interface OrgLimitCapPatch {
1336
+ name?: string | null;
1337
+ entityId?: string | null;
1338
+ max?: string | null;
1339
+ }
1340
+ export interface UpdateOrgLimitCapInput {
1341
+ clientMutationId?: string;
1342
+ id: string;
1343
+ orgLimitCapPatch: OrgLimitCapPatch;
1344
+ }
1345
+ export interface DeleteOrgLimitCapInput {
1346
+ clientMutationId?: string;
1347
+ id: string;
1348
+ }
1349
+ export interface CreateAppLimitDefaultInput {
1350
+ clientMutationId?: string;
1351
+ appLimitDefault: {
1352
+ name: string;
1353
+ max?: string;
1354
+ softMax?: string;
1355
+ };
1356
+ }
1357
+ export interface AppLimitDefaultPatch {
1358
+ name?: string | null;
1359
+ max?: string | null;
1360
+ softMax?: string | null;
1361
+ }
1362
+ export interface UpdateAppLimitDefaultInput {
1363
+ clientMutationId?: string;
1364
+ id: string;
1365
+ appLimitDefaultPatch: AppLimitDefaultPatch;
1366
+ }
1367
+ export interface DeleteAppLimitDefaultInput {
1368
+ clientMutationId?: string;
1369
+ id: string;
1370
+ }
1371
+ export interface CreateAppLimitCreditInput {
1372
+ clientMutationId?: string;
1373
+ appLimitCredit: {
1374
+ defaultLimitId: string;
1375
+ actorId?: string;
1376
+ amount: string;
1377
+ creditType?: string;
1378
+ reason?: string;
1379
+ };
1380
+ }
1381
+ export interface AppLimitCreditPatch {
1382
+ defaultLimitId?: string | null;
1383
+ actorId?: string | null;
1384
+ amount?: string | null;
1385
+ creditType?: string | null;
1386
+ reason?: string | null;
1387
+ }
1388
+ export interface UpdateAppLimitCreditInput {
1389
+ clientMutationId?: string;
1390
+ id: string;
1391
+ appLimitCreditPatch: AppLimitCreditPatch;
1392
+ }
1393
+ export interface DeleteAppLimitCreditInput {
1394
+ clientMutationId?: string;
1395
+ id: string;
1396
+ }
1397
+ export interface CreateAppLimitCreditCodeItemInput {
1398
+ clientMutationId?: string;
1399
+ appLimitCreditCodeItem: {
1400
+ creditCodeId: string;
1401
+ defaultLimitId: string;
1402
+ amount: string;
1403
+ creditType?: string;
1404
+ };
1405
+ }
1406
+ export interface AppLimitCreditCodeItemPatch {
1407
+ creditCodeId?: string | null;
1408
+ defaultLimitId?: string | null;
1409
+ amount?: string | null;
1410
+ creditType?: string | null;
1411
+ }
1412
+ export interface UpdateAppLimitCreditCodeItemInput {
1413
+ clientMutationId?: string;
1414
+ id: string;
1415
+ appLimitCreditCodeItemPatch: AppLimitCreditCodeItemPatch;
1416
+ }
1417
+ export interface DeleteAppLimitCreditCodeItemInput {
1418
+ clientMutationId?: string;
1419
+ id: string;
1420
+ }
1421
+ export interface CreateAppLimitCreditRedemptionInput {
1422
+ clientMutationId?: string;
1423
+ appLimitCreditRedemption: {
1424
+ creditCodeId: string;
1425
+ entityId: string;
1426
+ organizationId?: string;
1427
+ entityType?: string;
1428
+ };
1429
+ }
1430
+ export interface AppLimitCreditRedemptionPatch {
1431
+ creditCodeId?: string | null;
1432
+ entityId?: string | null;
1433
+ organizationId?: string | null;
1434
+ entityType?: string | null;
1435
+ }
1436
+ export interface UpdateAppLimitCreditRedemptionInput {
1437
+ clientMutationId?: string;
1438
+ id: string;
1439
+ appLimitCreditRedemptionPatch: AppLimitCreditRedemptionPatch;
1440
+ }
1441
+ export interface DeleteAppLimitCreditRedemptionInput {
1442
+ clientMutationId?: string;
1443
+ id: string;
1444
+ }
1445
+ export interface CreateOrgLimitDefaultInput {
1446
+ clientMutationId?: string;
1447
+ orgLimitDefault: {
1448
+ name: string;
1449
+ max?: string;
1450
+ softMax?: string;
1451
+ };
1452
+ }
1453
+ export interface OrgLimitDefaultPatch {
1454
+ name?: string | null;
1455
+ max?: string | null;
1456
+ softMax?: string | null;
1457
+ }
1458
+ export interface UpdateOrgLimitDefaultInput {
1459
+ clientMutationId?: string;
1460
+ id: string;
1461
+ orgLimitDefaultPatch: OrgLimitDefaultPatch;
1462
+ }
1463
+ export interface DeleteOrgLimitDefaultInput {
1464
+ clientMutationId?: string;
1465
+ id: string;
1466
+ }
1467
+ export interface CreateOrgLimitCreditInput {
1468
+ clientMutationId?: string;
1469
+ orgLimitCredit: {
1470
+ defaultLimitId: string;
1471
+ actorId?: string;
1472
+ entityId?: string;
1473
+ organizationId?: string;
1474
+ entityType?: string;
1475
+ amount: string;
1476
+ creditType?: string;
1477
+ reason?: string;
1478
+ };
1479
+ }
1480
+ export interface OrgLimitCreditPatch {
1481
+ defaultLimitId?: string | null;
1482
+ actorId?: string | null;
1483
+ entityId?: string | null;
1484
+ organizationId?: string | null;
1485
+ entityType?: string | null;
1486
+ amount?: string | null;
1487
+ creditType?: string | null;
1488
+ reason?: string | null;
1489
+ }
1490
+ export interface UpdateOrgLimitCreditInput {
1491
+ clientMutationId?: string;
1492
+ id: string;
1493
+ orgLimitCreditPatch: OrgLimitCreditPatch;
1494
+ }
1495
+ export interface DeleteOrgLimitCreditInput {
1496
+ clientMutationId?: string;
1497
+ id: string;
1498
+ }
1499
+ export interface CreateAppLimitWarningInput {
1500
+ clientMutationId?: string;
1501
+ appLimitWarning: {
1502
+ name: string;
1503
+ warningType: string;
1504
+ thresholdValue: string;
1505
+ taskIdentifier: string;
1506
+ };
1507
+ }
1508
+ export interface AppLimitWarningPatch {
1509
+ name?: string | null;
1510
+ warningType?: string | null;
1511
+ thresholdValue?: string | null;
1512
+ taskIdentifier?: string | null;
1513
+ }
1514
+ export interface UpdateAppLimitWarningInput {
1515
+ clientMutationId?: string;
1516
+ id: string;
1517
+ appLimitWarningPatch: AppLimitWarningPatch;
1518
+ }
1519
+ export interface DeleteAppLimitWarningInput {
1520
+ clientMutationId?: string;
1521
+ id: string;
1522
+ }
1523
+ export interface CreateOrgLimitWarningInput {
1524
+ clientMutationId?: string;
1525
+ orgLimitWarning: {
1526
+ name: string;
1527
+ warningType: string;
1528
+ thresholdValue: string;
1529
+ taskIdentifier: string;
1530
+ entityId?: string;
1531
+ };
1532
+ }
1533
+ export interface OrgLimitWarningPatch {
1534
+ name?: string | null;
1535
+ warningType?: string | null;
1536
+ thresholdValue?: string | null;
1537
+ taskIdentifier?: string | null;
1538
+ entityId?: string | null;
1539
+ }
1540
+ export interface UpdateOrgLimitWarningInput {
1541
+ clientMutationId?: string;
1542
+ id: string;
1543
+ orgLimitWarningPatch: OrgLimitWarningPatch;
1544
+ }
1545
+ export interface DeleteOrgLimitWarningInput {
1546
+ clientMutationId?: string;
1547
+ id: string;
1548
+ }
1549
+ export interface CreateAppLimitCreditCodeInput {
1550
+ clientMutationId?: string;
1551
+ appLimitCreditCode: {
1552
+ code: string;
1553
+ maxRedemptions?: number;
1554
+ currentRedemptions?: number;
1555
+ expiresAt?: string;
1556
+ };
1557
+ }
1558
+ export interface AppLimitCreditCodePatch {
1559
+ code?: string | null;
1560
+ maxRedemptions?: number | null;
1561
+ currentRedemptions?: number | null;
1562
+ expiresAt?: string | null;
1563
+ }
1564
+ export interface UpdateAppLimitCreditCodeInput {
1565
+ clientMutationId?: string;
1566
+ id: string;
1567
+ appLimitCreditCodePatch: AppLimitCreditCodePatch;
1568
+ }
1569
+ export interface DeleteAppLimitCreditCodeInput {
1570
+ clientMutationId?: string;
1571
+ id: string;
1572
+ }
1573
+ export interface CreateAppLimitEventInput {
1574
+ clientMutationId?: string;
1575
+ appLimitEvent: {
1576
+ name?: string;
1577
+ actorId?: string;
1578
+ entityId?: string;
1579
+ organizationId?: string;
1580
+ entityType?: string;
1581
+ eventType?: string;
1582
+ delta?: string;
1583
+ numBefore?: string;
1584
+ numAfter?: string;
1585
+ maxAtEvent?: string;
1586
+ reason?: string;
1587
+ };
1588
+ }
1589
+ export interface AppLimitEventPatch {
1590
+ name?: string | null;
1591
+ actorId?: string | null;
1592
+ entityId?: string | null;
1593
+ organizationId?: string | null;
1594
+ entityType?: string | null;
1595
+ eventType?: string | null;
1596
+ delta?: string | null;
1597
+ numBefore?: string | null;
1598
+ numAfter?: string | null;
1599
+ maxAtEvent?: string | null;
1600
+ reason?: string | null;
1601
+ }
1602
+ export interface UpdateAppLimitEventInput {
1603
+ clientMutationId?: string;
1604
+ id: string;
1605
+ appLimitEventPatch: AppLimitEventPatch;
1606
+ }
1607
+ export interface DeleteAppLimitEventInput {
1608
+ clientMutationId?: string;
1609
+ id: string;
1610
+ }
1611
+ export interface CreateOrgLimitEventInput {
1612
+ clientMutationId?: string;
1613
+ orgLimitEvent: {
1614
+ name?: string;
1615
+ actorId?: string;
1616
+ entityId?: string;
1617
+ organizationId?: string;
1618
+ entityType?: string;
1619
+ eventType?: string;
1620
+ delta?: string;
1621
+ numBefore?: string;
1622
+ numAfter?: string;
1623
+ maxAtEvent?: string;
1624
+ reason?: string;
1625
+ };
1626
+ }
1627
+ export interface OrgLimitEventPatch {
1628
+ name?: string | null;
1629
+ actorId?: string | null;
1630
+ entityId?: string | null;
1631
+ organizationId?: string | null;
1632
+ entityType?: string | null;
1633
+ eventType?: string | null;
1634
+ delta?: string | null;
1635
+ numBefore?: string | null;
1636
+ numAfter?: string | null;
1637
+ maxAtEvent?: string | null;
1638
+ reason?: string | null;
1639
+ }
1640
+ export interface UpdateOrgLimitEventInput {
1641
+ clientMutationId?: string;
1642
+ id: string;
1643
+ orgLimitEventPatch: OrgLimitEventPatch;
1644
+ }
1645
+ export interface DeleteOrgLimitEventInput {
1646
+ clientMutationId?: string;
1647
+ id: string;
1648
+ }
1649
+ export interface CreateAppLimitInput {
1650
+ clientMutationId?: string;
1651
+ appLimit: {
1652
+ name?: string;
1653
+ actorId: string;
1654
+ num?: string;
1655
+ max?: string;
1656
+ softMax?: string;
1657
+ windowStart?: string;
1658
+ windowDuration?: IntervalInput;
1659
+ planMax?: string;
1660
+ purchasedCredits?: string;
1661
+ periodCredits?: string;
1662
+ organizationId?: string;
1663
+ entityType?: string;
1664
+ };
1665
+ }
1666
+ export interface AppLimitPatch {
1667
+ name?: string | null;
1668
+ actorId?: string | null;
1669
+ num?: string | null;
1670
+ max?: string | null;
1671
+ softMax?: string | null;
1672
+ windowStart?: string | null;
1673
+ windowDuration?: IntervalInput | null;
1674
+ planMax?: string | null;
1675
+ purchasedCredits?: string | null;
1676
+ periodCredits?: string | null;
1677
+ organizationId?: string | null;
1678
+ entityType?: string | null;
1679
+ }
1680
+ export interface UpdateAppLimitInput {
1681
+ clientMutationId?: string;
1682
+ id: string;
1683
+ appLimitPatch: AppLimitPatch;
1684
+ }
1685
+ export interface DeleteAppLimitInput {
1686
+ clientMutationId?: string;
1687
+ id: string;
1688
+ }
1689
+ export interface CreateOrgLimitAggregateInput {
1690
+ clientMutationId?: string;
1691
+ orgLimitAggregate: {
1692
+ name?: string;
1693
+ entityId: string;
1694
+ num?: string;
1695
+ max?: string;
1696
+ softMax?: string;
1697
+ windowStart?: string;
1698
+ windowDuration?: IntervalInput;
1699
+ planMax?: string;
1700
+ purchasedCredits?: string;
1701
+ periodCredits?: string;
1702
+ reserved?: string;
1703
+ organizationId?: string;
1704
+ entityType?: string;
1705
+ };
1706
+ }
1707
+ export interface OrgLimitAggregatePatch {
1708
+ name?: string | null;
1709
+ entityId?: string | null;
1710
+ num?: string | null;
1711
+ max?: string | null;
1712
+ softMax?: string | null;
1713
+ windowStart?: string | null;
1714
+ windowDuration?: IntervalInput | null;
1715
+ planMax?: string | null;
1716
+ purchasedCredits?: string | null;
1717
+ periodCredits?: string | null;
1718
+ reserved?: string | null;
1719
+ organizationId?: string | null;
1720
+ entityType?: string | null;
1721
+ }
1722
+ export interface UpdateOrgLimitAggregateInput {
1723
+ clientMutationId?: string;
1724
+ id: string;
1725
+ orgLimitAggregatePatch: OrgLimitAggregatePatch;
1726
+ }
1727
+ export interface DeleteOrgLimitAggregateInput {
1728
+ clientMutationId?: string;
1729
+ id: string;
1730
+ }
1731
+ export interface CreateOrgLimitInput {
1732
+ clientMutationId?: string;
1733
+ orgLimit: {
1734
+ name?: string;
1735
+ actorId: string;
1736
+ num?: string;
1737
+ max?: string;
1738
+ softMax?: string;
1739
+ windowStart?: string;
1740
+ windowDuration?: IntervalInput;
1741
+ planMax?: string;
1742
+ purchasedCredits?: string;
1743
+ periodCredits?: string;
1744
+ entityId: string;
1745
+ organizationId?: string;
1746
+ entityType?: string;
1747
+ };
1748
+ }
1749
+ export interface OrgLimitPatch {
1750
+ name?: string | null;
1751
+ actorId?: string | null;
1752
+ num?: string | null;
1753
+ max?: string | null;
1754
+ softMax?: string | null;
1755
+ windowStart?: string | null;
1756
+ windowDuration?: IntervalInput | null;
1757
+ planMax?: string | null;
1758
+ purchasedCredits?: string | null;
1759
+ periodCredits?: string | null;
1760
+ entityId?: string | null;
1761
+ organizationId?: string | null;
1762
+ entityType?: string | null;
1763
+ }
1764
+ export interface UpdateOrgLimitInput {
1765
+ clientMutationId?: string;
1766
+ id: string;
1767
+ orgLimitPatch: OrgLimitPatch;
1768
+ }
1769
+ export interface DeleteOrgLimitInput {
1770
+ clientMutationId?: string;
1771
+ id: string;
1772
+ }
1773
+ export declare const connectionFieldsMap: Record<string, Record<string, string>>;
1774
+ export interface SeedAppLimitCapsDefaultsInput {
1775
+ clientMutationId?: string;
1776
+ defaults?: Record<string, unknown>;
1777
+ }
1778
+ export interface SeedAppLimitDefaultsInput {
1779
+ clientMutationId?: string;
1780
+ defaults?: Record<string, unknown>;
1781
+ }
1782
+ export interface SeedOrgLimitCapsDefaultsInput {
1783
+ clientMutationId?: string;
1784
+ defaults?: Record<string, unknown>;
1785
+ }
1786
+ export interface SeedOrgLimitDefaultsInput {
1787
+ clientMutationId?: string;
1788
+ defaults?: Record<string, unknown>;
1789
+ }
1790
+ export interface ProvisionBucketInput {
1791
+ /** The logical bucket key (e.g., "public", "private") */
1792
+ bucketKey: string;
1793
+ /**
1794
+ * Owner entity ID for entity-scoped bucket provisioning.
1795
+ * Omit for app-level (database-wide) storage.
1796
+ */
1797
+ ownerId?: string;
1798
+ }
1799
+ /** A filter to be used against many `AppLimitCredit` object types. All fields are combined with a logical ‘and.’ */
1800
+ export interface AppLimitDefaultToManyAppLimitCreditFilter {
1801
+ /** Filters to entities where at least one related entity matches. */
1802
+ some?: AppLimitCreditFilter;
1803
+ /** Filters to entities where every related entity matches. */
1804
+ every?: AppLimitCreditFilter;
1805
+ /** Filters to entities where no related entity matches. */
1806
+ none?: AppLimitCreditFilter;
1807
+ }
1808
+ /** A filter to be used against many `AppLimitCreditCodeItem` object types. All fields are combined with a logical ‘and.’ */
1809
+ export interface AppLimitDefaultToManyAppLimitCreditCodeItemFilter {
1810
+ /** Filters to entities where at least one related entity matches. */
1811
+ some?: AppLimitCreditCodeItemFilter;
1812
+ /** Filters to entities where every related entity matches. */
1813
+ every?: AppLimitCreditCodeItemFilter;
1814
+ /** Filters to entities where no related entity matches. */
1815
+ none?: AppLimitCreditCodeItemFilter;
1816
+ }
1817
+ /** A filter to be used against many `OrgLimitCredit` object types. All fields are combined with a logical ‘and.’ */
1818
+ export interface OrgLimitDefaultToManyOrgLimitCreditFilter {
1819
+ /** Filters to entities where at least one related entity matches. */
1820
+ some?: OrgLimitCreditFilter;
1821
+ /** Filters to entities where every related entity matches. */
1822
+ every?: OrgLimitCreditFilter;
1823
+ /** Filters to entities where no related entity matches. */
1824
+ none?: OrgLimitCreditFilter;
1825
+ }
1826
+ /** A filter to be used against many `AppLimitCreditCodeItem` object types. All fields are combined with a logical ‘and.’ */
1827
+ export interface AppLimitCreditCodeToManyAppLimitCreditCodeItemFilter {
1828
+ /** Filters to entities where at least one related entity matches. */
1829
+ some?: AppLimitCreditCodeItemFilter;
1830
+ /** Filters to entities where every related entity matches. */
1831
+ every?: AppLimitCreditCodeItemFilter;
1832
+ /** Filters to entities where no related entity matches. */
1833
+ none?: AppLimitCreditCodeItemFilter;
1834
+ }
1835
+ /** A filter to be used against many `AppLimitCreditRedemption` object types. All fields are combined with a logical ‘and.’ */
1836
+ export interface AppLimitCreditCodeToManyAppLimitCreditRedemptionFilter {
1837
+ /** Filters to entities where at least one related entity matches. */
1838
+ some?: AppLimitCreditRedemptionFilter;
1839
+ /** Filters to entities where every related entity matches. */
1840
+ every?: AppLimitCreditRedemptionFilter;
1841
+ /** Filters to entities where no related entity matches. */
1842
+ none?: AppLimitCreditRedemptionFilter;
1843
+ }
1844
+ /** A filter to be used against Interval fields. All fields are combined with a logical ‘and.’ */
1845
+ export interface IntervalFilter {
1846
+ /** Is null (if `true` is specified) or is not null (if `false` is specified). */
1847
+ isNull?: boolean;
1848
+ /** Equal to the specified value. */
1849
+ equalTo?: IntervalInput;
1850
+ /** Not equal to the specified value. */
1851
+ notEqualTo?: IntervalInput;
1852
+ /** Not equal to the specified value, treating null like an ordinary value. */
1853
+ distinctFrom?: IntervalInput;
1854
+ /** Equal to the specified value, treating null like an ordinary value. */
1855
+ notDistinctFrom?: IntervalInput;
1856
+ /** Included in the specified list. */
1857
+ in?: IntervalInput[];
1858
+ /** Not included in the specified list. */
1859
+ notIn?: IntervalInput[];
1860
+ /** Less than the specified value. */
1861
+ lessThan?: IntervalInput;
1862
+ /** Less than or equal to the specified value. */
1863
+ lessThanOrEqualTo?: IntervalInput;
1864
+ /** Greater than the specified value. */
1865
+ greaterThan?: IntervalInput;
1866
+ /** Greater than or equal to the specified value. */
1867
+ greaterThanOrEqualTo?: IntervalInput;
1868
+ }
1869
+ /** A filter to be used against `AppLimitCredit` object types. All fields are combined with a logical ‘and.’ */
1870
+ export interface AppLimitCreditFilter {
1871
+ /** Filter by the object’s `id` field. */
1872
+ id?: UUIDFilter;
1873
+ /** Filter by the object’s `defaultLimitId` field. */
1874
+ defaultLimitId?: UUIDFilter;
1875
+ /** Filter by the object’s `actorId` field. */
1876
+ actorId?: UUIDFilter;
1877
+ /** Filter by the object’s `amount` field. */
1878
+ amount?: BigIntFilter;
1879
+ /** Filter by the object’s `creditType` field. */
1880
+ creditType?: StringFilter;
1881
+ /** Filter by the object’s `reason` field. */
1882
+ reason?: StringFilter;
1883
+ /** Checks for all expressions in this list. */
1884
+ and?: AppLimitCreditFilter[];
1885
+ /** Checks for any expressions in this list. */
1886
+ or?: AppLimitCreditFilter[];
1887
+ /** Negates the expression. */
1888
+ not?: AppLimitCreditFilter;
1889
+ /** Filter by the object’s `defaultLimit` relation. */
1890
+ defaultLimit?: AppLimitDefaultFilter;
1891
+ }
1892
+ /** A filter to be used against `AppLimitCreditCodeItem` object types. All fields are combined with a logical ‘and.’ */
1893
+ export interface AppLimitCreditCodeItemFilter {
1894
+ /** Filter by the object’s `id` field. */
1895
+ id?: UUIDFilter;
1896
+ /** Filter by the object’s `creditCodeId` field. */
1897
+ creditCodeId?: UUIDFilter;
1898
+ /** Filter by the object’s `defaultLimitId` field. */
1899
+ defaultLimitId?: UUIDFilter;
1900
+ /** Filter by the object’s `amount` field. */
1901
+ amount?: BigIntFilter;
1902
+ /** Filter by the object’s `creditType` field. */
1903
+ creditType?: StringFilter;
1904
+ /** Checks for all expressions in this list. */
1905
+ and?: AppLimitCreditCodeItemFilter[];
1906
+ /** Checks for any expressions in this list. */
1907
+ or?: AppLimitCreditCodeItemFilter[];
1908
+ /** Negates the expression. */
1909
+ not?: AppLimitCreditCodeItemFilter;
1910
+ /** Filter by the object’s `creditCode` relation. */
1911
+ creditCode?: AppLimitCreditCodeFilter;
1912
+ /** Filter by the object’s `defaultLimit` relation. */
1913
+ defaultLimit?: AppLimitDefaultFilter;
1914
+ }
1915
+ /** A filter to be used against `OrgLimitCredit` object types. All fields are combined with a logical ‘and.’ */
1916
+ export interface OrgLimitCreditFilter {
1917
+ /** Filter by the object’s `id` field. */
1918
+ id?: UUIDFilter;
1919
+ /** Filter by the object’s `defaultLimitId` field. */
1920
+ defaultLimitId?: UUIDFilter;
1921
+ /** Filter by the object’s `actorId` field. */
1922
+ actorId?: UUIDFilter;
1923
+ /** Filter by the object’s `entityId` field. */
1924
+ entityId?: UUIDFilter;
1925
+ /** Filter by the object’s `organizationId` field. */
1926
+ organizationId?: UUIDFilter;
1927
+ /** Filter by the object’s `entityType` field. */
1928
+ entityType?: StringFilter;
1929
+ /** Filter by the object’s `amount` field. */
1930
+ amount?: BigIntFilter;
1931
+ /** Filter by the object’s `creditType` field. */
1932
+ creditType?: StringFilter;
1933
+ /** Filter by the object’s `reason` field. */
1934
+ reason?: StringFilter;
1935
+ /** Checks for all expressions in this list. */
1936
+ and?: OrgLimitCreditFilter[];
1937
+ /** Checks for any expressions in this list. */
1938
+ or?: OrgLimitCreditFilter[];
1939
+ /** Negates the expression. */
1940
+ not?: OrgLimitCreditFilter;
1941
+ /** Filter by the object’s `defaultLimit` relation. */
1942
+ defaultLimit?: OrgLimitDefaultFilter;
1943
+ }
1944
+ /** A filter to be used against `AppLimitCreditRedemption` object types. All fields are combined with a logical ‘and.’ */
1945
+ export interface AppLimitCreditRedemptionFilter {
1946
+ /** Filter by the object’s `id` field. */
1947
+ id?: UUIDFilter;
1948
+ /** Filter by the object’s `creditCodeId` field. */
1949
+ creditCodeId?: UUIDFilter;
1950
+ /** Filter by the object’s `entityId` field. */
1951
+ entityId?: UUIDFilter;
1952
+ /** Filter by the object’s `organizationId` field. */
1953
+ organizationId?: UUIDFilter;
1954
+ /** Filter by the object’s `entityType` field. */
1955
+ entityType?: StringFilter;
1956
+ /** Checks for all expressions in this list. */
1957
+ and?: AppLimitCreditRedemptionFilter[];
1958
+ /** Checks for any expressions in this list. */
1959
+ or?: AppLimitCreditRedemptionFilter[];
1960
+ /** Negates the expression. */
1961
+ not?: AppLimitCreditRedemptionFilter;
1962
+ /** Filter by the object’s `creditCode` relation. */
1963
+ creditCode?: AppLimitCreditCodeFilter;
1964
+ }
1965
+ /** An interval of time that has passed where the smallest distinct unit is a second. */
1966
+ export interface IntervalInput {
1967
+ /**
1968
+ * A quantity of seconds. This is the only non-integer field, as all the other
1969
+ * fields will dump their overflow into a smaller unit of time. Intervals don’t
1970
+ * have a smaller unit than seconds.
1971
+ */
1972
+ seconds?: number;
1973
+ /** A quantity of minutes. */
1974
+ minutes?: number;
1975
+ /** A quantity of hours. */
1976
+ hours?: number;
1977
+ /** A quantity of days. */
1978
+ days?: number;
1979
+ /** A quantity of months. */
1980
+ months?: number;
1981
+ /** A quantity of years. */
1982
+ years?: number;
1983
+ }
1984
+ /** A filter to be used against UUID fields. All fields are combined with a logical ‘and.’ */
1985
+ export interface UUIDFilter {
1986
+ /** Is null (if `true` is specified) or is not null (if `false` is specified). */
1987
+ isNull?: boolean;
1988
+ /** Equal to the specified value. */
1989
+ equalTo?: string;
1990
+ /** Not equal to the specified value. */
1991
+ notEqualTo?: string;
1992
+ /** Not equal to the specified value, treating null like an ordinary value. */
1993
+ distinctFrom?: string;
1994
+ /** Equal to the specified value, treating null like an ordinary value. */
1995
+ notDistinctFrom?: string;
1996
+ /** Included in the specified list. */
1997
+ in?: string[];
1998
+ /** Not included in the specified list. */
1999
+ notIn?: string[];
2000
+ /** Less than the specified value. */
2001
+ lessThan?: string;
2002
+ /** Less than or equal to the specified value. */
2003
+ lessThanOrEqualTo?: string;
2004
+ /** Greater than the specified value. */
2005
+ greaterThan?: string;
2006
+ /** Greater than or equal to the specified value. */
2007
+ greaterThanOrEqualTo?: string;
2008
+ }
2009
+ /** A filter to be used against BigInt fields. All fields are combined with a logical ‘and.’ */
2010
+ export interface BigIntFilter {
2011
+ /** Is null (if `true` is specified) or is not null (if `false` is specified). */
2012
+ isNull?: boolean;
2013
+ /** Equal to the specified value. */
2014
+ equalTo?: string;
2015
+ /** Not equal to the specified value. */
2016
+ notEqualTo?: string;
2017
+ /** Not equal to the specified value, treating null like an ordinary value. */
2018
+ distinctFrom?: string;
2019
+ /** Equal to the specified value, treating null like an ordinary value. */
2020
+ notDistinctFrom?: string;
2021
+ /** Included in the specified list. */
2022
+ in?: string[];
2023
+ /** Not included in the specified list. */
2024
+ notIn?: string[];
2025
+ /** Less than the specified value. */
2026
+ lessThan?: string;
2027
+ /** Less than or equal to the specified value. */
2028
+ lessThanOrEqualTo?: string;
2029
+ /** Greater than the specified value. */
2030
+ greaterThan?: string;
2031
+ /** Greater than or equal to the specified value. */
2032
+ greaterThanOrEqualTo?: string;
2033
+ }
2034
+ /** A filter to be used against String fields. All fields are combined with a logical ‘and.’ */
2035
+ export interface StringFilter {
2036
+ /** Is null (if `true` is specified) or is not null (if `false` is specified). */
2037
+ isNull?: boolean;
2038
+ /** Equal to the specified value. */
2039
+ equalTo?: string;
2040
+ /** Not equal to the specified value. */
2041
+ notEqualTo?: string;
2042
+ /** Not equal to the specified value, treating null like an ordinary value. */
2043
+ distinctFrom?: string;
2044
+ /** Equal to the specified value, treating null like an ordinary value. */
2045
+ notDistinctFrom?: string;
2046
+ /** Included in the specified list. */
2047
+ in?: string[];
2048
+ /** Not included in the specified list. */
2049
+ notIn?: string[];
2050
+ /** Less than the specified value. */
2051
+ lessThan?: string;
2052
+ /** Less than or equal to the specified value. */
2053
+ lessThanOrEqualTo?: string;
2054
+ /** Greater than the specified value. */
2055
+ greaterThan?: string;
2056
+ /** Greater than or equal to the specified value. */
2057
+ greaterThanOrEqualTo?: string;
2058
+ /** Contains the specified string (case-sensitive). */
2059
+ includes?: string;
2060
+ /** Does not contain the specified string (case-sensitive). */
2061
+ notIncludes?: string;
2062
+ /** Contains the specified string (case-insensitive). */
2063
+ includesInsensitive?: string;
2064
+ /** Does not contain the specified string (case-insensitive). */
2065
+ notIncludesInsensitive?: string;
2066
+ /** Starts with the specified string (case-sensitive). */
2067
+ startsWith?: string;
2068
+ /** Does not start with the specified string (case-sensitive). */
2069
+ notStartsWith?: string;
2070
+ /** Starts with the specified string (case-insensitive). */
2071
+ startsWithInsensitive?: string;
2072
+ /** Does not start with the specified string (case-insensitive). */
2073
+ notStartsWithInsensitive?: string;
2074
+ /** Ends with the specified string (case-sensitive). */
2075
+ endsWith?: string;
2076
+ /** Does not end with the specified string (case-sensitive). */
2077
+ notEndsWith?: string;
2078
+ /** Ends with the specified string (case-insensitive). */
2079
+ endsWithInsensitive?: string;
2080
+ /** Does not end with the specified string (case-insensitive). */
2081
+ notEndsWithInsensitive?: string;
2082
+ /** Matches the specified pattern (case-sensitive). An underscore (_) matches any single character; a percent sign (%) matches any sequence of zero or more characters. */
2083
+ like?: string;
2084
+ /** Does not match the specified pattern (case-sensitive). An underscore (_) matches any single character; a percent sign (%) matches any sequence of zero or more characters. */
2085
+ notLike?: string;
2086
+ /** Matches the specified pattern (case-insensitive). An underscore (_) matches any single character; a percent sign (%) matches any sequence of zero or more characters. */
2087
+ likeInsensitive?: string;
2088
+ /** Does not match the specified pattern (case-insensitive). An underscore (_) matches any single character; a percent sign (%) matches any sequence of zero or more characters. */
2089
+ notLikeInsensitive?: string;
2090
+ /** Equal to the specified value (case-insensitive). */
2091
+ equalToInsensitive?: string;
2092
+ /** Not equal to the specified value (case-insensitive). */
2093
+ notEqualToInsensitive?: string;
2094
+ /** Not equal to the specified value, treating null like an ordinary value (case-insensitive). */
2095
+ distinctFromInsensitive?: string;
2096
+ /** Equal to the specified value, treating null like an ordinary value (case-insensitive). */
2097
+ notDistinctFromInsensitive?: string;
2098
+ /** Included in the specified list (case-insensitive). */
2099
+ inInsensitive?: string[];
2100
+ /** Not included in the specified list (case-insensitive). */
2101
+ notInInsensitive?: string[];
2102
+ /** Less than the specified value (case-insensitive). */
2103
+ lessThanInsensitive?: string;
2104
+ /** Less than or equal to the specified value (case-insensitive). */
2105
+ lessThanOrEqualToInsensitive?: string;
2106
+ /** Greater than the specified value (case-insensitive). */
2107
+ greaterThanInsensitive?: string;
2108
+ /** Greater than or equal to the specified value (case-insensitive). */
2109
+ greaterThanOrEqualToInsensitive?: string;
2110
+ }
2111
+ /** A filter to be used against `AppLimitDefault` object types. All fields are combined with a logical ‘and.’ */
2112
+ export interface AppLimitDefaultFilter {
2113
+ /** Filter by the object’s `id` field. */
2114
+ id?: UUIDFilter;
2115
+ /** Filter by the object’s `name` field. */
2116
+ name?: StringFilter;
2117
+ /** Filter by the object’s `max` field. */
2118
+ max?: BigIntFilter;
2119
+ /** Filter by the object’s `softMax` field. */
2120
+ softMax?: BigIntFilter;
2121
+ /** Checks for all expressions in this list. */
2122
+ and?: AppLimitDefaultFilter[];
2123
+ /** Checks for any expressions in this list. */
2124
+ or?: AppLimitDefaultFilter[];
2125
+ /** Negates the expression. */
2126
+ not?: AppLimitDefaultFilter;
2127
+ /** Filter by the object’s `appLimitCreditsByDefaultLimitId` relation. */
2128
+ appLimitCreditsByDefaultLimitId?: AppLimitDefaultToManyAppLimitCreditFilter;
2129
+ /** `appLimitCreditsByDefaultLimitId` exist. */
2130
+ appLimitCreditsByDefaultLimitIdExist?: boolean;
2131
+ /** Filter by the object’s `appLimitCreditCodeItemsByDefaultLimitId` relation. */
2132
+ appLimitCreditCodeItemsByDefaultLimitId?: AppLimitDefaultToManyAppLimitCreditCodeItemFilter;
2133
+ /** `appLimitCreditCodeItemsByDefaultLimitId` exist. */
2134
+ appLimitCreditCodeItemsByDefaultLimitIdExist?: boolean;
2135
+ }
2136
+ /** A filter to be used against `AppLimitCreditCode` object types. All fields are combined with a logical ‘and.’ */
2137
+ export interface AppLimitCreditCodeFilter {
2138
+ /** Filter by the object’s `id` field. */
2139
+ id?: UUIDFilter;
2140
+ /** Filter by the object’s `code` field. */
2141
+ code?: StringFilter;
2142
+ /** Filter by the object’s `maxRedemptions` field. */
2143
+ maxRedemptions?: IntFilter;
2144
+ /** Filter by the object’s `currentRedemptions` field. */
2145
+ currentRedemptions?: IntFilter;
2146
+ /** Filter by the object’s `expiresAt` field. */
2147
+ expiresAt?: DatetimeFilter;
2148
+ /** Checks for all expressions in this list. */
2149
+ and?: AppLimitCreditCodeFilter[];
2150
+ /** Checks for any expressions in this list. */
2151
+ or?: AppLimitCreditCodeFilter[];
2152
+ /** Negates the expression. */
2153
+ not?: AppLimitCreditCodeFilter;
2154
+ /** Filter by the object’s `appLimitCreditCodeItemsByCreditCodeId` relation. */
2155
+ appLimitCreditCodeItemsByCreditCodeId?: AppLimitCreditCodeToManyAppLimitCreditCodeItemFilter;
2156
+ /** `appLimitCreditCodeItemsByCreditCodeId` exist. */
2157
+ appLimitCreditCodeItemsByCreditCodeIdExist?: boolean;
2158
+ /** Filter by the object’s `appLimitCreditRedemptionsByCreditCodeId` relation. */
2159
+ appLimitCreditRedemptionsByCreditCodeId?: AppLimitCreditCodeToManyAppLimitCreditRedemptionFilter;
2160
+ /** `appLimitCreditRedemptionsByCreditCodeId` exist. */
2161
+ appLimitCreditRedemptionsByCreditCodeIdExist?: boolean;
2162
+ }
2163
+ /** A filter to be used against `OrgLimitDefault` object types. All fields are combined with a logical ‘and.’ */
2164
+ export interface OrgLimitDefaultFilter {
2165
+ /** Filter by the object’s `id` field. */
2166
+ id?: UUIDFilter;
2167
+ /** Filter by the object’s `name` field. */
2168
+ name?: StringFilter;
2169
+ /** Filter by the object’s `max` field. */
2170
+ max?: BigIntFilter;
2171
+ /** Filter by the object’s `softMax` field. */
2172
+ softMax?: BigIntFilter;
2173
+ /** Checks for all expressions in this list. */
2174
+ and?: OrgLimitDefaultFilter[];
2175
+ /** Checks for any expressions in this list. */
2176
+ or?: OrgLimitDefaultFilter[];
2177
+ /** Negates the expression. */
2178
+ not?: OrgLimitDefaultFilter;
2179
+ /** Filter by the object’s `orgLimitCreditsByDefaultLimitId` relation. */
2180
+ orgLimitCreditsByDefaultLimitId?: OrgLimitDefaultToManyOrgLimitCreditFilter;
2181
+ /** `orgLimitCreditsByDefaultLimitId` exist. */
2182
+ orgLimitCreditsByDefaultLimitIdExist?: boolean;
2183
+ }
2184
+ /** A filter to be used against Int fields. All fields are combined with a logical ‘and.’ */
2185
+ export interface IntFilter {
2186
+ /** Is null (if `true` is specified) or is not null (if `false` is specified). */
2187
+ isNull?: boolean;
2188
+ /** Equal to the specified value. */
2189
+ equalTo?: number;
2190
+ /** Not equal to the specified value. */
2191
+ notEqualTo?: number;
2192
+ /** Not equal to the specified value, treating null like an ordinary value. */
2193
+ distinctFrom?: number;
2194
+ /** Equal to the specified value, treating null like an ordinary value. */
2195
+ notDistinctFrom?: number;
2196
+ /** Included in the specified list. */
2197
+ in?: number[];
2198
+ /** Not included in the specified list. */
2199
+ notIn?: number[];
2200
+ /** Less than the specified value. */
2201
+ lessThan?: number;
2202
+ /** Less than or equal to the specified value. */
2203
+ lessThanOrEqualTo?: number;
2204
+ /** Greater than the specified value. */
2205
+ greaterThan?: number;
2206
+ /** Greater than or equal to the specified value. */
2207
+ greaterThanOrEqualTo?: number;
2208
+ }
2209
+ /** A filter to be used against Datetime fields. All fields are combined with a logical ‘and.’ */
2210
+ export interface DatetimeFilter {
2211
+ /** Is null (if `true` is specified) or is not null (if `false` is specified). */
2212
+ isNull?: boolean;
2213
+ /** Equal to the specified value. */
2214
+ equalTo?: string;
2215
+ /** Not equal to the specified value. */
2216
+ notEqualTo?: string;
2217
+ /** Not equal to the specified value, treating null like an ordinary value. */
2218
+ distinctFrom?: string;
2219
+ /** Equal to the specified value, treating null like an ordinary value. */
2220
+ notDistinctFrom?: string;
2221
+ /** Included in the specified list. */
2222
+ in?: string[];
2223
+ /** Not included in the specified list. */
2224
+ notIn?: string[];
2225
+ /** Less than the specified value. */
2226
+ lessThan?: string;
2227
+ /** Less than or equal to the specified value. */
2228
+ lessThanOrEqualTo?: string;
2229
+ /** Greater than the specified value. */
2230
+ greaterThan?: string;
2231
+ /** Greater than or equal to the specified value. */
2232
+ greaterThanOrEqualTo?: string;
2233
+ }
2234
+ export interface SeedAppLimitCapsDefaultsPayload {
2235
+ clientMutationId?: string | null;
2236
+ result?: boolean | null;
2237
+ }
2238
+ export type SeedAppLimitCapsDefaultsPayloadSelect = {
2239
+ clientMutationId?: boolean;
2240
+ result?: boolean;
2241
+ };
2242
+ export interface SeedAppLimitDefaultsPayload {
2243
+ clientMutationId?: string | null;
2244
+ result?: boolean | null;
2245
+ }
2246
+ export type SeedAppLimitDefaultsPayloadSelect = {
2247
+ clientMutationId?: boolean;
2248
+ result?: boolean;
2249
+ };
2250
+ export interface SeedOrgLimitCapsDefaultsPayload {
2251
+ clientMutationId?: string | null;
2252
+ result?: boolean | null;
2253
+ }
2254
+ export type SeedOrgLimitCapsDefaultsPayloadSelect = {
2255
+ clientMutationId?: boolean;
2256
+ result?: boolean;
2257
+ };
2258
+ export interface SeedOrgLimitDefaultsPayload {
2259
+ clientMutationId?: string | null;
2260
+ result?: boolean | null;
2261
+ }
2262
+ export type SeedOrgLimitDefaultsPayloadSelect = {
2263
+ clientMutationId?: boolean;
2264
+ result?: boolean;
2265
+ };
2266
+ export interface ProvisionBucketPayload {
2267
+ /** Whether provisioning succeeded */
2268
+ success: boolean;
2269
+ /** The S3 bucket name that was provisioned */
2270
+ bucketName: string;
2271
+ /** The access type applied */
2272
+ accessType: string;
2273
+ /** The storage provider used */
2274
+ provider: string;
2275
+ /** The S3 endpoint (null for AWS S3 default) */
2276
+ endpoint?: string | null;
2277
+ /** Error message if provisioning failed */
2278
+ error?: string | null;
2279
+ }
2280
+ export type ProvisionBucketPayloadSelect = {
2281
+ success?: boolean;
2282
+ bucketName?: boolean;
2283
+ accessType?: boolean;
2284
+ provider?: boolean;
2285
+ endpoint?: boolean;
2286
+ error?: boolean;
2287
+ };
2288
+ export interface CreateAppLimitCapsDefaultPayload {
2289
+ clientMutationId?: string | null;
2290
+ /** The `AppLimitCapsDefault` that was created by this mutation. */
2291
+ appLimitCapsDefault?: AppLimitCapsDefault | null;
2292
+ appLimitCapsDefaultEdge?: AppLimitCapsDefaultEdge | null;
2293
+ }
2294
+ export type CreateAppLimitCapsDefaultPayloadSelect = {
2295
+ clientMutationId?: boolean;
2296
+ appLimitCapsDefault?: {
2297
+ select: AppLimitCapsDefaultSelect;
2298
+ };
2299
+ appLimitCapsDefaultEdge?: {
2300
+ select: AppLimitCapsDefaultEdgeSelect;
2301
+ };
2302
+ };
2303
+ export interface UpdateAppLimitCapsDefaultPayload {
2304
+ clientMutationId?: string | null;
2305
+ /** The `AppLimitCapsDefault` that was updated by this mutation. */
2306
+ appLimitCapsDefault?: AppLimitCapsDefault | null;
2307
+ appLimitCapsDefaultEdge?: AppLimitCapsDefaultEdge | null;
2308
+ }
2309
+ export type UpdateAppLimitCapsDefaultPayloadSelect = {
2310
+ clientMutationId?: boolean;
2311
+ appLimitCapsDefault?: {
2312
+ select: AppLimitCapsDefaultSelect;
2313
+ };
2314
+ appLimitCapsDefaultEdge?: {
2315
+ select: AppLimitCapsDefaultEdgeSelect;
2316
+ };
2317
+ };
2318
+ export interface DeleteAppLimitCapsDefaultPayload {
2319
+ clientMutationId?: string | null;
2320
+ /** The `AppLimitCapsDefault` that was deleted by this mutation. */
2321
+ appLimitCapsDefault?: AppLimitCapsDefault | null;
2322
+ appLimitCapsDefaultEdge?: AppLimitCapsDefaultEdge | null;
2323
+ }
2324
+ export type DeleteAppLimitCapsDefaultPayloadSelect = {
2325
+ clientMutationId?: boolean;
2326
+ appLimitCapsDefault?: {
2327
+ select: AppLimitCapsDefaultSelect;
2328
+ };
2329
+ appLimitCapsDefaultEdge?: {
2330
+ select: AppLimitCapsDefaultEdgeSelect;
2331
+ };
2332
+ };
2333
+ export interface CreateOrgLimitCapsDefaultPayload {
2334
+ clientMutationId?: string | null;
2335
+ /** The `OrgLimitCapsDefault` that was created by this mutation. */
2336
+ orgLimitCapsDefault?: OrgLimitCapsDefault | null;
2337
+ orgLimitCapsDefaultEdge?: OrgLimitCapsDefaultEdge | null;
2338
+ }
2339
+ export type CreateOrgLimitCapsDefaultPayloadSelect = {
2340
+ clientMutationId?: boolean;
2341
+ orgLimitCapsDefault?: {
2342
+ select: OrgLimitCapsDefaultSelect;
2343
+ };
2344
+ orgLimitCapsDefaultEdge?: {
2345
+ select: OrgLimitCapsDefaultEdgeSelect;
2346
+ };
2347
+ };
2348
+ export interface UpdateOrgLimitCapsDefaultPayload {
2349
+ clientMutationId?: string | null;
2350
+ /** The `OrgLimitCapsDefault` that was updated by this mutation. */
2351
+ orgLimitCapsDefault?: OrgLimitCapsDefault | null;
2352
+ orgLimitCapsDefaultEdge?: OrgLimitCapsDefaultEdge | null;
2353
+ }
2354
+ export type UpdateOrgLimitCapsDefaultPayloadSelect = {
2355
+ clientMutationId?: boolean;
2356
+ orgLimitCapsDefault?: {
2357
+ select: OrgLimitCapsDefaultSelect;
2358
+ };
2359
+ orgLimitCapsDefaultEdge?: {
2360
+ select: OrgLimitCapsDefaultEdgeSelect;
2361
+ };
2362
+ };
2363
+ export interface DeleteOrgLimitCapsDefaultPayload {
2364
+ clientMutationId?: string | null;
2365
+ /** The `OrgLimitCapsDefault` that was deleted by this mutation. */
2366
+ orgLimitCapsDefault?: OrgLimitCapsDefault | null;
2367
+ orgLimitCapsDefaultEdge?: OrgLimitCapsDefaultEdge | null;
2368
+ }
2369
+ export type DeleteOrgLimitCapsDefaultPayloadSelect = {
2370
+ clientMutationId?: boolean;
2371
+ orgLimitCapsDefault?: {
2372
+ select: OrgLimitCapsDefaultSelect;
2373
+ };
2374
+ orgLimitCapsDefaultEdge?: {
2375
+ select: OrgLimitCapsDefaultEdgeSelect;
2376
+ };
2377
+ };
2378
+ export interface CreateAppLimitCapPayload {
2379
+ clientMutationId?: string | null;
2380
+ /** The `AppLimitCap` that was created by this mutation. */
2381
+ appLimitCap?: AppLimitCap | null;
2382
+ appLimitCapEdge?: AppLimitCapEdge | null;
2383
+ }
2384
+ export type CreateAppLimitCapPayloadSelect = {
2385
+ clientMutationId?: boolean;
2386
+ appLimitCap?: {
2387
+ select: AppLimitCapSelect;
2388
+ };
2389
+ appLimitCapEdge?: {
2390
+ select: AppLimitCapEdgeSelect;
2391
+ };
2392
+ };
2393
+ export interface UpdateAppLimitCapPayload {
2394
+ clientMutationId?: string | null;
2395
+ /** The `AppLimitCap` that was updated by this mutation. */
2396
+ appLimitCap?: AppLimitCap | null;
2397
+ appLimitCapEdge?: AppLimitCapEdge | null;
2398
+ }
2399
+ export type UpdateAppLimitCapPayloadSelect = {
2400
+ clientMutationId?: boolean;
2401
+ appLimitCap?: {
2402
+ select: AppLimitCapSelect;
2403
+ };
2404
+ appLimitCapEdge?: {
2405
+ select: AppLimitCapEdgeSelect;
2406
+ };
2407
+ };
2408
+ export interface DeleteAppLimitCapPayload {
2409
+ clientMutationId?: string | null;
2410
+ /** The `AppLimitCap` that was deleted by this mutation. */
2411
+ appLimitCap?: AppLimitCap | null;
2412
+ appLimitCapEdge?: AppLimitCapEdge | null;
2413
+ }
2414
+ export type DeleteAppLimitCapPayloadSelect = {
2415
+ clientMutationId?: boolean;
2416
+ appLimitCap?: {
2417
+ select: AppLimitCapSelect;
2418
+ };
2419
+ appLimitCapEdge?: {
2420
+ select: AppLimitCapEdgeSelect;
2421
+ };
2422
+ };
2423
+ export interface CreateOrgLimitCapPayload {
2424
+ clientMutationId?: string | null;
2425
+ /** The `OrgLimitCap` that was created by this mutation. */
2426
+ orgLimitCap?: OrgLimitCap | null;
2427
+ orgLimitCapEdge?: OrgLimitCapEdge | null;
2428
+ }
2429
+ export type CreateOrgLimitCapPayloadSelect = {
2430
+ clientMutationId?: boolean;
2431
+ orgLimitCap?: {
2432
+ select: OrgLimitCapSelect;
2433
+ };
2434
+ orgLimitCapEdge?: {
2435
+ select: OrgLimitCapEdgeSelect;
2436
+ };
2437
+ };
2438
+ export interface UpdateOrgLimitCapPayload {
2439
+ clientMutationId?: string | null;
2440
+ /** The `OrgLimitCap` that was updated by this mutation. */
2441
+ orgLimitCap?: OrgLimitCap | null;
2442
+ orgLimitCapEdge?: OrgLimitCapEdge | null;
2443
+ }
2444
+ export type UpdateOrgLimitCapPayloadSelect = {
2445
+ clientMutationId?: boolean;
2446
+ orgLimitCap?: {
2447
+ select: OrgLimitCapSelect;
2448
+ };
2449
+ orgLimitCapEdge?: {
2450
+ select: OrgLimitCapEdgeSelect;
2451
+ };
2452
+ };
2453
+ export interface DeleteOrgLimitCapPayload {
2454
+ clientMutationId?: string | null;
2455
+ /** The `OrgLimitCap` that was deleted by this mutation. */
2456
+ orgLimitCap?: OrgLimitCap | null;
2457
+ orgLimitCapEdge?: OrgLimitCapEdge | null;
2458
+ }
2459
+ export type DeleteOrgLimitCapPayloadSelect = {
2460
+ clientMutationId?: boolean;
2461
+ orgLimitCap?: {
2462
+ select: OrgLimitCapSelect;
2463
+ };
2464
+ orgLimitCapEdge?: {
2465
+ select: OrgLimitCapEdgeSelect;
2466
+ };
2467
+ };
2468
+ export interface CreateAppLimitDefaultPayload {
2469
+ clientMutationId?: string | null;
2470
+ /** The `AppLimitDefault` that was created by this mutation. */
2471
+ appLimitDefault?: AppLimitDefault | null;
2472
+ appLimitDefaultEdge?: AppLimitDefaultEdge | null;
2473
+ }
2474
+ export type CreateAppLimitDefaultPayloadSelect = {
2475
+ clientMutationId?: boolean;
2476
+ appLimitDefault?: {
2477
+ select: AppLimitDefaultSelect;
2478
+ };
2479
+ appLimitDefaultEdge?: {
2480
+ select: AppLimitDefaultEdgeSelect;
2481
+ };
2482
+ };
2483
+ export interface UpdateAppLimitDefaultPayload {
2484
+ clientMutationId?: string | null;
2485
+ /** The `AppLimitDefault` that was updated by this mutation. */
2486
+ appLimitDefault?: AppLimitDefault | null;
2487
+ appLimitDefaultEdge?: AppLimitDefaultEdge | null;
2488
+ }
2489
+ export type UpdateAppLimitDefaultPayloadSelect = {
2490
+ clientMutationId?: boolean;
2491
+ appLimitDefault?: {
2492
+ select: AppLimitDefaultSelect;
2493
+ };
2494
+ appLimitDefaultEdge?: {
2495
+ select: AppLimitDefaultEdgeSelect;
2496
+ };
2497
+ };
2498
+ export interface DeleteAppLimitDefaultPayload {
2499
+ clientMutationId?: string | null;
2500
+ /** The `AppLimitDefault` that was deleted by this mutation. */
2501
+ appLimitDefault?: AppLimitDefault | null;
2502
+ appLimitDefaultEdge?: AppLimitDefaultEdge | null;
2503
+ }
2504
+ export type DeleteAppLimitDefaultPayloadSelect = {
2505
+ clientMutationId?: boolean;
2506
+ appLimitDefault?: {
2507
+ select: AppLimitDefaultSelect;
2508
+ };
2509
+ appLimitDefaultEdge?: {
2510
+ select: AppLimitDefaultEdgeSelect;
2511
+ };
2512
+ };
2513
+ export interface CreateAppLimitCreditPayload {
2514
+ clientMutationId?: string | null;
2515
+ /** The `AppLimitCredit` that was created by this mutation. */
2516
+ appLimitCredit?: AppLimitCredit | null;
2517
+ appLimitCreditEdge?: AppLimitCreditEdge | null;
2518
+ }
2519
+ export type CreateAppLimitCreditPayloadSelect = {
2520
+ clientMutationId?: boolean;
2521
+ appLimitCredit?: {
2522
+ select: AppLimitCreditSelect;
2523
+ };
2524
+ appLimitCreditEdge?: {
2525
+ select: AppLimitCreditEdgeSelect;
2526
+ };
2527
+ };
2528
+ export interface UpdateAppLimitCreditPayload {
2529
+ clientMutationId?: string | null;
2530
+ /** The `AppLimitCredit` that was updated by this mutation. */
2531
+ appLimitCredit?: AppLimitCredit | null;
2532
+ appLimitCreditEdge?: AppLimitCreditEdge | null;
2533
+ }
2534
+ export type UpdateAppLimitCreditPayloadSelect = {
2535
+ clientMutationId?: boolean;
2536
+ appLimitCredit?: {
2537
+ select: AppLimitCreditSelect;
2538
+ };
2539
+ appLimitCreditEdge?: {
2540
+ select: AppLimitCreditEdgeSelect;
2541
+ };
2542
+ };
2543
+ export interface DeleteAppLimitCreditPayload {
2544
+ clientMutationId?: string | null;
2545
+ /** The `AppLimitCredit` that was deleted by this mutation. */
2546
+ appLimitCredit?: AppLimitCredit | null;
2547
+ appLimitCreditEdge?: AppLimitCreditEdge | null;
2548
+ }
2549
+ export type DeleteAppLimitCreditPayloadSelect = {
2550
+ clientMutationId?: boolean;
2551
+ appLimitCredit?: {
2552
+ select: AppLimitCreditSelect;
2553
+ };
2554
+ appLimitCreditEdge?: {
2555
+ select: AppLimitCreditEdgeSelect;
2556
+ };
2557
+ };
2558
+ export interface CreateAppLimitCreditCodeItemPayload {
2559
+ clientMutationId?: string | null;
2560
+ /** The `AppLimitCreditCodeItem` that was created by this mutation. */
2561
+ appLimitCreditCodeItem?: AppLimitCreditCodeItem | null;
2562
+ appLimitCreditCodeItemEdge?: AppLimitCreditCodeItemEdge | null;
2563
+ }
2564
+ export type CreateAppLimitCreditCodeItemPayloadSelect = {
2565
+ clientMutationId?: boolean;
2566
+ appLimitCreditCodeItem?: {
2567
+ select: AppLimitCreditCodeItemSelect;
2568
+ };
2569
+ appLimitCreditCodeItemEdge?: {
2570
+ select: AppLimitCreditCodeItemEdgeSelect;
2571
+ };
2572
+ };
2573
+ export interface UpdateAppLimitCreditCodeItemPayload {
2574
+ clientMutationId?: string | null;
2575
+ /** The `AppLimitCreditCodeItem` that was updated by this mutation. */
2576
+ appLimitCreditCodeItem?: AppLimitCreditCodeItem | null;
2577
+ appLimitCreditCodeItemEdge?: AppLimitCreditCodeItemEdge | null;
2578
+ }
2579
+ export type UpdateAppLimitCreditCodeItemPayloadSelect = {
2580
+ clientMutationId?: boolean;
2581
+ appLimitCreditCodeItem?: {
2582
+ select: AppLimitCreditCodeItemSelect;
2583
+ };
2584
+ appLimitCreditCodeItemEdge?: {
2585
+ select: AppLimitCreditCodeItemEdgeSelect;
2586
+ };
2587
+ };
2588
+ export interface DeleteAppLimitCreditCodeItemPayload {
2589
+ clientMutationId?: string | null;
2590
+ /** The `AppLimitCreditCodeItem` that was deleted by this mutation. */
2591
+ appLimitCreditCodeItem?: AppLimitCreditCodeItem | null;
2592
+ appLimitCreditCodeItemEdge?: AppLimitCreditCodeItemEdge | null;
2593
+ }
2594
+ export type DeleteAppLimitCreditCodeItemPayloadSelect = {
2595
+ clientMutationId?: boolean;
2596
+ appLimitCreditCodeItem?: {
2597
+ select: AppLimitCreditCodeItemSelect;
2598
+ };
2599
+ appLimitCreditCodeItemEdge?: {
2600
+ select: AppLimitCreditCodeItemEdgeSelect;
2601
+ };
2602
+ };
2603
+ export interface CreateAppLimitCreditRedemptionPayload {
2604
+ clientMutationId?: string | null;
2605
+ /** The `AppLimitCreditRedemption` that was created by this mutation. */
2606
+ appLimitCreditRedemption?: AppLimitCreditRedemption | null;
2607
+ appLimitCreditRedemptionEdge?: AppLimitCreditRedemptionEdge | null;
2608
+ }
2609
+ export type CreateAppLimitCreditRedemptionPayloadSelect = {
2610
+ clientMutationId?: boolean;
2611
+ appLimitCreditRedemption?: {
2612
+ select: AppLimitCreditRedemptionSelect;
2613
+ };
2614
+ appLimitCreditRedemptionEdge?: {
2615
+ select: AppLimitCreditRedemptionEdgeSelect;
2616
+ };
2617
+ };
2618
+ export interface UpdateAppLimitCreditRedemptionPayload {
2619
+ clientMutationId?: string | null;
2620
+ /** The `AppLimitCreditRedemption` that was updated by this mutation. */
2621
+ appLimitCreditRedemption?: AppLimitCreditRedemption | null;
2622
+ appLimitCreditRedemptionEdge?: AppLimitCreditRedemptionEdge | null;
2623
+ }
2624
+ export type UpdateAppLimitCreditRedemptionPayloadSelect = {
2625
+ clientMutationId?: boolean;
2626
+ appLimitCreditRedemption?: {
2627
+ select: AppLimitCreditRedemptionSelect;
2628
+ };
2629
+ appLimitCreditRedemptionEdge?: {
2630
+ select: AppLimitCreditRedemptionEdgeSelect;
2631
+ };
2632
+ };
2633
+ export interface DeleteAppLimitCreditRedemptionPayload {
2634
+ clientMutationId?: string | null;
2635
+ /** The `AppLimitCreditRedemption` that was deleted by this mutation. */
2636
+ appLimitCreditRedemption?: AppLimitCreditRedemption | null;
2637
+ appLimitCreditRedemptionEdge?: AppLimitCreditRedemptionEdge | null;
2638
+ }
2639
+ export type DeleteAppLimitCreditRedemptionPayloadSelect = {
2640
+ clientMutationId?: boolean;
2641
+ appLimitCreditRedemption?: {
2642
+ select: AppLimitCreditRedemptionSelect;
2643
+ };
2644
+ appLimitCreditRedemptionEdge?: {
2645
+ select: AppLimitCreditRedemptionEdgeSelect;
2646
+ };
2647
+ };
2648
+ export interface CreateOrgLimitDefaultPayload {
2649
+ clientMutationId?: string | null;
2650
+ /** The `OrgLimitDefault` that was created by this mutation. */
2651
+ orgLimitDefault?: OrgLimitDefault | null;
2652
+ orgLimitDefaultEdge?: OrgLimitDefaultEdge | null;
2653
+ }
2654
+ export type CreateOrgLimitDefaultPayloadSelect = {
2655
+ clientMutationId?: boolean;
2656
+ orgLimitDefault?: {
2657
+ select: OrgLimitDefaultSelect;
2658
+ };
2659
+ orgLimitDefaultEdge?: {
2660
+ select: OrgLimitDefaultEdgeSelect;
2661
+ };
2662
+ };
2663
+ export interface UpdateOrgLimitDefaultPayload {
2664
+ clientMutationId?: string | null;
2665
+ /** The `OrgLimitDefault` that was updated by this mutation. */
2666
+ orgLimitDefault?: OrgLimitDefault | null;
2667
+ orgLimitDefaultEdge?: OrgLimitDefaultEdge | null;
2668
+ }
2669
+ export type UpdateOrgLimitDefaultPayloadSelect = {
2670
+ clientMutationId?: boolean;
2671
+ orgLimitDefault?: {
2672
+ select: OrgLimitDefaultSelect;
2673
+ };
2674
+ orgLimitDefaultEdge?: {
2675
+ select: OrgLimitDefaultEdgeSelect;
2676
+ };
2677
+ };
2678
+ export interface DeleteOrgLimitDefaultPayload {
2679
+ clientMutationId?: string | null;
2680
+ /** The `OrgLimitDefault` that was deleted by this mutation. */
2681
+ orgLimitDefault?: OrgLimitDefault | null;
2682
+ orgLimitDefaultEdge?: OrgLimitDefaultEdge | null;
2683
+ }
2684
+ export type DeleteOrgLimitDefaultPayloadSelect = {
2685
+ clientMutationId?: boolean;
2686
+ orgLimitDefault?: {
2687
+ select: OrgLimitDefaultSelect;
2688
+ };
2689
+ orgLimitDefaultEdge?: {
2690
+ select: OrgLimitDefaultEdgeSelect;
2691
+ };
2692
+ };
2693
+ export interface CreateOrgLimitCreditPayload {
2694
+ clientMutationId?: string | null;
2695
+ /** The `OrgLimitCredit` that was created by this mutation. */
2696
+ orgLimitCredit?: OrgLimitCredit | null;
2697
+ orgLimitCreditEdge?: OrgLimitCreditEdge | null;
2698
+ }
2699
+ export type CreateOrgLimitCreditPayloadSelect = {
2700
+ clientMutationId?: boolean;
2701
+ orgLimitCredit?: {
2702
+ select: OrgLimitCreditSelect;
2703
+ };
2704
+ orgLimitCreditEdge?: {
2705
+ select: OrgLimitCreditEdgeSelect;
2706
+ };
2707
+ };
2708
+ export interface UpdateOrgLimitCreditPayload {
2709
+ clientMutationId?: string | null;
2710
+ /** The `OrgLimitCredit` that was updated by this mutation. */
2711
+ orgLimitCredit?: OrgLimitCredit | null;
2712
+ orgLimitCreditEdge?: OrgLimitCreditEdge | null;
2713
+ }
2714
+ export type UpdateOrgLimitCreditPayloadSelect = {
2715
+ clientMutationId?: boolean;
2716
+ orgLimitCredit?: {
2717
+ select: OrgLimitCreditSelect;
2718
+ };
2719
+ orgLimitCreditEdge?: {
2720
+ select: OrgLimitCreditEdgeSelect;
2721
+ };
2722
+ };
2723
+ export interface DeleteOrgLimitCreditPayload {
2724
+ clientMutationId?: string | null;
2725
+ /** The `OrgLimitCredit` that was deleted by this mutation. */
2726
+ orgLimitCredit?: OrgLimitCredit | null;
2727
+ orgLimitCreditEdge?: OrgLimitCreditEdge | null;
2728
+ }
2729
+ export type DeleteOrgLimitCreditPayloadSelect = {
2730
+ clientMutationId?: boolean;
2731
+ orgLimitCredit?: {
2732
+ select: OrgLimitCreditSelect;
2733
+ };
2734
+ orgLimitCreditEdge?: {
2735
+ select: OrgLimitCreditEdgeSelect;
2736
+ };
2737
+ };
2738
+ export interface CreateAppLimitWarningPayload {
2739
+ clientMutationId?: string | null;
2740
+ /** The `AppLimitWarning` that was created by this mutation. */
2741
+ appLimitWarning?: AppLimitWarning | null;
2742
+ appLimitWarningEdge?: AppLimitWarningEdge | null;
2743
+ }
2744
+ export type CreateAppLimitWarningPayloadSelect = {
2745
+ clientMutationId?: boolean;
2746
+ appLimitWarning?: {
2747
+ select: AppLimitWarningSelect;
2748
+ };
2749
+ appLimitWarningEdge?: {
2750
+ select: AppLimitWarningEdgeSelect;
2751
+ };
2752
+ };
2753
+ export interface UpdateAppLimitWarningPayload {
2754
+ clientMutationId?: string | null;
2755
+ /** The `AppLimitWarning` that was updated by this mutation. */
2756
+ appLimitWarning?: AppLimitWarning | null;
2757
+ appLimitWarningEdge?: AppLimitWarningEdge | null;
2758
+ }
2759
+ export type UpdateAppLimitWarningPayloadSelect = {
2760
+ clientMutationId?: boolean;
2761
+ appLimitWarning?: {
2762
+ select: AppLimitWarningSelect;
2763
+ };
2764
+ appLimitWarningEdge?: {
2765
+ select: AppLimitWarningEdgeSelect;
2766
+ };
2767
+ };
2768
+ export interface DeleteAppLimitWarningPayload {
2769
+ clientMutationId?: string | null;
2770
+ /** The `AppLimitWarning` that was deleted by this mutation. */
2771
+ appLimitWarning?: AppLimitWarning | null;
2772
+ appLimitWarningEdge?: AppLimitWarningEdge | null;
2773
+ }
2774
+ export type DeleteAppLimitWarningPayloadSelect = {
2775
+ clientMutationId?: boolean;
2776
+ appLimitWarning?: {
2777
+ select: AppLimitWarningSelect;
2778
+ };
2779
+ appLimitWarningEdge?: {
2780
+ select: AppLimitWarningEdgeSelect;
2781
+ };
2782
+ };
2783
+ export interface CreateOrgLimitWarningPayload {
2784
+ clientMutationId?: string | null;
2785
+ /** The `OrgLimitWarning` that was created by this mutation. */
2786
+ orgLimitWarning?: OrgLimitWarning | null;
2787
+ orgLimitWarningEdge?: OrgLimitWarningEdge | null;
2788
+ }
2789
+ export type CreateOrgLimitWarningPayloadSelect = {
2790
+ clientMutationId?: boolean;
2791
+ orgLimitWarning?: {
2792
+ select: OrgLimitWarningSelect;
2793
+ };
2794
+ orgLimitWarningEdge?: {
2795
+ select: OrgLimitWarningEdgeSelect;
2796
+ };
2797
+ };
2798
+ export interface UpdateOrgLimitWarningPayload {
2799
+ clientMutationId?: string | null;
2800
+ /** The `OrgLimitWarning` that was updated by this mutation. */
2801
+ orgLimitWarning?: OrgLimitWarning | null;
2802
+ orgLimitWarningEdge?: OrgLimitWarningEdge | null;
2803
+ }
2804
+ export type UpdateOrgLimitWarningPayloadSelect = {
2805
+ clientMutationId?: boolean;
2806
+ orgLimitWarning?: {
2807
+ select: OrgLimitWarningSelect;
2808
+ };
2809
+ orgLimitWarningEdge?: {
2810
+ select: OrgLimitWarningEdgeSelect;
2811
+ };
2812
+ };
2813
+ export interface DeleteOrgLimitWarningPayload {
2814
+ clientMutationId?: string | null;
2815
+ /** The `OrgLimitWarning` that was deleted by this mutation. */
2816
+ orgLimitWarning?: OrgLimitWarning | null;
2817
+ orgLimitWarningEdge?: OrgLimitWarningEdge | null;
2818
+ }
2819
+ export type DeleteOrgLimitWarningPayloadSelect = {
2820
+ clientMutationId?: boolean;
2821
+ orgLimitWarning?: {
2822
+ select: OrgLimitWarningSelect;
2823
+ };
2824
+ orgLimitWarningEdge?: {
2825
+ select: OrgLimitWarningEdgeSelect;
2826
+ };
2827
+ };
2828
+ export interface CreateAppLimitCreditCodePayload {
2829
+ clientMutationId?: string | null;
2830
+ /** The `AppLimitCreditCode` that was created by this mutation. */
2831
+ appLimitCreditCode?: AppLimitCreditCode | null;
2832
+ appLimitCreditCodeEdge?: AppLimitCreditCodeEdge | null;
2833
+ }
2834
+ export type CreateAppLimitCreditCodePayloadSelect = {
2835
+ clientMutationId?: boolean;
2836
+ appLimitCreditCode?: {
2837
+ select: AppLimitCreditCodeSelect;
2838
+ };
2839
+ appLimitCreditCodeEdge?: {
2840
+ select: AppLimitCreditCodeEdgeSelect;
2841
+ };
2842
+ };
2843
+ export interface UpdateAppLimitCreditCodePayload {
2844
+ clientMutationId?: string | null;
2845
+ /** The `AppLimitCreditCode` that was updated by this mutation. */
2846
+ appLimitCreditCode?: AppLimitCreditCode | null;
2847
+ appLimitCreditCodeEdge?: AppLimitCreditCodeEdge | null;
2848
+ }
2849
+ export type UpdateAppLimitCreditCodePayloadSelect = {
2850
+ clientMutationId?: boolean;
2851
+ appLimitCreditCode?: {
2852
+ select: AppLimitCreditCodeSelect;
2853
+ };
2854
+ appLimitCreditCodeEdge?: {
2855
+ select: AppLimitCreditCodeEdgeSelect;
2856
+ };
2857
+ };
2858
+ export interface DeleteAppLimitCreditCodePayload {
2859
+ clientMutationId?: string | null;
2860
+ /** The `AppLimitCreditCode` that was deleted by this mutation. */
2861
+ appLimitCreditCode?: AppLimitCreditCode | null;
2862
+ appLimitCreditCodeEdge?: AppLimitCreditCodeEdge | null;
2863
+ }
2864
+ export type DeleteAppLimitCreditCodePayloadSelect = {
2865
+ clientMutationId?: boolean;
2866
+ appLimitCreditCode?: {
2867
+ select: AppLimitCreditCodeSelect;
2868
+ };
2869
+ appLimitCreditCodeEdge?: {
2870
+ select: AppLimitCreditCodeEdgeSelect;
2871
+ };
2872
+ };
2873
+ export interface CreateAppLimitEventPayload {
2874
+ clientMutationId?: string | null;
2875
+ /** The `AppLimitEvent` that was created by this mutation. */
2876
+ appLimitEvent?: AppLimitEvent | null;
2877
+ appLimitEventEdge?: AppLimitEventEdge | null;
2878
+ }
2879
+ export type CreateAppLimitEventPayloadSelect = {
2880
+ clientMutationId?: boolean;
2881
+ appLimitEvent?: {
2882
+ select: AppLimitEventSelect;
2883
+ };
2884
+ appLimitEventEdge?: {
2885
+ select: AppLimitEventEdgeSelect;
2886
+ };
2887
+ };
2888
+ export interface UpdateAppLimitEventPayload {
2889
+ clientMutationId?: string | null;
2890
+ /** The `AppLimitEvent` that was updated by this mutation. */
2891
+ appLimitEvent?: AppLimitEvent | null;
2892
+ appLimitEventEdge?: AppLimitEventEdge | null;
2893
+ }
2894
+ export type UpdateAppLimitEventPayloadSelect = {
2895
+ clientMutationId?: boolean;
2896
+ appLimitEvent?: {
2897
+ select: AppLimitEventSelect;
2898
+ };
2899
+ appLimitEventEdge?: {
2900
+ select: AppLimitEventEdgeSelect;
2901
+ };
2902
+ };
2903
+ export interface DeleteAppLimitEventPayload {
2904
+ clientMutationId?: string | null;
2905
+ /** The `AppLimitEvent` that was deleted by this mutation. */
2906
+ appLimitEvent?: AppLimitEvent | null;
2907
+ appLimitEventEdge?: AppLimitEventEdge | null;
2908
+ }
2909
+ export type DeleteAppLimitEventPayloadSelect = {
2910
+ clientMutationId?: boolean;
2911
+ appLimitEvent?: {
2912
+ select: AppLimitEventSelect;
2913
+ };
2914
+ appLimitEventEdge?: {
2915
+ select: AppLimitEventEdgeSelect;
2916
+ };
2917
+ };
2918
+ export interface CreateOrgLimitEventPayload {
2919
+ clientMutationId?: string | null;
2920
+ /** The `OrgLimitEvent` that was created by this mutation. */
2921
+ orgLimitEvent?: OrgLimitEvent | null;
2922
+ orgLimitEventEdge?: OrgLimitEventEdge | null;
2923
+ }
2924
+ export type CreateOrgLimitEventPayloadSelect = {
2925
+ clientMutationId?: boolean;
2926
+ orgLimitEvent?: {
2927
+ select: OrgLimitEventSelect;
2928
+ };
2929
+ orgLimitEventEdge?: {
2930
+ select: OrgLimitEventEdgeSelect;
2931
+ };
2932
+ };
2933
+ export interface UpdateOrgLimitEventPayload {
2934
+ clientMutationId?: string | null;
2935
+ /** The `OrgLimitEvent` that was updated by this mutation. */
2936
+ orgLimitEvent?: OrgLimitEvent | null;
2937
+ orgLimitEventEdge?: OrgLimitEventEdge | null;
2938
+ }
2939
+ export type UpdateOrgLimitEventPayloadSelect = {
2940
+ clientMutationId?: boolean;
2941
+ orgLimitEvent?: {
2942
+ select: OrgLimitEventSelect;
2943
+ };
2944
+ orgLimitEventEdge?: {
2945
+ select: OrgLimitEventEdgeSelect;
2946
+ };
2947
+ };
2948
+ export interface DeleteOrgLimitEventPayload {
2949
+ clientMutationId?: string | null;
2950
+ /** The `OrgLimitEvent` that was deleted by this mutation. */
2951
+ orgLimitEvent?: OrgLimitEvent | null;
2952
+ orgLimitEventEdge?: OrgLimitEventEdge | null;
2953
+ }
2954
+ export type DeleteOrgLimitEventPayloadSelect = {
2955
+ clientMutationId?: boolean;
2956
+ orgLimitEvent?: {
2957
+ select: OrgLimitEventSelect;
2958
+ };
2959
+ orgLimitEventEdge?: {
2960
+ select: OrgLimitEventEdgeSelect;
2961
+ };
2962
+ };
2963
+ export interface CreateAppLimitPayload {
2964
+ clientMutationId?: string | null;
2965
+ /** The `AppLimit` that was created by this mutation. */
2966
+ appLimit?: AppLimit | null;
2967
+ appLimitEdge?: AppLimitEdge | null;
2968
+ }
2969
+ export type CreateAppLimitPayloadSelect = {
2970
+ clientMutationId?: boolean;
2971
+ appLimit?: {
2972
+ select: AppLimitSelect;
2973
+ };
2974
+ appLimitEdge?: {
2975
+ select: AppLimitEdgeSelect;
2976
+ };
2977
+ };
2978
+ export interface UpdateAppLimitPayload {
2979
+ clientMutationId?: string | null;
2980
+ /** The `AppLimit` that was updated by this mutation. */
2981
+ appLimit?: AppLimit | null;
2982
+ appLimitEdge?: AppLimitEdge | null;
2983
+ }
2984
+ export type UpdateAppLimitPayloadSelect = {
2985
+ clientMutationId?: boolean;
2986
+ appLimit?: {
2987
+ select: AppLimitSelect;
2988
+ };
2989
+ appLimitEdge?: {
2990
+ select: AppLimitEdgeSelect;
2991
+ };
2992
+ };
2993
+ export interface DeleteAppLimitPayload {
2994
+ clientMutationId?: string | null;
2995
+ /** The `AppLimit` that was deleted by this mutation. */
2996
+ appLimit?: AppLimit | null;
2997
+ appLimitEdge?: AppLimitEdge | null;
2998
+ }
2999
+ export type DeleteAppLimitPayloadSelect = {
3000
+ clientMutationId?: boolean;
3001
+ appLimit?: {
3002
+ select: AppLimitSelect;
3003
+ };
3004
+ appLimitEdge?: {
3005
+ select: AppLimitEdgeSelect;
3006
+ };
3007
+ };
3008
+ export interface CreateOrgLimitAggregatePayload {
3009
+ clientMutationId?: string | null;
3010
+ /** The `OrgLimitAggregate` that was created by this mutation. */
3011
+ orgLimitAggregate?: OrgLimitAggregate | null;
3012
+ orgLimitAggregateEdge?: OrgLimitAggregateEdge | null;
3013
+ }
3014
+ export type CreateOrgLimitAggregatePayloadSelect = {
3015
+ clientMutationId?: boolean;
3016
+ orgLimitAggregate?: {
3017
+ select: OrgLimitAggregateSelect;
3018
+ };
3019
+ orgLimitAggregateEdge?: {
3020
+ select: OrgLimitAggregateEdgeSelect;
3021
+ };
3022
+ };
3023
+ export interface UpdateOrgLimitAggregatePayload {
3024
+ clientMutationId?: string | null;
3025
+ /** The `OrgLimitAggregate` that was updated by this mutation. */
3026
+ orgLimitAggregate?: OrgLimitAggregate | null;
3027
+ orgLimitAggregateEdge?: OrgLimitAggregateEdge | null;
3028
+ }
3029
+ export type UpdateOrgLimitAggregatePayloadSelect = {
3030
+ clientMutationId?: boolean;
3031
+ orgLimitAggregate?: {
3032
+ select: OrgLimitAggregateSelect;
3033
+ };
3034
+ orgLimitAggregateEdge?: {
3035
+ select: OrgLimitAggregateEdgeSelect;
3036
+ };
3037
+ };
3038
+ export interface DeleteOrgLimitAggregatePayload {
3039
+ clientMutationId?: string | null;
3040
+ /** The `OrgLimitAggregate` that was deleted by this mutation. */
3041
+ orgLimitAggregate?: OrgLimitAggregate | null;
3042
+ orgLimitAggregateEdge?: OrgLimitAggregateEdge | null;
3043
+ }
3044
+ export type DeleteOrgLimitAggregatePayloadSelect = {
3045
+ clientMutationId?: boolean;
3046
+ orgLimitAggregate?: {
3047
+ select: OrgLimitAggregateSelect;
3048
+ };
3049
+ orgLimitAggregateEdge?: {
3050
+ select: OrgLimitAggregateEdgeSelect;
3051
+ };
3052
+ };
3053
+ export interface CreateOrgLimitPayload {
3054
+ clientMutationId?: string | null;
3055
+ /** The `OrgLimit` that was created by this mutation. */
3056
+ orgLimit?: OrgLimit | null;
3057
+ orgLimitEdge?: OrgLimitEdge | null;
3058
+ }
3059
+ export type CreateOrgLimitPayloadSelect = {
3060
+ clientMutationId?: boolean;
3061
+ orgLimit?: {
3062
+ select: OrgLimitSelect;
3063
+ };
3064
+ orgLimitEdge?: {
3065
+ select: OrgLimitEdgeSelect;
3066
+ };
3067
+ };
3068
+ export interface UpdateOrgLimitPayload {
3069
+ clientMutationId?: string | null;
3070
+ /** The `OrgLimit` that was updated by this mutation. */
3071
+ orgLimit?: OrgLimit | null;
3072
+ orgLimitEdge?: OrgLimitEdge | null;
3073
+ }
3074
+ export type UpdateOrgLimitPayloadSelect = {
3075
+ clientMutationId?: boolean;
3076
+ orgLimit?: {
3077
+ select: OrgLimitSelect;
3078
+ };
3079
+ orgLimitEdge?: {
3080
+ select: OrgLimitEdgeSelect;
3081
+ };
3082
+ };
3083
+ export interface DeleteOrgLimitPayload {
3084
+ clientMutationId?: string | null;
3085
+ /** The `OrgLimit` that was deleted by this mutation. */
3086
+ orgLimit?: OrgLimit | null;
3087
+ orgLimitEdge?: OrgLimitEdge | null;
3088
+ }
3089
+ export type DeleteOrgLimitPayloadSelect = {
3090
+ clientMutationId?: boolean;
3091
+ orgLimit?: {
3092
+ select: OrgLimitSelect;
3093
+ };
3094
+ orgLimitEdge?: {
3095
+ select: OrgLimitEdgeSelect;
3096
+ };
3097
+ };
3098
+ /** A `AppLimitCapsDefault` edge in the connection. */
3099
+ export interface AppLimitCapsDefaultEdge {
3100
+ cursor?: string | null;
3101
+ /** The `AppLimitCapsDefault` at the end of the edge. */
3102
+ node?: AppLimitCapsDefault | null;
3103
+ }
3104
+ export type AppLimitCapsDefaultEdgeSelect = {
3105
+ cursor?: boolean;
3106
+ node?: {
3107
+ select: AppLimitCapsDefaultSelect;
3108
+ };
3109
+ };
3110
+ /** A `OrgLimitCapsDefault` edge in the connection. */
3111
+ export interface OrgLimitCapsDefaultEdge {
3112
+ cursor?: string | null;
3113
+ /** The `OrgLimitCapsDefault` at the end of the edge. */
3114
+ node?: OrgLimitCapsDefault | null;
3115
+ }
3116
+ export type OrgLimitCapsDefaultEdgeSelect = {
3117
+ cursor?: boolean;
3118
+ node?: {
3119
+ select: OrgLimitCapsDefaultSelect;
3120
+ };
3121
+ };
3122
+ /** A `AppLimitCap` edge in the connection. */
3123
+ export interface AppLimitCapEdge {
3124
+ cursor?: string | null;
3125
+ /** The `AppLimitCap` at the end of the edge. */
3126
+ node?: AppLimitCap | null;
3127
+ }
3128
+ export type AppLimitCapEdgeSelect = {
3129
+ cursor?: boolean;
3130
+ node?: {
3131
+ select: AppLimitCapSelect;
3132
+ };
3133
+ };
3134
+ /** A `OrgLimitCap` edge in the connection. */
3135
+ export interface OrgLimitCapEdge {
3136
+ cursor?: string | null;
3137
+ /** The `OrgLimitCap` at the end of the edge. */
3138
+ node?: OrgLimitCap | null;
3139
+ }
3140
+ export type OrgLimitCapEdgeSelect = {
3141
+ cursor?: boolean;
3142
+ node?: {
3143
+ select: OrgLimitCapSelect;
3144
+ };
3145
+ };
3146
+ /** A `AppLimitDefault` edge in the connection. */
3147
+ export interface AppLimitDefaultEdge {
3148
+ cursor?: string | null;
3149
+ /** The `AppLimitDefault` at the end of the edge. */
3150
+ node?: AppLimitDefault | null;
3151
+ }
3152
+ export type AppLimitDefaultEdgeSelect = {
3153
+ cursor?: boolean;
3154
+ node?: {
3155
+ select: AppLimitDefaultSelect;
3156
+ };
3157
+ };
3158
+ /** A `AppLimitCredit` edge in the connection. */
3159
+ export interface AppLimitCreditEdge {
3160
+ cursor?: string | null;
3161
+ /** The `AppLimitCredit` at the end of the edge. */
3162
+ node?: AppLimitCredit | null;
3163
+ }
3164
+ export type AppLimitCreditEdgeSelect = {
3165
+ cursor?: boolean;
3166
+ node?: {
3167
+ select: AppLimitCreditSelect;
3168
+ };
3169
+ };
3170
+ /** A `AppLimitCreditCodeItem` edge in the connection. */
3171
+ export interface AppLimitCreditCodeItemEdge {
3172
+ cursor?: string | null;
3173
+ /** The `AppLimitCreditCodeItem` at the end of the edge. */
3174
+ node?: AppLimitCreditCodeItem | null;
3175
+ }
3176
+ export type AppLimitCreditCodeItemEdgeSelect = {
3177
+ cursor?: boolean;
3178
+ node?: {
3179
+ select: AppLimitCreditCodeItemSelect;
3180
+ };
3181
+ };
3182
+ /** A `AppLimitCreditRedemption` edge in the connection. */
3183
+ export interface AppLimitCreditRedemptionEdge {
3184
+ cursor?: string | null;
3185
+ /** The `AppLimitCreditRedemption` at the end of the edge. */
3186
+ node?: AppLimitCreditRedemption | null;
3187
+ }
3188
+ export type AppLimitCreditRedemptionEdgeSelect = {
3189
+ cursor?: boolean;
3190
+ node?: {
3191
+ select: AppLimitCreditRedemptionSelect;
3192
+ };
3193
+ };
3194
+ /** A `OrgLimitDefault` edge in the connection. */
3195
+ export interface OrgLimitDefaultEdge {
3196
+ cursor?: string | null;
3197
+ /** The `OrgLimitDefault` at the end of the edge. */
3198
+ node?: OrgLimitDefault | null;
3199
+ }
3200
+ export type OrgLimitDefaultEdgeSelect = {
3201
+ cursor?: boolean;
3202
+ node?: {
3203
+ select: OrgLimitDefaultSelect;
3204
+ };
3205
+ };
3206
+ /** A `OrgLimitCredit` edge in the connection. */
3207
+ export interface OrgLimitCreditEdge {
3208
+ cursor?: string | null;
3209
+ /** The `OrgLimitCredit` at the end of the edge. */
3210
+ node?: OrgLimitCredit | null;
3211
+ }
3212
+ export type OrgLimitCreditEdgeSelect = {
3213
+ cursor?: boolean;
3214
+ node?: {
3215
+ select: OrgLimitCreditSelect;
3216
+ };
3217
+ };
3218
+ /** A `AppLimitWarning` edge in the connection. */
3219
+ export interface AppLimitWarningEdge {
3220
+ cursor?: string | null;
3221
+ /** The `AppLimitWarning` at the end of the edge. */
3222
+ node?: AppLimitWarning | null;
3223
+ }
3224
+ export type AppLimitWarningEdgeSelect = {
3225
+ cursor?: boolean;
3226
+ node?: {
3227
+ select: AppLimitWarningSelect;
3228
+ };
3229
+ };
3230
+ /** A `OrgLimitWarning` edge in the connection. */
3231
+ export interface OrgLimitWarningEdge {
3232
+ cursor?: string | null;
3233
+ /** The `OrgLimitWarning` at the end of the edge. */
3234
+ node?: OrgLimitWarning | null;
3235
+ }
3236
+ export type OrgLimitWarningEdgeSelect = {
3237
+ cursor?: boolean;
3238
+ node?: {
3239
+ select: OrgLimitWarningSelect;
3240
+ };
3241
+ };
3242
+ /** A `AppLimitCreditCode` edge in the connection. */
3243
+ export interface AppLimitCreditCodeEdge {
3244
+ cursor?: string | null;
3245
+ /** The `AppLimitCreditCode` at the end of the edge. */
3246
+ node?: AppLimitCreditCode | null;
3247
+ }
3248
+ export type AppLimitCreditCodeEdgeSelect = {
3249
+ cursor?: boolean;
3250
+ node?: {
3251
+ select: AppLimitCreditCodeSelect;
3252
+ };
3253
+ };
3254
+ /** A `AppLimitEvent` edge in the connection. */
3255
+ export interface AppLimitEventEdge {
3256
+ cursor?: string | null;
3257
+ /** The `AppLimitEvent` at the end of the edge. */
3258
+ node?: AppLimitEvent | null;
3259
+ }
3260
+ export type AppLimitEventEdgeSelect = {
3261
+ cursor?: boolean;
3262
+ node?: {
3263
+ select: AppLimitEventSelect;
3264
+ };
3265
+ };
3266
+ /** A `OrgLimitEvent` edge in the connection. */
3267
+ export interface OrgLimitEventEdge {
3268
+ cursor?: string | null;
3269
+ /** The `OrgLimitEvent` at the end of the edge. */
3270
+ node?: OrgLimitEvent | null;
3271
+ }
3272
+ export type OrgLimitEventEdgeSelect = {
3273
+ cursor?: boolean;
3274
+ node?: {
3275
+ select: OrgLimitEventSelect;
3276
+ };
3277
+ };
3278
+ /** A `AppLimit` edge in the connection. */
3279
+ export interface AppLimitEdge {
3280
+ cursor?: string | null;
3281
+ /** The `AppLimit` at the end of the edge. */
3282
+ node?: AppLimit | null;
3283
+ }
3284
+ export type AppLimitEdgeSelect = {
3285
+ cursor?: boolean;
3286
+ node?: {
3287
+ select: AppLimitSelect;
3288
+ };
3289
+ };
3290
+ /** A `OrgLimitAggregate` edge in the connection. */
3291
+ export interface OrgLimitAggregateEdge {
3292
+ cursor?: string | null;
3293
+ /** The `OrgLimitAggregate` at the end of the edge. */
3294
+ node?: OrgLimitAggregate | null;
3295
+ }
3296
+ export type OrgLimitAggregateEdgeSelect = {
3297
+ cursor?: boolean;
3298
+ node?: {
3299
+ select: OrgLimitAggregateSelect;
3300
+ };
3301
+ };
3302
+ /** A `OrgLimit` edge in the connection. */
3303
+ export interface OrgLimitEdge {
3304
+ cursor?: string | null;
3305
+ /** The `OrgLimit` at the end of the edge. */
3306
+ node?: OrgLimit | null;
3307
+ }
3308
+ export type OrgLimitEdgeSelect = {
3309
+ cursor?: boolean;
3310
+ node?: {
3311
+ select: OrgLimitSelect;
3312
+ };
3313
+ };