@intelligentgraphics/openconfiguration.host
    Preparing search index...

    Type Alias ConfiguratorStartConfiguration

    ConfiguratorStartConfiguration:
        | { pin: string; type: "planning" }
        | {
            articleNumber: string | ArticleNumber;
            configuration?: Record<string, string | number>;
            sourceId?: string;
            type: "article";
        }
        | { type: "none" }
        | { data: {}; type: "custom" }

    Type Declaration

    • { pin: string; type: "planning" }
    • {
          articleNumber: string | ArticleNumber;
          configuration?: Record<string, string | number>;
          sourceId?: string;
          type: "article";
      }
      • articleNumber: string | ArticleNumber
      • Optionalconfiguration?: Record<string, string | number>
      • OptionalsourceId?: string

        The id of the registered catalog of the article.

        When left empty, the first item of any catalog that matches the article number will be used.

      • type: "article"
    • { type: "none" }
    • { data: {}; type: "custom" }