@solidxai/solidctl 0.1.21-beta.1 → 0.1.23-beta.0
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@solidxai/solidctl",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.23-beta.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"author": "",
|
|
6
6
|
"private": false,
|
|
@@ -47,6 +47,7 @@
|
|
|
47
47
|
"@types/commander": "^2.12.0",
|
|
48
48
|
"chalk": "^4.1.2",
|
|
49
49
|
"commander": "^14.0.2",
|
|
50
|
+
"dotenv": "^17.4.2",
|
|
50
51
|
"fs-extra": "^11.3.2",
|
|
51
52
|
"inquirer": "^8.2.7",
|
|
52
53
|
"ora": "^5.4.1",
|
|
@@ -70,7 +70,7 @@ async function bootstrap() {
|
|
|
70
70
|
if (req.query) {
|
|
71
71
|
req.query = qs.parse(req.url.split('?')[1], {
|
|
72
72
|
allowDots: true, // Allows dot notation ($eq, $or, etc.)
|
|
73
|
-
depth:
|
|
73
|
+
depth: 20, // Supports deeply nested structures
|
|
74
74
|
arrayLimit: 100, // Prevents indexed arrays from becoming objects
|
|
75
75
|
});
|
|
76
76
|
}
|