update permissions

pull/2522/head
adrieljss 4 months ago
parent 70501935b0
commit 1ec0de83fa
No known key found for this signature in database
GPG Key ID: 849F13CBD0B4AD05

@ -0,0 +1,13 @@
# Automatically generated - DO NOT EDIT!
"$schema" = "../../schemas/schema.json"
[[permission]]
identifier = "allow-fetch-stream-body"
description = "Enables the fetch_stream_body command without any pre-configured scope."
commands.allow = ["fetch_stream_body"]
[[permission]]
identifier = "deny-fetch-stream-body"
description = "Denies the fetch_stream_body command without any pre-configured scope."
commands.deny = ["fetch_stream_body"]

@ -128,6 +128,32 @@ Enables the fetch_send command without any pre-configured scope.
Denies the fetch_send command without any pre-configured scope. Denies the fetch_send command without any pre-configured scope.
</td>
</tr>
<tr>
<td>
`http:allow-fetch-stream-body`
</td>
<td>
Enables the fetch_stream_body command without any pre-configured scope.
</td>
</tr>
<tr>
<td>
`http:deny-fetch-stream-body`
</td>
<td>
Denies the fetch_stream_body command without any pre-configured scope.
</td> </td>
</tr> </tr>
</table> </table>

@ -17,6 +17,6 @@ All fetch operations are enabled.
permissions = [ permissions = [
"allow-fetch", "allow-fetch",
"allow-fetch-cancel", "allow-fetch-cancel",
"allow-fetch-read-body", "allow-fetch-stream-body",
"allow-fetch-send", "allow-fetch-send",
] ]

@ -315,24 +315,24 @@
"const": "deny-fetch-cancel" "const": "deny-fetch-cancel"
}, },
{ {
"description": "Enables the fetch_read_body command without any pre-configured scope.", "description": "Enables the fetch_send command without any pre-configured scope.",
"type": "string", "type": "string",
"const": "allow-fetch-read-body" "const": "allow-fetch-send"
}, },
{ {
"description": "Denies the fetch_read_body command without any pre-configured scope.", "description": "Denies the fetch_send command without any pre-configured scope.",
"type": "string", "type": "string",
"const": "deny-fetch-read-body" "const": "deny-fetch-send"
}, },
{ {
"description": "Enables the fetch_send command without any pre-configured scope.", "description": "Enables the fetch_stream_body command without any pre-configured scope.",
"type": "string", "type": "string",
"const": "allow-fetch-send" "const": "allow-fetch-stream-body"
}, },
{ {
"description": "Denies the fetch_send command without any pre-configured scope.", "description": "Denies the fetch_stream_body command without any pre-configured scope.",
"type": "string", "type": "string",
"const": "deny-fetch-send" "const": "deny-fetch-stream-body"
}, },
{ {
"description": "This permission set configures what kind of\nfetch operations are available from the http plugin.\n\nThis enables all fetch operations but does not\nallow explicitly any origins to be fetched. This needs to\nbe manually configured before usage.\n\n#### Granted Permissions\n\nAll fetch operations are enabled.\n\n", "description": "This permission set configures what kind of\nfetch operations are available from the http plugin.\n\nThis enables all fetch operations but does not\nallow explicitly any origins to be fetched. This needs to\nbe manually configured before usage.\n\n#### Granted Permissions\n\nAll fetch operations are enabled.\n\n",

Loading…
Cancel
Save