@catladder/cli 1.110.2 → 1.111.0
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/dist/apps/catenv/printVariables.js +19 -16
- package/dist/apps/catenv/printVariables.js.map +1 -1
- package/dist/apps/catenv/writeDotEnvFiles.js.map +1 -1
- package/dist/apps/catenv/writeEnvDTs.js +5 -5
- package/dist/apps/catenv/writeEnvDTs.js.map +1 -1
- package/dist/bundles/catenv/index.js +2 -2
- package/dist/bundles/cli/index.js +1 -1
- package/dist/config/getProjectConfig.d.ts +2 -2
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
- package/src/apps/catenv/printVariables.ts +11 -6
- package/src/apps/catenv/writeDotEnvFiles.ts +0 -2
- package/src/apps/catenv/writeEnvDTs.ts +2 -2
- package/src/config/getProjectConfig.ts +1 -1
|
@@ -16,9 +16,9 @@ export declare const getAllComponentsWithAllEnvsHierarchical: () => Promise<{
|
|
|
16
16
|
export declare const getAllPipelineContexts: () => Promise<import("@catladder/pipeline").Context[]>;
|
|
17
17
|
export declare const getEnvironment: (env: string, componentName: string) => Promise<import("@catladder/pipeline").Environment>;
|
|
18
18
|
export declare const getGitlabVar: (vorpal: CommandInstance, env: string, componentName: string, variableName: string) => Promise<string>;
|
|
19
|
-
export declare const getEnvVarsResolved: (vorpal: CommandInstance | null, env: string, componentName: string | null) => Promise<
|
|
19
|
+
export declare const getEnvVarsResolved: (vorpal: CommandInstance | null, env: string, componentName: string | null) => Promise<Record<string, string>>;
|
|
20
20
|
/**
|
|
21
21
|
*
|
|
22
22
|
* is used to get job only vars that should also be editable locally with catladder.
|
|
23
23
|
*/
|
|
24
|
-
export declare const getJobOnlyEnvVarsResolved: (vorpal: CommandInstance, env: string, componentName: string) => Promise<
|
|
24
|
+
export declare const getJobOnlyEnvVarsResolved: (vorpal: CommandInstance, env: string, componentName: string) => Promise<Record<string, string>>;
|