chore(deps/openapi): updated all

Updated openapi and verified that no unused dependency still remains
This commit is contained in:
Maieul BOYER 2026-01-14 16:21:15 +01:00 committed by Nigel
parent 4cde1b744f
commit 63549752e8
23 changed files with 39 additions and 694 deletions

View file

@ -1,26 +1,25 @@
{
"name": "frontend",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview"
},
"devDependencies": {
"@types/js-cookie": "^3.0.6",
"@types/qrcode": "^1.5.6",
"typescript": "~5.9.3",
"vite": "^7.3.0",
"vite-tsconfig-paths": "^5.1.4"
},
"dependencies": {
"@tailwindcss/vite": "^4.1.18",
"@types/qrcode": "^1.5.6",
"js-cookie": "^3.0.5",
"qrcode": "^1.5.4",
"socket.io-client": "^4.8.3",
"tailwindcss": "^4.1.18"
}
"name": "frontend",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview"
},
"devDependencies": {
"@types/js-cookie": "^3.0.6",
"@types/qrcode": "^1.5.6",
"@tailwindcss/vite": "^4.1.18",
"typescript": "~5.9.3",
"vite": "^7.3.0",
"vite-tsconfig-paths": "^5.1.4"
},
"dependencies": {
"js-cookie": "^3.0.5",
"qrcode": "^1.5.4",
"socket.io-client": "^4.8.3",
"tailwindcss": "^4.1.18"
}
}

View file

@ -8,12 +8,6 @@ importers:
.:
dependencies:
'@tailwindcss/vite':
specifier: ^4.1.18
version: 4.1.18(vite@7.3.0(@types/node@25.0.3)(jiti@2.6.1)(lightningcss@1.30.2))
'@types/qrcode':
specifier: ^1.5.6
version: 1.5.6
js-cookie:
specifier: ^3.0.5
version: 3.0.5
@ -27,9 +21,15 @@ importers:
specifier: ^4.1.18
version: 4.1.18
devDependencies:
'@tailwindcss/vite':
specifier: ^4.1.18
version: 4.1.18(vite@7.3.0(@types/node@25.0.3)(jiti@2.6.1)(lightningcss@1.30.2))
'@types/js-cookie':
specifier: ^3.0.6
version: 3.0.6
'@types/qrcode':
specifier: ^1.5.6
version: 1.5.6
typescript:
specifier: ~5.9.3
version: 5.9.3

View file

@ -3,7 +3,6 @@ apis/index.ts
index.ts
models/AllowGuestMessage200Response.ts
models/AllowGuestMessage403Response.ts
models/ApiChatBroadcastPostRequest.ts
models/ChangeDesc200Response.ts
models/ChangeDesc400Response.ts
models/ChangeDesc403Response.ts

View file

@ -17,7 +17,6 @@ import * as runtime from '../runtime';
import type {
AllowGuestMessage200Response,
AllowGuestMessage403Response,
ApiChatBroadcastPostRequest,
ChangeDesc200Response,
ChangeDesc400Response,
ChangeDesc403Response,
@ -79,8 +78,6 @@ import {
AllowGuestMessage200ResponseToJSON,
AllowGuestMessage403ResponseFromJSON,
AllowGuestMessage403ResponseToJSON,
ApiChatBroadcastPostRequestFromJSON,
ApiChatBroadcastPostRequestToJSON,
ChangeDesc200ResponseFromJSON,
ChangeDesc200ResponseToJSON,
ChangeDesc400ResponseFromJSON,
@ -193,10 +190,6 @@ import {
TttHistory404ResponseToJSON,
} from '../models/index';
export interface ApiChatBroadcastPostOperationRequest {
apiChatBroadcastPostRequest: ApiChatBroadcastPostRequest;
}
export interface ChangeDescOperationRequest {
changeDescRequest: ChangeDescRequest;
}
@ -296,53 +289,6 @@ export class OpenapiOtherApi extends runtime.BaseAPI {
return await response.value();
}
/**
*/
async apiChatBroadcastPostRaw(requestParameters: ApiChatBroadcastPostOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<void>> {
if (requestParameters['apiChatBroadcastPostRequest'] == null) {
throw new runtime.RequiredError(
'apiChatBroadcastPostRequest',
'Required parameter "apiChatBroadcastPostRequest" was null or undefined when calling apiChatBroadcastPost().'
);
}
const queryParameters: any = {};
const headerParameters: runtime.HTTPHeaders = {};
headerParameters['Content-Type'] = 'application/json';
let urlPath = `/api/chat/broadcast`;
const response = await this.request({
path: urlPath,
method: 'POST',
headers: headerParameters,
query: queryParameters,
body: ApiChatBroadcastPostRequestToJSON(requestParameters['apiChatBroadcastPostRequest']),
}, initOverrides);
// CHANGED: Handle all status codes defined in the OpenAPI spec, not just 2xx responses
// This allows typed access to error responses (4xx, 5xx) and other status codes.
// The code routes responses based on the actual HTTP status code and returns
// appropriately typed ApiResponse wrappers for each status code.
if (response.status === 200) {
// No body response for status 200
return new runtime.VoidApiResponse(response);
}
// CHANGED: Throw error if status code is not handled by any of the defined responses
// This ensures all code paths return a value and provides clear error messages for unexpected status codes
// Only throw if responses were defined but none matched the actual status code
throw new runtime.ResponseError(response, `Unexpected status code: ${response.status}. Expected one of: 200`);
}
/**
*/
async apiChatBroadcastPost(requestParameters: ApiChatBroadcastPostOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void> {
await this.apiChatBroadcastPostRaw(requestParameters, initOverrides);
}
/**
*/
async changeDescRaw(requestParameters: ChangeDescOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ChangeDesc200Response | ChangeDesc400Response | ChangePassword401Response | ChangeDesc403Response>> {

View file

@ -2,7 +2,6 @@
/* eslint-disable */
export * from './AllowGuestMessage200Response';
export * from './AllowGuestMessage403Response';
export * from './ApiChatBroadcastPostRequest';
export * from './ChangeDesc200Response';
export * from './ChangeDesc400Response';
export * from './ChangeDesc403Response';