mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-05-13 12:44:45 +02:00
4dd5c51436
* chore(deps): update tauri monorepo to v2.4.1 * Update tauri and regenerate command ref and schema --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Tony <legendmastertony@gmail.com>
402 lines
3.7 KiB
Markdown
402 lines
3.7 KiB
Markdown
## Default Permission
|
|
|
|
This permission set configures what kind of
|
|
operations are available from the store plugin.
|
|
|
|
#### Granted Permissions
|
|
|
|
All operations are enabled by default.
|
|
|
|
|
|
|
|
#### This default permission set includes the following:
|
|
|
|
- `allow-load`
|
|
- `allow-get-store`
|
|
- `allow-set`
|
|
- `allow-get`
|
|
- `allow-has`
|
|
- `allow-delete`
|
|
- `allow-clear`
|
|
- `allow-reset`
|
|
- `allow-keys`
|
|
- `allow-values`
|
|
- `allow-entries`
|
|
- `allow-length`
|
|
- `allow-reload`
|
|
- `allow-save`
|
|
|
|
## Permission Table
|
|
|
|
<table>
|
|
<tr>
|
|
<th>Identifier</th>
|
|
<th>Description</th>
|
|
</tr>
|
|
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`store:allow-clear`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Enables the clear command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`store:deny-clear`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Denies the clear command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`store:allow-delete`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Enables the delete command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`store:deny-delete`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Denies the delete command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`store:allow-entries`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Enables the entries command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`store:deny-entries`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Denies the entries command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`store:allow-get`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Enables the get command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`store:deny-get`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Denies the get command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`store:allow-get-store`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Enables the get_store command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`store:deny-get-store`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Denies the get_store command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`store:allow-has`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Enables the has command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`store:deny-has`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Denies the has command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`store:allow-keys`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Enables the keys command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`store:deny-keys`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Denies the keys command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`store:allow-length`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Enables the length command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`store:deny-length`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Denies the length command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`store:allow-load`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Enables the load command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`store:deny-load`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Denies the load command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`store:allow-reload`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Enables the reload command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`store:deny-reload`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Denies the reload command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`store:allow-reset`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Enables the reset command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`store:deny-reset`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Denies the reset command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`store:allow-save`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Enables the save command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`store:deny-save`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Denies the save command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`store:allow-set`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Enables the set command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`store:deny-set`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Denies the set command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`store:allow-values`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Enables the values command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`store:deny-values`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Denies the values command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
</table>
|