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 <[email protected]>
  • Loading branch information
nickvergessen committed Jul 23, 2024
1 parent 334f1f1 commit e9dde97
Show file tree
Hide file tree
Showing 16 changed files with 1,108 additions and 422 deletions.
27 changes: 23 additions & 4 deletions openapi-administration.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,12 @@
},
"state": {
"type": "integer",
"format": "int64"
"format": "int64",
"enum": [
0,
1,
2
]
}
}
},
Expand All @@ -68,7 +73,13 @@
},
"features": {
"type": "integer",
"format": "int64"
"format": "int64",
"enum": [
0,
1,
2,
3
]
},
"last_error_date": {
"type": "integer",
Expand Down Expand Up @@ -204,14 +215,22 @@
},
"read-privacy": {
"type": "integer",
"format": "int64"
"format": "int64",
"enum": [
0,
1
]
},
"has-translation-providers": {
"type": "boolean"
},
"typing-privacy": {
"type": "integer",
"format": "int64"
"format": "int64",
"enum": [
0,
1
]
}
}
},
Expand Down
12 changes: 10 additions & 2 deletions openapi-backend-recording.json
Original file line number Diff line number Diff line change
Expand Up @@ -137,14 +137,22 @@
},
"read-privacy": {
"type": "integer",
"format": "int64"
"format": "int64",
"enum": [
0,
1
]
},
"has-translation-providers": {
"type": "boolean"
},
"typing-privacy": {
"type": "integer",
"format": "int64"
"format": "int64",
"enum": [
0,
1
]
}
}
},
Expand Down
12 changes: 10 additions & 2 deletions openapi-backend-signaling.json
Original file line number Diff line number Diff line change
Expand Up @@ -137,14 +137,22 @@
},
"read-privacy": {
"type": "integer",
"format": "int64"
"format": "int64",
"enum": [
0,
1
]
},
"has-translation-providers": {
"type": "boolean"
},
"typing-privacy": {
"type": "integer",
"format": "int64"
"format": "int64",
"enum": [
0,
1
]
}
}
},
Expand Down
154 changes: 124 additions & 30 deletions openapi-backend-sipbridge.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,12 @@
}
}
},
"CallFlags": {
"type": "integer",
"format": "int64",
"minimum": 0,
"maximum": 15
},
"Capabilities": {
"type": "object",
"required": [
Expand Down Expand Up @@ -180,14 +186,22 @@
},
"read-privacy": {
"type": "integer",
"format": "int64"
"format": "int64",
"enum": [
0,
1
]
},
"has-translation-providers": {
"type": "boolean"
},
"typing-privacy": {
"type": "integer",
"format": "int64"
"format": "int64",
"enum": [
0,
1
]
}
}
},
Expand Down Expand Up @@ -371,6 +385,24 @@
}
}
},
"ParticipantTypes": {
"type": "integer",
"format": "int64",
"enum": [
1,
2,
3,
4,
5,
6
]
},
"Permissions": {
"type": "integer",
"format": "int64",
"minimum": 0,
"maximum": 255
},
"PublicCapabilities": {
"oneOf": [
{
Expand Down Expand Up @@ -565,8 +597,7 @@
"format": "int64"
},
"attendeePermissions": {
"type": "integer",
"format": "int64"
"$ref": "#/components/schemas/Permissions"
},
"attendeePin": {
"type": "string",
Expand All @@ -577,23 +608,34 @@
},
"breakoutRoomMode": {
"type": "integer",
"format": "int64"
"format": "int64",
"enum": [
0,
1,
2,
3
]
},
"breakoutRoomStatus": {
"type": "integer",
"format": "int64"
"format": "int64",
"enum": [
0,
1,
2
]
},
"callFlag": {
"type": "integer",
"format": "int64"
"$ref": "#/components/schemas/CallFlags"
},
"callPermissions": {
"type": "integer",
"format": "int64"
"$ref": "#/components/schemas/Permissions"
},
"callRecording": {
"type": "integer",
"format": "int64"
"format": "int64",
"minimum": 0,
"maximum": 5
},
"callStartTime": {
"type": "integer",
Expand All @@ -612,8 +654,7 @@
"type": "boolean"
},
"defaultPermissions": {
"type": "integer",
"format": "int64"
"$ref": "#/components/schemas/Permissions"
},
"description": {
"type": "string"
Expand Down Expand Up @@ -666,19 +707,32 @@
},
"listable": {
"type": "integer",
"format": "int64"
"format": "int64",
"enum": [
0,
1,
2
]
},
"lobbyState": {
"type": "integer",
"format": "int64"
"format": "int64",
"enum": [
0,
1
]
},
"lobbyTimer": {
"type": "integer",
"format": "int64"
},
"mentionPermissions": {
"type": "integer",
"format": "int64"
"format": "int64",
"enum": [
0,
1
]
},
"messageExpiration": {
"type": "integer",
Expand All @@ -689,11 +743,21 @@
},
"notificationCalls": {
"type": "integer",
"format": "int64"
"format": "int64",
"enum": [
0,
1
]
},
"notificationLevel": {
"type": "integer",
"format": "int64"
"format": "int64",
"enum": [
0,
1,
2,
3
]
},
"objectId": {
"type": "string"
Expand All @@ -702,34 +766,53 @@
"type": "string"
},
"participantFlags": {
"type": "integer",
"format": "int64"
"$ref": "#/components/schemas/CallFlags"
},
"participantType": {
"type": "integer",
"format": "int64"
"$ref": "#/components/schemas/ParticipantTypes"
},
"permissions": {
"type": "integer",
"format": "int64"
"$ref": "#/components/schemas/Permissions"
},
"readOnly": {
"type": "integer",
"format": "int64"
"format": "int64",
"enum": [
0,
1
]
},
"recordingConsent": {
"type": "integer",
"format": "int64"
"format": "int64",
"enum": [
0,
1,
2
]
},
"sessionId": {
"type": "string"
},
"sipEnabled": {
"type": "integer",
"format": "int64"
"format": "int64",
"enum": [
0,
1,
2
]
},
"status": {
"type": "string"
"type": "string",
"enum": [
"online",
"away",
"dnd",
"busy",
"offline",
"invisible"
]
},
"statusClearAt": {
"type": "integer",
Expand All @@ -748,8 +831,7 @@
"type": "string"
},
"type": {
"type": "integer",
"format": "int64"
"$ref": "#/components/schemas/RoomTypes"
},
"unreadMention": {
"type": "boolean"
Expand All @@ -772,6 +854,18 @@
"$ref": "#/components/schemas/ChatProxyMessage"
}
]
},
"RoomTypes": {
"type": "integer",
"format": "int64",
"enum": [
1,
2,
3,
4,
5,
6
]
}
}
},
Expand Down
Loading

0 comments on commit e9dde97

Please sign in to comment.