@constructive-sdk/cli 0.30.0 → 0.30.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 +1 -0
- package/agent/cli/commands/agent-message.js +20 -0
- package/agent/cli/commands/agent-persona.js +20 -0
- package/agent/cli/commands/agent-plan.js +20 -0
- package/agent/cli/commands/agent-prompt.js +20 -0
- package/agent/cli/commands/agent-resource.js +21 -0
- package/agent/cli/commands/agent-task.js +20 -0
- package/agent/cli/commands/agent-thread.js +20 -0
- package/agent/cli/commands/agent.js +20 -0
- package/agent/orm/input-types.d.ts +96 -8
- package/api/cli/commands/database.js +22 -0
- package/api/cli/commands/field.js +44 -0
- package/api/cli/commands/policy.js +22 -0
- package/{compute/cli/commands/org-function-execution-log.d.ts → api/cli/commands/request-database.d.ts} +1 -1
- package/api/cli/commands/request-database.js +36 -0
- package/api/cli/commands/table.js +22 -0
- package/api/cli/commands.js +5 -9
- package/api/cli/executor.d.ts +4 -14
- package/api/orm/index.d.ts +5 -15
- package/api/orm/index.js +2 -2
- package/api/orm/input-types.d.ts +250 -231
- package/api/orm/models/index.d.ts +1 -1
- package/api/orm/models/index.js +3 -3
- package/api/orm/mutation/index.d.ts +11 -36
- package/api/orm/mutation/index.js +6 -30
- package/auth/cli/commands/delete-principal.d.ts +8 -0
- package/{config/cli/commands/org-secrets-rotate.js → auth/cli/commands/delete-principal.js} +3 -3
- package/auth/cli/commands/principal-scope-override.js +18 -7
- package/auth/cli/commands/principal.d.ts +1 -1
- package/auth/cli/commands/principal.js +75 -64
- package/auth/cli/commands.js +5 -3
- package/auth/cli/executor.d.ts +10 -5
- package/auth/orm/index.d.ts +10 -5
- package/auth/orm/input-types.d.ts +54 -45
- package/auth/orm/models/principal.d.ts +1 -10
- package/auth/orm/models/principal.js +0 -13
- package/auth/orm/mutation/index.d.ts +17 -9
- package/auth/orm/mutation/index.js +24 -12
- package/{esm/compute/cli/commands/secret-definition.d.ts → compute/cli/commands/db-preset.d.ts} +1 -1
- package/compute/cli/commands/db-preset.js +394 -0
- package/compute/cli/commands/function-definition.js +208 -12
- package/compute/cli/commands/function-deployment.js +42 -20
- package/compute/cli/commands/function-graph-commit.js +15 -15
- package/compute/cli/commands/function-graph-execution-node-state.js +12 -12
- package/compute/cli/commands/function-graph-execution-output.js +12 -12
- package/compute/cli/commands/function-graph-execution.js +37 -13
- package/compute/cli/commands/function-graph-object.js +15 -15
- package/compute/cli/commands/function-graph-ref.js +15 -15
- package/compute/cli/commands/function-graph-store.js +12 -12
- package/compute/cli/commands/function-graph.js +12 -12
- package/compute/cli/commands/{secret-definition.d.ts → infra-commit.d.ts} +1 -1
- package/compute/cli/commands/infra-commit.js +389 -0
- package/{esm/modules/cli/commands/config-secrets-module.d.ts → compute/cli/commands/infra-get-all-record.d.ts} +1 -1
- package/compute/cli/commands/infra-get-all-record.js +126 -0
- package/{api/cli/commands/create-user-database.d.ts → compute/cli/commands/infra-init-empty-repo.d.ts} +1 -1
- package/compute/cli/commands/infra-init-empty-repo.js +36 -0
- package/compute/cli/commands/infra-insert-node-at-path.d.ts +8 -0
- package/{config/cli/commands/org-secrets-remove-array.js → compute/cli/commands/infra-insert-node-at-path.js} +3 -3
- package/{modules/cli/commands/config-secrets-module.d.ts → compute/cli/commands/infra-object.d.ts} +1 -1
- package/compute/cli/commands/infra-object.js +309 -0
- package/compute/cli/commands/infra-ref.d.ts +8 -0
- package/compute/cli/commands/infra-ref.js +299 -0
- package/compute/cli/commands/infra-set-data-at-path.d.ts +8 -0
- package/compute/cli/commands/infra-set-data-at-path.js +36 -0
- package/compute/cli/commands/infra-store.d.ts +8 -0
- package/compute/cli/commands/infra-store.js +278 -0
- package/compute/cli/commands/integration-provider.d.ts +8 -0
- package/compute/cli/commands/integration-provider.js +416 -0
- package/compute/cli/commands/namespace-event.d.ts +8 -0
- package/compute/cli/commands/namespace-event.js +510 -0
- package/compute/cli/commands/namespace.d.ts +8 -0
- package/compute/cli/commands/{secret-definition.js → namespace.js} +106 -20
- package/compute/cli/commands/platform-function-api-binding.d.ts +8 -0
- package/compute/cli/commands/platform-function-api-binding.js +294 -0
- package/compute/cli/commands/platform-function-definition.d.ts +8 -0
- package/compute/cli/commands/platform-function-definition.js +964 -0
- package/compute/cli/commands/platform-function-deployment-event.d.ts +8 -0
- package/compute/cli/commands/platform-function-deployment-event.js +336 -0
- package/compute/cli/commands/platform-function-deployment.d.ts +8 -0
- package/compute/cli/commands/platform-function-deployment.js +614 -0
- package/compute/cli/commands/platform-function-execution-log.d.ts +8 -0
- package/compute/cli/commands/{org-function-execution-log.js → platform-function-execution-log.js} +8 -8
- package/compute/cli/commands/platform-function-invocation.d.ts +8 -0
- package/compute/cli/commands/{org-function-invocation.js → platform-function-invocation.js} +8 -8
- package/compute/cli/commands/platform-namespace-event.js +0 -20
- package/compute/cli/commands/platform-namespace.js +40 -60
- package/compute/cli/commands/platform-resource-definition.d.ts +8 -0
- package/compute/cli/commands/platform-resource-definition.js +522 -0
- package/{api/cli/commands/bootstrap-user.d.ts → compute/cli/commands/platform-resource-event.d.ts} +1 -1
- package/compute/cli/commands/platform-resource-event.js +336 -0
- package/compute/cli/commands/platform-resource-status-check.d.ts +8 -0
- package/compute/cli/commands/platform-resource-status-check.js +340 -0
- package/compute/cli/commands/platform-resource.d.ts +8 -0
- package/compute/cli/commands/platform-resource.js +588 -0
- package/{api/cli/commands/provision-database-with-user.d.ts → compute/cli/commands/platform-resources-requirements-state.d.ts} +1 -1
- package/compute/cli/commands/platform-resources-requirements-state.js +183 -0
- package/compute/cli/commands/platform-resources-resolved-requirement.d.ts +8 -0
- package/compute/cli/commands/platform-resources-resolved-requirement.js +218 -0
- package/compute/cli/commands/resource-definition.d.ts +8 -0
- package/compute/cli/commands/resource-definition.js +542 -0
- package/compute/cli/commands/resource-status-check.d.ts +8 -0
- package/{modules/cli/commands/config-secrets-org-module.js → compute/cli/commands/resource-status-check.js} +90 -70
- package/compute/cli/commands/resource.js +88 -0
- package/compute/cli/commands/resources-requirements-state.d.ts +8 -0
- package/compute/cli/commands/resources-requirements-state.js +181 -0
- package/compute/cli/commands/resources-resolved-requirement.d.ts +8 -0
- package/compute/cli/commands/resources-resolved-requirement.js +214 -0
- package/compute/cli/commands.js +65 -15
- package/compute/cli/executor.d.ts +48 -11
- package/compute/orm/index.d.ts +76 -17
- package/compute/orm/index.js +56 -12
- package/compute/orm/input-types.d.ts +5893 -1343
- package/compute/orm/input-types.js +17 -3
- package/compute/orm/models/dbPreset.d.ts +54 -0
- package/compute/orm/models/dbPreset.js +104 -0
- package/compute/orm/models/functionGraphCommit.d.ts +2 -2
- package/compute/orm/models/functionGraphCommit.js +2 -2
- package/compute/orm/models/functionGraphObject.d.ts +2 -2
- package/compute/orm/models/functionGraphObject.js +2 -2
- package/compute/orm/models/functionGraphRef.d.ts +2 -2
- package/compute/orm/models/functionGraphRef.js +2 -2
- package/compute/orm/models/index.d.ts +28 -6
- package/compute/orm/models/index.js +57 -13
- package/compute/orm/models/infraCommit.d.ts +56 -0
- package/compute/orm/models/infraCommit.js +107 -0
- package/compute/orm/models/infraGetAllRecord.d.ts +30 -0
- package/compute/orm/models/infraGetAllRecord.js +59 -0
- package/compute/orm/models/infraObject.d.ts +56 -0
- package/compute/orm/models/infraObject.js +97 -0
- package/compute/orm/models/infraRef.d.ts +56 -0
- package/compute/orm/models/infraRef.js +107 -0
- package/compute/orm/models/infraStore.d.ts +54 -0
- package/compute/orm/models/infraStore.js +104 -0
- package/compute/orm/models/integrationProvider.d.ts +54 -0
- package/{modules/orm/models/configSecretsModule.js → compute/orm/models/integrationProvider.js} +27 -27
- package/compute/orm/models/namespace.d.ts +54 -0
- package/compute/orm/models/namespace.js +104 -0
- package/compute/orm/models/namespaceEvent.d.ts +56 -0
- package/compute/orm/models/{orgFunctionExecutionLog.js → namespaceEvent.js} +27 -27
- package/compute/orm/models/platformFunctionApiBinding.d.ts +54 -0
- package/compute/orm/models/platformFunctionApiBinding.js +104 -0
- package/compute/orm/models/platformFunctionDefinition.d.ts +54 -0
- package/compute/orm/models/platformFunctionDefinition.js +104 -0
- package/compute/orm/models/platformFunctionDeployment.d.ts +54 -0
- package/compute/orm/models/platformFunctionDeployment.js +104 -0
- package/compute/orm/models/platformFunctionDeploymentEvent.d.ts +56 -0
- package/compute/orm/models/platformFunctionDeploymentEvent.js +107 -0
- package/compute/orm/models/platformFunctionExecutionLog.d.ts +56 -0
- package/compute/orm/models/platformFunctionExecutionLog.js +107 -0
- package/compute/orm/models/platformFunctionInvocation.d.ts +56 -0
- package/compute/orm/models/platformFunctionInvocation.js +107 -0
- package/compute/orm/models/platformResource.d.ts +54 -0
- package/compute/orm/models/{secretDefinition.js → platformResource.js} +27 -27
- package/compute/orm/models/platformResourceDefinition.d.ts +54 -0
- package/compute/orm/models/platformResourceDefinition.js +104 -0
- package/compute/orm/models/platformResourceEvent.d.ts +56 -0
- package/compute/orm/models/{orgFunctionInvocation.js → platformResourceEvent.js} +27 -27
- package/compute/orm/models/platformResourceStatusCheck.d.ts +54 -0
- package/compute/orm/models/platformResourceStatusCheck.js +104 -0
- package/compute/orm/models/platformResourcesRequirementsState.d.ts +30 -0
- package/compute/orm/models/platformResourcesRequirementsState.js +59 -0
- package/compute/orm/models/platformResourcesResolvedRequirement.d.ts +30 -0
- package/compute/orm/models/platformResourcesResolvedRequirement.js +59 -0
- package/compute/orm/models/resourceDefinition.d.ts +54 -0
- package/compute/orm/models/resourceDefinition.js +104 -0
- package/compute/orm/models/resourceStatusCheck.d.ts +54 -0
- package/compute/orm/models/resourceStatusCheck.js +104 -0
- package/compute/orm/models/resourcesRequirementsState.d.ts +30 -0
- package/compute/orm/models/resourcesRequirementsState.js +59 -0
- package/compute/orm/models/resourcesResolvedRequirement.d.ts +30 -0
- package/compute/orm/models/resourcesResolvedRequirement.js +59 -0
- package/compute/orm/mutation/index.d.ts +33 -9
- package/compute/orm/mutation/index.js +48 -12
- package/config/cli/commands/config.d.ts +8 -0
- package/config/cli/commands/{platform-config-definition.js → config.js} +127 -65
- package/config/cli/commands/platform-config.js +22 -0
- package/config/cli/commands/platform-internal-secret.d.ts +8 -0
- package/config/cli/commands/platform-internal-secret.js +200 -0
- package/config/cli/commands/platform-internal-secrets-del.d.ts +8 -0
- package/{api/cli/commands/provision-database-with-user.js → config/cli/commands/platform-internal-secrets-del.js} +3 -3
- package/config/cli/commands/platform-internal-secrets-remove-array.d.ts +8 -0
- package/config/cli/commands/platform-internal-secrets-remove-array.js +36 -0
- package/config/cli/commands/platform-internal-secrets-rotate.d.ts +8 -0
- package/config/cli/commands/platform-internal-secrets-rotate.js +36 -0
- package/config/cli/commands/platform-internal-secrets-set.d.ts +8 -0
- package/config/cli/commands/platform-internal-secrets-set.js +36 -0
- package/config/cli/commands/platform-secret.d.ts +8 -0
- package/config/cli/commands/platform-secret.js +212 -0
- package/config/cli/commands/secret.d.ts +8 -0
- package/config/cli/commands/secret.js +224 -0
- package/config/cli/commands/secrets-del.d.ts +8 -0
- package/{api/cli/commands/bootstrap-user.js → config/cli/commands/secrets-del.js} +3 -3
- package/config/cli/commands/secrets-remove-array.d.ts +8 -0
- package/config/cli/commands/secrets-remove-array.js +36 -0
- package/config/cli/commands/secrets-rotate.d.ts +8 -0
- package/config/cli/commands/{org-secrets-set.js → secrets-rotate.js} +3 -3
- package/config/cli/commands/secrets-set.d.ts +8 -0
- package/config/cli/commands/{org-secrets-del.js → secrets-set.js} +3 -3
- package/config/cli/commands.js +25 -11
- package/config/cli/executor.d.ts +38 -15
- package/config/orm/index.d.ts +42 -16
- package/config/orm/index.js +8 -2
- package/config/orm/input-types.d.ts +595 -154
- package/config/orm/models/config.d.ts +54 -0
- package/{modules/orm/models/configSecretsOrgModule.js → config/orm/models/config.js} +27 -27
- package/config/orm/models/index.d.ts +4 -1
- package/config/orm/models/index.js +9 -3
- package/config/orm/models/platformInternalSecret.d.ts +36 -0
- package/config/orm/models/platformInternalSecret.js +80 -0
- package/config/orm/models/platformSecret.d.ts +36 -0
- package/config/orm/models/platformSecret.js +80 -0
- package/config/orm/models/secret.d.ts +36 -0
- package/config/orm/models/secret.js +80 -0
- package/config/orm/mutation/index.d.ts +56 -24
- package/config/orm/mutation/index.js +78 -30
- package/esm/agent/cli/commands/agent-message.js +20 -0
- package/esm/agent/cli/commands/agent-persona.js +20 -0
- package/esm/agent/cli/commands/agent-plan.js +20 -0
- package/esm/agent/cli/commands/agent-prompt.js +20 -0
- package/esm/agent/cli/commands/agent-resource.js +21 -0
- package/esm/agent/cli/commands/agent-task.js +20 -0
- package/esm/agent/cli/commands/agent-thread.js +20 -0
- package/esm/agent/cli/commands/agent.js +20 -0
- package/esm/agent/orm/input-types.d.ts +96 -8
- package/esm/api/cli/commands/database.js +22 -0
- package/esm/api/cli/commands/field.js +44 -0
- package/esm/api/cli/commands/policy.js +22 -0
- package/esm/api/cli/commands/request-database.d.ts +8 -0
- package/esm/api/cli/commands/request-database.js +34 -0
- package/esm/api/cli/commands/table.js +22 -0
- package/esm/api/cli/commands.js +5 -9
- package/esm/api/cli/executor.d.ts +4 -14
- package/esm/api/orm/index.d.ts +5 -15
- package/esm/api/orm/index.js +2 -2
- package/esm/api/orm/input-types.d.ts +250 -231
- package/esm/api/orm/models/index.d.ts +1 -1
- package/esm/api/orm/models/index.js +1 -1
- package/esm/api/orm/mutation/index.d.ts +11 -36
- package/esm/api/orm/mutation/index.js +6 -30
- package/esm/auth/cli/commands/delete-principal.d.ts +8 -0
- package/esm/{config/cli/commands/org-secrets-rotate.js → auth/cli/commands/delete-principal.js} +3 -3
- package/esm/auth/cli/commands/principal-scope-override.js +18 -7
- package/esm/auth/cli/commands/principal.d.ts +1 -1
- package/esm/auth/cli/commands/principal.js +78 -67
- package/esm/auth/cli/commands.js +5 -3
- package/esm/auth/cli/executor.d.ts +10 -5
- package/esm/auth/orm/index.d.ts +10 -5
- package/esm/auth/orm/input-types.d.ts +54 -45
- package/esm/auth/orm/models/principal.d.ts +1 -10
- package/esm/auth/orm/models/principal.js +1 -14
- package/esm/auth/orm/mutation/index.d.ts +17 -9
- package/esm/auth/orm/mutation/index.js +24 -12
- package/esm/compute/cli/commands/db-preset.d.ts +8 -0
- package/esm/compute/cli/commands/db-preset.js +392 -0
- package/esm/compute/cli/commands/function-definition.js +208 -12
- package/esm/compute/cli/commands/function-deployment.js +42 -20
- package/esm/compute/cli/commands/function-graph-commit.js +15 -15
- package/esm/compute/cli/commands/function-graph-execution-node-state.js +12 -12
- package/esm/compute/cli/commands/function-graph-execution-output.js +12 -12
- package/esm/compute/cli/commands/function-graph-execution.js +37 -13
- package/esm/compute/cli/commands/function-graph-object.js +15 -15
- package/esm/compute/cli/commands/function-graph-ref.js +15 -15
- package/esm/compute/cli/commands/function-graph-store.js +12 -12
- package/esm/compute/cli/commands/function-graph.js +12 -12
- package/esm/compute/cli/commands/infra-commit.d.ts +8 -0
- package/esm/compute/cli/commands/infra-commit.js +387 -0
- package/esm/compute/cli/commands/infra-get-all-record.d.ts +8 -0
- package/esm/compute/cli/commands/infra-get-all-record.js +124 -0
- package/esm/compute/cli/commands/infra-init-empty-repo.d.ts +8 -0
- package/esm/compute/cli/commands/infra-init-empty-repo.js +34 -0
- package/esm/compute/cli/commands/infra-insert-node-at-path.d.ts +8 -0
- package/esm/{config/cli/commands/org-secrets-remove-array.js → compute/cli/commands/infra-insert-node-at-path.js} +3 -3
- package/esm/compute/cli/commands/infra-object.d.ts +8 -0
- package/esm/compute/cli/commands/infra-object.js +307 -0
- package/esm/compute/cli/commands/infra-ref.d.ts +8 -0
- package/esm/compute/cli/commands/infra-ref.js +297 -0
- package/esm/compute/cli/commands/infra-set-data-at-path.d.ts +8 -0
- package/esm/compute/cli/commands/infra-set-data-at-path.js +34 -0
- package/esm/compute/cli/commands/infra-store.d.ts +8 -0
- package/esm/compute/cli/commands/infra-store.js +276 -0
- package/esm/compute/cli/commands/integration-provider.d.ts +8 -0
- package/esm/compute/cli/commands/integration-provider.js +414 -0
- package/esm/compute/cli/commands/namespace-event.d.ts +8 -0
- package/esm/compute/cli/commands/namespace-event.js +508 -0
- package/esm/compute/cli/commands/namespace.d.ts +8 -0
- package/esm/compute/cli/commands/{secret-definition.js → namespace.js} +106 -20
- package/esm/compute/cli/commands/platform-function-api-binding.d.ts +8 -0
- package/esm/compute/cli/commands/platform-function-api-binding.js +292 -0
- package/esm/compute/cli/commands/platform-function-definition.d.ts +8 -0
- package/esm/compute/cli/commands/platform-function-definition.js +962 -0
- package/esm/compute/cli/commands/platform-function-deployment-event.d.ts +8 -0
- package/esm/compute/cli/commands/platform-function-deployment-event.js +334 -0
- package/esm/compute/cli/commands/platform-function-deployment.d.ts +8 -0
- package/esm/compute/cli/commands/platform-function-deployment.js +612 -0
- package/esm/compute/cli/commands/platform-function-execution-log.d.ts +8 -0
- package/esm/compute/cli/commands/{org-function-execution-log.js → platform-function-execution-log.js} +8 -8
- package/esm/compute/cli/commands/platform-function-invocation.d.ts +8 -0
- package/esm/compute/cli/commands/{org-function-invocation.js → platform-function-invocation.js} +8 -8
- package/esm/compute/cli/commands/platform-namespace-event.js +0 -20
- package/esm/compute/cli/commands/platform-namespace.js +40 -60
- package/esm/compute/cli/commands/platform-resource-definition.d.ts +8 -0
- package/esm/compute/cli/commands/platform-resource-definition.js +520 -0
- package/{compute/cli/commands/org-function-invocation.d.ts → esm/compute/cli/commands/platform-resource-event.d.ts} +1 -1
- package/esm/compute/cli/commands/platform-resource-event.js +334 -0
- package/esm/compute/cli/commands/platform-resource-status-check.d.ts +8 -0
- package/esm/compute/cli/commands/platform-resource-status-check.js +338 -0
- package/esm/compute/cli/commands/platform-resource.d.ts +8 -0
- package/esm/compute/cli/commands/platform-resource.js +586 -0
- package/esm/compute/cli/commands/platform-resources-requirements-state.d.ts +8 -0
- package/esm/compute/cli/commands/platform-resources-requirements-state.js +181 -0
- package/esm/compute/cli/commands/platform-resources-resolved-requirement.d.ts +8 -0
- package/esm/compute/cli/commands/platform-resources-resolved-requirement.js +216 -0
- package/esm/compute/cli/commands/resource-definition.d.ts +8 -0
- package/esm/compute/cli/commands/resource-definition.js +540 -0
- package/esm/compute/cli/commands/resource-status-check.d.ts +8 -0
- package/esm/{modules/cli/commands/config-secrets-org-module.js → compute/cli/commands/resource-status-check.js} +90 -70
- package/esm/compute/cli/commands/resource.js +88 -0
- package/esm/compute/cli/commands/resources-requirements-state.d.ts +8 -0
- package/esm/compute/cli/commands/resources-requirements-state.js +179 -0
- package/esm/compute/cli/commands/resources-resolved-requirement.d.ts +8 -0
- package/esm/compute/cli/commands/resources-resolved-requirement.js +212 -0
- package/esm/compute/cli/commands.js +65 -15
- package/esm/compute/cli/executor.d.ts +48 -11
- package/esm/compute/orm/index.d.ts +76 -17
- package/esm/compute/orm/index.js +56 -12
- package/esm/compute/orm/input-types.d.ts +5893 -1343
- package/esm/compute/orm/input-types.js +17 -3
- package/esm/compute/orm/models/dbPreset.d.ts +54 -0
- package/esm/compute/orm/models/dbPreset.js +100 -0
- package/esm/compute/orm/models/functionGraphCommit.d.ts +2 -2
- package/esm/compute/orm/models/functionGraphCommit.js +2 -2
- package/esm/compute/orm/models/functionGraphObject.d.ts +2 -2
- package/esm/compute/orm/models/functionGraphObject.js +2 -2
- package/esm/compute/orm/models/functionGraphRef.d.ts +2 -2
- package/esm/compute/orm/models/functionGraphRef.js +2 -2
- package/esm/compute/orm/models/index.d.ts +28 -6
- package/esm/compute/orm/models/index.js +28 -6
- package/esm/compute/orm/models/infraCommit.d.ts +56 -0
- package/esm/compute/orm/models/infraCommit.js +103 -0
- package/esm/compute/orm/models/infraGetAllRecord.d.ts +30 -0
- package/esm/compute/orm/models/infraGetAllRecord.js +55 -0
- package/esm/compute/orm/models/infraObject.d.ts +56 -0
- package/esm/compute/orm/models/infraObject.js +93 -0
- package/esm/compute/orm/models/infraRef.d.ts +56 -0
- package/esm/compute/orm/models/infraRef.js +103 -0
- package/esm/compute/orm/models/infraStore.d.ts +54 -0
- package/esm/compute/orm/models/infraStore.js +100 -0
- package/esm/compute/orm/models/integrationProvider.d.ts +54 -0
- package/esm/compute/orm/models/integrationProvider.js +100 -0
- package/esm/compute/orm/models/namespace.d.ts +54 -0
- package/esm/compute/orm/models/namespace.js +100 -0
- package/esm/compute/orm/models/namespaceEvent.d.ts +56 -0
- package/esm/compute/orm/models/{orgFunctionExecutionLog.js → namespaceEvent.js} +25 -25
- package/esm/compute/orm/models/platformFunctionApiBinding.d.ts +54 -0
- package/esm/compute/orm/models/platformFunctionApiBinding.js +100 -0
- package/esm/compute/orm/models/platformFunctionDefinition.d.ts +54 -0
- package/esm/compute/orm/models/platformFunctionDefinition.js +100 -0
- package/esm/compute/orm/models/platformFunctionDeployment.d.ts +54 -0
- package/esm/compute/orm/models/platformFunctionDeployment.js +100 -0
- package/esm/compute/orm/models/platformFunctionDeploymentEvent.d.ts +56 -0
- package/esm/compute/orm/models/platformFunctionDeploymentEvent.js +103 -0
- package/esm/compute/orm/models/platformFunctionExecutionLog.d.ts +56 -0
- package/esm/compute/orm/models/platformFunctionExecutionLog.js +103 -0
- package/esm/compute/orm/models/platformFunctionInvocation.d.ts +56 -0
- package/esm/compute/orm/models/platformFunctionInvocation.js +103 -0
- package/esm/compute/orm/models/platformResource.d.ts +54 -0
- package/esm/compute/orm/models/{secretDefinition.js → platformResource.js} +25 -25
- package/esm/compute/orm/models/platformResourceDefinition.d.ts +54 -0
- package/esm/compute/orm/models/platformResourceDefinition.js +100 -0
- package/esm/compute/orm/models/platformResourceEvent.d.ts +56 -0
- package/esm/compute/orm/models/{orgFunctionInvocation.js → platformResourceEvent.js} +25 -25
- package/esm/compute/orm/models/platformResourceStatusCheck.d.ts +54 -0
- package/esm/compute/orm/models/platformResourceStatusCheck.js +100 -0
- package/esm/compute/orm/models/platformResourcesRequirementsState.d.ts +30 -0
- package/esm/compute/orm/models/platformResourcesRequirementsState.js +55 -0
- package/esm/compute/orm/models/platformResourcesResolvedRequirement.d.ts +30 -0
- package/esm/compute/orm/models/platformResourcesResolvedRequirement.js +55 -0
- package/esm/compute/orm/models/resourceDefinition.d.ts +54 -0
- package/esm/{modules/orm/models/configSecretsOrgModule.js → compute/orm/models/resourceDefinition.js} +25 -25
- package/esm/compute/orm/models/resourceStatusCheck.d.ts +54 -0
- package/esm/compute/orm/models/resourceStatusCheck.js +100 -0
- package/esm/compute/orm/models/resourcesRequirementsState.d.ts +30 -0
- package/esm/compute/orm/models/resourcesRequirementsState.js +55 -0
- package/esm/compute/orm/models/resourcesResolvedRequirement.d.ts +30 -0
- package/esm/compute/orm/models/resourcesResolvedRequirement.js +55 -0
- package/esm/compute/orm/mutation/index.d.ts +33 -9
- package/esm/compute/orm/mutation/index.js +48 -12
- package/esm/config/cli/commands/config.d.ts +8 -0
- package/esm/config/cli/commands/{platform-config-definition.js → config.js} +127 -65
- package/esm/config/cli/commands/platform-config.js +22 -0
- package/esm/config/cli/commands/platform-internal-secret.d.ts +8 -0
- package/esm/config/cli/commands/platform-internal-secret.js +198 -0
- package/esm/config/cli/commands/platform-internal-secrets-del.d.ts +8 -0
- package/esm/{api/cli/commands/provision-database-with-user.js → config/cli/commands/platform-internal-secrets-del.js} +3 -3
- package/esm/config/cli/commands/platform-internal-secrets-remove-array.d.ts +8 -0
- package/esm/config/cli/commands/platform-internal-secrets-remove-array.js +34 -0
- package/esm/config/cli/commands/platform-internal-secrets-rotate.d.ts +8 -0
- package/esm/config/cli/commands/platform-internal-secrets-rotate.js +34 -0
- package/esm/config/cli/commands/platform-internal-secrets-set.d.ts +8 -0
- package/esm/config/cli/commands/platform-internal-secrets-set.js +34 -0
- package/esm/config/cli/commands/platform-secret.d.ts +8 -0
- package/esm/config/cli/commands/platform-secret.js +210 -0
- package/esm/config/cli/commands/secret.d.ts +8 -0
- package/esm/config/cli/commands/secret.js +222 -0
- package/esm/config/cli/commands/secrets-del.d.ts +8 -0
- package/esm/{api/cli/commands/bootstrap-user.js → config/cli/commands/secrets-del.js} +3 -3
- package/esm/config/cli/commands/secrets-remove-array.d.ts +8 -0
- package/esm/config/cli/commands/secrets-remove-array.js +34 -0
- package/esm/config/cli/commands/secrets-rotate.d.ts +8 -0
- package/esm/config/cli/commands/{org-secrets-del.js → secrets-rotate.js} +3 -3
- package/esm/config/cli/commands/secrets-set.d.ts +8 -0
- package/esm/config/cli/commands/{org-secrets-set.js → secrets-set.js} +3 -3
- package/esm/config/cli/commands.js +25 -11
- package/esm/config/cli/executor.d.ts +38 -15
- package/esm/config/orm/index.d.ts +42 -16
- package/esm/config/orm/index.js +8 -2
- package/esm/config/orm/input-types.d.ts +595 -154
- package/esm/config/orm/models/config.d.ts +54 -0
- package/esm/{modules/orm/models/configSecretsModule.js → config/orm/models/config.js} +25 -25
- package/esm/config/orm/models/index.d.ts +4 -1
- package/esm/config/orm/models/index.js +4 -1
- package/esm/config/orm/models/platformInternalSecret.d.ts +36 -0
- package/esm/config/orm/models/platformInternalSecret.js +76 -0
- package/esm/config/orm/models/platformSecret.d.ts +36 -0
- package/esm/config/orm/models/platformSecret.js +76 -0
- package/esm/config/orm/models/secret.d.ts +36 -0
- package/esm/config/orm/models/secret.js +76 -0
- package/esm/config/orm/mutation/index.d.ts +56 -24
- package/esm/config/orm/mutation/index.js +78 -30
- package/esm/index.d.ts +1 -0
- package/esm/index.js +1 -0
- package/esm/infra/cli/commands/auth.d.ts +8 -0
- package/esm/infra/cli/commands/auth.js +105 -0
- package/esm/infra/cli/commands/context.d.ts +8 -0
- package/esm/infra/cli/commands/context.js +156 -0
- package/esm/infra/cli/commands/db-preset.d.ts +8 -0
- package/esm/infra/cli/commands/db-preset.js +392 -0
- package/esm/infra/cli/commands/infra-commit.d.ts +8 -0
- package/esm/infra/cli/commands/infra-commit.js +387 -0
- package/esm/infra/cli/commands/infra-get-all-record.d.ts +8 -0
- package/esm/infra/cli/commands/infra-get-all-record.js +124 -0
- package/esm/infra/cli/commands/infra-init-empty-repo.d.ts +8 -0
- package/esm/infra/cli/commands/infra-init-empty-repo.js +34 -0
- package/esm/infra/cli/commands/infra-insert-node-at-path.d.ts +8 -0
- package/esm/infra/cli/commands/infra-insert-node-at-path.js +34 -0
- package/esm/infra/cli/commands/infra-object.d.ts +8 -0
- package/esm/infra/cli/commands/infra-object.js +307 -0
- package/esm/infra/cli/commands/infra-ref.d.ts +8 -0
- package/esm/infra/cli/commands/infra-ref.js +297 -0
- package/esm/infra/cli/commands/infra-set-data-at-path.d.ts +8 -0
- package/esm/infra/cli/commands/infra-set-data-at-path.js +34 -0
- package/esm/infra/cli/commands/infra-store.d.ts +8 -0
- package/esm/infra/cli/commands/infra-store.js +276 -0
- package/esm/infra/cli/commands/namespace-event.d.ts +8 -0
- package/esm/infra/cli/commands/namespace-event.js +508 -0
- package/esm/infra/cli/commands/namespace.d.ts +8 -0
- package/esm/infra/cli/commands/namespace.js +434 -0
- package/esm/infra/cli/commands/platform-namespace-event.d.ts +8 -0
- package/esm/infra/cli/commands/platform-namespace-event.js +488 -0
- package/esm/infra/cli/commands/platform-namespace.d.ts +8 -0
- package/esm/infra/cli/commands/platform-namespace.js +414 -0
- package/esm/infra/cli/commands/provision-bucket.d.ts +8 -0
- package/esm/infra/cli/commands/provision-bucket.js +34 -0
- package/esm/infra/cli/commands.d.ts +7 -0
- package/esm/infra/cli/commands.js +69 -0
- package/esm/infra/cli/executor.d.ts +35 -0
- package/esm/infra/cli/executor.js +35 -0
- package/esm/infra/cli/index.d.ts +1 -0
- package/esm/infra/cli/index.js +24 -0
- package/esm/infra/cli/utils.d.ts +88 -0
- package/esm/infra/cli/utils.js +281 -0
- package/esm/infra/index.d.ts +6 -0
- package/esm/infra/index.js +6 -0
- package/esm/infra/orm/client.d.ts +97 -0
- package/esm/infra/orm/client.js +145 -0
- package/esm/infra/orm/index.d.ts +74 -0
- package/esm/infra/orm/index.js +61 -0
- package/esm/infra/orm/input-types.d.ts +1953 -0
- package/esm/infra/orm/input-types.js +2 -0
- package/esm/infra/orm/models/dbPreset.d.ts +54 -0
- package/esm/infra/orm/models/dbPreset.js +100 -0
- package/esm/infra/orm/models/index.d.ts +15 -0
- package/esm/infra/orm/models/index.js +15 -0
- package/esm/infra/orm/models/infraCommit.d.ts +56 -0
- package/esm/infra/orm/models/infraCommit.js +103 -0
- package/esm/infra/orm/models/infraGetAllRecord.d.ts +30 -0
- package/esm/infra/orm/models/infraGetAllRecord.js +55 -0
- package/esm/infra/orm/models/infraObject.d.ts +56 -0
- package/esm/infra/orm/models/infraObject.js +93 -0
- package/esm/infra/orm/models/infraRef.d.ts +56 -0
- package/esm/infra/orm/models/infraRef.js +103 -0
- package/esm/infra/orm/models/infraStore.d.ts +54 -0
- package/esm/infra/orm/models/infraStore.js +100 -0
- package/esm/infra/orm/models/namespace.d.ts +54 -0
- package/esm/infra/orm/models/namespace.js +100 -0
- package/esm/infra/orm/models/namespaceEvent.d.ts +56 -0
- package/esm/infra/orm/models/namespaceEvent.js +103 -0
- package/esm/infra/orm/models/platformNamespace.d.ts +54 -0
- package/esm/{config/orm/models/platformConfigDefinition.js → infra/orm/models/platformNamespace.js} +25 -25
- package/esm/infra/orm/models/platformNamespaceEvent.d.ts +56 -0
- package/esm/infra/orm/models/platformNamespaceEvent.js +103 -0
- package/esm/infra/orm/mutation/index.d.ts +50 -0
- package/esm/infra/orm/mutation/index.js +54 -0
- package/esm/infra/orm/query-builder.d.ts +110 -0
- package/esm/infra/orm/query-builder.js +705 -0
- package/esm/infra/orm/realtime.d.ts +142 -0
- package/esm/infra/orm/realtime.js +100 -0
- package/esm/infra/orm/select-types.d.ts +125 -0
- package/esm/infra/orm/select-types.js +1 -0
- package/esm/infra/orm/types.d.ts +6 -0
- package/esm/infra/orm/types.js +7 -0
- package/esm/modules/cli/commands/agent-module.js +22 -0
- package/esm/modules/cli/commands/billing-module.js +44 -0
- package/esm/modules/cli/commands/compute-log-module.js +22 -0
- package/esm/modules/cli/commands/config-secrets-user-module.js +22 -22
- package/esm/modules/cli/commands/database-provision-module.js +88 -0
- package/esm/modules/cli/commands/db-pool-config.d.ts +8 -0
- package/esm/modules/cli/commands/db-pool-config.js +368 -0
- package/esm/modules/cli/commands/db-pool.d.ts +8 -0
- package/esm/modules/cli/commands/db-pool.js +438 -0
- package/esm/modules/cli/commands/db-preset-module.d.ts +8 -0
- package/esm/modules/cli/commands/db-preset-module.js +534 -0
- package/esm/modules/cli/commands/db-usage-module.js +110 -0
- package/esm/modules/cli/commands/entity-type-provision.js +0 -22
- package/esm/modules/cli/commands/events-module.js +22 -22
- package/esm/modules/cli/commands/function-deployment-module.js +22 -0
- package/esm/modules/cli/commands/function-invocation-module.js +22 -0
- package/esm/modules/cli/commands/function-module.js +22 -44
- package/esm/modules/cli/commands/graph-execution-module.js +22 -0
- package/esm/modules/cli/commands/graph-module.js +22 -0
- package/esm/modules/cli/commands/hierarchy-module.js +22 -0
- package/esm/modules/cli/commands/identity-providers-module.js +22 -0
- package/esm/modules/cli/commands/inference-log-module.js +22 -0
- package/esm/modules/cli/commands/infra-config-module.d.ts +8 -0
- package/esm/modules/cli/commands/infra-config-module.js +536 -0
- package/esm/modules/cli/commands/infra-secrets-module.d.ts +8 -0
- package/esm/modules/cli/commands/{config-secrets-module.js → infra-secrets-module.js} +54 -76
- package/esm/modules/cli/commands/integration-providers-module.d.ts +8 -0
- package/esm/modules/cli/commands/integration-providers-module.js +492 -0
- package/{config/cli/commands/org-secrets-del.d.ts → esm/modules/cli/commands/internal-secrets-module.d.ts} +1 -1
- package/esm/modules/cli/commands/internal-secrets-module.js +536 -0
- package/esm/modules/cli/commands/invites-module.js +22 -0
- package/esm/modules/cli/commands/limits-module.js +22 -0
- package/esm/modules/cli/commands/memberships-module.js +22 -0
- package/esm/modules/cli/commands/merkle-store-module.js +22 -0
- package/esm/modules/cli/commands/namespace-module.js +22 -22
- package/esm/modules/cli/commands/notifications-module.js +22 -0
- package/esm/modules/cli/commands/permissions-module.js +22 -0
- package/esm/modules/cli/commands/profiles-module.js +22 -0
- package/esm/modules/cli/commands/resource-module.js +154 -0
- package/esm/modules/cli/commands/storage-log-module.js +22 -0
- package/esm/modules/cli/commands/storage-module.js +22 -0
- package/esm/modules/cli/commands/transfer-log-module.js +22 -0
- package/esm/modules/cli/commands/user-credentials-module.js +22 -22
- package/esm/modules/cli/commands/user-state-module.js +22 -0
- package/esm/modules/cli/commands.js +49 -39
- package/esm/modules/cli/executor.d.ts +24 -19
- package/esm/modules/orm/index.d.ts +48 -38
- package/esm/modules/orm/index.js +48 -38
- package/esm/modules/orm/input-types.d.ts +5378 -4022
- package/esm/modules/orm/input-types.js +1 -0
- package/esm/modules/orm/models/dbPool.d.ts +54 -0
- package/esm/modules/orm/models/dbPool.js +100 -0
- package/esm/modules/orm/models/dbPoolConfig.d.ts +54 -0
- package/esm/modules/orm/models/dbPoolConfig.js +100 -0
- package/esm/modules/orm/models/dbPresetModule.d.ts +54 -0
- package/esm/modules/orm/models/dbPresetModule.js +100 -0
- package/esm/modules/orm/models/index.d.ts +24 -19
- package/esm/modules/orm/models/index.js +24 -19
- package/esm/modules/orm/models/infraConfigModule.d.ts +54 -0
- package/esm/modules/orm/models/infraConfigModule.js +100 -0
- package/esm/modules/orm/models/infraSecretsModule.d.ts +54 -0
- package/esm/modules/orm/models/infraSecretsModule.js +100 -0
- package/esm/modules/orm/models/integrationProvidersModule.d.ts +54 -0
- package/esm/modules/orm/models/integrationProvidersModule.js +100 -0
- package/esm/modules/orm/models/internalSecretsModule.d.ts +54 -0
- package/esm/modules/orm/models/internalSecretsModule.js +100 -0
- package/index.d.ts +1 -0
- package/index.js +2 -1
- package/infra/cli/commands/auth.d.ts +8 -0
- package/infra/cli/commands/auth.js +107 -0
- package/infra/cli/commands/context.d.ts +8 -0
- package/infra/cli/commands/context.js +158 -0
- package/infra/cli/commands/db-preset.d.ts +8 -0
- package/infra/cli/commands/db-preset.js +394 -0
- package/infra/cli/commands/infra-commit.d.ts +8 -0
- package/infra/cli/commands/infra-commit.js +389 -0
- package/infra/cli/commands/infra-get-all-record.d.ts +8 -0
- package/infra/cli/commands/infra-get-all-record.js +126 -0
- package/infra/cli/commands/infra-init-empty-repo.d.ts +8 -0
- package/infra/cli/commands/infra-init-empty-repo.js +36 -0
- package/infra/cli/commands/infra-insert-node-at-path.d.ts +8 -0
- package/infra/cli/commands/infra-insert-node-at-path.js +36 -0
- package/infra/cli/commands/infra-object.d.ts +8 -0
- package/infra/cli/commands/infra-object.js +309 -0
- package/infra/cli/commands/infra-ref.d.ts +8 -0
- package/infra/cli/commands/infra-ref.js +299 -0
- package/infra/cli/commands/infra-set-data-at-path.d.ts +8 -0
- package/infra/cli/commands/infra-set-data-at-path.js +36 -0
- package/infra/cli/commands/infra-store.d.ts +8 -0
- package/infra/cli/commands/infra-store.js +278 -0
- package/infra/cli/commands/namespace-event.d.ts +8 -0
- package/infra/cli/commands/namespace-event.js +510 -0
- package/infra/cli/commands/namespace.d.ts +8 -0
- package/infra/cli/commands/namespace.js +436 -0
- package/infra/cli/commands/platform-namespace-event.d.ts +8 -0
- package/infra/cli/commands/platform-namespace-event.js +490 -0
- package/infra/cli/commands/platform-namespace.d.ts +8 -0
- package/infra/cli/commands/platform-namespace.js +416 -0
- package/infra/cli/commands/provision-bucket.d.ts +8 -0
- package/infra/cli/commands/provision-bucket.js +36 -0
- package/infra/cli/commands.d.ts +7 -0
- package/infra/cli/commands.js +76 -0
- package/infra/cli/executor.d.ts +35 -0
- package/infra/cli/executor.js +40 -0
- package/infra/cli/index.d.ts +1 -0
- package/infra/cli/index.js +26 -0
- package/infra/cli/utils.d.ts +88 -0
- package/infra/cli/utils.js +297 -0
- package/infra/index.d.ts +6 -0
- package/infra/index.js +22 -0
- package/infra/orm/client.d.ts +97 -0
- package/infra/orm/client.js +152 -0
- package/infra/orm/index.d.ts +74 -0
- package/infra/orm/index.js +83 -0
- package/infra/orm/input-types.d.ts +1953 -0
- package/infra/orm/input-types.js +5 -0
- package/infra/orm/models/dbPreset.d.ts +54 -0
- package/infra/orm/models/dbPreset.js +104 -0
- package/infra/orm/models/index.d.ts +15 -0
- package/infra/orm/models/index.js +28 -0
- package/infra/orm/models/infraCommit.d.ts +56 -0
- package/infra/orm/models/infraCommit.js +107 -0
- package/infra/orm/models/infraGetAllRecord.d.ts +30 -0
- package/infra/orm/models/infraGetAllRecord.js +59 -0
- package/infra/orm/models/infraObject.d.ts +56 -0
- package/infra/orm/models/infraObject.js +97 -0
- package/infra/orm/models/infraRef.d.ts +56 -0
- package/infra/orm/models/infraRef.js +107 -0
- package/infra/orm/models/infraStore.d.ts +54 -0
- package/infra/orm/models/infraStore.js +104 -0
- package/infra/orm/models/namespace.d.ts +54 -0
- package/infra/orm/models/namespace.js +104 -0
- package/infra/orm/models/namespaceEvent.d.ts +56 -0
- package/infra/orm/models/namespaceEvent.js +107 -0
- package/infra/orm/models/platformNamespace.d.ts +54 -0
- package/infra/orm/models/platformNamespace.js +104 -0
- package/infra/orm/models/platformNamespaceEvent.d.ts +56 -0
- package/{config/orm/models/platformConfigDefinition.js → infra/orm/models/platformNamespaceEvent.js} +30 -27
- package/infra/orm/mutation/index.d.ts +50 -0
- package/infra/orm/mutation/index.js +57 -0
- package/infra/orm/query-builder.d.ts +110 -0
- package/infra/orm/query-builder.js +757 -0
- package/infra/orm/realtime.d.ts +142 -0
- package/infra/orm/realtime.js +104 -0
- package/infra/orm/select-types.d.ts +125 -0
- package/infra/orm/select-types.js +2 -0
- package/infra/orm/types.d.ts +6 -0
- package/infra/orm/types.js +23 -0
- package/modules/cli/commands/agent-module.js +22 -0
- package/modules/cli/commands/billing-module.js +44 -0
- package/modules/cli/commands/compute-log-module.js +22 -0
- package/modules/cli/commands/config-secrets-user-module.js +22 -22
- package/modules/cli/commands/database-provision-module.js +88 -0
- package/modules/cli/commands/db-pool-config.d.ts +8 -0
- package/modules/cli/commands/db-pool-config.js +370 -0
- package/modules/cli/commands/db-pool.d.ts +8 -0
- package/modules/cli/commands/db-pool.js +440 -0
- package/modules/cli/commands/db-preset-module.d.ts +8 -0
- package/modules/cli/commands/db-preset-module.js +536 -0
- package/modules/cli/commands/db-usage-module.js +110 -0
- package/modules/cli/commands/entity-type-provision.js +0 -22
- package/modules/cli/commands/events-module.js +22 -22
- package/modules/cli/commands/function-deployment-module.js +22 -0
- package/modules/cli/commands/function-invocation-module.js +22 -0
- package/modules/cli/commands/function-module.js +22 -44
- package/modules/cli/commands/graph-execution-module.js +22 -0
- package/modules/cli/commands/graph-module.js +22 -0
- package/modules/cli/commands/hierarchy-module.js +22 -0
- package/modules/cli/commands/identity-providers-module.js +22 -0
- package/modules/cli/commands/inference-log-module.js +22 -0
- package/modules/cli/commands/infra-config-module.d.ts +8 -0
- package/modules/cli/commands/infra-config-module.js +538 -0
- package/modules/cli/commands/infra-secrets-module.d.ts +8 -0
- package/modules/cli/commands/{config-secrets-module.js → infra-secrets-module.js} +54 -76
- package/modules/cli/commands/integration-providers-module.d.ts +8 -0
- package/modules/cli/commands/integration-providers-module.js +494 -0
- package/modules/cli/commands/internal-secrets-module.d.ts +8 -0
- package/modules/cli/commands/internal-secrets-module.js +538 -0
- package/modules/cli/commands/invites-module.js +22 -0
- package/modules/cli/commands/limits-module.js +22 -0
- package/modules/cli/commands/memberships-module.js +22 -0
- package/modules/cli/commands/merkle-store-module.js +22 -0
- package/modules/cli/commands/namespace-module.js +22 -22
- package/modules/cli/commands/notifications-module.js +22 -0
- package/modules/cli/commands/permissions-module.js +22 -0
- package/modules/cli/commands/profiles-module.js +22 -0
- package/modules/cli/commands/resource-module.js +154 -0
- package/modules/cli/commands/storage-log-module.js +22 -0
- package/modules/cli/commands/storage-module.js +22 -0
- package/modules/cli/commands/transfer-log-module.js +22 -0
- package/modules/cli/commands/user-credentials-module.js +22 -22
- package/modules/cli/commands/user-state-module.js +22 -0
- package/modules/cli/commands.js +49 -39
- package/modules/cli/executor.d.ts +24 -19
- package/modules/orm/index.d.ts +48 -38
- package/modules/orm/index.js +48 -38
- package/modules/orm/input-types.d.ts +5378 -4022
- package/modules/orm/input-types.js +1 -0
- package/modules/orm/models/dbPool.d.ts +54 -0
- package/modules/orm/models/dbPool.js +104 -0
- package/modules/orm/models/dbPoolConfig.d.ts +54 -0
- package/modules/orm/models/dbPoolConfig.js +104 -0
- package/modules/orm/models/dbPresetModule.d.ts +54 -0
- package/modules/orm/models/dbPresetModule.js +104 -0
- package/modules/orm/models/index.d.ts +24 -19
- package/modules/orm/models/index.js +50 -40
- package/modules/orm/models/infraConfigModule.d.ts +54 -0
- package/modules/orm/models/infraConfigModule.js +104 -0
- package/modules/orm/models/infraSecretsModule.d.ts +54 -0
- package/modules/orm/models/infraSecretsModule.js +104 -0
- package/modules/orm/models/integrationProvidersModule.d.ts +54 -0
- package/modules/orm/models/integrationProvidersModule.js +104 -0
- package/modules/orm/models/internalSecretsModule.d.ts +54 -0
- package/modules/orm/models/internalSecretsModule.js +104 -0
- package/package.json +4 -4
- package/api/cli/commands/create-user-database.js +0 -36
- package/compute/orm/models/orgFunctionExecutionLog.d.ts +0 -56
- package/compute/orm/models/orgFunctionInvocation.d.ts +0 -56
- package/compute/orm/models/secretDefinition.d.ts +0 -54
- package/config/cli/commands/org-secrets-remove-array.d.ts +0 -8
- package/config/cli/commands/org-secrets-rotate.d.ts +0 -8
- package/config/cli/commands/org-secrets-set.d.ts +0 -8
- package/config/cli/commands/platform-config-definition.d.ts +0 -8
- package/config/orm/models/platformConfigDefinition.d.ts +0 -54
- package/esm/api/cli/commands/bootstrap-user.d.ts +0 -8
- package/esm/api/cli/commands/create-user-database.d.ts +0 -8
- package/esm/api/cli/commands/create-user-database.js +0 -34
- package/esm/api/cli/commands/provision-database-with-user.d.ts +0 -8
- package/esm/compute/cli/commands/org-function-execution-log.d.ts +0 -8
- package/esm/compute/cli/commands/org-function-invocation.d.ts +0 -8
- package/esm/compute/orm/models/orgFunctionExecutionLog.d.ts +0 -56
- package/esm/compute/orm/models/orgFunctionInvocation.d.ts +0 -56
- package/esm/compute/orm/models/secretDefinition.d.ts +0 -54
- package/esm/config/cli/commands/org-secrets-del.d.ts +0 -8
- package/esm/config/cli/commands/org-secrets-remove-array.d.ts +0 -8
- package/esm/config/cli/commands/org-secrets-rotate.d.ts +0 -8
- package/esm/config/cli/commands/org-secrets-set.d.ts +0 -8
- package/esm/config/cli/commands/platform-config-definition.d.ts +0 -8
- package/esm/config/orm/models/platformConfigDefinition.d.ts +0 -54
- package/esm/modules/cli/commands/config-secrets-org-module.d.ts +0 -8
- package/esm/modules/orm/models/configSecretsModule.d.ts +0 -54
- package/esm/modules/orm/models/configSecretsOrgModule.d.ts +0 -54
- package/modules/cli/commands/config-secrets-org-module.d.ts +0 -8
- package/modules/orm/models/configSecretsModule.d.ts +0 -54
- package/modules/orm/models/configSecretsOrgModule.d.ts +0 -54
|
@@ -9,10 +9,10 @@ import { coerceAnswers, parseFindFirstArgs, parseFindManyArgs, stripUndefined }
|
|
|
9
9
|
const fieldSchema = {
|
|
10
10
|
id: 'uuid',
|
|
11
11
|
databaseId: 'uuid',
|
|
12
|
+
entityField: 'string',
|
|
12
13
|
schemaId: 'uuid',
|
|
13
14
|
tableId: 'uuid',
|
|
14
15
|
tableName: 'string',
|
|
15
|
-
apiName: 'string',
|
|
16
16
|
privateApiName: 'string',
|
|
17
17
|
};
|
|
18
18
|
const usage = '\nuser-credentials-module <command>\n\nCommands:\n list List userCredentialsModule records\n find-first Find first matching userCredentialsModule record\n get Get a userCredentialsModule by ID\n create Create a new userCredentialsModule\n update Update an existing userCredentialsModule\n delete Delete a userCredentialsModule\n\nList Options:\n --limit <n> Max number of records to return (forward pagination)\n --last <n> Number of records from the end (backward pagination)\n --after <cursor> Cursor for forward pagination\n --before <cursor> Cursor for backward pagination\n --offset <n> Number of records to skip\n --select <fields> Comma-separated list of fields to return\n --where.<field>.<op> Filter (dot-notation, e.g. --where.name.equalTo foo)\n --condition.<f>.<op> Condition filter (dot-notation)\n --orderBy <values> Comma-separated ordering values (e.g. NAME_ASC,CREATED_AT_DESC)\n\nFind-First Options:\n --select <fields> Comma-separated list of fields to return\n --where.<field>.<op> Filter (dot-notation, e.g. --where.status.equalTo active)\n --condition.<f>.<op> Condition filter (dot-notation)\n --orderBy <values> Comma-separated ordering values (e.g. NAME_ASC,CREATED_AT_DESC)\n\n --help, -h Show this help message\n';
|
|
@@ -59,10 +59,10 @@ async function handleList(argv, _prompter) {
|
|
|
59
59
|
const defaultSelect = {
|
|
60
60
|
id: true,
|
|
61
61
|
databaseId: true,
|
|
62
|
+
entityField: true,
|
|
62
63
|
schemaId: true,
|
|
63
64
|
tableId: true,
|
|
64
65
|
tableName: true,
|
|
65
|
-
apiName: true,
|
|
66
66
|
privateApiName: true,
|
|
67
67
|
};
|
|
68
68
|
const findManyArgs = parseFindManyArgs(argv, defaultSelect);
|
|
@@ -83,10 +83,10 @@ async function handleFindFirst(argv, _prompter) {
|
|
|
83
83
|
const defaultSelect = {
|
|
84
84
|
id: true,
|
|
85
85
|
databaseId: true,
|
|
86
|
+
entityField: true,
|
|
86
87
|
schemaId: true,
|
|
87
88
|
tableId: true,
|
|
88
89
|
tableName: true,
|
|
89
|
-
apiName: true,
|
|
90
90
|
privateApiName: true,
|
|
91
91
|
};
|
|
92
92
|
const findFirstArgs = parseFindFirstArgs(argv, defaultSelect);
|
|
@@ -119,10 +119,10 @@ async function handleGet(argv, prompter) {
|
|
|
119
119
|
select: {
|
|
120
120
|
id: true,
|
|
121
121
|
databaseId: true,
|
|
122
|
+
entityField: true,
|
|
122
123
|
schemaId: true,
|
|
123
124
|
tableId: true,
|
|
124
125
|
tableName: true,
|
|
125
|
-
apiName: true,
|
|
126
126
|
privateApiName: true,
|
|
127
127
|
},
|
|
128
128
|
})
|
|
@@ -146,6 +146,13 @@ async function handleCreate(argv, prompter) {
|
|
|
146
146
|
message: 'databaseId',
|
|
147
147
|
required: true,
|
|
148
148
|
},
|
|
149
|
+
{
|
|
150
|
+
type: 'text',
|
|
151
|
+
name: 'entityField',
|
|
152
|
+
message: 'entityField',
|
|
153
|
+
required: false,
|
|
154
|
+
skipPrompt: true,
|
|
155
|
+
},
|
|
149
156
|
{
|
|
150
157
|
type: 'text',
|
|
151
158
|
name: 'schemaId',
|
|
@@ -167,13 +174,6 @@ async function handleCreate(argv, prompter) {
|
|
|
167
174
|
required: false,
|
|
168
175
|
skipPrompt: true,
|
|
169
176
|
},
|
|
170
|
-
{
|
|
171
|
-
type: 'text',
|
|
172
|
-
name: 'apiName',
|
|
173
|
-
message: 'apiName',
|
|
174
|
-
required: false,
|
|
175
|
-
skipPrompt: true,
|
|
176
|
-
},
|
|
177
177
|
{
|
|
178
178
|
type: 'text',
|
|
179
179
|
name: 'privateApiName',
|
|
@@ -189,19 +189,19 @@ async function handleCreate(argv, prompter) {
|
|
|
189
189
|
.create({
|
|
190
190
|
data: {
|
|
191
191
|
databaseId: cleanedData.databaseId,
|
|
192
|
+
entityField: cleanedData.entityField,
|
|
192
193
|
schemaId: cleanedData.schemaId,
|
|
193
194
|
tableId: cleanedData.tableId,
|
|
194
195
|
tableName: cleanedData.tableName,
|
|
195
|
-
apiName: cleanedData.apiName,
|
|
196
196
|
privateApiName: cleanedData.privateApiName,
|
|
197
197
|
},
|
|
198
198
|
select: {
|
|
199
199
|
id: true,
|
|
200
200
|
databaseId: true,
|
|
201
|
+
entityField: true,
|
|
201
202
|
schemaId: true,
|
|
202
203
|
tableId: true,
|
|
203
204
|
tableName: true,
|
|
204
|
-
apiName: true,
|
|
205
205
|
privateApiName: true,
|
|
206
206
|
},
|
|
207
207
|
})
|
|
@@ -231,6 +231,13 @@ async function handleUpdate(argv, prompter) {
|
|
|
231
231
|
message: 'databaseId',
|
|
232
232
|
required: false,
|
|
233
233
|
},
|
|
234
|
+
{
|
|
235
|
+
type: 'text',
|
|
236
|
+
name: 'entityField',
|
|
237
|
+
message: 'entityField',
|
|
238
|
+
required: false,
|
|
239
|
+
skipPrompt: true,
|
|
240
|
+
},
|
|
234
241
|
{
|
|
235
242
|
type: 'text',
|
|
236
243
|
name: 'schemaId',
|
|
@@ -252,13 +259,6 @@ async function handleUpdate(argv, prompter) {
|
|
|
252
259
|
required: false,
|
|
253
260
|
skipPrompt: true,
|
|
254
261
|
},
|
|
255
|
-
{
|
|
256
|
-
type: 'text',
|
|
257
|
-
name: 'apiName',
|
|
258
|
-
message: 'apiName',
|
|
259
|
-
required: false,
|
|
260
|
-
skipPrompt: true,
|
|
261
|
-
},
|
|
262
262
|
{
|
|
263
263
|
type: 'text',
|
|
264
264
|
name: 'privateApiName',
|
|
@@ -277,19 +277,19 @@ async function handleUpdate(argv, prompter) {
|
|
|
277
277
|
},
|
|
278
278
|
data: {
|
|
279
279
|
databaseId: cleanedData.databaseId,
|
|
280
|
+
entityField: cleanedData.entityField,
|
|
280
281
|
schemaId: cleanedData.schemaId,
|
|
281
282
|
tableId: cleanedData.tableId,
|
|
282
283
|
tableName: cleanedData.tableName,
|
|
283
|
-
apiName: cleanedData.apiName,
|
|
284
284
|
privateApiName: cleanedData.privateApiName,
|
|
285
285
|
},
|
|
286
286
|
select: {
|
|
287
287
|
id: true,
|
|
288
288
|
databaseId: true,
|
|
289
|
+
entityField: true,
|
|
289
290
|
schemaId: true,
|
|
290
291
|
tableId: true,
|
|
291
292
|
tableName: true,
|
|
292
|
-
apiName: true,
|
|
293
293
|
privateApiName: true,
|
|
294
294
|
},
|
|
295
295
|
})
|
|
@@ -9,6 +9,7 @@ import { coerceAnswers, parseFindFirstArgs, parseFindManyArgs, stripUndefined }
|
|
|
9
9
|
const fieldSchema = {
|
|
10
10
|
id: 'uuid',
|
|
11
11
|
databaseId: 'uuid',
|
|
12
|
+
entityField: 'string',
|
|
12
13
|
schemaId: 'uuid',
|
|
13
14
|
tableId: 'uuid',
|
|
14
15
|
tableName: 'string',
|
|
@@ -57,6 +58,7 @@ async function handleList(argv, _prompter) {
|
|
|
57
58
|
const defaultSelect = {
|
|
58
59
|
id: true,
|
|
59
60
|
databaseId: true,
|
|
61
|
+
entityField: true,
|
|
60
62
|
schemaId: true,
|
|
61
63
|
tableId: true,
|
|
62
64
|
tableName: true,
|
|
@@ -79,6 +81,7 @@ async function handleFindFirst(argv, _prompter) {
|
|
|
79
81
|
const defaultSelect = {
|
|
80
82
|
id: true,
|
|
81
83
|
databaseId: true,
|
|
84
|
+
entityField: true,
|
|
82
85
|
schemaId: true,
|
|
83
86
|
tableId: true,
|
|
84
87
|
tableName: true,
|
|
@@ -113,6 +116,7 @@ async function handleGet(argv, prompter) {
|
|
|
113
116
|
select: {
|
|
114
117
|
id: true,
|
|
115
118
|
databaseId: true,
|
|
119
|
+
entityField: true,
|
|
116
120
|
schemaId: true,
|
|
117
121
|
tableId: true,
|
|
118
122
|
tableName: true,
|
|
@@ -138,6 +142,13 @@ async function handleCreate(argv, prompter) {
|
|
|
138
142
|
message: 'databaseId',
|
|
139
143
|
required: true,
|
|
140
144
|
},
|
|
145
|
+
{
|
|
146
|
+
type: 'text',
|
|
147
|
+
name: 'entityField',
|
|
148
|
+
message: 'entityField',
|
|
149
|
+
required: false,
|
|
150
|
+
skipPrompt: true,
|
|
151
|
+
},
|
|
141
152
|
{
|
|
142
153
|
type: 'text',
|
|
143
154
|
name: 'schemaId',
|
|
@@ -167,6 +178,7 @@ async function handleCreate(argv, prompter) {
|
|
|
167
178
|
.create({
|
|
168
179
|
data: {
|
|
169
180
|
databaseId: cleanedData.databaseId,
|
|
181
|
+
entityField: cleanedData.entityField,
|
|
170
182
|
schemaId: cleanedData.schemaId,
|
|
171
183
|
tableId: cleanedData.tableId,
|
|
172
184
|
tableName: cleanedData.tableName,
|
|
@@ -174,6 +186,7 @@ async function handleCreate(argv, prompter) {
|
|
|
174
186
|
select: {
|
|
175
187
|
id: true,
|
|
176
188
|
databaseId: true,
|
|
189
|
+
entityField: true,
|
|
177
190
|
schemaId: true,
|
|
178
191
|
tableId: true,
|
|
179
192
|
tableName: true,
|
|
@@ -205,6 +218,13 @@ async function handleUpdate(argv, prompter) {
|
|
|
205
218
|
message: 'databaseId',
|
|
206
219
|
required: false,
|
|
207
220
|
},
|
|
221
|
+
{
|
|
222
|
+
type: 'text',
|
|
223
|
+
name: 'entityField',
|
|
224
|
+
message: 'entityField',
|
|
225
|
+
required: false,
|
|
226
|
+
skipPrompt: true,
|
|
227
|
+
},
|
|
208
228
|
{
|
|
209
229
|
type: 'text',
|
|
210
230
|
name: 'schemaId',
|
|
@@ -237,6 +257,7 @@ async function handleUpdate(argv, prompter) {
|
|
|
237
257
|
},
|
|
238
258
|
data: {
|
|
239
259
|
databaseId: cleanedData.databaseId,
|
|
260
|
+
entityField: cleanedData.entityField,
|
|
240
261
|
schemaId: cleanedData.schemaId,
|
|
241
262
|
tableId: cleanedData.tableId,
|
|
242
263
|
tableName: cleanedData.tableName,
|
|
@@ -244,6 +265,7 @@ async function handleUpdate(argv, prompter) {
|
|
|
244
265
|
select: {
|
|
245
266
|
id: true,
|
|
246
267
|
databaseId: true,
|
|
268
|
+
entityField: true,
|
|
247
269
|
schemaId: true,
|
|
248
270
|
tableId: true,
|
|
249
271
|
tableName: true,
|
|
@@ -8,23 +8,21 @@ import contextCmd from './commands/context';
|
|
|
8
8
|
import authCmd from './commands/auth';
|
|
9
9
|
import defaultIdsModuleCmd from './commands/default-ids-module';
|
|
10
10
|
import membershipTypesModuleCmd from './commands/membership-types-module';
|
|
11
|
-
import userStateModuleCmd from './commands/user-state-module';
|
|
12
11
|
import sessionSecretsModuleCmd from './commands/session-secrets-module';
|
|
13
|
-
import configSecretsOrgModuleCmd from './commands/config-secrets-org-module';
|
|
14
12
|
import devicesModuleCmd from './commands/devices-module';
|
|
15
13
|
import i18NModuleCmd from './commands/i-18-n-module';
|
|
16
|
-
import userCredentialsModuleCmd from './commands/user-credentials-module';
|
|
17
14
|
import userSettingsModuleCmd from './commands/user-settings-module';
|
|
18
|
-
import
|
|
15
|
+
import userStateModuleCmd from './commands/user-state-module';
|
|
16
|
+
import userCredentialsModuleCmd from './commands/user-credentials-module';
|
|
19
17
|
import connectedAccountsModuleCmd from './commands/connected-accounts-module';
|
|
20
18
|
import emailsModuleCmd from './commands/emails-module';
|
|
21
19
|
import phoneNumbersModuleCmd from './commands/phone-numbers-module';
|
|
22
20
|
import rateLimitsModuleCmd from './commands/rate-limits-module';
|
|
23
21
|
import usersModuleCmd from './commands/users-module';
|
|
24
22
|
import webauthnCredentialsModuleCmd from './commands/webauthn-credentials-module';
|
|
23
|
+
import configSecretsUserModuleCmd from './commands/config-secrets-user-module';
|
|
25
24
|
import cryptoAddressesModuleCmd from './commands/crypto-addresses-module';
|
|
26
25
|
import denormalizedTableFieldCmd from './commands/denormalized-table-field';
|
|
27
|
-
import identityProvidersModuleCmd from './commands/identity-providers-module';
|
|
28
26
|
import rlsModuleCmd from './commands/rls-module';
|
|
29
27
|
import blueprintCmd from './commands/blueprint';
|
|
30
28
|
import blueprintTemplateCmd from './commands/blueprint-template';
|
|
@@ -32,40 +30,47 @@ import blueprintConstructionCmd from './commands/blueprint-construction';
|
|
|
32
30
|
import cryptoAuthModuleCmd from './commands/crypto-auth-module';
|
|
33
31
|
import sessionsModuleCmd from './commands/sessions-module';
|
|
34
32
|
import secureTableProvisionCmd from './commands/secure-table-provision';
|
|
35
|
-
import
|
|
36
|
-
import
|
|
33
|
+
import identityProvidersModuleCmd from './commands/identity-providers-module';
|
|
34
|
+
import integrationProvidersModuleCmd from './commands/integration-providers-module';
|
|
35
|
+
import dbPoolConfigCmd from './commands/db-pool-config';
|
|
36
|
+
import realtimeModuleCmd from './commands/realtime-module';
|
|
37
|
+
import infraSecretsModuleCmd from './commands/infra-secrets-module';
|
|
38
|
+
import internalSecretsModuleCmd from './commands/internal-secrets-module';
|
|
39
|
+
import dbPresetModuleCmd from './commands/db-preset-module';
|
|
37
40
|
import graphModuleCmd from './commands/graph-module';
|
|
38
|
-
import merkleStoreModuleCmd from './commands/merkle-store-module';
|
|
39
41
|
import rateLimitMetersModuleCmd from './commands/rate-limit-meters-module';
|
|
40
|
-
import
|
|
42
|
+
import infraConfigModuleCmd from './commands/infra-config-module';
|
|
41
43
|
import webauthnAuthModuleCmd from './commands/webauthn-auth-module';
|
|
42
|
-
import
|
|
44
|
+
import principalAuthModuleCmd from './commands/principal-auth-module';
|
|
45
|
+
import dbPoolCmd from './commands/db-pool';
|
|
43
46
|
import functionModuleCmd from './commands/function-module';
|
|
47
|
+
import merkleStoreModuleCmd from './commands/merkle-store-module';
|
|
48
|
+
import databaseProvisionModuleCmd from './commands/database-provision-module';
|
|
49
|
+
import functionInvocationModuleCmd from './commands/function-invocation-module';
|
|
44
50
|
import invitesModuleCmd from './commands/invites-module';
|
|
45
|
-
import
|
|
51
|
+
import namespaceModuleCmd from './commands/namespace-module';
|
|
52
|
+
import plansModuleCmd from './commands/plans-module';
|
|
46
53
|
import computeLogModuleCmd from './commands/compute-log-module';
|
|
47
54
|
import inferenceLogModuleCmd from './commands/inference-log-module';
|
|
48
|
-
import namespaceModuleCmd from './commands/namespace-module';
|
|
49
|
-
import resourceModuleCmd from './commands/resource-module';
|
|
50
55
|
import storageLogModuleCmd from './commands/storage-log-module';
|
|
51
56
|
import transferLogModuleCmd from './commands/transfer-log-module';
|
|
52
|
-
import functionDeploymentModuleCmd from './commands/function-deployment-module';
|
|
53
|
-
import plansModuleCmd from './commands/plans-module';
|
|
54
57
|
import billingProviderModuleCmd from './commands/billing-provider-module';
|
|
55
|
-
import
|
|
58
|
+
import functionDeploymentModuleCmd from './commands/function-deployment-module';
|
|
59
|
+
import permissionsModuleCmd from './commands/permissions-module';
|
|
56
60
|
import graphExecutionModuleCmd from './commands/graph-execution-module';
|
|
57
61
|
import hierarchyModuleCmd from './commands/hierarchy-module';
|
|
58
|
-
import permissionsModuleCmd from './commands/permissions-module';
|
|
59
62
|
import notificationsModuleCmd from './commands/notifications-module';
|
|
63
|
+
import relationProvisionCmd from './commands/relation-provision';
|
|
60
64
|
import profilesModuleCmd from './commands/profiles-module';
|
|
61
65
|
import billingModuleCmd from './commands/billing-module';
|
|
62
|
-
import
|
|
66
|
+
import resourceModuleCmd from './commands/resource-module';
|
|
63
67
|
import userAuthModuleCmd from './commands/user-auth-module';
|
|
68
|
+
import dbUsageModuleCmd from './commands/db-usage-module';
|
|
64
69
|
import agentModuleCmd from './commands/agent-module';
|
|
65
70
|
import limitsModuleCmd from './commands/limits-module';
|
|
66
|
-
import membershipsModuleCmd from './commands/memberships-module';
|
|
67
71
|
import entityTypeProvisionCmd from './commands/entity-type-provision';
|
|
68
72
|
import storageModuleCmd from './commands/storage-module';
|
|
73
|
+
import membershipsModuleCmd from './commands/memberships-module';
|
|
69
74
|
import eventsModuleCmd from './commands/events-module';
|
|
70
75
|
import resolveBlueprintFieldCmd from './commands/resolve-blueprint-field';
|
|
71
76
|
import resolveBlueprintTableCmd from './commands/resolve-blueprint-table';
|
|
@@ -84,23 +89,21 @@ const createCommandMap = () => ({
|
|
|
84
89
|
auth: authCmd,
|
|
85
90
|
'default-ids-module': defaultIdsModuleCmd,
|
|
86
91
|
'membership-types-module': membershipTypesModuleCmd,
|
|
87
|
-
'user-state-module': userStateModuleCmd,
|
|
88
92
|
'session-secrets-module': sessionSecretsModuleCmd,
|
|
89
|
-
'config-secrets-org-module': configSecretsOrgModuleCmd,
|
|
90
93
|
'devices-module': devicesModuleCmd,
|
|
91
94
|
'i-18-n-module': i18NModuleCmd,
|
|
92
|
-
'user-credentials-module': userCredentialsModuleCmd,
|
|
93
95
|
'user-settings-module': userSettingsModuleCmd,
|
|
94
|
-
'
|
|
96
|
+
'user-state-module': userStateModuleCmd,
|
|
97
|
+
'user-credentials-module': userCredentialsModuleCmd,
|
|
95
98
|
'connected-accounts-module': connectedAccountsModuleCmd,
|
|
96
99
|
'emails-module': emailsModuleCmd,
|
|
97
100
|
'phone-numbers-module': phoneNumbersModuleCmd,
|
|
98
101
|
'rate-limits-module': rateLimitsModuleCmd,
|
|
99
102
|
'users-module': usersModuleCmd,
|
|
100
103
|
'webauthn-credentials-module': webauthnCredentialsModuleCmd,
|
|
104
|
+
'config-secrets-user-module': configSecretsUserModuleCmd,
|
|
101
105
|
'crypto-addresses-module': cryptoAddressesModuleCmd,
|
|
102
106
|
'denormalized-table-field': denormalizedTableFieldCmd,
|
|
103
|
-
'identity-providers-module': identityProvidersModuleCmd,
|
|
104
107
|
'rls-module': rlsModuleCmd,
|
|
105
108
|
blueprint: blueprintCmd,
|
|
106
109
|
'blueprint-template': blueprintTemplateCmd,
|
|
@@ -108,40 +111,47 @@ const createCommandMap = () => ({
|
|
|
108
111
|
'crypto-auth-module': cryptoAuthModuleCmd,
|
|
109
112
|
'sessions-module': sessionsModuleCmd,
|
|
110
113
|
'secure-table-provision': secureTableProvisionCmd,
|
|
111
|
-
'
|
|
112
|
-
'
|
|
114
|
+
'identity-providers-module': identityProvidersModuleCmd,
|
|
115
|
+
'integration-providers-module': integrationProvidersModuleCmd,
|
|
116
|
+
'db-pool-config': dbPoolConfigCmd,
|
|
117
|
+
'realtime-module': realtimeModuleCmd,
|
|
118
|
+
'infra-secrets-module': infraSecretsModuleCmd,
|
|
119
|
+
'internal-secrets-module': internalSecretsModuleCmd,
|
|
120
|
+
'db-preset-module': dbPresetModuleCmd,
|
|
113
121
|
'graph-module': graphModuleCmd,
|
|
114
|
-
'merkle-store-module': merkleStoreModuleCmd,
|
|
115
122
|
'rate-limit-meters-module': rateLimitMetersModuleCmd,
|
|
116
|
-
'
|
|
123
|
+
'infra-config-module': infraConfigModuleCmd,
|
|
117
124
|
'webauthn-auth-module': webauthnAuthModuleCmd,
|
|
118
|
-
'
|
|
125
|
+
'principal-auth-module': principalAuthModuleCmd,
|
|
126
|
+
'db-pool': dbPoolCmd,
|
|
119
127
|
'function-module': functionModuleCmd,
|
|
128
|
+
'merkle-store-module': merkleStoreModuleCmd,
|
|
129
|
+
'database-provision-module': databaseProvisionModuleCmd,
|
|
130
|
+
'function-invocation-module': functionInvocationModuleCmd,
|
|
120
131
|
'invites-module': invitesModuleCmd,
|
|
121
|
-
'
|
|
132
|
+
'namespace-module': namespaceModuleCmd,
|
|
133
|
+
'plans-module': plansModuleCmd,
|
|
122
134
|
'compute-log-module': computeLogModuleCmd,
|
|
123
135
|
'inference-log-module': inferenceLogModuleCmd,
|
|
124
|
-
'namespace-module': namespaceModuleCmd,
|
|
125
|
-
'resource-module': resourceModuleCmd,
|
|
126
136
|
'storage-log-module': storageLogModuleCmd,
|
|
127
137
|
'transfer-log-module': transferLogModuleCmd,
|
|
128
|
-
'function-deployment-module': functionDeploymentModuleCmd,
|
|
129
|
-
'plans-module': plansModuleCmd,
|
|
130
138
|
'billing-provider-module': billingProviderModuleCmd,
|
|
131
|
-
'
|
|
139
|
+
'function-deployment-module': functionDeploymentModuleCmd,
|
|
140
|
+
'permissions-module': permissionsModuleCmd,
|
|
132
141
|
'graph-execution-module': graphExecutionModuleCmd,
|
|
133
142
|
'hierarchy-module': hierarchyModuleCmd,
|
|
134
|
-
'permissions-module': permissionsModuleCmd,
|
|
135
143
|
'notifications-module': notificationsModuleCmd,
|
|
144
|
+
'relation-provision': relationProvisionCmd,
|
|
136
145
|
'profiles-module': profilesModuleCmd,
|
|
137
146
|
'billing-module': billingModuleCmd,
|
|
138
|
-
'
|
|
147
|
+
'resource-module': resourceModuleCmd,
|
|
139
148
|
'user-auth-module': userAuthModuleCmd,
|
|
149
|
+
'db-usage-module': dbUsageModuleCmd,
|
|
140
150
|
'agent-module': agentModuleCmd,
|
|
141
151
|
'limits-module': limitsModuleCmd,
|
|
142
|
-
'memberships-module': membershipsModuleCmd,
|
|
143
152
|
'entity-type-provision': entityTypeProvisionCmd,
|
|
144
153
|
'storage-module': storageModuleCmd,
|
|
154
|
+
'memberships-module': membershipsModuleCmd,
|
|
145
155
|
'events-module': eventsModuleCmd,
|
|
146
156
|
'resolve-blueprint-field': resolveBlueprintFieldCmd,
|
|
147
157
|
'resolve-blueprint-table': resolveBlueprintTableCmd,
|
|
@@ -156,7 +166,7 @@ const createCommandMap = () => ({
|
|
|
156
166
|
'provision-relation': provisionRelationCmd,
|
|
157
167
|
'provision-bucket': provisionBucketCmd,
|
|
158
168
|
});
|
|
159
|
-
const usage = "\ncsdk <command>\n\nCommands:\n context Manage API contexts\n auth Manage authentication\n default-ids-module defaultIdsModule CRUD operations\n membership-types-module membershipTypesModule CRUD operations\n user-state-module userStateModule CRUD operations\n session-secrets-module sessionSecretsModule CRUD operations\n config-secrets-org-module configSecretsOrgModule CRUD operations\n devices-module devicesModule CRUD operations\n i-18-n-module i18NModule CRUD operations\n user-credentials-module userCredentialsModule CRUD operations\n user-settings-module userSettingsModule CRUD operations\n config-secrets-user-module configSecretsUserModule CRUD operations\n connected-accounts-module connectedAccountsModule CRUD operations\n emails-module emailsModule CRUD operations\n phone-numbers-module phoneNumbersModule CRUD operations\n rate-limits-module rateLimitsModule CRUD operations\n users-module usersModule CRUD operations\n webauthn-credentials-module webauthnCredentialsModule CRUD operations\n crypto-addresses-module cryptoAddressesModule CRUD operations\n denormalized-table-field denormalizedTableField CRUD operations\n identity-providers-module identityProvidersModule CRUD operations\n rls-module rlsModule CRUD operations\n blueprint blueprint CRUD operations\n blueprint-template blueprintTemplate CRUD operations\n blueprint-construction blueprintConstruction CRUD operations\n crypto-auth-module cryptoAuthModule CRUD operations\n sessions-module sessionsModule CRUD operations\n secure-table-provision secureTableProvision CRUD operations\n database-provision-module databaseProvisionModule CRUD operations\n config-secrets-module configSecretsModule CRUD operations\n graph-module graphModule CRUD operations\n merkle-store-module merkleStoreModule CRUD operations\n rate-limit-meters-module rateLimitMetersModule CRUD operations\n realtime-module realtimeModule CRUD operations\n webauthn-auth-module webauthnAuthModule CRUD operations\n function-invocation-module functionInvocationModule CRUD operations\n function-module functionModule CRUD operations\n invites-module invitesModule CRUD operations\n principal-auth-module principalAuthModule CRUD operations\n compute-log-module computeLogModule CRUD operations\n inference-log-module inferenceLogModule CRUD operations\n namespace-module namespaceModule CRUD operations\n resource-module resourceModule CRUD operations\n storage-log-module storageLogModule CRUD operations\n transfer-log-module transferLogModule CRUD operations\n function-deployment-module functionDeploymentModule CRUD operations\n plans-module plansModule CRUD operations\n billing-provider-module billingProviderModule CRUD operations\n db-usage-module dbUsageModule CRUD operations\n graph-execution-module graphExecutionModule CRUD operations\n hierarchy-module hierarchyModule CRUD operations\n permissions-module permissionsModule CRUD operations\n notifications-module notificationsModule CRUD operations\n profiles-module profilesModule CRUD operations\n billing-module billingModule CRUD operations\n relation-provision relationProvision CRUD operations\n user-auth-module userAuthModule CRUD operations\n agent-module agentModule CRUD operations\n limits-module limitsModule CRUD operations\n memberships-module membershipsModule CRUD operations\n entity-type-provision entityTypeProvision CRUD operations\n storage-module storageModule CRUD operations\n events-module eventsModule CRUD operations\n resolve-blueprint-field Resolves a field_name within a given table_id to a field_id. Throws if no match is found. Used by construct_blueprint to translate user-authored field names (e.g. \"location\") into field UUIDs for downstream provisioning procedures. table_id must already be resolved (via resolve_blueprint_table) before calling this.\n resolve-blueprint-table Resolves a table_name (with optional schema_name) to a table_id. Resolution order: (1) if schema_name provided, exact lookup via metaschema_public.schema.name + metaschema_public.table; (2) check local table_map (tables created in current blueprint); (3) search metaschema_public.table by name across all schemas; (4) if multiple matches, throw ambiguous error asking for schema_name; (5) if no match, throw not-found error.\n construct-blueprint Executes a blueprint definition by delegating to provision_* procedures. Creates a blueprint_construction record to track the attempt. Eight phases: (0) entity_type_provision for each membership_type entry \u2014 provisions entity tables, membership modules, and security. When a prefix already exists (e.g., 'org'), the entry extends the existing entity type instead of creating a new one; if a storage[] key is present, it provisions entity-scoped storage for that type. (0.5) scope-based storage: each storage[] entry has an optional scope ('app' or 'org' only). App-scoped storage seeds buckets at migration time. Org-scoped storage resolves the org membership type, creates org_buckets/org_files with owner_id, and seeds buckets per-entity via an AFTER INSERT trigger on the users table. When function_module is installed, a private functions bucket is auto-injected into org-scoped or entity-scoped storage entries. (1) provision_table() for each table with nodes[], fields[], policies[], and grants (table-level indexes/fts/unique_constraints/check_constraints are deferred). After provisioning, optional smart_tags (jsonb object) on the table entry are applied via metaschema.append_table_smart_tags(), and optional smart_tags on individual field entries are applied via metaschema.append_field_smart_tags(). (2) provision_relation() for each relation, (3) provision_index() for top-level + deferred indexes, (4) provision_full_text_search() for top-level + deferred FTS, (5) provision_unique_constraint() for top-level + deferred unique constraints, (6) provision_check_constraint() for top-level + deferred check constraints, (7) seed achievements from definition.achievements[] \u2014 resolves events_module by entity_prefix and creates INSERT actions for levels, level_requirements, and achievement_rewards tables. Phase 0 entity tables are added to the table_map so subsequent phases can reference them by name. Table-level entries are deferred to phases 3-6 so they can reference columns created by relations in phase 2. Returns the construction record ID on success, NULL on failure.\n provision-full-text-search Creates a full-text search configuration on a table. Accepts a jsonb definition with field (tsvector column name) and sources (array of {field, weight, lang}). Graceful: skips if FTS config already exists for the same (table_id, field_id). Returns the fts_id.\n provision-index Creates an index on a table. Accepts a jsonb definition with columns (array of names or single column string), access_method (default BTREE), is_unique, op_classes, options, and name (auto-generated if omitted). Graceful: skips if an index with the same (table_id, field_ids, access_method) already exists. Returns the index_id.\n provision-check-constraint Creates a check constraint on a table from a $type + data blueprint definition. Supports: CheckOneOf (enum validation via = ANY(ARRAY[...])), CheckGreaterThan (single-column > value or cross-column), CheckLessThan (single-column < value or cross-column), CheckNotEqual (cross-column inequality). Builds AST expressions via ast_helpers and inserts into metaschema_public.check_constraint. Graceful: skips if a constraint with the same name already exists.\n provision-unique-constraint Creates a unique constraint on a table. Accepts a jsonb definition with columns (array of field names). Graceful: skips if the exact same unique constraint already exists.\n copy-template-to-blueprint Creates a new blueprint by copying a template definition. Checks visibility: owners can always copy their own templates, others require public visibility. Increments the template copy_count. Returns the new blueprint ID.\n provision-spatial-relation Idempotent provisioner for metaschema_public.spatial_relation. Inserts a row declaring a spatial predicate between two geometry/geography columns (owner and target). Called from construct_blueprint when a relation entry has $type=RelationSpatial. Graceful: re-running with the same (source_table_id, name) returns the existing id without modifying the row. Operator whitelist and st_dwithin \u2194 param_name pairing are enforced by the spatial_relation table CHECKs. Both fields must already exist \u2014 this is a metadata-only insert.\n provision-table Composable table provisioning: creates or finds a table, then creates fields (so Data* modules can reference them), applies N nodes (Data* modules), enables RLS, creates grants, creates N policies, and optionally creates table-level indexes/full_text_searches/unique_constraints. All operations are graceful (skip existing). Accepts multiple nodes and multiple policies per call, unlike secure_table_provision which is limited to one of each. Returns (out_table_id, out_fields).\n provision-relation Composable relation provisioning: creates FK fields, indexes, unique constraints, and junction tables depending on the relation_type. Supports RelationBelongsTo, RelationHasOne, RelationHasMany, and RelationManyToMany. ManyToMany uses provision_table() internally for junction table creation with full node/grant/policy support. All operations are graceful (skip existing). Returns (out_field_id, out_junction_table_id, out_source_field_id, out_target_field_id).\n provision-bucket Provision an S3 bucket for a logical bucket in the database.\nReads the bucket config via RLS, then creates and configures\nthe S3 bucket with the appropriate privacy policies, CORS rules,\nand lifecycle settings.\n\n --help, -h Show this help message\n --version, -v Show version\n";
|
|
169
|
+
const usage = "\ncsdk <command>\n\nCommands:\n context Manage API contexts\n auth Manage authentication\n default-ids-module defaultIdsModule CRUD operations\n membership-types-module membershipTypesModule CRUD operations\n session-secrets-module sessionSecretsModule CRUD operations\n devices-module devicesModule CRUD operations\n i-18-n-module i18NModule CRUD operations\n user-settings-module userSettingsModule CRUD operations\n user-state-module userStateModule CRUD operations\n user-credentials-module userCredentialsModule CRUD operations\n connected-accounts-module connectedAccountsModule CRUD operations\n emails-module emailsModule CRUD operations\n phone-numbers-module phoneNumbersModule CRUD operations\n rate-limits-module rateLimitsModule CRUD operations\n users-module usersModule CRUD operations\n webauthn-credentials-module webauthnCredentialsModule CRUD operations\n config-secrets-user-module configSecretsUserModule CRUD operations\n crypto-addresses-module cryptoAddressesModule CRUD operations\n denormalized-table-field denormalizedTableField CRUD operations\n rls-module rlsModule CRUD operations\n blueprint blueprint CRUD operations\n blueprint-template blueprintTemplate CRUD operations\n blueprint-construction blueprintConstruction CRUD operations\n crypto-auth-module cryptoAuthModule CRUD operations\n sessions-module sessionsModule CRUD operations\n secure-table-provision secureTableProvision CRUD operations\n identity-providers-module identityProvidersModule CRUD operations\n integration-providers-module integrationProvidersModule CRUD operations\n db-pool-config dbPoolConfig CRUD operations\n realtime-module realtimeModule CRUD operations\n infra-secrets-module infraSecretsModule CRUD operations\n internal-secrets-module internalSecretsModule CRUD operations\n db-preset-module dbPresetModule CRUD operations\n graph-module graphModule CRUD operations\n rate-limit-meters-module rateLimitMetersModule CRUD operations\n infra-config-module infraConfigModule CRUD operations\n webauthn-auth-module webauthnAuthModule CRUD operations\n principal-auth-module principalAuthModule CRUD operations\n db-pool dbPool CRUD operations\n function-module functionModule CRUD operations\n merkle-store-module merkleStoreModule CRUD operations\n database-provision-module databaseProvisionModule CRUD operations\n function-invocation-module functionInvocationModule CRUD operations\n invites-module invitesModule CRUD operations\n namespace-module namespaceModule CRUD operations\n plans-module plansModule CRUD operations\n compute-log-module computeLogModule CRUD operations\n inference-log-module inferenceLogModule CRUD operations\n storage-log-module storageLogModule CRUD operations\n transfer-log-module transferLogModule CRUD operations\n billing-provider-module billingProviderModule CRUD operations\n function-deployment-module functionDeploymentModule CRUD operations\n permissions-module permissionsModule CRUD operations\n graph-execution-module graphExecutionModule CRUD operations\n hierarchy-module hierarchyModule CRUD operations\n notifications-module notificationsModule CRUD operations\n relation-provision relationProvision CRUD operations\n profiles-module profilesModule CRUD operations\n billing-module billingModule CRUD operations\n resource-module resourceModule CRUD operations\n user-auth-module userAuthModule CRUD operations\n db-usage-module dbUsageModule CRUD operations\n agent-module agentModule CRUD operations\n limits-module limitsModule CRUD operations\n entity-type-provision entityTypeProvision CRUD operations\n storage-module storageModule CRUD operations\n memberships-module membershipsModule CRUD operations\n events-module eventsModule CRUD operations\n resolve-blueprint-field Resolves a field_name within a given table_id to a field_id. Throws if no match is found. Used by construct_blueprint to translate user-authored field names (e.g. \"location\") into field UUIDs for downstream provisioning procedures. table_id must already be resolved (via resolve_blueprint_table) before calling this.\n resolve-blueprint-table Resolves a table_name (with optional schema_name) to a table_id. Resolution order: (1) if schema_name provided, exact lookup via metaschema_public.schema.name + metaschema_public.table; (2) check local table_map (tables created in current blueprint); (3) search metaschema_public.table by name across all schemas; (4) if multiple matches, throw ambiguous error asking for schema_name; (5) if no match, throw not-found error.\n construct-blueprint Executes a blueprint definition by delegating to provision_* procedures. Creates a blueprint_construction record to track the attempt. Eight phases: (0) entity_type_provision for each membership_type entry \u2014 provisions entity tables, membership modules, and security. When a prefix already exists (e.g., 'org'), the entry extends the existing entity type instead of creating a new one; if a storage[] key is present, it provisions entity-scoped storage for that type. (0.5) scope-based storage: each storage[] entry has an optional scope ('app' or 'org' only). App-scoped storage seeds buckets at migration time. Org-scoped storage resolves the org membership type, creates org_buckets/org_files with owner_id, and seeds buckets per-entity via an AFTER INSERT trigger on the users table. When function_module is installed, a private functions bucket is auto-injected into org-scoped or entity-scoped storage entries. (1) provision_table() for each table with nodes[], fields[], policies[], and grants (table-level indexes/fts/unique_constraints/check_constraints are deferred). After provisioning, optional smart_tags (jsonb object) on the table entry are applied via metaschema.append_table_smart_tags(), and optional smart_tags on individual field entries are applied via metaschema.append_field_smart_tags(). (2) provision_relation() for each relation, (3) provision_index() for top-level + deferred indexes, (4) provision_full_text_search() for top-level + deferred FTS, (5) provision_unique_constraint() for top-level + deferred unique constraints, (6) provision_check_constraint() for top-level + deferred check constraints, (7) seed achievements from definition.achievements[] \u2014 resolves events_module by entity_prefix and creates INSERT actions for levels, level_requirements, and achievement_rewards tables. Phase 0 entity tables are added to the table_map so subsequent phases can reference them by name. Table-level entries are deferred to phases 3-6 so they can reference columns created by relations in phase 2. Returns the construction record ID on success, NULL on failure.\n provision-full-text-search Creates a full-text search configuration on a table. Accepts a jsonb definition with field (tsvector column name) and sources (array of {field, weight, lang}). Graceful: skips if FTS config already exists for the same (table_id, field_id). Returns the fts_id.\n provision-index Creates an index on a table. Accepts a jsonb definition with columns (array of names or single column string), access_method (default BTREE), is_unique, op_classes, options, and name (auto-generated if omitted). Graceful: skips if an index with the same (table_id, field_ids, access_method) already exists. Returns the index_id.\n provision-check-constraint Creates a check constraint on a table from a $type + data blueprint definition. Supports: CheckOneOf (enum validation via = ANY(ARRAY[...])), CheckGreaterThan (single-column > value or cross-column), CheckLessThan (single-column < value or cross-column), CheckNotEqual (cross-column inequality). Builds AST expressions via ast_helpers and inserts into metaschema_public.check_constraint. Graceful: skips if a constraint with the same name already exists.\n provision-unique-constraint Creates a unique constraint on a table. Accepts a jsonb definition with columns (array of field names). Graceful: skips if the exact same unique constraint already exists.\n copy-template-to-blueprint Creates a new blueprint by copying a template definition. Checks visibility: owners can always copy their own templates, others require public visibility. Increments the template copy_count. Returns the new blueprint ID.\n provision-spatial-relation Idempotent provisioner for metaschema_public.spatial_relation. Inserts a row declaring a spatial predicate between two geometry/geography columns (owner and target). Called from construct_blueprint when a relation entry has $type=RelationSpatial. Graceful: re-running with the same (source_table_id, name) returns the existing id without modifying the row. Operator whitelist and st_dwithin \u2194 param_name pairing are enforced by the spatial_relation table CHECKs. Both fields must already exist \u2014 this is a metadata-only insert.\n provision-table Composable table provisioning: creates or finds a table, then creates fields (so Data* modules can reference them), applies N nodes (Data* modules), enables RLS, creates grants, creates N policies, and optionally creates table-level indexes/full_text_searches/unique_constraints. All operations are graceful (skip existing). Accepts multiple nodes and multiple policies per call, unlike secure_table_provision which is limited to one of each. Returns (out_table_id, out_fields).\n provision-relation Composable relation provisioning: creates FK fields, indexes, unique constraints, and junction tables depending on the relation_type. Supports RelationBelongsTo, RelationHasOne, RelationHasMany, and RelationManyToMany. ManyToMany uses provision_table() internally for junction table creation with full node/grant/policy support. All operations are graceful (skip existing). Returns (out_field_id, out_junction_table_id, out_source_field_id, out_target_field_id).\n provision-bucket Provision an S3 bucket for a logical bucket in the database.\nReads the bucket config via RLS, then creates and configures\nthe S3 bucket with the appropriate privacy policies, CORS rules,\nand lifecycle settings.\n\n --help, -h Show this help message\n --version, -v Show version\n";
|
|
160
170
|
export const commands = async (argv, prompter, options) => {
|
|
161
171
|
if (argv.help || argv.h) {
|
|
162
172
|
console.log(usage);
|
|
@@ -2,23 +2,21 @@ export declare const getStore: () => import("appstash").ConfigStore;
|
|
|
2
2
|
export declare function getClient(contextName?: string): {
|
|
3
3
|
defaultIdsModule: import("..").DefaultIdsModuleModel;
|
|
4
4
|
membershipTypesModule: import("..").MembershipTypesModuleModel;
|
|
5
|
-
userStateModule: import("..").UserStateModuleModel;
|
|
6
5
|
sessionSecretsModule: import("..").SessionSecretsModuleModel;
|
|
7
|
-
configSecretsOrgModule: import("..").ConfigSecretsOrgModuleModel;
|
|
8
6
|
devicesModule: import("..").DevicesModuleModel;
|
|
9
7
|
i18NModule: import("..").I18NModuleModel;
|
|
10
|
-
userCredentialsModule: import("..").UserCredentialsModuleModel;
|
|
11
8
|
userSettingsModule: import("..").UserSettingsModuleModel;
|
|
12
|
-
|
|
9
|
+
userStateModule: import("..").UserStateModuleModel;
|
|
10
|
+
userCredentialsModule: import("..").UserCredentialsModuleModel;
|
|
13
11
|
connectedAccountsModule: import("..").ConnectedAccountsModuleModel;
|
|
14
12
|
emailsModule: import("..").EmailsModuleModel;
|
|
15
13
|
phoneNumbersModule: import("..").PhoneNumbersModuleModel;
|
|
16
14
|
rateLimitsModule: import("..").RateLimitsModuleModel;
|
|
17
15
|
usersModule: import("..").UsersModuleModel;
|
|
18
16
|
webauthnCredentialsModule: import("..").WebauthnCredentialsModuleModel;
|
|
17
|
+
configSecretsUserModule: import("..").ConfigSecretsUserModuleModel;
|
|
19
18
|
cryptoAddressesModule: import("..").CryptoAddressesModuleModel;
|
|
20
19
|
denormalizedTableField: import("..").DenormalizedTableFieldModel;
|
|
21
|
-
identityProvidersModule: import("..").IdentityProvidersModuleModel;
|
|
22
20
|
rlsModule: import("..").RlsModuleModel;
|
|
23
21
|
blueprint: import("..").BlueprintModel;
|
|
24
22
|
blueprintTemplate: import("..").BlueprintTemplateModel;
|
|
@@ -26,40 +24,47 @@ export declare function getClient(contextName?: string): {
|
|
|
26
24
|
cryptoAuthModule: import("..").CryptoAuthModuleModel;
|
|
27
25
|
sessionsModule: import("..").SessionsModuleModel;
|
|
28
26
|
secureTableProvision: import("..").SecureTableProvisionModel;
|
|
29
|
-
|
|
30
|
-
|
|
27
|
+
identityProvidersModule: import("..").IdentityProvidersModuleModel;
|
|
28
|
+
integrationProvidersModule: import("..").IntegrationProvidersModuleModel;
|
|
29
|
+
dbPoolConfig: import("..").DbPoolConfigModel;
|
|
30
|
+
realtimeModule: import("..").RealtimeModuleModel;
|
|
31
|
+
infraSecretsModule: import("..").InfraSecretsModuleModel;
|
|
32
|
+
internalSecretsModule: import("..").InternalSecretsModuleModel;
|
|
33
|
+
dbPresetModule: import("..").DbPresetModuleModel;
|
|
31
34
|
graphModule: import("..").GraphModuleModel;
|
|
32
|
-
merkleStoreModule: import("..").MerkleStoreModuleModel;
|
|
33
35
|
rateLimitMetersModule: import("..").RateLimitMetersModuleModel;
|
|
34
|
-
|
|
36
|
+
infraConfigModule: import("..").InfraConfigModuleModel;
|
|
35
37
|
webauthnAuthModule: import("..").WebauthnAuthModuleModel;
|
|
36
|
-
|
|
38
|
+
principalAuthModule: import("..").PrincipalAuthModuleModel;
|
|
39
|
+
dbPool: import("..").DbPoolModel;
|
|
37
40
|
functionModule: import("..").FunctionModuleModel;
|
|
41
|
+
merkleStoreModule: import("..").MerkleStoreModuleModel;
|
|
42
|
+
databaseProvisionModule: import("..").DatabaseProvisionModuleModel;
|
|
43
|
+
functionInvocationModule: import("..").FunctionInvocationModuleModel;
|
|
38
44
|
invitesModule: import("..").InvitesModuleModel;
|
|
39
|
-
|
|
45
|
+
namespaceModule: import("..").NamespaceModuleModel;
|
|
46
|
+
plansModule: import("..").PlansModuleModel;
|
|
40
47
|
computeLogModule: import("..").ComputeLogModuleModel;
|
|
41
48
|
inferenceLogModule: import("..").InferenceLogModuleModel;
|
|
42
|
-
namespaceModule: import("..").NamespaceModuleModel;
|
|
43
|
-
resourceModule: import("..").ResourceModuleModel;
|
|
44
49
|
storageLogModule: import("..").StorageLogModuleModel;
|
|
45
50
|
transferLogModule: import("..").TransferLogModuleModel;
|
|
46
|
-
functionDeploymentModule: import("..").FunctionDeploymentModuleModel;
|
|
47
|
-
plansModule: import("..").PlansModuleModel;
|
|
48
51
|
billingProviderModule: import("..").BillingProviderModuleModel;
|
|
49
|
-
|
|
52
|
+
functionDeploymentModule: import("..").FunctionDeploymentModuleModel;
|
|
53
|
+
permissionsModule: import("..").PermissionsModuleModel;
|
|
50
54
|
graphExecutionModule: import("..").GraphExecutionModuleModel;
|
|
51
55
|
hierarchyModule: import("..").HierarchyModuleModel;
|
|
52
|
-
permissionsModule: import("..").PermissionsModuleModel;
|
|
53
56
|
notificationsModule: import("..").NotificationsModuleModel;
|
|
57
|
+
relationProvision: import("..").RelationProvisionModel;
|
|
54
58
|
profilesModule: import("..").ProfilesModuleModel;
|
|
55
59
|
billingModule: import("..").BillingModuleModel;
|
|
56
|
-
|
|
60
|
+
resourceModule: import("..").ResourceModuleModel;
|
|
57
61
|
userAuthModule: import("..").UserAuthModuleModel;
|
|
62
|
+
dbUsageModule: import("..").DbUsageModuleModel;
|
|
58
63
|
agentModule: import("..").AgentModuleModel;
|
|
59
64
|
limitsModule: import("..").LimitsModuleModel;
|
|
60
|
-
membershipsModule: import("..").MembershipsModuleModel;
|
|
61
65
|
entityTypeProvision: import("..").EntityTypeProvisionModel;
|
|
62
66
|
storageModule: import("..").StorageModuleModel;
|
|
67
|
+
membershipsModule: import("..").MembershipsModuleModel;
|
|
63
68
|
eventsModule: import("..").EventsModuleModel;
|
|
64
69
|
query: {
|
|
65
70
|
resolveBlueprintField: (args: import("../orm/query").ResolveBlueprintFieldVariables, options?: {
|