@constructive-sdk/cli 0.29.8 → 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 +7 -7
- 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
|
@@ -11,10 +11,10 @@ const utils_1 = require("../utils");
|
|
|
11
11
|
const fieldSchema = {
|
|
12
12
|
id: 'uuid',
|
|
13
13
|
databaseId: 'uuid',
|
|
14
|
+
entityField: 'string',
|
|
14
15
|
schemaId: 'uuid',
|
|
15
16
|
tableId: 'uuid',
|
|
16
17
|
tableName: 'string',
|
|
17
|
-
apiName: 'string',
|
|
18
18
|
privateApiName: 'string',
|
|
19
19
|
};
|
|
20
20
|
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';
|
|
@@ -61,10 +61,10 @@ async function handleList(argv, _prompter) {
|
|
|
61
61
|
const defaultSelect = {
|
|
62
62
|
id: true,
|
|
63
63
|
databaseId: true,
|
|
64
|
+
entityField: true,
|
|
64
65
|
schemaId: true,
|
|
65
66
|
tableId: true,
|
|
66
67
|
tableName: true,
|
|
67
|
-
apiName: true,
|
|
68
68
|
privateApiName: true,
|
|
69
69
|
};
|
|
70
70
|
const findManyArgs = (0, utils_1.parseFindManyArgs)(argv, defaultSelect);
|
|
@@ -85,10 +85,10 @@ async function handleFindFirst(argv, _prompter) {
|
|
|
85
85
|
const defaultSelect = {
|
|
86
86
|
id: true,
|
|
87
87
|
databaseId: true,
|
|
88
|
+
entityField: true,
|
|
88
89
|
schemaId: true,
|
|
89
90
|
tableId: true,
|
|
90
91
|
tableName: true,
|
|
91
|
-
apiName: true,
|
|
92
92
|
privateApiName: true,
|
|
93
93
|
};
|
|
94
94
|
const findFirstArgs = (0, utils_1.parseFindFirstArgs)(argv, defaultSelect);
|
|
@@ -121,10 +121,10 @@ async function handleGet(argv, prompter) {
|
|
|
121
121
|
select: {
|
|
122
122
|
id: true,
|
|
123
123
|
databaseId: true,
|
|
124
|
+
entityField: true,
|
|
124
125
|
schemaId: true,
|
|
125
126
|
tableId: true,
|
|
126
127
|
tableName: true,
|
|
127
|
-
apiName: true,
|
|
128
128
|
privateApiName: true,
|
|
129
129
|
},
|
|
130
130
|
})
|
|
@@ -148,6 +148,13 @@ async function handleCreate(argv, prompter) {
|
|
|
148
148
|
message: 'databaseId',
|
|
149
149
|
required: true,
|
|
150
150
|
},
|
|
151
|
+
{
|
|
152
|
+
type: 'text',
|
|
153
|
+
name: 'entityField',
|
|
154
|
+
message: 'entityField',
|
|
155
|
+
required: false,
|
|
156
|
+
skipPrompt: true,
|
|
157
|
+
},
|
|
151
158
|
{
|
|
152
159
|
type: 'text',
|
|
153
160
|
name: 'schemaId',
|
|
@@ -169,13 +176,6 @@ async function handleCreate(argv, prompter) {
|
|
|
169
176
|
required: false,
|
|
170
177
|
skipPrompt: true,
|
|
171
178
|
},
|
|
172
|
-
{
|
|
173
|
-
type: 'text',
|
|
174
|
-
name: 'apiName',
|
|
175
|
-
message: 'apiName',
|
|
176
|
-
required: false,
|
|
177
|
-
skipPrompt: true,
|
|
178
|
-
},
|
|
179
179
|
{
|
|
180
180
|
type: 'text',
|
|
181
181
|
name: 'privateApiName',
|
|
@@ -191,19 +191,19 @@ async function handleCreate(argv, prompter) {
|
|
|
191
191
|
.create({
|
|
192
192
|
data: {
|
|
193
193
|
databaseId: cleanedData.databaseId,
|
|
194
|
+
entityField: cleanedData.entityField,
|
|
194
195
|
schemaId: cleanedData.schemaId,
|
|
195
196
|
tableId: cleanedData.tableId,
|
|
196
197
|
tableName: cleanedData.tableName,
|
|
197
|
-
apiName: cleanedData.apiName,
|
|
198
198
|
privateApiName: cleanedData.privateApiName,
|
|
199
199
|
},
|
|
200
200
|
select: {
|
|
201
201
|
id: true,
|
|
202
202
|
databaseId: true,
|
|
203
|
+
entityField: true,
|
|
203
204
|
schemaId: true,
|
|
204
205
|
tableId: true,
|
|
205
206
|
tableName: true,
|
|
206
|
-
apiName: true,
|
|
207
207
|
privateApiName: true,
|
|
208
208
|
},
|
|
209
209
|
})
|
|
@@ -233,6 +233,13 @@ async function handleUpdate(argv, prompter) {
|
|
|
233
233
|
message: 'databaseId',
|
|
234
234
|
required: false,
|
|
235
235
|
},
|
|
236
|
+
{
|
|
237
|
+
type: 'text',
|
|
238
|
+
name: 'entityField',
|
|
239
|
+
message: 'entityField',
|
|
240
|
+
required: false,
|
|
241
|
+
skipPrompt: true,
|
|
242
|
+
},
|
|
236
243
|
{
|
|
237
244
|
type: 'text',
|
|
238
245
|
name: 'schemaId',
|
|
@@ -254,13 +261,6 @@ async function handleUpdate(argv, prompter) {
|
|
|
254
261
|
required: false,
|
|
255
262
|
skipPrompt: true,
|
|
256
263
|
},
|
|
257
|
-
{
|
|
258
|
-
type: 'text',
|
|
259
|
-
name: 'apiName',
|
|
260
|
-
message: 'apiName',
|
|
261
|
-
required: false,
|
|
262
|
-
skipPrompt: true,
|
|
263
|
-
},
|
|
264
264
|
{
|
|
265
265
|
type: 'text',
|
|
266
266
|
name: 'privateApiName',
|
|
@@ -279,19 +279,19 @@ async function handleUpdate(argv, prompter) {
|
|
|
279
279
|
},
|
|
280
280
|
data: {
|
|
281
281
|
databaseId: cleanedData.databaseId,
|
|
282
|
+
entityField: cleanedData.entityField,
|
|
282
283
|
schemaId: cleanedData.schemaId,
|
|
283
284
|
tableId: cleanedData.tableId,
|
|
284
285
|
tableName: cleanedData.tableName,
|
|
285
|
-
apiName: cleanedData.apiName,
|
|
286
286
|
privateApiName: cleanedData.privateApiName,
|
|
287
287
|
},
|
|
288
288
|
select: {
|
|
289
289
|
id: true,
|
|
290
290
|
databaseId: true,
|
|
291
|
+
entityField: true,
|
|
291
292
|
schemaId: true,
|
|
292
293
|
tableId: true,
|
|
293
294
|
tableName: true,
|
|
294
|
-
apiName: true,
|
|
295
295
|
privateApiName: true,
|
|
296
296
|
},
|
|
297
297
|
})
|
|
@@ -11,6 +11,7 @@ const utils_1 = require("../utils");
|
|
|
11
11
|
const fieldSchema = {
|
|
12
12
|
id: 'uuid',
|
|
13
13
|
databaseId: 'uuid',
|
|
14
|
+
entityField: 'string',
|
|
14
15
|
schemaId: 'uuid',
|
|
15
16
|
tableId: 'uuid',
|
|
16
17
|
tableName: 'string',
|
|
@@ -59,6 +60,7 @@ async function handleList(argv, _prompter) {
|
|
|
59
60
|
const defaultSelect = {
|
|
60
61
|
id: true,
|
|
61
62
|
databaseId: true,
|
|
63
|
+
entityField: true,
|
|
62
64
|
schemaId: true,
|
|
63
65
|
tableId: true,
|
|
64
66
|
tableName: true,
|
|
@@ -81,6 +83,7 @@ async function handleFindFirst(argv, _prompter) {
|
|
|
81
83
|
const defaultSelect = {
|
|
82
84
|
id: true,
|
|
83
85
|
databaseId: true,
|
|
86
|
+
entityField: true,
|
|
84
87
|
schemaId: true,
|
|
85
88
|
tableId: true,
|
|
86
89
|
tableName: true,
|
|
@@ -115,6 +118,7 @@ async function handleGet(argv, prompter) {
|
|
|
115
118
|
select: {
|
|
116
119
|
id: true,
|
|
117
120
|
databaseId: true,
|
|
121
|
+
entityField: true,
|
|
118
122
|
schemaId: true,
|
|
119
123
|
tableId: true,
|
|
120
124
|
tableName: true,
|
|
@@ -140,6 +144,13 @@ async function handleCreate(argv, prompter) {
|
|
|
140
144
|
message: 'databaseId',
|
|
141
145
|
required: true,
|
|
142
146
|
},
|
|
147
|
+
{
|
|
148
|
+
type: 'text',
|
|
149
|
+
name: 'entityField',
|
|
150
|
+
message: 'entityField',
|
|
151
|
+
required: false,
|
|
152
|
+
skipPrompt: true,
|
|
153
|
+
},
|
|
143
154
|
{
|
|
144
155
|
type: 'text',
|
|
145
156
|
name: 'schemaId',
|
|
@@ -169,6 +180,7 @@ async function handleCreate(argv, prompter) {
|
|
|
169
180
|
.create({
|
|
170
181
|
data: {
|
|
171
182
|
databaseId: cleanedData.databaseId,
|
|
183
|
+
entityField: cleanedData.entityField,
|
|
172
184
|
schemaId: cleanedData.schemaId,
|
|
173
185
|
tableId: cleanedData.tableId,
|
|
174
186
|
tableName: cleanedData.tableName,
|
|
@@ -176,6 +188,7 @@ async function handleCreate(argv, prompter) {
|
|
|
176
188
|
select: {
|
|
177
189
|
id: true,
|
|
178
190
|
databaseId: true,
|
|
191
|
+
entityField: true,
|
|
179
192
|
schemaId: true,
|
|
180
193
|
tableId: true,
|
|
181
194
|
tableName: true,
|
|
@@ -207,6 +220,13 @@ async function handleUpdate(argv, prompter) {
|
|
|
207
220
|
message: 'databaseId',
|
|
208
221
|
required: false,
|
|
209
222
|
},
|
|
223
|
+
{
|
|
224
|
+
type: 'text',
|
|
225
|
+
name: 'entityField',
|
|
226
|
+
message: 'entityField',
|
|
227
|
+
required: false,
|
|
228
|
+
skipPrompt: true,
|
|
229
|
+
},
|
|
210
230
|
{
|
|
211
231
|
type: 'text',
|
|
212
232
|
name: 'schemaId',
|
|
@@ -239,6 +259,7 @@ async function handleUpdate(argv, prompter) {
|
|
|
239
259
|
},
|
|
240
260
|
data: {
|
|
241
261
|
databaseId: cleanedData.databaseId,
|
|
262
|
+
entityField: cleanedData.entityField,
|
|
242
263
|
schemaId: cleanedData.schemaId,
|
|
243
264
|
tableId: cleanedData.tableId,
|
|
244
265
|
tableName: cleanedData.tableName,
|
|
@@ -246,6 +267,7 @@ async function handleUpdate(argv, prompter) {
|
|
|
246
267
|
select: {
|
|
247
268
|
id: true,
|
|
248
269
|
databaseId: true,
|
|
270
|
+
entityField: true,
|
|
249
271
|
schemaId: true,
|
|
250
272
|
tableId: true,
|
|
251
273
|
tableName: true,
|
package/modules/cli/commands.js
CHANGED
|
@@ -14,23 +14,21 @@ const context_1 = __importDefault(require("./commands/context"));
|
|
|
14
14
|
const auth_1 = __importDefault(require("./commands/auth"));
|
|
15
15
|
const default_ids_module_1 = __importDefault(require("./commands/default-ids-module"));
|
|
16
16
|
const membership_types_module_1 = __importDefault(require("./commands/membership-types-module"));
|
|
17
|
-
const user_state_module_1 = __importDefault(require("./commands/user-state-module"));
|
|
18
17
|
const session_secrets_module_1 = __importDefault(require("./commands/session-secrets-module"));
|
|
19
|
-
const config_secrets_org_module_1 = __importDefault(require("./commands/config-secrets-org-module"));
|
|
20
18
|
const devices_module_1 = __importDefault(require("./commands/devices-module"));
|
|
21
19
|
const i_18_n_module_1 = __importDefault(require("./commands/i-18-n-module"));
|
|
22
|
-
const user_credentials_module_1 = __importDefault(require("./commands/user-credentials-module"));
|
|
23
20
|
const user_settings_module_1 = __importDefault(require("./commands/user-settings-module"));
|
|
24
|
-
const
|
|
21
|
+
const user_state_module_1 = __importDefault(require("./commands/user-state-module"));
|
|
22
|
+
const user_credentials_module_1 = __importDefault(require("./commands/user-credentials-module"));
|
|
25
23
|
const connected_accounts_module_1 = __importDefault(require("./commands/connected-accounts-module"));
|
|
26
24
|
const emails_module_1 = __importDefault(require("./commands/emails-module"));
|
|
27
25
|
const phone_numbers_module_1 = __importDefault(require("./commands/phone-numbers-module"));
|
|
28
26
|
const rate_limits_module_1 = __importDefault(require("./commands/rate-limits-module"));
|
|
29
27
|
const users_module_1 = __importDefault(require("./commands/users-module"));
|
|
30
28
|
const webauthn_credentials_module_1 = __importDefault(require("./commands/webauthn-credentials-module"));
|
|
29
|
+
const config_secrets_user_module_1 = __importDefault(require("./commands/config-secrets-user-module"));
|
|
31
30
|
const crypto_addresses_module_1 = __importDefault(require("./commands/crypto-addresses-module"));
|
|
32
31
|
const denormalized_table_field_1 = __importDefault(require("./commands/denormalized-table-field"));
|
|
33
|
-
const identity_providers_module_1 = __importDefault(require("./commands/identity-providers-module"));
|
|
34
32
|
const rls_module_1 = __importDefault(require("./commands/rls-module"));
|
|
35
33
|
const blueprint_1 = __importDefault(require("./commands/blueprint"));
|
|
36
34
|
const blueprint_template_1 = __importDefault(require("./commands/blueprint-template"));
|
|
@@ -38,40 +36,47 @@ const blueprint_construction_1 = __importDefault(require("./commands/blueprint-c
|
|
|
38
36
|
const crypto_auth_module_1 = __importDefault(require("./commands/crypto-auth-module"));
|
|
39
37
|
const sessions_module_1 = __importDefault(require("./commands/sessions-module"));
|
|
40
38
|
const secure_table_provision_1 = __importDefault(require("./commands/secure-table-provision"));
|
|
41
|
-
const
|
|
42
|
-
const
|
|
39
|
+
const identity_providers_module_1 = __importDefault(require("./commands/identity-providers-module"));
|
|
40
|
+
const integration_providers_module_1 = __importDefault(require("./commands/integration-providers-module"));
|
|
41
|
+
const db_pool_config_1 = __importDefault(require("./commands/db-pool-config"));
|
|
42
|
+
const realtime_module_1 = __importDefault(require("./commands/realtime-module"));
|
|
43
|
+
const infra_secrets_module_1 = __importDefault(require("./commands/infra-secrets-module"));
|
|
44
|
+
const internal_secrets_module_1 = __importDefault(require("./commands/internal-secrets-module"));
|
|
45
|
+
const db_preset_module_1 = __importDefault(require("./commands/db-preset-module"));
|
|
43
46
|
const graph_module_1 = __importDefault(require("./commands/graph-module"));
|
|
44
|
-
const merkle_store_module_1 = __importDefault(require("./commands/merkle-store-module"));
|
|
45
47
|
const rate_limit_meters_module_1 = __importDefault(require("./commands/rate-limit-meters-module"));
|
|
46
|
-
const
|
|
48
|
+
const infra_config_module_1 = __importDefault(require("./commands/infra-config-module"));
|
|
47
49
|
const webauthn_auth_module_1 = __importDefault(require("./commands/webauthn-auth-module"));
|
|
48
|
-
const
|
|
50
|
+
const principal_auth_module_1 = __importDefault(require("./commands/principal-auth-module"));
|
|
51
|
+
const db_pool_1 = __importDefault(require("./commands/db-pool"));
|
|
49
52
|
const function_module_1 = __importDefault(require("./commands/function-module"));
|
|
53
|
+
const merkle_store_module_1 = __importDefault(require("./commands/merkle-store-module"));
|
|
54
|
+
const database_provision_module_1 = __importDefault(require("./commands/database-provision-module"));
|
|
55
|
+
const function_invocation_module_1 = __importDefault(require("./commands/function-invocation-module"));
|
|
50
56
|
const invites_module_1 = __importDefault(require("./commands/invites-module"));
|
|
51
|
-
const
|
|
57
|
+
const namespace_module_1 = __importDefault(require("./commands/namespace-module"));
|
|
58
|
+
const plans_module_1 = __importDefault(require("./commands/plans-module"));
|
|
52
59
|
const compute_log_module_1 = __importDefault(require("./commands/compute-log-module"));
|
|
53
60
|
const inference_log_module_1 = __importDefault(require("./commands/inference-log-module"));
|
|
54
|
-
const namespace_module_1 = __importDefault(require("./commands/namespace-module"));
|
|
55
|
-
const resource_module_1 = __importDefault(require("./commands/resource-module"));
|
|
56
61
|
const storage_log_module_1 = __importDefault(require("./commands/storage-log-module"));
|
|
57
62
|
const transfer_log_module_1 = __importDefault(require("./commands/transfer-log-module"));
|
|
58
|
-
const function_deployment_module_1 = __importDefault(require("./commands/function-deployment-module"));
|
|
59
|
-
const plans_module_1 = __importDefault(require("./commands/plans-module"));
|
|
60
63
|
const billing_provider_module_1 = __importDefault(require("./commands/billing-provider-module"));
|
|
61
|
-
const
|
|
64
|
+
const function_deployment_module_1 = __importDefault(require("./commands/function-deployment-module"));
|
|
65
|
+
const permissions_module_1 = __importDefault(require("./commands/permissions-module"));
|
|
62
66
|
const graph_execution_module_1 = __importDefault(require("./commands/graph-execution-module"));
|
|
63
67
|
const hierarchy_module_1 = __importDefault(require("./commands/hierarchy-module"));
|
|
64
|
-
const permissions_module_1 = __importDefault(require("./commands/permissions-module"));
|
|
65
68
|
const notifications_module_1 = __importDefault(require("./commands/notifications-module"));
|
|
69
|
+
const relation_provision_1 = __importDefault(require("./commands/relation-provision"));
|
|
66
70
|
const profiles_module_1 = __importDefault(require("./commands/profiles-module"));
|
|
67
71
|
const billing_module_1 = __importDefault(require("./commands/billing-module"));
|
|
68
|
-
const
|
|
72
|
+
const resource_module_1 = __importDefault(require("./commands/resource-module"));
|
|
69
73
|
const user_auth_module_1 = __importDefault(require("./commands/user-auth-module"));
|
|
74
|
+
const db_usage_module_1 = __importDefault(require("./commands/db-usage-module"));
|
|
70
75
|
const agent_module_1 = __importDefault(require("./commands/agent-module"));
|
|
71
76
|
const limits_module_1 = __importDefault(require("./commands/limits-module"));
|
|
72
|
-
const memberships_module_1 = __importDefault(require("./commands/memberships-module"));
|
|
73
77
|
const entity_type_provision_1 = __importDefault(require("./commands/entity-type-provision"));
|
|
74
78
|
const storage_module_1 = __importDefault(require("./commands/storage-module"));
|
|
79
|
+
const memberships_module_1 = __importDefault(require("./commands/memberships-module"));
|
|
75
80
|
const events_module_1 = __importDefault(require("./commands/events-module"));
|
|
76
81
|
const resolve_blueprint_field_1 = __importDefault(require("./commands/resolve-blueprint-field"));
|
|
77
82
|
const resolve_blueprint_table_1 = __importDefault(require("./commands/resolve-blueprint-table"));
|
|
@@ -90,23 +95,21 @@ const createCommandMap = () => ({
|
|
|
90
95
|
auth: auth_1.default,
|
|
91
96
|
'default-ids-module': default_ids_module_1.default,
|
|
92
97
|
'membership-types-module': membership_types_module_1.default,
|
|
93
|
-
'user-state-module': user_state_module_1.default,
|
|
94
98
|
'session-secrets-module': session_secrets_module_1.default,
|
|
95
|
-
'config-secrets-org-module': config_secrets_org_module_1.default,
|
|
96
99
|
'devices-module': devices_module_1.default,
|
|
97
100
|
'i-18-n-module': i_18_n_module_1.default,
|
|
98
|
-
'user-credentials-module': user_credentials_module_1.default,
|
|
99
101
|
'user-settings-module': user_settings_module_1.default,
|
|
100
|
-
'
|
|
102
|
+
'user-state-module': user_state_module_1.default,
|
|
103
|
+
'user-credentials-module': user_credentials_module_1.default,
|
|
101
104
|
'connected-accounts-module': connected_accounts_module_1.default,
|
|
102
105
|
'emails-module': emails_module_1.default,
|
|
103
106
|
'phone-numbers-module': phone_numbers_module_1.default,
|
|
104
107
|
'rate-limits-module': rate_limits_module_1.default,
|
|
105
108
|
'users-module': users_module_1.default,
|
|
106
109
|
'webauthn-credentials-module': webauthn_credentials_module_1.default,
|
|
110
|
+
'config-secrets-user-module': config_secrets_user_module_1.default,
|
|
107
111
|
'crypto-addresses-module': crypto_addresses_module_1.default,
|
|
108
112
|
'denormalized-table-field': denormalized_table_field_1.default,
|
|
109
|
-
'identity-providers-module': identity_providers_module_1.default,
|
|
110
113
|
'rls-module': rls_module_1.default,
|
|
111
114
|
blueprint: blueprint_1.default,
|
|
112
115
|
'blueprint-template': blueprint_template_1.default,
|
|
@@ -114,40 +117,47 @@ const createCommandMap = () => ({
|
|
|
114
117
|
'crypto-auth-module': crypto_auth_module_1.default,
|
|
115
118
|
'sessions-module': sessions_module_1.default,
|
|
116
119
|
'secure-table-provision': secure_table_provision_1.default,
|
|
117
|
-
'
|
|
118
|
-
'
|
|
120
|
+
'identity-providers-module': identity_providers_module_1.default,
|
|
121
|
+
'integration-providers-module': integration_providers_module_1.default,
|
|
122
|
+
'db-pool-config': db_pool_config_1.default,
|
|
123
|
+
'realtime-module': realtime_module_1.default,
|
|
124
|
+
'infra-secrets-module': infra_secrets_module_1.default,
|
|
125
|
+
'internal-secrets-module': internal_secrets_module_1.default,
|
|
126
|
+
'db-preset-module': db_preset_module_1.default,
|
|
119
127
|
'graph-module': graph_module_1.default,
|
|
120
|
-
'merkle-store-module': merkle_store_module_1.default,
|
|
121
128
|
'rate-limit-meters-module': rate_limit_meters_module_1.default,
|
|
122
|
-
'
|
|
129
|
+
'infra-config-module': infra_config_module_1.default,
|
|
123
130
|
'webauthn-auth-module': webauthn_auth_module_1.default,
|
|
124
|
-
'
|
|
131
|
+
'principal-auth-module': principal_auth_module_1.default,
|
|
132
|
+
'db-pool': db_pool_1.default,
|
|
125
133
|
'function-module': function_module_1.default,
|
|
134
|
+
'merkle-store-module': merkle_store_module_1.default,
|
|
135
|
+
'database-provision-module': database_provision_module_1.default,
|
|
136
|
+
'function-invocation-module': function_invocation_module_1.default,
|
|
126
137
|
'invites-module': invites_module_1.default,
|
|
127
|
-
'
|
|
138
|
+
'namespace-module': namespace_module_1.default,
|
|
139
|
+
'plans-module': plans_module_1.default,
|
|
128
140
|
'compute-log-module': compute_log_module_1.default,
|
|
129
141
|
'inference-log-module': inference_log_module_1.default,
|
|
130
|
-
'namespace-module': namespace_module_1.default,
|
|
131
|
-
'resource-module': resource_module_1.default,
|
|
132
142
|
'storage-log-module': storage_log_module_1.default,
|
|
133
143
|
'transfer-log-module': transfer_log_module_1.default,
|
|
134
|
-
'function-deployment-module': function_deployment_module_1.default,
|
|
135
|
-
'plans-module': plans_module_1.default,
|
|
136
144
|
'billing-provider-module': billing_provider_module_1.default,
|
|
137
|
-
'
|
|
145
|
+
'function-deployment-module': function_deployment_module_1.default,
|
|
146
|
+
'permissions-module': permissions_module_1.default,
|
|
138
147
|
'graph-execution-module': graph_execution_module_1.default,
|
|
139
148
|
'hierarchy-module': hierarchy_module_1.default,
|
|
140
|
-
'permissions-module': permissions_module_1.default,
|
|
141
149
|
'notifications-module': notifications_module_1.default,
|
|
150
|
+
'relation-provision': relation_provision_1.default,
|
|
142
151
|
'profiles-module': profiles_module_1.default,
|
|
143
152
|
'billing-module': billing_module_1.default,
|
|
144
|
-
'
|
|
153
|
+
'resource-module': resource_module_1.default,
|
|
145
154
|
'user-auth-module': user_auth_module_1.default,
|
|
155
|
+
'db-usage-module': db_usage_module_1.default,
|
|
146
156
|
'agent-module': agent_module_1.default,
|
|
147
157
|
'limits-module': limits_module_1.default,
|
|
148
|
-
'memberships-module': memberships_module_1.default,
|
|
149
158
|
'entity-type-provision': entity_type_provision_1.default,
|
|
150
159
|
'storage-module': storage_module_1.default,
|
|
160
|
+
'memberships-module': memberships_module_1.default,
|
|
151
161
|
'events-module': events_module_1.default,
|
|
152
162
|
'resolve-blueprint-field': resolve_blueprint_field_1.default,
|
|
153
163
|
'resolve-blueprint-table': resolve_blueprint_table_1.default,
|
|
@@ -162,7 +172,7 @@ const createCommandMap = () => ({
|
|
|
162
172
|
'provision-relation': provision_relation_1.default,
|
|
163
173
|
'provision-bucket': provision_bucket_1.default,
|
|
164
174
|
});
|
|
165
|
-
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";
|
|
175
|
+
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";
|
|
166
176
|
const commands = async (argv, prompter, options) => {
|
|
167
177
|
if (argv.help || argv.h) {
|
|
168
178
|
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("../orm").DefaultIdsModuleModel;
|
|
4
4
|
membershipTypesModule: import("../orm").MembershipTypesModuleModel;
|
|
5
|
-
userStateModule: import("../orm").UserStateModuleModel;
|
|
6
5
|
sessionSecretsModule: import("../orm").SessionSecretsModuleModel;
|
|
7
|
-
configSecretsOrgModule: import("../orm").ConfigSecretsOrgModuleModel;
|
|
8
6
|
devicesModule: import("../orm").DevicesModuleModel;
|
|
9
7
|
i18NModule: import("../orm").I18NModuleModel;
|
|
10
|
-
userCredentialsModule: import("../orm").UserCredentialsModuleModel;
|
|
11
8
|
userSettingsModule: import("../orm").UserSettingsModuleModel;
|
|
12
|
-
|
|
9
|
+
userStateModule: import("../orm").UserStateModuleModel;
|
|
10
|
+
userCredentialsModule: import("../orm").UserCredentialsModuleModel;
|
|
13
11
|
connectedAccountsModule: import("../orm").ConnectedAccountsModuleModel;
|
|
14
12
|
emailsModule: import("../orm").EmailsModuleModel;
|
|
15
13
|
phoneNumbersModule: import("../orm").PhoneNumbersModuleModel;
|
|
16
14
|
rateLimitsModule: import("../orm").RateLimitsModuleModel;
|
|
17
15
|
usersModule: import("../orm").UsersModuleModel;
|
|
18
16
|
webauthnCredentialsModule: import("../orm").WebauthnCredentialsModuleModel;
|
|
17
|
+
configSecretsUserModule: import("../orm").ConfigSecretsUserModuleModel;
|
|
19
18
|
cryptoAddressesModule: import("../orm").CryptoAddressesModuleModel;
|
|
20
19
|
denormalizedTableField: import("../orm").DenormalizedTableFieldModel;
|
|
21
|
-
identityProvidersModule: import("../orm").IdentityProvidersModuleModel;
|
|
22
20
|
rlsModule: import("../orm").RlsModuleModel;
|
|
23
21
|
blueprint: import("../orm").BlueprintModel;
|
|
24
22
|
blueprintTemplate: import("../orm").BlueprintTemplateModel;
|
|
@@ -26,40 +24,47 @@ export declare function getClient(contextName?: string): {
|
|
|
26
24
|
cryptoAuthModule: import("../orm").CryptoAuthModuleModel;
|
|
27
25
|
sessionsModule: import("../orm").SessionsModuleModel;
|
|
28
26
|
secureTableProvision: import("../orm").SecureTableProvisionModel;
|
|
29
|
-
|
|
30
|
-
|
|
27
|
+
identityProvidersModule: import("../orm").IdentityProvidersModuleModel;
|
|
28
|
+
integrationProvidersModule: import("../orm").IntegrationProvidersModuleModel;
|
|
29
|
+
dbPoolConfig: import("../orm").DbPoolConfigModel;
|
|
30
|
+
realtimeModule: import("../orm").RealtimeModuleModel;
|
|
31
|
+
infraSecretsModule: import("../orm").InfraSecretsModuleModel;
|
|
32
|
+
internalSecretsModule: import("../orm").InternalSecretsModuleModel;
|
|
33
|
+
dbPresetModule: import("../orm").DbPresetModuleModel;
|
|
31
34
|
graphModule: import("../orm").GraphModuleModel;
|
|
32
|
-
merkleStoreModule: import("../orm").MerkleStoreModuleModel;
|
|
33
35
|
rateLimitMetersModule: import("../orm").RateLimitMetersModuleModel;
|
|
34
|
-
|
|
36
|
+
infraConfigModule: import("../orm").InfraConfigModuleModel;
|
|
35
37
|
webauthnAuthModule: import("../orm").WebauthnAuthModuleModel;
|
|
36
|
-
|
|
38
|
+
principalAuthModule: import("../orm").PrincipalAuthModuleModel;
|
|
39
|
+
dbPool: import("../orm").DbPoolModel;
|
|
37
40
|
functionModule: import("../orm").FunctionModuleModel;
|
|
41
|
+
merkleStoreModule: import("../orm").MerkleStoreModuleModel;
|
|
42
|
+
databaseProvisionModule: import("../orm").DatabaseProvisionModuleModel;
|
|
43
|
+
functionInvocationModule: import("../orm").FunctionInvocationModuleModel;
|
|
38
44
|
invitesModule: import("../orm").InvitesModuleModel;
|
|
39
|
-
|
|
45
|
+
namespaceModule: import("../orm").NamespaceModuleModel;
|
|
46
|
+
plansModule: import("../orm").PlansModuleModel;
|
|
40
47
|
computeLogModule: import("../orm").ComputeLogModuleModel;
|
|
41
48
|
inferenceLogModule: import("../orm").InferenceLogModuleModel;
|
|
42
|
-
namespaceModule: import("../orm").NamespaceModuleModel;
|
|
43
|
-
resourceModule: import("../orm").ResourceModuleModel;
|
|
44
49
|
storageLogModule: import("../orm").StorageLogModuleModel;
|
|
45
50
|
transferLogModule: import("../orm").TransferLogModuleModel;
|
|
46
|
-
functionDeploymentModule: import("../orm").FunctionDeploymentModuleModel;
|
|
47
|
-
plansModule: import("../orm").PlansModuleModel;
|
|
48
51
|
billingProviderModule: import("../orm").BillingProviderModuleModel;
|
|
49
|
-
|
|
52
|
+
functionDeploymentModule: import("../orm").FunctionDeploymentModuleModel;
|
|
53
|
+
permissionsModule: import("../orm").PermissionsModuleModel;
|
|
50
54
|
graphExecutionModule: import("../orm").GraphExecutionModuleModel;
|
|
51
55
|
hierarchyModule: import("../orm").HierarchyModuleModel;
|
|
52
|
-
permissionsModule: import("../orm").PermissionsModuleModel;
|
|
53
56
|
notificationsModule: import("../orm").NotificationsModuleModel;
|
|
57
|
+
relationProvision: import("../orm").RelationProvisionModel;
|
|
54
58
|
profilesModule: import("../orm").ProfilesModuleModel;
|
|
55
59
|
billingModule: import("../orm").BillingModuleModel;
|
|
56
|
-
|
|
60
|
+
resourceModule: import("../orm").ResourceModuleModel;
|
|
57
61
|
userAuthModule: import("../orm").UserAuthModuleModel;
|
|
62
|
+
dbUsageModule: import("../orm").DbUsageModuleModel;
|
|
58
63
|
agentModule: import("../orm").AgentModuleModel;
|
|
59
64
|
limitsModule: import("../orm").LimitsModuleModel;
|
|
60
|
-
membershipsModule: import("../orm").MembershipsModuleModel;
|
|
61
65
|
entityTypeProvision: import("../orm").EntityTypeProvisionModel;
|
|
62
66
|
storageModule: import("../orm").StorageModuleModel;
|
|
67
|
+
membershipsModule: import("../orm").MembershipsModuleModel;
|
|
63
68
|
eventsModule: import("../orm").EventsModuleModel;
|
|
64
69
|
query: {
|
|
65
70
|
resolveBlueprintField: (args: import("../orm/query").ResolveBlueprintFieldVariables, options?: {
|