pl-api
    Preparing search index...

    Variable previewCardSchemaConst

    previewCardSchema: ObjectSchema<
        {
            author_name: SchemaWithFallback<StringSchema<undefined>, "">;
            author_url: SchemaWithFallback<
                SchemaWithPipe<
                    readonly [StringSchema<undefined>, UrlAction<string, undefined>],
                >,
                "",
            >;
            authors: SchemaWithPipe<
                readonly [
                    SchemaWithFallback<ArraySchema<AnySchema, undefined>, readonly []>,
                    TransformAction<
                        any[],
                        { account: null
                        | Account; name: string; url: string }[],
                    >,
                ],
            >;
            blurhash: SchemaWithFallback<
                NullableSchema<StringSchema<undefined>, undefined>,
                null,
            >;
            description: SchemaWithFallback<StringSchema<undefined>, "">;
            embed_url: SchemaWithFallback<
                SchemaWithPipe<
                    readonly [StringSchema<undefined>, UrlAction<string, undefined>],
                >,
                "",
            >;
            height: SchemaWithFallback<NumberSchema<undefined>, 0>;
            html: SchemaWithFallback<StringSchema<undefined>, "">;
            image: SchemaWithFallback<
                NullableSchema<StringSchema<undefined>, undefined>,
                null,
            >;
            image_description: SchemaWithFallback<StringSchema<undefined>, "">;
            provider_name: SchemaWithFallback<StringSchema<undefined>, "">;
            provider_url: SchemaWithFallback<
                SchemaWithPipe<
                    readonly [StringSchema<undefined>, UrlAction<string, undefined>],
                >,
                "",
            >;
            title: SchemaWithFallback<StringSchema<undefined>, "">;
            type: SchemaWithFallback<
                PicklistSchema<["link", "photo", "video", "rich"], undefined>,
                "link",
            >;
            url: SchemaWithPipe<
                readonly [StringSchema<undefined>, UrlAction<string, undefined>],
            >;
            width: SchemaWithFallback<NumberSchema<undefined>, 0>;
        },
        undefined,
    > = ...