@aneuhold/be-ts-lib 3.1.4 → 3.1.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/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## 🔖 [3.1.6] (2026-03-18)
|
|
9
|
+
|
|
10
|
+
### ✅ Added
|
|
11
|
+
|
|
12
|
+
- Added `testUserInfo` field to the `Config` interface for providing test user credentials in e2e tests.
|
|
13
|
+
|
|
14
|
+
## 🔖 [3.1.5] (2026-03-15)
|
|
15
|
+
|
|
16
|
+
### ✅ Added
|
|
17
|
+
|
|
18
|
+
- Added `jwtAccessSecret` field to the `Config` interface for signing JWT access tokens.
|
|
19
|
+
|
|
8
20
|
## 🔖 [3.1.4] (2026-03-13)
|
|
9
21
|
|
|
10
22
|
### 🏗️ Changed
|
|
@@ -260,6 +272,8 @@ No direct code changes; version bump for compatibility with new major versions o
|
|
|
260
272
|
|
|
261
273
|
<!-- Link References -->
|
|
262
274
|
|
|
275
|
+
[3.1.6]: https://github.com/aneuhold/ts-libs/compare/be-ts-lib-v3.1.5...be-ts-lib-v3.1.6
|
|
276
|
+
[3.1.5]: https://github.com/aneuhold/ts-libs/compare/be-ts-lib-v3.1.4...be-ts-lib-v3.1.5
|
|
263
277
|
[3.1.4]: https://github.com/aneuhold/ts-libs/compare/be-ts-lib-v3.1.3...be-ts-lib-v3.1.4
|
|
264
278
|
[3.1.3]: https://github.com/aneuhold/ts-libs/compare/be-ts-lib-v3.1.2...be-ts-lib-v3.1.3
|
|
265
279
|
[3.1.2]: https://github.com/aneuhold/ts-libs/compare/be-ts-lib-v3.1.1...be-ts-lib-v3.1.2
|
|
@@ -7,5 +7,12 @@ export default interface Config {
|
|
|
7
7
|
mongoRootUsername: string;
|
|
8
8
|
mongoRootPassword: string;
|
|
9
9
|
mongoUrl: string;
|
|
10
|
+
/** Secret used to sign JWT access tokens. */
|
|
11
|
+
jwtAccessSecret: string;
|
|
12
|
+
/** Test user credentials for e2e tests. */
|
|
13
|
+
testUserInfo: {
|
|
14
|
+
userName: string;
|
|
15
|
+
password: string;
|
|
16
|
+
};
|
|
10
17
|
}
|
|
11
18
|
//# sourceMappingURL=ConfigDefinition.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ConfigDefinition.d.ts","sourceRoot":"","sources":["../../../src/services/ConfigService/ConfigDefinition.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH,MAAM,CAAC,OAAO,WAAW,MAAM;IAC7B,OAAO,EAAE,MAAM,CAAC;IAChB,iBAAiB,EAAE,MAAM,CAAC;IAC1B,iBAAiB,EAAE,MAAM,CAAC;IAC1B,QAAQ,EAAE,MAAM,CAAC;
|
|
1
|
+
{"version":3,"file":"ConfigDefinition.d.ts","sourceRoot":"","sources":["../../../src/services/ConfigService/ConfigDefinition.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH,MAAM,CAAC,OAAO,WAAW,MAAM;IAC7B,OAAO,EAAE,MAAM,CAAC;IAChB,iBAAiB,EAAE,MAAM,CAAC;IAC1B,iBAAiB,EAAE,MAAM,CAAC;IAC1B,QAAQ,EAAE,MAAM,CAAC;IACjB,6CAA6C;IAC7C,eAAe,EAAE,MAAM,CAAC;IACxB,2CAA2C;IAC3C,YAAY,EAAE;QACZ,QAAQ,EAAE,MAAM,CAAC;QACjB,QAAQ,EAAE,MAAM,CAAC;KAClB,CAAC;CACH"}
|
|
@@ -7,4 +7,11 @@ export default interface Config {
|
|
|
7
7
|
mongoRootUsername: string;
|
|
8
8
|
mongoRootPassword: string;
|
|
9
9
|
mongoUrl: string;
|
|
10
|
+
/** Secret used to sign JWT access tokens. */
|
|
11
|
+
jwtAccessSecret: string;
|
|
12
|
+
/** Test user credentials for e2e tests. */
|
|
13
|
+
testUserInfo: {
|
|
14
|
+
userName: string;
|
|
15
|
+
password: string;
|
|
16
|
+
};
|
|
10
17
|
}
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@aneuhold/be-ts-lib",
|
|
3
3
|
"author": "Anton G. Neuhold Jr.",
|
|
4
4
|
"license": "MIT",
|
|
5
|
-
"version": "3.1.
|
|
5
|
+
"version": "3.1.6",
|
|
6
6
|
"description": "A backend TypeScript library used for common functionality in personal backend projects.",
|
|
7
7
|
"packageManager": "pnpm@10.25.0",
|
|
8
8
|
"type": "module",
|
|
@@ -54,15 +54,15 @@
|
|
|
54
54
|
"TypeScript"
|
|
55
55
|
],
|
|
56
56
|
"dependencies": {
|
|
57
|
-
"@aneuhold/core-ts-api-lib": "^3.0.
|
|
58
|
-
"@aneuhold/core-ts-lib": "^2.4.
|
|
57
|
+
"@aneuhold/core-ts-api-lib": "^3.0.29",
|
|
58
|
+
"@aneuhold/core-ts-lib": "^2.4.3",
|
|
59
59
|
"dotenv": "^17.2.3",
|
|
60
60
|
"jsonc-parser": "^3.3.1",
|
|
61
61
|
"node-fetch": "^3.3.2",
|
|
62
62
|
"octokit": "^5.0.5"
|
|
63
63
|
},
|
|
64
64
|
"devDependencies": {
|
|
65
|
-
"@aneuhold/local-npm-registry": "^0.2.
|
|
65
|
+
"@aneuhold/local-npm-registry": "^0.2.30",
|
|
66
66
|
"@aneuhold/main-scripts": "^2.8.3",
|
|
67
67
|
"@types/node": "^25.0.2",
|
|
68
68
|
"@types/node-fetch": "^2.6.13",
|