@nest-boot/file-upload 7.1.2 → 7.1.3
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/file-upload-field.object.d.ts +3 -0
- package/dist/file-upload-field.object.js +1 -0
- package/dist/file-upload-field.object.js.map +1 -1
- package/dist/file-upload-options.interface.d.ts +9 -0
- package/dist/file-upload.module.d.ts +21 -1
- package/dist/file-upload.module.js +23 -0
- package/dist/file-upload.module.js.map +1 -1
- package/dist/file-upload.object.d.ts +3 -0
- package/dist/file-upload.object.js +1 -0
- package/dist/file-upload.object.js.map +1 -1
- package/dist/file-upload.service.d.ts +29 -1
- package/dist/file-upload.service.js +28 -8
- package/dist/file-upload.service.js.map +1 -1
- package/dist/index.d.ts +4 -0
- package/dist/index.js +4 -0
- package/dist/index.js.map +1 -1
- package/dist/inputs/file-upload.input.d.ts +4 -0
- package/dist/inputs/file-upload.input.js +1 -0
- package/dist/inputs/file-upload.input.js.map +1 -1
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +21 -12
package/package.json
CHANGED
|
@@ -1,8 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nest-boot/file-upload",
|
|
3
|
-
"version": "7.1.
|
|
3
|
+
"version": "7.1.3",
|
|
4
|
+
"repository": {
|
|
5
|
+
"type": "git",
|
|
6
|
+
"url": "https://github.com/nest-boot/nest-boot.git",
|
|
7
|
+
"directory": "packages/file-upload"
|
|
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",
|
|
@@ -25,13 +34,13 @@
|
|
|
25
34
|
"@as-integrations/express5": "^1.1.2",
|
|
26
35
|
"@aws-sdk/client-s3": "^3.896.0",
|
|
27
36
|
"@aws-sdk/s3-presigned-post": "^3.896.0",
|
|
28
|
-
"@nestjs/apollo": "^13.2.
|
|
29
|
-
"@nestjs/common": "^11.1.
|
|
37
|
+
"@nestjs/apollo": "^13.2.3",
|
|
38
|
+
"@nestjs/common": "^11.1.11",
|
|
30
39
|
"@nestjs/config": "^4.0.2",
|
|
31
|
-
"@nestjs/core": "^11.1.
|
|
32
|
-
"@nestjs/graphql": "^13.2.
|
|
33
|
-
"@nestjs/platform-express": "^11.1.
|
|
34
|
-
"@nestjs/testing": "^11.1.
|
|
40
|
+
"@nestjs/core": "^11.1.11",
|
|
41
|
+
"@nestjs/graphql": "^13.2.3",
|
|
42
|
+
"@nestjs/platform-express": "^11.1.11",
|
|
43
|
+
"@nestjs/testing": "^11.1.11",
|
|
35
44
|
"@types/bytes": "^3.1.5",
|
|
36
45
|
"@types/micromatch": "^4.0.9",
|
|
37
46
|
"@types/mime-types": "^2.1.4",
|
|
@@ -39,7 +48,7 @@
|
|
|
39
48
|
"@types/supertest": "^6.0.3",
|
|
40
49
|
"axios": "^1.12.2",
|
|
41
50
|
"bytes": "^3.1.2",
|
|
42
|
-
"eslint": "^9.
|
|
51
|
+
"eslint": "^9.39.2",
|
|
43
52
|
"form-data": "^4.0.4",
|
|
44
53
|
"graphql": "^16.11.0",
|
|
45
54
|
"jest": "^29.7.0",
|
|
@@ -48,9 +57,9 @@
|
|
|
48
57
|
"supertest": "^7.1.4",
|
|
49
58
|
"ts-jest": "^29.4.4",
|
|
50
59
|
"typescript": "^5.9.3",
|
|
51
|
-
"@nest-boot/eslint-config": "^7.0.
|
|
52
|
-
"@nest-boot/eslint-plugin": "^7.0.
|
|
53
|
-
"@nest-boot/graphql": "^7.1.
|
|
60
|
+
"@nest-boot/eslint-config": "^7.0.3",
|
|
61
|
+
"@nest-boot/eslint-plugin": "^7.0.5",
|
|
62
|
+
"@nest-boot/graphql": "^7.1.3",
|
|
54
63
|
"@nest-boot/tsconfig": "^7.0.1"
|
|
55
64
|
},
|
|
56
65
|
"peerDependencies": {
|