@simplysf/simply-permissions 1.2.22 → 1.2.26
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/LICENSE.txt +1 -1
- package/README.md +4 -0
- package/lib/commands/simply/permissions/analyze.js +1 -1
- package/lib/commands/simply/permissions/build.js +1 -1
- package/lib/common/permissionSetXmlTemplate.js +1 -1
- package/lib/common/permissionsReportTemplate.js +1 -1
- package/lib/index.js +1 -1
- package/lib/schemas/build/permissionConfig.js +1 -1
- package/package.json +6 -6
package/LICENSE.txt
CHANGED
package/README.md
CHANGED
|
@@ -170,3 +170,7 @@ The `--config` flag on `sf simply permissions build` takes the path to a JSON fi
|
|
|
170
170
|
| `recordTypeVisibilities` | `Record<string, RecordTypeVisibility>` | `Object.RecordType` API name | Overrides record type visibility. Fields: `visible` (optional boolean). Only applied when `--include-record-types` is also passed. |
|
|
171
171
|
| `userPermissions` | `Record<string, boolean>` | User permission API name | Enables (`true`) or disables (`false`) individual user permissions. |
|
|
172
172
|
| `hasActivationRequired` | `boolean` | — | Whether the generated permission set requires activation before it grants access. Defaults to `false`. |
|
|
173
|
+
|
|
174
|
+
## License
|
|
175
|
+
|
|
176
|
+
Licensed under the [Apache-2.0](https://raw.githubusercontent.com/SimplySF/simply-node/main/LICENSE.txt) license.
|
package/lib/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@simplysf/simply-permissions",
|
|
3
3
|
"description": "Utilities for working with permissions",
|
|
4
|
-
"version": "1.2.
|
|
4
|
+
"version": "1.2.26",
|
|
5
5
|
"author": "@ClayChipps",
|
|
6
6
|
"homepage": "https://github.com/SimplySF/simply-node",
|
|
7
7
|
"bugs": "https://github.com/SimplySF/simply-node/issues",
|
|
@@ -61,9 +61,9 @@
|
|
|
61
61
|
"@salesforce/kit": "^3.2.6",
|
|
62
62
|
"@salesforce/sf-plugins-core": "^12.2.16",
|
|
63
63
|
"@salesforce/source-deploy-retrieve": "^12.37.2",
|
|
64
|
-
"@simplysf/simply-core": "^1.1.
|
|
65
|
-
"@simplysf/simply-plugin-kit": "^1.0.
|
|
66
|
-
"@simplysf/simply-report": "^1.0.
|
|
64
|
+
"@simplysf/simply-core": "^1.1.17",
|
|
65
|
+
"@simplysf/simply-plugin-kit": "^1.0.4",
|
|
66
|
+
"@simplysf/simply-report": "^1.0.3",
|
|
67
67
|
"handlebars": "^4.7.9",
|
|
68
68
|
"xmlbuilder2": "^4.0.3",
|
|
69
69
|
"zod": "^4.1.12"
|
|
@@ -87,7 +87,7 @@
|
|
|
87
87
|
"readme": "oclif readme --no-aliases",
|
|
88
88
|
"test": "wireit",
|
|
89
89
|
"test:coverage": "vitest run --coverage --project simply-permissions",
|
|
90
|
-
"test:nuts": "vitest run --config vitest.nuts.config.ts --project simply-permissions",
|
|
90
|
+
"test:nuts": "vitest run --config ../../vitest.nuts.config.ts --project simply-permissions",
|
|
91
91
|
"test:only": "wireit",
|
|
92
92
|
"test:watch": "vitest watch --project simply-permissions"
|
|
93
93
|
},
|
|
@@ -212,5 +212,5 @@
|
|
|
212
212
|
"output": []
|
|
213
213
|
}
|
|
214
214
|
},
|
|
215
|
-
"gitHead": "
|
|
215
|
+
"gitHead": "c1134ddedb7cd88cfdd28e5e9596c2d28028b2f3"
|
|
216
216
|
}
|