File tree Expand file tree Collapse file tree 2 files changed +7
-0
lines changed
src/lib/configs/user/config Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ import type { Config as PrevConfig } from "./config0.js";
2323export type Config = {
2424 countlyConsent : boolean ;
2525 defaultSecretKeyName ?: string ;
26+ docsInConfigs ?: boolean ;
2627} ;
2728
2829export 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 } ,
You can’t perform that action at this time.
0 commit comments