@nger/fk-upload 1.0.3 → 1.0.6
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/entities/fk-download-task.entity.d.ts +12 -0
- package/dist/entities/fk-download-task.entity.js +80 -0
- package/dist/entities/fk-login-account.entity.d.ts +5 -0
- package/dist/entities/fk-login-account.entity.js +38 -0
- package/dist/entities/fk-login-cookie.entity.d.ts +7 -0
- package/dist/entities/fk-login-cookie.entity.js +54 -0
- package/dist/entities/fk-login.entity.d.ts +12 -0
- package/dist/entities/fk-login.entity.js +88 -0
- package/dist/entities/index.d.ts +3 -0
- package/dist/entities/index.js +19 -0
- package/dist/fk-upload.controller.d.ts +9 -2
- package/dist/fk-upload.controller.js +91 -32
- package/dist/fk-upload.module.js +35 -2
- package/dist/fk-v2.service.d.ts +29 -0
- package/dist/fk-v2.service.js +153 -0
- package/dist/fk.service.d.ts +14 -0
- package/dist/fk.service.js +66 -1
- package/dist/login.controller.d.ts +14 -0
- package/dist/login.controller.js +211 -0
- package/dist/main.js +3 -1
- package/dist/templates/account-manage.d.ts +3 -0
- package/dist/templates/account-manage.js +27 -0
- package/dist/templates/add-account.d.ts +0 -0
- package/dist/templates/add-account.js +1 -0
- package/dist/templates/add-fk-login.d.ts +6 -0
- package/dist/templates/add-fk-login.js +68 -0
- package/dist/templates/code.d.ts +3 -0
- package/dist/templates/code.js +51 -0
- package/dist/templates/component.d.ts +9 -0
- package/dist/templates/component.js +34 -0
- package/dist/templates/download-task.d.ts +10 -0
- package/dist/templates/download-task.js +183 -0
- package/dist/templates/help.d.ts +7 -0
- package/dist/templates/help.js +88 -0
- package/dist/templates/login.service.d.ts +2 -0
- package/dist/templates/login.service.js +16 -0
- package/dist/templates/relogin.d.ts +5 -0
- package/dist/templates/relogin.js +25 -0
- package/dist/templates/task-manage.d.ts +6 -0
- package/dist/templates/task-manage.js +78 -0
- package/dist/templates/upload-task.d.ts +10 -0
- package/dist/templates/upload-task.js +157 -0
- package/dist/templates/upload.d.ts +15 -0
- package/dist/templates/upload.js +245 -0
- package/dist/templates/verify.d.ts +15 -0
- package/dist/templates/verify.js +75 -0
- package/dist/tests/test.d.ts +3 -0
- package/dist/tests/test.js +101 -0
- package/dist/urlSafeBase64Decode.d.ts +3 -0
- package/dist/urlSafeBase64Decode.js +37 -0
- package/package.json +12 -4
- package/pnpm-lock.yaml +1026 -0
- package/readme.md +11 -0
- package/src/core.ts +0 -1
- package/src/fk-upload.controller.ts +0 -135
- package/src/fk-upload.module.ts +0 -13
- package/src/fk.service.ts +0 -14
- package/src/index.html +0 -20
- package/src/main.ts +0 -20
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@nger/fk-upload",
|
3
|
-
"version": "1.0.
|
3
|
+
"version": "1.0.6",
|
4
4
|
"description": "",
|
5
5
|
"main": "dist/core.js",
|
6
6
|
"types": "dist/core.d.ts",
|
@@ -10,12 +10,20 @@
|
|
10
10
|
"author": "",
|
11
11
|
"license": "ISC",
|
12
12
|
"dependencies": {
|
13
|
-
"axios": "^0.26.1",
|
14
13
|
"@nger/core": "^1.0.0",
|
15
|
-
"@nger/http": "^4.0.0"
|
14
|
+
"@nger/http": "^4.0.0",
|
15
|
+
"@nger/ws": "^1.0.0",
|
16
|
+
"@types/download": "^8.0.1",
|
17
|
+
"@types/request": "^2.48.8",
|
18
|
+
"axios": "^0.26.1",
|
19
|
+
"download": "^8.0.0",
|
20
|
+
"form-data": "^4.0.0",
|
21
|
+
"md5-file": "^5.0.0",
|
22
|
+
"request": "^2.88.2"
|
16
23
|
},
|
17
24
|
"scripts": {
|
18
25
|
"tsc": "tsc -w",
|
19
26
|
"tsc:build": "tsc"
|
20
|
-
}
|
27
|
+
},
|
28
|
+
"readme": "## admin\n\n## account\n\n## test url -- \n\n## \n\nhttp://kaifa2.jidujiaowang.com/web/index.php?c=site&a=entry&eid=8&version_id=0\nadmin888\n12345678"
|
21
29
|
}
|