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": { "homepageUrl": {
"type": "string", "type": "string",
"format": "uri", "format": "uri",
"description": "Optional URL to the product's website." "description": "Optional URL to the product's homepage."
}, },
"origin": { "origin": {
"anyOf": [ "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>
<ResponseField name='homepageUrl' type='string'> <ResponseField name='homepageUrl' type='string'>
Optional URL to the product's website. Optional URL to the product's homepage.
</ResponseField> </ResponseField>
<ResponseField name='origin' type='object' required> <ResponseField name='origin' type='object' required>

Wyświetl plik

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

Wyświetl plik

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