This commit is contained in:
2026-02-06 02:28:38 +03:00
parent 6ccdef56d3
commit 24e1b8a708
3 changed files with 3 additions and 5 deletions

View File

@ -1,5 +1,3 @@
version: '3.8'
services: services:
postgres: postgres:
image: pgvector/pgvector:pg16 image: pgvector/pgvector:pg16

View File

@ -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",

View File

@ -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;