@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/auth.d.mts +115 -3
- package/dist/auth.d.ts +115 -3
- package/dist/auth.js +81 -0
- package/dist/auth.js.map +1 -1
- package/dist/auth.mjs +76 -0
- package/dist/auth.mjs.map +1 -1
- package/dist/email-templates.js +13 -6
- package/dist/email-templates.js.map +1 -1
- package/dist/email-templates.mjs +13 -6
- package/dist/email-templates.mjs.map +1 -1
- package/dist/{env-DHPZR3Lv.d.mts → env-CYKVNpLl.d.mts} +6 -0
- package/dist/{env-DHPZR3Lv.d.ts → env-CYKVNpLl.d.ts} +6 -0
- package/dist/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +6 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +6 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
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() {
|