···11+# Angular
22+33+This project was generated using [Angular CLI](https://github.com/angular/angular-cli) version 19.2.15.
44+55+## Development server
66+77+To start a local development server, run:
88+99+```bash
1010+ng serve
1111+```
1212+1313+Once the server is running, open your browser and navigate to `http://localhost:4200/`. The application will automatically reload whenever you modify any of the source files.
1414+1515+## Code scaffolding
1616+1717+Angular CLI includes powerful code scaffolding tools. To generate a new component, run:
1818+1919+```bash
2020+ng generate component component-name
2121+```
2222+2323+For a complete list of available schematics (such as `components`, `directives`, or `pipes`), run:
2424+2525+```bash
2626+ng generate --help
2727+```
2828+2929+## Building
3030+3131+To build the project run:
3232+3333+```bash
3434+ng build
3535+```
3636+3737+This will compile your project and store the build artifacts in the `dist/` directory. By default, the production build optimizes your application for performance and speed.
3838+3939+## Running unit tests
4040+4141+To execute unit tests with the [Karma](https://karma-runner.github.io) test runner, use the following command:
4242+4343+```bash
4444+ng test
4545+```
4646+4747+## Running end-to-end tests
4848+4949+For end-to-end (e2e) testing, run:
5050+5151+```bash
5252+ng e2e
5353+```
5454+5555+Angular CLI does not come with an end-to-end testing framework by default. You can choose one that suits your needs.
5656+5757+## Additional Resources
5858+5959+For more information on using the Angular CLI, including detailed command references, visit the [Angular CLI Overview and Command Reference](https://angular.dev/tools/cli) page.
···11+// This file is auto-generated by @hey-api/openapi-ts
22+13import type { HttpResponse } from '@angular/common/http';
24import { HttpClient, HttpEventType, HttpRequest } from '@angular/common/http';
35import {
···11+// This file is auto-generated by @hey-api/openapi-ts
22+13export type { Auth } from '../core/auth.gen';
24export type { QuerySerializerOptions } from '../core/bodySerializer.gen';
35export {
···11+// This file is auto-generated by @hey-api/openapi-ts
22+13import { getAuthToken } from '../core/auth.gen';
24import type {
35 QuerySerializer,
···152154 */
153155export const getParseAs = (
154156 contentType: string | null,
155155-): Exclude<Config['parseAs'], 'auto'> => {
157157+): 'blob' | 'formData' | 'json' | 'stream' | 'text' | undefined => {
156158 if (!contentType) {
157159 // If no Content-Type header is provided, the best we can do is return the raw response body,
158160 // which is effectively the same as the 'stream' option.
···416418): Config<Omit<ClientOptions, keyof T> & T> => ({
417419 ...jsonBodySerializer,
418420 headers: defaultHeaders,
419419- parseAs: 'auto',
421421+ // parseAs: 'auto',
420422 querySerializer: defaultQuerySerializer,
421423 ...override,
422424});
···11+// This file is auto-generated by @hey-api/openapi-ts
22+13interface SerializeOptions<T>
24 extends SerializePrimitiveOptions,
35 SerializerOptions<T> {}