@nest-boot/graphql-rate-limit 7.0.3 → 7.0.4
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/complexities/connection.complexity.d.ts +10 -0
- package/dist/complexities/connection.complexity.js +10 -0
- package/dist/complexities/connection.complexity.js.map +1 -1
- package/dist/decorators/complexity.decorator.d.ts +8 -0
- package/dist/decorators/complexity.decorator.js +5 -0
- package/dist/decorators/complexity.decorator.js.map +1 -1
- package/dist/graphql-rate-limit.module-definition.d.ts +15 -1
- package/dist/graphql-rate-limit.module-definition.js +15 -1
- package/dist/graphql-rate-limit.module-definition.js.map +1 -1
- package/dist/graphql-rate-limit.module.d.ts +21 -1
- package/dist/graphql-rate-limit.module.js +23 -0
- package/dist/graphql-rate-limit.module.js.map +1 -1
- package/dist/graphql-rate-limit.plugin.js +5 -5
- package/dist/graphql-rate-limit.plugin.js.map +1 -1
- package/dist/graphql-rate-limit.storage.js +9 -9
- package/dist/interfaces/cost-response.interface.d.ts +9 -0
- package/dist/interfaces/graphql-rate-limit-module-options.interface.d.ts +1 -0
- package/dist/interfaces/graphql-rate-limit-options.interface.d.ts +8 -0
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +22 -13
package/package.json
CHANGED
|
@@ -1,8 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nest-boot/graphql-rate-limit",
|
|
3
|
-
"version": "7.0.
|
|
3
|
+
"version": "7.0.4",
|
|
4
|
+
"repository": {
|
|
5
|
+
"type": "git",
|
|
6
|
+
"url": "https://github.com/nest-boot/nest-boot.git",
|
|
7
|
+
"directory": "packages/graphql-rate-limit"
|
|
8
|
+
},
|
|
4
9
|
"description": "",
|
|
5
|
-
"author":
|
|
10
|
+
"author": {
|
|
11
|
+
"name": "Xudong Huang",
|
|
12
|
+
"email": "me@huangxudong.com",
|
|
13
|
+
"url": "https://www.huangxudong.com/"
|
|
14
|
+
},
|
|
6
15
|
"homepage": "",
|
|
7
16
|
"license": "MIT",
|
|
8
17
|
"main": "dist/index.js",
|
|
@@ -15,15 +24,15 @@
|
|
|
15
24
|
],
|
|
16
25
|
"devDependencies": {
|
|
17
26
|
"@apollo/server": "^5.2.0",
|
|
18
|
-
"@nestjs/apollo": "^13.2.
|
|
19
|
-
"@nestjs/common": "^11.1.
|
|
20
|
-
"@nestjs/core": "^11.1.
|
|
21
|
-
"@nestjs/graphql": "^13.2.
|
|
22
|
-
"@nestjs/testing": "^11.1.
|
|
27
|
+
"@nestjs/apollo": "^13.2.3",
|
|
28
|
+
"@nestjs/common": "^11.1.11",
|
|
29
|
+
"@nestjs/core": "^11.1.11",
|
|
30
|
+
"@nestjs/graphql": "^13.2.3",
|
|
31
|
+
"@nestjs/testing": "^11.1.11",
|
|
23
32
|
"@types/express": "^5.0.3",
|
|
24
33
|
"@types/jest": "^29.5.14",
|
|
25
34
|
"@types/node": "^22.18.6",
|
|
26
|
-
"eslint": "^9.
|
|
35
|
+
"eslint": "^9.39.2",
|
|
27
36
|
"express": "^5.1.0",
|
|
28
37
|
"graphql": "^16.11.0",
|
|
29
38
|
"graphql-query-complexity": "^1.1.0",
|
|
@@ -33,11 +42,11 @@
|
|
|
33
42
|
"rxjs": "^7.8.2",
|
|
34
43
|
"ts-jest": "^29.4.4",
|
|
35
44
|
"typescript": "^5.9.3",
|
|
36
|
-
"@nest-boot/eslint-config": "^7.0.
|
|
37
|
-
"@nest-boot/eslint-plugin": "^7.0.
|
|
38
|
-
"@nest-boot/graphql": "^7.1.
|
|
39
|
-
"@nest-boot/
|
|
40
|
-
"@nest-boot/
|
|
45
|
+
"@nest-boot/eslint-config": "^7.0.3",
|
|
46
|
+
"@nest-boot/eslint-plugin": "^7.0.5",
|
|
47
|
+
"@nest-boot/graphql": "^7.1.3",
|
|
48
|
+
"@nest-boot/tsconfig": "^7.0.1",
|
|
49
|
+
"@nest-boot/redis": "^7.0.3"
|
|
41
50
|
},
|
|
42
51
|
"peerDependencies": {
|
|
43
52
|
"@apollo/server": "^5.0.0",
|