@vantage-sh/vantage-client 2.1.0 → 2.2.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/README.md +11 -0
- package/dist/index.d.mts +411 -32
- package/dist/index.d.ts +411 -32
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -237,3 +237,14 @@ The SDK exports several utility types for advanced use:
|
|
|
237
237
|
| `RequestBodyForPathAndMethod<P, M>` | Request body type for a path/method |
|
|
238
238
|
| `ResponseBodyForPathAndMethod<P, M>` | Response body type for a path/method |
|
|
239
239
|
| `NoSlashString` | Branded type for safely encoded path segments |
|
|
240
|
+
|
|
241
|
+
## Publishing
|
|
242
|
+
|
|
243
|
+
After building locally and confirming the changes in the Vantage API are reflected in the types in this
|
|
244
|
+
repository, bump the `version` in `package.json` and open a PR. CI will take care of publishing the new
|
|
245
|
+
version with the updates.
|
|
246
|
+
|
|
247
|
+
Semantic Considerations:
|
|
248
|
+
* `patch` - Bug fixes
|
|
249
|
+
* `minor` - New APIs or additions to existing APIs
|
|
250
|
+
* `major` - Breaking changes
|