@thzero/library_server 0.17.8 → 0.17.10
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/boot/index.js +7 -0
- package/package.json +3 -3
- package/service/baseSecurity.js +1 -1
package/boot/index.js
CHANGED
|
@@ -59,6 +59,9 @@ class BootMain {
|
|
|
59
59
|
const idGeneratorOverride = this._initIdGenerator();
|
|
60
60
|
if (idGeneratorOverride)
|
|
61
61
|
LibraryCommonUtility.setIdGenerator(idGeneratorOverride);
|
|
62
|
+
const idGeneratorAlphabet = this._initIdGeneratorAlphabet();
|
|
63
|
+
if (idGeneratorAlphabet)
|
|
64
|
+
LibraryCommonUtility.setIdGeneratorAlphabet(idGeneratorAlphabet);
|
|
62
65
|
const idGeneratorLengthLong = this._initIdGeneratorLengthLong();
|
|
63
66
|
if (idGeneratorLengthLong)
|
|
64
67
|
LibraryCommonUtility.setIdGeneratorLengthLong(idGeneratorLengthLong);
|
|
@@ -217,6 +220,10 @@ class BootMain {
|
|
|
217
220
|
return null;
|
|
218
221
|
}
|
|
219
222
|
|
|
223
|
+
_initIdGeneratorAlphabet() {
|
|
224
|
+
return null;
|
|
225
|
+
}
|
|
226
|
+
|
|
220
227
|
_initIdGeneratorLengthLong() {
|
|
221
228
|
return null;
|
|
222
229
|
}
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thzero/library_server",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.17.
|
|
4
|
+
"version": "0.17.10",
|
|
5
5
|
"version_major": 0,
|
|
6
6
|
"version_minor": 17,
|
|
7
|
-
"version_patch":
|
|
8
|
-
"version_date": "
|
|
7
|
+
"version_patch": 10,
|
|
8
|
+
"version_date": "04/15/2023",
|
|
9
9
|
"description": "An opinionated library of common functionality to bootstrap an API using either Fastify or Koa as the web server.",
|
|
10
10
|
"author": "thZero",
|
|
11
11
|
"license": "MIT",
|
package/service/baseSecurity.js
CHANGED