fix: increase global API rate limits to 1000/min

This commit is contained in:
Lucas Smith
2026-07-08 17:07:31 +10:00
parent 1b1e3d197b
commit c6b797a6ce
7 changed files with 24 additions and 14 deletions
@@ -84,19 +84,19 @@ export const syncSubscriptionRateLimit = createRateLimit({
export const apiV1RateLimit = createRateLimit({
action: 'api.v1',
max: 100,
max: 1000,
window: '1m',
});
export const apiV2RateLimit = createRateLimit({
action: 'api.v2',
max: 100,
max: 1000,
window: '1m',
});
export const apiTrpcRateLimit = createRateLimit({
action: 'api.trpc',
max: 100,
max: 1000,
window: '1m',
});