Skip to content

Commit

Permalink
chore: run openapi
Browse files Browse the repository at this point in the history
Signed-off-by: Maksim Sukharev <[email protected]>
  • Loading branch information
Antreesy committed Dec 13, 2024
1 parent 6bc54f0 commit 301db07
Show file tree
Hide file tree
Showing 16 changed files with 64 additions and 8 deletions.
7 changes: 6 additions & 1 deletion openapi-administration.json
Original file line number Diff line number Diff line change
Expand Up @@ -238,14 +238,19 @@
"type": "object",
"required": [
"can-create",
"force-passwords"
"force-passwords",
"compact-list"
],
"properties": {
"can-create": {
"type": "boolean"
},
"force-passwords": {
"type": "boolean"
},
"compact-list": {
"type": "integer",
"format": "int64"
}
}
},
Expand Down
7 changes: 6 additions & 1 deletion openapi-backend-recording.json
Original file line number Diff line number Diff line change
Expand Up @@ -171,14 +171,19 @@
"type": "object",
"required": [
"can-create",
"force-passwords"
"force-passwords",
"compact-list"
],
"properties": {
"can-create": {
"type": "boolean"
},
"force-passwords": {
"type": "boolean"
},
"compact-list": {
"type": "integer",
"format": "int64"
}
}
},
Expand Down
7 changes: 6 additions & 1 deletion openapi-backend-signaling.json
Original file line number Diff line number Diff line change
Expand Up @@ -171,14 +171,19 @@
"type": "object",
"required": [
"can-create",
"force-passwords"
"force-passwords",
"compact-list"
],
"properties": {
"can-create": {
"type": "boolean"
},
"force-passwords": {
"type": "boolean"
},
"compact-list": {
"type": "integer",
"format": "int64"
}
}
},
Expand Down
7 changes: 6 additions & 1 deletion openapi-backend-sipbridge.json
Original file line number Diff line number Diff line change
Expand Up @@ -214,14 +214,19 @@
"type": "object",
"required": [
"can-create",
"force-passwords"
"force-passwords",
"compact-list"
],
"properties": {
"can-create": {
"type": "boolean"
},
"force-passwords": {
"type": "boolean"
},
"compact-list": {
"type": "integer",
"format": "int64"
}
}
},
Expand Down
7 changes: 6 additions & 1 deletion openapi-bots.json
Original file line number Diff line number Diff line change
Expand Up @@ -171,14 +171,19 @@
"type": "object",
"required": [
"can-create",
"force-passwords"
"force-passwords",
"compact-list"
],
"properties": {
"can-create": {
"type": "boolean"
},
"force-passwords": {
"type": "boolean"
},
"compact-list": {
"type": "integer",
"format": "int64"
}
}
},
Expand Down
7 changes: 6 additions & 1 deletion openapi-federation.json
Original file line number Diff line number Diff line change
Expand Up @@ -214,14 +214,19 @@
"type": "object",
"required": [
"can-create",
"force-passwords"
"force-passwords",
"compact-list"
],
"properties": {
"can-create": {
"type": "boolean"
},
"force-passwords": {
"type": "boolean"
},
"compact-list": {
"type": "integer",
"format": "int64"
}
}
},
Expand Down
7 changes: 6 additions & 1 deletion openapi-full.json
Original file line number Diff line number Diff line change
Expand Up @@ -390,14 +390,19 @@
"type": "object",
"required": [
"can-create",
"force-passwords"
"force-passwords",
"compact-list"
],
"properties": {
"can-create": {
"type": "boolean"
},
"force-passwords": {
"type": "boolean"
},
"compact-list": {
"type": "integer",
"format": "int64"
}
}
},
Expand Down
7 changes: 6 additions & 1 deletion openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -331,14 +331,19 @@
"type": "object",
"required": [
"can-create",
"force-passwords"
"force-passwords",
"compact-list"
],
"properties": {
"can-create": {
"type": "boolean"
},
"force-passwords": {
"type": "boolean"
},
"compact-list": {
"type": "integer",
"format": "int64"
}
}
},
Expand Down
2 changes: 2 additions & 0 deletions src/types/openapi/openapi-administration.ts
Original file line number Diff line number Diff line change
Expand Up @@ -247,6 +247,8 @@ export type components = {
conversations: {
"can-create": boolean;
"force-passwords": boolean;
/** Format: int64 */
"compact-list": number;
};
federation: {
enabled: boolean;
Expand Down
2 changes: 2 additions & 0 deletions src/types/openapi/openapi-backend-recording.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,8 @@ export type components = {
conversations: {
"can-create": boolean;
"force-passwords": boolean;
/** Format: int64 */
"compact-list": number;
};
federation: {
enabled: boolean;
Expand Down
2 changes: 2 additions & 0 deletions src/types/openapi/openapi-backend-signaling.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,8 @@ export type components = {
conversations: {
"can-create": boolean;
"force-passwords": boolean;
/** Format: int64 */
"compact-list": number;
};
federation: {
enabled: boolean;
Expand Down
2 changes: 2 additions & 0 deletions src/types/openapi/openapi-backend-sipbridge.ts
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,8 @@ export type components = {
conversations: {
"can-create": boolean;
"force-passwords": boolean;
/** Format: int64 */
"compact-list": number;
};
federation: {
enabled: boolean;
Expand Down
2 changes: 2 additions & 0 deletions src/types/openapi/openapi-bots.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,8 @@ export type components = {
conversations: {
"can-create": boolean;
"force-passwords": boolean;
/** Format: int64 */
"compact-list": number;
};
federation: {
enabled: boolean;
Expand Down
2 changes: 2 additions & 0 deletions src/types/openapi/openapi-federation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,8 @@ export type components = {
conversations: {
"can-create": boolean;
"force-passwords": boolean;
/** Format: int64 */
"compact-list": number;
};
federation: {
enabled: boolean;
Expand Down
2 changes: 2 additions & 0 deletions src/types/openapi/openapi-full.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2013,6 +2013,8 @@ export type components = {
conversations: {
"can-create": boolean;
"force-passwords": boolean;
/** Format: int64 */
"compact-list": number;
};
federation: {
enabled: boolean;
Expand Down
2 changes: 2 additions & 0 deletions src/types/openapi/openapi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1510,6 +1510,8 @@ export type components = {
conversations: {
"can-create": boolean;
"force-passwords": boolean;
/** Format: int64 */
"compact-list": number;
};
federation: {
enabled: boolean;
Expand Down

0 comments on commit 301db07

Please sign in to comment.