@@ -100,7 +100,8 @@ Fetch the specified log or given number of most recent logs from the org.
100100
101101```
102102USAGE
103- $ sf apex get log -o <value> [--json] [--api-version <value>] [-i <value>] [-n <value>] [-d <value>]
103+ $ sf apex get log -o <value> [--json] [--flags-dir <value>] [--api-version <value>] [-i <value>] [-n <value>]
104+ [-d <value>]
104105
105106FLAGS
106107 -d, --output-dir=<value> Directory for saving the log files.
@@ -111,7 +112,8 @@ FLAGS
111112 --api-version=<value> Override the api version used for api requests made by this command
112113
113114GLOBAL FLAGS
114- --json Format output as json.
115+ --flags-dir=<value> Import flag values from a directory.
116+ --json Format output as json.
115117
116118DESCRIPTION
117119 Fetch the specified log or given number of most recent logs from the org.
@@ -146,16 +148,16 @@ FLAG DESCRIPTIONS
146148 directory.
147149```
148150
149- _ See code: [ src/commands/apex/get/log.ts] ( https://github.com/salesforcecli/plugin-apex/blob/3.0.31 /src/commands/apex/get/log.ts ) _
151+ _ See code: [ src/commands/apex/get/log.ts] ( https://github.com/salesforcecli/plugin-apex/blob/3.1.0 /src/commands/apex/get/log.ts ) _
150152
151153## ` sf apex get test `
152154
153155Display test results for a specific asynchronous test run.
154156
155157```
156158USAGE
157- $ sf apex get test -o <value> -i <value> [--json] [--api-version <value>] [-c] [-d <value>] [-r
158- human|tap|junit|json]
159+ $ sf apex get test -o <value> -i <value> [--json] [--flags-dir <value>] [-- api-version <value>] [-c] [-d <value>]
160+ [-r human|tap|junit|json]
159161
160162FLAGS
161163 -c, --code-coverage Retrieve code coverage results.
@@ -168,7 +170,8 @@ FLAGS
168170 --api-version=<value> Override the api version used for api requests made by this command
169171
170172GLOBAL FLAGS
171- --json Format output as json.
173+ --flags-dir=<value> Import flag values from a directory.
174+ --json Format output as json.
172175
173176DESCRIPTION
174177 Display test results for a specific asynchronous test run.
@@ -199,23 +202,24 @@ EXAMPLES
199202 me@myorg',
200203```
201204
202- _ See code: [ src/commands/apex/get/test.ts] ( https://github.com/salesforcecli/plugin-apex/blob/3.0.31 /src/commands/apex/get/test.ts ) _
205+ _ See code: [ src/commands/apex/get/test.ts] ( https://github.com/salesforcecli/plugin-apex/blob/3.1.0 /src/commands/apex/get/test.ts ) _
203206
204207## ` sf apex list log `
205208
206209Display a list of IDs and general information about debug logs.
207210
208211```
209212USAGE
210- $ sf apex list log -o <value> [--json] [--api-version <value>]
213+ $ sf apex list log -o <value> [--json] [--flags-dir <value>] [-- api-version <value>]
211214
212215FLAGS
213216 -o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
214217 configuration variable is already set.
215218 --api-version=<value> Override the api version used for api requests made by this command
216219
217220GLOBAL FLAGS
218- --json Format output as json.
221+ --flags-dir=<value> Import flag values from a directory.
222+ --json Format output as json.
219223
220224DESCRIPTION
221225 Display a list of IDs and general information about debug logs.
@@ -238,15 +242,15 @@ EXAMPLES
238242 $ sf apex list log --target-org [email protected] 239243```
240244
241- _ See code: [ src/commands/apex/list/log.ts] ( https://github.com/salesforcecli/plugin-apex/blob/3.0.31 /src/commands/apex/list/log.ts ) _
245+ _ See code: [ src/commands/apex/list/log.ts] ( https://github.com/salesforcecli/plugin-apex/blob/3.1.0 /src/commands/apex/list/log.ts ) _
242246
243247## ` sf apex run `
244248
245249Execute anonymous Apex code entered on the command line or from a local file.
246250
247251```
248252USAGE
249- $ sf apex run -o <value> [--json] [--api-version <value>] [-f <value>]
253+ $ sf apex run -o <value> [--json] [--flags-dir <value>] [-- api-version <value>] [-f <value>]
250254
251255FLAGS
252256 -f, --file=<value> Path to a local file that contains Apex code.
@@ -255,7 +259,8 @@ FLAGS
255259 --api-version=<value> Override the api version used for api requests made by this command
256260
257261GLOBAL FLAGS
258- --json Format output as json.
262+ --flags-dir=<value> Import flag values from a directory.
263+ --json Format output as json.
259264
260265DESCRIPTION
261266 Execute anonymous Apex code entered on the command line or from a local file.
@@ -284,15 +289,15 @@ EXAMPLES
284289 $ sf apex run
285290```
286291
287- _ See code: [ src/commands/apex/run.ts] ( https://github.com/salesforcecli/plugin-apex/blob/3.0.31 /src/commands/apex/run.ts ) _
292+ _ See code: [ src/commands/apex/run.ts] ( https://github.com/salesforcecli/plugin-apex/blob/3.1.0 /src/commands/apex/run.ts ) _
288293
289294## ` sf apex run test `
290295
291296Invoke Apex tests in an org.
292297
293298```
294299USAGE
295- $ sf apex run test -o <value> [--json] [--api-version <value>] [-d <value>] [-l
300+ $ sf apex run test -o <value> [--json] [--flags-dir <value>] [-- api-version <value>] [-d <value>] [-l
296301 RunLocalTests|RunAllTestsInOrg|RunSpecifiedTests] [-n <value> | -s <value> | -t <value>] [-r human|tap|junit|json]
297302 [-w <value>] [-y] [-v -c]
298303
@@ -317,7 +322,8 @@ FLAGS
317322 --api-version=<value> Override the api version used for api requests made by this command
318323
319324GLOBAL FLAGS
320- --json Format output as json.
325+ --flags-dir=<value> Import flag values from a directory.
326+ --json Format output as json.
321327
322328DESCRIPTION
323329 Invoke Apex tests in an org.
@@ -391,15 +397,15 @@ FLAG DESCRIPTIONS
391397 --tests Test1 --tests Test2
392398```
393399
394- _ See code: [ src/commands/apex/run/test.ts] ( https://github.com/salesforcecli/plugin-apex/blob/3.0.31 /src/commands/apex/run/test.ts ) _
400+ _ See code: [ src/commands/apex/run/test.ts] ( https://github.com/salesforcecli/plugin-apex/blob/3.1.0 /src/commands/apex/run/test.ts ) _
395401
396402## ` sf apex tail log `
397403
398404Activate debug logging and display logs in the terminal.
399405
400406```
401407USAGE
402- $ sf apex tail log -o <value> [--api-version <value>] [-c] [-d <value> | -s]
408+ $ sf apex tail log -o <value> [--flags-dir <value>] [-- api-version <value>] [-c] [-d <value> | -s]
403409
404410FLAGS
405411 -c, --color Apply default colors to noteworthy log lines.
@@ -409,6 +415,9 @@ FLAGS
409415 -s, --skip-trace-flag Skip trace flag setup. Assumes that a trace flag and debug level are fully set up.
410416 --api-version=<value> Override the api version used for api requests made by this command
411417
418+ GLOBAL FLAGS
419+ --flags-dir=<value> Import flag values from a directory.
420+
412421DESCRIPTION
413422 Activate debug logging and display logs in the terminal.
414423
@@ -431,6 +440,6 @@ EXAMPLES
431440 $ sf apex tail log --color --skip-trace-flag
432441```
433442
434- _ See code: [ src/commands/apex/tail/log.ts] ( https://github.com/salesforcecli/plugin-apex/blob/3.0.31 /src/commands/apex/tail/log.ts ) _
443+ _ See code: [ src/commands/apex/tail/log.ts] ( https://github.com/salesforcecli/plugin-apex/blob/3.1.0 /src/commands/apex/tail/log.ts ) _
435444
436445<!-- commandsstop -->
0 commit comments