rflib-plugin 0.18.0 → 0.19.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.
Files changed (33) hide show
  1. package/README.md +116 -0
  2. package/lib/commands/rflib/debug/applicationevents/get.d.ts +17 -0
  3. package/lib/commands/rflib/debug/applicationevents/get.js +63 -0
  4. package/lib/commands/rflib/debug/applicationevents/get.js.map +1 -0
  5. package/lib/commands/rflib/debug/logarchives/get.d.ts +14 -0
  6. package/lib/commands/rflib/debug/logarchives/get.js +43 -0
  7. package/lib/commands/rflib/debug/logarchives/get.js.map +1 -0
  8. package/lib/commands/rflib/debug/loggersettings/get.d.ts +12 -0
  9. package/lib/commands/rflib/debug/loggersettings/get.js +30 -0
  10. package/lib/commands/rflib/debug/loggersettings/get.js.map +1 -0
  11. package/lib/commands/rflib/debug/loggersettings/update.d.ts +16 -0
  12. package/lib/commands/rflib/debug/loggersettings/update.js +57 -0
  13. package/lib/commands/rflib/debug/loggersettings/update.js.map +1 -0
  14. package/lib/commands/rflib/debug/userpermissions/get.d.ts +14 -0
  15. package/lib/commands/rflib/debug/userpermissions/get.js +52 -0
  16. package/lib/commands/rflib/debug/userpermissions/get.js.map +1 -0
  17. package/lib/shared/loggerSettingsRules.d.ts +29 -0
  18. package/lib/shared/loggerSettingsRules.js +157 -0
  19. package/lib/shared/loggerSettingsRules.js.map +1 -0
  20. package/lib/shared/orgClient.d.ts +78 -0
  21. package/lib/shared/orgClient.js +272 -0
  22. package/lib/shared/orgClient.js.map +1 -0
  23. package/lib/shared/permissionAggregator.d.ts +8 -0
  24. package/lib/shared/permissionAggregator.js +143 -0
  25. package/lib/shared/permissionAggregator.js.map +1 -0
  26. package/messages/rflib.debug.applicationevents.get.md +74 -0
  27. package/messages/rflib.debug.logarchives.get.md +45 -0
  28. package/messages/rflib.debug.loggersettings.get.md +27 -0
  29. package/messages/rflib.debug.loggersettings.update.md +63 -0
  30. package/messages/rflib.debug.userpermissions.get.md +63 -0
  31. package/oclif.lock +518 -1315
  32. package/oclif.manifest.json +620 -73
  33. package/package.json +23 -6
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "rflib-plugin",
3
3
  "description": "Utility commands to help with the adoption of the RFLIB open-source library for Salesforce.",
4
- "version": "0.18.0",
4
+ "version": "0.19.3",
5
5
  "dependencies": {
6
- "@oclif/core": "^4.9.0",
6
+ "@oclif/core": "^4.10.5",
7
7
  "@salesforce/core": "^8.27.1",
8
- "@salesforce/sf-plugins-core": "^12.2.6",
8
+ "@salesforce/sf-plugins-core": "^12.2.17",
9
9
  "@types/xml2js": "^0.4.14",
10
- "minimatch": "^10.2.4",
10
+ "minimatch": "^10.2.5",
11
11
  "prettier": "^3.8.1",
12
12
  "prettier-plugin-apex": "^2.2.6",
13
13
  "wireit": "^0.14.12",
@@ -19,14 +19,14 @@
19
19
  "@eslint/js": "^8.57.1",
20
20
  "@istanbuljs/nyc-config-typescript": "^1.0.2",
21
21
  "@oclif/plugin-command-snapshot": "^5.3.13",
22
- "@salesforce/cli-plugins-testkit": "^5.3.41",
22
+ "@salesforce/cli-plugins-testkit": "^5.3.58",
23
23
  "@salesforce/dev-scripts": "^11.0.4",
24
24
  "@types/minimatch": "^5.1.2",
25
25
  "c8": "^10.1.3",
26
26
  "eslint": "^8.57.1",
27
27
  "eslint-plugin-sf-plugin": "^1.20.33",
28
28
  "husky": "^9.1.7",
29
- "oclif": "^4.22.93",
29
+ "oclif": "^4.23.5",
30
30
  "source-map-support": "^0.5.21",
31
31
  "ts-node": "^10.9.2",
32
32
  "tsconfig-paths": "^4.2.0",
@@ -78,6 +78,23 @@
78
78
  "description": "description for rflib.logging.flow"
79
79
  }
80
80
  }
81
+ },
82
+ "debug": {
83
+ "description": "Commands to inspect and tune an RFLIB-instrumented Salesforce org while debugging",
84
+ "subtopics": {
85
+ "applicationevents": {
86
+ "description": "Commands related to RFLIB Application Events"
87
+ },
88
+ "logarchives": {
89
+ "description": "Commands related to RFLIB log archives"
90
+ },
91
+ "loggersettings": {
92
+ "description": "Commands related to RFLIB Logger Settings"
93
+ },
94
+ "userpermissions": {
95
+ "description": "Commands related to Salesforce user permissions"
96
+ }
97
+ }
81
98
  }
82
99
  }
83
100
  }