@vantage-sh/vantage-client 2.0.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/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Vantage
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
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