@speedkit/cli 3.35.0 → 3.36.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/CHANGELOG.md +7 -0
- package/README.md +4 -4
- package/dist/commands/build-parameter-query.d.ts +0 -1
- package/dist/commands/build-parameter-query.js +1 -7
- package/dist/commands/build-prewarm-query.d.ts +1 -0
- package/dist/commands/build-prewarm-query.js +7 -1
- package/oclif.manifest.json +8 -8
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
# [3.36.0](https://gitlab.orestes.info/baqend/speed-kit-cli/compare/v3.35.0...v3.36.0) (2026-03-27)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **build-parameter-query:** quiet flag ([f668a76](https://gitlab.orestes.info/baqend/speed-kit-cli/commit/f668a76298e971a2e7eebdd8e1b305c18fa39fdc))
|
|
7
|
+
|
|
1
8
|
# [3.35.0](https://gitlab.orestes.info/baqend/speed-kit-cli/compare/v3.34.0...v3.35.0) (2026-03-27)
|
|
2
9
|
|
|
3
10
|
|
package/README.md
CHANGED
|
@@ -21,7 +21,7 @@ $ npm install -g @speedkit/cli
|
|
|
21
21
|
$ sk COMMAND
|
|
22
22
|
running command...
|
|
23
23
|
$ sk (--version)
|
|
24
|
-
@speedkit/cli/3.
|
|
24
|
+
@speedkit/cli/3.36.0 linux-x64 node-v20.20.2
|
|
25
25
|
$ sk --help [COMMAND]
|
|
26
26
|
USAGE
|
|
27
27
|
$ sk COMMAND
|
|
@@ -120,14 +120,13 @@ Build a parameter query that can be executed in Athena
|
|
|
120
120
|
|
|
121
121
|
```
|
|
122
122
|
USAGE
|
|
123
|
-
$ sk build-parameter-query CUSTOMERPATH [-c <value>]
|
|
123
|
+
$ sk build-parameter-query CUSTOMERPATH [-c <value>]
|
|
124
124
|
|
|
125
125
|
ARGUMENTS
|
|
126
126
|
CUSTOMERPATH The customer config path
|
|
127
127
|
|
|
128
128
|
FLAGS
|
|
129
129
|
-c, --configName=<value> [default: production] The costumer config name
|
|
130
|
-
-q, --quiet Output only the raw query without clipboard copy or styling
|
|
131
130
|
|
|
132
131
|
DESCRIPTION
|
|
133
132
|
Build a parameter query that can be executed in Athena
|
|
@@ -144,13 +143,14 @@ Build a prewarm query that can be executed in Athena
|
|
|
144
143
|
|
|
145
144
|
```
|
|
146
145
|
USAGE
|
|
147
|
-
$ sk build-prewarm-query CUSTOMERPATH [-c <value>]
|
|
146
|
+
$ sk build-prewarm-query CUSTOMERPATH [-c <value>] [-q]
|
|
148
147
|
|
|
149
148
|
ARGUMENTS
|
|
150
149
|
CUSTOMERPATH The customer config path
|
|
151
150
|
|
|
152
151
|
FLAGS
|
|
153
152
|
-c, --configName=<value> [default: production] The costumer config name
|
|
153
|
+
-q, --quiet Output only the raw query without clipboard copy or styling
|
|
154
154
|
|
|
155
155
|
DESCRIPTION
|
|
156
156
|
Build a prewarm query that can be executed in Athena
|
|
@@ -8,7 +8,6 @@ export default class BuildParameterQuery extends Command {
|
|
|
8
8
|
static description: string;
|
|
9
9
|
static examples: string[];
|
|
10
10
|
static flags: {
|
|
11
|
-
quiet: import("@oclif/core/lib/interfaces").BooleanFlag<boolean>;
|
|
12
11
|
configName: import("@oclif/core/lib/interfaces").OptionFlag<string, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
13
12
|
};
|
|
14
13
|
run(): Promise<void>;
|
|
@@ -14,19 +14,13 @@ class BuildParameterQuery extends core_1.Command {
|
|
|
14
14
|
];
|
|
15
15
|
static flags = {
|
|
16
16
|
...cli_parameters_1.CLI_CONFIG_NAME,
|
|
17
|
-
quiet: core_1.Flags.boolean({
|
|
18
|
-
char: "q",
|
|
19
|
-
description: "Output only the raw query without clipboard copy or styling",
|
|
20
|
-
default: false,
|
|
21
|
-
}),
|
|
22
17
|
};
|
|
23
18
|
async run() {
|
|
24
|
-
const { args: { customerPath }, flags: { configName
|
|
19
|
+
const { args: { customerPath }, flags: { configName }, } = await this.parse(BuildParameterQuery);
|
|
25
20
|
const service = await new query_builder_factory_1.QueryBuilderFactory({
|
|
26
21
|
configName,
|
|
27
22
|
customerPath,
|
|
28
23
|
isWindows: this.config.windows,
|
|
29
|
-
quiet,
|
|
30
24
|
}, new cli_config_1.CliConfig(this.config).load()).buildService(query_builder_model_1.QueryTpe.parameter);
|
|
31
25
|
await service.run();
|
|
32
26
|
}
|
|
@@ -8,6 +8,7 @@ export default class BuildPrewarmQuery extends Command {
|
|
|
8
8
|
static description: string;
|
|
9
9
|
static examples: string[];
|
|
10
10
|
static flags: {
|
|
11
|
+
quiet: import("@oclif/core/lib/interfaces").BooleanFlag<boolean>;
|
|
11
12
|
configName: import("@oclif/core/lib/interfaces").OptionFlag<string, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
12
13
|
};
|
|
13
14
|
run(): Promise<void>;
|
|
@@ -14,13 +14,19 @@ class BuildPrewarmQuery extends core_1.Command {
|
|
|
14
14
|
];
|
|
15
15
|
static flags = {
|
|
16
16
|
...cli_parameters_1.CLI_CONFIG_NAME,
|
|
17
|
+
quiet: core_1.Flags.boolean({
|
|
18
|
+
char: "q",
|
|
19
|
+
description: "Output only the raw query without clipboard copy or styling",
|
|
20
|
+
default: false,
|
|
21
|
+
}),
|
|
17
22
|
};
|
|
18
23
|
async run() {
|
|
19
|
-
const { args: { customerPath }, flags: { configName }, } = await this.parse(BuildPrewarmQuery);
|
|
24
|
+
const { args: { customerPath }, flags: { configName, quiet }, } = await this.parse(BuildPrewarmQuery);
|
|
20
25
|
const service = await new query_builder_factory_1.QueryBuilderFactory({
|
|
21
26
|
configName,
|
|
22
27
|
customerPath,
|
|
23
28
|
isWindows: this.config.windows,
|
|
29
|
+
quiet,
|
|
24
30
|
}, new cli_config_1.CliConfig(this.config).load()).buildService(query_builder_model_1.QueryTpe.prewarm);
|
|
25
31
|
await service.run();
|
|
26
32
|
}
|
package/oclif.manifest.json
CHANGED
|
@@ -24,13 +24,6 @@
|
|
|
24
24
|
"hasDynamicHelp": false,
|
|
25
25
|
"multiple": false,
|
|
26
26
|
"type": "option"
|
|
27
|
-
},
|
|
28
|
-
"quiet": {
|
|
29
|
-
"char": "q",
|
|
30
|
-
"description": "Output only the raw query without clipboard copy or styling",
|
|
31
|
-
"name": "quiet",
|
|
32
|
-
"allowNo": false,
|
|
33
|
-
"type": "boolean"
|
|
34
27
|
}
|
|
35
28
|
},
|
|
36
29
|
"hasDynamicHelp": false,
|
|
@@ -72,6 +65,13 @@
|
|
|
72
65
|
"hasDynamicHelp": false,
|
|
73
66
|
"multiple": false,
|
|
74
67
|
"type": "option"
|
|
68
|
+
},
|
|
69
|
+
"quiet": {
|
|
70
|
+
"char": "q",
|
|
71
|
+
"description": "Output only the raw query without clipboard copy or styling",
|
|
72
|
+
"name": "quiet",
|
|
73
|
+
"allowNo": false,
|
|
74
|
+
"type": "boolean"
|
|
75
75
|
}
|
|
76
76
|
},
|
|
77
77
|
"hasDynamicHelp": false,
|
|
@@ -745,5 +745,5 @@
|
|
|
745
745
|
]
|
|
746
746
|
}
|
|
747
747
|
},
|
|
748
|
-
"version": "3.
|
|
748
|
+
"version": "3.36.0"
|
|
749
749
|
}
|