♻️ Regenerate frontend client (#1156)

This commit is contained in:
Alejandra
2024-04-06 18:26:12 -05:00
committed by GitHub
parent e5670212ea
commit b92de6eb4f
14 changed files with 61 additions and 61 deletions

View File

@@ -22,7 +22,7 @@ export type ItemCreate = {
export type ItemOut = {
export type ItemPublic = {
title: string;
description?: string | null;
id: number;
@@ -38,8 +38,8 @@ export type ItemUpdate = {
export type ItemsOut = {
data: Array<ItemOut>;
export type ItemsPublic = {
data: Array<ItemPublic>;
count: number;
};
@@ -82,7 +82,7 @@ export type UserCreate = {
export type UserOut = {
export type UserPublic = {
email: string;
is_active?: boolean;
is_superuser?: boolean;
@@ -117,8 +117,8 @@ export type UserUpdateMe = {
export type UsersOut = {
data: Array<UserOut>;
export type UsersPublic = {
data: Array<UserPublic>;
count: number;
};