@techspokes/typescript-wsdl-client 0.32.0 → 0.33.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.d.ts.map +1 -1
- package/dist/app/generateApp.js +18 -1
- package/dist/test/mockData.d.ts.map +1 -1
- package/dist/test/mockData.js +5 -0
- package/docs/releases/v0.33.0.md +34 -0
- package/docs/roadmap/README.md +5 -6
- package/docs/roadmap/v1.0-capability-conformance-framework.md +8 -2
- package/docs/roadmap/v1.0-wsdl-coverage-matrix.md +7 -9
- package/package.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"generateApp.d.ts","sourceRoot":"","sources":["../../src/app/generateApp.ts"],"names":[],"mappings":"AAgCA;;;;;;;;;;;;;;;;GAgBG;AACH,MAAM,WAAW,kBAAkB;IACjC,SAAS,EAAE,MAAM,CAAC;IAClB,UAAU,EAAE,MAAM,CAAC;IACnB,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,EAAE,MAAM,CAAC;IACpB,MAAM,EAAE,MAAM,CAAC;IACf,OAAO,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,MAAM,CAAC;IAC/B,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,WAAW,CAAC,EAAE,MAAM,GAAG,WAAW,CAAC;IACnC,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,kBAAkB,CAAC,EAAE,MAAM,CAAC;CAC7B;
|
|
1
|
+
{"version":3,"file":"generateApp.d.ts","sourceRoot":"","sources":["../../src/app/generateApp.ts"],"names":[],"mappings":"AAgCA;;;;;;;;;;;;;;;;GAgBG;AACH,MAAM,WAAW,kBAAkB;IACjC,SAAS,EAAE,MAAM,CAAC;IAClB,UAAU,EAAE,MAAM,CAAC;IACnB,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,EAAE,MAAM,CAAC;IACpB,MAAM,EAAE,MAAM,CAAC;IACf,OAAO,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,MAAM,CAAC;IAC/B,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,WAAW,CAAC,EAAE,MAAM,GAAG,WAAW,CAAC;IACnC,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,kBAAkB,CAAC,EAAE,MAAM,CAAC;CAC7B;AAuqBD;;;;;;;;;;;;;;;;;;;;GAoBG;AACH,wBAAsB,WAAW,CAAC,IAAI,EAAE,kBAAkB,GAAG,OAAO,CAAC,IAAI,CAAC,CAmDzE"}
|
package/dist/app/generateApp.js
CHANGED
|
@@ -92,6 +92,22 @@ function isUrl(value) {
|
|
|
92
92
|
function toPosix(filePath) {
|
|
93
93
|
return filePath.split(path.sep).join("/");
|
|
94
94
|
}
|
|
95
|
+
function commonPathPrefix(paths) {
|
|
96
|
+
if (paths.length === 0)
|
|
97
|
+
return ".";
|
|
98
|
+
const [first, ...rest] = paths.map(filePath => path.resolve(filePath).split(path.sep));
|
|
99
|
+
let prefixLength = first.length;
|
|
100
|
+
for (const parts of rest) {
|
|
101
|
+
prefixLength = Math.min(prefixLength, parts.length);
|
|
102
|
+
for (let index = 0; index < prefixLength; index += 1) {
|
|
103
|
+
if (parts[index] !== first[index]) {
|
|
104
|
+
prefixLength = index;
|
|
105
|
+
break;
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
return first.slice(0, prefixLength).join(path.sep) || path.parse(paths[0]).root;
|
|
110
|
+
}
|
|
95
111
|
/**
|
|
96
112
|
* Resolves a WSDL source path relative to the app directory.
|
|
97
113
|
* URLs are returned as-is. File paths are computed relative to appDir.
|
|
@@ -536,6 +552,7 @@ function generateTsConfig(appDir, opts, force) {
|
|
|
536
552
|
// Compute include paths relative to app directory
|
|
537
553
|
const clientInclude = toPosix(path.relative(appDir, opts.clientDir)) + "/**/*.ts";
|
|
538
554
|
const gatewayInclude = toPosix(path.relative(appDir, opts.gatewayDir)) + "/**/*.ts";
|
|
555
|
+
const rootDir = toPosix(path.relative(appDir, commonPathPrefix([appDir, opts.clientDir, opts.gatewayDir]))) || ".";
|
|
539
556
|
const tsconfig = {
|
|
540
557
|
compilerOptions: {
|
|
541
558
|
module: "NodeNext",
|
|
@@ -546,7 +563,7 @@ function generateTsConfig(appDir, opts, force) {
|
|
|
546
563
|
skipLibCheck: true,
|
|
547
564
|
types: ["node"],
|
|
548
565
|
outDir: "dist",
|
|
549
|
-
rootDir
|
|
566
|
+
rootDir,
|
|
550
567
|
},
|
|
551
568
|
include: [
|
|
552
569
|
"*.ts",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"mockData.d.ts","sourceRoot":"","sources":["../../src/test/mockData.ts"],"names":[],"mappings":"AAWA;;GAEG;AACH,MAAM,WAAW,eAAe;IAC9B,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB;AAED;;GAEG;AACH,MAAM,WAAW,eAAe;IAC9B,OAAO,CAAC,EAAE;QACR,MAAM,CAAC,EAAE,cAAc,GAAG,OAAO,CAAC;KACnC,CAAC;IACF,IAAI,CAAC,EAAE;QACL,QAAQ,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC,CAAC;QAClD,SAAS,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC,CAAC;QACnD,QAAQ,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE;YACvC,YAAY,CAAC,EAAE,MAAM,CAAC;YACtB,GAAG,CAAC,EAAE,MAAM,CAAC;YACb,GAAG,CAAC,EAAE,MAAM,GAAG,WAAW,CAAC;YAC3B,QAAQ,CAAC,EAAE,OAAO,CAAC;SACpB,CAAC,CAAC,CAAC;KACL,CAAC;IACF,UAAU,CAAC,EAAE,KAAK,CAAC;QACjB,IAAI,EAAE,MAAM,CAAC;QACb,aAAa,CAAC,EAAE,MAAM,CAAC;QACvB,cAAc,CAAC,EAAE,MAAM,CAAC;QACxB,MAAM,CAAC,EAAE;YACP,MAAM,EAAE,QAAQ,GAAG,YAAY,CAAC;YAChC,SAAS,EAAE,MAAM,CAAC;YAClB,cAAc,EAAE,MAAM,CAAC;YACvB,UAAU,EAAE,MAAM,EAAE,CAAC;SACtB,CAAC;KACH,CAAC,CAAC;IACH,KAAK,CAAC,EAAE,KAAK,CAAC;QACZ,IAAI,EAAE,MAAM,CAAC;QACb,KAAK,EAAE,KAAK,CAAC;YAAE,IAAI,EAAE,MAAM,CAAA;SAAE,CAAC,CAAC;QAC/B,KAAK,EAAE,KAAK,CAAC;YAAE,IAAI,EAAE,MAAM,CAAC;YAAC,GAAG,EAAE,MAAM,GAAG,WAAW,CAAA;SAAE,CAAC,CAAC;QAC1D,YAAY,CAAC,EAAE,KAAK,CAAC;YACnB,IAAI,EAAE,MAAM,CAAC;YACb,GAAG,EAAE,MAAM,CAAC;YACZ,GAAG,EAAE,MAAM,GAAG,WAAW,CAAC;YAC1B,WAAW,EAAE,MAAM,CAAC;YACpB,QAAQ,EAAE,KAAK,CAAC;gBACd,IAAI,EAAE,MAAM,CAAC;gBACb,MAAM,EAAE,MAAM,CAAC;gBACf,GAAG,EAAE,MAAM,CAAC;gBACZ,GAAG,EAAE,MAAM,GAAG,WAAW,CAAC;gBAC1B,QAAQ,CAAC,EAAE,OAAO,CAAC;gBACnB,YAAY,EAAE,MAAM,CAAC;gBACrB,GAAG,CAAC,EAAE,MAAM,CAAC;gBACb,WAAW,EAAE,MAAM,CAAC;aACrB,CAAC,CAAC;SACJ,CAAC,CAAC;KACJ,CAAC,CAAC;IACH,OAAO,CAAC,EAAE,KAAK,CAAC;QACd,IAAI,EAAE,MAAM,CAAC;QACb,MAAM,EAAE,MAAM,CAAC;KAChB,CAAC,CAAC;CACJ;AAED;;;;;;;GAOG;AACH,wBAAgB,qBAAqB,CAAC,MAAM,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,GAAG,MAAM,GAAG,MAAM,GAAG,OAAO,CAwCjG;AAED;;;;;;;;;GASG;AACH,wBAAgB,gBAAgB,CAC9B,QAAQ,EAAE,MAAM,EAChB,OAAO,EAAE,eAAe,EACxB,IAAI,CAAC,EAAE,eAAe,EACtB,OAAO,CAAC,EAAE,GAAG,CAAC,MAAM,CAAC,EACrB,KAAK,CAAC,EAAE,MAAM,GACb,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,
|
|
1
|
+
{"version":3,"file":"mockData.d.ts","sourceRoot":"","sources":["../../src/test/mockData.ts"],"names":[],"mappings":"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"}
|
package/dist/test/mockData.js
CHANGED
|
@@ -117,6 +117,11 @@ export function generateMockData(typeName, catalog, opts, visited, depth) {
|
|
|
117
117
|
const value = generateMockPrimitive(propType, propName);
|
|
118
118
|
result[propName] = isArray ? [value] : value;
|
|
119
119
|
}
|
|
120
|
+
else if (catalog.aliases?.some(alias => alias.name === propType)) {
|
|
121
|
+
const alias = catalog.aliases.find(entry => entry.name === propType);
|
|
122
|
+
const value = generateMockPrimitive(alias.tsType, propName);
|
|
123
|
+
result[propName] = isArray ? [value] : value;
|
|
124
|
+
}
|
|
120
125
|
else {
|
|
121
126
|
// Complex type — recurse
|
|
122
127
|
const childData = generateMockData(propType, catalog, opts, newVisited, currentDepth + 1);
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
# TypeScript WSDL Client v0.33.0
|
|
2
|
+
|
|
3
|
+
## Generated Artifact Conformance
|
|
4
|
+
|
|
5
|
+
This release extends the WSDL capability conformance framework into generated test suites and generated app scaffolds for the current supported and partial capability rows.
|
|
6
|
+
|
|
7
|
+
## What This Improves
|
|
8
|
+
|
|
9
|
+
Maintainers can now verify that documented WSDL support survives the full generated artifact path: compile, client, OpenAPI, gateway runtime, generated tests, and generated app scaffolds. This makes the support matrix more useful as a 1.0 readiness gate because it proves consumer-facing generated files work together instead of only proving internal compiler behavior.
|
|
10
|
+
|
|
11
|
+
Generated app scaffolds now emit a `tsconfig.json` root that covers sibling client and gateway folders. Generated test mocks also produce valid primitive values for request properties backed by simple type aliases, including `xs:union` aliases.
|
|
12
|
+
|
|
13
|
+
## Highlights
|
|
14
|
+
|
|
15
|
+
- Adds generated-test conformance evidence for supported and partial WSDL capability rows.
|
|
16
|
+
- Adds generated app scaffold conformance evidence for supported and partial WSDL capability rows.
|
|
17
|
+
- Fixes generated app `tsconfig.json` roots for sibling client and gateway artifacts.
|
|
18
|
+
- Fixes generated mock payloads for alias-backed request properties.
|
|
19
|
+
- Updates the roadmap so the next 1.0 slice is validation-gate wiring.
|
|
20
|
+
|
|
21
|
+
## Upgrade Notes
|
|
22
|
+
|
|
23
|
+
No special upgrade steps.
|
|
24
|
+
|
|
25
|
+
## Validation
|
|
26
|
+
|
|
27
|
+
- CI passed.
|
|
28
|
+
- NPM package contents were validated.
|
|
29
|
+
- Agent skill artifact was validated and packaged.
|
|
30
|
+
- Release preflight passed against the target tag.
|
|
31
|
+
|
|
32
|
+
## Notes
|
|
33
|
+
|
|
34
|
+
Release tag: `v0.33.0`.
|
package/docs/roadmap/README.md
CHANGED
|
@@ -18,8 +18,8 @@ The plan is optimized for preserving quality. The contract and compatibility bas
|
|
|
18
18
|
| OpenAPI compatibility | [OpenAPI Fastify Compatibility](v1.0-openapi-fastify-compatibility.md) | baseline complete | Schema strategy is proven |
|
|
19
19
|
| Choice union mode | [Choice Union Mode](v1.0-choice-union-mode.md) | complete | Implemented in `0.26.0` |
|
|
20
20
|
| JSON array streaming | [JSON Array Streaming](v1.0-json-array-streaming.md) | complete | Implemented in `0.28.0` |
|
|
21
|
-
| Conformance framework | [Capability Conformance Framework](v1.0-capability-conformance-framework.md) | phase
|
|
22
|
-
| WSDL coverage matrix | [WSDL Coverage Matrix](v1.0-wsdl-coverage-matrix.md) |
|
|
21
|
+
| Conformance framework | [Capability Conformance Framework](v1.0-capability-conformance-framework.md) | phase 4 shipped | Pipeline claims are test-backed |
|
|
22
|
+
| WSDL coverage matrix | [WSDL Coverage Matrix](v1.0-wsdl-coverage-matrix.md) | generated artifacts proven | Feature support is test-backed |
|
|
23
23
|
| Release candidate | [Release Candidate Gates](v1.0-release-candidate-gates.md) | remaining | 1.0 release is repeatable |
|
|
24
24
|
|
|
25
25
|
## Execution Order
|
|
@@ -42,11 +42,11 @@ JSON array streaming is complete in `0.28.0`. The default `ndjson` format remain
|
|
|
42
42
|
|
|
43
43
|
### Slice 5: Capability Conformance Framework
|
|
44
44
|
|
|
45
|
-
The registry, fixture strategy, compile runner, client evidence, OpenAPI evidence, gateway runtime evidence, documentation drift check, and generated support matrix are shipped. The next work is to
|
|
45
|
+
The registry, fixture strategy, compile runner, client evidence, OpenAPI evidence, gateway runtime evidence, generated-test evidence, app evidence, documentation drift check, and generated support matrix are shipped. The next work is to wire the right conformance subset into validation gates without making local development too slow.
|
|
46
46
|
|
|
47
47
|
### Slice 6: WSDL Coverage Matrix
|
|
48
48
|
|
|
49
|
-
The first WSDL matrix rows now exist as conformance registry entries with compile, client, OpenAPI, gateway runtime, and documentation evidence. The next work is to
|
|
49
|
+
The first WSDL matrix rows now exist as conformance registry entries with compile, client, OpenAPI, gateway runtime, generated-test, app, and documentation evidence. The next work is to keep those rows current while release candidate gates are prepared.
|
|
50
50
|
|
|
51
51
|
### Slice 7: Release Candidate Gates
|
|
52
52
|
|
|
@@ -54,8 +54,7 @@ Run the release candidate gates after feature work and documentation have conver
|
|
|
54
54
|
|
|
55
55
|
## Remaining Before 1.0
|
|
56
56
|
|
|
57
|
-
-
|
|
58
|
-
- Add generated-test and app checks for supported and partial WSDL rows where those surfaces are part of the contract.
|
|
57
|
+
- Decide which conformance checks should run in CI, release preflight, or local-only workflows.
|
|
59
58
|
- Turn remaining unsupported, diagnostic, or partial matrix rows into diagnostics, documentation, or scoped fixes.
|
|
60
59
|
- Confirm `docs/supported-patterns.md` matches the matrix.
|
|
61
60
|
- Run the release-candidate gates.
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
# Version 1.0 Capability Conformance Framework
|
|
2
2
|
|
|
3
|
-
Status: Phase
|
|
3
|
+
Status: Phase 4 shipped; validation-gate wiring remaining before `1.0.0`.
|
|
4
4
|
|
|
5
5
|
Plan for turning SOAP, WSDL, OpenAPI, gateway, app, generated-test, and documentation support claims into fixture-backed conformance evidence.
|
|
6
6
|
|
|
7
|
-
Phase 1 shipped a TypeScript registry, reusable WSDL fixtures, compile-stage runner, documentation drift tests, and generated public support matrix. Phase 2 added generated client type-checking, OpenAPI validation, and executable diagnostics for terminal rows. Phase 3 added generated gateway type-checking and Fastify runtime evidence for current supported and partial rows.
|
|
7
|
+
Phase 1 shipped a TypeScript registry, reusable WSDL fixtures, compile-stage runner, documentation drift tests, and generated public support matrix. Phase 2 added generated client type-checking, OpenAPI validation, and executable diagnostics for terminal rows. Phase 3 added generated gateway type-checking and Fastify runtime evidence for current supported and partial rows. Phase 4 added generated-test and app scaffold evidence for those rows.
|
|
8
8
|
|
|
9
9
|
See the root [README.md](../../README.md) for project overview and [Version 1.0 Roadmap Plan](README.md) for the complete 1.0 route.
|
|
10
10
|
|
|
@@ -528,14 +528,20 @@ Run `npm run smoke:pipeline` as a final end-to-end guard if gateway generator be
|
|
|
528
528
|
|
|
529
529
|
## Phase 4: Generated Test And App Evidence
|
|
530
530
|
|
|
531
|
+
Phase 4 is implemented for the current supported and partial WSDL rows. Keep this section as the baseline for future generated-test and app conformance rows.
|
|
532
|
+
|
|
531
533
|
Extend relevant rows to generate `--test-dir` output and app scaffolds. Run generated tests only for rows where generated-test behavior is part of the capability contract.
|
|
532
534
|
|
|
535
|
+
Generated-test and app evidence must consume generated artifacts as a consumer would. Route paths, operation IDs, schemas, and app wiring must come from generated OpenAPI, gateway, test, and app files. Do not add conformance-only route overrides or fixture-specific route maps to make generated tests pass.
|
|
536
|
+
|
|
533
537
|
Acceptance criteria:
|
|
534
538
|
|
|
535
539
|
- Generated tests pass for supported rows that request them.
|
|
536
540
|
- Generated validation tests include capability-specific invalid cases.
|
|
537
541
|
- App scaffolds type-check when the capability affects app wiring.
|
|
538
542
|
- Runtime dependency assumptions stay aligned with `package.json`.
|
|
543
|
+
- Generated app `tsconfig.json` covers sibling client and gateway artifacts when those folders are outside the app directory.
|
|
544
|
+
- Diagnostic and unsupported rows remain compile-terminal.
|
|
539
545
|
|
|
540
546
|
## Phase 5: Documentation And Release Gates
|
|
541
547
|
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
# Version 1.0 WSDL Coverage Matrix
|
|
2
2
|
|
|
3
|
-
Status:
|
|
3
|
+
Status: generated-test and app evidence shipped; validation-gate wiring remaining before `1.0.0`.
|
|
4
4
|
|
|
5
5
|
Plan for turning WSDL and XSD support claims into automated, fixture-backed evidence before 1.0. This is the first domain under the [Capability Conformance Framework](v1.0-capability-conformance-framework.md).
|
|
6
6
|
|
|
7
|
-
The initial fixture-backed compile matrix shipped in `0.30.2` and `0.30.3`. Client, OpenAPI,
|
|
7
|
+
The initial fixture-backed compile matrix shipped in `0.30.2` and `0.30.3`. Client, OpenAPI, gateway runtime, generated-test, and app evidence now prove the current supported and partial rows, and terminal rows have executable diagnostics. The remaining work is to decide which conformance checks belong in CI and release preflight.
|
|
8
8
|
|
|
9
9
|
See the root [README.md](../../README.md) for project overview and [Version 1.0 Roadmap Plan](README.md) for the complete 1.0 route.
|
|
10
10
|
|
|
@@ -30,8 +30,7 @@ Each matrix row should have a minimal fixture, an expected support status, and a
|
|
|
30
30
|
|
|
31
31
|
## Remaining Scope
|
|
32
32
|
|
|
33
|
-
-
|
|
34
|
-
- Add generated request and response fixtures for generated-test coverage where HTTP behavior is part of a capability contract.
|
|
33
|
+
- Decide which conformance checks should run in CI, release preflight, and focused local commands.
|
|
35
34
|
- Keep diagnostics executable as more unsupported rows are added.
|
|
36
35
|
- Keep fixture metadata useful for a future public conformance fixture corpus.
|
|
37
36
|
- Preserve the weather smoke fixture as the canonical end-to-end happy path.
|
|
@@ -154,14 +153,13 @@ Partial rows must prove only the documented subset. `xs:anyAttribute` should not
|
|
|
154
153
|
|
|
155
154
|
### Next Slice
|
|
156
155
|
|
|
157
|
-
The next slice is Phase
|
|
156
|
+
The next slice is Phase 5 documentation and release-gate wiring. Implement it before adding more feature rows unless a production bug requires a focused diagnostic or support decision.
|
|
158
157
|
|
|
159
158
|
Work items:
|
|
160
159
|
|
|
161
|
-
-
|
|
162
|
-
-
|
|
163
|
-
-
|
|
164
|
-
- Run generated tests only for rows that request generated-test evidence.
|
|
160
|
+
- Decide whether `npm run test:conformance` should run in CI, release preflight, or both.
|
|
161
|
+
- Keep a focused command for maintainers who want only conformance checks.
|
|
162
|
+
- Confirm release preflight runtime remains acceptable.
|
|
165
163
|
- Keep diagnostic and unsupported rows stopped at compile.
|
|
166
164
|
- Update public docs only when a row status or public contract changes.
|
|
167
165
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@techspokes/typescript-wsdl-client",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.33.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",
|