@aneuhold/be-ts-lib 3.0.16 → 3.0.18

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,19 @@ 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.0.18] (2026-02-21)
9
+
10
+ ### 🏗️ Changed
11
+
12
+ - Updated dependencies: now requires `@aneuhold/core-ts-api-lib@^3.0.18`.
13
+
14
+ ## 🔖 [3.0.17] (2026-02-21)
15
+
16
+ ### 🏗️ Changed
17
+
18
+ - Updated dependencies: now requires `@aneuhold/core-ts-api-lib@^3.0.17` and `@aneuhold/local-npm-registry@^0.2.26`.
19
+ - Fixed `@throws {Error}` JSDoc format in `GitHubService`.
20
+
8
21
  ## 🔖 [3.0.16] (2026-02-21)
9
22
 
10
23
  ### 🏗️ Changed
@@ -192,6 +205,8 @@ No direct code changes; version bump for compatibility with new major versions o
192
205
 
193
206
  <!-- Link References -->
194
207
 
208
+ [3.0.18]: https://github.com/aneuhold/ts-libs/compare/be-ts-lib-v3.0.17...be-ts-lib-v3.0.18
209
+ [3.0.17]: https://github.com/aneuhold/ts-libs/compare/be-ts-lib-v3.0.16...be-ts-lib-v3.0.17
195
210
  [3.0.16]: https://github.com/aneuhold/ts-libs/compare/be-ts-lib-v3.0.15...be-ts-lib-v3.0.16
196
211
  [3.0.15]: https://github.com/aneuhold/ts-libs/compare/be-ts-lib-v3.0.14...be-ts-lib-v3.0.15
197
212
  [3.0.14]: https://github.com/aneuhold/ts-libs/compare/be-ts-lib-v3.0.13...be-ts-lib-v3.0.14
@@ -11,7 +11,7 @@ export default class GitHubService {
11
11
  * @param repoName - The name of the repository.
12
12
  * @param filePath - The path to the file within the repository.
13
13
  * @returns The content of the file as a string.
14
- * @throws Will throw an error if the content cannot be retrieved.
14
+ * @throws {Error} Will throw an error if the content cannot be retrieved.
15
15
  */
16
16
  static getContentFromRepo(repoName: string, filePath: string): Promise<string>;
17
17
  /**
@@ -12,7 +12,7 @@ export default class GitHubService {
12
12
  * @param repoName - The name of the repository.
13
13
  * @param filePath - The path to the file within the repository.
14
14
  * @returns The content of the file as a string.
15
- * @throws Will throw an error if the content cannot be retrieved.
15
+ * @throws {Error} Will throw an error if the content cannot be retrieved.
16
16
  */
17
17
  static async getContentFromRepo(repoName, filePath) {
18
18
  if (!GitHubService.gitHub) {
@@ -16,7 +16,7 @@ export default class GitHubService {
16
16
  * @param repoName - The name of the repository.
17
17
  * @param filePath - The path to the file within the repository.
18
18
  * @returns The content of the file as a string.
19
- * @throws Will throw an error if the content cannot be retrieved.
19
+ * @throws {Error} Will throw an error if the content cannot be retrieved.
20
20
  */
21
21
  static async getContentFromRepo(repoName: string, filePath: string): Promise<string> {
22
22
  if (!GitHubService.gitHub) {
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.0.16",
5
+ "version": "3.0.18",
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,16 +54,16 @@
54
54
  "TypeScript"
55
55
  ],
56
56
  "dependencies": {
57
- "@aneuhold/core-ts-api-lib": "^3.0.16",
58
- "@aneuhold/core-ts-lib": "^2.3.18",
57
+ "@aneuhold/core-ts-api-lib": "^3.0.18",
58
+ "@aneuhold/core-ts-lib": "^2.3.19",
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.25",
66
- "@aneuhold/main-scripts": "^2.8.0",
65
+ "@aneuhold/local-npm-registry": "^0.2.26",
66
+ "@aneuhold/main-scripts": "^2.8.3",
67
67
  "@types/node": "^25.0.2",
68
68
  "@types/node-fetch": "^2.6.13",
69
69
  "eslint": "^9.39.2",