Skip to content
Closed
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
The table of contents is too big for display.
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.295.0"
".": "0.295.1"
}
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.295.1 (2025-08-22)

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

### Bug Fixes

* update singularization rules ([691c68b](https://github.com/Increase/increase-java/commit/691c68be2e3d95cc503a0684b2fee6c86618b9c8))

## 0.295.0 (2025-08-22)

Full Changelog: [v0.294.0...v0.295.0](https://github.com/Increase/increase-java/compare/v0.294.0...v0.295.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.295.0)
[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.295.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.295.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.295.1)
[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.295.1/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.295.1)

<!-- 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.295.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.295.1).

<!-- 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.295.0")
implementation("com.increase.api:increase-java:0.295.1")
```

### Maven
Expand All @@ -33,7 +33,7 @@ implementation("com.increase.api:increase-java:0.295.0")
<dependency>
<groupId>com.increase.api</groupId>
<artifactId>increase-java</artifactId>
<version>0.295.0</version>
<version>0.295.1</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.295.0" // x-release-please-version
version = "0.295.1" // x-release-please-version
}

subprojects {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -220,33 +220,33 @@ class IncreaseOkHttpClient private constructor() {

fun putHeader(name: String, value: String) = apply { clientOptions.putHeader(name, value) }

fun putHeaders(name: String, values: Iterable<String>) = apply {
clientOptions.putHeaders(name, values)
fun putheaders(name: String, values: Iterable<String>) = apply {
clientOptions.putheaders(name, values)
}

fun putAllHeaders(headers: Headers) = apply { clientOptions.putAllHeaders(headers) }
fun putAllheaders(headers: Headers) = apply { clientOptions.putAllheaders(headers) }

fun putAllHeaders(headers: Map<String, Iterable<String>>) = apply {
clientOptions.putAllHeaders(headers)
fun putAllheaders(headers: Map<String, Iterable<String>>) = apply {
clientOptions.putAllheaders(headers)
}

fun replaceHeaders(name: String, value: String) = apply {
clientOptions.replaceHeaders(name, value)
fun replaceheaders(name: String, value: String) = apply {
clientOptions.replaceheaders(name, value)
}

fun replaceHeaders(name: String, values: Iterable<String>) = apply {
clientOptions.replaceHeaders(name, values)
fun replaceheaders(name: String, values: Iterable<String>) = apply {
clientOptions.replaceheaders(name, values)
}

fun replaceAllHeaders(headers: Headers) = apply { clientOptions.replaceAllHeaders(headers) }
fun replaceAllheaders(headers: Headers) = apply { clientOptions.replaceAllheaders(headers) }

fun replaceAllHeaders(headers: Map<String, Iterable<String>>) = apply {
clientOptions.replaceAllHeaders(headers)
fun replaceAllheaders(headers: Map<String, Iterable<String>>) = apply {
clientOptions.replaceAllheaders(headers)
}

fun removeHeaders(name: String) = apply { clientOptions.removeHeaders(name) }
fun removeheaders(name: String) = apply { clientOptions.removeheaders(name) }

fun removeAllHeaders(names: Set<String>) = apply { clientOptions.removeAllHeaders(names) }
fun removeAllheaders(names: Set<String>) = apply { clientOptions.removeAllheaders(names) }

fun queryParams(queryParams: QueryParams) = apply { clientOptions.queryParams(queryParams) }

Expand All @@ -258,38 +258,38 @@ class IncreaseOkHttpClient private constructor() {
clientOptions.putQueryParam(key, value)
}

fun putQueryParams(key: String, values: Iterable<String>) = apply {
clientOptions.putQueryParams(key, values)
fun putquery_params(key: String, values: Iterable<String>) = apply {
clientOptions.putquery_params(key, values)
}

fun putAllQueryParams(queryParams: QueryParams) = apply {
clientOptions.putAllQueryParams(queryParams)
fun putAllquery_params(queryParams: QueryParams) = apply {
clientOptions.putAllquery_params(queryParams)
}

fun putAllQueryParams(queryParams: Map<String, Iterable<String>>) = apply {
clientOptions.putAllQueryParams(queryParams)
fun putAllquery_params(queryParams: Map<String, Iterable<String>>) = apply {
clientOptions.putAllquery_params(queryParams)
}

fun replaceQueryParams(key: String, value: String) = apply {
clientOptions.replaceQueryParams(key, value)
fun replacequery_params(key: String, value: String) = apply {
clientOptions.replacequery_params(key, value)
}

fun replaceQueryParams(key: String, values: Iterable<String>) = apply {
clientOptions.replaceQueryParams(key, values)
fun replacequery_params(key: String, values: Iterable<String>) = apply {
clientOptions.replacequery_params(key, values)
}

fun replaceAllQueryParams(queryParams: QueryParams) = apply {
clientOptions.replaceAllQueryParams(queryParams)
fun replaceAllquery_params(queryParams: QueryParams) = apply {
clientOptions.replaceAllquery_params(queryParams)
}

fun replaceAllQueryParams(queryParams: Map<String, Iterable<String>>) = apply {
clientOptions.replaceAllQueryParams(queryParams)
fun replaceAllquery_params(queryParams: Map<String, Iterable<String>>) = apply {
clientOptions.replaceAllquery_params(queryParams)
}

fun removeQueryParams(key: String) = apply { clientOptions.removeQueryParams(key) }
fun removequery_params(key: String) = apply { clientOptions.removequery_params(key) }

fun removeAllQueryParams(keys: Set<String>) = apply {
clientOptions.removeAllQueryParams(keys)
fun removeAllquery_params(keys: Set<String>) = apply {
clientOptions.removeAllquery_params(keys)
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -220,33 +220,33 @@ class IncreaseOkHttpClientAsync private constructor() {

fun putHeader(name: String, value: String) = apply { clientOptions.putHeader(name, value) }

fun putHeaders(name: String, values: Iterable<String>) = apply {
clientOptions.putHeaders(name, values)
fun putheaders(name: String, values: Iterable<String>) = apply {
clientOptions.putheaders(name, values)
}

fun putAllHeaders(headers: Headers) = apply { clientOptions.putAllHeaders(headers) }
fun putAllheaders(headers: Headers) = apply { clientOptions.putAllheaders(headers) }

fun putAllHeaders(headers: Map<String, Iterable<String>>) = apply {
clientOptions.putAllHeaders(headers)
fun putAllheaders(headers: Map<String, Iterable<String>>) = apply {
clientOptions.putAllheaders(headers)
}

fun replaceHeaders(name: String, value: String) = apply {
clientOptions.replaceHeaders(name, value)
fun replaceheaders(name: String, value: String) = apply {
clientOptions.replaceheaders(name, value)
}

fun replaceHeaders(name: String, values: Iterable<String>) = apply {
clientOptions.replaceHeaders(name, values)
fun replaceheaders(name: String, values: Iterable<String>) = apply {
clientOptions.replaceheaders(name, values)
}

fun replaceAllHeaders(headers: Headers) = apply { clientOptions.replaceAllHeaders(headers) }
fun replaceAllheaders(headers: Headers) = apply { clientOptions.replaceAllheaders(headers) }

fun replaceAllHeaders(headers: Map<String, Iterable<String>>) = apply {
clientOptions.replaceAllHeaders(headers)
fun replaceAllheaders(headers: Map<String, Iterable<String>>) = apply {
clientOptions.replaceAllheaders(headers)
}

fun removeHeaders(name: String) = apply { clientOptions.removeHeaders(name) }
fun removeheaders(name: String) = apply { clientOptions.removeheaders(name) }

fun removeAllHeaders(names: Set<String>) = apply { clientOptions.removeAllHeaders(names) }
fun removeAllheaders(names: Set<String>) = apply { clientOptions.removeAllheaders(names) }

fun queryParams(queryParams: QueryParams) = apply { clientOptions.queryParams(queryParams) }

Expand All @@ -258,38 +258,38 @@ class IncreaseOkHttpClientAsync private constructor() {
clientOptions.putQueryParam(key, value)
}

fun putQueryParams(key: String, values: Iterable<String>) = apply {
clientOptions.putQueryParams(key, values)
fun putquery_params(key: String, values: Iterable<String>) = apply {
clientOptions.putquery_params(key, values)
}

fun putAllQueryParams(queryParams: QueryParams) = apply {
clientOptions.putAllQueryParams(queryParams)
fun putAllquery_params(queryParams: QueryParams) = apply {
clientOptions.putAllquery_params(queryParams)
}

fun putAllQueryParams(queryParams: Map<String, Iterable<String>>) = apply {
clientOptions.putAllQueryParams(queryParams)
fun putAllquery_params(queryParams: Map<String, Iterable<String>>) = apply {
clientOptions.putAllquery_params(queryParams)
}

fun replaceQueryParams(key: String, value: String) = apply {
clientOptions.replaceQueryParams(key, value)
fun replacequery_params(key: String, value: String) = apply {
clientOptions.replacequery_params(key, value)
}

fun replaceQueryParams(key: String, values: Iterable<String>) = apply {
clientOptions.replaceQueryParams(key, values)
fun replacequery_params(key: String, values: Iterable<String>) = apply {
clientOptions.replacequery_params(key, values)
}

fun replaceAllQueryParams(queryParams: QueryParams) = apply {
clientOptions.replaceAllQueryParams(queryParams)
fun replaceAllquery_params(queryParams: QueryParams) = apply {
clientOptions.replaceAllquery_params(queryParams)
}

fun replaceAllQueryParams(queryParams: Map<String, Iterable<String>>) = apply {
clientOptions.replaceAllQueryParams(queryParams)
fun replaceAllquery_params(queryParams: Map<String, Iterable<String>>) = apply {
clientOptions.replaceAllquery_params(queryParams)
}

fun removeQueryParams(key: String) = apply { clientOptions.removeQueryParams(key) }
fun removequery_params(key: String) = apply { clientOptions.removequery_params(key) }

fun removeAllQueryParams(keys: Set<String>) = apply {
clientOptions.removeAllQueryParams(keys)
fun removeAllquery_params(keys: Set<String>) = apply {
clientOptions.removeAllquery_params(keys)
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -303,83 +303,83 @@ private constructor(

fun headers(headers: Headers) = apply {
this.headers.clear()
putAllHeaders(headers)
putAllheaders(headers)
}

fun headers(headers: Map<String, Iterable<String>>) = apply {
this.headers.clear()
putAllHeaders(headers)
putAllheaders(headers)
}

fun putHeader(name: String, value: String) = apply { headers.put(name, value) }

fun putHeaders(name: String, values: Iterable<String>) = apply { headers.put(name, values) }
fun putheaders(name: String, values: Iterable<String>) = apply { headers.put(name, values) }

fun putAllHeaders(headers: Headers) = apply { this.headers.putAll(headers) }
fun putAllheaders(headers: Headers) = apply { this.headers.putAll(headers) }

fun putAllHeaders(headers: Map<String, Iterable<String>>) = apply {
fun putAllheaders(headers: Map<String, Iterable<String>>) = apply {
this.headers.putAll(headers)
}

fun replaceHeaders(name: String, value: String) = apply { headers.replace(name, value) }
fun replaceheaders(name: String, value: String) = apply { headers.replace(name, value) }

fun replaceHeaders(name: String, values: Iterable<String>) = apply {
fun replaceheaders(name: String, values: Iterable<String>) = apply {
headers.replace(name, values)
}

fun replaceAllHeaders(headers: Headers) = apply { this.headers.replaceAll(headers) }
fun replaceAllheaders(headers: Headers) = apply { this.headers.replaceAll(headers) }

fun replaceAllHeaders(headers: Map<String, Iterable<String>>) = apply {
fun replaceAllheaders(headers: Map<String, Iterable<String>>) = apply {
this.headers.replaceAll(headers)
}

fun removeHeaders(name: String) = apply { headers.remove(name) }
fun removeheaders(name: String) = apply { headers.remove(name) }

fun removeAllHeaders(names: Set<String>) = apply { headers.removeAll(names) }
fun removeAllheaders(names: Set<String>) = apply { headers.removeAll(names) }

fun queryParams(queryParams: QueryParams) = apply {
this.queryParams.clear()
putAllQueryParams(queryParams)
putAllquery_params(queryParams)
}

fun queryParams(queryParams: Map<String, Iterable<String>>) = apply {
this.queryParams.clear()
putAllQueryParams(queryParams)
putAllquery_params(queryParams)
}

fun putQueryParam(key: String, value: String) = apply { queryParams.put(key, value) }

fun putQueryParams(key: String, values: Iterable<String>) = apply {
fun putquery_params(key: String, values: Iterable<String>) = apply {
queryParams.put(key, values)
}

fun putAllQueryParams(queryParams: QueryParams) = apply {
fun putAllquery_params(queryParams: QueryParams) = apply {
this.queryParams.putAll(queryParams)
}

fun putAllQueryParams(queryParams: Map<String, Iterable<String>>) = apply {
fun putAllquery_params(queryParams: Map<String, Iterable<String>>) = apply {
this.queryParams.putAll(queryParams)
}

fun replaceQueryParams(key: String, value: String) = apply {
fun replacequery_params(key: String, value: String) = apply {
queryParams.replace(key, value)
}

fun replaceQueryParams(key: String, values: Iterable<String>) = apply {
fun replacequery_params(key: String, values: Iterable<String>) = apply {
queryParams.replace(key, values)
}

fun replaceAllQueryParams(queryParams: QueryParams) = apply {
fun replaceAllquery_params(queryParams: QueryParams) = apply {
this.queryParams.replaceAll(queryParams)
}

fun replaceAllQueryParams(queryParams: Map<String, Iterable<String>>) = apply {
fun replaceAllquery_params(queryParams: Map<String, Iterable<String>>) = apply {
this.queryParams.replaceAll(queryParams)
}

fun removeQueryParams(key: String) = apply { queryParams.remove(key) }
fun removequery_params(key: String) = apply { queryParams.remove(key) }

fun removeAllQueryParams(keys: Set<String>) = apply { queryParams.removeAll(keys) }
fun removeAllquery_params(keys: Set<String>) = apply { queryParams.removeAll(keys) }

fun timeout(): Timeout = timeout

Expand Down
Loading
Loading