From 1a91a033308ba77f3bc35e47e8770edd9440c49a Mon Sep 17 00:00:00 2001 From: Guillaume Date: Tue, 21 Jan 2025 10:04:15 +0100 Subject: [PATCH] Increase rate limit --- components/plans.tsx | 5 +---- .../docs/latest/mockoon-cloud/api-mock-cloud-deployments.md | 4 ++-- .../docs/v8.3.0/mockoon-cloud/api-mock-cloud-deployments.md | 4 ++-- .../docs/v8.4.0/mockoon-cloud/api-mock-cloud-deployments.md | 4 ++-- .../docs/v9.0.0/mockoon-cloud/api-mock-cloud-deployments.md | 4 ++-- data/pricing.tsx | 6 +++--- 6 files changed, 12 insertions(+), 15 deletions(-) diff --git a/components/plans.tsx b/components/plans.tsx index de331ab2..8c8f1496 100644 --- a/components/plans.tsx +++ b/components/plans.tsx @@ -716,10 +716,7 @@ const PlansView: FunctionComponent<{ Custom - - Request rate limit{' '} - - + Request rate limit {pricing.SOLO.deployReqSQuota}/sec diff --git a/content/docs/latest/mockoon-cloud/api-mock-cloud-deployments.md b/content/docs/latest/mockoon-cloud/api-mock-cloud-deployments.md index 6d0c27e2..64fe14ce 100644 --- a/content/docs/latest/mockoon-cloud/api-mock-cloud-deployments.md +++ b/content/docs/latest/mockoon-cloud/api-mock-cloud-deployments.md @@ -72,11 +72,11 @@ Some **quotas and limits apply** to the cloud deployment feature. Here are the m - **Solo plan**: - 1 cloud deployment. - 50 000 requests per month. - - 3 requests per second (2 request per second during trial). + - 5 requests per second. - **Team plan**: - 3 cloud deployments. - 100 000 requests per month. - - 5 requests per second (2 request per second during trial). + - 10 requests per second. These quotas and limits are subject to change. Please refer to your [account settings](/account/subscription/) for the latest information. diff --git a/content/docs/v8.3.0/mockoon-cloud/api-mock-cloud-deployments.md b/content/docs/v8.3.0/mockoon-cloud/api-mock-cloud-deployments.md index dba64855..8123ee74 100644 --- a/content/docs/v8.3.0/mockoon-cloud/api-mock-cloud-deployments.md +++ b/content/docs/v8.3.0/mockoon-cloud/api-mock-cloud-deployments.md @@ -68,11 +68,11 @@ Some **quotas and limits apply** to the cloud deployment feature. Here are the m - **Solo plan**: - 1 cloud deployment. - 50 000 requests per month. - - 3 requests per second (1 request per second during trial). + - 5 requests per second. - **Team plan**: - 3 cloud deployments. - 100 000 requests per month. - - 5 requests per second (1 request per second during trial). + - 10 requests per second. These quotas and limits are subject to change. Please refer to your [account settings](/account/subscription/) for the latest information. diff --git a/content/docs/v8.4.0/mockoon-cloud/api-mock-cloud-deployments.md b/content/docs/v8.4.0/mockoon-cloud/api-mock-cloud-deployments.md index 7704b2c0..ac766aae 100644 --- a/content/docs/v8.4.0/mockoon-cloud/api-mock-cloud-deployments.md +++ b/content/docs/v8.4.0/mockoon-cloud/api-mock-cloud-deployments.md @@ -68,11 +68,11 @@ Some **quotas and limits apply** to the cloud deployment feature. Here are the m - **Solo plan**: - 1 cloud deployment. - 50 000 requests per month. - - 3 requests per second (1 request per second during trial). + - 5 requests per second. - **Team plan**: - 3 cloud deployments. - 100 000 requests per month. - - 5 requests per second (1 request per second during trial). + - 10 requests per second. These quotas and limits are subject to change. Please refer to your [account settings](/account/subscription/) for the latest information. diff --git a/content/docs/v9.0.0/mockoon-cloud/api-mock-cloud-deployments.md b/content/docs/v9.0.0/mockoon-cloud/api-mock-cloud-deployments.md index 185cfd21..9d502608 100644 --- a/content/docs/v9.0.0/mockoon-cloud/api-mock-cloud-deployments.md +++ b/content/docs/v9.0.0/mockoon-cloud/api-mock-cloud-deployments.md @@ -69,11 +69,11 @@ Some **quotas and limits apply** to the cloud deployment feature. Here are the m - **Solo plan**: - 1 cloud deployment. - 50 000 requests per month. - - 3 requests per second (1 request per second during trial). + - 5 requests per second. - **Team plan**: - 3 cloud deployments. - 100 000 requests per month. - - 5 requests per second (1 request per second during trial). + - 10 requests per second. These quotas and limits are subject to change. Please refer to your [account settings](/account/subscription/) for the latest information. diff --git a/data/pricing.tsx b/data/pricing.tsx index 36314c79..589f6171 100644 --- a/data/pricing.tsx +++ b/data/pricing.tsx @@ -13,7 +13,7 @@ export const pricing = { syncQuota: 5, deployQuota: 1, deployCallsQuota: 50_000, - deployReqSQuota: 3, + deployReqSQuota: 5, discount: '🏷️ 2 months free' }, TEAM: { @@ -30,7 +30,7 @@ export const pricing = { syncQuota: 10, deployQuota: 3, deployCallsQuota: 100_000, - deployReqSQuota: 5, + deployReqSQuota: 10, discount: '🏷️ 2 months free', minSeats: 1, maxSeats: 10 @@ -49,7 +49,7 @@ export const pricing = { syncQuota: 20, deployQuota: 5, deployCallsQuota: 250_000, - deployReqSQuota: 10, + deployReqSQuota: 20, discount: null, minSeats: 1, maxSeats: 99