@rendley/sdk - v1.12.6
    Preparing search index...

    Variable SubtitlesSchemaConst

    SubtitlesSchema: Zod.ZodObject<
        {
            duration: Zod.ZodNumber;
            id: Zod.ZodString;
            language: Zod.ZodString;
            textBlocks: Zod.ZodArray<
                Zod.ZodObject<
                    { duration: Zod.ZodNumber; text: Zod.ZodString; time: Zod.ZodNumber },
                    "strip",
                    Zod.ZodTypeAny,
                    { duration: number; text: string; time: number },
                    { duration: number; text: string; time: number },
                >,
                "many",
            >;
        },
        "strip",
        Zod.ZodTypeAny,
        {
            duration: number;
            id: string;
            language: string;
            textBlocks: { duration: number; text: string; time: number }[];
        },
        {
            duration: number;
            id: string;
            language: string;
            textBlocks: { duration: number; text: string; time: number }[];
        },
    > = ...