Signed-off-by: provokateurin <kate@provokateurin.de>
*
* @psalm-type CoreNavigationEntry = array{
* id: string,
- * order: int,
+ * order?: int,
* href: string,
* icon: string,
* type: string,
* name: string,
+ * app?: string,
+ * default?: bool,
* active: bool,
* classes: string,
* unread: int,
"type": "object",
"required": [
"id",
- "order",
"href",
"icon",
"type",
"name": {
"type": "string"
},
+ "app": {
+ "type": "string"
+ },
+ "default": {
+ "type": "boolean"
+ },
"active": {
"type": "boolean"
},