Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.374.0"
".": "0.375.0"
}
4 changes: 2 additions & 2 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 229
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-db504b55f81ac4d64ccbfc4d2fecdd346b2a671da840afd3b47fd499ea52e640.yml
openapi_spec_hash: 06d1e20101565b4c8ba616cfa84fbfdd
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-56334e000721ba4ee20536271d3acf7231529d7b1f651729e2f4ebe75eb12048.yml
openapi_spec_hash: 45777c412bcbc1aead50c84f78695203
config_hash: b6f365add90e618b2174634df140826e
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.375.0 (2025-12-08)

Full Changelog: [v0.374.0...v0.375.0](https://github.com/Increase/increase-java/compare/v0.374.0...v0.375.0)

### Features

* **api:** api update ([cc80a88](https://github.com/Increase/increase-java/commit/cc80a8883eaf76ca1eba4b593d3114849591cadb))

## 0.374.0 (2025-12-06)

Full Changelog: [v0.373.0...v0.374.0](https://github.com/Increase/increase-java/compare/v0.373.0...v0.374.0)
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

<!-- x-release-please-start-version -->

[![Maven Central](https://img.shields.io/maven-central/v/com.increase.api/increase-java)](https://central.sonatype.com/artifact/com.increase.api/increase-java/0.374.0)
[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.374.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.374.0)
[![Maven Central](https://img.shields.io/maven-central/v/com.increase.api/increase-java)](https://central.sonatype.com/artifact/com.increase.api/increase-java/0.375.0)
[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.375.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.375.0)

<!-- x-release-please-end -->

Expand All @@ -13,7 +13,7 @@ The Increase Java SDK is similar to the Increase Kotlin SDK but with minor diffe

<!-- x-release-please-start-version -->

The REST API documentation can be found on [increase.com](https://increase.com/documentation). Javadocs are available on [javadoc.io](https://javadoc.io/doc/com.increase.api/increase-java/0.374.0).
The REST API documentation can be found on [increase.com](https://increase.com/documentation). Javadocs are available on [javadoc.io](https://javadoc.io/doc/com.increase.api/increase-java/0.375.0).

<!-- x-release-please-end -->

Expand All @@ -24,7 +24,7 @@ The REST API documentation can be found on [increase.com](https://increase.com/d
### Gradle

```kotlin
implementation("com.increase.api:increase-java:0.374.0")
implementation("com.increase.api:increase-java:0.375.0")
```

### Maven
Expand All @@ -33,7 +33,7 @@ implementation("com.increase.api:increase-java:0.374.0")
<dependency>
<groupId>com.increase.api</groupId>
<artifactId>increase-java</artifactId>
<version>0.374.0</version>
<version>0.375.0</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ repositories {

allprojects {
group = "com.increase.api"
version = "0.374.0" // x-release-please-version
version = "0.375.0" // x-release-please-version
}

subprojects {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7457,6 +7457,9 @@ private constructor(
/** Oscilar. See https://oscilar.com for more information. */
@JvmField val OSCILAR = of("oscilar")

/** Persona. See https://withpersona.com for more information. */
@JvmField val PERSONA = of("persona")

@JvmStatic fun of(value: String) = Vendor(JsonField.of(value))
}

Expand All @@ -7468,6 +7471,8 @@ private constructor(
MIDDESK,
/** Oscilar. See https://oscilar.com for more information. */
OSCILAR,
/** Persona. See https://withpersona.com for more information. */
PERSONA,
}

/**
Expand All @@ -7486,6 +7491,8 @@ private constructor(
MIDDESK,
/** Oscilar. See https://oscilar.com for more information. */
OSCILAR,
/** Persona. See https://withpersona.com for more information. */
PERSONA,
/**
* An enum member indicating that [Vendor] was instantiated with an unknown value.
*/
Expand All @@ -7504,6 +7511,7 @@ private constructor(
ALLOY -> Value.ALLOY
MIDDESK -> Value.MIDDESK
OSCILAR -> Value.OSCILAR
PERSONA -> Value.PERSONA
else -> Value._UNKNOWN
}

Expand All @@ -7521,6 +7529,7 @@ private constructor(
ALLOY -> Known.ALLOY
MIDDESK -> Known.MIDDESK
OSCILAR -> Known.OSCILAR
PERSONA -> Known.PERSONA
else -> throw IncreaseInvalidDataException("Unknown Vendor: $value")
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11287,6 +11287,9 @@ private constructor(
/** Oscilar. See https://oscilar.com for more information. */
@JvmField val OSCILAR = of("oscilar")

/** Persona. See https://withpersona.com for more information. */
@JvmField val PERSONA = of("persona")

@JvmStatic fun of(value: String) = Vendor(JsonField.of(value))
}

Expand All @@ -11298,6 +11301,8 @@ private constructor(
MIDDESK,
/** Oscilar. See https://oscilar.com for more information. */
OSCILAR,
/** Persona. See https://withpersona.com for more information. */
PERSONA,
}

/**
Expand All @@ -11316,6 +11321,8 @@ private constructor(
MIDDESK,
/** Oscilar. See https://oscilar.com for more information. */
OSCILAR,
/** Persona. See https://withpersona.com for more information. */
PERSONA,
/**
* An enum member indicating that [Vendor] was instantiated with an unknown value.
*/
Expand All @@ -11334,6 +11341,7 @@ private constructor(
ALLOY -> Value.ALLOY
MIDDESK -> Value.MIDDESK
OSCILAR -> Value.OSCILAR
PERSONA -> Value.PERSONA
else -> Value._UNKNOWN
}

Expand All @@ -11351,6 +11359,7 @@ private constructor(
ALLOY -> Known.ALLOY
MIDDESK -> Known.MIDDESK
OSCILAR -> Known.OSCILAR
PERSONA -> Known.PERSONA
else -> throw IncreaseInvalidDataException("Unknown Vendor: $value")
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3069,6 +3069,9 @@ private constructor(
/** Oscilar. See https://oscilar.com for more information. */
@JvmField val OSCILAR = of("oscilar")

/** Persona. See https://withpersona.com for more information. */
@JvmField val PERSONA = of("persona")

@JvmStatic fun of(value: String) = Vendor(JsonField.of(value))
}

Expand All @@ -3080,6 +3083,8 @@ private constructor(
MIDDESK,
/** Oscilar. See https://oscilar.com for more information. */
OSCILAR,
/** Persona. See https://withpersona.com for more information. */
PERSONA,
}

/**
Expand All @@ -3098,6 +3103,8 @@ private constructor(
MIDDESK,
/** Oscilar. See https://oscilar.com for more information. */
OSCILAR,
/** Persona. See https://withpersona.com for more information. */
PERSONA,
/**
* An enum member indicating that [Vendor] was instantiated with an unknown value.
*/
Expand All @@ -3116,6 +3123,7 @@ private constructor(
ALLOY -> Value.ALLOY
MIDDESK -> Value.MIDDESK
OSCILAR -> Value.OSCILAR
PERSONA -> Value.PERSONA
else -> Value._UNKNOWN
}

Expand All @@ -3133,6 +3141,7 @@ private constructor(
ALLOY -> Known.ALLOY
MIDDESK -> Known.MIDDESK
OSCILAR -> Known.OSCILAR
PERSONA -> Known.PERSONA
else -> throw IncreaseInvalidDataException("Unknown Vendor: $value")
}

Expand Down
Loading