mirror of
https://github.com/tiqi-group/pydase_service_base.git
synced 2025-04-22 17:20:03 +02:00
32 lines
885 B
TypeScript
32 lines
885 B
TypeScript
/* istanbul ignore file */
|
|
/* tslint:disable */
|
|
/* eslint-disable */
|
|
import type { ApiRequestOptions } from './ApiRequestOptions';
|
|
|
|
type Resolver<T> = (options: ApiRequestOptions) => Promise<T>;
|
|
type Headers = Record<string, string>;
|
|
|
|
export type OpenAPIConfig = {
|
|
BASE: string;
|
|
VERSION: string;
|
|
WITH_CREDENTIALS: boolean;
|
|
CREDENTIALS: 'include' | 'omit' | 'same-origin';
|
|
TOKEN?: string | Resolver<string>;
|
|
USERNAME?: string | Resolver<string>;
|
|
PASSWORD?: string | Resolver<string>;
|
|
HEADERS?: Headers | Resolver<Headers>;
|
|
ENCODE_PATH?: (path: string) => string;
|
|
};
|
|
|
|
export const OpenAPI: OpenAPIConfig = {
|
|
BASE: 'https://icon-api.qchub.ch',
|
|
VERSION: '1.0',
|
|
WITH_CREDENTIALS: false,
|
|
CREDENTIALS: 'include',
|
|
TOKEN: undefined,
|
|
USERNAME: undefined,
|
|
PASSWORD: undefined,
|
|
HEADERS: undefined,
|
|
ENCODE_PATH: undefined,
|
|
};
|