@jsfkit/types
    Preparing search index...

    Type Alias PivotCacheSharedItemsMeta

    Metadata describing the type composition and value range of a cache field's data. These are redundant when PivotCacheField.sharedItems contains items (the metadata can be derived), but for fields whose data is stored only in records (no shared items), they preserve min/max and type information that would otherwise be lost.

    type PivotCacheSharedItemsMeta = {
        containsBlank?: boolean;
        containsDate?: boolean;
        containsInteger?: boolean;
        containsMixedTypes?: boolean;
        containsNonDate?: boolean;
        containsNumber?: boolean;
        containsSemiMixedTypes?: boolean;
        containsString?: boolean;
        maxDate?: string;
        maxValue?: number;
        minDate?: string;
        minValue?: number;
    }
    Index

    Properties

    containsBlank?: boolean

    Whether the field contains blank (missing) values.

    false
    
    containsDate?: boolean

    Whether the field contains date values.

    false
    
    containsInteger?: boolean

    Whether the field contains only integer numeric values (no fractions).

    false
    
    containsMixedTypes?: boolean

    Whether the field contains more than one data type (excluding blank and string).

    false
    
    containsNonDate?: boolean

    Whether the field contains non-date values.

    true
    
    containsNumber?: boolean

    Whether the field contains numeric values.

    false
    
    containsSemiMixedTypes?: boolean

    Whether the field contains a mix of text and other types, or only text.

    true
    
    containsString?: boolean

    Whether the field contains string values.

    true
    
    maxDate?: string

    The maximum date value in the field (ISO 8601 datetime string).

    maxValue?: number

    The maximum numeric value in the field.

    minDate?: string

    The minimum date value in the field (ISO 8601 datetime string).

    minValue?: number

    The minimum numeric value in the field.