This commit is contained in:
2025-03-18 00:07:57 +01:00
commit f378eeb265
14 changed files with 21209 additions and 0 deletions

18
src/client.gen.ts Normal file
View File

@@ -0,0 +1,18 @@
// This file is auto-generated by @hey-api/openapi-ts
import type { ClientOptions } from './types.gen';
import { type Config, type ClientOptions as DefaultClientOptions, createClient, createConfig } from '@hey-api/client-fetch';
/**
* The `createClientConfig()` function will be called on client initialization
* and the returned object will become the client's initial configuration.
*
* You may want to initialize your client this way instead of calling
* `setConfig()`. This is useful for example if you're using Next.js
* to ensure your client always has the correct values.
*/
export type CreateClientConfig<T extends DefaultClientOptions = ClientOptions> = (override?: Config<DefaultClientOptions & T>) => Config<Required<DefaultClientOptions> & T>;
export const client = createClient(createConfig<ClientOptions>({
baseUrl: 'https://run.lauf-fuer-kaya.de'
}));

3
src/index.ts Normal file
View File

@@ -0,0 +1,3 @@
// This file is auto-generated by @hey-api/openapi-ts
export * from './types.gen';
export * from './sdk.gen';

2070
src/sdk.gen.ts Normal file

File diff suppressed because one or more lines are too long

3490
src/types.gen.ts Normal file

File diff suppressed because it is too large Load Diff