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.1.0-alpha.12"
".": "0.1.0"
}
4 changes: 2 additions & 2 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
configured_endpoints: 19
configured_endpoints: 24
openapi_spec_hash: 68055a774f3305fb11efa5b5b5881446
config_hash: 00442fdab71911b02ab1e10f9ec05b79
config_hash: f0743196c68fb84cbd06a95f134702b3
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.1.0 (2026-01-08)

Full Changelog: [v0.1.0-alpha.12...v0.1.0](https://github.com/openlayer-ai/openlayer-java/compare/v0.1.0-alpha.12...v0.1.0)

### Features

* **api:** add missing endpoints ([db4b1fb](https://github.com/openlayer-ai/openlayer-java/commit/db4b1fbc7bd03820c3292f5e25bba78d606abb1f))

## 0.1.0-alpha.12 (2026-01-07)

Full Changelog: [v0.1.0-alpha.11...v0.1.0-alpha.12](https://github.com/openlayer-ai/openlayer-java/compare/v0.1.0-alpha.11...v0.1.0-alpha.12)
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.openlayer.api/openlayer-java)](https://central.sonatype.com/artifact/com.openlayer.api/openlayer-java/0.1.0-alpha.12)
[![javadoc](https://javadoc.io/badge2/com.openlayer.api/openlayer-java/0.1.0-alpha.12/javadoc.svg)](https://javadoc.io/doc/com.openlayer.api/openlayer-java/0.1.0-alpha.12)
[![Maven Central](https://img.shields.io/maven-central/v/com.openlayer.api/openlayer-java)](https://central.sonatype.com/artifact/com.openlayer.api/openlayer-java/0.1.0)
[![javadoc](https://javadoc.io/badge2/com.openlayer.api/openlayer-java/0.1.0/javadoc.svg)](https://javadoc.io/doc/com.openlayer.api/openlayer-java/0.1.0)

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

Expand All @@ -13,7 +13,7 @@ It is generated with [Stainless](https://www.stainless.com/).

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

The REST API documentation can be found on [openlayer.com](https://openlayer.com/docs/api-reference/rest/overview). Javadocs are available on [javadoc.io](https://javadoc.io/doc/com.openlayer.api/openlayer-java/0.1.0-alpha.12).
The REST API documentation can be found on [openlayer.com](https://openlayer.com/docs/api-reference/rest/overview). Javadocs are available on [javadoc.io](https://javadoc.io/doc/com.openlayer.api/openlayer-java/0.1.0).

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

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

```kotlin
implementation("com.openlayer.api:openlayer-java:0.1.0-alpha.12")
implementation("com.openlayer.api:openlayer-java:0.1.0")
```

### Maven
Expand All @@ -33,7 +33,7 @@ implementation("com.openlayer.api:openlayer-java:0.1.0-alpha.12")
<dependency>
<groupId>com.openlayer.api</groupId>
<artifactId>openlayer-java</artifactId>
<version>0.1.0-alpha.12</version>
<version>0.1.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.openlayer.api"
version = "0.1.0-alpha.12" // x-release-please-version
version = "0.1.0" // x-release-please-version
}

subprojects {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import com.openlayer.api.services.blocking.InferencePipelineService
import com.openlayer.api.services.blocking.ProjectService
import com.openlayer.api.services.blocking.StorageService
import com.openlayer.api.services.blocking.TestService
import com.openlayer.api.services.blocking.WorkspaceService
import java.util.function.Consumer

/**
Expand Down Expand Up @@ -48,6 +49,8 @@ interface OpenlayerClient {

fun projects(): ProjectService

fun workspaces(): WorkspaceService

fun commits(): CommitService

fun inferencePipelines(): InferencePipelineService
Expand Down Expand Up @@ -81,6 +84,8 @@ interface OpenlayerClient {

fun projects(): ProjectService.WithRawResponse

fun workspaces(): WorkspaceService.WithRawResponse

fun commits(): CommitService.WithRawResponse

fun inferencePipelines(): InferencePipelineService.WithRawResponse
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import com.openlayer.api.services.async.InferencePipelineServiceAsync
import com.openlayer.api.services.async.ProjectServiceAsync
import com.openlayer.api.services.async.StorageServiceAsync
import com.openlayer.api.services.async.TestServiceAsync
import com.openlayer.api.services.async.WorkspaceServiceAsync
import java.util.function.Consumer

/**
Expand Down Expand Up @@ -48,6 +49,8 @@ interface OpenlayerClientAsync {

fun projects(): ProjectServiceAsync

fun workspaces(): WorkspaceServiceAsync

fun commits(): CommitServiceAsync

fun inferencePipelines(): InferencePipelineServiceAsync
Expand Down Expand Up @@ -85,6 +88,8 @@ interface OpenlayerClientAsync {

fun projects(): ProjectServiceAsync.WithRawResponse

fun workspaces(): WorkspaceServiceAsync.WithRawResponse

fun commits(): CommitServiceAsync.WithRawResponse

fun inferencePipelines(): InferencePipelineServiceAsync.WithRawResponse
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ import com.openlayer.api.services.async.StorageServiceAsync
import com.openlayer.api.services.async.StorageServiceAsyncImpl
import com.openlayer.api.services.async.TestServiceAsync
import com.openlayer.api.services.async.TestServiceAsyncImpl
import com.openlayer.api.services.async.WorkspaceServiceAsync
import com.openlayer.api.services.async.WorkspaceServiceAsyncImpl
import java.util.function.Consumer

class OpenlayerClientAsyncImpl(private val clientOptions: ClientOptions) : OpenlayerClientAsync {
Expand All @@ -37,6 +39,10 @@ class OpenlayerClientAsyncImpl(private val clientOptions: ClientOptions) : Openl
ProjectServiceAsyncImpl(clientOptionsWithUserAgent)
}

private val workspaces: WorkspaceServiceAsync by lazy {
WorkspaceServiceAsyncImpl(clientOptionsWithUserAgent)
}

private val commits: CommitServiceAsync by lazy {
CommitServiceAsyncImpl(clientOptionsWithUserAgent)
}
Expand All @@ -60,6 +66,8 @@ class OpenlayerClientAsyncImpl(private val clientOptions: ClientOptions) : Openl

override fun projects(): ProjectServiceAsync = projects

override fun workspaces(): WorkspaceServiceAsync = workspaces

override fun commits(): CommitServiceAsync = commits

override fun inferencePipelines(): InferencePipelineServiceAsync = inferencePipelines
Expand All @@ -77,6 +85,10 @@ class OpenlayerClientAsyncImpl(private val clientOptions: ClientOptions) : Openl
ProjectServiceAsyncImpl.WithRawResponseImpl(clientOptions)
}

private val workspaces: WorkspaceServiceAsync.WithRawResponse by lazy {
WorkspaceServiceAsyncImpl.WithRawResponseImpl(clientOptions)
}

private val commits: CommitServiceAsync.WithRawResponse by lazy {
CommitServiceAsyncImpl.WithRawResponseImpl(clientOptions)
}
Expand All @@ -102,6 +114,8 @@ class OpenlayerClientAsyncImpl(private val clientOptions: ClientOptions) : Openl

override fun projects(): ProjectServiceAsync.WithRawResponse = projects

override fun workspaces(): WorkspaceServiceAsync.WithRawResponse = workspaces

override fun commits(): CommitServiceAsync.WithRawResponse = commits

override fun inferencePipelines(): InferencePipelineServiceAsync.WithRawResponse =
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ import com.openlayer.api.services.blocking.StorageService
import com.openlayer.api.services.blocking.StorageServiceImpl
import com.openlayer.api.services.blocking.TestService
import com.openlayer.api.services.blocking.TestServiceImpl
import com.openlayer.api.services.blocking.WorkspaceService
import com.openlayer.api.services.blocking.WorkspaceServiceImpl
import java.util.function.Consumer

class OpenlayerClientImpl(private val clientOptions: ClientOptions) : OpenlayerClient {
Expand All @@ -35,6 +37,10 @@ class OpenlayerClientImpl(private val clientOptions: ClientOptions) : OpenlayerC

private val projects: ProjectService by lazy { ProjectServiceImpl(clientOptionsWithUserAgent) }

private val workspaces: WorkspaceService by lazy {
WorkspaceServiceImpl(clientOptionsWithUserAgent)
}

private val commits: CommitService by lazy { CommitServiceImpl(clientOptionsWithUserAgent) }

private val inferencePipelines: InferencePipelineService by lazy {
Expand All @@ -54,6 +60,8 @@ class OpenlayerClientImpl(private val clientOptions: ClientOptions) : OpenlayerC

override fun projects(): ProjectService = projects

override fun workspaces(): WorkspaceService = workspaces

override fun commits(): CommitService = commits

override fun inferencePipelines(): InferencePipelineService = inferencePipelines
Expand All @@ -71,6 +79,10 @@ class OpenlayerClientImpl(private val clientOptions: ClientOptions) : OpenlayerC
ProjectServiceImpl.WithRawResponseImpl(clientOptions)
}

private val workspaces: WorkspaceService.WithRawResponse by lazy {
WorkspaceServiceImpl.WithRawResponseImpl(clientOptions)
}

private val commits: CommitService.WithRawResponse by lazy {
CommitServiceImpl.WithRawResponseImpl(clientOptions)
}
Expand All @@ -96,6 +108,8 @@ class OpenlayerClientImpl(private val clientOptions: ClientOptions) : OpenlayerC

override fun projects(): ProjectService.WithRawResponse = projects

override fun workspaces(): WorkspaceService.WithRawResponse = workspaces

override fun commits(): CommitService.WithRawResponse = commits

override fun inferencePipelines(): InferencePipelineService.WithRawResponse =
Expand Down
Loading