123
This commit is contained in:
@ -1,5 +1,3 @@
|
|||||||
version: '3.8'
|
|
||||||
|
|
||||||
services:
|
services:
|
||||||
postgres:
|
postgres:
|
||||||
image: pgvector/pgvector:pg16
|
image: pgvector/pgvector:pg16
|
||||||
|
|||||||
@ -5,7 +5,7 @@
|
|||||||
"main": "./dist/index.js",
|
"main": "./dist/index.js",
|
||||||
"types": "./dist/index.d.ts",
|
"types": "./dist/index.d.ts",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "tsc",
|
"build": "prisma generate && tsc",
|
||||||
"clean": "rm -rf dist .turbo",
|
"clean": "rm -rf dist .turbo",
|
||||||
"dev": "tsc --watch",
|
"dev": "tsc --watch",
|
||||||
"db:generate": "prisma generate",
|
"db:generate": "prisma generate",
|
||||||
|
|||||||
@ -154,8 +154,8 @@ export interface CourseOutline {
|
|||||||
tags: string[];
|
tags: string[];
|
||||||
}
|
}
|
||||||
|
|
||||||
// Subscription types
|
// Subscription types (API response shape; for display plans see constants SUBSCRIPTION_PLANS)
|
||||||
export interface SubscriptionPlan {
|
export interface SubscriptionPlanApi {
|
||||||
tier: SubscriptionTierType;
|
tier: SubscriptionTierType;
|
||||||
name: string;
|
name: string;
|
||||||
description: string;
|
description: string;
|
||||||
|
|||||||
Reference in New Issue
Block a user