@sdeverywhere/check-core 0.1.2 → 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +551 -141
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +200 -22
- package/dist/index.d.ts +200 -22
- package/dist/index.js +550 -141
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/schema/comparison.schema.json +186 -13
package/dist/index.d.cts
CHANGED
|
@@ -499,6 +499,21 @@ declare function checkSummaryFromReport(checkReport: CheckReport): CheckSummary;
|
|
|
499
499
|
*/
|
|
500
500
|
declare function checkReportFromSummary(checkConfig: CheckConfig, checkSummary: CheckSummary): CheckReport | undefined;
|
|
501
501
|
|
|
502
|
+
type ComparisonDatasetName = string;
|
|
503
|
+
type ComparisonDatasetSource = string;
|
|
504
|
+
/**
|
|
505
|
+
* Specifies a dataset (variable) used for comparison.
|
|
506
|
+
*/
|
|
507
|
+
interface ComparisonDatasetSpec {
|
|
508
|
+
kind: 'dataset';
|
|
509
|
+
/** The name of the dataset (variable). */
|
|
510
|
+
name: ComparisonDatasetName;
|
|
511
|
+
/**
|
|
512
|
+
* The source of the dataset, if it is from an external data file. If
|
|
513
|
+
* undefined, the dataset is assumed to be a model output.
|
|
514
|
+
*/
|
|
515
|
+
source?: ComparisonDatasetSource;
|
|
516
|
+
}
|
|
502
517
|
type ComparisonScenarioId = string;
|
|
503
518
|
type ComparisonScenarioTitle = string;
|
|
504
519
|
type ComparisonScenarioSubtitle = string;
|
|
@@ -620,42 +635,99 @@ interface ComparisonScenarioGroupRefSpec {
|
|
|
620
635
|
/** The ID of the scenario group that is referenced. */
|
|
621
636
|
groupId: ComparisonScenarioGroupId;
|
|
622
637
|
}
|
|
623
|
-
type
|
|
624
|
-
type ComparisonViewSubtitle = string;
|
|
625
|
-
type ComparisonViewGraphId = string;
|
|
638
|
+
type ComparisonGraphId = string;
|
|
626
639
|
/**
|
|
627
640
|
* Specifies a list of graphs to be shown in a view.
|
|
628
641
|
*/
|
|
629
|
-
interface
|
|
642
|
+
interface ComparisonGraphsArraySpec {
|
|
630
643
|
kind: 'graphs-array';
|
|
631
644
|
/** The array of IDs for graphs to show. */
|
|
632
|
-
graphIds:
|
|
645
|
+
graphIds: ComparisonGraphId[];
|
|
633
646
|
}
|
|
634
647
|
/**
|
|
635
648
|
* Specifies a preset list of graphs to be shown in a view.
|
|
636
649
|
*/
|
|
637
|
-
interface
|
|
650
|
+
interface ComparisonGraphsPresetSpec {
|
|
638
651
|
kind: 'graphs-preset';
|
|
639
652
|
/** The preset (currently only "all" is supported, which shows all available graphs). */
|
|
640
653
|
preset: 'all';
|
|
641
654
|
}
|
|
655
|
+
type ComparisonGraphGroupId = string;
|
|
656
|
+
/**
|
|
657
|
+
* A definition of a group of graphs to be shown in a view. Multiple graphs can be grouped together
|
|
658
|
+
* under a single ID, and can later be referenced by group ID in a view definition.
|
|
659
|
+
*/
|
|
660
|
+
interface ComparisonGraphGroupSpec {
|
|
661
|
+
kind: 'graph-group';
|
|
662
|
+
/** The unique identifier for the group. */
|
|
663
|
+
id: ComparisonGraphGroupId;
|
|
664
|
+
/** The graphs that are included in this group. */
|
|
665
|
+
graphIds: ComparisonGraphId[];
|
|
666
|
+
}
|
|
667
|
+
/** A reference to a graph group definition. */
|
|
668
|
+
interface ComparisonGraphGroupRefSpec {
|
|
669
|
+
kind: 'graph-group-ref';
|
|
670
|
+
/** The ID of the graph group that is referenced. */
|
|
671
|
+
groupId: ComparisonGraphGroupId;
|
|
672
|
+
}
|
|
673
|
+
type ComparisonViewTitle = string;
|
|
674
|
+
type ComparisonViewSubtitle = string;
|
|
675
|
+
type ComparisonViewRowTitle = string;
|
|
676
|
+
type ComparisonViewRowSubtitle = string;
|
|
677
|
+
type ComparisonViewItemTitle = string;
|
|
678
|
+
type ComparisonViewItemSubtitle = string;
|
|
679
|
+
type ComparisonViewGraphOrder = 'default' | 'grouped-by-diffs';
|
|
680
|
+
/**
|
|
681
|
+
* Specifies a single comparison box to be shown in a view.
|
|
682
|
+
*/
|
|
683
|
+
interface ComparisonViewBoxSpec {
|
|
684
|
+
kind: 'view-box';
|
|
685
|
+
/** The title of the box. */
|
|
686
|
+
title: ComparisonViewItemTitle;
|
|
687
|
+
/** The subtitle of the box. */
|
|
688
|
+
subtitle?: ComparisonViewItemSubtitle;
|
|
689
|
+
/** The dataset shown in this comparison box. */
|
|
690
|
+
dataset: ComparisonDatasetSpec;
|
|
691
|
+
/** The scenario shown in this comparison box. */
|
|
692
|
+
scenarioId: ComparisonScenarioId;
|
|
693
|
+
}
|
|
694
|
+
/**
|
|
695
|
+
* Specifies a row of comparison boxes to be shown in a view.
|
|
696
|
+
*/
|
|
697
|
+
interface ComparisonViewRowSpec {
|
|
698
|
+
kind: 'view-row';
|
|
699
|
+
/** The title of the row. */
|
|
700
|
+
title: ComparisonViewRowTitle;
|
|
701
|
+
/** The subtitle of the row. */
|
|
702
|
+
subtitle?: ComparisonViewRowSubtitle;
|
|
703
|
+
/** The array of boxes to be shown in the row. */
|
|
704
|
+
boxes: ComparisonViewBoxSpec[];
|
|
705
|
+
}
|
|
642
706
|
/**
|
|
643
707
|
* Specifies a set of graphs to be shown in a view.
|
|
644
708
|
*/
|
|
645
|
-
type ComparisonViewGraphsSpec =
|
|
709
|
+
type ComparisonViewGraphsSpec = ComparisonGraphsPresetSpec | ComparisonGraphsArraySpec | ComparisonGraphGroupRefSpec;
|
|
646
710
|
/**
|
|
647
|
-
* A definition of a view. A view presents a set of graphs for a single input scenario
|
|
711
|
+
* A definition of a view. A view presents a set of graphs, either for a single input scenario
|
|
712
|
+
* or for a mix of different dataset/scenario combinations.
|
|
648
713
|
*/
|
|
649
714
|
interface ComparisonViewSpec {
|
|
650
715
|
kind: 'view';
|
|
651
716
|
/** The title of the view. If undefined, the title will be inferred from the scenario. */
|
|
652
717
|
title?: ComparisonViewTitle;
|
|
653
718
|
/** The subtitle of the view. If undefined, the subtitle will be inferred from the scenario. */
|
|
654
|
-
subtitle?:
|
|
655
|
-
/** The scenario to be shown in the view. */
|
|
656
|
-
scenarioId
|
|
657
|
-
/** The
|
|
658
|
-
|
|
719
|
+
subtitle?: ComparisonViewSubtitle;
|
|
720
|
+
/** The scenario to be shown in the view if this is a single-scenario view. */
|
|
721
|
+
scenarioId?: ComparisonScenarioId;
|
|
722
|
+
/** The array of rows to be shown in the view if this is a freeform view. */
|
|
723
|
+
rows?: ComparisonViewRowSpec[];
|
|
724
|
+
/** The graphs to be shown in the view. */
|
|
725
|
+
graphs?: ComparisonViewGraphsSpec;
|
|
726
|
+
/**
|
|
727
|
+
* The order in which the graphs will be displayed. If undefined, the graphs will be
|
|
728
|
+
* displayed in the "default" order, i.e., in the same order that the IDs were specified.
|
|
729
|
+
*/
|
|
730
|
+
graphOrder?: ComparisonViewGraphOrder;
|
|
659
731
|
}
|
|
660
732
|
type ComparisonViewGroupTitle = string;
|
|
661
733
|
/**
|
|
@@ -680,6 +752,11 @@ interface ComparisonViewGroupWithScenariosSpec {
|
|
|
680
752
|
scenarios: (ComparisonScenarioRefSpec | ComparisonScenarioGroupRefSpec)[];
|
|
681
753
|
/** The graphs to be shown for each scenario view. */
|
|
682
754
|
graphs: ComparisonViewGraphsSpec;
|
|
755
|
+
/**
|
|
756
|
+
* The order in which the graphs will be displayed. If undefined, the graphs will be
|
|
757
|
+
* displayed in the "default" order, i.e., in the same order that the IDs were specified.
|
|
758
|
+
*/
|
|
759
|
+
graphOrder?: ComparisonViewGraphOrder;
|
|
683
760
|
}
|
|
684
761
|
/**
|
|
685
762
|
* A definition of a group of views. Multiple related views can be grouped together under a single title
|
|
@@ -692,11 +769,13 @@ type ComparisonViewGroupSpec = ComparisonViewGroupWithViewsSpec | ComparisonView
|
|
|
692
769
|
*/
|
|
693
770
|
interface ComparisonSpecs {
|
|
694
771
|
/** The requested scenarios. */
|
|
695
|
-
scenarios
|
|
772
|
+
scenarios?: ComparisonScenarioSpec[];
|
|
696
773
|
/** The requested scenario groups. */
|
|
697
|
-
scenarioGroups
|
|
774
|
+
scenarioGroups?: ComparisonScenarioGroupSpec[];
|
|
775
|
+
/** The requested graph groups. */
|
|
776
|
+
graphGroups?: ComparisonGraphGroupSpec[];
|
|
698
777
|
/** The requested view groups. */
|
|
699
|
-
viewGroups
|
|
778
|
+
viewGroups?: ComparisonViewGroupSpec[];
|
|
700
779
|
}
|
|
701
780
|
/** A source of comparison scenario and specifications. */
|
|
702
781
|
interface ComparisonSpecsSource {
|
|
@@ -803,7 +882,7 @@ interface ComparisonScenarioGroup {
|
|
|
803
882
|
/** The title of the group. */
|
|
804
883
|
title: ComparisonScenarioGroupTitle;
|
|
805
884
|
/**
|
|
806
|
-
* The scenarios that are included in this group. This includes
|
|
885
|
+
* The scenarios that are included in this group. This includes scenarios that were successfully
|
|
807
886
|
* resolved as well as scenario references that could not be resolved.
|
|
808
887
|
*/
|
|
809
888
|
scenarios: (ComparisonScenario | ComparisonUnresolvedScenarioRef)[];
|
|
@@ -814,17 +893,58 @@ interface ComparisonUnresolvedScenarioGroupRef {
|
|
|
814
893
|
/** The ID of the referenced scenario group that could not be resolved. */
|
|
815
894
|
scenarioGroupId: ComparisonScenarioGroupId;
|
|
816
895
|
}
|
|
817
|
-
/** A resolved
|
|
896
|
+
/** A resolved group of graphs. */
|
|
897
|
+
interface ComparisonGraphGroup {
|
|
898
|
+
kind: 'graph-group';
|
|
899
|
+
/** The unique identifier for the group. */
|
|
900
|
+
id: ComparisonScenarioGroupId;
|
|
901
|
+
/** The graphs that are included in this group. */
|
|
902
|
+
graphIds: ComparisonGraphId[];
|
|
903
|
+
}
|
|
904
|
+
/**
|
|
905
|
+
* A resolved comparison box to be shown in a view.
|
|
906
|
+
*/
|
|
907
|
+
interface ComparisonViewBox {
|
|
908
|
+
kind: 'view-box';
|
|
909
|
+
/** The title of the box. */
|
|
910
|
+
title: ComparisonViewItemTitle;
|
|
911
|
+
/** The subtitle of the box. */
|
|
912
|
+
subtitle?: ComparisonViewItemSubtitle;
|
|
913
|
+
/** The resolved dataset shown in this comparison box. */
|
|
914
|
+
dataset: ComparisonDataset;
|
|
915
|
+
/** The resolved scenario shown in this comparison box. */
|
|
916
|
+
scenario: ComparisonScenario;
|
|
917
|
+
}
|
|
918
|
+
/**
|
|
919
|
+
* A resolved row of comparison boxes to be shown in a view.
|
|
920
|
+
*/
|
|
921
|
+
interface ComparisonViewRow {
|
|
922
|
+
kind: 'view-row';
|
|
923
|
+
/** The title of the row. */
|
|
924
|
+
title: ComparisonViewRowTitle;
|
|
925
|
+
/** The subtitle of the row. */
|
|
926
|
+
subtitle?: ComparisonViewRowSubtitle;
|
|
927
|
+
/** The array of resolved boxes to be shown in the row. */
|
|
928
|
+
boxes: ComparisonViewBox[];
|
|
929
|
+
}
|
|
930
|
+
/**
|
|
931
|
+
* A resolved view definition. A view presents a set of graphs, either for a single input scenario
|
|
932
|
+
* or for a mix of different dataset/scenario combinations.
|
|
933
|
+
*/
|
|
818
934
|
interface ComparisonView {
|
|
819
935
|
kind: 'view';
|
|
820
936
|
/** The title of the view. */
|
|
821
937
|
title: ComparisonViewTitle;
|
|
822
938
|
/** The subtitle of the view. */
|
|
823
939
|
subtitle?: ComparisonViewSubtitle;
|
|
824
|
-
/** The resolved scenario to be shown in the view. */
|
|
825
|
-
scenario
|
|
940
|
+
/** The resolved scenario to be shown in the view if this is a single-scenario view. */
|
|
941
|
+
scenario?: ComparisonScenario;
|
|
942
|
+
/** The array of resolved rows to be shown in the view if this is a freeform view. */
|
|
943
|
+
rows?: ComparisonViewRow[];
|
|
826
944
|
/** The graphs to be shown for each scenario view. */
|
|
827
|
-
|
|
945
|
+
graphIds: ComparisonGraphId[];
|
|
946
|
+
/** The order in which the graphs will be displayed. */
|
|
947
|
+
graphOrder: ComparisonViewGraphOrder;
|
|
828
948
|
}
|
|
829
949
|
/** An unresolved view. */
|
|
830
950
|
interface ComparisonUnresolvedView {
|
|
@@ -833,6 +953,10 @@ interface ComparisonUnresolvedView {
|
|
|
833
953
|
title?: ComparisonViewTitle;
|
|
834
954
|
/** The requested subtitle of the view, if provided. */
|
|
835
955
|
subtitle?: ComparisonViewSubtitle;
|
|
956
|
+
/** The name of the referenced dataset that could not be resolved. */
|
|
957
|
+
datasetName?: ComparisonDatasetName;
|
|
958
|
+
/** The source of the referenced dataset that could not be resolved. */
|
|
959
|
+
datasetSource?: ComparisonDatasetSource;
|
|
836
960
|
/** The ID of the referenced scenario that could not be resolved. */
|
|
837
961
|
scenarioId?: ComparisonScenarioId;
|
|
838
962
|
/** The ID of the referenced scenario group that could not be resolved. */
|
|
@@ -868,6 +992,21 @@ interface ComparisonDatasets {
|
|
|
868
992
|
* @param scenario The scenario definition.
|
|
869
993
|
*/
|
|
870
994
|
getDatasetKeysForScenario(scenario: ComparisonScenario): DatasetKey[];
|
|
995
|
+
/**
|
|
996
|
+
* Return the reference plots that should be shown in the comparison graph for the
|
|
997
|
+
* given dataset and scenario.
|
|
998
|
+
*
|
|
999
|
+
* @param datasetKey The key for the dataset.
|
|
1000
|
+
* @param scenario The scenario for which the dataset will be displayed.
|
|
1001
|
+
*/
|
|
1002
|
+
getReferencePlotsForDataset(datasetKey: DatasetKey, scenario: ComparisonScenario): ComparisonPlot[];
|
|
1003
|
+
/**
|
|
1004
|
+
* Return the context graph IDs that should be shown for the given dataset and scenario.
|
|
1005
|
+
*
|
|
1006
|
+
* @param datasetKey The key for the dataset.
|
|
1007
|
+
* @param scenario The scenario for which the dataset will be displayed.
|
|
1008
|
+
*/
|
|
1009
|
+
getContextGraphIdsForDataset(datasetKey: DatasetKey, scenario: ComparisonScenario): BundleGraphId[];
|
|
871
1010
|
}
|
|
872
1011
|
|
|
873
1012
|
interface ComparisonScenarios {
|
|
@@ -883,6 +1022,19 @@ interface ComparisonScenarios {
|
|
|
883
1022
|
getScenario(key: ComparisonScenarioKey): ComparisonScenario | undefined;
|
|
884
1023
|
}
|
|
885
1024
|
|
|
1025
|
+
/**
|
|
1026
|
+
* Describes an extra plot to be shown in a comparison graph.
|
|
1027
|
+
*/
|
|
1028
|
+
interface ComparisonPlot {
|
|
1029
|
+
/** The dataset key for the plot. */
|
|
1030
|
+
datasetKey: DatasetKey;
|
|
1031
|
+
/** The plot color. */
|
|
1032
|
+
color: string;
|
|
1033
|
+
/** The plot style. If undefined, defaults to 'normal'. */
|
|
1034
|
+
style?: 'normal' | 'dashed';
|
|
1035
|
+
/** The plot line width, in px units. If undefined, a default width will be used. */
|
|
1036
|
+
lineWidth?: number;
|
|
1037
|
+
}
|
|
886
1038
|
interface ComparisonDatasetOptions {
|
|
887
1039
|
/**
|
|
888
1040
|
* The mapping of renamed dataset keys (old or "left" name as the map key,
|
|
@@ -896,6 +1048,21 @@ interface ComparisonDatasetOptions {
|
|
|
896
1048
|
* datasets (for example, to omit datasets that are not relevant).
|
|
897
1049
|
*/
|
|
898
1050
|
datasetKeysForScenario?: (allDatasetKeys: DatasetKey[], scenario: ComparisonScenario) => DatasetKey[];
|
|
1051
|
+
/**
|
|
1052
|
+
* An optional function that allows for including additional reference plots
|
|
1053
|
+
* on a comparison graph for a given dataset and scenario. By default, no
|
|
1054
|
+
* additional reference plots are included, but if a custom function is
|
|
1055
|
+
* provided, it can return an array of `ComparisonPlot` objects.
|
|
1056
|
+
*/
|
|
1057
|
+
referencePlotsForDataset?: (dataset: ComparisonDataset, scenario: ComparisonScenario) => ComparisonPlot[];
|
|
1058
|
+
/**
|
|
1059
|
+
* An optional function that allows for customizing the set of context graphs
|
|
1060
|
+
* that are shown for a given dataset and scenario. By default, all graphs in
|
|
1061
|
+
* which the dataset appears will be shown, but if a custom function is provided,
|
|
1062
|
+
* it can return a different set of graphs (for example, to omit graphs that are
|
|
1063
|
+
* not relevant under the given scenario).
|
|
1064
|
+
*/
|
|
1065
|
+
contextGraphIdsForDataset?: (dataset: ComparisonDataset, scenario: ComparisonScenario) => BundleGraphId[];
|
|
899
1066
|
}
|
|
900
1067
|
interface ComparisonOptions {
|
|
901
1068
|
/** The left-side ("baseline") bundle being compared. */
|
|
@@ -1148,12 +1315,23 @@ interface ComparisonGroupSummariesByCategory {
|
|
|
1148
1315
|
* Rolls up all by-scenario and by-dataset groupings.
|
|
1149
1316
|
*/
|
|
1150
1317
|
interface ComparisonCategorizedResults {
|
|
1318
|
+
/** All summaries for the comparison tests that were performed. */
|
|
1319
|
+
allTestSummaries: ComparisonTestSummary[];
|
|
1151
1320
|
/** The full set of by-scenario groupings. */
|
|
1152
1321
|
byScenario: ComparisonGroupSummariesByCategory;
|
|
1153
1322
|
/** The full set of by-dataset groupings. */
|
|
1154
1323
|
byDataset: ComparisonGroupSummariesByCategory;
|
|
1155
1324
|
}
|
|
1156
1325
|
|
|
1326
|
+
/**
|
|
1327
|
+
* Compute the overall scores for the given group of comparison test summaries.
|
|
1328
|
+
*
|
|
1329
|
+
* @param testSummaries The comparison test summaries to consider.
|
|
1330
|
+
* @param thresholds The array of thresholds that determine the buckets into which
|
|
1331
|
+
* the scores will be summarized.
|
|
1332
|
+
*/
|
|
1333
|
+
declare function getScoresForTestSummaries(testSummaries: ComparisonTestSummary[], thresholds: number[]): ComparisonGroupScores;
|
|
1334
|
+
|
|
1157
1335
|
/**
|
|
1158
1336
|
* Given a set of terse test summaries (which only includes summaries for tests with non-zero `maxDiff`
|
|
1159
1337
|
* scores), restore the full set of summaries and then categorize them.
|
|
@@ -1269,4 +1447,4 @@ declare function runSuite(config: Config, callbacks: RunSuiteCallbacks, options?
|
|
|
1269
1447
|
*/
|
|
1270
1448
|
declare function suiteSummaryFromReport(suiteReport: SuiteReport): SuiteSummary;
|
|
1271
1449
|
|
|
1272
|
-
export { AllInputsSpec, Bundle, BundleGraphData, BundleGraphDatasetSpec, BundleGraphId, BundleGraphSpec, BundleGraphView, BundleModel, CheckDataCoordinator, CheckDataRequestKey, CheckDatasetReport, CheckGroupReport, CheckKey, CheckPredicateOp, CheckPredicateOpConstantRef, CheckPredicateOpDataRef, CheckPredicateOpRef, CheckPredicateReport, CheckPredicateSummary, CheckPredicateTimeOptions, CheckPredicateTimeRange, CheckPredicateTimeSingle, CheckPredicateTimeSpec, CheckReport, CheckResult, CheckResultErrorInfo, CheckScenario, CheckScenarioError, CheckScenarioInputDesc, CheckScenarioReport, CheckStatus, CheckSummary, CheckTestReport, ComparisonCategorizedResults, ComparisonConfig, ComparisonDataCoordinator, ComparisonDataRequestKey, ComparisonDataset, ComparisonDatasetOptions, ComparisonDatasets, ComparisonGroup, ComparisonGroupKey, ComparisonGroupKind, ComparisonGroupRoot, ComparisonGroupScores, ComparisonGroupSummariesByCategory, ComparisonGroupSummary, ComparisonOptions, ComparisonReport, ComparisonResolverError, ComparisonResolverInvalidValueError, ComparisonResolverUnknownInputError, ComparisonScenario, ComparisonScenarioAllInputsSettings, ComparisonScenarioGroup, ComparisonScenarioGroupId, ComparisonScenarioGroupRefSpec, ComparisonScenarioGroupSpec, ComparisonScenarioGroupTitle, ComparisonScenarioId, ComparisonScenarioInput, ComparisonScenarioInputAtPositionSpec, ComparisonScenarioInputAtValueSpec, ComparisonScenarioInputName, ComparisonScenarioInputPosition, ComparisonScenarioInputSettings, ComparisonScenarioInputSpec, ComparisonScenarioInputState, ComparisonScenarioKey, ComparisonScenarioPresetMatrixSpec, ComparisonScenarioRefSpec, ComparisonScenarioSettings, ComparisonScenarioSpec, ComparisonScenarioSubtitle, ComparisonScenarioTitle, ComparisonScenarioWithAllInputsSpec, ComparisonScenarioWithDistinctInputsSpec, ComparisonScenarioWithInputsSpec, ComparisonScenarios, ComparisonSpecs, ComparisonSpecsSource, ComparisonSummary, ComparisonTestReport, ComparisonTestSummary, ComparisonUnresolvedScenarioGroupRef, ComparisonUnresolvedScenarioRef, ComparisonUnresolvedView, ComparisonView,
|
|
1450
|
+
export { type AllInputsSpec, type Bundle, type BundleGraphData, type BundleGraphDatasetSpec, type BundleGraphId, type BundleGraphSpec, type BundleGraphView, type BundleModel, CheckDataCoordinator, type CheckDataRequestKey, type CheckDatasetReport, type CheckGroupReport, type CheckKey, type CheckPredicateOp, type CheckPredicateOpConstantRef, type CheckPredicateOpDataRef, type CheckPredicateOpRef, type CheckPredicateReport, type CheckPredicateSummary, type CheckPredicateTimeOptions, type CheckPredicateTimeRange, type CheckPredicateTimeSingle, type CheckPredicateTimeSpec, type CheckReport, type CheckResult, type CheckResultErrorInfo, type CheckScenario, type CheckScenarioError, type CheckScenarioInputDesc, type CheckScenarioReport, type CheckStatus, type CheckSummary, type CheckTestReport, type ComparisonCategorizedResults, type ComparisonConfig, ComparisonDataCoordinator, type ComparisonDataRequestKey, type ComparisonDataset, type ComparisonDatasetName, type ComparisonDatasetOptions, type ComparisonDatasetSource, type ComparisonDatasetSpec, type ComparisonDatasets, type ComparisonGraphGroup, type ComparisonGraphGroupId, type ComparisonGraphGroupRefSpec, type ComparisonGraphGroupSpec, type ComparisonGraphId, type ComparisonGraphsArraySpec, type ComparisonGraphsPresetSpec, type ComparisonGroup, type ComparisonGroupKey, type ComparisonGroupKind, type ComparisonGroupRoot, type ComparisonGroupScores, type ComparisonGroupSummariesByCategory, type ComparisonGroupSummary, type ComparisonOptions, type ComparisonPlot, type ComparisonReport, type ComparisonResolverError, type ComparisonResolverInvalidValueError, type ComparisonResolverUnknownInputError, type ComparisonScenario, type ComparisonScenarioAllInputsSettings, type ComparisonScenarioGroup, type ComparisonScenarioGroupId, type ComparisonScenarioGroupRefSpec, type ComparisonScenarioGroupSpec, type ComparisonScenarioGroupTitle, type ComparisonScenarioId, type ComparisonScenarioInput, type ComparisonScenarioInputAtPositionSpec, type ComparisonScenarioInputAtValueSpec, type ComparisonScenarioInputName, type ComparisonScenarioInputPosition, type ComparisonScenarioInputSettings, type ComparisonScenarioInputSpec, type ComparisonScenarioInputState, type ComparisonScenarioKey, type ComparisonScenarioPresetMatrixSpec, type ComparisonScenarioRefSpec, type ComparisonScenarioSettings, type ComparisonScenarioSpec, type ComparisonScenarioSubtitle, type ComparisonScenarioTitle, type ComparisonScenarioWithAllInputsSpec, type ComparisonScenarioWithDistinctInputsSpec, type ComparisonScenarioWithInputsSpec, type ComparisonScenarios, type ComparisonSpecs, type ComparisonSpecsSource, type ComparisonSummary, type ComparisonTestReport, type ComparisonTestSummary, type ComparisonUnresolvedScenarioGroupRef, type ComparisonUnresolvedScenarioRef, type ComparisonUnresolvedView, type ComparisonView, type ComparisonViewBox, type ComparisonViewBoxSpec, type ComparisonViewGraphOrder, type ComparisonViewGraphsSpec, type ComparisonViewGroup, type ComparisonViewGroupSpec, type ComparisonViewGroupTitle, type ComparisonViewGroupWithScenariosSpec, type ComparisonViewGroupWithViewsSpec, type ComparisonViewItemSubtitle, type ComparisonViewItemTitle, type ComparisonViewRow, type ComparisonViewRowSpec, type ComparisonViewRowSubtitle, type ComparisonViewRowTitle, type ComparisonViewSpec, type ComparisonViewSubtitle, type ComparisonViewTitle, type Config, type ConfigInitOptions, type ConfigOptions, type DataSource, type Dataset, type DatasetGroupName, type DatasetKey, type DatasetMap, type DatasetsResult, type DiffPoint, type DiffReport, type DiffValidity, type Dimension, type GraphComparisonDatasetReport, type GraphComparisonMetadataReport, type GraphComparisonReport, type GraphInclusion, type ImplVar, type InputAliasName, type InputGroupName, type InputId, type InputPosition, type InputSetting, type InputSettingsSpec, type InputVar, type LegendItem, type LinkItem, type LoadedBundle, type ModelSpec, type NamedBundle, type OutputVar, type PerfReport, PerfRunner, PerfStats, type PositionSetting, type RelatedItem, type RunSuiteCallbacks, type RunSuiteOptions, type ScenarioSpec, type ScenarioSpecUid, type SourceName, type Subscript, type SuiteReport, type SuiteSummary, type ValueSetting, type VarId, categorizeComparisonTestSummaries, checkReportFromSummary, checkSummaryFromReport, comparisonSummaryFromReport, createConfig, datasetMessage, diffDatasets, diffGraphs, getScoresForTestSummaries, predicateMessage, runSuite, scenarioMessage, suiteSummaryFromReport };
|