@chabokan.net/cli 0.7.7 → 0.8.1
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/LICENSE +21 -0
- package/README.md +182 -84
- package/bin/dev +17 -0
- package/bin/dev.cmd +3 -0
- package/bin/run +3 -3
- package/lib/base.d.ts +8 -38
- package/lib/base.js +12 -15
- package/lib/commands/account/list.d.ts +8 -0
- package/lib/commands/account/list.js +30 -0
- package/lib/commands/account/remove.d.ts +8 -0
- package/lib/commands/account/remove.js +36 -0
- package/lib/commands/account/use.d.ts +9 -0
- package/lib/commands/{change-user.js → account/use.js} +14 -16
- package/lib/commands/deploy.d.ts +3 -4
- package/lib/commands/deploy.js +17 -17
- package/lib/commands/login.d.ts +7 -5
- package/lib/commands/login.js +12 -11
- package/lib/commands/service/list.d.ts +8 -0
- package/lib/commands/service/list.js +34 -0
- package/lib/commands/service/logs.d.ts +10 -0
- package/lib/commands/{logs.js → service/logs.js} +13 -13
- package/lib/commands/service/resize.d.ts +13 -0
- package/lib/commands/{resize.js → service/resize.js} +15 -15
- package/lib/commands/service/restart.d.ts +10 -0
- package/lib/commands/{restart.js → service/restart.js} +12 -12
- package/lib/commands/service/start.d.ts +10 -0
- package/lib/commands/{start.js → service/start.js} +12 -12
- package/lib/commands/service/stop.d.ts +10 -0
- package/lib/commands/{stop.js → service/stop.js} +12 -12
- package/lib/constants.d.ts +1 -1
- package/lib/constants.js +1 -1
- package/lib/helper.d.ts +2 -2
- package/lib/helper.js +11 -10
- package/lib/index.d.ts +1 -1
- package/lib/index.js +3 -2
- package/oclif.manifest.json +1 -1
- package/package.json +83 -59
- package/lib/commands/change-user.d.ts +0 -9
- package/lib/commands/config-clear.d.ts +0 -8
- package/lib/commands/config-clear.js +0 -17
- package/lib/commands/logs.d.ts +0 -11
- package/lib/commands/resize.d.ts +0 -14
- package/lib/commands/restart.d.ts +0 -11
- package/lib/commands/start.d.ts +0 -11
- package/lib/commands/stop.d.ts +0 -11
package/lib/helper.js
CHANGED
|
@@ -63,32 +63,33 @@ function trimLines(lines) {
|
|
|
63
63
|
}, []);
|
|
64
64
|
}
|
|
65
65
|
exports.trimLines = trimLines;
|
|
66
|
-
|
|
66
|
+
const loadIgnoreFile = (ignoreInstance, ignoreFilePath, projectPath) => {
|
|
67
67
|
const patterns = trimLines(fs.readFileSync(ignoreFilePath).toString().split('\n'));
|
|
68
68
|
const relativeToProjectPath = patterns.map((pattern) => {
|
|
69
|
-
const dir = path_1.dirname(ignoreFilePath);
|
|
69
|
+
const dir = (0, path_1.dirname)(ignoreFilePath);
|
|
70
70
|
if (pattern.startsWith('!')) {
|
|
71
71
|
const absolutePrefix = pattern.substr(1).startsWith('/') ? '/' : '';
|
|
72
|
-
return '!' + absolutePrefix + path_1.relative(projectPath, path_1.join(dir, pattern.substr(1)));
|
|
72
|
+
return '!' + absolutePrefix + (0, path_1.relative)(projectPath, (0, path_1.join)(dir, pattern.substr(1)));
|
|
73
73
|
}
|
|
74
74
|
const absolutePrefix = pattern.startsWith('/') ? '/' : '';
|
|
75
|
-
return absolutePrefix + path_1.relative(projectPath, path_1.join(dir, pattern));
|
|
75
|
+
return absolutePrefix + (0, path_1.relative)(projectPath, (0, path_1.join)(dir, pattern));
|
|
76
76
|
});
|
|
77
77
|
const linuxify = relativeToProjectPath.map(p => p.replace(/\\/g, '/'));
|
|
78
78
|
ignoreInstance.add(linuxify);
|
|
79
79
|
};
|
|
80
|
+
exports.loadIgnoreFile = loadIgnoreFile;
|
|
80
81
|
function addIgnorePatterns(ignoreInstance, projectPath, dir) {
|
|
81
|
-
const liaraignorePath = path_1.join(projectPath, dir, '.chabokignore');
|
|
82
|
-
const dockerignorePath = path_1.join(projectPath, dir, '.dockerignore');
|
|
83
|
-
const gitignorePath = path_1.join(projectPath, dir, '.gitignore');
|
|
82
|
+
const liaraignorePath = (0, path_1.join)(projectPath, dir, '.chabokignore');
|
|
83
|
+
const dockerignorePath = (0, path_1.join)(projectPath, dir, '.dockerignore');
|
|
84
|
+
const gitignorePath = (0, path_1.join)(projectPath, dir, '.gitignore');
|
|
84
85
|
if (fs.existsSync(liaraignorePath)) {
|
|
85
|
-
exports.loadIgnoreFile(ignoreInstance, liaraignorePath, projectPath);
|
|
86
|
+
(0, exports.loadIgnoreFile)(ignoreInstance, liaraignorePath, projectPath);
|
|
86
87
|
}
|
|
87
88
|
else if (fs.existsSync(dockerignorePath)) {
|
|
88
|
-
exports.loadIgnoreFile(ignoreInstance, dockerignorePath, projectPath);
|
|
89
|
+
(0, exports.loadIgnoreFile)(ignoreInstance, dockerignorePath, projectPath);
|
|
89
90
|
}
|
|
90
91
|
else if (fs.existsSync(gitignorePath)) {
|
|
91
|
-
exports.loadIgnoreFile(ignoreInstance, gitignorePath, projectPath);
|
|
92
|
+
(0, exports.loadIgnoreFile)(ignoreInstance, gitignorePath, projectPath);
|
|
92
93
|
}
|
|
93
94
|
}
|
|
94
95
|
exports.addIgnorePatterns = addIgnorePatterns;
|
package/lib/index.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export { run } from '@oclif/
|
|
1
|
+
export { run } from '@oclif/core';
|
package/lib/index.js
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
|
|
4
|
-
|
|
3
|
+
exports.run = void 0;
|
|
4
|
+
var core_1 = require("@oclif/core");
|
|
5
|
+
Object.defineProperty(exports, "run", { enumerable: true, get: function () { return core_1.run; } });
|
package/oclif.manifest.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":"0.
|
|
1
|
+
{"version":"0.8.1","commands":{"deploy":{"id":"deploy","description":"this command help you build and deploy your service to chabokan in easy way.","strict":true,"pluginName":"@chabokan.net/cli","pluginAlias":"@chabokan.net/cli","pluginType":"core","aliases":[],"flags":{"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false},"path":{"name":"path","type":"option","char":"p","description":"service path in your computer","multiple":false},"service":{"name":"service","type":"option","char":"s","description":"service name","multiple":false}},"args":[]},"login":{"id":"login","description":"login to hub.chabokan.net account","strict":true,"pluginName":"@chabokan.net/cli","pluginAlias":"@chabokan.net/cli","pluginType":"core","aliases":[],"flags":{"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false},"username":{"name":"username","type":"option","char":"u","description":"your username","multiple":false},"password":{"name":"password","type":"option","char":"p","description":"your password","multiple":false},"token":{"name":"token","type":"option","char":"t","description":"login with api token","multiple":false}},"args":[{"name":"file"}]},"account:list":{"id":"account:list","description":"show accounts list","strict":true,"pluginName":"@chabokan.net/cli","pluginAlias":"@chabokan.net/cli","pluginType":"core","aliases":[],"flags":{"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false}},"args":[]},"account:remove":{"id":"account:remove","description":"remove account from list","strict":true,"pluginName":"@chabokan.net/cli","pluginAlias":"@chabokan.net/cli","pluginType":"core","aliases":[],"flags":{"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false}},"args":[]},"account:use":{"id":"account:use","description":"switch your default user between logged in users","strict":true,"pluginName":"@chabokan.net/cli","pluginAlias":"@chabokan.net/cli","pluginType":"core","aliases":[],"flags":{"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false},"user":{"name":"user","type":"option","char":"u","description":"default user","multiple":false}},"args":[]},"service:list":{"id":"service:list","description":"show account services list","strict":true,"pluginName":"@chabokan.net/cli","pluginAlias":"@chabokan.net/cli","pluginType":"core","aliases":[],"flags":{"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false}},"args":[]},"service:logs":{"id":"service:logs","description":"read latest logs from service","strict":true,"pluginName":"@chabokan.net/cli","pluginAlias":"@chabokan.net/cli","pluginType":"core","aliases":[],"flags":{"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false},"service":{"name":"service","type":"option","char":"s","description":"service name","multiple":false}},"args":[]},"service:resize":{"id":"service:resize","description":"resize a service","strict":true,"pluginName":"@chabokan.net/cli","pluginAlias":"@chabokan.net/cli","pluginType":"core","aliases":[],"flags":{"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false},"service":{"name":"service","type":"option","char":"s","description":"service name","multiple":false},"ram":{"name":"ram","type":"option","char":"r","description":"RAM","multiple":false},"cpu":{"name":"cpu","type":"option","char":"c","description":"CPU","multiple":false},"disk":{"name":"disk","type":"option","char":"d","description":"DISK","multiple":false}},"args":[]},"service:restart":{"id":"service:restart","description":"restart a service","strict":true,"pluginName":"@chabokan.net/cli","pluginAlias":"@chabokan.net/cli","pluginType":"core","aliases":[],"flags":{"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false},"service":{"name":"service","type":"option","char":"s","description":"service name","multiple":false}},"args":[]},"service:start":{"id":"service:start","description":"start a service","strict":true,"pluginName":"@chabokan.net/cli","pluginAlias":"@chabokan.net/cli","pluginType":"core","aliases":[],"flags":{"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false},"service":{"name":"service","type":"option","char":"s","description":"service name","multiple":false}},"args":[]},"service:stop":{"id":"service:stop","description":"stop a service","strict":true,"pluginName":"@chabokan.net/cli","pluginAlias":"@chabokan.net/cli","pluginType":"core","aliases":[],"flags":{"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false},"service":{"name":"service","type":"option","char":"s","description":"service name","multiple":false}},"args":[]}}}
|
package/package.json
CHANGED
|
@@ -1,79 +1,103 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@chabokan.net/cli",
|
|
3
|
+
"version": "0.8.1",
|
|
3
4
|
"description": "Chabokan Cli for PaaS Services",
|
|
4
|
-
"version": "0.7.7",
|
|
5
5
|
"author": "Mohammad Abdi",
|
|
6
6
|
"bin": {
|
|
7
7
|
"chabok": "./bin/run"
|
|
8
8
|
},
|
|
9
|
-
"
|
|
10
|
-
"
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
"@types/chai": "^4.2.19",
|
|
14
|
-
"@types/fs-extra": "^5.0.5",
|
|
15
|
-
"@types/mocha": "^5.2.7",
|
|
16
|
-
"@types/node": "^10.17.60",
|
|
17
|
-
"@types/progress": "^2.0.4",
|
|
18
|
-
"@types/tar": "^4.0.5",
|
|
19
|
-
"chai": "^4.3.4",
|
|
20
|
-
"globby": "^10.0.2",
|
|
21
|
-
"mocha": "^5.2.0",
|
|
22
|
-
"nyc": "^14.1.1",
|
|
23
|
-
"ts-node": "^8.10.2",
|
|
24
|
-
"typescript": "^3.9.10"
|
|
25
|
-
},
|
|
26
|
-
"engines": {
|
|
27
|
-
"node": ">=8.0.0"
|
|
28
|
-
},
|
|
9
|
+
"homepage": "https://github.com/chabokan/cli",
|
|
10
|
+
"license": "MIT",
|
|
11
|
+
"main": "lib/index.js",
|
|
12
|
+
"repository": "chabokan/cli",
|
|
29
13
|
"files": [
|
|
30
14
|
"/bin",
|
|
31
15
|
"/lib",
|
|
32
16
|
"/npm-shrinkwrap.json",
|
|
33
17
|
"/oclif.manifest.json"
|
|
34
18
|
],
|
|
35
|
-
"
|
|
36
|
-
|
|
37
|
-
"
|
|
38
|
-
"
|
|
39
|
-
"
|
|
40
|
-
"
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
19
|
+
"dependencies": {
|
|
20
|
+
"@oclif/core": "^1.18.0",
|
|
21
|
+
"@oclif/plugin-autocomplete": "^1.3.3",
|
|
22
|
+
"@oclif/plugin-help": "^5",
|
|
23
|
+
"@oclif/plugin-plugins": "^2.1.2",
|
|
24
|
+
"@oclif/plugin-version": "^1.1.3",
|
|
25
|
+
"axios": "^1.1.3",
|
|
26
|
+
"chalk": "^4.1.2",
|
|
27
|
+
"form-data": "^4.0.0",
|
|
28
|
+
"fs-extra": "^9.1.0",
|
|
29
|
+
"globby": "^11.1.0",
|
|
30
|
+
"got": "^11.8.2",
|
|
31
|
+
"https-proxy-agent": "^5.0.1",
|
|
32
|
+
"ignore": "^5.1.0",
|
|
33
|
+
"inquirer": "^8.2.4",
|
|
34
|
+
"progress": "^2.0.3",
|
|
35
|
+
"tar": "^6.1.11"
|
|
36
|
+
},
|
|
37
|
+
"devDependencies": {
|
|
38
|
+
"@oclif/test": "^2.2.3",
|
|
39
|
+
"@types/chai": "^4",
|
|
40
|
+
"@types/fs-extra": "^5.0.5",
|
|
41
|
+
"@types/inquirer": "^9.0.2",
|
|
42
|
+
"@types/mocha": "^9.0.0",
|
|
43
|
+
"@types/node": "^16.11.65",
|
|
44
|
+
"@types/progress": "^2.0.3",
|
|
45
|
+
"@types/tar": "^6.1.3",
|
|
46
|
+
"chai": "^4",
|
|
47
|
+
"eslint": "^7.32.0",
|
|
48
|
+
"eslint-config-oclif": "^4",
|
|
49
|
+
"eslint-config-oclif-typescript": "^1.0.3",
|
|
50
|
+
"mocha": "^9",
|
|
51
|
+
"oclif": "^3",
|
|
52
|
+
"shx": "^0.3.3",
|
|
53
|
+
"ts-node": "^10.9.1",
|
|
54
|
+
"tslib": "^2.3.1",
|
|
55
|
+
"typescript": "^4.8.4"
|
|
56
|
+
},
|
|
44
57
|
"oclif": {
|
|
45
|
-
"commands": "./lib/commands",
|
|
46
58
|
"bin": "chabok",
|
|
59
|
+
"commands": "./lib/commands",
|
|
60
|
+
"additionalHelpFlags": [
|
|
61
|
+
"-h"
|
|
62
|
+
],
|
|
63
|
+
"additionalVersionFlags": [
|
|
64
|
+
"-v"
|
|
65
|
+
],
|
|
47
66
|
"plugins": [
|
|
48
|
-
"@oclif/plugin-help"
|
|
49
|
-
|
|
67
|
+
"@oclif/plugin-help",
|
|
68
|
+
"@oclif/plugin-autocomplete",
|
|
69
|
+
"@oclif/plugin-version"
|
|
70
|
+
],
|
|
71
|
+
"topicSeparator": " ",
|
|
72
|
+
"topics": {
|
|
73
|
+
"account": {
|
|
74
|
+
"description": "display commands for working with accounts"
|
|
75
|
+
},
|
|
76
|
+
"service": {
|
|
77
|
+
"description": "display commands for working with services"
|
|
78
|
+
}
|
|
79
|
+
}
|
|
50
80
|
},
|
|
51
|
-
"repository": "chabokan/cli",
|
|
52
81
|
"scripts": {
|
|
53
|
-
"
|
|
54
|
-
"
|
|
55
|
-
"
|
|
56
|
-
"
|
|
57
|
-
"
|
|
82
|
+
"build": "shx rm -rf lib && rm -rf tsconfig.tsbuildinfo && tsc -b",
|
|
83
|
+
"lint": "eslint . --ext .ts --config .eslintrc",
|
|
84
|
+
"postpack": "shx rm -f oclif.manifest.json",
|
|
85
|
+
"posttest": "yarn lint",
|
|
86
|
+
"prepack": "yarn build && oclif manifest && oclif readme",
|
|
87
|
+
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
|
|
88
|
+
"version": "oclif readme && git add README.md"
|
|
58
89
|
},
|
|
59
|
-
"
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
"
|
|
65
|
-
"
|
|
66
|
-
"
|
|
67
|
-
"
|
|
68
|
-
"
|
|
69
|
-
"
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
"ignore": "^5.1.8",
|
|
73
|
-
"inquirer": "^6.5.2",
|
|
74
|
-
"progress": "^2.0.3",
|
|
75
|
-
"tar": "^6.1.2",
|
|
76
|
-
"tslib": "^1.14.1",
|
|
77
|
-
"proxy-http-agent": "latest"
|
|
78
|
-
}
|
|
90
|
+
"engines": {
|
|
91
|
+
"node": ">=14.0.0"
|
|
92
|
+
},
|
|
93
|
+
"bugs": "https://github.com/chabokan/cli/issues",
|
|
94
|
+
"keywords": [
|
|
95
|
+
"chabokan",
|
|
96
|
+
"chabok cli",
|
|
97
|
+
"deploy",
|
|
98
|
+
"deployment",
|
|
99
|
+
"cloud",
|
|
100
|
+
"docker"
|
|
101
|
+
],
|
|
102
|
+
"types": "lib/index.d.ts"
|
|
79
103
|
}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { Command, flags } from '@oclif/command';
|
|
2
|
-
export default class ChangeUser extends Command {
|
|
3
|
-
static description: string;
|
|
4
|
-
static flags: {
|
|
5
|
-
help: import("@oclif/parser/lib/flags").IBooleanFlag<void>;
|
|
6
|
-
user: flags.IOptionFlag<string | undefined>;
|
|
7
|
-
};
|
|
8
|
-
run(): Promise<void>;
|
|
9
|
-
}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
const tslib_1 = require("tslib");
|
|
4
|
-
const chalk_1 = tslib_1.__importDefault(require("chalk"));
|
|
5
|
-
const base_1 = tslib_1.__importDefault(require("../base"));
|
|
6
|
-
class ConfigClear extends base_1.default {
|
|
7
|
-
async run() {
|
|
8
|
-
const { args, flags } = this.parse(ConfigClear);
|
|
9
|
-
const cli = this;
|
|
10
|
-
this.init_run();
|
|
11
|
-
this.write_config({});
|
|
12
|
-
cli.log(`${chalk_1.default.green('[Success]')} config file cleared.`);
|
|
13
|
-
}
|
|
14
|
-
}
|
|
15
|
-
exports.default = ConfigClear;
|
|
16
|
-
ConfigClear.description = 'clear config file, data such as auth will be removed.';
|
|
17
|
-
ConfigClear.flags = Object.assign({}, base_1.default.flags);
|
package/lib/commands/logs.d.ts
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { flags } from '@oclif/command';
|
|
2
|
-
import Command from "../base";
|
|
3
|
-
export default class Logs extends Command {
|
|
4
|
-
static description: string;
|
|
5
|
-
static flags: {
|
|
6
|
-
service: flags.IOptionFlag<string | undefined>;
|
|
7
|
-
help: import("@oclif/parser/lib/flags").IBooleanFlag<void>;
|
|
8
|
-
};
|
|
9
|
-
run(): Promise<void>;
|
|
10
|
-
send_request(cli: any, selected_service: any): Promise<void>;
|
|
11
|
-
}
|
package/lib/commands/resize.d.ts
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { flags } from '@oclif/command';
|
|
2
|
-
import Command from "../base";
|
|
3
|
-
export default class Resize extends Command {
|
|
4
|
-
static description: string;
|
|
5
|
-
static flags: {
|
|
6
|
-
service: flags.IOptionFlag<string | undefined>;
|
|
7
|
-
ram: flags.IOptionFlag<string | undefined>;
|
|
8
|
-
cpu: flags.IOptionFlag<string | undefined>;
|
|
9
|
-
disk: flags.IOptionFlag<string | undefined>;
|
|
10
|
-
help: import("@oclif/parser/lib/flags").IBooleanFlag<void>;
|
|
11
|
-
};
|
|
12
|
-
run(): Promise<void>;
|
|
13
|
-
send_request(cli: any, selected_service: any, ram: any, cpu: any, disk: any): Promise<void>;
|
|
14
|
-
}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { flags } from '@oclif/command';
|
|
2
|
-
import Command from "../base";
|
|
3
|
-
export default class Restart extends Command {
|
|
4
|
-
static description: string;
|
|
5
|
-
static flags: {
|
|
6
|
-
service: flags.IOptionFlag<string | undefined>;
|
|
7
|
-
help: import("@oclif/parser/lib/flags").IBooleanFlag<void>;
|
|
8
|
-
};
|
|
9
|
-
run(): Promise<void>;
|
|
10
|
-
send_request(cli: any, selected_service: any): Promise<void>;
|
|
11
|
-
}
|
package/lib/commands/start.d.ts
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { flags } from '@oclif/command';
|
|
2
|
-
import Command from "../base";
|
|
3
|
-
export default class Start extends Command {
|
|
4
|
-
static description: string;
|
|
5
|
-
static flags: {
|
|
6
|
-
service: flags.IOptionFlag<string | undefined>;
|
|
7
|
-
help: import("@oclif/parser/lib/flags").IBooleanFlag<void>;
|
|
8
|
-
};
|
|
9
|
-
run(): Promise<void>;
|
|
10
|
-
send_request(cli: any, selected_service: any): Promise<void>;
|
|
11
|
-
}
|
package/lib/commands/stop.d.ts
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { flags } from '@oclif/command';
|
|
2
|
-
import Command from "../base";
|
|
3
|
-
export default class Stop extends Command {
|
|
4
|
-
static description: string;
|
|
5
|
-
static flags: {
|
|
6
|
-
service: flags.IOptionFlag<string | undefined>;
|
|
7
|
-
help: import("@oclif/parser/lib/flags").IBooleanFlag<void>;
|
|
8
|
-
};
|
|
9
|
-
run(): Promise<void>;
|
|
10
|
-
send_request(cli: any, selected_service: any): Promise<void>;
|
|
11
|
-
}
|