diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile
old mode 100755
new mode 100644
diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json
old mode 100755
new mode 100644
diff --git a/.gitattributes b/.gitattributes
old mode 100755
new mode 100644
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
old mode 100755
new mode 100644
diff --git a/.github/workflows/publish-sonatype.yml b/.github/workflows/publish-sonatype.yml
old mode 100755
new mode 100644
diff --git a/.github/workflows/release-doctor.yml b/.github/workflows/release-doctor.yml
old mode 100755
new mode 100644
diff --git a/.gitignore b/.gitignore
old mode 100755
new mode 100644
diff --git a/.release-please-manifest.json b/.release-please-manifest.json
old mode 100755
new mode 100644
index aaf968a..b56c3d0
--- a/.release-please-manifest.json
+++ b/.release-please-manifest.json
@@ -1,3 +1,3 @@
{
- ".": "0.1.0-alpha.3"
+ ".": "0.1.0-alpha.4"
}
\ No newline at end of file
diff --git a/.stats.yml b/.stats.yml
old mode 100755
new mode 100644
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 73750d3..05ba197 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,13 @@
# Changelog
+## 0.1.0-alpha.4 (2024-09-23)
+
+Full Changelog: [v0.1.0-alpha.3...v0.1.0-alpha.4](https://github.com/openlayer-ai/openlayer-java/compare/v0.1.0-alpha.3...v0.1.0-alpha.4)
+
+### Features
+
+* **api:** OpenAPI spec update via Stainless API ([#36](https://github.com/openlayer-ai/openlayer-java/issues/36)) ([5d56754](https://github.com/openlayer-ai/openlayer-java/commit/5d56754e57ac66410dba08160d168cc2f9e1d6d6))
+
## 0.1.0-alpha.3 (2024-08-22)
Full Changelog: [v0.1.0-alpha.2...v0.1.0-alpha.3](https://github.com/openlayer-ai/openlayer-java/compare/v0.1.0-alpha.2...v0.1.0-alpha.3)
diff --git a/LICENSE b/LICENSE
old mode 100755
new mode 100644
diff --git a/README.md b/README.md
old mode 100755
new mode 100644
index e321768..e6302e0
--- a/README.md
+++ b/README.md
@@ -2,7 +2,7 @@
-[](https://central.sonatype.com/artifact/com.openlayer.api/openlayer-java/0.1.0-alpha.3)
+[](https://central.sonatype.com/artifact/com.openlayer.api/openlayer-java/0.1.0-alpha.4)
@@ -27,7 +27,7 @@ The REST API documentation can be foundĀ on [openlayer.com](https://openlayer.co
```kotlin
-implementation("com.openlayer.api:openlayer-java:0.1.0-alpha.3")
+implementation("com.openlayer.api:openlayer-java:0.1.0-alpha.4")
```
#### Maven
@@ -36,7 +36,7 @@ implementation("com.openlayer.api:openlayer-java:0.1.0-alpha.3")
com.openlayer.api
openlayer-java
- 0.1.0-alpha.3
+ 0.1.0-alpha.4
```
diff --git a/SECURITY.md b/SECURITY.md
old mode 100755
new mode 100644
diff --git a/bin/check-release-environment b/bin/check-release-environment
old mode 100755
new mode 100644
diff --git a/build.gradle.kts b/build.gradle.kts
old mode 100755
new mode 100644
index ba79b9b..7683e5f
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -4,7 +4,7 @@ plugins {
allprojects {
group = "com.openlayer.api"
- version = "0.1.0-alpha.3" // x-release-please-version
+ version = "0.1.0-alpha.4" // x-release-please-version
}
diff --git a/buildSrc/build.gradle.kts b/buildSrc/build.gradle.kts
old mode 100755
new mode 100644
diff --git a/buildSrc/src/main/kotlin/openlayer.java.gradle.kts b/buildSrc/src/main/kotlin/openlayer.java.gradle.kts
old mode 100755
new mode 100644
diff --git a/buildSrc/src/main/kotlin/openlayer.kotlin.gradle.kts b/buildSrc/src/main/kotlin/openlayer.kotlin.gradle.kts
old mode 100755
new mode 100644
diff --git a/buildSrc/src/main/kotlin/openlayer.publish.gradle.kts b/buildSrc/src/main/kotlin/openlayer.publish.gradle.kts
old mode 100755
new mode 100644
diff --git a/examples/.keep b/examples/.keep
old mode 100755
new mode 100644
diff --git a/examples/README.md b/examples/README.md
new file mode 100644
index 0000000..23125e3
--- /dev/null
+++ b/examples/README.md
@@ -0,0 +1,8 @@
+# `openlayer-java-example`
+
+This is an example project to demonstrate how a java project would look like
+that uses the `openlayer-java` sdk.
+
+## Running an example
+
+`./gradlew runStreamData`
diff --git a/examples/build.gradle.kts b/examples/build.gradle.kts
new file mode 100644
index 0000000..2810151
--- /dev/null
+++ b/examples/build.gradle.kts
@@ -0,0 +1,20 @@
+plugins {
+ id("application")
+ id("openlayer.java")
+}
+
+dependencies {
+ implementation(project(":openlayer-java"))
+}
+
+// Dynamically create a task for each example
+val examples = listOf("StreamData") // Add the names of your example classes here
+
+examples.forEach { example ->
+ tasks.create("run$example", org.gradle.api.tasks.JavaExec::class.java) {
+ group = "Examples"
+ description = "Run $example"
+ classpath = sourceSets.getByName("main").runtimeClasspath
+ mainClass.set("com.langsmith.example.$example")
+ }
+}
\ No newline at end of file
diff --git a/examples/rest-api/StreamData.java b/examples/src/main/java/com/openlayer/api/example/StreamData.java
similarity index 87%
rename from examples/rest-api/StreamData.java
rename to examples/src/main/java/com/openlayer/api/example/StreamData.java
index fd56488..557e00a 100644
--- a/examples/rest-api/StreamData.java
+++ b/examples/src/main/java/com/openlayer/api/example/StreamData.java
@@ -1,7 +1,7 @@
/*
* This source file was generated by the Gradle 'init' task
*/
-package org.example;
+package com.openlayer.api.example;
import com.openlayer.api.client.OpenlayerClient;
import com.openlayer.api.client.okhttp.OpenlayerOkHttpClient;
@@ -9,8 +9,7 @@
import com.openlayer.api.core.JsonString;
import com.openlayer.api.models.InferencePipelineDataStreamParams;
import com.openlayer.api.models.InferencePipelineDataStreamResponse;
-
-import java.util.List;
+import java.util.Arrays;
public class StreamData {
public static void main(String[] args) {
@@ -42,20 +41,20 @@ public static void main(String[] args) {
// Create Inference Pipeline Data Stream Parameters
InferencePipelineDataStreamParams params = InferencePipelineDataStreamParams.builder()
.inferencePipelineId(inferencePipelineId)
- .rows(List.of(row))
- .config(InferencePipelineDataStreamParams.Config
- .ofLlmData(InferencePipelineDataStreamParams.Config.LlmData.builder()
+ .rows(Arrays.asList(row))
+ .config(InferencePipelineDataStreamParams.Config.ofLlmData(
+ InferencePipelineDataStreamParams.Config.LlmData.builder()
.outputColumnName("output")
.costColumnName("cost")
- .inputVariableNames(List.of("user_query"))
+ .inputVariableNames(Arrays.asList("user_query"))
.numOfTokenColumnName("tokens")
.timestampColumnName("timestamp")
.build()))
.build();
// Execute the request
- InferencePipelineDataStreamResponse inferencePipelineDataStreamResponse = client.inferencePipelines().data()
- .stream(params);
+ InferencePipelineDataStreamResponse inferencePipelineDataStreamResponse =
+ client.inferencePipelines().data().stream(params);
// Print the response
System.out.println(inferencePipelineDataStreamResponse);
diff --git a/gradle.properties b/gradle.properties
old mode 100755
new mode 100644
diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar
old mode 100755
new mode 100644
diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties
old mode 100755
new mode 100644
diff --git a/gradlew.bat b/gradlew.bat
old mode 100755
new mode 100644
diff --git a/openlayer-java-client-okhttp/build.gradle.kts b/openlayer-java-client-okhttp/build.gradle.kts
old mode 100755
new mode 100644
diff --git a/openlayer-java-client-okhttp/src/main/kotlin/com/openlayer/api/client/okhttp/OkHttpClient.kt b/openlayer-java-client-okhttp/src/main/kotlin/com/openlayer/api/client/okhttp/OkHttpClient.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-client-okhttp/src/main/kotlin/com/openlayer/api/client/okhttp/OpenlayerOkHttpClient.kt b/openlayer-java-client-okhttp/src/main/kotlin/com/openlayer/api/client/okhttp/OpenlayerOkHttpClient.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-client-okhttp/src/main/kotlin/com/openlayer/api/client/okhttp/OpenlayerOkHttpClientAsync.kt b/openlayer-java-client-okhttp/src/main/kotlin/com/openlayer/api/client/okhttp/OpenlayerOkHttpClientAsync.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/build.gradle.kts b/openlayer-java-core/build.gradle.kts
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/client/OpenlayerClient.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/client/OpenlayerClient.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/client/OpenlayerClientAsync.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/client/OpenlayerClientAsync.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/client/OpenlayerClientAsyncImpl.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/client/OpenlayerClientAsyncImpl.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/client/OpenlayerClientImpl.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/client/OpenlayerClientImpl.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/BaseDeserializer.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/BaseDeserializer.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/BaseSerializer.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/BaseSerializer.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/ClientOptions.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/ClientOptions.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/ObjectMappers.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/ObjectMappers.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/Properties.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/Properties.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/RequestOptions.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/RequestOptions.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/Utils.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/Utils.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/Values.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/Values.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/http/BinaryResponseContent.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/http/BinaryResponseContent.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/http/HttpClient.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/http/HttpClient.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/http/HttpMethod.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/http/HttpMethod.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/http/HttpRequest.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/http/HttpRequest.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/http/HttpRequestBody.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/http/HttpRequestBody.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/http/HttpResponse.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/http/HttpResponse.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/http/RetryingHttpClient.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/http/RetryingHttpClient.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/BadRequestException.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/BadRequestException.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/InternalServerException.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/InternalServerException.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/NotFoundException.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/NotFoundException.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/OpenlayerError.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/OpenlayerError.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/OpenlayerException.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/OpenlayerException.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/OpenlayerInvalidDataException.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/OpenlayerInvalidDataException.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/OpenlayerIoException.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/OpenlayerIoException.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/OpenlayerServiceException.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/OpenlayerServiceException.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/PermissionDeniedException.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/PermissionDeniedException.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/RateLimitException.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/RateLimitException.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/UnauthorizedException.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/UnauthorizedException.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/UnexpectedStatusCodeException.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/UnexpectedStatusCodeException.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/UnprocessableEntityException.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/UnprocessableEntityException.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/CommitTestResultListParams.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/CommitTestResultListParams.kt
old mode 100755
new mode 100644
index 6b1c3e4..67f54ef
--- a/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/CommitTestResultListParams.kt
+++ b/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/CommitTestResultListParams.kt
@@ -23,7 +23,6 @@ constructor(
private val type: Type?,
private val additionalQueryParams: Map>,
private val additionalHeaders: Map>,
- private val additionalBodyProperties: Map,
) {
fun projectVersionId(): String = projectVersionId
@@ -63,8 +62,6 @@ constructor(
fun _additionalHeaders(): Map> = additionalHeaders
- fun _additionalBodyProperties(): Map = additionalBodyProperties
-
override fun equals(other: Any?): Boolean {
if (this === other) {
return true
@@ -78,8 +75,7 @@ constructor(
this.status == other.status &&
this.type == other.type &&
this.additionalQueryParams == other.additionalQueryParams &&
- this.additionalHeaders == other.additionalHeaders &&
- this.additionalBodyProperties == other.additionalBodyProperties
+ this.additionalHeaders == other.additionalHeaders
}
override fun hashCode(): Int {
@@ -92,12 +88,11 @@ constructor(
type,
additionalQueryParams,
additionalHeaders,
- additionalBodyProperties,
)
}
override fun toString() =
- "CommitTestResultListParams{projectVersionId=$projectVersionId, includeArchived=$includeArchived, page=$page, perPage=$perPage, status=$status, type=$type, additionalQueryParams=$additionalQueryParams, additionalHeaders=$additionalHeaders, additionalBodyProperties=$additionalBodyProperties}"
+ "CommitTestResultListParams{projectVersionId=$projectVersionId, includeArchived=$includeArchived, page=$page, perPage=$perPage, status=$status, type=$type, additionalQueryParams=$additionalQueryParams, additionalHeaders=$additionalHeaders}"
fun toBuilder() = Builder().from(this)
@@ -117,7 +112,6 @@ constructor(
private var type: Type? = null
private var additionalQueryParams: MutableMap> = mutableMapOf()
private var additionalHeaders: MutableMap> = mutableMapOf()
- private var additionalBodyProperties: MutableMap = mutableMapOf()
@JvmSynthetic
internal fun from(commitTestResultListParams: CommitTestResultListParams) = apply {
@@ -129,7 +123,6 @@ constructor(
this.type = commitTestResultListParams.type
additionalQueryParams(commitTestResultListParams.additionalQueryParams)
additionalHeaders(commitTestResultListParams.additionalHeaders)
- additionalBodyProperties(commitTestResultListParams.additionalBodyProperties)
}
fun projectVersionId(projectVersionId: String) = apply {
@@ -199,20 +192,6 @@ constructor(
fun removeHeader(name: String) = apply { this.additionalHeaders.put(name, mutableListOf()) }
- fun additionalBodyProperties(additionalBodyProperties: Map) = apply {
- this.additionalBodyProperties.clear()
- this.additionalBodyProperties.putAll(additionalBodyProperties)
- }
-
- fun putAdditionalBodyProperty(key: String, value: JsonValue) = apply {
- this.additionalBodyProperties.put(key, value)
- }
-
- fun putAllAdditionalBodyProperties(additionalBodyProperties: Map) =
- apply {
- this.additionalBodyProperties.putAll(additionalBodyProperties)
- }
-
fun build(): CommitTestResultListParams =
CommitTestResultListParams(
checkNotNull(projectVersionId) { "`projectVersionId` is required but was not set" },
@@ -223,7 +202,6 @@ constructor(
type,
additionalQueryParams.mapValues { it.value.toUnmodifiable() }.toUnmodifiable(),
additionalHeaders.mapValues { it.value.toUnmodifiable() }.toUnmodifiable(),
- additionalBodyProperties.toUnmodifiable(),
)
}
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/CommitTestResultListResponse.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/CommitTestResultListResponse.kt
old mode 100755
new mode 100644
index 731f3b5..9c6554a
--- a/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/CommitTestResultListResponse.kt
+++ b/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/CommitTestResultListResponse.kt
@@ -32,7 +32,6 @@ import java.util.Optional
@NoAutoDetect
class CommitTestResultListResponse
private constructor(
- private val _meta: JsonField<_Meta>,
private val items: JsonField>,
private val additionalProperties: Map,
) {
@@ -41,12 +40,8 @@ private constructor(
private var hashCode: Int = 0
- fun _meta(): _Meta = _meta.getRequired("_meta")
-
fun items(): List- = items.getRequired("items")
- @JsonProperty("_meta") @ExcludeMissing fun __meta() = _meta
-
@JsonProperty("items") @ExcludeMissing fun _items() = items
@JsonAnyGetter
@@ -55,7 +50,6 @@ private constructor(
fun validate(): CommitTestResultListResponse = apply {
if (!validated) {
- _meta().validate()
items().forEach { it.validate() }
validated = true
}
@@ -69,25 +63,19 @@ private constructor(
}
return other is CommitTestResultListResponse &&
- this._meta == other._meta &&
this.items == other.items &&
this.additionalProperties == other.additionalProperties
}
override fun hashCode(): Int {
if (hashCode == 0) {
- hashCode =
- Objects.hash(
- _meta,
- items,
- additionalProperties,
- )
+ hashCode = Objects.hash(items, additionalProperties)
}
return hashCode
}
override fun toString() =
- "CommitTestResultListResponse{_meta=$_meta, items=$items, additionalProperties=$additionalProperties}"
+ "CommitTestResultListResponse{items=$items, additionalProperties=$additionalProperties}"
companion object {
@@ -96,23 +84,15 @@ private constructor(
class Builder {
- private var _meta: JsonField<_Meta> = JsonMissing.of()
private var items: JsonField
> = JsonMissing.of()
private var additionalProperties: MutableMap = mutableMapOf()
@JvmSynthetic
internal fun from(commitTestResultListResponse: CommitTestResultListResponse) = apply {
- this._meta = commitTestResultListResponse._meta
this.items = commitTestResultListResponse.items
additionalProperties(commitTestResultListResponse.additionalProperties)
}
- fun _meta(_meta: _Meta) = _meta(JsonField.of(_meta))
-
- @JsonProperty("_meta")
- @ExcludeMissing
- fun _meta(_meta: JsonField<_Meta>) = apply { this._meta = _meta }
-
fun items(items: List- ) = items(JsonField.of(items))
@JsonProperty("items")
@@ -135,176 +115,11 @@ private constructor(
fun build(): CommitTestResultListResponse =
CommitTestResultListResponse(
- _meta,
items.map { it.toUnmodifiable() },
- additionalProperties.toUnmodifiable(),
+ additionalProperties.toUnmodifiable()
)
}
- @JsonDeserialize(builder = _Meta.Builder::class)
- @NoAutoDetect
- class _Meta
- private constructor(
- private val page: JsonField,
- private val perPage: JsonField,
- private val totalItems: JsonField,
- private val totalPages: JsonField,
- private val additionalProperties: Map,
- ) {
-
- private var validated: Boolean = false
-
- private var hashCode: Int = 0
-
- /** The current page. */
- fun page(): Long = page.getRequired("page")
-
- /** The number of items per page. */
- fun perPage(): Long = perPage.getRequired("perPage")
-
- /** The total number of items. */
- fun totalItems(): Long = totalItems.getRequired("totalItems")
-
- /** The total number of pages. */
- fun totalPages(): Long = totalPages.getRequired("totalPages")
-
- /** The current page. */
- @JsonProperty("page") @ExcludeMissing fun _page() = page
-
- /** The number of items per page. */
- @JsonProperty("perPage") @ExcludeMissing fun _perPage() = perPage
-
- /** The total number of items. */
- @JsonProperty("totalItems") @ExcludeMissing fun _totalItems() = totalItems
-
- /** The total number of pages. */
- @JsonProperty("totalPages") @ExcludeMissing fun _totalPages() = totalPages
-
- @JsonAnyGetter
- @ExcludeMissing
- fun _additionalProperties(): Map = additionalProperties
-
- fun validate(): _Meta = apply {
- if (!validated) {
- page()
- perPage()
- totalItems()
- totalPages()
- validated = true
- }
- }
-
- fun toBuilder() = Builder().from(this)
-
- override fun equals(other: Any?): Boolean {
- if (this === other) {
- return true
- }
-
- return other is _Meta &&
- this.page == other.page &&
- this.perPage == other.perPage &&
- this.totalItems == other.totalItems &&
- this.totalPages == other.totalPages &&
- this.additionalProperties == other.additionalProperties
- }
-
- override fun hashCode(): Int {
- if (hashCode == 0) {
- hashCode =
- Objects.hash(
- page,
- perPage,
- totalItems,
- totalPages,
- additionalProperties,
- )
- }
- return hashCode
- }
-
- override fun toString() =
- "_Meta{page=$page, perPage=$perPage, totalItems=$totalItems, totalPages=$totalPages, additionalProperties=$additionalProperties}"
-
- companion object {
-
- @JvmStatic fun builder() = Builder()
- }
-
- class Builder {
-
- private var page: JsonField = JsonMissing.of()
- private var perPage: JsonField = JsonMissing.of()
- private var totalItems: JsonField = JsonMissing.of()
- private var totalPages: JsonField = JsonMissing.of()
- private var additionalProperties: MutableMap = mutableMapOf()
-
- @JvmSynthetic
- internal fun from(_meta: _Meta) = apply {
- this.page = _meta.page
- this.perPage = _meta.perPage
- this.totalItems = _meta.totalItems
- this.totalPages = _meta.totalPages
- additionalProperties(_meta.additionalProperties)
- }
-
- /** The current page. */
- fun page(page: Long) = page(JsonField.of(page))
-
- /** The current page. */
- @JsonProperty("page")
- @ExcludeMissing
- fun page(page: JsonField) = apply { this.page = page }
-
- /** The number of items per page. */
- fun perPage(perPage: Long) = perPage(JsonField.of(perPage))
-
- /** The number of items per page. */
- @JsonProperty("perPage")
- @ExcludeMissing
- fun perPage(perPage: JsonField) = apply { this.perPage = perPage }
-
- /** The total number of items. */
- fun totalItems(totalItems: Long) = totalItems(JsonField.of(totalItems))
-
- /** The total number of items. */
- @JsonProperty("totalItems")
- @ExcludeMissing
- fun totalItems(totalItems: JsonField) = apply { this.totalItems = totalItems }
-
- /** The total number of pages. */
- fun totalPages(totalPages: Long) = totalPages(JsonField.of(totalPages))
-
- /** The total number of pages. */
- @JsonProperty("totalPages")
- @ExcludeMissing
- fun totalPages(totalPages: JsonField) = apply { this.totalPages = totalPages }
-
- fun additionalProperties(additionalProperties: Map) = apply {
- this.additionalProperties.clear()
- this.additionalProperties.putAll(additionalProperties)
- }
-
- @JsonAnySetter
- fun putAdditionalProperty(key: String, value: JsonValue) = apply {
- this.additionalProperties.put(key, value)
- }
-
- fun putAllAdditionalProperties(additionalProperties: Map) = apply {
- this.additionalProperties.putAll(additionalProperties)
- }
-
- fun build(): _Meta =
- _Meta(
- page,
- perPage,
- totalItems,
- totalPages,
- additionalProperties.toUnmodifiable(),
- )
- }
- }
-
@JsonDeserialize(builder = Item.Builder::class)
@NoAutoDetect
class Item
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/InferencePipelineDataStreamParams.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/InferencePipelineDataStreamParams.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/InferencePipelineDataStreamResponse.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/InferencePipelineDataStreamResponse.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/InferencePipelineDeleteParams.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/InferencePipelineDeleteParams.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/InferencePipelineRetrieveParams.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/InferencePipelineRetrieveParams.kt
old mode 100755
new mode 100644
index 1b2409f..41a7dd7
--- a/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/InferencePipelineRetrieveParams.kt
+++ b/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/InferencePipelineRetrieveParams.kt
@@ -2,7 +2,6 @@
package com.openlayer.api.models
-import com.openlayer.api.core.JsonValue
import com.openlayer.api.core.NoAutoDetect
import com.openlayer.api.core.toUnmodifiable
import com.openlayer.api.models.*
@@ -13,7 +12,6 @@ constructor(
private val inferencePipelineId: String,
private val additionalQueryParams: Map>,
private val additionalHeaders: Map>,
- private val additionalBodyProperties: Map,
) {
fun inferencePipelineId(): String = inferencePipelineId
@@ -33,8 +31,6 @@ constructor(
fun _additionalHeaders(): Map> = additionalHeaders
- fun _additionalBodyProperties(): Map = additionalBodyProperties
-
override fun equals(other: Any?): Boolean {
if (this === other) {
return true
@@ -43,8 +39,7 @@ constructor(
return other is InferencePipelineRetrieveParams &&
this.inferencePipelineId == other.inferencePipelineId &&
this.additionalQueryParams == other.additionalQueryParams &&
- this.additionalHeaders == other.additionalHeaders &&
- this.additionalBodyProperties == other.additionalBodyProperties
+ this.additionalHeaders == other.additionalHeaders
}
override fun hashCode(): Int {
@@ -52,12 +47,11 @@ constructor(
inferencePipelineId,
additionalQueryParams,
additionalHeaders,
- additionalBodyProperties,
)
}
override fun toString() =
- "InferencePipelineRetrieveParams{inferencePipelineId=$inferencePipelineId, additionalQueryParams=$additionalQueryParams, additionalHeaders=$additionalHeaders, additionalBodyProperties=$additionalBodyProperties}"
+ "InferencePipelineRetrieveParams{inferencePipelineId=$inferencePipelineId, additionalQueryParams=$additionalQueryParams, additionalHeaders=$additionalHeaders}"
fun toBuilder() = Builder().from(this)
@@ -72,7 +66,6 @@ constructor(
private var inferencePipelineId: String? = null
private var additionalQueryParams: MutableMap> = mutableMapOf()
private var additionalHeaders: MutableMap> = mutableMapOf()
- private var additionalBodyProperties: MutableMap = mutableMapOf()
@JvmSynthetic
internal fun from(inferencePipelineRetrieveParams: InferencePipelineRetrieveParams) =
@@ -80,7 +73,6 @@ constructor(
this.inferencePipelineId = inferencePipelineRetrieveParams.inferencePipelineId
additionalQueryParams(inferencePipelineRetrieveParams.additionalQueryParams)
additionalHeaders(inferencePipelineRetrieveParams.additionalHeaders)
- additionalBodyProperties(inferencePipelineRetrieveParams.additionalBodyProperties)
}
fun inferencePipelineId(inferencePipelineId: String) = apply {
@@ -127,20 +119,6 @@ constructor(
fun removeHeader(name: String) = apply { this.additionalHeaders.put(name, mutableListOf()) }
- fun additionalBodyProperties(additionalBodyProperties: Map) = apply {
- this.additionalBodyProperties.clear()
- this.additionalBodyProperties.putAll(additionalBodyProperties)
- }
-
- fun putAdditionalBodyProperty(key: String, value: JsonValue) = apply {
- this.additionalBodyProperties.put(key, value)
- }
-
- fun putAllAdditionalBodyProperties(additionalBodyProperties: Map) =
- apply {
- this.additionalBodyProperties.putAll(additionalBodyProperties)
- }
-
fun build(): InferencePipelineRetrieveParams =
InferencePipelineRetrieveParams(
checkNotNull(inferencePipelineId) {
@@ -148,7 +126,6 @@ constructor(
},
additionalQueryParams.mapValues { it.value.toUnmodifiable() }.toUnmodifiable(),
additionalHeaders.mapValues { it.value.toUnmodifiable() }.toUnmodifiable(),
- additionalBodyProperties.toUnmodifiable(),
)
}
}
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/InferencePipelineRetrieveResponse.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/InferencePipelineRetrieveResponse.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/InferencePipelineRowUpdateParams.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/InferencePipelineRowUpdateParams.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/InferencePipelineRowUpdateResponse.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/InferencePipelineRowUpdateResponse.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/InferencePipelineTestResultListParams.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/InferencePipelineTestResultListParams.kt
old mode 100755
new mode 100644
index e82d5a1..f7ca906
--- a/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/InferencePipelineTestResultListParams.kt
+++ b/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/InferencePipelineTestResultListParams.kt
@@ -22,7 +22,6 @@ constructor(
private val type: Type?,
private val additionalQueryParams: Map>,
private val additionalHeaders: Map>,
- private val additionalBodyProperties: Map,
) {
fun inferencePipelineId(): String = inferencePipelineId
@@ -59,8 +58,6 @@ constructor(
fun _additionalHeaders(): Map> = additionalHeaders
- fun _additionalBodyProperties(): Map = additionalBodyProperties
-
override fun equals(other: Any?): Boolean {
if (this === other) {
return true
@@ -73,8 +70,7 @@ constructor(
this.status == other.status &&
this.type == other.type &&
this.additionalQueryParams == other.additionalQueryParams &&
- this.additionalHeaders == other.additionalHeaders &&
- this.additionalBodyProperties == other.additionalBodyProperties
+ this.additionalHeaders == other.additionalHeaders
}
override fun hashCode(): Int {
@@ -86,12 +82,11 @@ constructor(
type,
additionalQueryParams,
additionalHeaders,
- additionalBodyProperties,
)
}
override fun toString() =
- "InferencePipelineTestResultListParams{inferencePipelineId=$inferencePipelineId, page=$page, perPage=$perPage, status=$status, type=$type, additionalQueryParams=$additionalQueryParams, additionalHeaders=$additionalHeaders, additionalBodyProperties=$additionalBodyProperties}"
+ "InferencePipelineTestResultListParams{inferencePipelineId=$inferencePipelineId, page=$page, perPage=$perPage, status=$status, type=$type, additionalQueryParams=$additionalQueryParams, additionalHeaders=$additionalHeaders}"
fun toBuilder() = Builder().from(this)
@@ -110,7 +105,6 @@ constructor(
private var type: Type? = null
private var additionalQueryParams: MutableMap> = mutableMapOf()
private var additionalHeaders: MutableMap> = mutableMapOf()
- private var additionalBodyProperties: MutableMap = mutableMapOf()
@JvmSynthetic
internal fun from(
@@ -123,7 +117,6 @@ constructor(
this.type = inferencePipelineTestResultListParams.type
additionalQueryParams(inferencePipelineTestResultListParams.additionalQueryParams)
additionalHeaders(inferencePipelineTestResultListParams.additionalHeaders)
- additionalBodyProperties(inferencePipelineTestResultListParams.additionalBodyProperties)
}
fun inferencePipelineId(inferencePipelineId: String) = apply {
@@ -188,20 +181,6 @@ constructor(
fun removeHeader(name: String) = apply { this.additionalHeaders.put(name, mutableListOf()) }
- fun additionalBodyProperties(additionalBodyProperties: Map) = apply {
- this.additionalBodyProperties.clear()
- this.additionalBodyProperties.putAll(additionalBodyProperties)
- }
-
- fun putAdditionalBodyProperty(key: String, value: JsonValue) = apply {
- this.additionalBodyProperties.put(key, value)
- }
-
- fun putAllAdditionalBodyProperties(additionalBodyProperties: Map) =
- apply {
- this.additionalBodyProperties.putAll(additionalBodyProperties)
- }
-
fun build(): InferencePipelineTestResultListParams =
InferencePipelineTestResultListParams(
checkNotNull(inferencePipelineId) {
@@ -213,7 +192,6 @@ constructor(
type,
additionalQueryParams.mapValues { it.value.toUnmodifiable() }.toUnmodifiable(),
additionalHeaders.mapValues { it.value.toUnmodifiable() }.toUnmodifiable(),
- additionalBodyProperties.toUnmodifiable(),
)
}
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/InferencePipelineTestResultListResponse.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/InferencePipelineTestResultListResponse.kt
old mode 100755
new mode 100644
index 045ce71..06f8ed6
--- a/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/InferencePipelineTestResultListResponse.kt
+++ b/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/InferencePipelineTestResultListResponse.kt
@@ -32,7 +32,6 @@ import java.util.Optional
@NoAutoDetect
class InferencePipelineTestResultListResponse
private constructor(
- private val _meta: JsonField<_Meta>,
private val items: JsonField
>,
private val additionalProperties: Map,
) {
@@ -41,12 +40,8 @@ private constructor(
private var hashCode: Int = 0
- fun _meta(): _Meta = _meta.getRequired("_meta")
-
fun items(): List- = items.getRequired("items")
- @JsonProperty("_meta") @ExcludeMissing fun __meta() = _meta
-
@JsonProperty("items") @ExcludeMissing fun _items() = items
@JsonAnyGetter
@@ -55,7 +50,6 @@ private constructor(
fun validate(): InferencePipelineTestResultListResponse = apply {
if (!validated) {
- _meta().validate()
items().forEach { it.validate() }
validated = true
}
@@ -69,25 +63,19 @@ private constructor(
}
return other is InferencePipelineTestResultListResponse &&
- this._meta == other._meta &&
this.items == other.items &&
this.additionalProperties == other.additionalProperties
}
override fun hashCode(): Int {
if (hashCode == 0) {
- hashCode =
- Objects.hash(
- _meta,
- items,
- additionalProperties,
- )
+ hashCode = Objects.hash(items, additionalProperties)
}
return hashCode
}
override fun toString() =
- "InferencePipelineTestResultListResponse{_meta=$_meta, items=$items, additionalProperties=$additionalProperties}"
+ "InferencePipelineTestResultListResponse{items=$items, additionalProperties=$additionalProperties}"
companion object {
@@ -96,7 +84,6 @@ private constructor(
class Builder {
- private var _meta: JsonField<_Meta> = JsonMissing.of()
private var items: JsonField
> = JsonMissing.of()
private var additionalProperties: MutableMap = mutableMapOf()
@@ -104,17 +91,10 @@ private constructor(
internal fun from(
inferencePipelineTestResultListResponse: InferencePipelineTestResultListResponse
) = apply {
- this._meta = inferencePipelineTestResultListResponse._meta
this.items = inferencePipelineTestResultListResponse.items
additionalProperties(inferencePipelineTestResultListResponse.additionalProperties)
}
- fun _meta(_meta: _Meta) = _meta(JsonField.of(_meta))
-
- @JsonProperty("_meta")
- @ExcludeMissing
- fun _meta(_meta: JsonField<_Meta>) = apply { this._meta = _meta }
-
fun items(items: List- ) = items(JsonField.of(items))
@JsonProperty("items")
@@ -137,176 +117,11 @@ private constructor(
fun build(): InferencePipelineTestResultListResponse =
InferencePipelineTestResultListResponse(
- _meta,
items.map { it.toUnmodifiable() },
- additionalProperties.toUnmodifiable(),
+ additionalProperties.toUnmodifiable()
)
}
- @JsonDeserialize(builder = _Meta.Builder::class)
- @NoAutoDetect
- class _Meta
- private constructor(
- private val page: JsonField,
- private val perPage: JsonField,
- private val totalItems: JsonField,
- private val totalPages: JsonField,
- private val additionalProperties: Map,
- ) {
-
- private var validated: Boolean = false
-
- private var hashCode: Int = 0
-
- /** The current page. */
- fun page(): Long = page.getRequired("page")
-
- /** The number of items per page. */
- fun perPage(): Long = perPage.getRequired("perPage")
-
- /** The total number of items. */
- fun totalItems(): Long = totalItems.getRequired("totalItems")
-
- /** The total number of pages. */
- fun totalPages(): Long = totalPages.getRequired("totalPages")
-
- /** The current page. */
- @JsonProperty("page") @ExcludeMissing fun _page() = page
-
- /** The number of items per page. */
- @JsonProperty("perPage") @ExcludeMissing fun _perPage() = perPage
-
- /** The total number of items. */
- @JsonProperty("totalItems") @ExcludeMissing fun _totalItems() = totalItems
-
- /** The total number of pages. */
- @JsonProperty("totalPages") @ExcludeMissing fun _totalPages() = totalPages
-
- @JsonAnyGetter
- @ExcludeMissing
- fun _additionalProperties(): Map = additionalProperties
-
- fun validate(): _Meta = apply {
- if (!validated) {
- page()
- perPage()
- totalItems()
- totalPages()
- validated = true
- }
- }
-
- fun toBuilder() = Builder().from(this)
-
- override fun equals(other: Any?): Boolean {
- if (this === other) {
- return true
- }
-
- return other is _Meta &&
- this.page == other.page &&
- this.perPage == other.perPage &&
- this.totalItems == other.totalItems &&
- this.totalPages == other.totalPages &&
- this.additionalProperties == other.additionalProperties
- }
-
- override fun hashCode(): Int {
- if (hashCode == 0) {
- hashCode =
- Objects.hash(
- page,
- perPage,
- totalItems,
- totalPages,
- additionalProperties,
- )
- }
- return hashCode
- }
-
- override fun toString() =
- "_Meta{page=$page, perPage=$perPage, totalItems=$totalItems, totalPages=$totalPages, additionalProperties=$additionalProperties}"
-
- companion object {
-
- @JvmStatic fun builder() = Builder()
- }
-
- class Builder {
-
- private var page: JsonField = JsonMissing.of()
- private var perPage: JsonField = JsonMissing.of()
- private var totalItems: JsonField = JsonMissing.of()
- private var totalPages: JsonField = JsonMissing.of()
- private var additionalProperties: MutableMap = mutableMapOf()
-
- @JvmSynthetic
- internal fun from(_meta: _Meta) = apply {
- this.page = _meta.page
- this.perPage = _meta.perPage
- this.totalItems = _meta.totalItems
- this.totalPages = _meta.totalPages
- additionalProperties(_meta.additionalProperties)
- }
-
- /** The current page. */
- fun page(page: Long) = page(JsonField.of(page))
-
- /** The current page. */
- @JsonProperty("page")
- @ExcludeMissing
- fun page(page: JsonField) = apply { this.page = page }
-
- /** The number of items per page. */
- fun perPage(perPage: Long) = perPage(JsonField.of(perPage))
-
- /** The number of items per page. */
- @JsonProperty("perPage")
- @ExcludeMissing
- fun perPage(perPage: JsonField) = apply { this.perPage = perPage }
-
- /** The total number of items. */
- fun totalItems(totalItems: Long) = totalItems(JsonField.of(totalItems))
-
- /** The total number of items. */
- @JsonProperty("totalItems")
- @ExcludeMissing
- fun totalItems(totalItems: JsonField) = apply { this.totalItems = totalItems }
-
- /** The total number of pages. */
- fun totalPages(totalPages: Long) = totalPages(JsonField.of(totalPages))
-
- /** The total number of pages. */
- @JsonProperty("totalPages")
- @ExcludeMissing
- fun totalPages(totalPages: JsonField) = apply { this.totalPages = totalPages }
-
- fun additionalProperties(additionalProperties: Map) = apply {
- this.additionalProperties.clear()
- this.additionalProperties.putAll(additionalProperties)
- }
-
- @JsonAnySetter
- fun putAdditionalProperty(key: String, value: JsonValue) = apply {
- this.additionalProperties.put(key, value)
- }
-
- fun putAllAdditionalProperties(additionalProperties: Map) = apply {
- this.additionalProperties.putAll(additionalProperties)
- }
-
- fun build(): _Meta =
- _Meta(
- page,
- perPage,
- totalItems,
- totalPages,
- additionalProperties.toUnmodifiable(),
- )
- }
- }
-
@JsonDeserialize(builder = Item.Builder::class)
@NoAutoDetect
class Item
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/InferencePipelineUpdateParams.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/InferencePipelineUpdateParams.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/InferencePipelineUpdateResponse.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/InferencePipelineUpdateResponse.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/ProjectCommitListParams.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/ProjectCommitListParams.kt
old mode 100755
new mode 100644
index 9266137..70182de
--- a/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/ProjectCommitListParams.kt
+++ b/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/ProjectCommitListParams.kt
@@ -2,7 +2,6 @@
package com.openlayer.api.models
-import com.openlayer.api.core.JsonValue
import com.openlayer.api.core.NoAutoDetect
import com.openlayer.api.core.toUnmodifiable
import com.openlayer.api.models.*
@@ -16,7 +15,6 @@ constructor(
private val perPage: Long?,
private val additionalQueryParams: Map>,
private val additionalHeaders: Map>,
- private val additionalBodyProperties: Map,
) {
fun projectId(): String = projectId
@@ -47,8 +45,6 @@ constructor(
fun _additionalHeaders(): Map> = additionalHeaders
- fun _additionalBodyProperties(): Map = additionalBodyProperties
-
override fun equals(other: Any?): Boolean {
if (this === other) {
return true
@@ -59,8 +55,7 @@ constructor(
this.page == other.page &&
this.perPage == other.perPage &&
this.additionalQueryParams == other.additionalQueryParams &&
- this.additionalHeaders == other.additionalHeaders &&
- this.additionalBodyProperties == other.additionalBodyProperties
+ this.additionalHeaders == other.additionalHeaders
}
override fun hashCode(): Int {
@@ -70,12 +65,11 @@ constructor(
perPage,
additionalQueryParams,
additionalHeaders,
- additionalBodyProperties,
)
}
override fun toString() =
- "ProjectCommitListParams{projectId=$projectId, page=$page, perPage=$perPage, additionalQueryParams=$additionalQueryParams, additionalHeaders=$additionalHeaders, additionalBodyProperties=$additionalBodyProperties}"
+ "ProjectCommitListParams{projectId=$projectId, page=$page, perPage=$perPage, additionalQueryParams=$additionalQueryParams, additionalHeaders=$additionalHeaders}"
fun toBuilder() = Builder().from(this)
@@ -92,7 +86,6 @@ constructor(
private var perPage: Long? = null
private var additionalQueryParams: MutableMap> = mutableMapOf()
private var additionalHeaders: MutableMap> = mutableMapOf()
- private var additionalBodyProperties: MutableMap = mutableMapOf()
@JvmSynthetic
internal fun from(projectCommitListParams: ProjectCommitListParams) = apply {
@@ -101,7 +94,6 @@ constructor(
this.perPage = projectCommitListParams.perPage
additionalQueryParams(projectCommitListParams.additionalQueryParams)
additionalHeaders(projectCommitListParams.additionalHeaders)
- additionalBodyProperties(projectCommitListParams.additionalBodyProperties)
}
fun projectId(projectId: String) = apply { this.projectId = projectId }
@@ -152,20 +144,6 @@ constructor(
fun removeHeader(name: String) = apply { this.additionalHeaders.put(name, mutableListOf()) }
- fun additionalBodyProperties(additionalBodyProperties: Map) = apply {
- this.additionalBodyProperties.clear()
- this.additionalBodyProperties.putAll(additionalBodyProperties)
- }
-
- fun putAdditionalBodyProperty(key: String, value: JsonValue) = apply {
- this.additionalBodyProperties.put(key, value)
- }
-
- fun putAllAdditionalBodyProperties(additionalBodyProperties: Map) =
- apply {
- this.additionalBodyProperties.putAll(additionalBodyProperties)
- }
-
fun build(): ProjectCommitListParams =
ProjectCommitListParams(
checkNotNull(projectId) { "`projectId` is required but was not set" },
@@ -173,7 +151,6 @@ constructor(
perPage,
additionalQueryParams.mapValues { it.value.toUnmodifiable() }.toUnmodifiable(),
additionalHeaders.mapValues { it.value.toUnmodifiable() }.toUnmodifiable(),
- additionalBodyProperties.toUnmodifiable(),
)
}
}
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/ProjectCommitListResponse.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/ProjectCommitListResponse.kt
old mode 100755
new mode 100644
index da9d1fd..ee04f83
--- a/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/ProjectCommitListResponse.kt
+++ b/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/ProjectCommitListResponse.kt
@@ -23,7 +23,6 @@ import java.util.Optional
@NoAutoDetect
class ProjectCommitListResponse
private constructor(
- private val _meta: JsonField<_Meta>,
private val items: JsonField
>,
private val additionalProperties: Map,
) {
@@ -32,12 +31,8 @@ private constructor(
private var hashCode: Int = 0
- fun _meta(): _Meta = _meta.getRequired("_meta")
-
fun items(): List- = items.getRequired("items")
- @JsonProperty("_meta") @ExcludeMissing fun __meta() = _meta
-
@JsonProperty("items") @ExcludeMissing fun _items() = items
@JsonAnyGetter
@@ -46,7 +41,6 @@ private constructor(
fun validate(): ProjectCommitListResponse = apply {
if (!validated) {
- _meta().validate()
items().forEach { it.validate() }
validated = true
}
@@ -60,25 +54,19 @@ private constructor(
}
return other is ProjectCommitListResponse &&
- this._meta == other._meta &&
this.items == other.items &&
this.additionalProperties == other.additionalProperties
}
override fun hashCode(): Int {
if (hashCode == 0) {
- hashCode =
- Objects.hash(
- _meta,
- items,
- additionalProperties,
- )
+ hashCode = Objects.hash(items, additionalProperties)
}
return hashCode
}
override fun toString() =
- "ProjectCommitListResponse{_meta=$_meta, items=$items, additionalProperties=$additionalProperties}"
+ "ProjectCommitListResponse{items=$items, additionalProperties=$additionalProperties}"
companion object {
@@ -87,23 +75,15 @@ private constructor(
class Builder {
- private var _meta: JsonField<_Meta> = JsonMissing.of()
private var items: JsonField
> = JsonMissing.of()
private var additionalProperties: MutableMap = mutableMapOf()
@JvmSynthetic
internal fun from(projectCommitListResponse: ProjectCommitListResponse) = apply {
- this._meta = projectCommitListResponse._meta
this.items = projectCommitListResponse.items
additionalProperties(projectCommitListResponse.additionalProperties)
}
- fun _meta(_meta: _Meta) = _meta(JsonField.of(_meta))
-
- @JsonProperty("_meta")
- @ExcludeMissing
- fun _meta(_meta: JsonField<_Meta>) = apply { this._meta = _meta }
-
fun items(items: List- ) = items(JsonField.of(items))
@JsonProperty("items")
@@ -126,176 +106,11 @@ private constructor(
fun build(): ProjectCommitListResponse =
ProjectCommitListResponse(
- _meta,
items.map { it.toUnmodifiable() },
- additionalProperties.toUnmodifiable(),
+ additionalProperties.toUnmodifiable()
)
}
- @JsonDeserialize(builder = _Meta.Builder::class)
- @NoAutoDetect
- class _Meta
- private constructor(
- private val page: JsonField,
- private val perPage: JsonField,
- private val totalItems: JsonField,
- private val totalPages: JsonField,
- private val additionalProperties: Map,
- ) {
-
- private var validated: Boolean = false
-
- private var hashCode: Int = 0
-
- /** The current page. */
- fun page(): Long = page.getRequired("page")
-
- /** The number of items per page. */
- fun perPage(): Long = perPage.getRequired("perPage")
-
- /** The total number of items. */
- fun totalItems(): Long = totalItems.getRequired("totalItems")
-
- /** The total number of pages. */
- fun totalPages(): Long = totalPages.getRequired("totalPages")
-
- /** The current page. */
- @JsonProperty("page") @ExcludeMissing fun _page() = page
-
- /** The number of items per page. */
- @JsonProperty("perPage") @ExcludeMissing fun _perPage() = perPage
-
- /** The total number of items. */
- @JsonProperty("totalItems") @ExcludeMissing fun _totalItems() = totalItems
-
- /** The total number of pages. */
- @JsonProperty("totalPages") @ExcludeMissing fun _totalPages() = totalPages
-
- @JsonAnyGetter
- @ExcludeMissing
- fun _additionalProperties(): Map = additionalProperties
-
- fun validate(): _Meta = apply {
- if (!validated) {
- page()
- perPage()
- totalItems()
- totalPages()
- validated = true
- }
- }
-
- fun toBuilder() = Builder().from(this)
-
- override fun equals(other: Any?): Boolean {
- if (this === other) {
- return true
- }
-
- return other is _Meta &&
- this.page == other.page &&
- this.perPage == other.perPage &&
- this.totalItems == other.totalItems &&
- this.totalPages == other.totalPages &&
- this.additionalProperties == other.additionalProperties
- }
-
- override fun hashCode(): Int {
- if (hashCode == 0) {
- hashCode =
- Objects.hash(
- page,
- perPage,
- totalItems,
- totalPages,
- additionalProperties,
- )
- }
- return hashCode
- }
-
- override fun toString() =
- "_Meta{page=$page, perPage=$perPage, totalItems=$totalItems, totalPages=$totalPages, additionalProperties=$additionalProperties}"
-
- companion object {
-
- @JvmStatic fun builder() = Builder()
- }
-
- class Builder {
-
- private var page: JsonField = JsonMissing.of()
- private var perPage: JsonField = JsonMissing.of()
- private var totalItems: JsonField = JsonMissing.of()
- private var totalPages: JsonField = JsonMissing.of()
- private var additionalProperties: MutableMap = mutableMapOf()
-
- @JvmSynthetic
- internal fun from(_meta: _Meta) = apply {
- this.page = _meta.page
- this.perPage = _meta.perPage
- this.totalItems = _meta.totalItems
- this.totalPages = _meta.totalPages
- additionalProperties(_meta.additionalProperties)
- }
-
- /** The current page. */
- fun page(page: Long) = page(JsonField.of(page))
-
- /** The current page. */
- @JsonProperty("page")
- @ExcludeMissing
- fun page(page: JsonField) = apply { this.page = page }
-
- /** The number of items per page. */
- fun perPage(perPage: Long) = perPage(JsonField.of(perPage))
-
- /** The number of items per page. */
- @JsonProperty("perPage")
- @ExcludeMissing
- fun perPage(perPage: JsonField) = apply { this.perPage = perPage }
-
- /** The total number of items. */
- fun totalItems(totalItems: Long) = totalItems(JsonField.of(totalItems))
-
- /** The total number of items. */
- @JsonProperty("totalItems")
- @ExcludeMissing
- fun totalItems(totalItems: JsonField) = apply { this.totalItems = totalItems }
-
- /** The total number of pages. */
- fun totalPages(totalPages: Long) = totalPages(JsonField.of(totalPages))
-
- /** The total number of pages. */
- @JsonProperty("totalPages")
- @ExcludeMissing
- fun totalPages(totalPages: JsonField) = apply { this.totalPages = totalPages }
-
- fun additionalProperties(additionalProperties: Map) = apply {
- this.additionalProperties.clear()
- this.additionalProperties.putAll(additionalProperties)
- }
-
- @JsonAnySetter
- fun putAdditionalProperty(key: String, value: JsonValue) = apply {
- this.additionalProperties.put(key, value)
- }
-
- fun putAllAdditionalProperties(additionalProperties: Map) = apply {
- this.additionalProperties.putAll(additionalProperties)
- }
-
- fun build(): _Meta =
- _Meta(
- page,
- perPage,
- totalItems,
- totalPages,
- additionalProperties.toUnmodifiable(),
- )
- }
- }
-
@JsonDeserialize(builder = Item.Builder::class)
@NoAutoDetect
class Item
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/ProjectCreateParams.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/ProjectCreateParams.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/ProjectCreateResponse.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/ProjectCreateResponse.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/ProjectInferencePipelineCreateParams.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/ProjectInferencePipelineCreateParams.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/ProjectInferencePipelineCreateResponse.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/ProjectInferencePipelineCreateResponse.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/ProjectInferencePipelineListParams.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/ProjectInferencePipelineListParams.kt
old mode 100755
new mode 100644
index 1b909ab..44e3b6a
--- a/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/ProjectInferencePipelineListParams.kt
+++ b/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/ProjectInferencePipelineListParams.kt
@@ -2,7 +2,6 @@
package com.openlayer.api.models
-import com.openlayer.api.core.JsonValue
import com.openlayer.api.core.NoAutoDetect
import com.openlayer.api.core.toUnmodifiable
import com.openlayer.api.models.*
@@ -17,7 +16,6 @@ constructor(
private val perPage: Long?,
private val additionalQueryParams: Map>,
private val additionalHeaders: Map>,
- private val additionalBodyProperties: Map,
) {
fun projectId(): String = projectId
@@ -51,8 +49,6 @@ constructor(
fun _additionalHeaders(): Map> = additionalHeaders
- fun _additionalBodyProperties(): Map = additionalBodyProperties
-
override fun equals(other: Any?): Boolean {
if (this === other) {
return true
@@ -64,8 +60,7 @@ constructor(
this.page == other.page &&
this.perPage == other.perPage &&
this.additionalQueryParams == other.additionalQueryParams &&
- this.additionalHeaders == other.additionalHeaders &&
- this.additionalBodyProperties == other.additionalBodyProperties
+ this.additionalHeaders == other.additionalHeaders
}
override fun hashCode(): Int {
@@ -76,12 +71,11 @@ constructor(
perPage,
additionalQueryParams,
additionalHeaders,
- additionalBodyProperties,
)
}
override fun toString() =
- "ProjectInferencePipelineListParams{projectId=$projectId, name=$name, page=$page, perPage=$perPage, additionalQueryParams=$additionalQueryParams, additionalHeaders=$additionalHeaders, additionalBodyProperties=$additionalBodyProperties}"
+ "ProjectInferencePipelineListParams{projectId=$projectId, name=$name, page=$page, perPage=$perPage, additionalQueryParams=$additionalQueryParams, additionalHeaders=$additionalHeaders}"
fun toBuilder() = Builder().from(this)
@@ -99,7 +93,6 @@ constructor(
private var perPage: Long? = null
private var additionalQueryParams: MutableMap> = mutableMapOf()
private var additionalHeaders: MutableMap> = mutableMapOf()
- private var additionalBodyProperties: MutableMap = mutableMapOf()
@JvmSynthetic
internal fun from(projectInferencePipelineListParams: ProjectInferencePipelineListParams) =
@@ -110,9 +103,6 @@ constructor(
this.perPage = projectInferencePipelineListParams.perPage
additionalQueryParams(projectInferencePipelineListParams.additionalQueryParams)
additionalHeaders(projectInferencePipelineListParams.additionalHeaders)
- additionalBodyProperties(
- projectInferencePipelineListParams.additionalBodyProperties
- )
}
fun projectId(projectId: String) = apply { this.projectId = projectId }
@@ -166,20 +156,6 @@ constructor(
fun removeHeader(name: String) = apply { this.additionalHeaders.put(name, mutableListOf()) }
- fun additionalBodyProperties(additionalBodyProperties: Map) = apply {
- this.additionalBodyProperties.clear()
- this.additionalBodyProperties.putAll(additionalBodyProperties)
- }
-
- fun putAdditionalBodyProperty(key: String, value: JsonValue) = apply {
- this.additionalBodyProperties.put(key, value)
- }
-
- fun putAllAdditionalBodyProperties(additionalBodyProperties: Map) =
- apply {
- this.additionalBodyProperties.putAll(additionalBodyProperties)
- }
-
fun build(): ProjectInferencePipelineListParams =
ProjectInferencePipelineListParams(
checkNotNull(projectId) { "`projectId` is required but was not set" },
@@ -188,7 +164,6 @@ constructor(
perPage,
additionalQueryParams.mapValues { it.value.toUnmodifiable() }.toUnmodifiable(),
additionalHeaders.mapValues { it.value.toUnmodifiable() }.toUnmodifiable(),
- additionalBodyProperties.toUnmodifiable(),
)
}
}
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/ProjectInferencePipelineListResponse.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/ProjectInferencePipelineListResponse.kt
old mode 100755
new mode 100644
index cb9e840..7e9850f
--- a/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/ProjectInferencePipelineListResponse.kt
+++ b/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/ProjectInferencePipelineListResponse.kt
@@ -23,7 +23,6 @@ import java.util.Optional
@NoAutoDetect
class ProjectInferencePipelineListResponse
private constructor(
- private val _meta: JsonField<_Meta>,
private val items: JsonField
>,
private val additionalProperties: Map,
) {
@@ -32,12 +31,8 @@ private constructor(
private var hashCode: Int = 0
- fun _meta(): _Meta = _meta.getRequired("_meta")
-
fun items(): List- = items.getRequired("items")
- @JsonProperty("_meta") @ExcludeMissing fun __meta() = _meta
-
@JsonProperty("items") @ExcludeMissing fun _items() = items
@JsonAnyGetter
@@ -46,7 +41,6 @@ private constructor(
fun validate(): ProjectInferencePipelineListResponse = apply {
if (!validated) {
- _meta().validate()
items().forEach { it.validate() }
validated = true
}
@@ -60,25 +54,19 @@ private constructor(
}
return other is ProjectInferencePipelineListResponse &&
- this._meta == other._meta &&
this.items == other.items &&
this.additionalProperties == other.additionalProperties
}
override fun hashCode(): Int {
if (hashCode == 0) {
- hashCode =
- Objects.hash(
- _meta,
- items,
- additionalProperties,
- )
+ hashCode = Objects.hash(items, additionalProperties)
}
return hashCode
}
override fun toString() =
- "ProjectInferencePipelineListResponse{_meta=$_meta, items=$items, additionalProperties=$additionalProperties}"
+ "ProjectInferencePipelineListResponse{items=$items, additionalProperties=$additionalProperties}"
companion object {
@@ -87,7 +75,6 @@ private constructor(
class Builder {
- private var _meta: JsonField<_Meta> = JsonMissing.of()
private var items: JsonField
> = JsonMissing.of()
private var additionalProperties: MutableMap = mutableMapOf()
@@ -95,17 +82,10 @@ private constructor(
internal fun from(
projectInferencePipelineListResponse: ProjectInferencePipelineListResponse
) = apply {
- this._meta = projectInferencePipelineListResponse._meta
this.items = projectInferencePipelineListResponse.items
additionalProperties(projectInferencePipelineListResponse.additionalProperties)
}
- fun _meta(_meta: _Meta) = _meta(JsonField.of(_meta))
-
- @JsonProperty("_meta")
- @ExcludeMissing
- fun _meta(_meta: JsonField<_Meta>) = apply { this._meta = _meta }
-
fun items(items: List- ) = items(JsonField.of(items))
@JsonProperty("items")
@@ -128,176 +108,11 @@ private constructor(
fun build(): ProjectInferencePipelineListResponse =
ProjectInferencePipelineListResponse(
- _meta,
items.map { it.toUnmodifiable() },
- additionalProperties.toUnmodifiable(),
+ additionalProperties.toUnmodifiable()
)
}
- @JsonDeserialize(builder = _Meta.Builder::class)
- @NoAutoDetect
- class _Meta
- private constructor(
- private val page: JsonField,
- private val perPage: JsonField,
- private val totalItems: JsonField,
- private val totalPages: JsonField,
- private val additionalProperties: Map,
- ) {
-
- private var validated: Boolean = false
-
- private var hashCode: Int = 0
-
- /** The current page. */
- fun page(): Long = page.getRequired("page")
-
- /** The number of items per page. */
- fun perPage(): Long = perPage.getRequired("perPage")
-
- /** The total number of items. */
- fun totalItems(): Long = totalItems.getRequired("totalItems")
-
- /** The total number of pages. */
- fun totalPages(): Long = totalPages.getRequired("totalPages")
-
- /** The current page. */
- @JsonProperty("page") @ExcludeMissing fun _page() = page
-
- /** The number of items per page. */
- @JsonProperty("perPage") @ExcludeMissing fun _perPage() = perPage
-
- /** The total number of items. */
- @JsonProperty("totalItems") @ExcludeMissing fun _totalItems() = totalItems
-
- /** The total number of pages. */
- @JsonProperty("totalPages") @ExcludeMissing fun _totalPages() = totalPages
-
- @JsonAnyGetter
- @ExcludeMissing
- fun _additionalProperties(): Map = additionalProperties
-
- fun validate(): _Meta = apply {
- if (!validated) {
- page()
- perPage()
- totalItems()
- totalPages()
- validated = true
- }
- }
-
- fun toBuilder() = Builder().from(this)
-
- override fun equals(other: Any?): Boolean {
- if (this === other) {
- return true
- }
-
- return other is _Meta &&
- this.page == other.page &&
- this.perPage == other.perPage &&
- this.totalItems == other.totalItems &&
- this.totalPages == other.totalPages &&
- this.additionalProperties == other.additionalProperties
- }
-
- override fun hashCode(): Int {
- if (hashCode == 0) {
- hashCode =
- Objects.hash(
- page,
- perPage,
- totalItems,
- totalPages,
- additionalProperties,
- )
- }
- return hashCode
- }
-
- override fun toString() =
- "_Meta{page=$page, perPage=$perPage, totalItems=$totalItems, totalPages=$totalPages, additionalProperties=$additionalProperties}"
-
- companion object {
-
- @JvmStatic fun builder() = Builder()
- }
-
- class Builder {
-
- private var page: JsonField = JsonMissing.of()
- private var perPage: JsonField = JsonMissing.of()
- private var totalItems: JsonField = JsonMissing.of()
- private var totalPages: JsonField = JsonMissing.of()
- private var additionalProperties: MutableMap = mutableMapOf()
-
- @JvmSynthetic
- internal fun from(_meta: _Meta) = apply {
- this.page = _meta.page
- this.perPage = _meta.perPage
- this.totalItems = _meta.totalItems
- this.totalPages = _meta.totalPages
- additionalProperties(_meta.additionalProperties)
- }
-
- /** The current page. */
- fun page(page: Long) = page(JsonField.of(page))
-
- /** The current page. */
- @JsonProperty("page")
- @ExcludeMissing
- fun page(page: JsonField) = apply { this.page = page }
-
- /** The number of items per page. */
- fun perPage(perPage: Long) = perPage(JsonField.of(perPage))
-
- /** The number of items per page. */
- @JsonProperty("perPage")
- @ExcludeMissing
- fun perPage(perPage: JsonField) = apply { this.perPage = perPage }
-
- /** The total number of items. */
- fun totalItems(totalItems: Long) = totalItems(JsonField.of(totalItems))
-
- /** The total number of items. */
- @JsonProperty("totalItems")
- @ExcludeMissing
- fun totalItems(totalItems: JsonField) = apply { this.totalItems = totalItems }
-
- /** The total number of pages. */
- fun totalPages(totalPages: Long) = totalPages(JsonField.of(totalPages))
-
- /** The total number of pages. */
- @JsonProperty("totalPages")
- @ExcludeMissing
- fun totalPages(totalPages: JsonField) = apply { this.totalPages = totalPages }
-
- fun additionalProperties(additionalProperties: Map) = apply {
- this.additionalProperties.clear()
- this.additionalProperties.putAll(additionalProperties)
- }
-
- @JsonAnySetter
- fun putAdditionalProperty(key: String, value: JsonValue) = apply {
- this.additionalProperties.put(key, value)
- }
-
- fun putAllAdditionalProperties(additionalProperties: Map) = apply {
- this.additionalProperties.putAll(additionalProperties)
- }
-
- fun build(): _Meta =
- _Meta(
- page,
- perPage,
- totalItems,
- totalPages,
- additionalProperties.toUnmodifiable(),
- )
- }
- }
-
@JsonDeserialize(builder = Item.Builder::class)
@NoAutoDetect
class Item
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/ProjectListParams.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/ProjectListParams.kt
old mode 100755
new mode 100644
index b493cd2..ba784ac
--- a/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/ProjectListParams.kt
+++ b/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/ProjectListParams.kt
@@ -21,7 +21,6 @@ constructor(
private val taskType: TaskType?,
private val additionalQueryParams: Map>,
private val additionalHeaders: Map>,
- private val additionalBodyProperties: Map,
) {
fun name(): Optional = Optional.ofNullable(name)
@@ -49,8 +48,6 @@ constructor(
fun _additionalHeaders(): Map> = additionalHeaders
- fun _additionalBodyProperties(): Map = additionalBodyProperties
-
override fun equals(other: Any?): Boolean {
if (this === other) {
return true
@@ -62,8 +59,7 @@ constructor(
this.perPage == other.perPage &&
this.taskType == other.taskType &&
this.additionalQueryParams == other.additionalQueryParams &&
- this.additionalHeaders == other.additionalHeaders &&
- this.additionalBodyProperties == other.additionalBodyProperties
+ this.additionalHeaders == other.additionalHeaders
}
override fun hashCode(): Int {
@@ -74,12 +70,11 @@ constructor(
taskType,
additionalQueryParams,
additionalHeaders,
- additionalBodyProperties,
)
}
override fun toString() =
- "ProjectListParams{name=$name, page=$page, perPage=$perPage, taskType=$taskType, additionalQueryParams=$additionalQueryParams, additionalHeaders=$additionalHeaders, additionalBodyProperties=$additionalBodyProperties}"
+ "ProjectListParams{name=$name, page=$page, perPage=$perPage, taskType=$taskType, additionalQueryParams=$additionalQueryParams, additionalHeaders=$additionalHeaders}"
fun toBuilder() = Builder().from(this)
@@ -97,7 +92,6 @@ constructor(
private var taskType: TaskType? = null
private var additionalQueryParams: MutableMap> = mutableMapOf()
private var additionalHeaders: MutableMap> = mutableMapOf()
- private var additionalBodyProperties: MutableMap = mutableMapOf()
@JvmSynthetic
internal fun from(projectListParams: ProjectListParams) = apply {
@@ -107,7 +101,6 @@ constructor(
this.taskType = projectListParams.taskType
additionalQueryParams(projectListParams.additionalQueryParams)
additionalHeaders(projectListParams.additionalHeaders)
- additionalBodyProperties(projectListParams.additionalBodyProperties)
}
/** Filter list of items by project name. */
@@ -162,20 +155,6 @@ constructor(
fun removeHeader(name: String) = apply { this.additionalHeaders.put(name, mutableListOf()) }
- fun additionalBodyProperties(additionalBodyProperties: Map) = apply {
- this.additionalBodyProperties.clear()
- this.additionalBodyProperties.putAll(additionalBodyProperties)
- }
-
- fun putAdditionalBodyProperty(key: String, value: JsonValue) = apply {
- this.additionalBodyProperties.put(key, value)
- }
-
- fun putAllAdditionalBodyProperties(additionalBodyProperties: Map) =
- apply {
- this.additionalBodyProperties.putAll(additionalBodyProperties)
- }
-
fun build(): ProjectListParams =
ProjectListParams(
name,
@@ -184,7 +163,6 @@ constructor(
taskType,
additionalQueryParams.mapValues { it.value.toUnmodifiable() }.toUnmodifiable(),
additionalHeaders.mapValues { it.value.toUnmodifiable() }.toUnmodifiable(),
- additionalBodyProperties.toUnmodifiable(),
)
}
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/ProjectListResponse.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/ProjectListResponse.kt
old mode 100755
new mode 100644
index 69c6387..9c9d885
--- a/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/ProjectListResponse.kt
+++ b/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/ProjectListResponse.kt
@@ -23,7 +23,6 @@ import java.util.Optional
@NoAutoDetect
class ProjectListResponse
private constructor(
- private val _meta: JsonField<_Meta>,
private val items: JsonField
>,
private val additionalProperties: Map,
) {
@@ -32,12 +31,8 @@ private constructor(
private var hashCode: Int = 0
- fun _meta(): _Meta = _meta.getRequired("_meta")
-
fun items(): List- = items.getRequired("items")
- @JsonProperty("_meta") @ExcludeMissing fun __meta() = _meta
-
@JsonProperty("items") @ExcludeMissing fun _items() = items
@JsonAnyGetter
@@ -46,7 +41,6 @@ private constructor(
fun validate(): ProjectListResponse = apply {
if (!validated) {
- _meta().validate()
items().forEach { it.validate() }
validated = true
}
@@ -60,25 +54,19 @@ private constructor(
}
return other is ProjectListResponse &&
- this._meta == other._meta &&
this.items == other.items &&
this.additionalProperties == other.additionalProperties
}
override fun hashCode(): Int {
if (hashCode == 0) {
- hashCode =
- Objects.hash(
- _meta,
- items,
- additionalProperties,
- )
+ hashCode = Objects.hash(items, additionalProperties)
}
return hashCode
}
override fun toString() =
- "ProjectListResponse{_meta=$_meta, items=$items, additionalProperties=$additionalProperties}"
+ "ProjectListResponse{items=$items, additionalProperties=$additionalProperties}"
companion object {
@@ -87,23 +75,15 @@ private constructor(
class Builder {
- private var _meta: JsonField<_Meta> = JsonMissing.of()
private var items: JsonField
> = JsonMissing.of()
private var additionalProperties: MutableMap = mutableMapOf()
@JvmSynthetic
internal fun from(projectListResponse: ProjectListResponse) = apply {
- this._meta = projectListResponse._meta
this.items = projectListResponse.items
additionalProperties(projectListResponse.additionalProperties)
}
- fun _meta(_meta: _Meta) = _meta(JsonField.of(_meta))
-
- @JsonProperty("_meta")
- @ExcludeMissing
- fun _meta(_meta: JsonField<_Meta>) = apply { this._meta = _meta }
-
fun items(items: List- ) = items(JsonField.of(items))
@JsonProperty("items")
@@ -126,176 +106,11 @@ private constructor(
fun build(): ProjectListResponse =
ProjectListResponse(
- _meta,
items.map { it.toUnmodifiable() },
- additionalProperties.toUnmodifiable(),
+ additionalProperties.toUnmodifiable()
)
}
- @JsonDeserialize(builder = _Meta.Builder::class)
- @NoAutoDetect
- class _Meta
- private constructor(
- private val page: JsonField,
- private val perPage: JsonField,
- private val totalItems: JsonField,
- private val totalPages: JsonField,
- private val additionalProperties: Map,
- ) {
-
- private var validated: Boolean = false
-
- private var hashCode: Int = 0
-
- /** The current page. */
- fun page(): Long = page.getRequired("page")
-
- /** The number of items per page. */
- fun perPage(): Long = perPage.getRequired("perPage")
-
- /** The total number of items. */
- fun totalItems(): Long = totalItems.getRequired("totalItems")
-
- /** The total number of pages. */
- fun totalPages(): Long = totalPages.getRequired("totalPages")
-
- /** The current page. */
- @JsonProperty("page") @ExcludeMissing fun _page() = page
-
- /** The number of items per page. */
- @JsonProperty("perPage") @ExcludeMissing fun _perPage() = perPage
-
- /** The total number of items. */
- @JsonProperty("totalItems") @ExcludeMissing fun _totalItems() = totalItems
-
- /** The total number of pages. */
- @JsonProperty("totalPages") @ExcludeMissing fun _totalPages() = totalPages
-
- @JsonAnyGetter
- @ExcludeMissing
- fun _additionalProperties(): Map = additionalProperties
-
- fun validate(): _Meta = apply {
- if (!validated) {
- page()
- perPage()
- totalItems()
- totalPages()
- validated = true
- }
- }
-
- fun toBuilder() = Builder().from(this)
-
- override fun equals(other: Any?): Boolean {
- if (this === other) {
- return true
- }
-
- return other is _Meta &&
- this.page == other.page &&
- this.perPage == other.perPage &&
- this.totalItems == other.totalItems &&
- this.totalPages == other.totalPages &&
- this.additionalProperties == other.additionalProperties
- }
-
- override fun hashCode(): Int {
- if (hashCode == 0) {
- hashCode =
- Objects.hash(
- page,
- perPage,
- totalItems,
- totalPages,
- additionalProperties,
- )
- }
- return hashCode
- }
-
- override fun toString() =
- "_Meta{page=$page, perPage=$perPage, totalItems=$totalItems, totalPages=$totalPages, additionalProperties=$additionalProperties}"
-
- companion object {
-
- @JvmStatic fun builder() = Builder()
- }
-
- class Builder {
-
- private var page: JsonField = JsonMissing.of()
- private var perPage: JsonField = JsonMissing.of()
- private var totalItems: JsonField = JsonMissing.of()
- private var totalPages: JsonField = JsonMissing.of()
- private var additionalProperties: MutableMap = mutableMapOf()
-
- @JvmSynthetic
- internal fun from(_meta: _Meta) = apply {
- this.page = _meta.page
- this.perPage = _meta.perPage
- this.totalItems = _meta.totalItems
- this.totalPages = _meta.totalPages
- additionalProperties(_meta.additionalProperties)
- }
-
- /** The current page. */
- fun page(page: Long) = page(JsonField.of(page))
-
- /** The current page. */
- @JsonProperty("page")
- @ExcludeMissing
- fun page(page: JsonField) = apply { this.page = page }
-
- /** The number of items per page. */
- fun perPage(perPage: Long) = perPage(JsonField.of(perPage))
-
- /** The number of items per page. */
- @JsonProperty("perPage")
- @ExcludeMissing
- fun perPage(perPage: JsonField) = apply { this.perPage = perPage }
-
- /** The total number of items. */
- fun totalItems(totalItems: Long) = totalItems(JsonField.of(totalItems))
-
- /** The total number of items. */
- @JsonProperty("totalItems")
- @ExcludeMissing
- fun totalItems(totalItems: JsonField) = apply { this.totalItems = totalItems }
-
- /** The total number of pages. */
- fun totalPages(totalPages: Long) = totalPages(JsonField.of(totalPages))
-
- /** The total number of pages. */
- @JsonProperty("totalPages")
- @ExcludeMissing
- fun totalPages(totalPages: JsonField) = apply { this.totalPages = totalPages }
-
- fun additionalProperties(additionalProperties: Map) = apply {
- this.additionalProperties.clear()
- this.additionalProperties.putAll(additionalProperties)
- }
-
- @JsonAnySetter
- fun putAdditionalProperty(key: String, value: JsonValue) = apply {
- this.additionalProperties.put(key, value)
- }
-
- fun putAllAdditionalProperties(additionalProperties: Map) = apply {
- this.additionalProperties.putAll(additionalProperties)
- }
-
- fun build(): _Meta =
- _Meta(
- page,
- perPage,
- totalItems,
- totalPages,
- additionalProperties.toUnmodifiable(),
- )
- }
- }
-
@JsonDeserialize(builder = Item.Builder::class)
@NoAutoDetect
class Item
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/StoragePresignedUrlCreateParams.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/StoragePresignedUrlCreateParams.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/StoragePresignedUrlCreateResponse.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/StoragePresignedUrlCreateResponse.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/services/Handlers.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/services/Handlers.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/services/HttpRequestBodies.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/services/HttpRequestBodies.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/services/async/CommitServiceAsync.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/services/async/CommitServiceAsync.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/services/async/CommitServiceAsyncImpl.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/services/async/CommitServiceAsyncImpl.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/services/async/InferencePipelineServiceAsync.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/services/async/InferencePipelineServiceAsync.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/services/async/InferencePipelineServiceAsyncImpl.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/services/async/InferencePipelineServiceAsyncImpl.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/services/async/ProjectServiceAsync.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/services/async/ProjectServiceAsync.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/services/async/ProjectServiceAsyncImpl.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/services/async/ProjectServiceAsyncImpl.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/services/async/StorageServiceAsync.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/services/async/StorageServiceAsync.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/services/async/StorageServiceAsyncImpl.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/services/async/StorageServiceAsyncImpl.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/services/async/commits/TestResultServiceAsync.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/services/async/commits/TestResultServiceAsync.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/services/async/commits/TestResultServiceAsyncImpl.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/services/async/commits/TestResultServiceAsyncImpl.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/services/async/inferencePipelines/DataServiceAsync.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/services/async/inferencePipelines/DataServiceAsync.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/services/async/inferencePipelines/DataServiceAsyncImpl.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/services/async/inferencePipelines/DataServiceAsyncImpl.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/services/async/inferencePipelines/RowServiceAsync.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/services/async/inferencePipelines/RowServiceAsync.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/services/async/inferencePipelines/RowServiceAsyncImpl.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/services/async/inferencePipelines/RowServiceAsyncImpl.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/services/async/inferencePipelines/TestResultServiceAsync.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/services/async/inferencePipelines/TestResultServiceAsync.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/services/async/inferencePipelines/TestResultServiceAsyncImpl.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/services/async/inferencePipelines/TestResultServiceAsyncImpl.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/services/async/projects/CommitServiceAsync.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/services/async/projects/CommitServiceAsync.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/services/async/projects/CommitServiceAsyncImpl.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/services/async/projects/CommitServiceAsyncImpl.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/services/async/projects/InferencePipelineServiceAsync.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/services/async/projects/InferencePipelineServiceAsync.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/services/async/projects/InferencePipelineServiceAsyncImpl.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/services/async/projects/InferencePipelineServiceAsyncImpl.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/services/async/storage/PresignedUrlServiceAsync.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/services/async/storage/PresignedUrlServiceAsync.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/services/async/storage/PresignedUrlServiceAsyncImpl.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/services/async/storage/PresignedUrlServiceAsyncImpl.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/services/blocking/CommitService.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/services/blocking/CommitService.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/services/blocking/CommitServiceImpl.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/services/blocking/CommitServiceImpl.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/services/blocking/InferencePipelineService.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/services/blocking/InferencePipelineService.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/services/blocking/InferencePipelineServiceImpl.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/services/blocking/InferencePipelineServiceImpl.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/services/blocking/ProjectService.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/services/blocking/ProjectService.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/services/blocking/ProjectServiceImpl.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/services/blocking/ProjectServiceImpl.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/services/blocking/StorageService.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/services/blocking/StorageService.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/services/blocking/StorageServiceImpl.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/services/blocking/StorageServiceImpl.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/services/blocking/commits/TestResultService.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/services/blocking/commits/TestResultService.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/services/blocking/commits/TestResultServiceImpl.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/services/blocking/commits/TestResultServiceImpl.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/services/blocking/inferencePipelines/DataService.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/services/blocking/inferencePipelines/DataService.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/services/blocking/inferencePipelines/DataServiceImpl.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/services/blocking/inferencePipelines/DataServiceImpl.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/services/blocking/inferencePipelines/RowService.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/services/blocking/inferencePipelines/RowService.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/services/blocking/inferencePipelines/RowServiceImpl.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/services/blocking/inferencePipelines/RowServiceImpl.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/services/blocking/inferencePipelines/TestResultService.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/services/blocking/inferencePipelines/TestResultService.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/services/blocking/inferencePipelines/TestResultServiceImpl.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/services/blocking/inferencePipelines/TestResultServiceImpl.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/services/blocking/projects/CommitService.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/services/blocking/projects/CommitService.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/services/blocking/projects/CommitServiceImpl.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/services/blocking/projects/CommitServiceImpl.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/services/blocking/projects/InferencePipelineService.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/services/blocking/projects/InferencePipelineService.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/services/blocking/projects/InferencePipelineServiceImpl.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/services/blocking/projects/InferencePipelineServiceImpl.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/services/blocking/storage/PresignedUrlService.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/services/blocking/storage/PresignedUrlService.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/services/blocking/storage/PresignedUrlServiceImpl.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/services/blocking/storage/PresignedUrlServiceImpl.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/test/kotlin/com/openlayer/api/TestServerExtension.kt b/openlayer-java-core/src/test/kotlin/com/openlayer/api/TestServerExtension.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/test/kotlin/com/openlayer/api/core/http/HttpRequestTest.kt b/openlayer-java-core/src/test/kotlin/com/openlayer/api/core/http/HttpRequestTest.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/test/kotlin/com/openlayer/api/core/http/RetryingHttpClientTest.kt b/openlayer-java-core/src/test/kotlin/com/openlayer/api/core/http/RetryingHttpClientTest.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/test/kotlin/com/openlayer/api/core/http/SerializerTest.kt b/openlayer-java-core/src/test/kotlin/com/openlayer/api/core/http/SerializerTest.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/test/kotlin/com/openlayer/api/models/CommitTestResultListParamsTest.kt b/openlayer-java-core/src/test/kotlin/com/openlayer/api/models/CommitTestResultListParamsTest.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/test/kotlin/com/openlayer/api/models/CommitTestResultListResponseTest.kt b/openlayer-java-core/src/test/kotlin/com/openlayer/api/models/CommitTestResultListResponseTest.kt
old mode 100755
new mode 100644
index 05c6717..73bb4f1
--- a/openlayer-java-core/src/test/kotlin/com/openlayer/api/models/CommitTestResultListResponseTest.kt
+++ b/openlayer-java-core/src/test/kotlin/com/openlayer/api/models/CommitTestResultListResponseTest.kt
@@ -13,15 +13,6 @@ class CommitTestResultListResponseTest {
fun createCommitTestResultListResponse() {
val commitTestResultListResponse =
CommitTestResultListResponse.builder()
- ._meta(
- CommitTestResultListResponse._Meta
- .builder()
- .page(123L)
- .perPage(100L)
- .totalItems(123L)
- .totalPages(123L)
- .build()
- )
.items(
listOf(
CommitTestResultListResponse.Item.builder()
@@ -87,16 +78,6 @@ class CommitTestResultListResponseTest {
)
.build()
assertThat(commitTestResultListResponse).isNotNull
- assertThat(commitTestResultListResponse._meta())
- .isEqualTo(
- CommitTestResultListResponse._Meta
- .builder()
- .page(123L)
- .perPage(100L)
- .totalItems(123L)
- .totalPages(123L)
- .build()
- )
assertThat(commitTestResultListResponse.items())
.containsExactly(
CommitTestResultListResponse.Item.builder()
diff --git a/openlayer-java-core/src/test/kotlin/com/openlayer/api/models/InferencePipelineDataStreamParamsTest.kt b/openlayer-java-core/src/test/kotlin/com/openlayer/api/models/InferencePipelineDataStreamParamsTest.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/test/kotlin/com/openlayer/api/models/InferencePipelineDataStreamResponseTest.kt b/openlayer-java-core/src/test/kotlin/com/openlayer/api/models/InferencePipelineDataStreamResponseTest.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/test/kotlin/com/openlayer/api/models/InferencePipelineDeleteParamsTest.kt b/openlayer-java-core/src/test/kotlin/com/openlayer/api/models/InferencePipelineDeleteParamsTest.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/test/kotlin/com/openlayer/api/models/InferencePipelineRetrieveParamsTest.kt b/openlayer-java-core/src/test/kotlin/com/openlayer/api/models/InferencePipelineRetrieveParamsTest.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/test/kotlin/com/openlayer/api/models/InferencePipelineRetrieveResponseTest.kt b/openlayer-java-core/src/test/kotlin/com/openlayer/api/models/InferencePipelineRetrieveResponseTest.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/test/kotlin/com/openlayer/api/models/InferencePipelineRowUpdateParamsTest.kt b/openlayer-java-core/src/test/kotlin/com/openlayer/api/models/InferencePipelineRowUpdateParamsTest.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/test/kotlin/com/openlayer/api/models/InferencePipelineRowUpdateResponseTest.kt b/openlayer-java-core/src/test/kotlin/com/openlayer/api/models/InferencePipelineRowUpdateResponseTest.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/test/kotlin/com/openlayer/api/models/InferencePipelineTestResultListParamsTest.kt b/openlayer-java-core/src/test/kotlin/com/openlayer/api/models/InferencePipelineTestResultListParamsTest.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/test/kotlin/com/openlayer/api/models/InferencePipelineTestResultListResponseTest.kt b/openlayer-java-core/src/test/kotlin/com/openlayer/api/models/InferencePipelineTestResultListResponseTest.kt
old mode 100755
new mode 100644
index d9eadbb..9395377
--- a/openlayer-java-core/src/test/kotlin/com/openlayer/api/models/InferencePipelineTestResultListResponseTest.kt
+++ b/openlayer-java-core/src/test/kotlin/com/openlayer/api/models/InferencePipelineTestResultListResponseTest.kt
@@ -13,15 +13,6 @@ class InferencePipelineTestResultListResponseTest {
fun createInferencePipelineTestResultListResponse() {
val inferencePipelineTestResultListResponse =
InferencePipelineTestResultListResponse.builder()
- ._meta(
- InferencePipelineTestResultListResponse._Meta
- .builder()
- .page(123L)
- .perPage(100L)
- .totalItems(123L)
- .totalPages(123L)
- .build()
- )
.items(
listOf(
InferencePipelineTestResultListResponse.Item.builder()
@@ -90,16 +81,6 @@ class InferencePipelineTestResultListResponseTest {
)
.build()
assertThat(inferencePipelineTestResultListResponse).isNotNull
- assertThat(inferencePipelineTestResultListResponse._meta())
- .isEqualTo(
- InferencePipelineTestResultListResponse._Meta
- .builder()
- .page(123L)
- .perPage(100L)
- .totalItems(123L)
- .totalPages(123L)
- .build()
- )
assertThat(inferencePipelineTestResultListResponse.items())
.containsExactly(
InferencePipelineTestResultListResponse.Item.builder()
diff --git a/openlayer-java-core/src/test/kotlin/com/openlayer/api/models/InferencePipelineUpdateParamsTest.kt b/openlayer-java-core/src/test/kotlin/com/openlayer/api/models/InferencePipelineUpdateParamsTest.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/test/kotlin/com/openlayer/api/models/InferencePipelineUpdateResponseTest.kt b/openlayer-java-core/src/test/kotlin/com/openlayer/api/models/InferencePipelineUpdateResponseTest.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/test/kotlin/com/openlayer/api/models/ProjectCommitListParamsTest.kt b/openlayer-java-core/src/test/kotlin/com/openlayer/api/models/ProjectCommitListParamsTest.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/test/kotlin/com/openlayer/api/models/ProjectCommitListResponseTest.kt b/openlayer-java-core/src/test/kotlin/com/openlayer/api/models/ProjectCommitListResponseTest.kt
old mode 100755
new mode 100644
index 5793bd5..d76d210
--- a/openlayer-java-core/src/test/kotlin/com/openlayer/api/models/ProjectCommitListResponseTest.kt
+++ b/openlayer-java-core/src/test/kotlin/com/openlayer/api/models/ProjectCommitListResponseTest.kt
@@ -12,15 +12,6 @@ class ProjectCommitListResponseTest {
fun createProjectCommitListResponse() {
val projectCommitListResponse =
ProjectCommitListResponse.builder()
- ._meta(
- ProjectCommitListResponse._Meta
- .builder()
- .page(123L)
- .perPage(100L)
- .totalItems(123L)
- .totalPages(123L)
- .build()
- )
.items(
listOf(
ProjectCommitListResponse.Item.builder()
@@ -67,16 +58,6 @@ class ProjectCommitListResponseTest {
)
.build()
assertThat(projectCommitListResponse).isNotNull
- assertThat(projectCommitListResponse._meta())
- .isEqualTo(
- ProjectCommitListResponse._Meta
- .builder()
- .page(123L)
- .perPage(100L)
- .totalItems(123L)
- .totalPages(123L)
- .build()
- )
assertThat(projectCommitListResponse.items())
.containsExactly(
ProjectCommitListResponse.Item.builder()
diff --git a/openlayer-java-core/src/test/kotlin/com/openlayer/api/models/ProjectCreateParamsTest.kt b/openlayer-java-core/src/test/kotlin/com/openlayer/api/models/ProjectCreateParamsTest.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/test/kotlin/com/openlayer/api/models/ProjectCreateResponseTest.kt b/openlayer-java-core/src/test/kotlin/com/openlayer/api/models/ProjectCreateResponseTest.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/test/kotlin/com/openlayer/api/models/ProjectInferencePipelineCreateParamsTest.kt b/openlayer-java-core/src/test/kotlin/com/openlayer/api/models/ProjectInferencePipelineCreateParamsTest.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/test/kotlin/com/openlayer/api/models/ProjectInferencePipelineCreateResponseTest.kt b/openlayer-java-core/src/test/kotlin/com/openlayer/api/models/ProjectInferencePipelineCreateResponseTest.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/test/kotlin/com/openlayer/api/models/ProjectInferencePipelineListParamsTest.kt b/openlayer-java-core/src/test/kotlin/com/openlayer/api/models/ProjectInferencePipelineListParamsTest.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/test/kotlin/com/openlayer/api/models/ProjectInferencePipelineListResponseTest.kt b/openlayer-java-core/src/test/kotlin/com/openlayer/api/models/ProjectInferencePipelineListResponseTest.kt
old mode 100755
new mode 100644
index 37bb0ca..17d8e00
--- a/openlayer-java-core/src/test/kotlin/com/openlayer/api/models/ProjectInferencePipelineListResponseTest.kt
+++ b/openlayer-java-core/src/test/kotlin/com/openlayer/api/models/ProjectInferencePipelineListResponseTest.kt
@@ -12,15 +12,6 @@ class ProjectInferencePipelineListResponseTest {
fun createProjectInferencePipelineListResponse() {
val projectInferencePipelineListResponse =
ProjectInferencePipelineListResponse.builder()
- ._meta(
- ProjectInferencePipelineListResponse._Meta
- .builder()
- .page(123L)
- .perPage(100L)
- .totalItems(123L)
- .totalPages(123L)
- .build()
- )
.items(
listOf(
ProjectInferencePipelineListResponse.Item.builder()
@@ -52,16 +43,6 @@ class ProjectInferencePipelineListResponseTest {
)
.build()
assertThat(projectInferencePipelineListResponse).isNotNull
- assertThat(projectInferencePipelineListResponse._meta())
- .isEqualTo(
- ProjectInferencePipelineListResponse._Meta
- .builder()
- .page(123L)
- .perPage(100L)
- .totalItems(123L)
- .totalPages(123L)
- .build()
- )
assertThat(projectInferencePipelineListResponse.items())
.containsExactly(
ProjectInferencePipelineListResponse.Item.builder()
diff --git a/openlayer-java-core/src/test/kotlin/com/openlayer/api/models/ProjectListParamsTest.kt b/openlayer-java-core/src/test/kotlin/com/openlayer/api/models/ProjectListParamsTest.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/test/kotlin/com/openlayer/api/models/ProjectListResponseTest.kt b/openlayer-java-core/src/test/kotlin/com/openlayer/api/models/ProjectListResponseTest.kt
old mode 100755
new mode 100644
index c30dee9..dd977ce
--- a/openlayer-java-core/src/test/kotlin/com/openlayer/api/models/ProjectListResponseTest.kt
+++ b/openlayer-java-core/src/test/kotlin/com/openlayer/api/models/ProjectListResponseTest.kt
@@ -12,15 +12,6 @@ class ProjectListResponseTest {
fun createProjectListResponse() {
val projectListResponse =
ProjectListResponse.builder()
- ._meta(
- ProjectListResponse._Meta
- .builder()
- .page(123L)
- .perPage(100L)
- .totalItems(123L)
- .totalPages(123L)
- .build()
- )
.items(
listOf(
ProjectListResponse.Item.builder()
@@ -66,16 +57,6 @@ class ProjectListResponseTest {
)
.build()
assertThat(projectListResponse).isNotNull
- assertThat(projectListResponse._meta())
- .isEqualTo(
- ProjectListResponse._Meta
- .builder()
- .page(123L)
- .perPage(100L)
- .totalItems(123L)
- .totalPages(123L)
- .build()
- )
assertThat(projectListResponse.items())
.containsExactly(
ProjectListResponse.Item.builder()
diff --git a/openlayer-java-core/src/test/kotlin/com/openlayer/api/models/StoragePresignedUrlCreateParamsTest.kt b/openlayer-java-core/src/test/kotlin/com/openlayer/api/models/StoragePresignedUrlCreateParamsTest.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/test/kotlin/com/openlayer/api/models/StoragePresignedUrlCreateResponseTest.kt b/openlayer-java-core/src/test/kotlin/com/openlayer/api/models/StoragePresignedUrlCreateResponseTest.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/test/kotlin/com/openlayer/api/services/ErrorHandlingTest.kt b/openlayer-java-core/src/test/kotlin/com/openlayer/api/services/ErrorHandlingTest.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/test/kotlin/com/openlayer/api/services/ServiceParamsTest.kt b/openlayer-java-core/src/test/kotlin/com/openlayer/api/services/ServiceParamsTest.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/test/kotlin/com/openlayer/api/services/blocking/CommitServiceTest.kt b/openlayer-java-core/src/test/kotlin/com/openlayer/api/services/blocking/CommitServiceTest.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/test/kotlin/com/openlayer/api/services/blocking/InferencePipelineServiceTest.kt b/openlayer-java-core/src/test/kotlin/com/openlayer/api/services/blocking/InferencePipelineServiceTest.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/test/kotlin/com/openlayer/api/services/blocking/ProjectServiceTest.kt b/openlayer-java-core/src/test/kotlin/com/openlayer/api/services/blocking/ProjectServiceTest.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/test/kotlin/com/openlayer/api/services/blocking/StorageServiceTest.kt b/openlayer-java-core/src/test/kotlin/com/openlayer/api/services/blocking/StorageServiceTest.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/test/kotlin/com/openlayer/api/services/blocking/commits/TestResultServiceTest.kt b/openlayer-java-core/src/test/kotlin/com/openlayer/api/services/blocking/commits/TestResultServiceTest.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/test/kotlin/com/openlayer/api/services/blocking/inferencePipelines/DataServiceTest.kt b/openlayer-java-core/src/test/kotlin/com/openlayer/api/services/blocking/inferencePipelines/DataServiceTest.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/test/kotlin/com/openlayer/api/services/blocking/inferencePipelines/RowServiceTest.kt b/openlayer-java-core/src/test/kotlin/com/openlayer/api/services/blocking/inferencePipelines/RowServiceTest.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/test/kotlin/com/openlayer/api/services/blocking/inferencePipelines/TestResultServiceTest.kt b/openlayer-java-core/src/test/kotlin/com/openlayer/api/services/blocking/inferencePipelines/TestResultServiceTest.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/test/kotlin/com/openlayer/api/services/blocking/projects/CommitServiceTest.kt b/openlayer-java-core/src/test/kotlin/com/openlayer/api/services/blocking/projects/CommitServiceTest.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/test/kotlin/com/openlayer/api/services/blocking/projects/InferencePipelineServiceTest.kt b/openlayer-java-core/src/test/kotlin/com/openlayer/api/services/blocking/projects/InferencePipelineServiceTest.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-core/src/test/kotlin/com/openlayer/api/services/blocking/storage/PresignedUrlServiceTest.kt b/openlayer-java-core/src/test/kotlin/com/openlayer/api/services/blocking/storage/PresignedUrlServiceTest.kt
old mode 100755
new mode 100644
diff --git a/openlayer-java-lib/.keep b/openlayer-java-lib/.keep
old mode 100755
new mode 100644
diff --git a/openlayer-java/build.gradle.kts b/openlayer-java/build.gradle.kts
old mode 100755
new mode 100644
diff --git a/release-please-config.json b/release-please-config.json
old mode 100755
new mode 100644
diff --git a/settings.gradle.kts b/settings.gradle.kts
old mode 100755
new mode 100644
index 1de5738..28a5571
--- a/settings.gradle.kts
+++ b/settings.gradle.kts
@@ -3,4 +3,4 @@ rootProject.name = "openlayer-java-root"
include("openlayer-java")
include("openlayer-java-client-okhttp")
include("openlayer-java-core")
-include("openlayer-java-example")
+include("examples")