Skip to content

Commit

Permalink
fixup! chore: run openapi
Browse files Browse the repository at this point in the history
  • Loading branch information
nickvergessen committed Jan 9, 2025
1 parent 4cf56c3 commit 3e4057c
Show file tree
Hide file tree
Showing 16 changed files with 56 additions and 16 deletions.
6 changes: 5 additions & 1 deletion openapi-administration.json
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,11 @@
"type": "boolean"
},
"list-style": {
"type": "string"
"type": "string",
"enum": [
"two-lines",
"compact"
]
}
}
},
Expand Down
6 changes: 5 additions & 1 deletion openapi-backend-recording.json
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,11 @@
"type": "boolean"
},
"list-style": {
"type": "string"
"type": "string",
"enum": [
"two-lines",
"compact"
]
}
}
},
Expand Down
6 changes: 5 additions & 1 deletion openapi-backend-signaling.json
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,11 @@
"type": "boolean"
},
"list-style": {
"type": "string"
"type": "string",
"enum": [
"two-lines",
"compact"
]
}
}
},
Expand Down
6 changes: 5 additions & 1 deletion openapi-backend-sipbridge.json
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,11 @@
"type": "boolean"
},
"list-style": {
"type": "string"
"type": "string",
"enum": [
"two-lines",
"compact"
]
}
}
},
Expand Down
6 changes: 5 additions & 1 deletion openapi-bots.json
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,11 @@
"type": "boolean"
},
"list-style": {
"type": "string"
"type": "string",
"enum": [
"two-lines",
"compact"
]
}
}
},
Expand Down
6 changes: 5 additions & 1 deletion openapi-federation.json
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,11 @@
"type": "boolean"
},
"list-style": {
"type": "string"
"type": "string",
"enum": [
"two-lines",
"compact"
]
}
}
},
Expand Down
6 changes: 5 additions & 1 deletion openapi-full.json
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,11 @@
"type": "boolean"
},
"list-style": {
"type": "string"
"type": "string",
"enum": [
"two-lines",
"compact"
]
}
}
},
Expand Down
6 changes: 5 additions & 1 deletion openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,11 @@
"type": "boolean"
},
"list-style": {
"type": "string"
"type": "string",
"enum": [
"two-lines",
"compact"
]
}
}
},
Expand Down
3 changes: 2 additions & 1 deletion src/types/openapi/openapi-administration.ts
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,8 @@ export type components = {
conversations: {
"can-create": boolean;
"force-passwords": boolean;
"list-style": string;
/** @enum {string} */
"list-style": "two-lines" | "compact";
};
federation: {
enabled: boolean;
Expand Down
3 changes: 2 additions & 1 deletion src/types/openapi/openapi-backend-recording.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,8 @@ export type components = {
conversations: {
"can-create": boolean;
"force-passwords": boolean;
"list-style": string;
/** @enum {string} */
"list-style": "two-lines" | "compact";
};
federation: {
enabled: boolean;
Expand Down
3 changes: 2 additions & 1 deletion src/types/openapi/openapi-backend-signaling.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,8 @@ export type components = {
conversations: {
"can-create": boolean;
"force-passwords": boolean;
"list-style": string;
/** @enum {string} */
"list-style": "two-lines" | "compact";
};
federation: {
enabled: boolean;
Expand Down
3 changes: 2 additions & 1 deletion src/types/openapi/openapi-backend-sipbridge.ts
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,8 @@ export type components = {
conversations: {
"can-create": boolean;
"force-passwords": boolean;
"list-style": string;
/** @enum {string} */
"list-style": "two-lines" | "compact";
};
federation: {
enabled: boolean;
Expand Down
3 changes: 2 additions & 1 deletion src/types/openapi/openapi-bots.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,8 @@ export type components = {
conversations: {
"can-create": boolean;
"force-passwords": boolean;
"list-style": string;
/** @enum {string} */
"list-style": "two-lines" | "compact";
};
federation: {
enabled: boolean;
Expand Down
3 changes: 2 additions & 1 deletion src/types/openapi/openapi-federation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,8 @@ export type components = {
conversations: {
"can-create": boolean;
"force-passwords": boolean;
"list-style": string;
/** @enum {string} */
"list-style": "two-lines" | "compact";
};
federation: {
enabled: boolean;
Expand Down
3 changes: 2 additions & 1 deletion src/types/openapi/openapi-full.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2011,7 +2011,8 @@ export type components = {
conversations: {
"can-create": boolean;
"force-passwords": boolean;
"list-style": string;
/** @enum {string} */
"list-style": "two-lines" | "compact";
};
federation: {
enabled: boolean;
Expand Down
3 changes: 2 additions & 1 deletion src/types/openapi/openapi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1511,7 +1511,8 @@ export type components = {
conversations: {
"can-create": boolean;
"force-passwords": boolean;
"list-style": string;
/** @enum {string} */
"list-style": "two-lines" | "compact";
};
federation: {
enabled: boolean;
Expand Down

0 comments on commit 3e4057c

Please sign in to comment.