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.47.0"
".": "0.48.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: 103
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/orb%2Forb-04f02fa57c3ab8d15ecf0a16a41a83814c21cdc2a830fae4d65f1b7b2196d819.yml
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/orb%2Forb-979330185e8fda7b2bc2440075fe81c66132fc87ff3c548e93dd05db35ba3172.yml
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## 0.48.0 (2025-03-11)

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

### Features

* **api:** api update ([#336](https://github.com/orbcorp/orb-java/issues/336)) ([328aa62](https://github.com/orbcorp/orb-java/commit/328aa621e91be9f5bbf078a6f068529f17da889a))


### Chores

* **internal:** codegen related update ([#333](https://github.com/orbcorp/orb-java/issues/333)) ([bd596c4](https://github.com/orbcorp/orb-java/commit/bd596c44a076d9806cf7661974f53f508a581d4f))
* **internal:** codegen related update ([#335](https://github.com/orbcorp/orb-java/issues/335)) ([4784160](https://github.com/orbcorp/orb-java/commit/4784160c237cfe0dae76f40fae520473cb912d12))

## 0.47.0 (2025-03-10)

Full Changelog: [v0.46.1...v0.47.0](https://github.com/orbcorp/orb-java/compare/v0.46.1...v0.47.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.47.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.48.0)

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

Expand All @@ -19,7 +19,7 @@ The REST API documentation can be found on [docs.withorb.com](https://docs.witho
### Gradle

```kotlin
implementation("com.withorb.api:orb-java:0.47.0")
implementation("com.withorb.api:orb-java:0.48.0")
```

### Maven
Expand All @@ -28,7 +28,7 @@ implementation("com.withorb.api:orb-java:0.47.0")
<dependency>
<groupId>com.withorb.api</groupId>
<artifactId>orb-java</artifactId>
<version>0.47.0</version>
<version>0.48.0</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
allprojects {
group = "com.withorb.api"
version = "0.47.0" // x-release-please-version
version = "0.48.0" // x-release-please-version
}
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,18 @@ private constructor(
private val additionalQueryParams: QueryParams,
) : Params {

/** The (exclusive) end of the usage timeframe affected by this backfill. */
/**
* The (exclusive) end of the usage timeframe affected by this backfill. By default, Orb allows
* backfills up to 10 days in duration at a time. Reach out to discuss extending this limit and
* your use case.
*/
fun timeframeEnd(): OffsetDateTime = body.timeframeEnd()

/** The (inclusive) start of the usage timeframe affected by this backfill. */
/**
* The (inclusive) start of the usage timeframe affected by this backfill. By default, Orb
* allows backfills up to 10 days in duration at a time. Reach out to discuss extending this
* limit and your use case.
*/
fun timeframeStart(): OffsetDateTime = body.timeframeStart()

/**
Expand Down Expand Up @@ -96,10 +104,18 @@ private constructor(
*/
fun replaceExistingEvents(): Optional<Boolean> = body.replaceExistingEvents()

/** The (exclusive) end of the usage timeframe affected by this backfill. */
/**
* The (exclusive) end of the usage timeframe affected by this backfill. By default, Orb allows
* backfills up to 10 days in duration at a time. Reach out to discuss extending this limit and
* your use case.
*/
fun _timeframeEnd(): JsonField<OffsetDateTime> = body._timeframeEnd()

/** The (inclusive) start of the usage timeframe affected by this backfill. */
/**
* The (inclusive) start of the usage timeframe affected by this backfill. By default, Orb
* allows backfills up to 10 days in duration at a time. Reach out to discuss extending this
* limit and your use case.
*/
fun _timeframeStart(): JsonField<OffsetDateTime> = body._timeframeStart()

/**
Expand Down Expand Up @@ -174,10 +190,18 @@ private constructor(
private val additionalProperties: Map<String, JsonValue> = immutableEmptyMap(),
) {

/** The (exclusive) end of the usage timeframe affected by this backfill. */
/**
* The (exclusive) end of the usage timeframe affected by this backfill. By default, Orb
* allows backfills up to 10 days in duration at a time. Reach out to discuss extending this
* limit and your use case.
*/
fun timeframeEnd(): OffsetDateTime = timeframeEnd.getRequired("timeframe_end")

/** The (inclusive) start of the usage timeframe affected by this backfill. */
/**
* The (inclusive) start of the usage timeframe affected by this backfill. By default, Orb
* allows backfills up to 10 days in duration at a time. Reach out to discuss extending this
* limit and your use case.
*/
fun timeframeStart(): OffsetDateTime = timeframeStart.getRequired("timeframe_start")

/**
Expand Down Expand Up @@ -216,12 +240,20 @@ private constructor(
fun replaceExistingEvents(): Optional<Boolean> =
Optional.ofNullable(replaceExistingEvents.getNullable("replace_existing_events"))

/** The (exclusive) end of the usage timeframe affected by this backfill. */
/**
* The (exclusive) end of the usage timeframe affected by this backfill. By default, Orb
* allows backfills up to 10 days in duration at a time. Reach out to discuss extending this
* limit and your use case.
*/
@JsonProperty("timeframe_end")
@ExcludeMissing
fun _timeframeEnd(): JsonField<OffsetDateTime> = timeframeEnd

/** The (inclusive) start of the usage timeframe affected by this backfill. */
/**
* The (inclusive) start of the usage timeframe affected by this backfill. By default, Orb
* allows backfills up to 10 days in duration at a time. Reach out to discuss extending this
* limit and your use case.
*/
@JsonProperty("timeframe_start")
@ExcludeMissing
fun _timeframeStart(): JsonField<OffsetDateTime> = timeframeStart
Expand Down Expand Up @@ -328,20 +360,36 @@ private constructor(
additionalProperties = body.additionalProperties.toMutableMap()
}

/** The (exclusive) end of the usage timeframe affected by this backfill. */
/**
* The (exclusive) end of the usage timeframe affected by this backfill. By default, Orb
* allows backfills up to 10 days in duration at a time. Reach out to discuss extending
* this limit and your use case.
*/
fun timeframeEnd(timeframeEnd: OffsetDateTime) =
timeframeEnd(JsonField.of(timeframeEnd))

/** The (exclusive) end of the usage timeframe affected by this backfill. */
/**
* The (exclusive) end of the usage timeframe affected by this backfill. By default, Orb
* allows backfills up to 10 days in duration at a time. Reach out to discuss extending
* this limit and your use case.
*/
fun timeframeEnd(timeframeEnd: JsonField<OffsetDateTime>) = apply {
this.timeframeEnd = timeframeEnd
}

/** The (inclusive) start of the usage timeframe affected by this backfill. */
/**
* The (inclusive) start of the usage timeframe affected by this backfill. By default,
* Orb allows backfills up to 10 days in duration at a time. Reach out to discuss
* extending this limit and your use case.
*/
fun timeframeStart(timeframeStart: OffsetDateTime) =
timeframeStart(JsonField.of(timeframeStart))

/** The (inclusive) start of the usage timeframe affected by this backfill. */
/**
* The (inclusive) start of the usage timeframe affected by this backfill. By default,
* Orb allows backfills up to 10 days in duration at a time. Reach out to discuss
* extending this limit and your use case.
*/
fun timeframeStart(timeframeStart: JsonField<OffsetDateTime>) = apply {
this.timeframeStart = timeframeStart
}
Expand Down Expand Up @@ -527,20 +575,36 @@ private constructor(
additionalQueryParams = eventBackfillCreateParams.additionalQueryParams.toBuilder()
}

/** The (exclusive) end of the usage timeframe affected by this backfill. */
/**
* The (exclusive) end of the usage timeframe affected by this backfill. By default, Orb
* allows backfills up to 10 days in duration at a time. Reach out to discuss extending this
* limit and your use case.
*/
fun timeframeEnd(timeframeEnd: OffsetDateTime) = apply { body.timeframeEnd(timeframeEnd) }

/** The (exclusive) end of the usage timeframe affected by this backfill. */
/**
* The (exclusive) end of the usage timeframe affected by this backfill. By default, Orb
* allows backfills up to 10 days in duration at a time. Reach out to discuss extending this
* limit and your use case.
*/
fun timeframeEnd(timeframeEnd: JsonField<OffsetDateTime>) = apply {
body.timeframeEnd(timeframeEnd)
}

/** The (inclusive) start of the usage timeframe affected by this backfill. */
/**
* The (inclusive) start of the usage timeframe affected by this backfill. By default, Orb
* allows backfills up to 10 days in duration at a time. Reach out to discuss extending this
* limit and your use case.
*/
fun timeframeStart(timeframeStart: OffsetDateTime) = apply {
body.timeframeStart(timeframeStart)
}

/** The (inclusive) start of the usage timeframe affected by this backfill. */
/**
* The (inclusive) start of the usage timeframe affected by this backfill. By default, Orb
* allows backfills up to 10 days in duration at a time. Reach out to discuss extending this
* limit and your use case.
*/
fun timeframeStart(timeframeStart: JsonField<OffsetDateTime>) = apply {
body.timeframeStart(timeframeStart)
}
Expand Down
Loading