feat: update description for homepageUrl

pull/721/head
Travis Fischer 2025-07-03 06:26:16 -05:00
rodzic bc2c1e34fd
commit 1812754d46
4 zmienionych plików z 7 dodań i 7 usunięć

Wyświetl plik

@ -37,7 +37,7 @@
"homepageUrl": {
"type": "string",
"format": "uri",
"description": "Optional URL to the product's website."
"description": "Optional URL to the product's homepage."
},
"origin": {
"anyOf": [

Wyświetl plik

@ -65,7 +65,7 @@ A string which may be either: a URL to a remote image (eg, `https://example.com/
</ResponseField>
<ResponseField name='homepageUrl' type='string'>
Optional URL to the product's website.
Optional URL to the product's homepage.
</ResponseField>
<ResponseField name='origin' type='object' required>

Wyświetl plik

@ -146,14 +146,14 @@ export const agenticProjectConfigSchema = z
.optional(),
/**
* Optional URL to the product's website.
* Optional URL to the product's homepage.
*
* @example "https://my-product.com"
*/
homepageUrl: z
.string()
.url()
.describe("Optional URL to the product's website.")
.describe("Optional URL to the product's homepage.")
.optional(),
/**

Wyświetl plik

@ -803,7 +803,7 @@ export interface components {
sourceUrl?: string;
/**
* Format: uri
* @description Optional URL to the product's website.
* @description Optional URL to the product's homepage.
*/
homepageUrl?: string;
/** @description User id (e.g. "user_tz4a98xxat96iws9zmbrgj3a") */
@ -1079,7 +1079,7 @@ export interface components {
sourceUrl?: string;
/**
* Format: uri
* @description Optional URL to the product's website.
* @description Optional URL to the product's homepage.
*/
homepageUrl?: string;
/** @description User id (e.g. "user_tz4a98xxat96iws9zmbrgj3a") */
@ -2490,7 +2490,7 @@ export interface operations {
sourceUrl?: string;
/**
* Format: uri
* @description Optional URL to the product's website.
* @description Optional URL to the product's homepage.
*/
homepageUrl?: string;
origin: components["schemas"]["OriginAdapterConfig"];