diff --git a/README.md b/README.md index 1756924..16fc2bc 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,8 @@ -# Anduril Lattice SDK TypeScript +# Anduril TypeScript Library ![](https://www.anduril.com/lattice-sdk/) +[![fern shield](https://img.shields.io/badge/%F0%9F%8C%BF-Built%20with%20Fern-brightgreen)](https://buildwithfern.com?utm_source=github&utm_medium=github&utm_campaign=readme&utm_source=https%3A%2F%2Fgithub.com%2Fanduril%2Flattice-sdk-javascript) [![npm shield](https://img.shields.io/npm/v/@anduril-industries/lattice-sdk)](https://www.npmjs.com/package/@anduril-industries/lattice-sdk) The Anduril TypeScript library provides convenient access to the Anduril API from TypeScript. @@ -626,3 +627,13 @@ const client = new LatticeClient({ fetcher: // provide your implementation here }); ``` + +## Contributing + +While we value open-source contributions to this SDK, this library is generated programmatically. +Additions made directly to this library would have to be moved over to our generation code, +otherwise they would be overwritten upon the next generated release. Feel free to open a PR as +a proof of concept, but know that we will not be able to merge it as-is. We suggest opening +an issue first to discuss with us! + +On the other hand, contributions to the README are always very welcome! diff --git a/package.json b/package.json index 73ee226..2992b1a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@anduril-industries/lattice-sdk", - "version": "2.0.0", + "version": "2.1.0", "private": false, "repository": "github:anduril/lattice-sdk-javascript", "license": "See LICENSE", diff --git a/src/Client.ts b/src/Client.ts index f2ebf49..3d512dc 100644 --- a/src/Client.ts +++ b/src/Client.ts @@ -44,8 +44,8 @@ export class LatticeClient { { "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@anduril-industries/lattice-sdk", - "X-Fern-SDK-Version": "2.0.0", - "User-Agent": "@anduril-industries/lattice-sdk/2.0.0", + "X-Fern-SDK-Version": "2.1.0", + "User-Agent": "@anduril-industries/lattice-sdk/2.1.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, diff --git a/src/version.ts b/src/version.ts index 478f50d..58b4ee6 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const SDK_VERSION = "2.0.0"; +export const SDK_VERSION = "2.1.0";