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.12.0"
".": "0.13.0"
}
2 changes: 1 addition & 1 deletion .stats.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
configured_endpoints: 97
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/orb%2Forb-908960f165205e2874dd29322cc974df5ab10c7634ab9a342ab22047013de1b4.yml
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/orb%2Forb-02151f7654870aee7820ee1c04659a469e6b67ac4977116334512c6b6e6a2016.yml
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.13.0 (2024-12-17)

Full Changelog: [v0.12.0...v0.13.0](https://github.com/orbcorp/orb-java/compare/v0.12.0...v0.13.0)

### Features

* **api:** api update ([#154](https://github.com/orbcorp/orb-java/issues/154)) ([64ef61a](https://github.com/orbcorp/orb-java/commit/64ef61a220e534f5991bfcb156a4465971d60158))

## 0.12.0 (2024-12-12)

Full Changelog: [v0.11.0...v0.12.0](https://github.com/orbcorp/orb-java/compare/v0.11.0...v0.12.0)
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

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

[![Maven Central](https://img.shields.io/maven-central/v/com.withorb.api/orb-java)](https://central.sonatype.com/artifact/com.withorb.api/orb-java/0.12.0)
[![Maven Central](https://img.shields.io/maven-central/v/com.withorb.api/orb-java)](https://central.sonatype.com/artifact/com.withorb.api/orb-java/0.13.0)

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

Expand All @@ -25,7 +25,7 @@ The REST API documentation can be found on [docs.withorb.com](https://docs.with
<!-- x-release-please-start-version -->

```kotlin
implementation("com.withorb.api:orb-java:0.12.0")
implementation("com.withorb.api:orb-java:0.13.0")
```

#### Maven
Expand All @@ -34,7 +34,7 @@ implementation("com.withorb.api:orb-java:0.12.0")
<dependency>
<groupId>com.withorb.api</groupId>
<artifactId>orb-java</artifactId>
<version>0.12.0</version>
<version>0.13.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 @@ -4,7 +4,7 @@ plugins {

allprojects {
group = "com.withorb.api"
version = "0.12.0" // x-release-please-version
version = "0.13.0" // x-release-please-version
}


Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ interface LedgerServiceAsync {
* 1. After calling this endpoint, [Fetch Credit Balance](fetch-customer-credits) will return a
* credit block that represents the changes (i.e. balance changes or transfers).
* 2. A ledger entry will be added to the credits ledger for this customer, and therefore
* returned in the [View Credits Ledger](fetch-customer-credits) response as well as
* returned in the [View Credits Ledger](fetch-customer-credits-ledger) response as well as
* serialized in the response to this request. In the case of deductions without a specified
* block, multiple ledger entries may be created if the deduction spans credit blocks.
* 3. If `invoice_settings` is specified, an invoice will be created that reflects the cost of
Expand Down Expand Up @@ -220,7 +220,7 @@ interface LedgerServiceAsync {
* 1. After calling this endpoint, [Fetch Credit Balance](fetch-customer-credits) will return a
* credit block that represents the changes (i.e. balance changes or transfers).
* 2. A ledger entry will be added to the credits ledger for this customer, and therefore
* returned in the [View Credits Ledger](fetch-customer-credits) response as well as
* returned in the [View Credits Ledger](fetch-customer-credits-ledger) response as well as
* serialized in the response to this request. In the case of deductions without a specified
* block, multiple ledger entries may be created if the deduction spans credit blocks.
* 3. If `invoice_settings` is specified, an invoice will be created that reflects the cost of
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ constructor(
* 1. After calling this endpoint, [Fetch Credit Balance](fetch-customer-credits) will return a
* credit block that represents the changes (i.e. balance changes or transfers).
* 2. A ledger entry will be added to the credits ledger for this customer, and therefore
* returned in the [View Credits Ledger](fetch-customer-credits) response as well as
* returned in the [View Credits Ledger](fetch-customer-credits-ledger) response as well as
* serialized in the response to this request. In the case of deductions without a specified
* block, multiple ledger entries may be created if the deduction spans credit blocks.
* 3. If `invoice_settings` is specified, an invoice will be created that reflects the cost of
Expand Down Expand Up @@ -285,7 +285,7 @@ constructor(
* 1. After calling this endpoint, [Fetch Credit Balance](fetch-customer-credits) will return a
* credit block that represents the changes (i.e. balance changes or transfers).
* 2. A ledger entry will be added to the credits ledger for this customer, and therefore
* returned in the [View Credits Ledger](fetch-customer-credits) response as well as
* returned in the [View Credits Ledger](fetch-customer-credits-ledger) response as well as
* serialized in the response to this request. In the case of deductions without a specified
* block, multiple ledger entries may be created if the deduction spans credit blocks.
* 3. If `invoice_settings` is specified, an invoice will be created that reflects the cost of
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ interface LedgerService {
* 1. After calling this endpoint, [Fetch Credit Balance](fetch-customer-credits) will return a
* credit block that represents the changes (i.e. balance changes or transfers).
* 2. A ledger entry will be added to the credits ledger for this customer, and therefore
* returned in the [View Credits Ledger](fetch-customer-credits) response as well as
* returned in the [View Credits Ledger](fetch-customer-credits-ledger) response as well as
* serialized in the response to this request. In the case of deductions without a specified
* block, multiple ledger entries may be created if the deduction spans credit blocks.
* 3. If `invoice_settings` is specified, an invoice will be created that reflects the cost of
Expand Down Expand Up @@ -219,7 +219,7 @@ interface LedgerService {
* 1. After calling this endpoint, [Fetch Credit Balance](fetch-customer-credits) will return a
* credit block that represents the changes (i.e. balance changes or transfers).
* 2. A ledger entry will be added to the credits ledger for this customer, and therefore
* returned in the [View Credits Ledger](fetch-customer-credits) response as well as
* returned in the [View Credits Ledger](fetch-customer-credits-ledger) response as well as
* serialized in the response to this request. In the case of deductions without a specified
* block, multiple ledger entries may be created if the deduction spans credit blocks.
* 3. If `invoice_settings` is specified, an invoice will be created that reflects the cost of
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ constructor(
* 1. After calling this endpoint, [Fetch Credit Balance](fetch-customer-credits) will return a
* credit block that represents the changes (i.e. balance changes or transfers).
* 2. A ledger entry will be added to the credits ledger for this customer, and therefore
* returned in the [View Credits Ledger](fetch-customer-credits) response as well as
* returned in the [View Credits Ledger](fetch-customer-credits-ledger) response as well as
* serialized in the response to this request. In the case of deductions without a specified
* block, multiple ledger entries may be created if the deduction spans credit blocks.
* 3. If `invoice_settings` is specified, an invoice will be created that reflects the cost of
Expand Down Expand Up @@ -282,7 +282,7 @@ constructor(
* 1. After calling this endpoint, [Fetch Credit Balance](fetch-customer-credits) will return a
* credit block that represents the changes (i.e. balance changes or transfers).
* 2. A ledger entry will be added to the credits ledger for this customer, and therefore
* returned in the [View Credits Ledger](fetch-customer-credits) response as well as
* returned in the [View Credits Ledger](fetch-customer-credits-ledger) response as well as
* serialized in the response to this request. In the case of deductions without a specified
* block, multiple ledger entries may be created if the deduction spans credit blocks.
* 3. If `invoice_settings` is specified, an invoice will be created that reflects the cost of
Expand Down
Loading