From 3539d72ddf39b52d527ccbcb23d9b913e6ddd79a Mon Sep 17 00:00:00 2001 From: heygen-rui-bot Date: Tue, 8 Sep 2026 03:06:08 +0300 Subject: [PATCH] codegen: resync cloud client from EF 65ee22fc --- packages/cli/src/cloud/_gen/types.ts | 43 ++++++++++++++++++++++------ 1 file changed, 34 insertions(+), 9 deletions(-) diff --git a/packages/cli/src/cloud/_gen/types.ts b/packages/cli/src/cloud/_gen/types.ts index c73b6d1cdc..999e31001d 100644 --- a/packages/cli/src/cloud/_gen/types.ts +++ b/packages/cli/src/cloud/_gen/types.ts @@ -140,7 +140,9 @@ export interface CreateAssetUploadResponse { */ expires_in_seconds: number; /** - * Maximum allowed upload size in bytes. + * Maximum allowed upload size in bytes for this content type: 1.5 GB + * (1,500,000,000 bytes) per audio file and 200 MiB (209,715,200 bytes) for + * other supported files. */ max_bytes: number; /** @@ -228,11 +230,8 @@ export interface DeleteHyperframesRenderResponse { } /** - * Output aspect ratio. Only the three ratios already supported end-to-end by - * the render pipeline are exposed today: ``16:9`` (landscape), ``9:16`` - * (portrait), ``1:1`` (square). ``auto`` and other social-media ratios (4:5, - * 5:4) are reserved for a follow-up PR that wires composition-dim inference at - * the controller boundary. + * Output aspect ratio. Supported ratios are ``16:9`` (landscape), ``9:16`` + * (portrait), and ``1:1`` (square). */ export type HyperframesAspectRatio = "16:9" | "9:16" | "1:1"; @@ -314,9 +313,7 @@ export interface HyperframesRenderDetail { export type HyperframesRenderStatus = "queued" | "rendering" | "completed" | "failed"; /** - * Output resolution tier. Pricing diverges only at 4K (1.5x multiplier). The - * render-pipeline value set is intentionally narrow at launch; 720p and other - * tiers will follow once the producer/CLI surface catches up. + * Output resolution tier. 4K output uses a 1.5x pricing multiplier. */ export type HyperframesResolution = "1080p" | "4k"; @@ -337,6 +334,34 @@ export interface StandardAPIError { * Link to error documentation */ doc_url?: string | null; + /** + * Per-item error details for batch/multi-node failures (e.g. graph compilation + * errors by node). + */ + errors?: Array; +} + +export interface StandardAPIErrorDetail { + /** + * Machine-readable error code + */ + code: string; + /** + * Human-readable error message + */ + message: string; + /** + * Graph node id this error pertains to, if applicable + */ + node_id?: string; + /** + * Port name on the node this error pertains to, if applicable + */ + port?: string; + /** + * Field path within the item this error pertains to, if applicable + */ + path?: string; } /**