@lynxflow/seo-engine 1.6.3 → 1.6.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/pricing-plans.d.ts +37 -0
- package/package.json +1 -1
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* 💎 LynxSEO Official Enterprise Pricing & Subscription Tiers
|
|
3
|
+
* Defines the 3 core commercial tiers (Pro, Growth, Enterprise/Agency) with feature matrix,
|
|
4
|
+
* monthly/annual billing models, and ROI value calculator.
|
|
5
|
+
*/
|
|
6
|
+
export interface PricingPlan {
|
|
7
|
+
id: "pro" | "growth" | "enterprise";
|
|
8
|
+
name: string;
|
|
9
|
+
badge?: string;
|
|
10
|
+
isPopular?: boolean;
|
|
11
|
+
priceMonthlyEur: number;
|
|
12
|
+
priceAnnualEurMonthly: number;
|
|
13
|
+
description: string;
|
|
14
|
+
limits: {
|
|
15
|
+
sitesAllowed: number | "unlimited";
|
|
16
|
+
maxProgrammaticPages: number | "unlimited";
|
|
17
|
+
languagesIncluded: number | "unlimited";
|
|
18
|
+
monthlyAiBotEvents: number | "unlimited";
|
|
19
|
+
};
|
|
20
|
+
features: string[];
|
|
21
|
+
ctaLabel: string;
|
|
22
|
+
ctaUrl: string;
|
|
23
|
+
}
|
|
24
|
+
export declare const LYNX_PRICING_PLANS: PricingPlan[];
|
|
25
|
+
export interface AgencyCostComparison {
|
|
26
|
+
traditionalAgencyMonthlyEur: number;
|
|
27
|
+
basicAiToolsMonthlyEur: number;
|
|
28
|
+
lynxGrowthMonthlyEur: number;
|
|
29
|
+
monthlyNetSavingsVsAgency: number;
|
|
30
|
+
annualNetSavingsVsAgency: number;
|
|
31
|
+
}
|
|
32
|
+
export declare class PricingPolicyEngine {
|
|
33
|
+
/**
|
|
34
|
+
* Compares the financial ROI of LynxSEO Growth Plan vs Traditional SEO Agencies.
|
|
35
|
+
*/
|
|
36
|
+
static computeAgencySavingsComparison(customAgencyRateEur?: number): AgencyCostComparison;
|
|
37
|
+
}
|