fix: add back types until merged into main
parent
fdc46fac7d
commit
d103776846
|
@ -1,8 +1,20 @@
|
||||||
|
import type { IncomingMessage } from "http";
|
||||||
import { NextMiddleware } from "next-api-middleware";
|
import { NextMiddleware } from "next-api-middleware";
|
||||||
|
|
||||||
import { hashAPIKey } from "@calcom/ee/lib/api/apiKeys";
|
import { hashAPIKey } from "@calcom/ee/lib/api/apiKeys";
|
||||||
import prisma from "@calcom/prisma";
|
import prisma from "@calcom/prisma";
|
||||||
|
|
||||||
|
/** @todo figure how to use the one from `@calcom/types`fi */
|
||||||
|
/** @todo: remove once `@calcom/types` is updated with it.*/
|
||||||
|
declare module "next" {
|
||||||
|
export interface NextApiRequest extends IncomingMessage {
|
||||||
|
userId: number;
|
||||||
|
query: {
|
||||||
|
apiKey: string;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Used to check if the apiKey is not expired, could be extracted if reused. but not for now.
|
// Used to check if the apiKey is not expired, could be extracted if reused. but not for now.
|
||||||
export const dateNotInPast = function (date: Date) {
|
export const dateNotInPast = function (date: Date) {
|
||||||
const now = new Date();
|
const now = new Date();
|
||||||
|
|
Loading…
Reference in New Issue