- Added generated API hooks and models for public shop configuration, including listing and retrieving configurations. - Introduced models for commerce categories, discount codes, orders, product images, and products with pagination and search parameters. - Ensured all generated files are structured for easy integration with React Query.
25 lines
564 B
TypeScript
25 lines
564 B
TypeScript
/**
|
|
* Generated by orval v7.17.0 🍺
|
|
* Do not edit manually.
|
|
* OpenAPI spec version: 0.0.0
|
|
*/
|
|
|
|
export interface VideoInfoResponse {
|
|
/** Video title */
|
|
title: string;
|
|
/**
|
|
* Video duration in seconds (null if unavailable)
|
|
* @nullable
|
|
*/
|
|
duration: number | null;
|
|
/**
|
|
* URL to video thumbnail image
|
|
* @nullable
|
|
*/
|
|
thumbnail: string | null;
|
|
/** List of available video quality options (e.g., '1080p', '720p', '480p') */
|
|
video_resolutions: string[];
|
|
/** List of available audio format options */
|
|
audio_resolutions: string[];
|
|
}
|