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