@mintplayer/ng-spark 22.1.0 → 22.2.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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@mintplayer/ng-spark",
3
3
  "private": false,
4
- "version": "22.1.0",
4
+ "version": "22.2.0",
5
5
  "description": "Angular component library for MintPlayer.Spark CRUD applications",
6
6
  "repository": {
7
7
  "type": "git",
@@ -290,6 +290,13 @@ interface RetryActionResult {
290
290
  }
291
291
 
292
292
  interface EntityPermissions {
293
+ /**
294
+ * Whether the caller may list this type. Independently grantable from `canRead` — `Query/Person`
295
+ * alone lists rows while refusing a by-id load — and reported since preview.60. The combined
296
+ * `QueryRead` right bundles the two invisibly, which is why this was the one action introspection
297
+ * never mentioned.
298
+ */
299
+ canQuery: boolean;
293
300
  canRead: boolean;
294
301
  canCreate: boolean;
295
302
  canEdit: boolean;