@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
|
@@ -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;
|