provisioning-core/nulib/domain/workspace/mod.nu

51 lines
2.4 KiB
Text
Raw Permalink Normal View History

# workspace/ subsystem façade (ADR-026 M5).
# All modules migrated to new tree. lib_provisioning refs eliminated (Block D complete).
export use domain/workspace/version.nu [
add-migration-record check-workspace-compatibility compare-versions
get-system-version get-version-summary get-workspace-metadata-path
init-workspace-metadata is-version-compatible load-workspace-metadata
save-workspace-metadata validate-workspace-structure
]
export use domain/workspace/enforcement.nu [
check-and-enforce command-requires-workspace display-enforcement-error
enforce-workspace-requirement get-current-workspace-info
get-workspace-exempt-commands preflight-check
]
export use domain/workspace/sync.nu [
"workspace check-updates" "workspace sync-modules" "workspace update"
]
export use platform/workspace/detection.nu [
detect-infra-from-pwd get-effective-workspace infer-workspace-from-pwd
]
export use platform/workspace/notation.nu [
get-workspace-path list-workspaces parse-workspace-infra-notation
]
export use primitives/infra/init.nu [provisioning_init show_titles use_titles]
export use domain/workspace/config_commands.nu [
workspace-config-edit workspace-config-generate-provider
workspace-config-hierarchy workspace-config-list workspace-config-show
workspace-config-validate
]
export use domain/workspace/commands.nu [
"workspace activate" "workspace active" "workspace check-compatibility"
"workspace get-preference" "workspace list" "workspace list-backups"
"workspace migrate" "workspace preferences" "workspace register"
"workspace remove" "workspace restore-backup" "workspace set-preference"
"workspace switch" "workspace version"
]
export use domain/workspace/verify.nu [main verify-workspace-architecture]
export use domain/workspace/helpers.nu [
build-deployment-config check-deployment-health check-platform-availability
check-prerequisites confirm-deployment create-deployment-manifests
generate-secrets get-installer-path load-config-from-file
rollback-deployment save-deployment-config validate-deployment-config
validate-deployment-params
]
export use domain/workspace/migration.nu [
create-workspace-backup execute-migration find-migration-path
get-migration-strategies list-workspace-backups migrate-2_0_0-to-2_0_5
migrate-unknown-to-2_0_5 migrate-workspace restore-workspace-from-backup
]