Add back vc auth temporarily to unblock things

This commit is contained in:
Jared Palmer 2023-05-19 14:13:38 -04:00
parent 07c2e7d36a
commit 177b2cc210
20 changed files with 350 additions and 40 deletions

13
lib/session/types.ts Normal file
View file

@ -0,0 +1,13 @@
import { BillingPlan } from './create';
export interface Session {
vercelToken: string;
user: {
id: string;
username: string;
email: string;
avatar: string;
name?: string;
plan: BillingPlan;
};
}