diff --git a/.release-please-manifest.json b/.release-please-manifest.json index b56c3d0..e8285b7 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.1.0-alpha.4" + ".": "0.1.0-alpha.5" } \ No newline at end of file diff --git a/.stats.yml b/.stats.yml index f0d7da7..1fa2e23 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 10 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/brand-dev%2Fbrand.dev-3f6d4c0f819a0d3128951d315ad216df22050fbc47c5f601d261d56f8b1d80a5.yml -openapi_spec_hash: 8e7953259a1b6bd7440a780eccad1742 +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/brand-dev%2Fbrand.dev-7fc7261db520645d5bd06a27492b32aa869d787c382908bb4a608034b757348b.yml +openapi_spec_hash: 8a9e05fe1ca53f6d8c11ddee625a8908 config_hash: 8f3ee44d690a305369555016a77ed016 diff --git a/CHANGELOG.md b/CHANGELOG.md index f208513..0c1305b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.1.0-alpha.5 (2025-06-19) + +Full Changelog: [v0.1.0-alpha.4...v0.1.0-alpha.5](https://github.com/brand-dot-dev/java-sdk/compare/v0.1.0-alpha.4...v0.1.0-alpha.5) + +### Features + +* **api:** manual updates ([7a7bfd5](https://github.com/brand-dot-dev/java-sdk/commit/7a7bfd5848404db17a33db7cb695160686a4b70f)) + ## 0.1.0-alpha.4 (2025-06-19) Full Changelog: [v0.1.0-alpha.3...v0.1.0-alpha.4](https://github.com/brand-dot-dev/java-sdk/compare/v0.1.0-alpha.3...v0.1.0-alpha.4) diff --git a/README.md b/README.md index 8d0e28b..fcca56e 100644 --- a/README.md +++ b/README.md @@ -2,8 +2,8 @@ -[![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.4) -[![javadoc](https://javadoc.io/badge2/com.branddev.api/brand-dev-java/0.1.0-alpha.4/javadoc.svg)](https://javadoc.io/doc/com.branddev.api/brand-dev-java/0.1.0-alpha.4) +[![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.5) +[![javadoc](https://javadoc.io/badge2/com.branddev.api/brand-dev-java/0.1.0-alpha.5/javadoc.svg)](https://javadoc.io/doc/com.branddev.api/brand-dev-java/0.1.0-alpha.5) @@ -13,7 +13,7 @@ It is generated with [Stainless](https://www.stainless.com/). -Javadocs are available on [javadoc.io](https://javadoc.io/doc/com.branddev.api/brand-dev-java/0.1.0-alpha.4). +Javadocs are available on [javadoc.io](https://javadoc.io/doc/com.branddev.api/brand-dev-java/0.1.0-alpha.5). @@ -24,7 +24,7 @@ Javadocs are available on [javadoc.io](https://javadoc.io/doc/com.branddev.api/b ### Gradle ```kotlin -implementation("com.branddev.api:brand-dev-java:0.1.0-alpha.4") +implementation("com.branddev.api:brand-dev-java:0.1.0-alpha.5") ``` ### Maven @@ -33,7 +33,7 @@ implementation("com.branddev.api:brand-dev-java:0.1.0-alpha.4") com.branddev.api brand-dev-java - 0.1.0-alpha.4 + 0.1.0-alpha.5 ``` diff --git a/brand-dev-java-core/src/main/kotlin/com/branddev/api/models/brand/BrandStyleguideParams.kt b/brand-dev-java-core/src/main/kotlin/com/branddev/api/models/brand/BrandStyleguideParams.kt index ef36b0b..3874bbf 100644 --- a/brand-dev-java-core/src/main/kotlin/com/branddev/api/models/brand/BrandStyleguideParams.kt +++ b/brand-dev-java-core/src/main/kotlin/com/branddev/api/models/brand/BrandStyleguideParams.kt @@ -12,8 +12,7 @@ import kotlin.jvm.optionals.getOrNull /** * Beta feature: Automatically extract comprehensive design system information from a brand's - * website including colors, typography, spacing, shadows, and UI components. Uses AI-powered - * analysis of website screenshots to identify design patterns and create a reusable styleguide. + * website including colors, typography, spacing, shadows, and UI components. */ class BrandStyleguideParams private constructor( diff --git a/brand-dev-java-core/src/main/kotlin/com/branddev/api/services/async/BrandServiceAsync.kt b/brand-dev-java-core/src/main/kotlin/com/branddev/api/services/async/BrandServiceAsync.kt index 3b68162..2336ea9 100644 --- a/brand-dev-java-core/src/main/kotlin/com/branddev/api/services/async/BrandServiceAsync.kt +++ b/brand-dev-java-core/src/main/kotlin/com/branddev/api/services/async/BrandServiceAsync.kt @@ -159,8 +159,7 @@ interface BrandServiceAsync { /** * Beta feature: Automatically extract comprehensive design system information from a brand's - * website including colors, typography, spacing, shadows, and UI components. Uses AI-powered - * analysis of website screenshots to identify design patterns and create a reusable styleguide. + * website including colors, typography, spacing, shadows, and UI components. */ fun styleguide(params: BrandStyleguideParams): CompletableFuture = styleguide(params, RequestOptions.none()) diff --git a/brand-dev-java-core/src/main/kotlin/com/branddev/api/services/blocking/BrandService.kt b/brand-dev-java-core/src/main/kotlin/com/branddev/api/services/blocking/BrandService.kt index 5d6d7a6..d34e663 100644 --- a/brand-dev-java-core/src/main/kotlin/com/branddev/api/services/blocking/BrandService.kt +++ b/brand-dev-java-core/src/main/kotlin/com/branddev/api/services/blocking/BrandService.kt @@ -153,8 +153,7 @@ interface BrandService { /** * Beta feature: Automatically extract comprehensive design system information from a brand's - * website including colors, typography, spacing, shadows, and UI components. Uses AI-powered - * analysis of website screenshots to identify design patterns and create a reusable styleguide. + * website including colors, typography, spacing, shadows, and UI components. */ fun styleguide(params: BrandStyleguideParams): BrandStyleguideResponse = styleguide(params, RequestOptions.none()) diff --git a/build.gradle.kts b/build.gradle.kts index c50b4dc..f9b1630 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -9,7 +9,7 @@ repositories { allprojects { group = "com.branddev.api" - version = "0.1.0-alpha.4" // x-release-please-version + version = "0.1.0-alpha.5" // x-release-please-version } subprojects {