From 8ae0aa5d2a943764ed9d7d27e1e898e312f75504 Mon Sep 17 00:00:00 2001 From: Emily Date: Wed, 5 Jun 2024 16:14:00 +0200 Subject: [PATCH] add custom price --- shared/data/PREMIUM.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/shared/data/PREMIUM.ts b/shared/data/PREMIUM.ts index 5e0b5b7..84cf5f7 100644 --- a/shared/data/PREMIUM.ts +++ b/shared/data/PREMIUM.ts @@ -2,7 +2,7 @@ export type PREMIUM_TAG = typeof PREMIUM_TAGS[number]; export const PREMIUM_TAGS = [ - 'FREE', 'PLAN_1', 'PLAN_2', 'PLAN_99' + 'FREE', 'PLAN_1', 'PLAN_2', 'CUSTOM_1' ] as const; @@ -36,11 +36,11 @@ export const PREMIUM_PLAN: Record = { PRICE: 'price_1POKCKB2lPUiVs9Vol8XOmhW', PRICE_TEST: '' }, - PLAN_99: { - ID: 99, + CUSTOM_1: { + ID: 1001, COUNT_LIMIT: 10_000_000, AI_MESSAGE_LIMIT: 100_000, - PRICE: '', + PRICE: 'price_1POKZyB2lPUiVs9VMAY6jXTV', PRICE_TEST: '' } }