Skip to content

Commit

Permalink
update schema [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasfernog committed Oct 3, 2022
1 parent 1c0f4de commit d3109d0
Showing 1 changed file with 46 additions and 1 deletion.
47 changes: 46 additions & 1 deletion tooling/cli/schema.json
Expand Up @@ -28,6 +28,11 @@
"default": {
"allowlist": {
"all": false,
"app": {
"all": false,
"hide": false,
"show": false
},
"clipboard": {
"all": false,
"readText": false,
Expand Down Expand Up @@ -296,6 +301,11 @@
"description": "The allowlist configuration.",
"default": {
"all": false,
"app": {
"all": false,
"hide": false,
"show": false
},
"clipboard": {
"all": false,
"readText": false,
Expand Down Expand Up @@ -657,7 +667,7 @@
]
},
"hiddenTitle": {
"description": "Sets the window title to be hidden on macOS.",
"description": "If `true`, sets the window title to be hidden on macOS.",
"default": false,
"type": "boolean"
}
Expand Down Expand Up @@ -1730,6 +1740,19 @@
"$ref": "#/definitions/ClipboardAllowlistConfig"
}
]
},
"app": {
"description": "App APIs allowlist.",
"default": {
"all": false,
"hide": false,
"show": false
},
"allOf": [
{
"$ref": "#/definitions/AppAllowlistConfig"
}
]
}
},
"additionalProperties": false
Expand Down Expand Up @@ -2316,6 +2339,28 @@
},
"additionalProperties": false
},
"AppAllowlistConfig": {
"description": "Allowlist for the app APIs.",
"type": "object",
"properties": {
"all": {
"description": "Use this flag to enable all app APIs.",
"default": false,
"type": "boolean"
},
"show": {
"description": "Enables the app's `show` API.",
"default": false,
"type": "boolean"
},
"hide": {
"description": "Enables the app's `hide` API.",
"default": false,
"type": "boolean"
}
},
"additionalProperties": false
},
"SecurityConfig": {
"description": "Security configuration.",
"type": "object",
Expand Down

0 comments on commit d3109d0

Please sign in to comment.