committed by
GitHub
16 changed files with 292 additions and 1 deletions
@ -0,0 +1,29 @@ |
|||||
|
/* generated using openapi-typescript-codegen -- do no edit */ |
||||
|
/* istanbul ignore file */ |
||||
|
/* tslint:disable */ |
||||
|
/* eslint-disable */ |
||||
|
export const $Body_login_login_access_token = { |
||||
|
properties: { |
||||
|
grant_type: { |
||||
|
type: 'string', |
||||
|
pattern: 'password', |
||||
|
}, |
||||
|
username: { |
||||
|
type: 'string', |
||||
|
isRequired: true, |
||||
|
}, |
||||
|
password: { |
||||
|
type: 'string', |
||||
|
isRequired: true, |
||||
|
}, |
||||
|
scope: { |
||||
|
type: 'string', |
||||
|
}, |
||||
|
client_id: { |
||||
|
type: 'string', |
||||
|
}, |
||||
|
client_secret: { |
||||
|
type: 'string', |
||||
|
}, |
||||
|
}, |
||||
|
} as const; |
@ -0,0 +1,14 @@ |
|||||
|
/* generated using openapi-typescript-codegen -- do no edit */ |
||||
|
/* istanbul ignore file */ |
||||
|
/* tslint:disable */ |
||||
|
/* eslint-disable */ |
||||
|
export const $HTTPValidationError = { |
||||
|
properties: { |
||||
|
detail: { |
||||
|
type: 'array', |
||||
|
contains: { |
||||
|
type: 'ValidationError', |
||||
|
}, |
||||
|
}, |
||||
|
}, |
||||
|
} as const; |
@ -0,0 +1,15 @@ |
|||||
|
/* generated using openapi-typescript-codegen -- do no edit */ |
||||
|
/* istanbul ignore file */ |
||||
|
/* tslint:disable */ |
||||
|
/* eslint-disable */ |
||||
|
export const $ItemCreate = { |
||||
|
properties: { |
||||
|
title: { |
||||
|
type: 'string', |
||||
|
isRequired: true, |
||||
|
}, |
||||
|
description: { |
||||
|
type: 'string', |
||||
|
}, |
||||
|
}, |
||||
|
} as const; |
@ -0,0 +1,19 @@ |
|||||
|
/* generated using openapi-typescript-codegen -- do no edit */ |
||||
|
/* istanbul ignore file */ |
||||
|
/* tslint:disable */ |
||||
|
/* eslint-disable */ |
||||
|
export const $ItemOut = { |
||||
|
properties: { |
||||
|
title: { |
||||
|
type: 'string', |
||||
|
isRequired: true, |
||||
|
}, |
||||
|
description: { |
||||
|
type: 'string', |
||||
|
}, |
||||
|
id: { |
||||
|
type: 'number', |
||||
|
isRequired: true, |
||||
|
}, |
||||
|
}, |
||||
|
} as const; |
@ -0,0 +1,14 @@ |
|||||
|
/* generated using openapi-typescript-codegen -- do no edit */ |
||||
|
/* istanbul ignore file */ |
||||
|
/* tslint:disable */ |
||||
|
/* eslint-disable */ |
||||
|
export const $ItemUpdate = { |
||||
|
properties: { |
||||
|
title: { |
||||
|
type: 'string', |
||||
|
}, |
||||
|
description: { |
||||
|
type: 'string', |
||||
|
}, |
||||
|
}, |
||||
|
} as const; |
@ -0,0 +1,12 @@ |
|||||
|
/* generated using openapi-typescript-codegen -- do no edit */ |
||||
|
/* istanbul ignore file */ |
||||
|
/* tslint:disable */ |
||||
|
/* eslint-disable */ |
||||
|
export const $Message = { |
||||
|
properties: { |
||||
|
message: { |
||||
|
type: 'string', |
||||
|
isRequired: true, |
||||
|
}, |
||||
|
}, |
||||
|
} as const; |
@ -0,0 +1,16 @@ |
|||||
|
/* generated using openapi-typescript-codegen -- do no edit */ |
||||
|
/* istanbul ignore file */ |
||||
|
/* tslint:disable */ |
||||
|
/* eslint-disable */ |
||||
|
export const $NewPassword = { |
||||
|
properties: { |
||||
|
token: { |
||||
|
type: 'string', |
||||
|
isRequired: true, |
||||
|
}, |
||||
|
new_password: { |
||||
|
type: 'string', |
||||
|
isRequired: true, |
||||
|
}, |
||||
|
}, |
||||
|
} as const; |
@ -0,0 +1,15 @@ |
|||||
|
/* generated using openapi-typescript-codegen -- do no edit */ |
||||
|
/* istanbul ignore file */ |
||||
|
/* tslint:disable */ |
||||
|
/* eslint-disable */ |
||||
|
export const $Token = { |
||||
|
properties: { |
||||
|
access_token: { |
||||
|
type: 'string', |
||||
|
isRequired: true, |
||||
|
}, |
||||
|
token_type: { |
||||
|
type: 'string', |
||||
|
}, |
||||
|
}, |
||||
|
} as const; |
@ -0,0 +1,26 @@ |
|||||
|
/* generated using openapi-typescript-codegen -- do no edit */ |
||||
|
/* istanbul ignore file */ |
||||
|
/* tslint:disable */ |
||||
|
/* eslint-disable */ |
||||
|
export const $UserCreate = { |
||||
|
properties: { |
||||
|
email: { |
||||
|
type: 'string', |
||||
|
isRequired: true, |
||||
|
format: 'email', |
||||
|
}, |
||||
|
is_active: { |
||||
|
type: 'boolean', |
||||
|
}, |
||||
|
is_superuser: { |
||||
|
type: 'boolean', |
||||
|
}, |
||||
|
full_name: { |
||||
|
type: 'string', |
||||
|
}, |
||||
|
password: { |
||||
|
type: 'string', |
||||
|
isRequired: true, |
||||
|
}, |
||||
|
}, |
||||
|
} as const; |
@ -0,0 +1,20 @@ |
|||||
|
/* generated using openapi-typescript-codegen -- do no edit */ |
||||
|
/* istanbul ignore file */ |
||||
|
/* tslint:disable */ |
||||
|
/* eslint-disable */ |
||||
|
export const $UserCreateOpen = { |
||||
|
properties: { |
||||
|
email: { |
||||
|
type: 'string', |
||||
|
isRequired: true, |
||||
|
format: 'email', |
||||
|
}, |
||||
|
password: { |
||||
|
type: 'string', |
||||
|
isRequired: true, |
||||
|
}, |
||||
|
full_name: { |
||||
|
type: 'string', |
||||
|
}, |
||||
|
}, |
||||
|
} as const; |
@ -0,0 +1,26 @@ |
|||||
|
/* generated using openapi-typescript-codegen -- do no edit */ |
||||
|
/* istanbul ignore file */ |
||||
|
/* tslint:disable */ |
||||
|
/* eslint-disable */ |
||||
|
export const $UserOut = { |
||||
|
properties: { |
||||
|
email: { |
||||
|
type: 'string', |
||||
|
isRequired: true, |
||||
|
format: 'email', |
||||
|
}, |
||||
|
is_active: { |
||||
|
type: 'boolean', |
||||
|
}, |
||||
|
is_superuser: { |
||||
|
type: 'boolean', |
||||
|
}, |
||||
|
full_name: { |
||||
|
type: 'string', |
||||
|
}, |
||||
|
id: { |
||||
|
type: 'number', |
||||
|
isRequired: true, |
||||
|
}, |
||||
|
}, |
||||
|
} as const; |
@ -0,0 +1,24 @@ |
|||||
|
/* generated using openapi-typescript-codegen -- do no edit */ |
||||
|
/* istanbul ignore file */ |
||||
|
/* tslint:disable */ |
||||
|
/* eslint-disable */ |
||||
|
export const $UserUpdate = { |
||||
|
properties: { |
||||
|
email: { |
||||
|
type: 'string', |
||||
|
format: 'email', |
||||
|
}, |
||||
|
is_active: { |
||||
|
type: 'boolean', |
||||
|
}, |
||||
|
is_superuser: { |
||||
|
type: 'boolean', |
||||
|
}, |
||||
|
full_name: { |
||||
|
type: 'string', |
||||
|
}, |
||||
|
password: { |
||||
|
type: 'string', |
||||
|
}, |
||||
|
}, |
||||
|
} as const; |
@ -0,0 +1,18 @@ |
|||||
|
/* generated using openapi-typescript-codegen -- do no edit */ |
||||
|
/* istanbul ignore file */ |
||||
|
/* tslint:disable */ |
||||
|
/* eslint-disable */ |
||||
|
export const $UserUpdateMe = { |
||||
|
properties: { |
||||
|
password: { |
||||
|
type: 'string', |
||||
|
}, |
||||
|
full_name: { |
||||
|
type: 'string', |
||||
|
}, |
||||
|
email: { |
||||
|
type: 'string', |
||||
|
format: 'email', |
||||
|
}, |
||||
|
}, |
||||
|
} as const; |
@ -0,0 +1,28 @@ |
|||||
|
/* generated using openapi-typescript-codegen -- do no edit */ |
||||
|
/* istanbul ignore file */ |
||||
|
/* tslint:disable */ |
||||
|
/* eslint-disable */ |
||||
|
export const $ValidationError = { |
||||
|
properties: { |
||||
|
loc: { |
||||
|
type: 'array', |
||||
|
contains: { |
||||
|
type: 'any-of', |
||||
|
contains: [{ |
||||
|
type: 'string', |
||||
|
}, { |
||||
|
type: 'number', |
||||
|
}], |
||||
|
}, |
||||
|
isRequired: true, |
||||
|
}, |
||||
|
msg: { |
||||
|
type: 'string', |
||||
|
isRequired: true, |
||||
|
}, |
||||
|
type: { |
||||
|
type: 'string', |
||||
|
isRequired: true, |
||||
|
}, |
||||
|
}, |
||||
|
} as const; |
Loading…
Reference in new issue