@ptkl/sdk - v1.7.1
    Preparing search index...

    Type Alias Settings

    type Settings = {
        appearance?: {
            create_entrypoint?: string;
            edit_entrypoint?: string;
            list_entrypoint?: string;
        };
        config?: Record<string, any>
        | null;
        extensions?: Extension[] | null;
        fields?: SettingsField[];
        functions?: Function[] | null;
        list?: {
            fields:
                | {
                    component_template?: string;
                    filterable?: boolean;
                    filterByFormatted?: boolean;
                    formatter?: string;
                    formatterEditor?: string;
                    key: string;
                    label: Record<string, any>;
                    name?: string;
                    provided_template_component?: string;
                    sortable?: boolean;
                    sortByFormatted?: boolean;
                    sortDirection?: string;
                    sortOrder?: number;
                    variant?: string;
                }[]
                | null;
            perPage?: number;
            quick_actions?: boolean;
        };
        model?: {
            events?: Record<string, any>[]
            | null;
            unique_indexes_combinations?: string[][] | null;
        };
        policies?: Policy[]
        | null;
        presets?: Preset[] | null;
        templates?: Record<string, any>[] | null;
        templates_dist?: TemplatesDist | null;
        version?: string;
    }
    Index

    Properties

    appearance?: {
        create_entrypoint?: string;
        edit_entrypoint?: string;
        list_entrypoint?: string;
    }
    config?: Record<string, any> | null
    extensions?: Extension[] | null
    fields?: SettingsField[]
    functions?: Function[] | null
    list?: {
        fields:
            | {
                component_template?: string;
                filterable?: boolean;
                filterByFormatted?: boolean;
                formatter?: string;
                formatterEditor?: string;
                key: string;
                label: Record<string, any>;
                name?: string;
                provided_template_component?: string;
                sortable?: boolean;
                sortByFormatted?: boolean;
                sortDirection?: string;
                sortOrder?: number;
                variant?: string;
            }[]
            | null;
        perPage?: number;
        quick_actions?: boolean;
    }
    model?: {
        events?: Record<string, any>[] | null;
        unique_indexes_combinations?: string[][] | null;
    }
    policies?: Policy[] | null
    presets?: Preset[] | null
    templates?: Record<string, any>[] | null
    templates_dist?: TemplatesDist | null
    version?: string