chore(assets): Recompile assets

Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
Joas Schilling 2025-09-05 09:15:16 +02:00
parent 60f104371e
commit ac97d1cc30
No known key found for this signature in database
GPG key ID: F72FA5B49FFA96B0
6 changed files with 54 additions and 126 deletions

View file

@ -1079,12 +1079,8 @@
"in": "query",
"description": "Theme used for background",
"schema": {
"type": "integer",
"default": 0,
"enum": [
0,
1
]
"type": "boolean",
"default": false
}
},
{
@ -1328,12 +1324,8 @@
"in": "query",
"description": "Theme used for background",
"schema": {
"type": "integer",
"default": 0,
"enum": [
0,
1
]
"type": "boolean",
"default": false
}
},
{

View file

@ -2313,12 +2313,8 @@
"in": "query",
"description": "Theme used for background",
"schema": {
"type": "integer",
"default": 0,
"enum": [
0,
1
]
"type": "boolean",
"default": false
}
},
{
@ -5656,12 +5652,8 @@
"in": "query",
"description": "whether to also terminate the call for all participants",
"schema": {
"type": "integer",
"default": 0,
"enum": [
0,
1
]
"type": "boolean",
"default": false
}
},
{
@ -10532,12 +10524,8 @@
"in": "query",
"description": "Include the user status",
"schema": {
"type": "integer",
"default": 0,
"enum": [
0,
1
]
"type": "boolean",
"default": false
}
},
{
@ -10556,12 +10544,8 @@
"in": "query",
"description": "Include the last message, clients should opt-out when only rendering a compact list",
"schema": {
"type": "integer",
"default": 1,
"enum": [
0,
1
]
"type": "boolean",
"default": true
}
},
{
@ -13268,12 +13252,8 @@
"in": "query",
"description": "Include the user statuses",
"schema": {
"type": "integer",
"default": 0,
"enum": [
0,
1
]
"type": "boolean",
"default": false
}
},
{
@ -13712,12 +13692,8 @@
"in": "query",
"description": "Include the user statuses",
"schema": {
"type": "integer",
"default": 0,
"enum": [
0,
1
]
"type": "boolean",
"default": false
}
},
{
@ -22534,12 +22510,8 @@
"in": "query",
"description": "Include the user statuses",
"schema": {
"type": "integer",
"default": 0,
"enum": [
0,
1
]
"type": "boolean",
"default": false
}
},
{
@ -24038,12 +24010,8 @@
"in": "query",
"description": "Theme used for background",
"schema": {
"type": "integer",
"default": 0,
"enum": [
0,
1
]
"type": "boolean",
"default": false
}
},
{
@ -24287,12 +24255,8 @@
"in": "query",
"description": "Theme used for background",
"schema": {
"type": "integer",
"default": 0,
"enum": [
0,
1
]
"type": "boolean",
"default": false
}
},
{

View file

@ -2218,12 +2218,8 @@
"in": "query",
"description": "Theme used for background",
"schema": {
"type": "integer",
"default": 0,
"enum": [
0,
1
]
"type": "boolean",
"default": false
}
},
{
@ -5561,12 +5557,8 @@
"in": "query",
"description": "whether to also terminate the call for all participants",
"schema": {
"type": "integer",
"default": 0,
"enum": [
0,
1
]
"type": "boolean",
"default": false
}
},
{
@ -10437,12 +10429,8 @@
"in": "query",
"description": "Include the user status",
"schema": {
"type": "integer",
"default": 0,
"enum": [
0,
1
]
"type": "boolean",
"default": false
}
},
{
@ -10461,12 +10449,8 @@
"in": "query",
"description": "Include the last message, clients should opt-out when only rendering a compact list",
"schema": {
"type": "integer",
"default": 1,
"enum": [
0,
1
]
"type": "boolean",
"default": true
}
},
{
@ -13173,12 +13157,8 @@
"in": "query",
"description": "Include the user statuses",
"schema": {
"type": "integer",
"default": 0,
"enum": [
0,
1
]
"type": "boolean",
"default": false
}
},
{
@ -13617,12 +13597,8 @@
"in": "query",
"description": "Include the user statuses",
"schema": {
"type": "integer",
"default": 0,
"enum": [
0,
1
]
"type": "boolean",
"default": false
}
},
{
@ -22439,12 +22415,8 @@
"in": "query",
"description": "Include the user statuses",
"schema": {
"type": "integer",
"default": 0,
"enum": [
0,
1
]
"type": "boolean",
"default": false
}
},
{

View file

@ -555,7 +555,7 @@ export interface operations {
/** @description Federation CloudID to get the avatar for */
cloudId: string;
/** @description Theme used for background */
darkTheme?: 0 | 1;
darkTheme?: boolean;
};
header: {
/** @description Set to 1 when the request is performed by another Nextcloud Server to indicate a federation request */
@ -649,7 +649,7 @@ export interface operations {
/** @description Federation CloudID to get the avatar for */
cloudId: string;
/** @description Theme used for background */
darkTheme?: 0 | 1;
darkTheme?: boolean;
};
header: {
/** @description Set to 1 when the request is performed by another Nextcloud Server to indicate a federation request */

View file

@ -2962,7 +2962,7 @@ export interface operations {
parameters: {
query?: {
/** @description Theme used for background */
darkTheme?: 0 | 1;
darkTheme?: boolean;
};
header: {
/** @description Set to 1 when the request is performed by another Nextcloud Server to indicate a federation request */
@ -4356,7 +4356,7 @@ export interface operations {
parameters: {
query?: {
/** @description whether to also terminate the call for all participants */
all?: 0 | 1;
all?: boolean;
};
header: {
/** @description Set to 1 when the request is performed by another Nextcloud Server to indicate a federation request */
@ -6329,11 +6329,11 @@ export interface operations {
/** @description When the user status should not be automatically set to online set to 1 (default 0) */
noStatusUpdate?: 0 | 1;
/** @description Include the user status */
includeStatus?: 0 | 1;
includeStatus?: boolean;
/** @description Filter rooms modified after a timestamp */
modifiedSince?: number;
/** @description Include the last message, clients should opt-out when only rendering a compact list */
includeLastMessage?: 0 | 1;
includeLastMessage?: boolean;
};
header: {
/** @description Required to be true for the API request to pass */
@ -7444,7 +7444,7 @@ export interface operations {
parameters: {
query?: {
/** @description Include the user statuses */
includeStatus?: 0 | 1;
includeStatus?: boolean;
};
header: {
/** @description Set to 1 when the request is performed by another Nextcloud Server to indicate a federation request */
@ -7607,7 +7607,7 @@ export interface operations {
parameters: {
query?: {
/** @description Include the user statuses */
includeStatus?: 0 | 1;
includeStatus?: boolean;
};
header: {
/** @description Required to be true for the API request to pass */
@ -11130,7 +11130,7 @@ export interface operations {
/** @description Maximum number of results */
limit?: number;
/** @description Include the user statuses */
includeStatus?: 0 | 1;
includeStatus?: boolean;
};
header: {
/** @description Set to 1 when the request is performed by another Nextcloud Server to indicate a federation request */
@ -11694,7 +11694,7 @@ export interface operations {
/** @description Federation CloudID to get the avatar for */
cloudId: string;
/** @description Theme used for background */
darkTheme?: 0 | 1;
darkTheme?: boolean;
};
header: {
/** @description Set to 1 when the request is performed by another Nextcloud Server to indicate a federation request */
@ -11788,7 +11788,7 @@ export interface operations {
/** @description Federation CloudID to get the avatar for */
cloudId: string;
/** @description Theme used for background */
darkTheme?: 0 | 1;
darkTheme?: boolean;
};
header: {
/** @description Set to 1 when the request is performed by another Nextcloud Server to indicate a federation request */

View file

@ -2424,7 +2424,7 @@ export interface operations {
parameters: {
query?: {
/** @description Theme used for background */
darkTheme?: 0 | 1;
darkTheme?: boolean;
};
header: {
/** @description Set to 1 when the request is performed by another Nextcloud Server to indicate a federation request */
@ -3818,7 +3818,7 @@ export interface operations {
parameters: {
query?: {
/** @description whether to also terminate the call for all participants */
all?: 0 | 1;
all?: boolean;
};
header: {
/** @description Set to 1 when the request is performed by another Nextcloud Server to indicate a federation request */
@ -5791,11 +5791,11 @@ export interface operations {
/** @description When the user status should not be automatically set to online set to 1 (default 0) */
noStatusUpdate?: 0 | 1;
/** @description Include the user status */
includeStatus?: 0 | 1;
includeStatus?: boolean;
/** @description Filter rooms modified after a timestamp */
modifiedSince?: number;
/** @description Include the last message, clients should opt-out when only rendering a compact list */
includeLastMessage?: 0 | 1;
includeLastMessage?: boolean;
};
header: {
/** @description Required to be true for the API request to pass */
@ -6906,7 +6906,7 @@ export interface operations {
parameters: {
query?: {
/** @description Include the user statuses */
includeStatus?: 0 | 1;
includeStatus?: boolean;
};
header: {
/** @description Set to 1 when the request is performed by another Nextcloud Server to indicate a federation request */
@ -7069,7 +7069,7 @@ export interface operations {
parameters: {
query?: {
/** @description Include the user statuses */
includeStatus?: 0 | 1;
includeStatus?: boolean;
};
header: {
/** @description Required to be true for the API request to pass */
@ -10592,7 +10592,7 @@ export interface operations {
/** @description Maximum number of results */
limit?: number;
/** @description Include the user statuses */
includeStatus?: 0 | 1;
includeStatus?: boolean;
};
header: {
/** @description Set to 1 when the request is performed by another Nextcloud Server to indicate a federation request */