@techspokes/typescript-wsdl-client 0.10.1 → 0.10.2
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/docs/AGENTS.md +47 -0
- package/docs/README.md +35 -0
- package/llms.txt +2 -0
- package/package.json +1 -1
package/docs/AGENTS.md
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
# Agent Instructions for docs/
|
|
2
|
+
|
|
3
|
+
## Summary
|
|
4
|
+
|
|
5
|
+
This directory contains human-maintained reference documentation for `@techspokes/typescript-wsdl-client`. Documents here are not generated; agents may edit them but must preserve cross-references, formatting conventions, and consistency with the root README.
|
|
6
|
+
|
|
7
|
+
## Must-follow rules
|
|
8
|
+
|
|
9
|
+
- Maintain cross-references between documents; when a doc mentions a related topic, link to the relevant file.
|
|
10
|
+
- Use relative links for all internal references (e.g. `[CLI Reference](cli-reference.md)`, `[root README](../README.md)`).
|
|
11
|
+
- Each document must open with an H1 title, a one-line description, and a cross-reference to the root [README.md](../README.md).
|
|
12
|
+
- When adding, renaming, or removing a document, update the Documentation table in the root [README.md](../README.md) — that table is the single source of truth for this directory's contents.
|
|
13
|
+
- Do not duplicate content from root-level files (README.md, CONTRIBUTING.md, CHANGELOG.md); link to them instead.
|
|
14
|
+
|
|
15
|
+
## Must-read documents
|
|
16
|
+
|
|
17
|
+
- [Root README.md](../README.md): authoritative Documentation table and project overview
|
|
18
|
+
- [Root AGENTS.md](../AGENTS.md): project-wide agent instructions pointing to `.github/copilot-instructions.md` for full detail
|
|
19
|
+
|
|
20
|
+
## Agent guidelines
|
|
21
|
+
|
|
22
|
+
### Style conventions
|
|
23
|
+
|
|
24
|
+
- Use fenced code blocks for CLI examples and inline code for flag names (`` `--flag-name` ``).
|
|
25
|
+
- Keep language direct and task-oriented.
|
|
26
|
+
- `architecture.md` targets contributors; all other documents target users.
|
|
27
|
+
|
|
28
|
+
### Adding a new document
|
|
29
|
+
|
|
30
|
+
1. Create the file in `docs/` with an H1 title and description.
|
|
31
|
+
2. Add a row to the Documentation table in the root README.md.
|
|
32
|
+
3. Add a bullet to the Contents list in `docs/README.md`.
|
|
33
|
+
4. Cross-reference from related existing documents where appropriate.
|
|
34
|
+
|
|
35
|
+
### Editing existing documents
|
|
36
|
+
|
|
37
|
+
- Preserve the H1 + description + cross-reference opening pattern.
|
|
38
|
+
- If renaming a file, update the root README.md Documentation table and fix any relative links in other docs.
|
|
39
|
+
|
|
40
|
+
## Context
|
|
41
|
+
|
|
42
|
+
The `docs/` directory was introduced in v0.8.x to move detailed reference material out of the root README. `architecture.md` covers the internal pipeline for contributors; the remaining documents serve end users integrating with or deploying generated code.
|
|
43
|
+
|
|
44
|
+
## References
|
|
45
|
+
|
|
46
|
+
- [examples/README.md](../examples/README.md): folder README pattern example
|
|
47
|
+
- [Root README.md Documentation table](../README.md#documentation): authoritative listing of all docs
|
package/docs/README.md
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
# Documentation
|
|
2
|
+
|
|
3
|
+
Human-maintained reference documents for `@techspokes/typescript-wsdl-client`. The root [README.md](../README.md) Documentation table is the authoritative index with descriptions; the list below is a quick local reference.
|
|
4
|
+
|
|
5
|
+
## Contents
|
|
6
|
+
|
|
7
|
+
- [api-reference.md](api-reference.md) – Programmatic TypeScript API
|
|
8
|
+
- [architecture.md](architecture.md) – Internal pipeline for contributors
|
|
9
|
+
- [cli-reference.md](cli-reference.md) – All 6 commands with flags and examples
|
|
10
|
+
- [concepts.md](concepts.md) – Flattening, `$value`, primitives, determinism
|
|
11
|
+
- [configuration.md](configuration.md) – Security, tags, operations config files
|
|
12
|
+
- [gateway-guide.md](gateway-guide.md) – Fastify integration and error handling
|
|
13
|
+
- [generated-code.md](generated-code.md) – Using clients and types
|
|
14
|
+
- [migration.md](migration.md) – Upgrade paths between versions
|
|
15
|
+
- [production.md](production.md) – CI/CD, validation, logging, limitations
|
|
16
|
+
- [troubleshooting.md](troubleshooting.md) – Common issues and debugging
|
|
17
|
+
|
|
18
|
+
## Conventions
|
|
19
|
+
|
|
20
|
+
- Each document opens with an H1 title and a one-line description.
|
|
21
|
+
- Cross-reference related documents and the root README where relevant.
|
|
22
|
+
- Use fenced code blocks for CLI examples; format flags as inline code (`` `--flag-name` ``).
|
|
23
|
+
- Keep language direct and task-oriented; architecture.md targets contributors, all others target users.
|
|
24
|
+
|
|
25
|
+
## Related
|
|
26
|
+
|
|
27
|
+
- [Root README](../README.md) – project overview, quick start, and authoritative Documentation table
|
|
28
|
+
- [CONTRIBUTING.md](../CONTRIBUTING.md) – development setup and workflow
|
|
29
|
+
- [CHANGELOG.md](../CHANGELOG.md) – version history
|
|
30
|
+
- [examples/](../examples/) – sample WSDL files and generated output
|
|
31
|
+
|
|
32
|
+
## Not Here
|
|
33
|
+
|
|
34
|
+
- Generated code samples live in `examples/generated-output/`, not in `docs/`.
|
|
35
|
+
- Installation and dev setup belong in the root README and CONTRIBUTING.md respectively.
|
package/llms.txt
CHANGED
|
@@ -47,5 +47,7 @@ npx wsdl-tsc pipeline \
|
|
|
47
47
|
- README.md: project overview and quick start
|
|
48
48
|
- CONTRIBUTING.md: development setup, project structure, testing strategy
|
|
49
49
|
- docs/migration.md: upgrade paths between versions
|
|
50
|
+
- .github/copilot-instructions.md: authoritative detailed agent instructions (referenced by AGENTS.md)
|
|
51
|
+
- docs/README.md: documentation directory index and conventions
|
|
50
52
|
- npm: https://www.npmjs.com/package/@techspokes/typescript-wsdl-client
|
|
51
53
|
- GitHub: https://github.com/TechSpokes/typescript-wsdl-client
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@techspokes/typescript-wsdl-client",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.2",
|
|
4
4
|
"description": "Generate type-safe TypeScript SOAP clients, OpenAPI 3.1 specs, and production-ready Fastify REST gateways from WSDL/XSD definitions.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"wsdl",
|