summaryrefslogtreecommitdiff
path: root/src-migrate/types/auth.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src-migrate/types/auth.ts')
-rw-r--r--src-migrate/types/auth.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src-migrate/types/auth.ts b/src-migrate/types/auth.ts
index 4f69bb96..02e3623d 100644
--- a/src-migrate/types/auth.ts
+++ b/src-migrate/types/auth.ts
@@ -1,5 +1,5 @@
import { registerSchema } from '~/validations/auth';
-import { OdooApiProps } from './odoo';
+import { OdooApiRes } from './odoo';
import { z } from 'zod';
export type AuthProps = {
@@ -17,7 +17,7 @@ export type AuthProps = {
token: string;
};
-export type AuthApiProps = OdooApiProps & { result: AuthProps };
+export type AuthApiProps = OdooApiRes<AuthProps>;
export type RegisterProps = z.infer<typeof registerSchema>;