- 로또 번호 추천 구독자 전용 페이지 (/services/lotto/recommend) - NAS 몬테카를로 API 연동 + 클라이언트 사이드 폴백 - 무료 미리보기 1개 + 구독자용 프리미엄 번호 추천 - 구독 플랜 변경: 골드(900원)/플래티넘(2,900원)/다이아(9,900원) - 텔레그램 봇 연동: 연결/해제, 웹훅, /start 명령 처리 - 마이페이지 텔레그램 연결 UI + 가이드 모달 - 관리자 페이지 (/admin): 대시보드, 회원, 서비스, 문의 관리 - Supabase 마이그레이션: profiles 텔레그램 컬럼, 신규 상품 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
67 lines
1.7 KiB
TypeScript
67 lines
1.7 KiB
TypeScript
export interface Product {
|
|
id: string;
|
|
name: string;
|
|
price: number;
|
|
type: 'one_time' | 'monthly' | 'annual';
|
|
description: string;
|
|
}
|
|
|
|
export const PRODUCTS: Record<string, Product> = {
|
|
lotto_gold: {
|
|
id: 'lotto_gold',
|
|
name: '로또 골드 플랜',
|
|
price: 900,
|
|
type: 'monthly',
|
|
description: '매주 1회 번호 추천 · 이메일 발송',
|
|
},
|
|
lotto_platinum: {
|
|
id: 'lotto_platinum',
|
|
name: '로또 플래티넘 플랜',
|
|
price: 2900,
|
|
type: 'monthly',
|
|
description: '매주 3회 번호 + 텔레그램 알림 + 상세 분석',
|
|
},
|
|
lotto_diamond: {
|
|
id: 'lotto_diamond',
|
|
name: '로또 다이아 플랜',
|
|
price: 9900,
|
|
type: 'monthly',
|
|
description: '횟수 무제한 + 연간 패턴 리포트 + 전체 기능',
|
|
},
|
|
stock_starter_install: {
|
|
id: 'stock_starter_install',
|
|
name: '주식 스타터 설치',
|
|
price: 99000,
|
|
type: 'one_time',
|
|
description: '1개 종목 자동 매매 설치',
|
|
},
|
|
stock_pro_install: {
|
|
id: 'stock_pro_install',
|
|
name: '주식 프로 설치',
|
|
price: 199000,
|
|
type: 'one_time',
|
|
description: '5개 종목 + 전략 커스터마이징 설치',
|
|
},
|
|
stock_starter_monthly: {
|
|
id: 'stock_starter_monthly',
|
|
name: '주식 스타터 월 유지비',
|
|
price: 29000,
|
|
type: 'monthly',
|
|
description: '스타터 월 유지보수 비용',
|
|
},
|
|
stock_pro_monthly: {
|
|
id: 'stock_pro_monthly',
|
|
name: '주식 프로 월 유지비',
|
|
price: 49000,
|
|
type: 'monthly',
|
|
description: '프로 월 유지보수 비용',
|
|
},
|
|
saju_detail: {
|
|
id: 'saju_detail',
|
|
name: 'AI 사주 상세 리포트',
|
|
price: 4900,
|
|
type: 'one_time',
|
|
description: 'AI 12가지 항목 상세 해석',
|
|
},
|
|
};
|