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 @@
{
".": "4.21.0"
".": "4.22.0"
}
8 changes: 4 additions & 4 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 139
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/courier/courier-b03f5346718dcd7b22f15893445ea593ab87535c90c540fc5a796c6ecd54d779.yml
openapi_spec_hash: 15677d3be4ecd33eab154080b4bc437f
config_hash: dcd58abf1e56b114bdce22336ca3d570
configured_endpoints: 134
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/courier/courier-b053468fefe6d757f86f3233ebbc52d80329ed2a6e7a6740fee01e4028a4c3b9.yml
openapi_spec_hash: 416835e693de0fe19945be90a787d3f3
config_hash: 8d28dbeabe9d4dcc7d5b8c021a4cbbd7
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 4.22.0 (2026-07-23)

Full Changelog: [v4.21.0...v4.22.0](https://github.com/trycourier/courier-java/compare/v4.21.0...v4.22.0)

### Features

* Remove /bulk endpoints from api-spec (C-19507) ([#171](https://github.com/trycourier/courier-java/issues/171)) ([2a450f6](https://github.com/trycourier/courier-java/commit/2a450f65f702ff5a8899326c40575facbb7690b2))

## 4.21.0 (2026-07-20)

Full Changelog: [v4.20.2...v4.21.0](https://github.com/trycourier/courier-java/compare/v4.20.2...v4.21.0)
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.courier"
version = "4.21.0" // x-release-please-version
version = "4.22.0" // x-release-please-version
}

subprojects {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ import com.courier.services.blocking.AuditEventService
import com.courier.services.blocking.AuthService
import com.courier.services.blocking.AutomationService
import com.courier.services.blocking.BrandService
import com.courier.services.blocking.BulkService
import com.courier.services.blocking.DigestService
import com.courier.services.blocking.InboundService
import com.courier.services.blocking.JourneyService
Expand Down Expand Up @@ -78,8 +77,6 @@ interface CourierClient {

fun brands(): BrandService

fun bulk(): BulkService

fun digests(): DigestService

fun inbound(): InboundService
Expand Down Expand Up @@ -143,8 +140,6 @@ interface CourierClient {

fun brands(): BrandService.WithRawResponse

fun bulk(): BulkService.WithRawResponse

fun digests(): DigestService.WithRawResponse

fun inbound(): InboundService.WithRawResponse
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ import com.courier.services.async.AuditEventServiceAsync
import com.courier.services.async.AuthServiceAsync
import com.courier.services.async.AutomationServiceAsync
import com.courier.services.async.BrandServiceAsync
import com.courier.services.async.BulkServiceAsync
import com.courier.services.async.DigestServiceAsync
import com.courier.services.async.InboundServiceAsync
import com.courier.services.async.JourneyServiceAsync
Expand Down Expand Up @@ -78,8 +77,6 @@ interface CourierClientAsync {

fun brands(): BrandServiceAsync

fun bulk(): BulkServiceAsync

fun digests(): DigestServiceAsync

fun inbound(): InboundServiceAsync
Expand Down Expand Up @@ -147,8 +144,6 @@ interface CourierClientAsync {

fun brands(): BrandServiceAsync.WithRawResponse

fun bulk(): BulkServiceAsync.WithRawResponse

fun digests(): DigestServiceAsync.WithRawResponse

fun inbound(): InboundServiceAsync.WithRawResponse
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@ import com.courier.services.async.AutomationServiceAsync
import com.courier.services.async.AutomationServiceAsyncImpl
import com.courier.services.async.BrandServiceAsync
import com.courier.services.async.BrandServiceAsyncImpl
import com.courier.services.async.BulkServiceAsync
import com.courier.services.async.BulkServiceAsyncImpl
import com.courier.services.async.DigestServiceAsync
import com.courier.services.async.DigestServiceAsyncImpl
import com.courier.services.async.InboundServiceAsync
Expand Down Expand Up @@ -93,8 +91,6 @@ class CourierClientAsyncImpl(private val clientOptions: ClientOptions) : Courier
BrandServiceAsyncImpl(clientOptionsWithUserAgent)
}

private val bulk: BulkServiceAsync by lazy { BulkServiceAsyncImpl(clientOptionsWithUserAgent) }

private val digests: DigestServiceAsync by lazy {
DigestServiceAsyncImpl(clientOptionsWithUserAgent)
}
Expand Down Expand Up @@ -162,8 +158,6 @@ class CourierClientAsyncImpl(private val clientOptions: ClientOptions) : Courier

override fun brands(): BrandServiceAsync = brands

override fun bulk(): BulkServiceAsync = bulk

override fun digests(): DigestServiceAsync = digests

override fun inbound(): InboundServiceAsync = inbound
Expand Down Expand Up @@ -225,10 +219,6 @@ class CourierClientAsyncImpl(private val clientOptions: ClientOptions) : Courier
BrandServiceAsyncImpl.WithRawResponseImpl(clientOptions)
}

private val bulk: BulkServiceAsync.WithRawResponse by lazy {
BulkServiceAsyncImpl.WithRawResponseImpl(clientOptions)
}

private val digests: DigestServiceAsync.WithRawResponse by lazy {
DigestServiceAsyncImpl.WithRawResponseImpl(clientOptions)
}
Expand Down Expand Up @@ -300,8 +290,6 @@ class CourierClientAsyncImpl(private val clientOptions: ClientOptions) : Courier

override fun brands(): BrandServiceAsync.WithRawResponse = brands

override fun bulk(): BulkServiceAsync.WithRawResponse = bulk

override fun digests(): DigestServiceAsync.WithRawResponse = digests

override fun inbound(): InboundServiceAsync.WithRawResponse = inbound
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@ import com.courier.services.blocking.AutomationService
import com.courier.services.blocking.AutomationServiceImpl
import com.courier.services.blocking.BrandService
import com.courier.services.blocking.BrandServiceImpl
import com.courier.services.blocking.BulkService
import com.courier.services.blocking.BulkServiceImpl
import com.courier.services.blocking.DigestService
import com.courier.services.blocking.DigestServiceImpl
import com.courier.services.blocking.InboundService
Expand Down Expand Up @@ -89,8 +87,6 @@ class CourierClientImpl(private val clientOptions: ClientOptions) : CourierClien

private val brands: BrandService by lazy { BrandServiceImpl(clientOptionsWithUserAgent) }

private val bulk: BulkService by lazy { BulkServiceImpl(clientOptionsWithUserAgent) }

private val digests: DigestService by lazy { DigestServiceImpl(clientOptionsWithUserAgent) }

private val inbound: InboundService by lazy { InboundServiceImpl(clientOptionsWithUserAgent) }
Expand Down Expand Up @@ -146,8 +142,6 @@ class CourierClientImpl(private val clientOptions: ClientOptions) : CourierClien

override fun brands(): BrandService = brands

override fun bulk(): BulkService = bulk

override fun digests(): DigestService = digests

override fun inbound(): InboundService = inbound
Expand Down Expand Up @@ -209,10 +203,6 @@ class CourierClientImpl(private val clientOptions: ClientOptions) : CourierClien
BrandServiceImpl.WithRawResponseImpl(clientOptions)
}

private val bulk: BulkService.WithRawResponse by lazy {
BulkServiceImpl.WithRawResponseImpl(clientOptions)
}

private val digests: DigestService.WithRawResponse by lazy {
DigestServiceImpl.WithRawResponseImpl(clientOptions)
}
Expand Down Expand Up @@ -284,8 +274,6 @@ class CourierClientImpl(private val clientOptions: ClientOptions) : CourierClien

override fun brands(): BrandService.WithRawResponse = brands

override fun bulk(): BulkService.WithRawResponse = bulk

override fun digests(): DigestService.WithRawResponse = digests

override fun inbound(): InboundService.WithRawResponse = inbound
Expand Down
Loading
Loading