From bddb18c907531e26dcb4fdcd5458d87f2e099f64 Mon Sep 17 00:00:00 2001 From: Nicolas Meienberger Date: Wed, 25 Feb 2026 19:14:39 +0100 Subject: [PATCH] chore: gen-api client --- .dockerignore | 5 ----- app/client/api-client/client/client.gen.ts | 1 + app/client/api-client/client/index.ts | 1 + app/client/api-client/client/types.gen.ts | 3 ++- app/client/api-client/client/utils.gen.ts | 1 + app/client/api-client/core/auth.gen.ts | 1 + app/client/api-client/core/bodySerializer.gen.ts | 1 + app/client/api-client/core/params.gen.ts | 1 + app/client/api-client/core/pathSerializer.gen.ts | 1 + app/client/api-client/core/queryKeySerializer.gen.ts | 1 + app/client/api-client/core/serverSentEvents.gen.ts | 1 + app/client/api-client/core/types.gen.ts | 1 + app/client/api-client/core/utils.gen.ts | 1 + tsconfig.json | 2 +- 14 files changed, 14 insertions(+), 7 deletions(-) diff --git a/.dockerignore b/.dockerignore index d9bea189..4212a3b0 100644 --- a/.dockerignore +++ b/.dockerignore @@ -1,20 +1,15 @@ ** -!turbo.json !bun.lock !package.json -!server.ts !.gitignore !**/package.json !**/bun.lock !**/tsconfig.json !**/vite.config.ts -!**/react-router.config.ts -!**/build.ts !**/components.json -!src/** !app/** !public/** diff --git a/app/client/api-client/client/client.gen.ts b/app/client/api-client/client/client.gen.ts index 45d0a64b..29a4ec04 100644 --- a/app/client/api-client/client/client.gen.ts +++ b/app/client/api-client/client/client.gen.ts @@ -1,3 +1,4 @@ +// @ts-nocheck // This file is auto-generated by @hey-api/openapi-ts import { createSseClient } from "../core/serverSentEvents.gen"; diff --git a/app/client/api-client/client/index.ts b/app/client/api-client/client/index.ts index 88229e0a..2b5d0631 100644 --- a/app/client/api-client/client/index.ts +++ b/app/client/api-client/client/index.ts @@ -1,3 +1,4 @@ +// @ts-nocheck // This file is auto-generated by @hey-api/openapi-ts export type { Auth } from "../core/auth.gen"; diff --git a/app/client/api-client/client/types.gen.ts b/app/client/api-client/client/types.gen.ts index b5495c11..430a3574 100644 --- a/app/client/api-client/client/types.gen.ts +++ b/app/client/api-client/client/types.gen.ts @@ -1,3 +1,4 @@ +// @ts-nocheck // This file is auto-generated by @hey-api/openapi-ts import type { Auth } from "../core/auth.gen"; @@ -63,7 +64,7 @@ export interface RequestOptions< }>, Pick< ServerSentEventsOptions, - "onSseError" | "onSseEvent" | "sseDefaultRetryDelay" | "sseMaxRetryAttempts" | "sseMaxRetryDelay" + "onRequest" | "onSseError" | "onSseEvent" | "sseDefaultRetryDelay" | "sseMaxRetryAttempts" | "sseMaxRetryDelay" > { /** * Any body that you want to add to your request. diff --git a/app/client/api-client/client/utils.gen.ts b/app/client/api-client/client/utils.gen.ts index fb460443..028f126b 100644 --- a/app/client/api-client/client/utils.gen.ts +++ b/app/client/api-client/client/utils.gen.ts @@ -1,3 +1,4 @@ +// @ts-nocheck // This file is auto-generated by @hey-api/openapi-ts import { getAuthToken } from "../core/auth.gen"; diff --git a/app/client/api-client/core/auth.gen.ts b/app/client/api-client/core/auth.gen.ts index 9d804052..151d3864 100644 --- a/app/client/api-client/core/auth.gen.ts +++ b/app/client/api-client/core/auth.gen.ts @@ -1,3 +1,4 @@ +// @ts-nocheck // This file is auto-generated by @hey-api/openapi-ts export type AuthToken = string | undefined; diff --git a/app/client/api-client/core/bodySerializer.gen.ts b/app/client/api-client/core/bodySerializer.gen.ts index 10e7b3a6..018844f0 100644 --- a/app/client/api-client/core/bodySerializer.gen.ts +++ b/app/client/api-client/core/bodySerializer.gen.ts @@ -1,3 +1,4 @@ +// @ts-nocheck // This file is auto-generated by @hey-api/openapi-ts import type { ArrayStyle, ObjectStyle, SerializerOptions } from "./pathSerializer.gen"; diff --git a/app/client/api-client/core/params.gen.ts b/app/client/api-client/core/params.gen.ts index c1fb15c5..573fd7ea 100644 --- a/app/client/api-client/core/params.gen.ts +++ b/app/client/api-client/core/params.gen.ts @@ -1,3 +1,4 @@ +// @ts-nocheck // This file is auto-generated by @hey-api/openapi-ts type Slot = "body" | "headers" | "path" | "query"; diff --git a/app/client/api-client/core/pathSerializer.gen.ts b/app/client/api-client/core/pathSerializer.gen.ts index 9e3cccde..05e0a3de 100644 --- a/app/client/api-client/core/pathSerializer.gen.ts +++ b/app/client/api-client/core/pathSerializer.gen.ts @@ -1,3 +1,4 @@ +// @ts-nocheck // This file is auto-generated by @hey-api/openapi-ts interface SerializeOptions extends SerializePrimitiveOptions, SerializerOptions {} diff --git a/app/client/api-client/core/queryKeySerializer.gen.ts b/app/client/api-client/core/queryKeySerializer.gen.ts index b3e87676..30045011 100644 --- a/app/client/api-client/core/queryKeySerializer.gen.ts +++ b/app/client/api-client/core/queryKeySerializer.gen.ts @@ -1,3 +1,4 @@ +// @ts-nocheck // This file is auto-generated by @hey-api/openapi-ts /** diff --git a/app/client/api-client/core/serverSentEvents.gen.ts b/app/client/api-client/core/serverSentEvents.gen.ts index 479546e8..cc8c8b4e 100644 --- a/app/client/api-client/core/serverSentEvents.gen.ts +++ b/app/client/api-client/core/serverSentEvents.gen.ts @@ -1,3 +1,4 @@ +// @ts-nocheck // This file is auto-generated by @hey-api/openapi-ts import type { Config } from "./types.gen"; diff --git a/app/client/api-client/core/types.gen.ts b/app/client/api-client/core/types.gen.ts index 62252e53..facd26d4 100644 --- a/app/client/api-client/core/types.gen.ts +++ b/app/client/api-client/core/types.gen.ts @@ -1,3 +1,4 @@ +// @ts-nocheck // This file is auto-generated by @hey-api/openapi-ts import type { Auth, AuthToken } from "./auth.gen"; diff --git a/app/client/api-client/core/utils.gen.ts b/app/client/api-client/core/utils.gen.ts index 7e48839f..28457f77 100644 --- a/app/client/api-client/core/utils.gen.ts +++ b/app/client/api-client/core/utils.gen.ts @@ -1,3 +1,4 @@ +// @ts-nocheck // This file is auto-generated by @hey-api/openapi-ts import type { BodySerializer, QuerySerializer } from "./bodySerializer.gen"; diff --git a/tsconfig.json b/tsconfig.json index 1b25bccc..5302ad0d 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,5 +1,5 @@ { - "include": ["**/*", "**/.server/**/*", "**/.client/**/*", ".react-router/types/**/*"], + "include": ["**/*"], "compilerOptions": { "lib": ["DOM", "DOM.Iterable", "ES2022"], "types": ["node", "vite/client", "bun-types"],