This commit is contained in:
2026-08-28 17:31:02 +02:00
commit 2b30e8bd39
694 changed files with 49243 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
import { getAppConfig } from './index';
const {
throttle: { ttlMs }
} = getAppConfig();
export const throttleProfiles = {
checkOrder: { default: { limit: 10, ttl: ttlMs } },
cmsLogin: { default: { limit: 5, ttl: ttlMs } },
walletWithdraw: { default: { limit: 5, ttl: ttlMs } },
walletRevealSeed: { default: { limit: 5, ttl: ttlMs } },
checkoutPay: { default: { limit: 5, ttl: ttlMs } },
cartDiscount: { default: { limit: 10, ttl: ttlMs } },
cartPage: { default: { limit: 40, ttl: ttlMs } }
} as const;