Skip to content

Commit 8cdd6c2

Browse files
authored
fix: restore docs in configs to avoid possible errors (#1081)
* fix: restore docs in configs to avoid possible errors * Apply automatic changes --------- Co-authored-by: shamsartem <shamsartem@users.noreply.github.com>
1 parent 5c619bb commit 8cdd6c2

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

packages/cli/package/docs/configs/config.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,5 @@ Defines global config for Fluence CLI
99
| `countlyConsent` | boolean | **Yes** | Weather you consent to send usage data to Countly |
1010
| `version` | integer | **Yes** | Config version |
1111
| `defaultSecretKeyName` | string | No | DEPRECATED: Secret key with this name will be used by default by js-client inside CLI to run Aqua code |
12+
| `docsInConfigs` | boolean | No | DEPRECATED: Whether to include docs in generated configs |
1213

packages/cli/package/src/lib/configs/user/config/config1.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ import type { Config as PrevConfig } from "./config0.js";
2323
export type Config = {
2424
countlyConsent: boolean;
2525
defaultSecretKeyName?: string;
26+
docsInConfigs?: boolean;
2627
};
2728

2829
export default {
@@ -40,6 +41,11 @@ export default {
4041
"DEPRECATED: Secret key with this name will be used by default by js-client inside CLI to run Aqua code",
4142
nullable: true,
4243
},
44+
docsInConfigs: {
45+
type: "boolean",
46+
description: "DEPRECATED: Whether to include docs in generated configs",
47+
nullable: true,
48+
},
4349
},
4450
required: ["countlyConsent"],
4551
},

0 commit comments

Comments
 (0)