Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.1.0-alpha.25"
".": "0.1.0-alpha.26"
}
8 changes: 4 additions & 4 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 14
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/brand-dev%2Fbrand.dev-1391c1e69bcdce517f71265a2f22f4e8d35c3f12a224899e64f85e25897b743a.yml
openapi_spec_hash: f8a2917cc425300d272ae943f88d7bb7
config_hash: 7f48d078645cb8331328bcd6f6ab3281
configured_endpoints: 15
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/brand-dev%2Fbrand.dev-863ddc13e032497459a639cf02a16349831dda7e39557cbd5ce33da34d086b02.yml
openapi_spec_hash: f972aac9618fe8df340d96344b3d0578
config_hash: 6f10592c7d0c3bafefc1271472283217
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Changelog

## 0.1.0-alpha.26 (2026-01-05)

Full Changelog: [v0.1.0-alpha.25...v0.1.0-alpha.26](https://github.com/brand-dot-dev/java-sdk/compare/v0.1.0-alpha.25...v0.1.0-alpha.26)

### Features

* **api:** api update ([6e0e1d4](https://github.com/brand-dot-dev/java-sdk/commit/6e0e1d4fa0db226f953467c4ab83ee8f46203609))
* **api:** api update ([210aa14](https://github.com/brand-dot-dev/java-sdk/commit/210aa1435c09e44ab9b035f518b40bdb759936c4))
* **api:** manual updates ([10c16f9](https://github.com/brand-dot-dev/java-sdk/commit/10c16f9eeea050339c40987512567f1f36842c6f))

## 0.1.0-alpha.25 (2025-12-22)

Full Changelog: [v0.1.0-alpha.24...v0.1.0-alpha.25](https://github.com/brand-dot-dev/java-sdk/compare/v0.1.0-alpha.24...v0.1.0-alpha.25)
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@
same "printed page" as the copyright notice for easier
identification within third-party archives.

Copyright 2025 Brand Dev
Copyright 2026 Brand Dev

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
17 changes: 8 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

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

[![Maven Central](https://img.shields.io/maven-central/v/com.branddev.api/brand-dev-java)](https://central.sonatype.com/artifact/com.branddev.api/brand-dev-java/0.1.0-alpha.25)
[![javadoc](https://javadoc.io/badge2/com.branddev.api/brand-dev-java/0.1.0-alpha.25/javadoc.svg)](https://javadoc.io/doc/com.branddev.api/brand-dev-java/0.1.0-alpha.25)
[![Maven Central](https://img.shields.io/maven-central/v/com.branddev.api/brand-dev-java)](https://central.sonatype.com/artifact/com.branddev.api/brand-dev-java/0.1.0-alpha.26)
[![javadoc](https://javadoc.io/badge2/com.branddev.api/brand-dev-java/0.1.0-alpha.26/javadoc.svg)](https://javadoc.io/doc/com.branddev.api/brand-dev-java/0.1.0-alpha.26)

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

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

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

The REST API documentation can be found on [docs.brand.dev](https://docs.brand.dev/). Javadocs are available on [javadoc.io](https://javadoc.io/doc/com.branddev.api/brand-dev-java/0.1.0-alpha.25).
The REST API documentation can be found on [docs.brand.dev](https://docs.brand.dev/). Javadocs are available on [javadoc.io](https://javadoc.io/doc/com.branddev.api/brand-dev-java/0.1.0-alpha.26).

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

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

```kotlin
implementation("com.branddev.api:brand-dev-java:0.1.0-alpha.25")
implementation("com.branddev.api:brand-dev-java:0.1.0-alpha.26")
```

### Maven
Expand All @@ -33,7 +33,7 @@ implementation("com.branddev.api:brand-dev-java:0.1.0-alpha.25")
<dependency>
<groupId>com.branddev.api</groupId>
<artifactId>brand-dev-java</artifactId>
<version>0.1.0-alpha.25</version>
<version>0.1.0-alpha.26</version>
</dependency>
```

Expand Down Expand Up @@ -491,12 +491,11 @@ To forcibly omit a required parameter or property, pass [`JsonMissing`](brand-de

```java
import com.branddev.api.core.JsonMissing;
import com.branddev.api.models.brand.BrandAiQueryParams;
import com.branddev.api.models.brand.BrandAiProductsParams;
import com.branddev.api.models.brand.BrandRetrieveParams;

BrandRetrieveParams params = BrandAiQueryParams.builder()
.domain("domain")
.dataToExtract(JsonMissing.of())
BrandRetrieveParams params = BrandAiProductsParams.builder()
.domain(JsonMissing.of())
.build();
```

Expand Down
Loading
Loading