balena-cli 17.4.2 → 17.4.3
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 +4 -0
- package/bin/balena +1 -1
- package/bin/balena-dev +1 -1
- package/build/app.d.ts +1 -1
- package/build/app.js +8 -4
- package/build/app.js.map +1 -1
- package/build/commands/api-key/generate.d.ts +1 -1
- package/build/commands/api-key/revoke.d.ts +1 -1
- package/build/commands/api-keys/index.d.ts +1 -1
- package/build/commands/app/create.d.ts +3 -3
- package/build/commands/block/create.d.ts +3 -3
- package/build/commands/build/index.d.ts +16 -16
- package/build/commands/config/generate.d.ts +24 -72
- package/build/commands/config/inject.d.ts +2 -2
- package/build/commands/config/read.d.ts +1 -1
- package/build/commands/config/reconfigure.d.ts +2 -2
- package/build/commands/config/write.d.ts +3 -3
- package/build/commands/deploy/index.d.ts +17 -17
- package/build/commands/device/deactivate.d.ts +1 -1
- package/build/commands/device/identify.d.ts +1 -1
- package/build/commands/device/index.d.ts +1 -1
- package/build/commands/device/init.d.ts +6 -6
- package/build/commands/device/local-mode.d.ts +1 -1
- package/build/commands/device/move.d.ts +2 -2
- package/build/commands/device/os-update.d.ts +2 -2
- package/build/commands/device/pin.d.ts +2 -2
- package/build/commands/device/public-url.d.ts +1 -1
- package/build/commands/device/purge.d.ts +1 -1
- package/build/commands/device/reboot.d.ts +1 -1
- package/build/commands/device/register.d.ts +3 -3
- package/build/commands/device/rename.d.ts +2 -2
- package/build/commands/device/restart.d.ts +2 -2
- package/build/commands/device/rm.d.ts +1 -1
- package/build/commands/device/shutdown.d.ts +1 -1
- package/build/commands/device/start-service.d.ts +2 -2
- package/build/commands/device/stop-service.d.ts +2 -2
- package/build/commands/device/track-fleet.d.ts +1 -1
- package/build/commands/devices/index.d.ts +1 -1
- package/build/commands/env/add.d.ts +17 -65
- package/build/commands/env/rename.d.ts +3 -3
- package/build/commands/env/rm.d.ts +2 -2
- package/build/commands/envs/index.d.ts +21 -93
- package/build/commands/fleet/create.d.ts +3 -3
- package/build/commands/fleet/index.d.ts +2 -2
- package/build/commands/fleet/pin.d.ts +2 -2
- package/build/commands/fleet/purge.d.ts +1 -1
- package/build/commands/fleet/rename.d.ts +2 -2
- package/build/commands/fleet/restart.d.ts +1 -1
- package/build/commands/fleet/rm.d.ts +1 -1
- package/build/commands/fleet/track-latest.d.ts +1 -1
- package/build/commands/fleets/index.d.ts +3 -3
- package/build/commands/internal/osinit.d.ts +3 -3
- package/build/commands/join/index.d.ts +3 -3
- package/build/commands/key/add.d.ts +2 -2
- package/build/commands/key/index.d.ts +2 -2
- package/build/commands/key/rm.d.ts +2 -2
- package/build/commands/leave/index.d.ts +1 -1
- package/build/commands/local/configure.d.ts +1 -1
- package/build/commands/local/flash.d.ts +2 -2
- package/build/commands/login/index.d.ts +5 -5
- package/build/commands/logs/index.d.ts +3 -3
- package/build/commands/notes/index.d.ts +9 -33
- package/build/commands/os/build-config.d.ts +3 -3
- package/build/commands/os/configure.d.ts +26 -74
- package/build/commands/os/download.d.ts +3 -3
- package/build/commands/os/initialize.d.ts +3 -3
- package/build/commands/os/versions.d.ts +1 -1
- package/build/commands/preload/index.d.ts +12 -12
- package/build/commands/push/index.d.ts +8 -8
- package/build/commands/release/finalize.d.ts +1 -1
- package/build/commands/release/index.d.ts +1 -1
- package/build/commands/release/invalidate.d.ts +1 -1
- package/build/commands/release/validate.d.ts +1 -1
- package/build/commands/releases/index.d.ts +1 -1
- package/build/commands/scan/index.d.ts +1 -1
- package/build/commands/ssh/index.d.ts +3 -3
- package/build/commands/support/index.d.ts +10 -34
- package/build/commands/tag/rm.d.ts +22 -94
- package/build/commands/tag/set.d.ts +23 -95
- package/build/commands/tags/index.d.ts +21 -93
- package/build/commands/tunnel/index.d.ts +2 -2
- package/build/help.js +1 -1
- package/build/help.js.map +1 -1
- package/build/preparser.d.ts +4 -1
- package/build/preparser.js.map +1 -1
- package/build/utils/common-args.d.ts +1 -1
- package/build/utils/common-flags.d.ts +11 -11
- package/build/utils/compose_ts.d.ts +3 -3
- package/build/utils/docker.d.ts +15 -15
- package/lib/app.ts +10 -3
- package/lib/help.ts +1 -1
- package/lib/preparser.ts +5 -1
- package/npm-shrinkwrap.json +1043 -42
- package/oclif.manifest.json +1 -1
- package/package.json +3 -3
- package/patches/all/{@oclif+core+2.15.0.patch → @oclif+core+3.11.0.patch} +26 -25
|
@@ -3,7 +3,7 @@ export default class LocalConfigureCmd extends Command {
|
|
|
3
3
|
static description: string;
|
|
4
4
|
static examples: string[];
|
|
5
5
|
static args: {
|
|
6
|
-
target: import("@oclif/core/lib/interfaces
|
|
6
|
+
target: import("@oclif/core/lib/interfaces").Arg<string, Record<string, unknown>>;
|
|
7
7
|
};
|
|
8
8
|
static usage: string;
|
|
9
9
|
static flags: {
|
|
@@ -4,11 +4,11 @@ export default class LocalFlashCmd extends Command {
|
|
|
4
4
|
static description: string;
|
|
5
5
|
static examples: string[];
|
|
6
6
|
static args: {
|
|
7
|
-
image: import("@oclif/core/lib/interfaces
|
|
7
|
+
image: import("@oclif/core/lib/interfaces").Arg<string, Record<string, unknown>>;
|
|
8
8
|
};
|
|
9
9
|
static usage: string;
|
|
10
10
|
static flags: {
|
|
11
|
-
drive: import("@oclif/core/lib/interfaces").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces
|
|
11
|
+
drive: import("@oclif/core/lib/interfaces").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
12
12
|
yes: import("@oclif/core/lib/interfaces").BooleanFlag<boolean>;
|
|
13
13
|
help: import("@oclif/core/lib/interfaces").BooleanFlag<void>;
|
|
14
14
|
};
|
|
@@ -14,17 +14,17 @@ export default class LoginCmd extends Command {
|
|
|
14
14
|
static description: string;
|
|
15
15
|
static examples: string[];
|
|
16
16
|
static args: {
|
|
17
|
-
token: import("@oclif/core/lib/interfaces
|
|
17
|
+
token: import("@oclif/core/lib/interfaces").Arg<string | undefined, Record<string, unknown>>;
|
|
18
18
|
};
|
|
19
19
|
static usage: string;
|
|
20
20
|
static flags: {
|
|
21
21
|
web: import("@oclif/core/lib/interfaces").BooleanFlag<boolean>;
|
|
22
22
|
token: import("@oclif/core/lib/interfaces").BooleanFlag<boolean>;
|
|
23
23
|
credentials: import("@oclif/core/lib/interfaces").BooleanFlag<boolean>;
|
|
24
|
-
email: import("@oclif/core/lib/interfaces").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces
|
|
25
|
-
user: import("@oclif/core/lib/interfaces").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces
|
|
26
|
-
password: import("@oclif/core/lib/interfaces").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces
|
|
27
|
-
port: import("@oclif/core/lib/interfaces").OptionFlag<number | undefined, import("@oclif/core/lib/interfaces
|
|
24
|
+
email: import("@oclif/core/lib/interfaces").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
25
|
+
user: import("@oclif/core/lib/interfaces").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
26
|
+
password: import("@oclif/core/lib/interfaces").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
27
|
+
port: import("@oclif/core/lib/interfaces").OptionFlag<number | undefined, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
28
28
|
hideExperimentalWarning: import("@oclif/core/lib/interfaces").BooleanFlag<boolean>;
|
|
29
29
|
help: import("@oclif/core/lib/interfaces").BooleanFlag<void>;
|
|
30
30
|
};
|
|
@@ -3,13 +3,13 @@ export default class LogsCmd extends Command {
|
|
|
3
3
|
static description: string;
|
|
4
4
|
static examples: string[];
|
|
5
5
|
static args: {
|
|
6
|
-
device: import("@oclif/core/lib/interfaces
|
|
6
|
+
device: import("@oclif/core/lib/interfaces").Arg<string, Record<string, unknown>>;
|
|
7
7
|
};
|
|
8
8
|
static usage: string;
|
|
9
9
|
static flags: {
|
|
10
|
-
'max-retry': import("@oclif/core/lib/interfaces").OptionFlag<number | undefined, import("@oclif/core/lib/interfaces
|
|
10
|
+
'max-retry': import("@oclif/core/lib/interfaces").OptionFlag<number | undefined, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
11
11
|
tail: import("@oclif/core/lib/interfaces").BooleanFlag<boolean>;
|
|
12
|
-
service: import("@oclif/core/lib/interfaces").OptionFlag<string[] | undefined, import("@oclif/core/lib/interfaces
|
|
12
|
+
service: import("@oclif/core/lib/interfaces").OptionFlag<string[] | undefined, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
13
13
|
system: import("@oclif/core/lib/interfaces").BooleanFlag<boolean>;
|
|
14
14
|
help: import("@oclif/core/lib/interfaces").BooleanFlag<void>;
|
|
15
15
|
};
|
|
@@ -3,7 +3,7 @@ export default class NoteCmd extends Command {
|
|
|
3
3
|
static description: string;
|
|
4
4
|
static examples: string[];
|
|
5
5
|
static args: {
|
|
6
|
-
note: import("@oclif/core/lib/interfaces
|
|
6
|
+
note: import("@oclif/core/lib/interfaces").Arg<string | undefined, Record<string, unknown>>;
|
|
7
7
|
};
|
|
8
8
|
static usage: string;
|
|
9
9
|
static flags: {
|
|
@@ -23,44 +23,20 @@ export default class NoteCmd extends Command {
|
|
|
23
23
|
relationships?: import("@oclif/core/lib/interfaces/parser").Relationship[] | undefined;
|
|
24
24
|
deprecated?: true | import("@oclif/core/lib/interfaces").Deprecation | undefined;
|
|
25
25
|
aliases?: string[] | undefined;
|
|
26
|
+
charAliases?: (import("@oclif/core/lib/interfaces").AlphabetLowercase | import("@oclif/core/lib/interfaces").AlphabetUppercase)[] | undefined;
|
|
26
27
|
deprecateAliases?: boolean | undefined;
|
|
27
|
-
|
|
28
|
+
noCacheDefault?: boolean | undefined;
|
|
28
29
|
type: "option";
|
|
29
30
|
helpValue?: string | undefined;
|
|
30
|
-
options?: string[] | undefined;
|
|
31
|
-
multiple
|
|
32
|
-
parse: import("@oclif/core/lib/interfaces/parser").FlagParser<string | undefined, string, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
|
|
33
|
-
defaultHelp?: import("@oclif/core/lib/interfaces/parser").FlagDefaultHelp<string | undefined, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
|
|
34
|
-
input: string[];
|
|
35
|
-
default?: import("@oclif/core/lib/interfaces/parser").FlagDefault<string | undefined, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
|
|
36
|
-
} | {
|
|
37
|
-
name: string;
|
|
38
|
-
char?: import("@oclif/core/lib/interfaces").AlphabetLowercase | import("@oclif/core/lib/interfaces").AlphabetUppercase | undefined;
|
|
39
|
-
summary?: string | undefined;
|
|
40
|
-
description?: string | undefined;
|
|
41
|
-
helpLabel?: string | undefined;
|
|
42
|
-
helpGroup?: string | undefined;
|
|
43
|
-
env?: string | undefined;
|
|
44
|
-
hidden?: boolean | undefined;
|
|
45
|
-
required?: boolean | undefined;
|
|
46
|
-
dependsOn?: string[] | undefined;
|
|
47
|
-
exclusive: string[];
|
|
48
|
-
exactlyOne?: string[] | undefined;
|
|
49
|
-
relationships?: import("@oclif/core/lib/interfaces/parser").Relationship[] | undefined;
|
|
50
|
-
deprecated?: true | import("@oclif/core/lib/interfaces").Deprecation | undefined;
|
|
51
|
-
aliases?: string[] | undefined;
|
|
52
|
-
deprecateAliases?: boolean | undefined;
|
|
31
|
+
options?: readonly string[] | undefined;
|
|
32
|
+
multiple?: boolean | undefined;
|
|
53
33
|
delimiter?: "," | undefined;
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
options?: string[] | undefined;
|
|
57
|
-
multiple: true;
|
|
58
|
-
parse: import("@oclif/core/lib/interfaces/parser").FlagParser<string | undefined, string, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
|
|
59
|
-
defaultHelp?: import("@oclif/core/lib/interfaces/parser").FlagDefaultHelp<string | undefined, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
|
|
34
|
+
parse: import("@oclif/core/lib/interfaces/parser").FlagParser<string | undefined, string, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
35
|
+
defaultHelp?: import("@oclif/core/lib/interfaces/parser").FlagDefaultHelp<string | undefined, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
60
36
|
input: string[];
|
|
61
|
-
default?: import("@oclif/core/lib/interfaces/parser").FlagDefault<
|
|
37
|
+
default?: import("@oclif/core/lib/interfaces/parser").FlagDefault<string | undefined, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
62
38
|
};
|
|
63
|
-
dev: import("@oclif/core/lib/interfaces").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces
|
|
39
|
+
dev: import("@oclif/core/lib/interfaces").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
64
40
|
help: import("@oclif/core/lib/interfaces").BooleanFlag<void>;
|
|
65
41
|
};
|
|
66
42
|
static authenticated: boolean;
|
|
@@ -4,13 +4,13 @@ export default class OsBuildConfigCmd extends Command {
|
|
|
4
4
|
static description: string;
|
|
5
5
|
static examples: string[];
|
|
6
6
|
static args: {
|
|
7
|
-
image: import("@oclif/core/lib/interfaces
|
|
8
|
-
'device-type': import("@oclif/core/lib/interfaces
|
|
7
|
+
image: import("@oclif/core/lib/interfaces").Arg<string, Record<string, unknown>>;
|
|
8
|
+
'device-type': import("@oclif/core/lib/interfaces").Arg<string, Record<string, unknown>>;
|
|
9
9
|
};
|
|
10
10
|
static usage: string;
|
|
11
11
|
static flags: {
|
|
12
12
|
advanced: import("@oclif/core/lib/interfaces").BooleanFlag<boolean>;
|
|
13
|
-
output: import("@oclif/core/lib/interfaces").OptionFlag<string, import("@oclif/core/lib/interfaces
|
|
13
|
+
output: import("@oclif/core/lib/interfaces").OptionFlag<string, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
14
14
|
help: import("@oclif/core/lib/interfaces").BooleanFlag<void>;
|
|
15
15
|
};
|
|
16
16
|
static authenticated: boolean;
|
|
@@ -4,7 +4,7 @@ export default class OsConfigureCmd extends Command {
|
|
|
4
4
|
static description: string;
|
|
5
5
|
static examples: string[];
|
|
6
6
|
static args: {
|
|
7
|
-
image:
|
|
7
|
+
image: Interfaces.Arg<string, Record<string, unknown>>;
|
|
8
8
|
};
|
|
9
9
|
static usage: string;
|
|
10
10
|
static flags: {
|
|
@@ -25,48 +25,24 @@ export default class OsConfigureCmd extends Command {
|
|
|
25
25
|
relationships?: import("@oclif/core/lib/interfaces/parser").Relationship[] | undefined;
|
|
26
26
|
deprecated?: true | Interfaces.Deprecation | undefined;
|
|
27
27
|
aliases?: string[] | undefined;
|
|
28
|
+
charAliases?: (Interfaces.AlphabetLowercase | Interfaces.AlphabetUppercase)[] | undefined;
|
|
28
29
|
deprecateAliases?: boolean | undefined;
|
|
29
|
-
|
|
30
|
+
noCacheDefault?: boolean | undefined;
|
|
30
31
|
type: "option";
|
|
31
32
|
helpValue?: string | undefined;
|
|
32
|
-
options?: string[] | undefined;
|
|
33
|
-
multiple
|
|
34
|
-
parse: import("@oclif/core/lib/interfaces/parser").FlagParser<string | undefined, string, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
|
|
35
|
-
defaultHelp?: import("@oclif/core/lib/interfaces/parser").FlagDefaultHelp<string | undefined, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
|
|
36
|
-
input: string[];
|
|
37
|
-
default?: import("@oclif/core/lib/interfaces/parser").FlagDefault<string | undefined, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
|
|
38
|
-
} | {
|
|
39
|
-
exclusive: string[];
|
|
40
|
-
name: string;
|
|
41
|
-
char?: Interfaces.AlphabetLowercase | Interfaces.AlphabetUppercase | undefined;
|
|
42
|
-
summary?: string | undefined;
|
|
43
|
-
description?: string | undefined;
|
|
44
|
-
helpLabel?: string | undefined;
|
|
45
|
-
helpGroup?: string | undefined;
|
|
46
|
-
env?: string | undefined;
|
|
47
|
-
hidden?: boolean | undefined;
|
|
48
|
-
required?: boolean | undefined;
|
|
49
|
-
dependsOn?: string[] | undefined;
|
|
50
|
-
exactlyOne?: string[] | undefined;
|
|
51
|
-
relationships?: import("@oclif/core/lib/interfaces/parser").Relationship[] | undefined;
|
|
52
|
-
deprecated?: true | Interfaces.Deprecation | undefined;
|
|
53
|
-
aliases?: string[] | undefined;
|
|
54
|
-
deprecateAliases?: boolean | undefined;
|
|
33
|
+
options?: readonly string[] | undefined;
|
|
34
|
+
multiple?: boolean | undefined;
|
|
55
35
|
delimiter?: "," | undefined;
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
options?: string[] | undefined;
|
|
59
|
-
multiple: true;
|
|
60
|
-
parse: import("@oclif/core/lib/interfaces/parser").FlagParser<string | undefined, string, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
|
|
61
|
-
defaultHelp?: import("@oclif/core/lib/interfaces/parser").FlagDefaultHelp<string | undefined, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
|
|
36
|
+
parse: import("@oclif/core/lib/interfaces/parser").FlagParser<string | undefined, string, Interfaces.CustomOptions>;
|
|
37
|
+
defaultHelp?: import("@oclif/core/lib/interfaces/parser").FlagDefaultHelp<string | undefined, Interfaces.CustomOptions>;
|
|
62
38
|
input: string[];
|
|
63
|
-
default?: import("@oclif/core/lib/interfaces/parser").FlagDefault<
|
|
39
|
+
default?: import("@oclif/core/lib/interfaces/parser").FlagDefault<string | undefined, Interfaces.CustomOptions>;
|
|
64
40
|
};
|
|
65
|
-
config: Interfaces.OptionFlag<string | undefined,
|
|
66
|
-
'config-app-update-poll-interval': Interfaces.OptionFlag<number | undefined,
|
|
67
|
-
'config-network': Interfaces.OptionFlag<string | undefined,
|
|
68
|
-
'config-wifi-key': Interfaces.OptionFlag<string | undefined,
|
|
69
|
-
'config-wifi-ssid': Interfaces.OptionFlag<string | undefined,
|
|
41
|
+
config: Interfaces.OptionFlag<string | undefined, Interfaces.CustomOptions>;
|
|
42
|
+
'config-app-update-poll-interval': Interfaces.OptionFlag<number | undefined, Interfaces.CustomOptions>;
|
|
43
|
+
'config-network': Interfaces.OptionFlag<string | undefined, Interfaces.CustomOptions>;
|
|
44
|
+
'config-wifi-key': Interfaces.OptionFlag<string | undefined, Interfaces.CustomOptions>;
|
|
45
|
+
'config-wifi-ssid': Interfaces.OptionFlag<string | undefined, Interfaces.CustomOptions>;
|
|
70
46
|
dev: Interfaces.BooleanFlag<boolean>;
|
|
71
47
|
secureBoot: Interfaces.BooleanFlag<boolean>;
|
|
72
48
|
device: {
|
|
@@ -85,49 +61,25 @@ export default class OsConfigureCmd extends Command {
|
|
|
85
61
|
relationships?: import("@oclif/core/lib/interfaces/parser").Relationship[] | undefined;
|
|
86
62
|
deprecated?: true | Interfaces.Deprecation | undefined;
|
|
87
63
|
aliases?: string[] | undefined;
|
|
64
|
+
charAliases?: (Interfaces.AlphabetLowercase | Interfaces.AlphabetUppercase)[] | undefined;
|
|
88
65
|
deprecateAliases?: boolean | undefined;
|
|
89
|
-
|
|
66
|
+
noCacheDefault?: boolean | undefined;
|
|
90
67
|
type: "option";
|
|
91
68
|
helpValue?: string | undefined;
|
|
92
|
-
options?: string[] | undefined;
|
|
93
|
-
multiple
|
|
94
|
-
parse: import("@oclif/core/lib/interfaces/parser").FlagParser<string | undefined, string, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
|
|
95
|
-
defaultHelp?: import("@oclif/core/lib/interfaces/parser").FlagDefaultHelp<string | undefined, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
|
|
96
|
-
input: string[];
|
|
97
|
-
default?: import("@oclif/core/lib/interfaces/parser").FlagDefault<string | undefined, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
|
|
98
|
-
} | {
|
|
99
|
-
exclusive: string[];
|
|
100
|
-
name: string;
|
|
101
|
-
char?: Interfaces.AlphabetLowercase | Interfaces.AlphabetUppercase | undefined;
|
|
102
|
-
summary?: string | undefined;
|
|
103
|
-
description?: string | undefined;
|
|
104
|
-
helpLabel?: string | undefined;
|
|
105
|
-
helpGroup?: string | undefined;
|
|
106
|
-
env?: string | undefined;
|
|
107
|
-
hidden?: boolean | undefined;
|
|
108
|
-
required?: boolean | undefined;
|
|
109
|
-
dependsOn?: string[] | undefined;
|
|
110
|
-
exactlyOne?: string[] | undefined;
|
|
111
|
-
relationships?: import("@oclif/core/lib/interfaces/parser").Relationship[] | undefined;
|
|
112
|
-
deprecated?: true | Interfaces.Deprecation | undefined;
|
|
113
|
-
aliases?: string[] | undefined;
|
|
114
|
-
deprecateAliases?: boolean | undefined;
|
|
69
|
+
options?: readonly string[] | undefined;
|
|
70
|
+
multiple?: boolean | undefined;
|
|
115
71
|
delimiter?: "," | undefined;
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
options?: string[] | undefined;
|
|
119
|
-
multiple: true;
|
|
120
|
-
parse: import("@oclif/core/lib/interfaces/parser").FlagParser<string | undefined, string, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
|
|
121
|
-
defaultHelp?: import("@oclif/core/lib/interfaces/parser").FlagDefaultHelp<string | undefined, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
|
|
72
|
+
parse: import("@oclif/core/lib/interfaces/parser").FlagParser<string | undefined, string, Interfaces.CustomOptions>;
|
|
73
|
+
defaultHelp?: import("@oclif/core/lib/interfaces/parser").FlagDefaultHelp<string | undefined, Interfaces.CustomOptions>;
|
|
122
74
|
input: string[];
|
|
123
|
-
default?: import("@oclif/core/lib/interfaces/parser").FlagDefault<
|
|
75
|
+
default?: import("@oclif/core/lib/interfaces/parser").FlagDefault<string | undefined, Interfaces.CustomOptions>;
|
|
124
76
|
};
|
|
125
|
-
'device-type': Interfaces.OptionFlag<string | undefined,
|
|
126
|
-
'initial-device-name': Interfaces.OptionFlag<string | undefined,
|
|
127
|
-
version: Interfaces.OptionFlag<string | undefined,
|
|
128
|
-
'system-connection': Interfaces.OptionFlag<string[] | undefined,
|
|
129
|
-
'provisioning-key-name': Interfaces.OptionFlag<string | undefined,
|
|
130
|
-
'provisioning-key-expiry-date': Interfaces.OptionFlag<string | undefined,
|
|
77
|
+
'device-type': Interfaces.OptionFlag<string | undefined, Interfaces.CustomOptions>;
|
|
78
|
+
'initial-device-name': Interfaces.OptionFlag<string | undefined, Interfaces.CustomOptions>;
|
|
79
|
+
version: Interfaces.OptionFlag<string | undefined, Interfaces.CustomOptions>;
|
|
80
|
+
'system-connection': Interfaces.OptionFlag<string[] | undefined, Interfaces.CustomOptions>;
|
|
81
|
+
'provisioning-key-name': Interfaces.OptionFlag<string | undefined, Interfaces.CustomOptions>;
|
|
82
|
+
'provisioning-key-expiry-date': Interfaces.OptionFlag<string | undefined, Interfaces.CustomOptions>;
|
|
131
83
|
help: Interfaces.BooleanFlag<void>;
|
|
132
84
|
};
|
|
133
85
|
static authenticated: boolean;
|
|
@@ -3,12 +3,12 @@ export default class OsDownloadCmd extends Command {
|
|
|
3
3
|
static description: string;
|
|
4
4
|
static examples: string[];
|
|
5
5
|
static args: {
|
|
6
|
-
type: import("@oclif/core/lib/interfaces
|
|
6
|
+
type: import("@oclif/core/lib/interfaces").Arg<string, Record<string, unknown>>;
|
|
7
7
|
};
|
|
8
8
|
static usage: string;
|
|
9
9
|
static flags: {
|
|
10
|
-
output: import("@oclif/core/lib/interfaces").OptionFlag<string, import("@oclif/core/lib/interfaces
|
|
11
|
-
version: import("@oclif/core/lib/interfaces").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces
|
|
10
|
+
output: import("@oclif/core/lib/interfaces").OptionFlag<string, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
11
|
+
version: import("@oclif/core/lib/interfaces").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
12
12
|
help: import("@oclif/core/lib/interfaces").BooleanFlag<void>;
|
|
13
13
|
};
|
|
14
14
|
run(): Promise<void>;
|
|
@@ -3,12 +3,12 @@ export default class OsInitializeCmd extends Command {
|
|
|
3
3
|
static description: string;
|
|
4
4
|
static examples: string[];
|
|
5
5
|
static args: {
|
|
6
|
-
image: import("@oclif/core/lib/interfaces
|
|
6
|
+
image: import("@oclif/core/lib/interfaces").Arg<string, Record<string, unknown>>;
|
|
7
7
|
};
|
|
8
8
|
static usage: string;
|
|
9
9
|
static flags: {
|
|
10
|
-
type: import("@oclif/core/lib/interfaces").OptionFlag<string, import("@oclif/core/lib/interfaces
|
|
11
|
-
drive: import("@oclif/core/lib/interfaces").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces
|
|
10
|
+
type: import("@oclif/core/lib/interfaces").OptionFlag<string, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
11
|
+
drive: import("@oclif/core/lib/interfaces").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
12
12
|
yes: import("@oclif/core/lib/interfaces").BooleanFlag<boolean>;
|
|
13
13
|
help: import("@oclif/core/lib/interfaces").BooleanFlag<void>;
|
|
14
14
|
};
|
|
@@ -3,7 +3,7 @@ export default class OsVersionsCmd extends Command {
|
|
|
3
3
|
static description: string;
|
|
4
4
|
static examples: string[];
|
|
5
5
|
static args: {
|
|
6
|
-
type: import("@oclif/core/lib/interfaces
|
|
6
|
+
type: import("@oclif/core/lib/interfaces").Arg<string, Record<string, unknown>>;
|
|
7
7
|
};
|
|
8
8
|
static usage: string;
|
|
9
9
|
static flags: {
|
|
@@ -6,24 +6,24 @@ export default class PreloadCmd extends Command {
|
|
|
6
6
|
static description: string;
|
|
7
7
|
static examples: string[];
|
|
8
8
|
static args: {
|
|
9
|
-
image: import("@oclif/core/lib/interfaces
|
|
9
|
+
image: import("@oclif/core/lib/interfaces").Arg<string, Record<string, unknown>>;
|
|
10
10
|
};
|
|
11
11
|
static usage: string;
|
|
12
12
|
static flags: {
|
|
13
|
-
dockerPort: import("@oclif/core/lib/interfaces").OptionFlag<number | undefined, import("@oclif/core/lib/interfaces
|
|
13
|
+
dockerPort: import("@oclif/core/lib/interfaces").OptionFlag<number | undefined, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
14
14
|
help: import("@oclif/core/lib/interfaces").BooleanFlag<void>;
|
|
15
|
-
docker: import("@oclif/core/lib/interfaces").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces
|
|
16
|
-
dockerHost: import("@oclif/core/lib/interfaces").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces
|
|
17
|
-
ca: import("@oclif/core/lib/interfaces").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces
|
|
18
|
-
cert: import("@oclif/core/lib/interfaces").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces
|
|
19
|
-
key: import("@oclif/core/lib/interfaces").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces
|
|
20
|
-
fleet: import("@oclif/core/lib/interfaces").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces
|
|
21
|
-
commit: import("@oclif/core/lib/interfaces").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces
|
|
22
|
-
'splash-image': import("@oclif/core/lib/interfaces").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces
|
|
15
|
+
docker: import("@oclif/core/lib/interfaces").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
16
|
+
dockerHost: import("@oclif/core/lib/interfaces").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
17
|
+
ca: import("@oclif/core/lib/interfaces").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
18
|
+
cert: import("@oclif/core/lib/interfaces").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
19
|
+
key: import("@oclif/core/lib/interfaces").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
20
|
+
fleet: import("@oclif/core/lib/interfaces").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
21
|
+
commit: import("@oclif/core/lib/interfaces").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
22
|
+
'splash-image': import("@oclif/core/lib/interfaces").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
23
23
|
'dont-check-arch': import("@oclif/core/lib/interfaces").BooleanFlag<boolean>;
|
|
24
24
|
'pin-device-to-release': import("@oclif/core/lib/interfaces").BooleanFlag<boolean>;
|
|
25
|
-
'additional-space': import("@oclif/core/lib/interfaces").OptionFlag<number | undefined, import("@oclif/core/lib/interfaces
|
|
26
|
-
'add-certificate': import("@oclif/core/lib/interfaces").OptionFlag<string[] | undefined, import("@oclif/core/lib/interfaces
|
|
25
|
+
'additional-space': import("@oclif/core/lib/interfaces").OptionFlag<number | undefined, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
26
|
+
'add-certificate': import("@oclif/core/lib/interfaces").OptionFlag<string[] | undefined, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
27
27
|
};
|
|
28
28
|
static authenticated: boolean;
|
|
29
29
|
static primary: boolean;
|
|
@@ -11,27 +11,27 @@ export default class PushCmd extends Command {
|
|
|
11
11
|
static description: string;
|
|
12
12
|
static examples: string[];
|
|
13
13
|
static args: {
|
|
14
|
-
fleetOrDevice:
|
|
14
|
+
fleetOrDevice: Interfaces.Arg<string, Record<string, unknown>>;
|
|
15
15
|
};
|
|
16
16
|
static usage: string;
|
|
17
17
|
static flags: {
|
|
18
|
-
source: Interfaces.OptionFlag<string,
|
|
18
|
+
source: Interfaces.OptionFlag<string, Interfaces.CustomOptions>;
|
|
19
19
|
emulated: Interfaces.BooleanFlag<boolean>;
|
|
20
|
-
dockerfile: Interfaces.OptionFlag<string | undefined,
|
|
20
|
+
dockerfile: Interfaces.OptionFlag<string | undefined, Interfaces.CustomOptions>;
|
|
21
21
|
nocache: Interfaces.BooleanFlag<boolean>;
|
|
22
22
|
pull: Interfaces.BooleanFlag<boolean>;
|
|
23
23
|
'noparent-check': Interfaces.BooleanFlag<boolean>;
|
|
24
|
-
'registry-secrets': Interfaces.OptionFlag<string | undefined,
|
|
24
|
+
'registry-secrets': Interfaces.OptionFlag<string | undefined, Interfaces.CustomOptions>;
|
|
25
25
|
nolive: Interfaces.BooleanFlag<boolean>;
|
|
26
26
|
detached: Interfaces.BooleanFlag<boolean>;
|
|
27
|
-
service: Interfaces.OptionFlag<string[] | undefined,
|
|
27
|
+
service: Interfaces.OptionFlag<string[] | undefined, Interfaces.CustomOptions>;
|
|
28
28
|
system: Interfaces.BooleanFlag<boolean>;
|
|
29
|
-
env: Interfaces.OptionFlag<string[] | undefined,
|
|
29
|
+
env: Interfaces.OptionFlag<string[] | undefined, Interfaces.CustomOptions>;
|
|
30
30
|
'noconvert-eol': Interfaces.BooleanFlag<boolean>;
|
|
31
31
|
'multi-dockerignore': Interfaces.BooleanFlag<boolean>;
|
|
32
|
-
'release-tag': Interfaces.OptionFlag<string[] | undefined,
|
|
32
|
+
'release-tag': Interfaces.OptionFlag<string[] | undefined, Interfaces.CustomOptions>;
|
|
33
33
|
draft: Interfaces.BooleanFlag<boolean>;
|
|
34
|
-
note: Interfaces.OptionFlag<string | undefined,
|
|
34
|
+
note: Interfaces.OptionFlag<string | undefined, Interfaces.CustomOptions>;
|
|
35
35
|
help: Interfaces.BooleanFlag<void>;
|
|
36
36
|
};
|
|
37
37
|
static primary: boolean;
|
|
@@ -7,7 +7,7 @@ export default class ReleaseFinalizeCmd extends Command {
|
|
|
7
7
|
help: import("@oclif/core/lib/interfaces").BooleanFlag<void>;
|
|
8
8
|
};
|
|
9
9
|
static args: {
|
|
10
|
-
commitOrId: import("@oclif/core/lib/interfaces
|
|
10
|
+
commitOrId: import("@oclif/core/lib/interfaces").Arg<string | number, Record<string, unknown>>;
|
|
11
11
|
};
|
|
12
12
|
static authenticated: boolean;
|
|
13
13
|
run(): Promise<void>;
|
|
@@ -13,7 +13,7 @@ export default class ReleaseCmd extends Command {
|
|
|
13
13
|
composition: Interfaces.BooleanFlag<boolean>;
|
|
14
14
|
};
|
|
15
15
|
static args: {
|
|
16
|
-
commitOrId:
|
|
16
|
+
commitOrId: Interfaces.Arg<string | number, Record<string, unknown>>;
|
|
17
17
|
};
|
|
18
18
|
static authenticated: boolean;
|
|
19
19
|
run(): Promise<void>;
|
|
@@ -7,7 +7,7 @@ export default class ReleaseInvalidateCmd extends Command {
|
|
|
7
7
|
help: import("@oclif/core/lib/interfaces").BooleanFlag<void>;
|
|
8
8
|
};
|
|
9
9
|
static args: {
|
|
10
|
-
commitOrId: import("@oclif/core/lib/interfaces
|
|
10
|
+
commitOrId: import("@oclif/core/lib/interfaces").Arg<string | number, Record<string, unknown>>;
|
|
11
11
|
};
|
|
12
12
|
static authenticated: boolean;
|
|
13
13
|
run(): Promise<void>;
|
|
@@ -7,7 +7,7 @@ export default class ReleaseValidateCmd extends Command {
|
|
|
7
7
|
help: import("@oclif/core/lib/interfaces").BooleanFlag<void>;
|
|
8
8
|
};
|
|
9
9
|
static args: {
|
|
10
|
-
commitOrId: import("@oclif/core/lib/interfaces
|
|
10
|
+
commitOrId: import("@oclif/core/lib/interfaces").Arg<string | number, Record<string, unknown>>;
|
|
11
11
|
};
|
|
12
12
|
static authenticated: boolean;
|
|
13
13
|
run(): Promise<void>;
|
|
@@ -8,7 +8,7 @@ export default class ReleasesCmd extends Command {
|
|
|
8
8
|
help: import("@oclif/core/lib/interfaces").BooleanFlag<void>;
|
|
9
9
|
};
|
|
10
10
|
static args: {
|
|
11
|
-
fleet: import("@oclif/core/lib/interfaces
|
|
11
|
+
fleet: import("@oclif/core/lib/interfaces").Arg<string, Record<string, unknown>>;
|
|
12
12
|
};
|
|
13
13
|
static authenticated: boolean;
|
|
14
14
|
run(): Promise<void>;
|
|
@@ -5,7 +5,7 @@ export default class ScanCmd extends Command {
|
|
|
5
5
|
static usage: string;
|
|
6
6
|
static flags: {
|
|
7
7
|
verbose: import("@oclif/core/lib/interfaces").BooleanFlag<boolean>;
|
|
8
|
-
timeout: import("@oclif/core/lib/interfaces").OptionFlag<number | undefined, import("@oclif/core/lib/interfaces
|
|
8
|
+
timeout: import("@oclif/core/lib/interfaces").OptionFlag<number | undefined, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
9
9
|
help: import("@oclif/core/lib/interfaces").BooleanFlag<void>;
|
|
10
10
|
json: import("@oclif/core/lib/interfaces").BooleanFlag<boolean>;
|
|
11
11
|
};
|
|
@@ -3,12 +3,12 @@ export default class SshCmd extends Command {
|
|
|
3
3
|
static description: string;
|
|
4
4
|
static examples: string[];
|
|
5
5
|
static args: {
|
|
6
|
-
fleetOrDevice: import("@oclif/core/lib/interfaces
|
|
7
|
-
service: import("@oclif/core/lib/interfaces
|
|
6
|
+
fleetOrDevice: import("@oclif/core/lib/interfaces").Arg<string, Record<string, unknown>>;
|
|
7
|
+
service: import("@oclif/core/lib/interfaces").Arg<string | undefined, Record<string, unknown>>;
|
|
8
8
|
};
|
|
9
9
|
static usage: string;
|
|
10
10
|
static flags: {
|
|
11
|
-
port: import("@oclif/core/lib/interfaces").OptionFlag<number | undefined, import("@oclif/core/lib/interfaces
|
|
11
|
+
port: import("@oclif/core/lib/interfaces").OptionFlag<number | undefined, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
12
12
|
tty: import("@oclif/core/lib/interfaces").BooleanFlag<boolean>;
|
|
13
13
|
verbose: import("@oclif/core/lib/interfaces").BooleanFlag<boolean>;
|
|
14
14
|
noproxy: import("@oclif/core/lib/interfaces").BooleanFlag<boolean>;
|
|
@@ -3,11 +3,11 @@ export default class SupportCmd extends Command {
|
|
|
3
3
|
static description: string;
|
|
4
4
|
static examples: string[];
|
|
5
5
|
static args: {
|
|
6
|
-
action: import("@oclif/core/lib/interfaces
|
|
6
|
+
action: import("@oclif/core/lib/interfaces").Arg<string | undefined, Record<string, unknown>>;
|
|
7
7
|
};
|
|
8
8
|
static usage: string;
|
|
9
9
|
static flags: {
|
|
10
|
-
device: import("@oclif/core/lib/interfaces").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces
|
|
10
|
+
device: import("@oclif/core/lib/interfaces").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
11
11
|
fleet: {
|
|
12
12
|
description: string;
|
|
13
13
|
name: string;
|
|
@@ -24,44 +24,20 @@ export default class SupportCmd extends Command {
|
|
|
24
24
|
relationships?: import("@oclif/core/lib/interfaces/parser").Relationship[] | undefined;
|
|
25
25
|
deprecated?: true | import("@oclif/core/lib/interfaces").Deprecation | undefined;
|
|
26
26
|
aliases?: string[] | undefined;
|
|
27
|
+
charAliases?: (import("@oclif/core/lib/interfaces").AlphabetLowercase | import("@oclif/core/lib/interfaces").AlphabetUppercase)[] | undefined;
|
|
27
28
|
deprecateAliases?: boolean | undefined;
|
|
28
|
-
|
|
29
|
+
noCacheDefault?: boolean | undefined;
|
|
29
30
|
type: "option";
|
|
30
31
|
helpValue?: string | undefined;
|
|
31
|
-
options?: string[] | undefined;
|
|
32
|
-
multiple
|
|
33
|
-
parse: import("@oclif/core/lib/interfaces/parser").FlagParser<string | undefined, string, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
|
|
34
|
-
defaultHelp?: import("@oclif/core/lib/interfaces/parser").FlagDefaultHelp<string | undefined, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
|
|
35
|
-
input: string[];
|
|
36
|
-
default?: import("@oclif/core/lib/interfaces/parser").FlagDefault<string | undefined, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
|
|
37
|
-
} | {
|
|
38
|
-
description: string;
|
|
39
|
-
name: string;
|
|
40
|
-
char?: import("@oclif/core/lib/interfaces").AlphabetLowercase | import("@oclif/core/lib/interfaces").AlphabetUppercase | undefined;
|
|
41
|
-
summary?: string | undefined;
|
|
42
|
-
helpLabel?: string | undefined;
|
|
43
|
-
helpGroup?: string | undefined;
|
|
44
|
-
env?: string | undefined;
|
|
45
|
-
hidden?: boolean | undefined;
|
|
46
|
-
required?: boolean | undefined;
|
|
47
|
-
dependsOn?: string[] | undefined;
|
|
48
|
-
exclusive?: string[] | undefined;
|
|
49
|
-
exactlyOne?: string[] | undefined;
|
|
50
|
-
relationships?: import("@oclif/core/lib/interfaces/parser").Relationship[] | undefined;
|
|
51
|
-
deprecated?: true | import("@oclif/core/lib/interfaces").Deprecation | undefined;
|
|
52
|
-
aliases?: string[] | undefined;
|
|
53
|
-
deprecateAliases?: boolean | undefined;
|
|
32
|
+
options?: readonly string[] | undefined;
|
|
33
|
+
multiple?: boolean | undefined;
|
|
54
34
|
delimiter?: "," | undefined;
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
options?: string[] | undefined;
|
|
58
|
-
multiple: true;
|
|
59
|
-
parse: import("@oclif/core/lib/interfaces/parser").FlagParser<string | undefined, string, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
|
|
60
|
-
defaultHelp?: import("@oclif/core/lib/interfaces/parser").FlagDefaultHelp<string | undefined, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
|
|
35
|
+
parse: import("@oclif/core/lib/interfaces/parser").FlagParser<string | undefined, string, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
36
|
+
defaultHelp?: import("@oclif/core/lib/interfaces/parser").FlagDefaultHelp<string | undefined, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
61
37
|
input: string[];
|
|
62
|
-
default?: import("@oclif/core/lib/interfaces/parser").FlagDefault<
|
|
38
|
+
default?: import("@oclif/core/lib/interfaces/parser").FlagDefault<string | undefined, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
63
39
|
};
|
|
64
|
-
duration: import("@oclif/core/lib/interfaces").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces
|
|
40
|
+
duration: import("@oclif/core/lib/interfaces").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
65
41
|
help: import("@oclif/core/lib/interfaces").BooleanFlag<void>;
|
|
66
42
|
};
|
|
67
43
|
static authenticated: boolean;
|