Skip to content

Commit

Permalink
chore(openapi): Recompile openapi
Browse files Browse the repository at this point in the history
Signed-off-by: Joas Schilling <coding@schilljs.com>
  • Loading branch information
nickvergessen committed Oct 18, 2024
1 parent ad41bf2 commit ed01b27
Show file tree
Hide file tree
Showing 8 changed files with 28 additions and 2 deletions.
3 changes: 3 additions & 0 deletions openapi-backend-sipbridge.json
Original file line number Diff line number Diff line change
Expand Up @@ -570,6 +570,9 @@
"actorId": {
"type": "string"
},
"invitedActorId": {
"type": "string"
},
"actorType": {
"type": "string"
},
Expand Down
3 changes: 3 additions & 0 deletions openapi-federation.json
Original file line number Diff line number Diff line change
Expand Up @@ -624,6 +624,9 @@
"actorId": {
"type": "string"
},
"invitedActorId": {
"type": "string"
},
"actorType": {
"type": "string"
},
Expand Down
7 changes: 7 additions & 0 deletions openapi-full.json
Original file line number Diff line number Diff line change
Expand Up @@ -792,6 +792,9 @@
"actorId": {
"type": "string"
},
"invitedActorId": {
"type": "string"
},
"actorType": {
"type": "string"
},
Expand Down Expand Up @@ -1198,6 +1201,9 @@
"actorId": {
"type": "string"
},
"invitedActorId": {
"type": "string"
},
"actorType": {
"type": "string"
},
Expand Down Expand Up @@ -2141,6 +2147,7 @@
"enum": [
"users",
"guests",
"emails",
"ip"
],
"description": "Type of actor to ban, or `ip` when banning a clients remote address"
Expand Down
7 changes: 7 additions & 0 deletions openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -679,6 +679,9 @@
"actorId": {
"type": "string"
},
"invitedActorId": {
"type": "string"
},
"actorType": {
"type": "string"
},
Expand Down Expand Up @@ -1085,6 +1088,9 @@
"actorId": {
"type": "string"
},
"invitedActorId": {
"type": "string"
},
"actorType": {
"type": "string"
},
Expand Down Expand Up @@ -2028,6 +2034,7 @@
"enum": [
"users",
"guests",
"emails",
"ip"
],
"description": "Type of actor to ban, or `ip` when banning a clients remote address"
Expand Down
1 change: 1 addition & 0 deletions src/types/openapi/openapi-backend-sipbridge.ts
Original file line number Diff line number Diff line change
Expand Up @@ -249,6 +249,7 @@ export type components = {
};
Room: {
actorId: string;
invitedActorId?: string;
actorType: string;
/** Format: int64 */
attendeeId: number;
Expand Down
1 change: 1 addition & 0 deletions src/types/openapi/openapi-federation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -296,6 +296,7 @@ export type components = {
};
Room: {
actorId: string;
invitedActorId?: string;
actorType: string;
/** Format: int64 */
attendeeId: number;
Expand Down
4 changes: 3 additions & 1 deletion src/types/openapi/openapi-full.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2052,6 +2052,7 @@ export type components = {
};
Participant: {
actorId: string;
invitedActorId?: string;
actorType: string;
/** Format: int64 */
attendeeId: number;
Expand Down Expand Up @@ -2160,6 +2161,7 @@ export type components = {
};
Room: {
actorId: string;
invitedActorId?: string;
actorType: string;
/** Format: int64 */
attendeeId: number;
Expand Down Expand Up @@ -2545,7 +2547,7 @@ export interface operations {
* @description Type of actor to ban, or `ip` when banning a clients remote address
* @enum {string}
*/
actorType: "users" | "guests" | "ip";
actorType: "users" | "guests" | "emails" | "ip";
/** @description Actor ID or the IP address or range in case of type `ip` */
actorId: string;
/**
Expand Down
4 changes: 3 additions & 1 deletion src/types/openapi/openapi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1533,6 +1533,7 @@ export type components = {
};
Participant: {
actorId: string;
invitedActorId?: string;
actorType: string;
/** Format: int64 */
attendeeId: number;
Expand Down Expand Up @@ -1641,6 +1642,7 @@ export type components = {
};
Room: {
actorId: string;
invitedActorId?: string;
actorType: string;
/** Format: int64 */
attendeeId: number;
Expand Down Expand Up @@ -2026,7 +2028,7 @@ export interface operations {
* @description Type of actor to ban, or `ip` when banning a clients remote address
* @enum {string}
*/
actorType: "users" | "guests" | "ip";
actorType: "users" | "guests" | "emails" | "ip";
/** @description Actor ID or the IP address or range in case of type `ip` */
actorId: string;
/**
Expand Down

0 comments on commit ed01b27

Please sign in to comment.