Skip to content

Commit

Permalink
chore(assets): Recompile assets
Browse files Browse the repository at this point in the history
Signed-off-by: Joas Schilling <coding@schilljs.com>
  • Loading branch information
nickvergessen committed Nov 29, 2024
1 parent c2965f2 commit 54f89df
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 44 deletions.
11 changes: 1 addition & 10 deletions openapi-backend-sipbridge.json
Original file line number Diff line number Diff line change
Expand Up @@ -553,7 +553,6 @@
"isFavorite",
"lastActivity",
"lastCommonReadMessage",
"lastMessage",
"lastPing",
"lastReadMessage",
"listable",
Expand Down Expand Up @@ -676,15 +675,7 @@
"format": "int64"
},
"lastMessage": {
"anyOf": [
{
"$ref": "#/components/schemas/RoomLastMessage"
},
{
"type": "array",
"maxItems": 0
}
]
"$ref": "#/components/schemas/RoomLastMessage"
},
"lastPing": {
"type": "integer",
Expand Down
11 changes: 1 addition & 10 deletions openapi-federation.json
Original file line number Diff line number Diff line change
Expand Up @@ -607,7 +607,6 @@
"isFavorite",
"lastActivity",
"lastCommonReadMessage",
"lastMessage",
"lastPing",
"lastReadMessage",
"listable",
Expand Down Expand Up @@ -730,15 +729,7 @@
"format": "int64"
},
"lastMessage": {
"anyOf": [
{
"$ref": "#/components/schemas/RoomLastMessage"
},
{
"type": "array",
"maxItems": 0
}
]
"$ref": "#/components/schemas/RoomLastMessage"
},
"lastPing": {
"type": "integer",
Expand Down
11 changes: 1 addition & 10 deletions openapi-full.json
Original file line number Diff line number Diff line change
Expand Up @@ -1184,7 +1184,6 @@
"isFavorite",
"lastActivity",
"lastCommonReadMessage",
"lastMessage",
"lastPing",
"lastReadMessage",
"listable",
Expand Down Expand Up @@ -1307,15 +1306,7 @@
"format": "int64"
},
"lastMessage": {
"anyOf": [
{
"$ref": "#/components/schemas/RoomLastMessage"
},
{
"type": "array",
"maxItems": 0
}
]
"$ref": "#/components/schemas/RoomLastMessage"
},
"lastPing": {
"type": "integer",
Expand Down
11 changes: 1 addition & 10 deletions openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -1071,7 +1071,6 @@
"isFavorite",
"lastActivity",
"lastCommonReadMessage",
"lastMessage",
"lastPing",
"lastReadMessage",
"listable",
Expand Down Expand Up @@ -1194,15 +1193,7 @@
"format": "int64"
},
"lastMessage": {
"anyOf": [
{
"$ref": "#/components/schemas/RoomLastMessage"
},
{
"type": "array",
"maxItems": 0
}
]
"$ref": "#/components/schemas/RoomLastMessage"
},
"lastPing": {
"type": "integer",
Expand Down
2 changes: 1 addition & 1 deletion src/types/openapi/openapi-backend-sipbridge.ts
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ export type components = {
lastActivity: number;
/** Format: int64 */
lastCommonReadMessage: number;
lastMessage: components["schemas"]["RoomLastMessage"] | unknown[];
lastMessage?: components["schemas"]["RoomLastMessage"];
/** Format: int64 */
lastPing: number;
/** Format: int64 */
Expand Down
2 changes: 1 addition & 1 deletion src/types/openapi/openapi-federation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ export type components = {
lastActivity: number;
/** Format: int64 */
lastCommonReadMessage: number;
lastMessage: components["schemas"]["RoomLastMessage"] | unknown[];
lastMessage?: components["schemas"]["RoomLastMessage"];
/** Format: int64 */
lastPing: number;
/** Format: int64 */
Expand Down
2 changes: 1 addition & 1 deletion src/types/openapi/openapi-full.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2253,7 +2253,7 @@ export type components = {
lastActivity: number;
/** Format: int64 */
lastCommonReadMessage: number;
lastMessage: components["schemas"]["RoomLastMessage"] | unknown[];
lastMessage?: components["schemas"]["RoomLastMessage"];
/** Format: int64 */
lastPing: number;
/** Format: int64 */
Expand Down
2 changes: 1 addition & 1 deletion src/types/openapi/openapi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1734,7 +1734,7 @@ export type components = {
lastActivity: number;
/** Format: int64 */
lastCommonReadMessage: number;
lastMessage: components["schemas"]["RoomLastMessage"] | unknown[];
lastMessage?: components["schemas"]["RoomLastMessage"];
/** Format: int64 */
lastPing: number;
/** Format: int64 */
Expand Down

0 comments on commit 54f89df

Please sign in to comment.