@alwatr/pre-handlers 4.9.0 → 4.9.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/CHANGELOG.md +17 -0
- package/dist/handler/require-access-token.d.ts.map +1 -1
- package/dist/main.cjs +2 -2
- package/dist/main.mjs +2 -2
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,23 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [4.9.3](https://github.com/Alwatr/pre-handlers/compare/v4.9.2...v4.9.3) (2025-07-23)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @alwatr/pre-handlers
|
|
9
|
+
|
|
10
|
+
## [4.9.2](https://github.com/Alwatr/pre-handlers/compare/v4.9.1...v4.9.2) (2025-07-23)
|
|
11
|
+
|
|
12
|
+
### Dependencies update
|
|
13
|
+
|
|
14
|
+
* update dependencies to latest versions ([353d048](https://github.com/Alwatr/pre-handlers/commit/353d0485a5c21ab219d84cd0a6c35f62b46c2da9)) by @alimd
|
|
15
|
+
|
|
16
|
+
## [4.9.1](https://github.com/Alwatr/pre-handlers/compare/v4.9.0...v4.9.1) (2025-03-06)
|
|
17
|
+
|
|
18
|
+
### Dependencies update
|
|
19
|
+
|
|
20
|
+
* **deps-dev:** bump the dependencies group with 5 updates ([e6a00eb](https://github.com/Alwatr/pre-handlers/commit/e6a00eb139f70f2396ecf12b68103b40aa785521)) by @dependabot[bot]
|
|
21
|
+
* update @alwatr/nanolib and @alwatr/nano-build to version 5.5.0; bump @alwatr/type-helper to version 5.4.0 ([1e8b122](https://github.com/Alwatr/pre-handlers/commit/1e8b1228034af44e0d4914f5100d9e564c05a5a6)) by @
|
|
22
|
+
|
|
6
23
|
## [4.9.0](https://github.com/Alwatr/pre-handlers/compare/v4.8.1...v4.9.0) (2025-02-26)
|
|
7
24
|
|
|
8
25
|
### Dependencies update
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"require-access-token.d.ts","sourceRoot":"","sources":["../../src/handler/require-access-token.ts"],"names":[],"mappings":"AAAA,OAAO,EAAkB,KAAK,qBAAqB,EAAC,MAAM,6BAA6B,CAAC;AAIxF;;;;;;;;;;;;;;;;;;;;;;;KAuBK;AACL,eAAO,MAAM,kBAAkB,
|
|
1
|
+
{"version":3,"file":"require-access-token.d.ts","sourceRoot":"","sources":["../../src/handler/require-access-token.ts"],"names":[],"mappings":"AAAA,OAAO,EAAkB,KAAK,qBAAqB,EAAC,MAAM,6BAA6B,CAAC;AAIxF;;;;;;;;;;;;;;;;;;;;;;;KAuBK;AACL,eAAO,MAAM,kBAAkB,GAAI,aAAa,MAAM,MACjB,MAAM,qBAAqB,KAAG,OAAO,CAAC,IAAI,CAsB5E,CAAC"}
|
package/dist/main.cjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* @alwatr/pre-handlers v4.9.
|
|
1
|
+
/* @alwatr/pre-handlers v4.9.3 */
|
|
2
2
|
"use strict";
|
|
3
3
|
var __defProp = Object.defineProperty;
|
|
4
4
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
@@ -91,7 +91,7 @@ var requireAccessToken = (accessToken) => async function requireAccessToken_() {
|
|
|
91
91
|
};
|
|
92
92
|
|
|
93
93
|
// src/main.ts
|
|
94
|
-
__dev_mode__: import_nanolib.packageTracer.add("@alwatr/pre-handlers", "4.9.
|
|
94
|
+
__dev_mode__: import_nanolib.packageTracer.add("@alwatr/pre-handlers", "4.9.3");
|
|
95
95
|
// Annotate the CommonJS export names for ESM import in node:
|
|
96
96
|
0 && (module.exports = {
|
|
97
97
|
getAuthBearer,
|
package/dist/main.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* @alwatr/pre-handlers v4.9.
|
|
1
|
+
/* @alwatr/pre-handlers v4.9.3 */
|
|
2
2
|
|
|
3
3
|
// src/main.ts
|
|
4
4
|
import { packageTracer } from "@alwatr/nanolib";
|
|
@@ -66,7 +66,7 @@ var requireAccessToken = (accessToken) => async function requireAccessToken_() {
|
|
|
66
66
|
};
|
|
67
67
|
|
|
68
68
|
// src/main.ts
|
|
69
|
-
__dev_mode__: packageTracer.add("@alwatr/pre-handlers", "4.9.
|
|
69
|
+
__dev_mode__: packageTracer.add("@alwatr/pre-handlers", "4.9.3");
|
|
70
70
|
export {
|
|
71
71
|
getAuthBearer,
|
|
72
72
|
parseBodyAsJson,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alwatr/pre-handlers",
|
|
3
|
-
"version": "4.9.
|
|
3
|
+
"version": "4.9.3",
|
|
4
4
|
"description": "Functions that will run before processing every defined route.",
|
|
5
5
|
"author": "S. Ali Mihandoost <ali.mihandoost@gmail.com>",
|
|
6
6
|
"keywords": [
|
|
@@ -60,17 +60,17 @@
|
|
|
60
60
|
"clean": "rm -rfv dist *.tsbuildinfo"
|
|
61
61
|
},
|
|
62
62
|
"dependencies": {
|
|
63
|
-
"@alwatr/nanolib": "^5.
|
|
64
|
-
"@alwatr/nanotron-api-server": "^4.9.
|
|
63
|
+
"@alwatr/nanolib": "^5.6.5",
|
|
64
|
+
"@alwatr/nanotron-api-server": "^4.9.3"
|
|
65
65
|
},
|
|
66
66
|
"devDependencies": {
|
|
67
|
-
"@alwatr/nano-build": "^5.
|
|
67
|
+
"@alwatr/nano-build": "^5.5.3",
|
|
68
68
|
"@alwatr/prettier-config": "^5.0.0",
|
|
69
69
|
"@alwatr/tsconfig-base": "^5.0.0",
|
|
70
|
-
"@alwatr/type-helper": "^5.
|
|
71
|
-
"@types/node": "^
|
|
72
|
-
"jest": "^
|
|
73
|
-
"typescript": "^5.
|
|
70
|
+
"@alwatr/type-helper": "^5.4.1",
|
|
71
|
+
"@types/node": "^24.1.0",
|
|
72
|
+
"jest": "^30.0.5",
|
|
73
|
+
"typescript": "^5.8.3"
|
|
74
74
|
},
|
|
75
|
-
"gitHead": "
|
|
75
|
+
"gitHead": "17852256f4aab632c64437d1c50c64d02ee108b9"
|
|
76
76
|
}
|