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