@naturali/sdk 0.1.0 → 0.1.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/README.md +12 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -88,3 +88,15 @@ rebuilt from `api/openapi/v1/*.yaml` by `pnpm generate`, which `typecheck`,
|
|
|
88
88
|
pipeline.
|
|
89
89
|
|
|
90
90
|
The only hand-written source is `src/naturaliClient.ts`.
|
|
91
|
+
|
|
92
|
+
## Versioning
|
|
93
|
+
|
|
94
|
+
Releases are automatic, and the version tracks the API rather than a hand-picked
|
|
95
|
+
schedule. Any change to `api/openapi/v1/*.yaml` regenerates this package and
|
|
96
|
+
publishes it, because the specs are what it is generated *from* — so a new
|
|
97
|
+
version can mean the API gained a resource, not that the hand-written client
|
|
98
|
+
changed.
|
|
99
|
+
|
|
100
|
+
`fix:`/`chore:` changes release a patch, `feat:` a minor, and a breaking change
|
|
101
|
+
is held for human approval before it reaches npm. See the repository
|
|
102
|
+
[README](../../README.md#releasing).
|