sf-plugin-permission-sets 0.0.0-dev.9 → 0.1.0
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 +85 -66
- package/lib/commands/ps/check.d.ts +18 -0
- package/lib/commands/ps/check.js +45 -0
- package/lib/commands/ps/check.js.map +1 -0
- package/lib/commands/ps/info.js.map +1 -1
- package/lib/core/load.d.ts +8 -0
- package/lib/core/load.js +52 -0
- package/lib/core/load.js.map +1 -0
- package/lib/core/model.d.ts +19 -0
- package/lib/core/model.js +2 -0
- package/lib/core/model.js.map +1 -0
- package/lib/core/normalize.d.ts +10 -0
- package/lib/core/normalize.js +45 -0
- package/lib/core/normalize.js.map +1 -0
- package/lib/core/parse.d.ts +9 -0
- package/lib/core/parse.js +25 -0
- package/lib/core/parse.js.map +1 -0
- package/lib/core/report.d.ts +8 -0
- package/lib/core/report.js +15 -0
- package/lib/core/report.js.map +1 -0
- package/lib/core/schema.d.ts +20 -0
- package/lib/core/schema.js +26 -0
- package/lib/core/schema.js.map +1 -0
- package/lib/services/check.d.ts +15 -0
- package/lib/services/check.js +17 -0
- package/lib/services/check.js.map +1 -0
- package/messages/ps.check.md +33 -0
- package/oclif.lock +570 -1
- package/oclif.manifest.json +63 -1
- package/package.json +12 -24
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# summary
|
|
2
|
+
|
|
3
|
+
Statically check permission set assignment files, with no org connection.
|
|
4
|
+
|
|
5
|
+
# description
|
|
6
|
+
|
|
7
|
+
Parse and validate the YAML files offline. Reports invalid YAML, schema violations, duplicate keys, duplicate targets, and empty entries. Run it in a pre-commit hook or in CI before validate, plan, or apply.
|
|
8
|
+
|
|
9
|
+
# flags.file.summary
|
|
10
|
+
|
|
11
|
+
YAML file or glob to check. Repeatable.
|
|
12
|
+
|
|
13
|
+
# flags.strict.summary
|
|
14
|
+
|
|
15
|
+
Treat warnings as errors.
|
|
16
|
+
|
|
17
|
+
# summary.counts
|
|
18
|
+
|
|
19
|
+
%s errors, %s warnings.
|
|
20
|
+
|
|
21
|
+
# error.failed
|
|
22
|
+
|
|
23
|
+
Check found problems. See the output above.
|
|
24
|
+
|
|
25
|
+
# examples
|
|
26
|
+
|
|
27
|
+
- Check every file under permissions:
|
|
28
|
+
|
|
29
|
+
<%= config.bin %> <%= command.id %> --file "permissions/*.yml"
|
|
30
|
+
|
|
31
|
+
- Check specific files:
|
|
32
|
+
|
|
33
|
+
<%= config.bin %> <%= command.id %> --file permissions/sales.yml --file permissions/service.yml
|