Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
chore(assets): Recompile assets
Signed-off-by: Joas Schilling <[email protected]>
  • Loading branch information
nickvergessen committed Aug 22, 2024
commit 9dda21cfb850c64a1e7baeefd280feaeabaf0e8f
10 changes: 5 additions & 5 deletions openapi-federation.json
Original file line number Diff line number Diff line change
Expand Up @@ -1635,17 +1635,15 @@
}
],
"requestBody": {
"required": true,
"required": false,
"content": {
"application/json": {
"schema": {
"type": "object",
"required": [
"sessionId"
],
"properties": {
"sessionId": {
"type": "string",
"nullable": true,
"description": "Federated session id to join with"
}
}
Expand Down Expand Up @@ -1715,7 +1713,9 @@
"meta": {
"$ref": "#/components/schemas/OCSMeta"
},
"data": {}
"data": {
"$ref": "#/components/schemas/Room"
}
}
}
}
Expand Down
10 changes: 5 additions & 5 deletions openapi-full.json
Original file line number Diff line number Diff line change
Expand Up @@ -17314,17 +17314,15 @@
}
],
"requestBody": {
"required": true,
"required": false,
"content": {
"application/json": {
"schema": {
"type": "object",
"required": [
"sessionId"
],
"properties": {
"sessionId": {
"type": "string",
"nullable": true,
"description": "Federated session id to join with"
}
}
Expand Down Expand Up @@ -17394,7 +17392,9 @@
"meta": {
"$ref": "#/components/schemas/OCSMeta"
},
"data": {}
"data": {
"$ref": "#/components/schemas/Room"
}
}
}
}
Expand Down
6 changes: 3 additions & 3 deletions src/types/openapi/openapi-federation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -704,11 +704,11 @@ export interface operations {
};
cookie?: never;
};
requestBody: {
requestBody?: {
content: {
"application/json": {
/** @description Federated session id to join with */
sessionId: string;
sessionId?: string | null;
};
};
};
Expand All @@ -723,7 +723,7 @@ export interface operations {
"application/json": {
ocs: {
meta: components["schemas"]["OCSMeta"];
data: unknown;
data: components["schemas"]["Room"];
};
};
};
Expand Down
6 changes: 3 additions & 3 deletions src/types/openapi/openapi-full.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8632,11 +8632,11 @@ export interface operations {
};
cookie?: never;
};
requestBody: {
requestBody?: {
content: {
"application/json": {
/** @description Federated session id to join with */
sessionId: string;
sessionId?: string | null;
};
};
};
Expand All @@ -8651,7 +8651,7 @@ export interface operations {
"application/json": {
ocs: {
meta: components["schemas"]["OCSMeta"];
data: unknown;
data: components["schemas"]["Room"];
};
};
};
Expand Down