Skip to content

Commit 23f5283

Browse files
committed
fixup! chore(assets): Recompile assets
1 parent 42ecda8 commit 23f5283

File tree

4 files changed

+2
-4
lines changed

4 files changed

+2
-4
lines changed

openapi-full.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16426,7 +16426,6 @@
1642616426
"roomType": {
1642716427
"type": "integer",
1642816428
"format": "int64",
16429-
"nullable": true,
1643016429
"description": "Type of the room"
1643116430
},
1643216431
"invite": {

openapi.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16331,7 +16331,6 @@
1633116331
"roomType": {
1633216332
"type": "integer",
1633316333
"format": "int64",
16334-
"nullable": true,
1633516334
"description": "Type of the room"
1633616335
},
1633716336
"invite": {

src/types/openapi/openapi-full.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8838,7 +8838,7 @@ export interface operations {
88388838
* Format: int64
88398839
* @description Type of the room
88408840
*/
8841-
roomType?: number | null;
8841+
roomType?: number;
88428842
/**
88438843
* @deprecated
88448844
* @description User, group, … ID to invite Deprecated: Use the `$participants` array instead

src/types/openapi/openapi.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8300,7 +8300,7 @@ export interface operations {
83008300
* Format: int64
83018301
* @description Type of the room
83028302
*/
8303-
roomType?: number | null;
8303+
roomType?: number;
83048304
/**
83058305
* @deprecated
83068306
* @description User, group, … ID to invite Deprecated: Use the `$participants` array instead

0 commit comments

Comments
 (0)