@voxgig/sdkgen 0.37.0 → 0.38.1
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/bin/voxgig-sdkgen +1 -1
- package/package.json +2 -3
- package/project/.sdk/model/feature/log.jsonic +1 -1
- package/project/.sdk/model/target/js.jsonic +1 -1
- package/project/.sdk/model/target/py.jsonic +1 -1
- package/project/.sdk/model/target/ts.jsonic +2 -2
- package/project/.sdk/src/cmp/php/Package_php.ts +2 -2
- package/project/.sdk/src/cmp/py/Package_py.ts +1 -1
package/bin/voxgig-sdkgen
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@voxgig/sdkgen",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.38.1",
|
|
4
4
|
"main": "dist/sdkgen.js",
|
|
5
5
|
"type": "commonjs",
|
|
6
6
|
"types": "dist/sdkgen.d.ts",
|
|
@@ -40,11 +40,10 @@
|
|
|
40
40
|
"LICENSE"
|
|
41
41
|
],
|
|
42
42
|
"devDependencies": {
|
|
43
|
-
"@hapi/code": "^9.0.3",
|
|
44
43
|
"@types/js-yaml": "^4.0.9",
|
|
45
44
|
"@types/node": "25.6.0",
|
|
46
45
|
"json-schema-to-ts": "^3.1.1",
|
|
47
|
-
"memfs": "^4.57.
|
|
46
|
+
"memfs": "^4.57.2",
|
|
48
47
|
"typescript": "^5.9.3"
|
|
49
48
|
},
|
|
50
49
|
"peerDependencies": {
|
|
@@ -13,9 +13,9 @@ main: kit: target: ts: {
|
|
|
13
13
|
}
|
|
14
14
|
|
|
15
15
|
deps: {
|
|
16
|
-
'dotenv': { active: true, version: '^17.
|
|
16
|
+
'dotenv': { active: true, version: '^17.4.2', kind: dev }
|
|
17
17
|
'typescript': { active: true, version: '^5.9.3', kind: dev }
|
|
18
|
-
'@types/node': { active: true, version: '^25.
|
|
18
|
+
'@types/node': { active: true, version: '^25.6.0', kind: dev }
|
|
19
19
|
}
|
|
20
20
|
}
|
|
21
21
|
|
|
@@ -31,7 +31,7 @@ const Package = cmp(async function Package(props: any) {
|
|
|
31
31
|
"license": "MIT",
|
|
32
32
|
"minimum-stability": "stable",
|
|
33
33
|
"require": {
|
|
34
|
-
"php": ">=8.
|
|
34
|
+
"php": ">=8.2"`)
|
|
35
35
|
|
|
36
36
|
// Collect dependencies from features
|
|
37
37
|
const deps: { name: string, version: string }[] = []
|
|
@@ -64,7 +64,7 @@ const Package = cmp(async function Package(props: any) {
|
|
|
64
64
|
Content(`
|
|
65
65
|
},
|
|
66
66
|
"require-dev": {
|
|
67
|
-
"phpunit/phpunit": "^
|
|
67
|
+
"phpunit/phpunit": "^11.0"
|
|
68
68
|
},
|
|
69
69
|
"autoload": {
|
|
70
70
|
"psr-4": {
|