Skip to content

Commit 6e0e1d4

Browse files
feat(api): api update
1 parent 10c16f9 commit 6e0e1d4

4 files changed

Lines changed: 10 additions & 10 deletions

File tree

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 15
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/brand-dev%2Fbrand.dev-c45c9faa82a7f8b0b0221deab17a0f6cc6b096906e192aea9ef535e17667008f.yml
3-
openapi_spec_hash: f3330c699ed3a55e48cdeecfce379e7b
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/brand-dev%2Fbrand.dev-863ddc13e032497459a639cf02a16349831dda7e39557cbd5ce33da34d086b02.yml
3+
openapi_spec_hash: f972aac9618fe8df340d96344b3d0578
44
config_hash: 6f10592c7d0c3bafefc1271472283217

brand-dev-java-core/src/main/kotlin/com/branddev/api/models/brand/BrandAiProductsParams.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ import java.util.Objects
2020
import java.util.Optional
2121

2222
/**
23-
* Beta feature: Use AI to extract product information from a brand's website. The AI will analyze
24-
* the website and return a list of products with details such as name, description, pricing,
23+
* Beta feature: Extract product information from a brand's website. Brand.dev will analyze the
24+
* website and return a list of products with details such as name, description, image, pricing,
2525
* features, and more.
2626
*/
2727
class BrandAiProductsParams

brand-dev-java-core/src/main/kotlin/com/branddev/api/services/async/BrandServiceAsync.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,9 @@ interface BrandServiceAsync {
7171
retrieve(BrandRetrieveParams.none(), requestOptions)
7272

7373
/**
74-
* Beta feature: Use AI to extract product information from a brand's website. The AI will
75-
* analyze the website and return a list of products with details such as name, description,
76-
* pricing, features, and more.
74+
* Beta feature: Extract product information from a brand's website. Brand.dev will analyze the
75+
* website and return a list of products with details such as name, description, image, pricing,
76+
* features, and more.
7777
*/
7878
fun aiProducts(params: BrandAiProductsParams): CompletableFuture<BrandAiProductsResponse> =
7979
aiProducts(params, RequestOptions.none())

brand-dev-java-core/src/main/kotlin/com/branddev/api/services/blocking/BrandService.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,9 +70,9 @@ interface BrandService {
7070
retrieve(BrandRetrieveParams.none(), requestOptions)
7171

7272
/**
73-
* Beta feature: Use AI to extract product information from a brand's website. The AI will
74-
* analyze the website and return a list of products with details such as name, description,
75-
* pricing, features, and more.
73+
* Beta feature: Extract product information from a brand's website. Brand.dev will analyze the
74+
* website and return a list of products with details such as name, description, image, pricing,
75+
* features, and more.
7676
*/
7777
fun aiProducts(params: BrandAiProductsParams): BrandAiProductsResponse =
7878
aiProducts(params, RequestOptions.none())

0 commit comments

Comments
 (0)