@mintlify/models
Advanced tools
@@ -1,2 +0,3 @@ | ||
| export declare const CreditTierIds: readonly ["tier-5000", "tier-15250", "tier-31000", "tier-57500", "tier-85000", "tier-113500", "tier-280000", "tier-560000", "tier-855000", "tier-1155000"]; | ||
| import type { PlanTypeV2 } from '../entities/orgType.js'; | ||
| export declare const CreditTierIds: readonly ["tier-0", "tier-5000", "tier-10250", "tier-15250", "tier-26000", "tier-31000", "tier-52500", "tier-57500", "tier-80000", "tier-85000", "tier-108500", "tier-113500", "tier-275000", "tier-280000", "tier-555000", "tier-560000", "tier-850000", "tier-855000", "tier-1150000", "tier-1155000"]; | ||
| export type CreditTierId = (typeof CreditTierIds)[number]; | ||
@@ -7,4 +8,5 @@ export type CreditTierConfig = { | ||
| monthlyPrice: number; | ||
| validPlans: PlanTypeV2[]; | ||
| }; | ||
| export declare const CREDIT_TIER_OVERAGE_PRICE_PER_CREDIT = 0.01; | ||
| export declare const CREDIT_TIERS: Record<CreditTierId, CreditTierConfig>; |
| export const CreditTierIds = [ | ||
| 'tier-0', | ||
| 'tier-5000', | ||
| 'tier-10250', | ||
| 'tier-15250', | ||
| 'tier-26000', | ||
| 'tier-31000', | ||
| 'tier-52500', | ||
| 'tier-57500', | ||
| 'tier-80000', | ||
| 'tier-85000', | ||
| 'tier-108500', | ||
| 'tier-113500', | ||
| 'tier-275000', | ||
| 'tier-280000', | ||
| 'tier-555000', | ||
| 'tier-560000', | ||
| 'tier-850000', | ||
| 'tier-855000', | ||
| 'tier-1150000', | ||
| 'tier-1155000', | ||
@@ -15,2 +25,8 @@ ]; | ||
| export const CREDIT_TIERS = { | ||
| 'tier-0': { | ||
| name: '0', | ||
| credits: 0, | ||
| monthlyPrice: 0, | ||
| validPlans: ['hobby'], | ||
| }, | ||
| 'tier-5000': { | ||
@@ -20,3 +36,10 @@ name: '5,000', | ||
| monthlyPrice: 0, | ||
| validPlans: ['pro', 'proJul25', 'growth', 'enterprise'], | ||
| }, | ||
| 'tier-10250': { | ||
| name: '10,250', | ||
| credits: 10250, | ||
| monthlyPrice: 100, | ||
| validPlans: ['hobby'], | ||
| }, | ||
| 'tier-15250': { | ||
@@ -26,3 +49,10 @@ name: '15,250', | ||
| monthlyPrice: 100, | ||
| validPlans: ['pro', 'proJul25', 'growth', 'enterprise'], | ||
| }, | ||
| 'tier-26000': { | ||
| name: '26,000', | ||
| credits: 26000, | ||
| monthlyPrice: 250, | ||
| validPlans: ['hobby'], | ||
| }, | ||
| 'tier-31000': { | ||
@@ -32,3 +62,10 @@ name: '31,000', | ||
| monthlyPrice: 250, | ||
| validPlans: ['pro', 'proJul25', 'growth', 'enterprise'], | ||
| }, | ||
| 'tier-52500': { | ||
| name: '52,500', | ||
| credits: 52500, | ||
| monthlyPrice: 500, | ||
| validPlans: ['hobby'], | ||
| }, | ||
| 'tier-57500': { | ||
@@ -38,3 +75,10 @@ name: '57,500', | ||
| monthlyPrice: 500, | ||
| validPlans: ['pro', 'proJul25', 'growth', 'enterprise'], | ||
| }, | ||
| 'tier-80000': { | ||
| name: '80,000', | ||
| credits: 80000, | ||
| monthlyPrice: 750, | ||
| validPlans: ['hobby'], | ||
| }, | ||
| 'tier-85000': { | ||
@@ -44,3 +88,10 @@ name: '85,000', | ||
| monthlyPrice: 750, | ||
| validPlans: ['pro', 'proJul25', 'growth', 'enterprise'], | ||
| }, | ||
| 'tier-108500': { | ||
| name: '108,500', | ||
| credits: 108500, | ||
| monthlyPrice: 1000, | ||
| validPlans: ['hobby'], | ||
| }, | ||
| 'tier-113500': { | ||
@@ -50,3 +101,10 @@ name: '113,500', | ||
| monthlyPrice: 1000, | ||
| validPlans: ['pro', 'proJul25', 'growth', 'enterprise'], | ||
| }, | ||
| 'tier-275000': { | ||
| name: '275,000', | ||
| credits: 275000, | ||
| monthlyPrice: 2500, | ||
| validPlans: ['hobby'], | ||
| }, | ||
| 'tier-280000': { | ||
@@ -56,3 +114,10 @@ name: '280,000', | ||
| monthlyPrice: 2500, | ||
| validPlans: ['pro', 'proJul25', 'growth', 'enterprise'], | ||
| }, | ||
| 'tier-555000': { | ||
| name: '555,000', | ||
| credits: 555000, | ||
| monthlyPrice: 5000, | ||
| validPlans: ['hobby'], | ||
| }, | ||
| 'tier-560000': { | ||
@@ -62,3 +127,10 @@ name: '560,000', | ||
| monthlyPrice: 5000, | ||
| validPlans: ['pro', 'proJul25', 'growth', 'enterprise'], | ||
| }, | ||
| 'tier-850000': { | ||
| name: '850,000', | ||
| credits: 850000, | ||
| monthlyPrice: 7500, | ||
| validPlans: ['hobby'], | ||
| }, | ||
| 'tier-855000': { | ||
@@ -68,3 +140,10 @@ name: '855,000', | ||
| monthlyPrice: 7500, | ||
| validPlans: ['pro', 'proJul25', 'growth', 'enterprise'], | ||
| }, | ||
| 'tier-1150000': { | ||
| name: '1,150,000', | ||
| credits: 1150000, | ||
| monthlyPrice: 10000, | ||
| validPlans: ['hobby'], | ||
| }, | ||
| 'tier-1155000': { | ||
@@ -74,3 +153,4 @@ name: '1,155,000', | ||
| monthlyPrice: 10000, | ||
| validPlans: ['pro', 'proJul25', 'growth', 'enterprise'], | ||
| }, | ||
| }; |
+2
-2
| { | ||
| "name": "@mintlify/models", | ||
| "version": "0.0.306", | ||
| "version": "0.0.307", | ||
| "description": "Mintlify models", | ||
@@ -62,3 +62,3 @@ "engines": { | ||
| }, | ||
| "gitHead": "769327d4ce51c1fc8c3a513fda73e75402c9fce0" | ||
| "gitHead": "6df69567bf16f50f1df728f18344b98f9a422f0c" | ||
| } |
Sorry, the diff of this file is not supported yet
227400
1.07%2534
3.39%