@nextsparkjs/core 0.1.0-beta.98 → 0.1.0-beta.99
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/styles/classes.json
CHANGED
|
@@ -7,6 +7,7 @@ let createRateLimitErrorResponse: ((result: { allowed: boolean; limit: number; r
|
|
|
7
7
|
|
|
8
8
|
// Try to load rate limiting functions
|
|
9
9
|
try {
|
|
10
|
+
// eslint-disable-next-line @typescript-eslint/no-require-imports
|
|
10
11
|
const rateLimitModule = require('@nextsparkjs/core/lib/api');
|
|
11
12
|
checkDistributedRateLimit = rateLimitModule.checkDistributedRateLimit;
|
|
12
13
|
createRateLimitErrorResponse = rateLimitModule.createRateLimitErrorResponse;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nextsparkjs/core",
|
|
3
|
-
"version": "0.1.0-beta.
|
|
3
|
+
"version": "0.1.0-beta.99",
|
|
4
4
|
"description": "NextSpark - The complete SaaS framework for Next.js",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "NextSpark <hello@nextspark.dev>",
|
|
@@ -412,7 +412,7 @@
|
|
|
412
412
|
"tailwind-merge": "^3.3.1",
|
|
413
413
|
"uuid": "^13.0.0",
|
|
414
414
|
"zod": "^4.1.5",
|
|
415
|
-
"@nextsparkjs/testing": "0.1.0-beta.
|
|
415
|
+
"@nextsparkjs/testing": "0.1.0-beta.99"
|
|
416
416
|
},
|
|
417
417
|
"scripts": {
|
|
418
418
|
"postinstall": "node scripts/postinstall.mjs || true",
|
|
@@ -7,6 +7,7 @@ let createRateLimitErrorResponse: ((result: { allowed: boolean; limit: number; r
|
|
|
7
7
|
|
|
8
8
|
// Try to load rate limiting functions
|
|
9
9
|
try {
|
|
10
|
+
// eslint-disable-next-line @typescript-eslint/no-require-imports
|
|
10
11
|
const rateLimitModule = require('@nextsparkjs/core/lib/api');
|
|
11
12
|
checkDistributedRateLimit = rateLimitModule.checkDistributedRateLimit;
|
|
12
13
|
createRateLimitErrorResponse = rateLimitModule.createRateLimitErrorResponse;
|