@techspokes/typescript-wsdl-client 0.7.13 → 0.7.15
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/README.md +6 -5
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -152,16 +152,17 @@ The OpenAPI schemas reproduce the **exact** flattening & naming used in `types.t
|
|
|
152
152
|
### 5.3 Additional Flags (Selected)
|
|
153
153
|
| Flag | Description |
|
|
154
154
|
|------------------------|------------------------------------------------------------------------------------------|
|
|
155
|
+
| `--openapi-out` | Output base or file for OpenAPI (if omitted chooses `openapi.json`). |
|
|
155
156
|
| `--basePath` | Prefix for REST path segments (e.g. `/v1/booking`). |
|
|
156
157
|
| `--pathStyle` | Control operation name → path transformation: `kebab`, `asis`, `lower`. Default: `kebab` |
|
|
157
|
-
| `--method` | Default HTTP method (per‑op override via `--ops`).
|
|
158
|
-
| `--tag-style` | Tag inference: `default`, `service`, `first`.
|
|
158
|
+
| `--method` | Default HTTP method (per‑op override via `--ops`). Default: `post`. |
|
|
159
|
+
| `--tag-style` | Tag inference: `default`, `service`, `first`. Default: `default`. |
|
|
159
160
|
| `--security` | Path to `security.json` (schemes + headers + overrides). |
|
|
160
161
|
| `--tags` | Path to `tags.json` (explicit operation → tag map). |
|
|
161
162
|
| `--ops` | Path to `ops.json` (method/summary/description/deprecated). |
|
|
162
|
-
| `--closedSchemas` | Apply `additionalProperties:false` globally.
|
|
163
|
-
| `--pruneUnusedSchemas` | Emit only reachable schemas.
|
|
164
|
-
| `--servers` | Comma‑separated server base URLs for the spec
|
|
163
|
+
| `--closedSchemas` | Apply `additionalProperties:false` globally. Default: `false`. |
|
|
164
|
+
| `--pruneUnusedSchemas` | Emit only reachable schemas. Default: `false`. |
|
|
165
|
+
| `--servers` | Comma‑separated server base URLs for the spec. Default: `/`. |
|
|
165
166
|
|
|
166
167
|
Deterministic ordering: all path keys, HTTP methods, component schema names, securitySchemes, parameters, component section keys, and operation tag arrays are alphabetically sorted for diff‑friendly output. The generator also omits a custom `jsonSchemaDialect` declaration to maximize IDE/tool compatibility (JetBrains warning avoidance) unless a future flag introduces non‑default dialect selection.
|
|
167
168
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@techspokes/typescript-wsdl-client",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.15",
|
|
4
4
|
"description": "TypeScript WSDL → SOAP client generator with full xs:attribute support, complex types, sequences, inheritance, and namespace-collision merging.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"wsdl",
|
|
@@ -69,7 +69,7 @@
|
|
|
69
69
|
"dependencies": {
|
|
70
70
|
"@apidevtools/swagger-parser": "^12.1.0",
|
|
71
71
|
"fast-xml-parser": "^5.2.5",
|
|
72
|
-
"js-yaml": "^4.1.
|
|
72
|
+
"js-yaml": "^4.1.1",
|
|
73
73
|
"soap": "^1.3.0",
|
|
74
74
|
"yargs": "^18.0.0"
|
|
75
75
|
},
|