add: 4x pro plan
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
export type Plan = "free" | "pro" | "lifetime";
|
||||
export type Plan = "free" | "pro" | "pro4x" | "lifetime";
|
||||
|
||||
export interface PlanLimits {
|
||||
maxMonitors: number;
|
||||
@@ -17,6 +17,11 @@ const PLANS: Record<Plan, PlanLimits> = {
|
||||
minIntervalS: 2,
|
||||
maxRegions: 99,
|
||||
},
|
||||
pro4x: {
|
||||
maxMonitors: 800,
|
||||
minIntervalS: 2,
|
||||
maxRegions: 99,
|
||||
},
|
||||
lifetime: {
|
||||
maxMonitors: 200,
|
||||
minIntervalS: 2,
|
||||
|
||||
Reference in New Issue
Block a user