emilsoftware-utilities 1.3.147 → 1.4.0-dev.1
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.
|
@@ -114,7 +114,7 @@ let UserController = UserController_1 = class UserController {
|
|
|
114
114
|
};
|
|
115
115
|
exports.UserController = UserController;
|
|
116
116
|
__decorate([
|
|
117
|
-
(0, swagger_1.ApiOperation)({ summary: 'Servire la pagina di reset password', operationId: "
|
|
117
|
+
(0, swagger_1.ApiOperation)({ summary: 'Servire la pagina di reset password', operationId: "serveResetPasswordPageUser" }),
|
|
118
118
|
(0, swagger_1.ApiParam)({ name: 'token', description: 'Token per il reset della password', required: true }),
|
|
119
119
|
(0, common_1.Get)('reset-password/:token'),
|
|
120
120
|
__param(0, (0, common_1.Res)()),
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,18 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "emilsoftware-utilities",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.4.0-dev.1",
|
|
4
4
|
"description": "Utilities for EmilSoftware",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.js",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
8
8
|
"scripts": {
|
|
9
|
-
"release": "
|
|
9
|
+
"release": "semantic-release",
|
|
10
10
|
"build": "tsc && npm run copy-views",
|
|
11
11
|
"copy-views": "node copy-views.js",
|
|
12
12
|
"prepublishOnly": "npm run build",
|
|
13
13
|
"test:allegati": "ts-node src/tests/allegati/allegati.ts",
|
|
14
14
|
"test:accessi": "npm run build && ts-node test/index.js"
|
|
15
15
|
},
|
|
16
|
+
"publishConfig": {
|
|
17
|
+
"access": "public"
|
|
18
|
+
},
|
|
16
19
|
"repository": {
|
|
17
20
|
"type": "git",
|
|
18
21
|
"url": "git+https://github.com/mttdev382/emilsoftware-utilities.git"
|
|
@@ -46,6 +49,12 @@
|
|
|
46
49
|
"winston": "^3.11.0"
|
|
47
50
|
},
|
|
48
51
|
"devDependencies": {
|
|
52
|
+
"@semantic-release/changelog": "^6.0.3",
|
|
53
|
+
"@semantic-release/commit-analyzer": "^13.0.1",
|
|
54
|
+
"@semantic-release/git": "^10.0.1",
|
|
55
|
+
"@semantic-release/github": "^11.0.3",
|
|
56
|
+
"@semantic-release/npm": "^12.0.2",
|
|
57
|
+
"@semantic-release/release-notes-generator": "^14.0.3",
|
|
49
58
|
"@types/express": "^5.0.0",
|
|
50
59
|
"@types/jsonwebtoken": "^9.0.7",
|
|
51
60
|
"@types/multer": "^1.4.12",
|
|
@@ -54,12 +63,19 @@
|
|
|
54
63
|
"@types/reflect-metadata": "^0.0.5",
|
|
55
64
|
"@types/swagger-jsdoc": "^6.0.4",
|
|
56
65
|
"@types/swagger-ui-express": "^4.1.7",
|
|
66
|
+
"commitizen": "^4.3.1",
|
|
67
|
+
"cz-conventional-changelog": "^3.3.0",
|
|
57
68
|
"fs-extra": "^11.3.0",
|
|
58
|
-
"
|
|
69
|
+
"semantic-release": "^24.2.7",
|
|
59
70
|
"ts-node": "^10.9.2",
|
|
60
71
|
"typescript": "^5.8.3"
|
|
61
72
|
},
|
|
62
73
|
"files": [
|
|
63
74
|
"dist"
|
|
64
|
-
]
|
|
75
|
+
],
|
|
76
|
+
"config": {
|
|
77
|
+
"commitizen": {
|
|
78
|
+
"path": "./node_modules/cz-conventional-changelog"
|
|
79
|
+
}
|
|
80
|
+
}
|
|
65
81
|
}
|