-
-
Notifications
You must be signed in to change notification settings - Fork 8.4k
Expand file tree
/
Copy pathtypes.gen.ts
More file actions
240 lines (180 loc) · 4.65 KB
/
types.gen.ts
File metadata and controls
240 lines (180 loc) · 4.65 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
// This file is auto-generated by @hey-api/openapi-ts
export type Body_login_login_access_token = {
grant_type?: (string | null);
username: string;
password: string;
scope?: string;
client_id?: (string | null);
client_secret?: (string | null);
};
export type HTTPValidationError = {
detail?: Array<ValidationError>;
};
export type ItemCreate = {
title: string;
description?: (string | null);
};
export type ItemPublic = {
title: string;
description?: (string | null);
id: string;
owner_id: string;
created_at?: (string | null);
};
export type ItemsPublic = {
data: Array<ItemPublic>;
count: number;
};
export type ItemUpdate = {
title?: (string | null);
description?: (string | null);
};
export type Message = {
message: string;
};
export type NewPassword = {
token: string;
new_password: string;
};
export type PrivateUserCreate = {
email: string;
password: string;
full_name: string;
is_verified?: boolean;
};
export type Token = {
access_token: string;
token_type?: string;
};
export type UpdatePassword = {
current_password: string;
new_password: string;
};
export type UserCreate = {
email: string;
is_active?: boolean;
is_superuser?: boolean;
full_name?: (string | null);
password: string;
};
export type UserPublic = {
email: string;
is_active?: boolean;
is_superuser?: boolean;
full_name?: (string | null);
id: string;
created_at?: (string | null);
};
export type UserRegister = {
email: string;
password: string;
full_name?: (string | null);
};
export type UsersPublic = {
data: Array<UserPublic>;
count: number;
};
export type UserUpdate = {
email?: (string | null);
is_active?: boolean;
is_superuser?: boolean;
full_name?: (string | null);
password?: (string | null);
};
export type UserUpdateMe = {
full_name?: (string | null);
email?: (string | null);
};
export type ValidationError = {
loc: Array<(string | number)>;
msg: string;
type: string;
input?: unknown;
ctx?: {
[key: string]: unknown;
};
};
export type ItemsReadItemsData = {
limit?: number;
skip?: number;
};
export type ItemsReadItemsResponse = (ItemsPublic);
export type ItemsCreateItemData = {
requestBody: ItemCreate;
};
export type ItemsCreateItemResponse = (ItemPublic);
export type ItemsReadItemData = {
id: string;
};
export type ItemsReadItemResponse = (ItemPublic);
export type ItemsUpdateItemData = {
id: string;
requestBody: ItemUpdate;
};
export type ItemsUpdateItemResponse = (ItemPublic);
export type ItemsDeleteItemData = {
id: string;
};
export type ItemsDeleteItemResponse = (Message);
export type LoginLoginAccessTokenData = {
formData: Body_login_login_access_token;
};
export type LoginLoginAccessTokenResponse = (Token);
export type LoginTestTokenResponse = (UserPublic);
export type LoginRecoverPasswordData = {
email: string;
};
export type LoginRecoverPasswordResponse = (Message);
export type LoginResetPasswordData = {
requestBody: NewPassword;
};
export type LoginResetPasswordResponse = (Message);
export type LoginRecoverPasswordHtmlContentData = {
email: string;
};
export type LoginRecoverPasswordHtmlContentResponse = (string);
export type PrivateCreateUserData = {
requestBody: PrivateUserCreate;
};
export type PrivateCreateUserResponse = (UserPublic);
export type UsersReadUsersData = {
limit?: number;
skip?: number;
};
export type UsersReadUsersResponse = (UsersPublic);
export type UsersCreateUserData = {
requestBody: UserCreate;
};
export type UsersCreateUserResponse = (UserPublic);
export type UsersReadUserMeResponse = (UserPublic);
export type UsersDeleteUserMeResponse = (Message);
export type UsersUpdateUserMeData = {
requestBody: UserUpdateMe;
};
export type UsersUpdateUserMeResponse = (UserPublic);
export type UsersUpdatePasswordMeData = {
requestBody: UpdatePassword;
};
export type UsersUpdatePasswordMeResponse = (Message);
export type UsersRegisterUserData = {
requestBody: UserRegister;
};
export type UsersRegisterUserResponse = (UserPublic);
export type UsersReadUserByIdData = {
userId: string;
};
export type UsersReadUserByIdResponse = (UserPublic);
export type UsersUpdateUserData = {
requestBody: UserUpdate;
userId: string;
};
export type UsersUpdateUserResponse = (UserPublic);
export type UsersDeleteUserData = {
userId: string;
};
export type UsersDeleteUserResponse = (Message);
export type UtilsTestEmailData = {
emailTo: string;
};
export type UtilsTestEmailResponse = (Message);
export type UtilsHealthCheckResponse = (boolean);