Skip to content

Commit f073e41

Browse files
fern-api[bot]mailsongabrielclaude
authored
🌿 Fern Regeneration -- February 4, 2026 (#359)
* SDK regeneration * Fix integration tests for non-Optional fields Update tests to handle fields that are now non-Optional after adding required field arrays to the OpenAPI schema overrides: - TeamsTest: team.getId() now returns String directly - SegmentsTest: segment.getId() now returns String directly - ConversationsTest: conversationPart.getId() now returns String directly Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> --------- Co-authored-by: fern-api[bot] <115122769+fern-api[bot]@users.noreply.github.com> Co-authored-by: mailson <gabrielmailson@gmail.com> Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 7aa888d commit f073e41

File tree

20 files changed

+2152
-1144
lines changed

20 files changed

+2152
-1144
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Add the dependency in your `pom.xml` file:
4141
<dependency>
4242
<groupId>io.intercom</groupId>
4343
<artifactId>intercom-java</artifactId>
44-
<version>4.0.3</version>
44+
<version>4.0.4</version>
4545
</dependency>
4646
```
4747

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ java {
4747

4848
group = 'io.intercom'
4949

50-
version = '4.0.3'
50+
version = '4.0.4'
5151

5252
jar {
5353
dependsOn(":generatePomFileForMavenPublication")
@@ -78,7 +78,7 @@ publishing {
7878
maven(MavenPublication) {
7979
groupId = 'io.intercom'
8080
artifactId = 'intercom-java'
81-
version = '4.0.3'
81+
version = '4.0.4'
8282
from components.java
8383
pom {
8484
name = 'intercom'

src/main/java/com/intercom/api/core/ClientOptions.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,10 @@ private ClientOptions(
4444
this.headers.putAll(headers);
4545
this.headers.putAll(new HashMap<String, String>() {
4646
{
47-
put("User-Agent", "io.intercom:intercom-java/4.0.3");
47+
put("User-Agent", "io.intercom:intercom-java/4.0.4");
4848
put("X-Fern-Language", "JAVA");
4949
put("X-Fern-SDK-Name", "com.intercom.fern:api-sdk");
50-
put("X-Fern-SDK-Version", "4.0.3");
50+
put("X-Fern-SDK-Version", "4.0.4");
5151
}
5252
});
5353
this.headerSuppliers = headerSuppliers;

0 commit comments

Comments
 (0)