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 TagRmCmd extends Command {
|
|
|
3
3
|
static description: string;
|
|
4
4
|
static examples: string[];
|
|
5
5
|
static args: {
|
|
6
|
-
tagKey: import("@oclif/core/lib/interfaces
|
|
6
|
+
tagKey: import("@oclif/core/lib/interfaces").Arg<string, Record<string, unknown>>;
|
|
7
7
|
};
|
|
8
8
|
static usage: string;
|
|
9
9
|
static flags: {
|
|
@@ -23,42 +23,18 @@ export default class TagRmCmd 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
|
-
exclusive: string[];
|
|
38
|
-
name: string;
|
|
39
|
-
char?: import("@oclif/core/lib/interfaces").AlphabetLowercase | import("@oclif/core/lib/interfaces").AlphabetUppercase | undefined;
|
|
40
|
-
summary?: string | undefined;
|
|
41
|
-
description?: 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
|
-
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
39
|
device: {
|
|
64
40
|
exclusive: string[];
|
|
@@ -76,42 +52,18 @@ export default class TagRmCmd extends Command {
|
|
|
76
52
|
relationships?: import("@oclif/core/lib/interfaces/parser").Relationship[] | undefined;
|
|
77
53
|
deprecated?: true | import("@oclif/core/lib/interfaces").Deprecation | undefined;
|
|
78
54
|
aliases?: string[] | undefined;
|
|
55
|
+
charAliases?: (import("@oclif/core/lib/interfaces").AlphabetLowercase | import("@oclif/core/lib/interfaces").AlphabetUppercase)[] | undefined;
|
|
79
56
|
deprecateAliases?: boolean | undefined;
|
|
80
|
-
|
|
57
|
+
noCacheDefault?: boolean | undefined;
|
|
81
58
|
type: "option";
|
|
82
59
|
helpValue?: string | undefined;
|
|
83
|
-
options?: string[] | undefined;
|
|
84
|
-
multiple
|
|
85
|
-
parse: import("@oclif/core/lib/interfaces/parser").FlagParser<string | undefined, string, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
|
|
86
|
-
defaultHelp?: import("@oclif/core/lib/interfaces/parser").FlagDefaultHelp<string | undefined, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
|
|
87
|
-
input: string[];
|
|
88
|
-
default?: import("@oclif/core/lib/interfaces/parser").FlagDefault<string | undefined, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
|
|
89
|
-
} | {
|
|
90
|
-
exclusive: string[];
|
|
91
|
-
name: string;
|
|
92
|
-
char?: import("@oclif/core/lib/interfaces").AlphabetLowercase | import("@oclif/core/lib/interfaces").AlphabetUppercase | undefined;
|
|
93
|
-
summary?: string | undefined;
|
|
94
|
-
description?: string | undefined;
|
|
95
|
-
helpLabel?: string | undefined;
|
|
96
|
-
helpGroup?: string | undefined;
|
|
97
|
-
env?: string | undefined;
|
|
98
|
-
hidden?: boolean | undefined;
|
|
99
|
-
required?: boolean | undefined;
|
|
100
|
-
dependsOn?: string[] | undefined;
|
|
101
|
-
exactlyOne?: string[] | undefined;
|
|
102
|
-
relationships?: import("@oclif/core/lib/interfaces/parser").Relationship[] | undefined;
|
|
103
|
-
deprecated?: true | import("@oclif/core/lib/interfaces").Deprecation | undefined;
|
|
104
|
-
aliases?: string[] | undefined;
|
|
105
|
-
deprecateAliases?: boolean | undefined;
|
|
60
|
+
options?: readonly string[] | undefined;
|
|
61
|
+
multiple?: boolean | undefined;
|
|
106
62
|
delimiter?: "," | undefined;
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
options?: string[] | undefined;
|
|
110
|
-
multiple: true;
|
|
111
|
-
parse: import("@oclif/core/lib/interfaces/parser").FlagParser<string | undefined, string, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
|
|
112
|
-
defaultHelp?: import("@oclif/core/lib/interfaces/parser").FlagDefaultHelp<string | undefined, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
|
|
63
|
+
parse: import("@oclif/core/lib/interfaces/parser").FlagParser<string | undefined, string, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
64
|
+
defaultHelp?: import("@oclif/core/lib/interfaces/parser").FlagDefaultHelp<string | undefined, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
113
65
|
input: string[];
|
|
114
|
-
default?: import("@oclif/core/lib/interfaces/parser").FlagDefault<
|
|
66
|
+
default?: import("@oclif/core/lib/interfaces/parser").FlagDefault<string | undefined, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
115
67
|
};
|
|
116
68
|
release: {
|
|
117
69
|
exclusive: string[];
|
|
@@ -129,42 +81,18 @@ export default class TagRmCmd extends Command {
|
|
|
129
81
|
relationships?: import("@oclif/core/lib/interfaces/parser").Relationship[] | undefined;
|
|
130
82
|
deprecated?: true | import("@oclif/core/lib/interfaces").Deprecation | undefined;
|
|
131
83
|
aliases?: string[] | undefined;
|
|
84
|
+
charAliases?: (import("@oclif/core/lib/interfaces").AlphabetLowercase | import("@oclif/core/lib/interfaces").AlphabetUppercase)[] | undefined;
|
|
132
85
|
deprecateAliases?: boolean | undefined;
|
|
133
|
-
|
|
86
|
+
noCacheDefault?: boolean | undefined;
|
|
134
87
|
type: "option";
|
|
135
88
|
helpValue?: string | undefined;
|
|
136
|
-
options?: string[] | undefined;
|
|
137
|
-
multiple
|
|
138
|
-
parse: import("@oclif/core/lib/interfaces/parser").FlagParser<string | undefined, string, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
|
|
139
|
-
defaultHelp?: import("@oclif/core/lib/interfaces/parser").FlagDefaultHelp<string | undefined, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
|
|
140
|
-
input: string[];
|
|
141
|
-
default?: import("@oclif/core/lib/interfaces/parser").FlagDefault<string | undefined, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
|
|
142
|
-
} | {
|
|
143
|
-
exclusive: string[];
|
|
144
|
-
name: string;
|
|
145
|
-
char?: import("@oclif/core/lib/interfaces").AlphabetLowercase | import("@oclif/core/lib/interfaces").AlphabetUppercase | undefined;
|
|
146
|
-
summary?: string | undefined;
|
|
147
|
-
description?: string | undefined;
|
|
148
|
-
helpLabel?: string | undefined;
|
|
149
|
-
helpGroup?: string | undefined;
|
|
150
|
-
env?: string | undefined;
|
|
151
|
-
hidden?: boolean | undefined;
|
|
152
|
-
required?: boolean | undefined;
|
|
153
|
-
dependsOn?: string[] | undefined;
|
|
154
|
-
exactlyOne?: string[] | undefined;
|
|
155
|
-
relationships?: import("@oclif/core/lib/interfaces/parser").Relationship[] | undefined;
|
|
156
|
-
deprecated?: true | import("@oclif/core/lib/interfaces").Deprecation | undefined;
|
|
157
|
-
aliases?: string[] | undefined;
|
|
158
|
-
deprecateAliases?: boolean | undefined;
|
|
89
|
+
options?: readonly string[] | undefined;
|
|
90
|
+
multiple?: boolean | undefined;
|
|
159
91
|
delimiter?: "," | undefined;
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
options?: string[] | undefined;
|
|
163
|
-
multiple: true;
|
|
164
|
-
parse: import("@oclif/core/lib/interfaces/parser").FlagParser<string | undefined, string, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
|
|
165
|
-
defaultHelp?: import("@oclif/core/lib/interfaces/parser").FlagDefaultHelp<string | undefined, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
|
|
92
|
+
parse: import("@oclif/core/lib/interfaces/parser").FlagParser<string | undefined, string, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
93
|
+
defaultHelp?: import("@oclif/core/lib/interfaces/parser").FlagDefaultHelp<string | undefined, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
166
94
|
input: string[];
|
|
167
|
-
default?: import("@oclif/core/lib/interfaces/parser").FlagDefault<
|
|
95
|
+
default?: import("@oclif/core/lib/interfaces/parser").FlagDefault<string | undefined, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
168
96
|
};
|
|
169
97
|
help: import("@oclif/core/lib/interfaces").BooleanFlag<void>;
|
|
170
98
|
};
|
|
@@ -3,8 +3,8 @@ export default class TagSetCmd extends Command {
|
|
|
3
3
|
static description: string;
|
|
4
4
|
static examples: string[];
|
|
5
5
|
static args: {
|
|
6
|
-
tagKey: import("@oclif/core/lib/interfaces
|
|
7
|
-
value: import("@oclif/core/lib/interfaces
|
|
6
|
+
tagKey: import("@oclif/core/lib/interfaces").Arg<string, Record<string, unknown>>;
|
|
7
|
+
value: import("@oclif/core/lib/interfaces").Arg<string | undefined, Record<string, unknown>>;
|
|
8
8
|
};
|
|
9
9
|
static strict: boolean;
|
|
10
10
|
static usage: string;
|
|
@@ -25,42 +25,18 @@ export default class TagSetCmd extends Command {
|
|
|
25
25
|
relationships?: import("@oclif/core/lib/interfaces/parser").Relationship[] | undefined;
|
|
26
26
|
deprecated?: true | import("@oclif/core/lib/interfaces").Deprecation | undefined;
|
|
27
27
|
aliases?: string[] | undefined;
|
|
28
|
+
charAliases?: (import("@oclif/core/lib/interfaces").AlphabetLowercase | import("@oclif/core/lib/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?: import("@oclif/core/lib/interfaces").AlphabetLowercase | import("@oclif/core/lib/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 | import("@oclif/core/lib/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, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
37
|
+
defaultHelp?: import("@oclif/core/lib/interfaces/parser").FlagDefaultHelp<string | undefined, import("@oclif/core/lib/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, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
64
40
|
};
|
|
65
41
|
device: {
|
|
66
42
|
exclusive: string[];
|
|
@@ -78,42 +54,18 @@ export default class TagSetCmd extends Command {
|
|
|
78
54
|
relationships?: import("@oclif/core/lib/interfaces/parser").Relationship[] | undefined;
|
|
79
55
|
deprecated?: true | import("@oclif/core/lib/interfaces").Deprecation | undefined;
|
|
80
56
|
aliases?: string[] | undefined;
|
|
57
|
+
charAliases?: (import("@oclif/core/lib/interfaces").AlphabetLowercase | import("@oclif/core/lib/interfaces").AlphabetUppercase)[] | undefined;
|
|
81
58
|
deprecateAliases?: boolean | undefined;
|
|
82
|
-
|
|
59
|
+
noCacheDefault?: boolean | undefined;
|
|
83
60
|
type: "option";
|
|
84
61
|
helpValue?: string | undefined;
|
|
85
|
-
options?: string[] | undefined;
|
|
86
|
-
multiple
|
|
87
|
-
parse: import("@oclif/core/lib/interfaces/parser").FlagParser<string | undefined, string, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
|
|
88
|
-
defaultHelp?: import("@oclif/core/lib/interfaces/parser").FlagDefaultHelp<string | undefined, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
|
|
89
|
-
input: string[];
|
|
90
|
-
default?: import("@oclif/core/lib/interfaces/parser").FlagDefault<string | undefined, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
|
|
91
|
-
} | {
|
|
92
|
-
exclusive: string[];
|
|
93
|
-
name: string;
|
|
94
|
-
char?: import("@oclif/core/lib/interfaces").AlphabetLowercase | import("@oclif/core/lib/interfaces").AlphabetUppercase | undefined;
|
|
95
|
-
summary?: string | undefined;
|
|
96
|
-
description?: string | undefined;
|
|
97
|
-
helpLabel?: string | undefined;
|
|
98
|
-
helpGroup?: string | undefined;
|
|
99
|
-
env?: string | undefined;
|
|
100
|
-
hidden?: boolean | undefined;
|
|
101
|
-
required?: boolean | undefined;
|
|
102
|
-
dependsOn?: string[] | undefined;
|
|
103
|
-
exactlyOne?: string[] | undefined;
|
|
104
|
-
relationships?: import("@oclif/core/lib/interfaces/parser").Relationship[] | undefined;
|
|
105
|
-
deprecated?: true | import("@oclif/core/lib/interfaces").Deprecation | undefined;
|
|
106
|
-
aliases?: string[] | undefined;
|
|
107
|
-
deprecateAliases?: boolean | undefined;
|
|
62
|
+
options?: readonly string[] | undefined;
|
|
63
|
+
multiple?: boolean | undefined;
|
|
108
64
|
delimiter?: "," | undefined;
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
options?: string[] | undefined;
|
|
112
|
-
multiple: true;
|
|
113
|
-
parse: import("@oclif/core/lib/interfaces/parser").FlagParser<string | undefined, string, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
|
|
114
|
-
defaultHelp?: import("@oclif/core/lib/interfaces/parser").FlagDefaultHelp<string | undefined, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
|
|
65
|
+
parse: import("@oclif/core/lib/interfaces/parser").FlagParser<string | undefined, string, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
66
|
+
defaultHelp?: import("@oclif/core/lib/interfaces/parser").FlagDefaultHelp<string | undefined, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
115
67
|
input: string[];
|
|
116
|
-
default?: import("@oclif/core/lib/interfaces/parser").FlagDefault<
|
|
68
|
+
default?: import("@oclif/core/lib/interfaces/parser").FlagDefault<string | undefined, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
117
69
|
};
|
|
118
70
|
release: {
|
|
119
71
|
exclusive: string[];
|
|
@@ -131,42 +83,18 @@ export default class TagSetCmd extends Command {
|
|
|
131
83
|
relationships?: import("@oclif/core/lib/interfaces/parser").Relationship[] | undefined;
|
|
132
84
|
deprecated?: true | import("@oclif/core/lib/interfaces").Deprecation | undefined;
|
|
133
85
|
aliases?: string[] | undefined;
|
|
86
|
+
charAliases?: (import("@oclif/core/lib/interfaces").AlphabetLowercase | import("@oclif/core/lib/interfaces").AlphabetUppercase)[] | undefined;
|
|
134
87
|
deprecateAliases?: boolean | undefined;
|
|
135
|
-
|
|
88
|
+
noCacheDefault?: boolean | undefined;
|
|
136
89
|
type: "option";
|
|
137
90
|
helpValue?: string | undefined;
|
|
138
|
-
options?: string[] | undefined;
|
|
139
|
-
multiple
|
|
140
|
-
parse: import("@oclif/core/lib/interfaces/parser").FlagParser<string | undefined, string, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
|
|
141
|
-
defaultHelp?: import("@oclif/core/lib/interfaces/parser").FlagDefaultHelp<string | undefined, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
|
|
142
|
-
input: string[];
|
|
143
|
-
default?: import("@oclif/core/lib/interfaces/parser").FlagDefault<string | undefined, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
|
|
144
|
-
} | {
|
|
145
|
-
exclusive: string[];
|
|
146
|
-
name: string;
|
|
147
|
-
char?: import("@oclif/core/lib/interfaces").AlphabetLowercase | import("@oclif/core/lib/interfaces").AlphabetUppercase | undefined;
|
|
148
|
-
summary?: string | undefined;
|
|
149
|
-
description?: string | undefined;
|
|
150
|
-
helpLabel?: string | undefined;
|
|
151
|
-
helpGroup?: string | undefined;
|
|
152
|
-
env?: string | undefined;
|
|
153
|
-
hidden?: boolean | undefined;
|
|
154
|
-
required?: boolean | undefined;
|
|
155
|
-
dependsOn?: string[] | undefined;
|
|
156
|
-
exactlyOne?: string[] | undefined;
|
|
157
|
-
relationships?: import("@oclif/core/lib/interfaces/parser").Relationship[] | undefined;
|
|
158
|
-
deprecated?: true | import("@oclif/core/lib/interfaces").Deprecation | undefined;
|
|
159
|
-
aliases?: string[] | undefined;
|
|
160
|
-
deprecateAliases?: boolean | undefined;
|
|
91
|
+
options?: readonly string[] | undefined;
|
|
92
|
+
multiple?: boolean | undefined;
|
|
161
93
|
delimiter?: "," | undefined;
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
options?: string[] | undefined;
|
|
165
|
-
multiple: true;
|
|
166
|
-
parse: import("@oclif/core/lib/interfaces/parser").FlagParser<string | undefined, string, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
|
|
167
|
-
defaultHelp?: import("@oclif/core/lib/interfaces/parser").FlagDefaultHelp<string | undefined, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
|
|
94
|
+
parse: import("@oclif/core/lib/interfaces/parser").FlagParser<string | undefined, string, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
95
|
+
defaultHelp?: import("@oclif/core/lib/interfaces/parser").FlagDefaultHelp<string | undefined, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
168
96
|
input: string[];
|
|
169
|
-
default?: import("@oclif/core/lib/interfaces/parser").FlagDefault<
|
|
97
|
+
default?: import("@oclif/core/lib/interfaces/parser").FlagDefault<string | undefined, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
170
98
|
};
|
|
171
99
|
help: import("@oclif/core/lib/interfaces").BooleanFlag<void>;
|
|
172
100
|
};
|
|
@@ -20,42 +20,18 @@ export default class TagsCmd extends Command {
|
|
|
20
20
|
relationships?: import("@oclif/core/lib/interfaces/parser").Relationship[] | undefined;
|
|
21
21
|
deprecated?: true | import("@oclif/core/lib/interfaces").Deprecation | undefined;
|
|
22
22
|
aliases?: string[] | undefined;
|
|
23
|
+
charAliases?: (import("@oclif/core/lib/interfaces").AlphabetLowercase | import("@oclif/core/lib/interfaces").AlphabetUppercase)[] | undefined;
|
|
23
24
|
deprecateAliases?: boolean | undefined;
|
|
24
|
-
|
|
25
|
+
noCacheDefault?: boolean | undefined;
|
|
25
26
|
type: "option";
|
|
26
27
|
helpValue?: string | undefined;
|
|
27
|
-
options?: string[] | undefined;
|
|
28
|
-
multiple
|
|
29
|
-
parse: import("@oclif/core/lib/interfaces/parser").FlagParser<string | undefined, string, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
|
|
30
|
-
defaultHelp?: import("@oclif/core/lib/interfaces/parser").FlagDefaultHelp<string | undefined, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
|
|
31
|
-
input: string[];
|
|
32
|
-
default?: import("@oclif/core/lib/interfaces/parser").FlagDefault<string | undefined, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
|
|
33
|
-
} | {
|
|
34
|
-
exclusive: string[];
|
|
35
|
-
name: string;
|
|
36
|
-
char?: import("@oclif/core/lib/interfaces").AlphabetLowercase | import("@oclif/core/lib/interfaces").AlphabetUppercase | undefined;
|
|
37
|
-
summary?: string | undefined;
|
|
38
|
-
description?: string | undefined;
|
|
39
|
-
helpLabel?: string | undefined;
|
|
40
|
-
helpGroup?: string | undefined;
|
|
41
|
-
env?: string | undefined;
|
|
42
|
-
hidden?: boolean | undefined;
|
|
43
|
-
required?: boolean | undefined;
|
|
44
|
-
dependsOn?: string[] | undefined;
|
|
45
|
-
exactlyOne?: string[] | undefined;
|
|
46
|
-
relationships?: import("@oclif/core/lib/interfaces/parser").Relationship[] | undefined;
|
|
47
|
-
deprecated?: true | import("@oclif/core/lib/interfaces").Deprecation | undefined;
|
|
48
|
-
aliases?: string[] | undefined;
|
|
49
|
-
deprecateAliases?: boolean | undefined;
|
|
28
|
+
options?: readonly string[] | undefined;
|
|
29
|
+
multiple?: boolean | undefined;
|
|
50
30
|
delimiter?: "," | undefined;
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
options?: string[] | undefined;
|
|
54
|
-
multiple: true;
|
|
55
|
-
parse: import("@oclif/core/lib/interfaces/parser").FlagParser<string | undefined, string, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
|
|
56
|
-
defaultHelp?: import("@oclif/core/lib/interfaces/parser").FlagDefaultHelp<string | undefined, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
|
|
31
|
+
parse: import("@oclif/core/lib/interfaces/parser").FlagParser<string | undefined, string, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
32
|
+
defaultHelp?: import("@oclif/core/lib/interfaces/parser").FlagDefaultHelp<string | undefined, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
57
33
|
input: string[];
|
|
58
|
-
default?: import("@oclif/core/lib/interfaces/parser").FlagDefault<
|
|
34
|
+
default?: import("@oclif/core/lib/interfaces/parser").FlagDefault<string | undefined, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
59
35
|
};
|
|
60
36
|
device: {
|
|
61
37
|
exclusive: string[];
|
|
@@ -73,42 +49,18 @@ export default class TagsCmd extends Command {
|
|
|
73
49
|
relationships?: import("@oclif/core/lib/interfaces/parser").Relationship[] | undefined;
|
|
74
50
|
deprecated?: true | import("@oclif/core/lib/interfaces").Deprecation | undefined;
|
|
75
51
|
aliases?: string[] | undefined;
|
|
52
|
+
charAliases?: (import("@oclif/core/lib/interfaces").AlphabetLowercase | import("@oclif/core/lib/interfaces").AlphabetUppercase)[] | undefined;
|
|
76
53
|
deprecateAliases?: boolean | undefined;
|
|
77
|
-
|
|
54
|
+
noCacheDefault?: boolean | undefined;
|
|
78
55
|
type: "option";
|
|
79
56
|
helpValue?: string | undefined;
|
|
80
|
-
options?: string[] | undefined;
|
|
81
|
-
multiple
|
|
82
|
-
parse: import("@oclif/core/lib/interfaces/parser").FlagParser<string | undefined, string, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
|
|
83
|
-
defaultHelp?: import("@oclif/core/lib/interfaces/parser").FlagDefaultHelp<string | undefined, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
|
|
84
|
-
input: string[];
|
|
85
|
-
default?: import("@oclif/core/lib/interfaces/parser").FlagDefault<string | undefined, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
|
|
86
|
-
} | {
|
|
87
|
-
exclusive: string[];
|
|
88
|
-
name: string;
|
|
89
|
-
char?: import("@oclif/core/lib/interfaces").AlphabetLowercase | import("@oclif/core/lib/interfaces").AlphabetUppercase | undefined;
|
|
90
|
-
summary?: string | undefined;
|
|
91
|
-
description?: string | undefined;
|
|
92
|
-
helpLabel?: string | undefined;
|
|
93
|
-
helpGroup?: string | undefined;
|
|
94
|
-
env?: string | undefined;
|
|
95
|
-
hidden?: boolean | undefined;
|
|
96
|
-
required?: boolean | undefined;
|
|
97
|
-
dependsOn?: string[] | undefined;
|
|
98
|
-
exactlyOne?: string[] | undefined;
|
|
99
|
-
relationships?: import("@oclif/core/lib/interfaces/parser").Relationship[] | undefined;
|
|
100
|
-
deprecated?: true | import("@oclif/core/lib/interfaces").Deprecation | undefined;
|
|
101
|
-
aliases?: string[] | undefined;
|
|
102
|
-
deprecateAliases?: boolean | undefined;
|
|
57
|
+
options?: readonly string[] | undefined;
|
|
58
|
+
multiple?: boolean | undefined;
|
|
103
59
|
delimiter?: "," | undefined;
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
options?: string[] | undefined;
|
|
107
|
-
multiple: true;
|
|
108
|
-
parse: import("@oclif/core/lib/interfaces/parser").FlagParser<string | undefined, string, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
|
|
109
|
-
defaultHelp?: import("@oclif/core/lib/interfaces/parser").FlagDefaultHelp<string | undefined, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
|
|
60
|
+
parse: import("@oclif/core/lib/interfaces/parser").FlagParser<string | undefined, string, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
61
|
+
defaultHelp?: import("@oclif/core/lib/interfaces/parser").FlagDefaultHelp<string | undefined, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
110
62
|
input: string[];
|
|
111
|
-
default?: import("@oclif/core/lib/interfaces/parser").FlagDefault<
|
|
63
|
+
default?: import("@oclif/core/lib/interfaces/parser").FlagDefault<string | undefined, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
112
64
|
};
|
|
113
65
|
release: {
|
|
114
66
|
exclusive: string[];
|
|
@@ -126,42 +78,18 @@ export default class TagsCmd extends Command {
|
|
|
126
78
|
relationships?: import("@oclif/core/lib/interfaces/parser").Relationship[] | undefined;
|
|
127
79
|
deprecated?: true | import("@oclif/core/lib/interfaces").Deprecation | undefined;
|
|
128
80
|
aliases?: string[] | undefined;
|
|
81
|
+
charAliases?: (import("@oclif/core/lib/interfaces").AlphabetLowercase | import("@oclif/core/lib/interfaces").AlphabetUppercase)[] | undefined;
|
|
129
82
|
deprecateAliases?: boolean | undefined;
|
|
130
|
-
|
|
83
|
+
noCacheDefault?: boolean | undefined;
|
|
131
84
|
type: "option";
|
|
132
85
|
helpValue?: string | undefined;
|
|
133
|
-
options?: string[] | undefined;
|
|
134
|
-
multiple
|
|
135
|
-
parse: import("@oclif/core/lib/interfaces/parser").FlagParser<string | undefined, string, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
|
|
136
|
-
defaultHelp?: import("@oclif/core/lib/interfaces/parser").FlagDefaultHelp<string | undefined, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
|
|
137
|
-
input: string[];
|
|
138
|
-
default?: import("@oclif/core/lib/interfaces/parser").FlagDefault<string | undefined, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
|
|
139
|
-
} | {
|
|
140
|
-
exclusive: string[];
|
|
141
|
-
name: string;
|
|
142
|
-
char?: import("@oclif/core/lib/interfaces").AlphabetLowercase | import("@oclif/core/lib/interfaces").AlphabetUppercase | undefined;
|
|
143
|
-
summary?: string | undefined;
|
|
144
|
-
description?: string | undefined;
|
|
145
|
-
helpLabel?: string | undefined;
|
|
146
|
-
helpGroup?: string | undefined;
|
|
147
|
-
env?: string | undefined;
|
|
148
|
-
hidden?: boolean | undefined;
|
|
149
|
-
required?: boolean | undefined;
|
|
150
|
-
dependsOn?: string[] | undefined;
|
|
151
|
-
exactlyOne?: string[] | undefined;
|
|
152
|
-
relationships?: import("@oclif/core/lib/interfaces/parser").Relationship[] | undefined;
|
|
153
|
-
deprecated?: true | import("@oclif/core/lib/interfaces").Deprecation | undefined;
|
|
154
|
-
aliases?: string[] | undefined;
|
|
155
|
-
deprecateAliases?: boolean | undefined;
|
|
86
|
+
options?: readonly string[] | undefined;
|
|
87
|
+
multiple?: boolean | undefined;
|
|
156
88
|
delimiter?: "," | undefined;
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
options?: string[] | undefined;
|
|
160
|
-
multiple: true;
|
|
161
|
-
parse: import("@oclif/core/lib/interfaces/parser").FlagParser<string | undefined, string, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
|
|
162
|
-
defaultHelp?: import("@oclif/core/lib/interfaces/parser").FlagDefaultHelp<string | undefined, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
|
|
89
|
+
parse: import("@oclif/core/lib/interfaces/parser").FlagParser<string | undefined, string, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
90
|
+
defaultHelp?: import("@oclif/core/lib/interfaces/parser").FlagDefaultHelp<string | undefined, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
163
91
|
input: string[];
|
|
164
|
-
default?: import("@oclif/core/lib/interfaces/parser").FlagDefault<
|
|
92
|
+
default?: import("@oclif/core/lib/interfaces/parser").FlagDefault<string | undefined, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
165
93
|
};
|
|
166
94
|
help: import("@oclif/core/lib/interfaces").BooleanFlag<void>;
|
|
167
95
|
};
|
|
@@ -3,11 +3,11 @@ export default class TunnelCmd extends Command {
|
|
|
3
3
|
static description: string;
|
|
4
4
|
static examples: string[];
|
|
5
5
|
static args: {
|
|
6
|
-
deviceOrFleet: import("@oclif/core/lib/interfaces
|
|
6
|
+
deviceOrFleet: import("@oclif/core/lib/interfaces").Arg<string, Record<string, unknown>>;
|
|
7
7
|
};
|
|
8
8
|
static usage: string;
|
|
9
9
|
static flags: {
|
|
10
|
-
port: import("@oclif/core/lib/interfaces").OptionFlag<string[] | undefined, import("@oclif/core/lib/interfaces
|
|
10
|
+
port: import("@oclif/core/lib/interfaces").OptionFlag<string[] | undefined, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
11
11
|
help: import("@oclif/core/lib/interfaces").BooleanFlag<void>;
|
|
12
12
|
};
|
|
13
13
|
static primary: boolean;
|
package/build/help.js
CHANGED
|
@@ -48,7 +48,7 @@ class BalenaHelp extends core_1.Help {
|
|
|
48
48
|
}
|
|
49
49
|
const command = this.config.findCommand(subject);
|
|
50
50
|
if (command) {
|
|
51
|
-
await this.showCommandHelp(
|
|
51
|
+
await this.showCommandHelp(command);
|
|
52
52
|
return;
|
|
53
53
|
}
|
|
54
54
|
const topicCommands = await Promise.all(this.config.commands
|
package/build/help.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"help.js","sourceRoot":"","sources":["../lib/help.ts"],"names":[],"mappings":";;AAgBA,sCAAmC;AACnC,wCAAwC;AACxC,uCAAwC;AAKxC,SAAS,cAAc,CAAC,IAAc;IACrC,KAAK,MAAM,GAAG,IAAI,IAAI,EAAE;QACvB,IAAI,GAAG,KAAK,IAAI,EAAE;YACjB,OAAO;SACP;QACD,IAAI,GAAG,KAAK,MAAM,IAAI,GAAG,KAAK,QAAQ,IAAI,GAAG,KAAK,IAAI,EAAE;YACvD,SAAS;SACT;QACD,IAAI,GAAG,CAAC,UAAU,CAAC,GAAG,CAAC,EAAE;YACxB,OAAO;SACP;QACD,OAAO,GAAG,CAAC;KACX;AACF,CAAC;AAED,MAAqB,UAAW,SAAQ,WAAI;IAA5C;;QAwLU,kCAA6B,GAAG;YACxC,OAAO;YACP,MAAM;YACN,MAAM;YACN,KAAK;YACL,QAAQ;YACR,OAAO;YACP,SAAS;YACT,QAAQ;YACR,QAAQ;YACR,SAAS;YACT,OAAO;YACP,QAAQ;YACR,MAAM;YACN,OAAO;YACP,MAAM;SACN,CAAC;IACH,CAAC;IAtMO,KAAK,CAAC,QAAQ,CAAC,IAAc;QACnC,MAAM,KAAK,GAAG,IAAA,eAAQ,GAAE,CAAC;QACzB,MAAM,OAAO,GAAG,cAAc,CAAC,IAAI,CAAC,CAAC;QACrC,IAAI,CAAC,OAAO,EAAE;YACb,MAAM,OAAO,GAAG,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,IAAI,IAAI,CAAC,QAAQ,CAAC,WAAW,CAAC,CAAC;YAClE,OAAO,CAAC,GAAG,CAAC,IAAI,CAAC,iBAAiB,CAAC,OAAO,CAAC,CAAC,CAAC;YAC7C,OAAO;SACP;QAED,MAAM,OAAO,GAAG,IAAI,CAAC,MAAM,CAAC,WAAW,CAAC,OAAO,CAAC,CAAC;QACjD,IAAI,OAAO,EAAE;YACZ,MAAM,IAAI,CAAC,eAAe,CAAC,
|
|
1
|
+
{"version":3,"file":"help.js","sourceRoot":"","sources":["../lib/help.ts"],"names":[],"mappings":"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"}
|
package/build/preparser.d.ts
CHANGED
|
@@ -1,7 +1,10 @@
|
|
|
1
|
+
import type { Interfaces } from '@oclif/core';
|
|
1
2
|
export declare let unsupportedFlag: boolean;
|
|
2
3
|
export interface AppOptions {
|
|
3
4
|
noFlush?: boolean;
|
|
4
|
-
|
|
5
|
+
development?: boolean;
|
|
6
|
+
dir: string;
|
|
7
|
+
loadOptions?: Interfaces.LoadOptions;
|
|
5
8
|
}
|
|
6
9
|
export declare function preparseArgs(argv: string[]): Promise<string[]>;
|
|
7
10
|
export declare function checkDeletedCommand(argvSlice: string[]): void;
|
package/build/preparser.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"preparser.js","sourceRoot":"","sources":["../lib/preparser.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"preparser.js","sourceRoot":"","sources":["../lib/preparser.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const fleetRequired: import("@oclif/core/lib/interfaces
|
|
1
|
+
export declare const fleetRequired: import("@oclif/core/lib/interfaces").Arg<string, Record<string, unknown>>;
|