feat(types): generate new types

This commit is contained in:
Vladislav Syrochkin 2025-06-26 15:04:43 +05:00
parent febac9659f
commit 22064d2b52
2 changed files with 23 additions and 3 deletions

View File

@ -251,6 +251,25 @@ export interface components {
createdAt: string;
status: components["schemas"]["AccountStatus"];
};
/** UserCreate */
UserCreate: {
/** Name */
name?: string | null;
/** Login */
login?: string | null;
/** Email */
email?: string | null;
/** Password */
password?: string | null;
/** Bindtenantid */
bindTenantId?: string | null;
role?: components["schemas"]["AccountRole"] | null;
/** Meta */
meta?: {
[key: string]: unknown;
} | null;
status?: components["schemas"]["AccountStatus"] | null;
};
/** UserUpdate */
UserUpdate: {
/** Id */
@ -439,7 +458,7 @@ export interface operations {
};
requestBody: {
content: {
"application/json": components["schemas"]["UserUpdate"];
"application/json": components["schemas"]["UserCreate"];
};
};
responses: {
@ -449,7 +468,7 @@ export interface operations {
[name: string]: unknown;
};
content: {
"application/json": components["schemas"]["User"];
"application/json": components["schemas"]["AllUser"];
};
};
/** @description Validation Error */
@ -480,7 +499,7 @@ export interface operations {
[name: string]: unknown;
};
content: {
"application/json": components["schemas"]["User"];
"application/json": components["schemas"]["UserUpdate"];
};
};
/** @description Validation Error */

View File

@ -6,3 +6,4 @@ export type AllUser = components['schemas']['AllUser'];
export type AccountStatus = components['schemas']['AccountStatus'];
export type AccountRole = components['schemas']['AccountRole'];
export type UserUpdate = components['schemas']['UserUpdate'];
export type UserCreate = components['schemas']['UserCreate'];