fix schema split

This commit is contained in:
Christian Fehmer 2025-07-25 11:41:28 +02:00
parent e4356c5653
commit 3ca2a333c0
No known key found for this signature in database
GPG key ID: FE53784A69964062
2 changed files with 2 additions and 2 deletions

View file

@ -14,7 +14,7 @@ import * as UserDal from "../../dal/user";
import { replaceObjectId, replaceObjectIds } from "../../utils/misc";
import MonkeyError from "../../utils/error";
import { omit } from "lodash";
import { FriendRequest } from "@monkeytype/contracts/schemas/friends";
import { FriendRequest } from "@monkeytype/schemas/friends";
export async function getRequests(
req: MonkeyRequest<GetFriendRequestsQuery>

View file

@ -4,7 +4,7 @@ import {
Friend,
FriendRequest,
FriendRequestStatus,
} from "@monkeytype/contracts/schemas/friends";
} from "@monkeytype/schemas/friends";
import MonkeyError from "../utils/error";
import { WithObjectId } from "../utils/misc";