diff --git a/packages/imperative/src/cmd/src/doc/processor/ICommandProcessorParms.ts b/packages/imperative/src/cmd/src/doc/processor/ICommandProcessorParms.ts index 82ffd3fd02..47cfb813b3 100644 --- a/packages/imperative/src/cmd/src/doc/processor/ICommandProcessorParms.ts +++ b/packages/imperative/src/cmd/src/doc/processor/ICommandProcessorParms.ts @@ -12,7 +12,7 @@ import { ICommandDefinition } from "../ICommandDefinition"; import { IHelpGenerator } from "../../help/doc/IHelpGenerator"; import { IProfileManagerFactory } from "../../../../profiles"; -import { ICommandProfileTypeConfiguration } from "../../../src/doc/profiles/definition/ICommandProfileTypeConfiguration"; +import { ICommandProfileTypeConfiguration } from "../../doc/profiles/definition/ICommandProfileTypeConfiguration"; import { Config } from "../../../../config"; import { IDaemonContext } from "../../../../imperative/src/doc/IDaemonContext"; diff --git a/packages/imperative/src/cmd/src/doc/response/response/ICommandPrepared.ts b/packages/imperative/src/cmd/src/doc/response/response/ICommandPrepared.ts index 636e0fbc58..f090e2765e 100644 --- a/packages/imperative/src/cmd/src/doc/response/response/ICommandPrepared.ts +++ b/packages/imperative/src/cmd/src/doc/response/response/ICommandPrepared.ts @@ -9,8 +9,8 @@ * */ -import { CommandProfiles } from "../../../../src/profiles/CommandProfiles"; -import { ICommandArguments } from "../../../../src/doc/args/ICommandArguments"; +import { CommandProfiles } from "../../../profiles/CommandProfiles"; +import { ICommandArguments } from "../../../doc/args/ICommandArguments"; /** * Command Processor prepare response. * @export diff --git a/packages/imperative/src/cmd/src/profiles/CliProfileManager.ts b/packages/imperative/src/cmd/src/profiles/CliProfileManager.ts index a4aa983665..6cf13d0faa 100644 --- a/packages/imperative/src/cmd/src/profiles/CliProfileManager.ts +++ b/packages/imperative/src/cmd/src/profiles/CliProfileManager.ts @@ -27,7 +27,7 @@ import { ImperativeError } from "../../../error"; import { Arguments } from "yargs"; import { CommandResponse } from "../response/CommandResponse"; import { ICommandHandlerRequire } from "../doc/handler/ICommandHandlerRequire"; -import { ICommandHandler } from "../../src/doc/handler/ICommandHandler"; +import { ICommandHandler } from "../doc/handler/ICommandHandler"; import { ICommandProfileTypeConfiguration } from "../doc/profiles/definition/ICommandProfileTypeConfiguration"; import { CommandProfiles } from "./CommandProfiles"; import { ICommandProfileProperty } from "../doc/profiles/definition/ICommandProfileProperty"; diff --git a/packages/imperative/src/config/src/ProfileCredentials.ts b/packages/imperative/src/config/src/ProfileCredentials.ts index 8d433e1262..5836dabd98 100644 --- a/packages/imperative/src/config/src/ProfileCredentials.ts +++ b/packages/imperative/src/config/src/ProfileCredentials.ts @@ -54,9 +54,9 @@ export class ProfileCredentials { /** * Check if secure credentials will be encrypted or stored in plain text. - * This will return true if the team configuration files contain secure - * fields, or if a custom CredentialManager is defined in the Imperative - * settings.json file. + * If using team config, this will always return true. If using classic + * profiles, this will check whether a custom CredentialManager is defined + * in the Imperative settings.json file. */ public get isSecured(): boolean { this.mSecured = this.isTeamConfigSecure() || this.isCredentialManagerInAppSettings(); diff --git a/packages/imperative/src/imperative/src/config/cmd/report-env/EnvItems.ts b/packages/imperative/src/imperative/src/config/cmd/report-env/EnvItems.ts index bd5a9f8344..a8eebe3213 100644 --- a/packages/imperative/src/imperative/src/config/cmd/report-env/EnvItems.ts +++ b/packages/imperative/src/imperative/src/config/cmd/report-env/EnvItems.ts @@ -69,8 +69,8 @@ function formatLogLevelMsg(logTypeName: string) { export const probTests: IProbTest[] = [ { itemId: ItemId.NODEJS_VER, - probExpr: "semver.satisfies('{val}', '<18.x || 19.x || >=21.x')", - probMsg: "Only Node.js versions 18 and 20 are supported." + probExpr: "semver.satisfies('{val}', '<18.x || 19.x || 21.x || >=23.x')", + probMsg: "Only Node.js versions 18, 20, and 22 are supported." }, { itemId: ItemId.NPM_VER,