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