@datapos/datapos-shared
    Preparing search index...

    Interface ContextModelGroupConfig

    interface ContextModelGroupConfig {
        description: {
            "en-au"?: string;
            "en-gb"?: string;
            "en-us"?: string;
            "es-es"?: string;
        };
        firstCreatedAt?: number;
        icon: string
        | null;
        iconDark: string | null;
        id: string;
        label: {
            "en-au"?: string;
            "en-gb"?: string;
            "en-us"?: string;
            "es-es"?: string;
        };
        lastUpdatedAt: number
        | null;
        modelRefs: ComponentReference[];
        order: number;
        status:
            | {
                color: "amber"
                | "green"
                | "red"
                | "other";
                id: string;
                label: string;
            }
            | null;
        statusId: | "alpha"
        | "beta"
        | "generalAvailability"
        | "notApplicable"
        | "preAlpha"
        | "proposed"
        | "releaseCandidate"
        | "unavailable"
        | "underReview";
        typeId: | "app"
        | "connector"
        | "connectorConnection"
        | "context"
        | "contextModelGroup"
        | "contextModel"
        | "contextModelDimensionGroup"
        | "contextModelDimension"
        | "contextModelDimensionHierarchy"
        | "contextModelEntityGroup"
        | "contextModelEntity"
        | "contextModelEntityDataItem"
        | "contextModelEntityEvent"
        | "contextModelEntityPrimaryMeasure"
        | "contextModelSecondaryMeasureGroup"
        | "contextModelSecondaryMeasure"
        | "dataView"
        | "dimension"
        | "engine"
        | "eventQuery"
        | "presenter"
        | "presenterPresentation"
        | "tool";
    }

    Hierarchy

    • ComponentConfig
      • ContextModelGroupConfig
    Index

    Properties

    description: {
        "en-au"?: string;
        "en-gb"?: string;
        "en-us"?: string;
        "es-es"?: string;
    } = partialLocalisedStringSchema
    firstCreatedAt?: number = ...
    icon: string | null = ...
    iconDark: string | null = ...
    id: string = ...
    label: {
        "en-au"?: string;
        "en-gb"?: string;
        "en-us"?: string;
        "es-es"?: string;
    } = partialLocalisedStringSchema
    lastUpdatedAt: number | null = ...
    modelRefs: ComponentReference[]
    order: number
    status:
        | {
            color: "amber"
            | "green"
            | "red"
            | "other";
            id: string;
            label: string;
        }
        | null = ...
    statusId:
        | "alpha"
        | "beta"
        | "generalAvailability"
        | "notApplicable"
        | "preAlpha"
        | "proposed"
        | "releaseCandidate"
        | "unavailable"
        | "underReview" = componentStatusIdSchema
    typeId:
        | "app"
        | "connector"
        | "connectorConnection"
        | "context"
        | "contextModelGroup"
        | "contextModel"
        | "contextModelDimensionGroup"
        | "contextModelDimension"
        | "contextModelDimensionHierarchy"
        | "contextModelEntityGroup"
        | "contextModelEntity"
        | "contextModelEntityDataItem"
        | "contextModelEntityEvent"
        | "contextModelEntityPrimaryMeasure"
        | "contextModelSecondaryMeasureGroup"
        | "contextModelSecondaryMeasure"
        | "dataView"
        | "dimension"
        | "engine"
        | "eventQuery"
        | "presenter"
        | "presenterPresentation"
        | "tool" = componentTypeIdSchema