From dc9b1b4dd2b7a1062ed3ceb48be3bbafd4d53fb4 Mon Sep 17 00:00:00 2001 From: Rafi Zadanly Date: Fri, 24 Nov 2023 10:26:06 +0700 Subject: Move @prisma/client import to prisma/generated/client --- src/common/types/auth.ts | 2 +- src/common/types/stockOpname.ts | 2 +- src/common/types/team.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) (limited to 'src/common/types') diff --git a/src/common/types/auth.ts b/src/common/types/auth.ts index 50d176f..ecda60c 100644 --- a/src/common/types/auth.ts +++ b/src/common/types/auth.ts @@ -1,4 +1,4 @@ -import { Company, User } from "@prisma/client"; +import { Company, User } from "prisma/generated/client"; export type Credential = User & { company: Company; diff --git a/src/common/types/stockOpname.ts b/src/common/types/stockOpname.ts index 762722a..0eea0c5 100644 --- a/src/common/types/stockOpname.ts +++ b/src/common/types/stockOpname.ts @@ -1,4 +1,4 @@ -import { Location, Team, User } from "@prisma/client"; +import { Location, Team, User } from "prisma/generated/client"; export type DetailTeam = { [key in keyof typeof Team]: { diff --git a/src/common/types/team.ts b/src/common/types/team.ts index 0989337..768c774 100644 --- a/src/common/types/team.ts +++ b/src/common/types/team.ts @@ -1,4 +1,4 @@ -import { Team } from "@prisma/client"; +import { Team } from "prisma/generated/client"; export type TeamAliases = { [key in keyof typeof Team]: { -- cgit v1.2.3