@salesforce/plugin-apex 3.0.4 → 3.0.6
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/README.md +20 -23
- package/lib/commands/apex/tail/log.d.ts +1 -0
- package/lib/commands/apex/tail/log.js +3 -10
- package/lib/commands/apex/tail/log.js.map +1 -1
- package/oclif.lock +20 -20
- package/oclif.manifest.json +2 -9
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -103,11 +103,11 @@ USAGE
|
|
|
103
103
|
$ sf apex get log -o <value> [--json] [--api-version <value>] [-i <value>] [-n <value>] [-d <value>]
|
|
104
104
|
|
|
105
105
|
FLAGS
|
|
106
|
-
-d, --output-dir=<value>
|
|
107
|
-
-i, --log-id=<value>
|
|
108
|
-
-n, --number=<value>
|
|
109
|
-
-o, --target-org=<value>
|
|
110
|
-
|
|
106
|
+
-d, --output-dir=<value> Directory for saving the log files.
|
|
107
|
+
-i, --log-id=<value> ID of the specific log to display.
|
|
108
|
+
-n, --number=<value> Number of the most recent logs to display.
|
|
109
|
+
-o, --target-org=<value> (required) Username or alias of the target org.
|
|
110
|
+
--api-version=<value> Override the api version used for api requests made by this command
|
|
111
111
|
|
|
112
112
|
GLOBAL FLAGS
|
|
113
113
|
--json Format output as json.
|
|
@@ -145,7 +145,7 @@ FLAG DESCRIPTIONS
|
|
|
145
145
|
directory.
|
|
146
146
|
```
|
|
147
147
|
|
|
148
|
-
_See code: [src/commands/apex/get/log.ts](https://github.com/salesforcecli/plugin-apex/blob/3.0.
|
|
148
|
+
_See code: [src/commands/apex/get/log.ts](https://github.com/salesforcecli/plugin-apex/blob/3.0.6/src/commands/apex/get/log.ts)_
|
|
149
149
|
|
|
150
150
|
## `sf apex get test`
|
|
151
151
|
|
|
@@ -163,7 +163,7 @@ FLAGS
|
|
|
163
163
|
-o, --target-org=<value> (required) Username or alias of the target org.
|
|
164
164
|
-r, --result-format=<option> [default: human] Format of the results.
|
|
165
165
|
<options: human|tap|junit|json>
|
|
166
|
-
|
|
166
|
+
--api-version=<value> Override the api version used for api requests made by this command
|
|
167
167
|
|
|
168
168
|
GLOBAL FLAGS
|
|
169
169
|
--json Format output as json.
|
|
@@ -197,7 +197,7 @@ EXAMPLES
|
|
|
197
197
|
me@myorg',
|
|
198
198
|
```
|
|
199
199
|
|
|
200
|
-
_See code: [src/commands/apex/get/test.ts](https://github.com/salesforcecli/plugin-apex/blob/3.0.
|
|
200
|
+
_See code: [src/commands/apex/get/test.ts](https://github.com/salesforcecli/plugin-apex/blob/3.0.6/src/commands/apex/get/test.ts)_
|
|
201
201
|
|
|
202
202
|
## `sf apex list log`
|
|
203
203
|
|
|
@@ -208,8 +208,8 @@ USAGE
|
|
|
208
208
|
$ sf apex list log -o <value> [--json] [--api-version <value>]
|
|
209
209
|
|
|
210
210
|
FLAGS
|
|
211
|
-
-o, --target-org=<value>
|
|
212
|
-
|
|
211
|
+
-o, --target-org=<value> (required) Username or alias of the target org.
|
|
212
|
+
--api-version=<value> Override the api version used for api requests made by this command
|
|
213
213
|
|
|
214
214
|
GLOBAL FLAGS
|
|
215
215
|
--json Format output as json.
|
|
@@ -235,7 +235,7 @@ EXAMPLES
|
|
|
235
235
|
$ sf apex list log --target-org me@my.org
|
|
236
236
|
```
|
|
237
237
|
|
|
238
|
-
_See code: [src/commands/apex/list/log.ts](https://github.com/salesforcecli/plugin-apex/blob/3.0.
|
|
238
|
+
_See code: [src/commands/apex/list/log.ts](https://github.com/salesforcecli/plugin-apex/blob/3.0.6/src/commands/apex/list/log.ts)_
|
|
239
239
|
|
|
240
240
|
## `sf apex run`
|
|
241
241
|
|
|
@@ -246,9 +246,9 @@ USAGE
|
|
|
246
246
|
$ sf apex run -o <value> [--json] [--api-version <value>] [-f <value>]
|
|
247
247
|
|
|
248
248
|
FLAGS
|
|
249
|
-
-f, --file=<value>
|
|
250
|
-
-o, --target-org=<value>
|
|
251
|
-
|
|
249
|
+
-f, --file=<value> Path to a local file that contains Apex code.
|
|
250
|
+
-o, --target-org=<value> (required) Username or alias of the target org.
|
|
251
|
+
--api-version=<value> Override the api version used for api requests made by this command
|
|
252
252
|
|
|
253
253
|
GLOBAL FLAGS
|
|
254
254
|
--json Format output as json.
|
|
@@ -280,7 +280,7 @@ EXAMPLES
|
|
|
280
280
|
$ sf apex run
|
|
281
281
|
```
|
|
282
282
|
|
|
283
|
-
_See code: [src/commands/apex/run.ts](https://github.com/salesforcecli/plugin-apex/blob/3.0.
|
|
283
|
+
_See code: [src/commands/apex/run.ts](https://github.com/salesforcecli/plugin-apex/blob/3.0.6/src/commands/apex/run.ts)_
|
|
284
284
|
|
|
285
285
|
## `sf apex run test`
|
|
286
286
|
|
|
@@ -309,7 +309,7 @@ FLAGS
|
|
|
309
309
|
timeouts occur frequently.
|
|
310
310
|
-y, --synchronous Runs test methods from a single Apex class synchronously; if not specified, tests are
|
|
311
311
|
run asynchronously.
|
|
312
|
-
|
|
312
|
+
--api-version=<value> Override the api version used for api requests made by this command
|
|
313
313
|
|
|
314
314
|
GLOBAL FLAGS
|
|
315
315
|
--json Format output as json.
|
|
@@ -386,7 +386,7 @@ FLAG DESCRIPTIONS
|
|
|
386
386
|
--tests Test1 --tests Test2
|
|
387
387
|
```
|
|
388
388
|
|
|
389
|
-
_See code: [src/commands/apex/run/test.ts](https://github.com/salesforcecli/plugin-apex/blob/3.0.
|
|
389
|
+
_See code: [src/commands/apex/run/test.ts](https://github.com/salesforcecli/plugin-apex/blob/3.0.6/src/commands/apex/run/test.ts)_
|
|
390
390
|
|
|
391
391
|
## `sf apex tail log`
|
|
392
392
|
|
|
@@ -394,17 +394,14 @@ Activate debug logging and display logs in the terminal.
|
|
|
394
394
|
|
|
395
395
|
```
|
|
396
396
|
USAGE
|
|
397
|
-
$ sf apex tail log -o <value> [--
|
|
397
|
+
$ sf apex tail log -o <value> [--api-version <value>] [-c] [-d <value> | -s]
|
|
398
398
|
|
|
399
399
|
FLAGS
|
|
400
400
|
-c, --color Apply default colors to noteworthy log lines.
|
|
401
401
|
-d, --debug-level=<value> Debug level to set on the DEVELOPER_LOG trace flag for your user.
|
|
402
402
|
-o, --target-org=<value> (required) Username or alias of the target org.
|
|
403
403
|
-s, --skip-trace-flag Skip trace flag setup. Assumes that a trace flag and debug level are fully set up.
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
GLOBAL FLAGS
|
|
407
|
-
--json Format output as json.
|
|
404
|
+
--api-version=<value> Override the api version used for api requests made by this command
|
|
408
405
|
|
|
409
406
|
DESCRIPTION
|
|
410
407
|
Activate debug logging and display logs in the terminal.
|
|
@@ -428,6 +425,6 @@ EXAMPLES
|
|
|
428
425
|
$ sf apex tail log --color --skip-trace-flag
|
|
429
426
|
```
|
|
430
427
|
|
|
431
|
-
_See code: [src/commands/apex/tail/log.ts](https://github.com/salesforcecli/plugin-apex/blob/3.0.
|
|
428
|
+
_See code: [src/commands/apex/tail/log.ts](https://github.com/salesforcecli/plugin-apex/blob/3.0.6/src/commands/apex/tail/log.ts)_
|
|
432
429
|
|
|
433
430
|
<!-- commandsstop -->
|
|
@@ -5,6 +5,7 @@ export default class Log extends SfCommand<void> {
|
|
|
5
5
|
static readonly examples: string[];
|
|
6
6
|
static readonly deprecateAliases = true;
|
|
7
7
|
static readonly aliases: string[];
|
|
8
|
+
static readonly enableJsonFlag = false;
|
|
8
9
|
static readonly flags: {
|
|
9
10
|
'target-org': import("@oclif/core/lib/interfaces/parser.js").OptionFlag<import("@salesforce/core").Org, import("@oclif/core/lib/interfaces/parser.js").CustomOptions>;
|
|
10
11
|
'api-version': import("@oclif/core/lib/interfaces/parser.js").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces/parser.js").CustomOptions>;
|
|
@@ -18,6 +18,7 @@ export default class Log extends SfCommand {
|
|
|
18
18
|
static examples = messages.getMessages('examples');
|
|
19
19
|
static deprecateAliases = true;
|
|
20
20
|
static aliases = ['force:apex:log:tail'];
|
|
21
|
+
static enableJsonFlag = false;
|
|
21
22
|
static flags = {
|
|
22
23
|
'target-org': requiredOrgFlagWithDeprecations,
|
|
23
24
|
'api-version': orgApiVersionFlagWithDeprecations,
|
|
@@ -55,16 +56,8 @@ export default class Log extends SfCommand {
|
|
|
55
56
|
}
|
|
56
57
|
async logTailer(fullLog) {
|
|
57
58
|
if (fullLog) {
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
status: process.exitCode,
|
|
61
|
-
result: fullLog,
|
|
62
|
-
});
|
|
63
|
-
}
|
|
64
|
-
else {
|
|
65
|
-
const output = this.color ? await colorizeLog(fullLog) : fullLog;
|
|
66
|
-
this.log(output);
|
|
67
|
-
}
|
|
59
|
+
const output = this.color ? await colorizeLog(fullLog) : fullLog;
|
|
60
|
+
this.log(output);
|
|
68
61
|
}
|
|
69
62
|
}
|
|
70
63
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"log.js","sourceRoot":"","sources":["../../../../src/commands/apex/tail/log.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AACpC,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AACzC,OAAO,EAAE,UAAU,EAAE,MAAM,uBAAuB,CAAC;AACnD,OAAO,EACL,KAAK,EACL,SAAS,EACT,+BAA+B,EAC/B,iCAAiC,EACjC,QAAQ,GACT,MAAM,6BAA6B,CAAC;AACrC,OAAO,EAAc,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AACxD,OAAO,EAAE,WAAW,EAAE,MAAM,gCAAgC,CAAC;AAE7D,QAAQ,CAAC,uBAAuB,CAAC,OAAO,CAAC,aAAa,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;AAC1E,MAAM,QAAQ,GAAG,QAAQ,CAAC,YAAY,CAAC,yBAAyB,EAAE,MAAM,CAAC,CAAC;AAE1E,MAAM,CAAC,OAAO,OAAO,GAAI,SAAQ,SAAe;IACvC,MAAM,CAAU,OAAO,GAAG,QAAQ,CAAC,UAAU,CAAC,SAAS,CAAC,CAAC;IACzD,MAAM,CAAU,WAAW,GAAG,QAAQ,CAAC,UAAU,CAAC,aAAa,CAAC,CAAC;IACjE,MAAM,CAAU,QAAQ,GAAG,QAAQ,CAAC,WAAW,CAAC,UAAU,CAAC,CAAC;IAC5D,MAAM,CAAU,gBAAgB,GAAG,IAAI,CAAC;IACxC,MAAM,CAAU,OAAO,GAAG,CAAC,qBAAqB,CAAC,CAAC;
|
|
1
|
+
{"version":3,"file":"log.js","sourceRoot":"","sources":["../../../../src/commands/apex/tail/log.ts"],"names":[],"mappings":"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"}
|
package/oclif.lock
CHANGED
|
@@ -768,10 +768,10 @@
|
|
|
768
768
|
wordwrap "^1.0.0"
|
|
769
769
|
wrap-ansi "^7.0.0"
|
|
770
770
|
|
|
771
|
-
"@oclif/core@^3.0.0", "@oclif/core@^3.0.4", "@oclif/core@^3.10.8", "@oclif/core@^3.3.1":
|
|
772
|
-
version "3.
|
|
773
|
-
resolved "https://registry.yarnpkg.com/@oclif/core/-/core-3.
|
|
774
|
-
integrity sha512-
|
|
771
|
+
"@oclif/core@^3.0.0", "@oclif/core@^3.0.4", "@oclif/core@^3.10.8", "@oclif/core@^3.11.0", "@oclif/core@^3.3.1":
|
|
772
|
+
version "3.11.0"
|
|
773
|
+
resolved "https://registry.yarnpkg.com/@oclif/core/-/core-3.11.0.tgz#dadfac39238af3b717e33b910dde1f1f0fd2105e"
|
|
774
|
+
integrity sha512-9A2LhDQATf1vrRqPoO0gGuBrey0jt3kDafC+eazxTNWV2EvlEpgY2587iyrxPK/fL2xg7f+0mtxYaSHdO2k8eg==
|
|
775
775
|
dependencies:
|
|
776
776
|
ansi-escapes "^4.3.2"
|
|
777
777
|
ansi-styles "^4.3.0"
|
|
@@ -961,15 +961,15 @@
|
|
|
961
961
|
istanbul-lib-report "^3.0.1"
|
|
962
962
|
istanbul-reports "^3.1.6"
|
|
963
963
|
|
|
964
|
-
"@salesforce/cli-plugins-testkit@^5.0.
|
|
965
|
-
version "5.0.
|
|
966
|
-
resolved "https://registry.yarnpkg.com/@salesforce/cli-plugins-testkit/-/cli-plugins-testkit-5.0.
|
|
967
|
-
integrity sha512-
|
|
964
|
+
"@salesforce/cli-plugins-testkit@^5.0.4":
|
|
965
|
+
version "5.0.4"
|
|
966
|
+
resolved "https://registry.yarnpkg.com/@salesforce/cli-plugins-testkit/-/cli-plugins-testkit-5.0.4.tgz#523c459f43822d7b24bff5117aeda7f77ed5e26c"
|
|
967
|
+
integrity sha512-8pquViVBCd5sF6nBXgLgwymEBE6pSAS376R9qq7rxuV+PSFCC5bnzQaKm2ugY+s5vXKNcV6WcmBHNCQnGv+M7Q==
|
|
968
968
|
dependencies:
|
|
969
|
-
"@salesforce/core" "^5.3.
|
|
969
|
+
"@salesforce/core" "^5.3.20"
|
|
970
970
|
"@salesforce/kit" "^3.0.15"
|
|
971
971
|
"@salesforce/ts-types" "^2.0.6"
|
|
972
|
-
"@types/shelljs" "^0.8.
|
|
972
|
+
"@types/shelljs" "^0.8.15"
|
|
973
973
|
debug "^4.3.1"
|
|
974
974
|
jszip "^3.10.1"
|
|
975
975
|
shelljs "^0.8.4"
|
|
@@ -1080,10 +1080,10 @@
|
|
|
1080
1080
|
chalk "^4"
|
|
1081
1081
|
inquirer "^8.2.5"
|
|
1082
1082
|
|
|
1083
|
-
"@salesforce/sf-plugins-core@^4.1.
|
|
1084
|
-
version "4.1.
|
|
1085
|
-
resolved "https://registry.yarnpkg.com/@salesforce/sf-plugins-core/-/sf-plugins-core-4.1.
|
|
1086
|
-
integrity sha512-
|
|
1083
|
+
"@salesforce/sf-plugins-core@^4.1.2":
|
|
1084
|
+
version "4.1.2"
|
|
1085
|
+
resolved "https://registry.yarnpkg.com/@salesforce/sf-plugins-core/-/sf-plugins-core-4.1.2.tgz#0e03ca012828de8dc30ffccd7ca289c6aa703a2d"
|
|
1086
|
+
integrity sha512-mjb9mLyfLos4Y+/qhko2mrKgwxMzWipAnR/Inuu9cuw4dK9sCgHl79t4zU+6FyNT2T14Q9md/hDXN5QNg0eGJA==
|
|
1087
1087
|
dependencies:
|
|
1088
1088
|
"@oclif/core" "^3.0.0"
|
|
1089
1089
|
"@salesforce/core" "^5.3.1"
|
|
@@ -1391,7 +1391,7 @@
|
|
|
1391
1391
|
resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.5.5.tgz#deed5ab7019756c9c90ea86139106b0346223f35"
|
|
1392
1392
|
integrity sha512-+d+WYC1BxJ6yVOgUgzK8gWvp5qF8ssV5r4nsDcZWKRWcDQLQ619tvWAxJQYGgBrO1MnLJC7a5GtiYsAoQ47dJg==
|
|
1393
1393
|
|
|
1394
|
-
"@types/shelljs@^0.8.
|
|
1394
|
+
"@types/shelljs@^0.8.15":
|
|
1395
1395
|
version "0.8.15"
|
|
1396
1396
|
resolved "https://registry.yarnpkg.com/@types/shelljs/-/shelljs-0.8.15.tgz#22c6ab9dfe05cec57d8e6cb1a95ea173aee9fcac"
|
|
1397
1397
|
integrity sha512-vzmnCHl6hViPu9GNLQJ+DZFd6BQI2DBTUeOvYHqkWQLMfKAAQYMb/xAmZkTogZI/vqXHCWkqDRymDI5p0QTi5Q==
|
|
@@ -3071,12 +3071,12 @@ eslint-plugin-perfectionist@^2.1.0:
|
|
|
3071
3071
|
minimatch "^9.0.3"
|
|
3072
3072
|
natural-compare-lite "^1.4.0"
|
|
3073
3073
|
|
|
3074
|
-
eslint-plugin-sf-plugin@^1.16.
|
|
3075
|
-
version "1.16.
|
|
3076
|
-
resolved "https://registry.yarnpkg.com/eslint-plugin-sf-plugin/-/eslint-plugin-sf-plugin-1.16.
|
|
3077
|
-
integrity sha512-
|
|
3074
|
+
eslint-plugin-sf-plugin@^1.16.15:
|
|
3075
|
+
version "1.16.15"
|
|
3076
|
+
resolved "https://registry.yarnpkg.com/eslint-plugin-sf-plugin/-/eslint-plugin-sf-plugin-1.16.15.tgz#99d0b522bb7eebefc8e456aa4b725f6fbbf2fa01"
|
|
3077
|
+
integrity sha512-Vog0xc8DwLOCoPbwFx9GxaXHqpG0FvlpITkGzp//SdjcV7wqVW4CT76JES8IGenGv6mAecW5VqSyQzsIHFZGew==
|
|
3078
3078
|
dependencies:
|
|
3079
|
-
"@salesforce/core" "^5.3.
|
|
3079
|
+
"@salesforce/core" "^5.3.20"
|
|
3080
3080
|
"@typescript-eslint/utils" "^5.59.11"
|
|
3081
3081
|
|
|
3082
3082
|
eslint-plugin-unicorn@^49.0.0:
|
package/oclif.manifest.json
CHANGED
|
@@ -785,13 +785,6 @@
|
|
|
785
785
|
"Skip the trace flag setup and apply default colors:\n<%= config.bin %> <%= command.id %> --color --skip-trace-flag"
|
|
786
786
|
],
|
|
787
787
|
"flags": {
|
|
788
|
-
"json": {
|
|
789
|
-
"description": "Format output as json.",
|
|
790
|
-
"helpGroup": "GLOBAL",
|
|
791
|
-
"name": "json",
|
|
792
|
-
"allowNo": false,
|
|
793
|
-
"type": "boolean"
|
|
794
|
-
},
|
|
795
788
|
"target-org": {
|
|
796
789
|
"aliases": [
|
|
797
790
|
"targetusername",
|
|
@@ -870,7 +863,7 @@
|
|
|
870
863
|
"pluginType": "core",
|
|
871
864
|
"strict": true,
|
|
872
865
|
"summary": "Activate debug logging and display logs in the terminal.",
|
|
873
|
-
"enableJsonFlag":
|
|
866
|
+
"enableJsonFlag": false,
|
|
874
867
|
"SF_ENV": "SF_ENV",
|
|
875
868
|
"isESM": true,
|
|
876
869
|
"relativePath": [
|
|
@@ -916,5 +909,5 @@
|
|
|
916
909
|
]
|
|
917
910
|
}
|
|
918
911
|
},
|
|
919
|
-
"version": "3.0.
|
|
912
|
+
"version": "3.0.6"
|
|
920
913
|
}
|
package/package.json
CHANGED
|
@@ -1,25 +1,25 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/plugin-apex",
|
|
3
3
|
"description": "Apex commands",
|
|
4
|
-
"version": "3.0.
|
|
4
|
+
"version": "3.0.6",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"bugs": "https://github.com/forcedotcom/cli/issues",
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"@oclif/core": "^3.
|
|
8
|
+
"@oclif/core": "^3.11.0",
|
|
9
9
|
"@salesforce/apex-node": "^2.1.2",
|
|
10
10
|
"@salesforce/core": "^5.3.20",
|
|
11
|
-
"@salesforce/sf-plugins-core": "^4.1.
|
|
11
|
+
"@salesforce/sf-plugins-core": "^4.1.2",
|
|
12
12
|
"chalk": "^5.3.0",
|
|
13
13
|
"color-convert": "^2.0.1",
|
|
14
14
|
"color-name": "^2.0.0"
|
|
15
15
|
},
|
|
16
16
|
"devDependencies": {
|
|
17
17
|
"@oclif/plugin-command-snapshot": "^5.0.2",
|
|
18
|
-
"@salesforce/cli-plugins-testkit": "^5.0.
|
|
18
|
+
"@salesforce/cli-plugins-testkit": "^5.0.4",
|
|
19
19
|
"@salesforce/dev-scripts": "^6.0.3",
|
|
20
20
|
"@salesforce/plugin-command-reference": "^3.0.46",
|
|
21
21
|
"@types/color-convert": "^2.0.3",
|
|
22
|
-
"eslint-plugin-sf-plugin": "^1.16.
|
|
22
|
+
"eslint-plugin-sf-plugin": "^1.16.15",
|
|
23
23
|
"oclif": "^4.0.3",
|
|
24
24
|
"shx": "^0.3.4",
|
|
25
25
|
"ts-node": "^10.9.1",
|
|
@@ -212,7 +212,7 @@
|
|
|
212
212
|
"exports": "./lib/index.js",
|
|
213
213
|
"type": "module",
|
|
214
214
|
"sfdx": {
|
|
215
|
-
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-apex/3.0.
|
|
216
|
-
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-apex/3.0.
|
|
215
|
+
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-apex/3.0.6.crt",
|
|
216
|
+
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-apex/3.0.6.sig"
|
|
217
217
|
}
|
|
218
218
|
}
|