@digilogiclabs/platform-core 1.9.0 → 1.10.0

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/index.mjs CHANGED
@@ -18559,6 +18559,12 @@ var CommonRateLimits = {
18559
18559
  limit: 10,
18560
18560
  windowSeconds: 3600,
18561
18561
  blockDurationSeconds: 3600
18562
+ },
18563
+ /** Beta code validation: 5/min with 5min block (prevents brute force guessing) */
18564
+ betaValidation: {
18565
+ limit: 5,
18566
+ windowSeconds: 60,
18567
+ blockDurationSeconds: 300
18562
18568
  }
18563
18569
  };
18564
18570
  function createMemoryRateLimitStore() {