crap
This commit is contained in:
12
src/client/models/AuthLoginRequest.ts
Normal file
12
src/client/models/AuthLoginRequest.ts
Normal file
@@ -0,0 +1,12 @@
|
||||
/* generated using openapi-typescript-codegen -- do no edit */
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
export type AuthLoginRequest = {
|
||||
auth_date: number;
|
||||
first_name: string;
|
||||
hash: string;
|
||||
id: number;
|
||||
photo_url: string;
|
||||
};
|
||||
|
||||
8
src/client/models/AuthLoginResponse.ts
Normal file
8
src/client/models/AuthLoginResponse.ts
Normal file
@@ -0,0 +1,8 @@
|
||||
/* generated using openapi-typescript-codegen -- do no edit */
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
export type AuthLoginResponse = {
|
||||
access_token: string;
|
||||
};
|
||||
|
||||
9
src/client/models/HTTPValidationError.ts
Normal file
9
src/client/models/HTTPValidationError.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
/* generated using openapi-typescript-codegen -- do no edit */
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
import type { ValidationError } from './ValidationError';
|
||||
export type HTTPValidationError = {
|
||||
detail?: Array<ValidationError>;
|
||||
};
|
||||
|
||||
10
src/client/models/ValidationError.ts
Normal file
10
src/client/models/ValidationError.ts
Normal file
@@ -0,0 +1,10 @@
|
||||
/* generated using openapi-typescript-codegen -- do no edit */
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
export type ValidationError = {
|
||||
loc: Array<(string | number)>;
|
||||
msg: string;
|
||||
type: string;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user