@techspokes/typescript-wsdl-client 0.17.0 → 0.18.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/dist/app/generateApp.js +1 -1
- package/package.json +5 -4
package/dist/app/generateApp.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@techspokes/typescript-wsdl-client",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.18.0",
|
|
4
4
|
"description": "Turn legacy WSDL/SOAP services into typed TypeScript clients, OpenAPI 3.1 specs, and production-ready Fastify REST gateways. Built for enterprise SOAP modernization.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"wsdl",
|
|
@@ -77,23 +77,24 @@
|
|
|
77
77
|
"smoke:gateway": "npm run smoke:reset && tsx src/cli.ts client --wsdl-source examples/minimal/weather.wsdl --client-dir tmp/client && tsx src/cli.ts openapi --catalog-file tmp/client/catalog.json --openapi-file tmp/openapi.json --openapi-format json && tsx src/cli.ts gateway --openapi-file tmp/openapi.json --client-dir tmp/client --gateway-dir tmp/gateway --gateway-service-name weather --gateway-version-prefix v1 && tsc -p tsconfig.smoke.json",
|
|
78
78
|
"smoke:pipeline": "npm run smoke:reset && tsx src/cli.ts pipeline --wsdl-source examples/minimal/weather.wsdl --client-dir tmp/client --openapi-file tmp/openapi.json --gateway-dir tmp/gateway --gateway-service-name weather --gateway-version-prefix v1 --openapi-format json --init-app && tsc -p tsconfig.smoke.json",
|
|
79
79
|
"smoke:app": "npm run smoke:reset && tsx src/cli.ts pipeline --wsdl-source examples/minimal/weather.wsdl --client-dir tmp/client --openapi-file tmp/openapi.json --gateway-dir tmp/gateway --gateway-service-name weather --gateway-version-prefix v1 --openapi-format json --openapi-servers https://example.com/api && tsx src/cli.ts app --client-dir tmp/client --gateway-dir tmp/gateway --openapi-file tmp/openapi.json --app-dir tmp/app --port 8080 && tsc -p tsconfig.smoke.json",
|
|
80
|
+
"maint:deps": "node scripts/maint-deps.mjs",
|
|
80
81
|
"ci": "npm run clean && npm run build && npm run typecheck && vitest run && npm run smoke:pipeline",
|
|
81
82
|
"examples:regenerate": "tsx src/cli.ts pipeline --wsdl-source examples/minimal/weather.wsdl --client-dir examples/generated-output/client --openapi-file examples/generated-output/openapi.json --gateway-dir examples/generated-output/gateway --gateway-service-name weather --gateway-version-prefix v1 --openapi-format json"
|
|
82
83
|
},
|
|
83
84
|
"devDependencies": {
|
|
84
85
|
"@types/js-yaml": "^4.0.9",
|
|
85
|
-
"@types/node": "^25.
|
|
86
|
+
"@types/node": "^25.7.0",
|
|
86
87
|
"@types/yargs": "^17.0.35",
|
|
87
88
|
"fastify": "^5.8.5",
|
|
88
89
|
"fastify-plugin": "^5.1.0",
|
|
89
90
|
"rimraf": "^6.1.3",
|
|
90
91
|
"tsx": "^4.21.0",
|
|
91
92
|
"typescript": "^6.0.3",
|
|
92
|
-
"vitest": "^4.1.
|
|
93
|
+
"vitest": "^4.1.6"
|
|
93
94
|
},
|
|
94
95
|
"dependencies": {
|
|
95
96
|
"@apidevtools/swagger-parser": "^12.1.0",
|
|
96
|
-
"fast-xml-parser": "^5.
|
|
97
|
+
"fast-xml-parser": "^5.8.0",
|
|
97
98
|
"js-yaml": "^4.1.1",
|
|
98
99
|
"saxes": "^6.0.0",
|
|
99
100
|
"soap": "^1.9.1",
|