fiberx-backend-toolkit 1.0.8 → 1.0.9
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.
|
@@ -34,7 +34,7 @@ class InputValidatorUtil {
|
|
|
34
34
|
return name === "SuperAdmin";
|
|
35
35
|
}
|
|
36
36
|
static isLowerSnakeCase(str) {
|
|
37
|
-
return /^[a-
|
|
37
|
+
return /^[a-z0-9]+(_[a-z0-9]+)*$/.test(str);
|
|
38
38
|
}
|
|
39
39
|
static isUpperPascalCase(str) {
|
|
40
40
|
return /^[A-Z][a-zA-Z]*$/.test(str);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fiberx-backend-toolkit",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.9",
|
|
4
4
|
"description": "A TypeScript backend toolkit providing shared domain logic, infrastructure helpers, and utilities for FiberX server-side applications and services.",
|
|
5
5
|
"type": "commonjs",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -134,7 +134,7 @@
|
|
|
134
134
|
"uuid": "^14.0.0"
|
|
135
135
|
},
|
|
136
136
|
"engines": {
|
|
137
|
-
"node": "
|
|
137
|
+
"node": "26.x"
|
|
138
138
|
},
|
|
139
139
|
"allowScripts": {
|
|
140
140
|
"bcrypt@6.0.0": true,
|