From ed11edf9416c8bb1c1781eaa89d81e8dedf3934a Mon Sep 17 00:00:00 2001 From: "fern-api[bot]" <115122769+fern-api[bot]@users.noreply.github.com> Date: Tue, 21 Oct 2025 23:04:15 +0000 Subject: [PATCH] SDK regeneration --- README.md | 6 +++--- build.gradle | 16 ++++++++-------- .../java/com/anduril/core/ClientOptions.java | 4 ++-- 3 files changed, 13 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index c27363a..9a3bee7 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ Add the dependency in your `pom.xml` file: com.anduril lattice-sdk - 3.1.0 + 3.2.0 ``` @@ -103,9 +103,9 @@ When the API returns a non-success status code (4xx or 5xx response), an API exc ```java import com.anduril.core.AndurilApiApiException; -try { +try{ client.entities().longPollEntityEvents(...); -} catch (AndurilApiApiException e) { +} catch (AndurilApiApiException e){ // Do something with the API exception... } ``` diff --git a/build.gradle b/build.gradle index a60fc51..689c6bb 100644 --- a/build.gradle +++ b/build.gradle @@ -48,7 +48,7 @@ java { group = 'com.anduril' -version = '3.1.0' +version = '3.2.0' jar { dependsOn(":generatePomFileForMavenPublication") @@ -79,21 +79,21 @@ publishing { maven(MavenPublication) { groupId = 'com.anduril' artifactId = 'lattice-sdk' - version = '3.1.0' + version = '3.2.0' from components.java pom { - name = 'Anduril Industries, Inc.' - description = 'Anduril Lattice SDK for Java' - url = 'https://developer.anduril.com' + name = 'anduril' + description = 'The official SDK of anduril' + url = 'https://buildwithfern.com' licenses { license { - name = 'Anduril Lattice Software Development Kit License Agreement' + name = 'Custom License (LICENSE)' } } developers { developer { - name = 'Anduril Industries, Inc.' - email = 'lattice-developers@anduril.com' + name = 'anduril' + email = 'developers@anduril.com' } } scm { diff --git a/src/main/java/com/anduril/core/ClientOptions.java b/src/main/java/com/anduril/core/ClientOptions.java index 6ca1d44..f1115f1 100644 --- a/src/main/java/com/anduril/core/ClientOptions.java +++ b/src/main/java/com/anduril/core/ClientOptions.java @@ -32,10 +32,10 @@ private ClientOptions( this.headers.putAll(headers); this.headers.putAll(new HashMap() { { - put("User-Agent", "com.anduril:lattice-sdk/3.1.0"); + put("User-Agent", "com.anduril:lattice-sdk/3.2.0"); put("X-Fern-Language", "JAVA"); put("X-Fern-SDK-Name", "com.anduril.fern:api-sdk"); - put("X-Fern-SDK-Version", "3.1.0"); + put("X-Fern-SDK-Version", "3.2.0"); } }); this.headerSuppliers = headerSuppliers;