jamespot-user-api
    Preparing search index...

    Variable dropboxDocumentEntitySchemaConst

    dropboxDocumentEntitySchema: ZodObject<
        ZodShape<BaseEntity> & {
            mimetype: ZodOptional<ZodString>;
            size: ZodOptional<ZodNumber>;
            webUrl: ZodOptional<ZodString>;
        } & {
            _extend: ZodObject<
                { path: ZodString },
                "strip",
                ZodTypeAny,
                { path: string },
                { path: string },
            >;
        },
        "strip",
        ZodTypeAny,
        {
            _extend: { path: string };
            id: string;
            mimetype?: string;
            size?: number;
            title: string;
            type: string;
            webUrl?: string;
        },
        {
            _extend: { path: string };
            id: string;
            mimetype?: string;
            size?: number;
            title: string;
            type: string;
            webUrl?: string;
        },
    > = ...