@sdeverywhere/check-core 0.1.1 → 0.1.2

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.d.ts CHANGED
@@ -1,12 +1,12 @@
1
- declare type SourceName = string;
2
- declare type VarId = string;
3
- declare type DatasetKey = string;
4
- declare type Dataset = Map<number, number>;
5
- declare type DatasetMap = Map<DatasetKey, Dataset>;
1
+ type SourceName = string;
2
+ type VarId = string;
3
+ type DatasetKey = string;
4
+ type Dataset = Map<number, number>;
5
+ type DatasetMap = Map<DatasetKey, Dataset>;
6
6
 
7
7
  /** A unique identifier for the scenario, derived from its input settings. */
8
- declare type ScenarioSpecUid = string;
9
- declare type InputPosition = 'at-default' | 'at-minimum' | 'at-maximum';
8
+ type ScenarioSpecUid = string;
9
+ type InputPosition = 'at-default' | 'at-minimum' | 'at-maximum';
10
10
  interface PositionSetting {
11
11
  kind: 'position';
12
12
  inputVarId: VarId;
@@ -17,7 +17,7 @@ interface ValueSetting {
17
17
  inputVarId: VarId;
18
18
  value: number;
19
19
  }
20
- declare type InputSetting = PositionSetting | ValueSetting;
20
+ type InputSetting = PositionSetting | ValueSetting;
21
21
  interface InputSettingsSpec {
22
22
  kind: 'input-settings';
23
23
  uid: ScenarioSpecUid;
@@ -28,7 +28,7 @@ interface AllInputsSpec {
28
28
  uid: ScenarioSpecUid;
29
29
  position: InputPosition;
30
30
  }
31
- declare type ScenarioSpec = InputSettingsSpec | AllInputsSpec;
31
+ type ScenarioSpec = InputSettingsSpec | AllInputsSpec;
32
32
 
33
33
  interface DatasetsResult {
34
34
  /**
@@ -56,7 +56,7 @@ interface RelatedItem {
56
56
  locationPath: string[];
57
57
  }
58
58
  /** A unique, stable input identifier. */
59
- declare type InputId = string;
59
+ type InputId = string;
60
60
  /**
61
61
  * Holds information about an input variable used in the model.
62
62
  */
@@ -145,6 +145,12 @@ interface ImplVar {
145
145
  varType: string;
146
146
  }
147
147
 
148
+ /** The human-readable name for a group of inputs. */
149
+ type InputGroupName = string;
150
+ /** The alias name for an input. */
151
+ type InputAliasName = string;
152
+ /** The human-readable name for a group of dataset. */
153
+ type DatasetGroupName = string;
148
154
  /**
149
155
  * Includes the properties needed to display a legend item in the UI.
150
156
  */
@@ -165,7 +171,8 @@ interface LinkItem {
165
171
  /** The link content (a URL or text). */
166
172
  content: string;
167
173
  }
168
- declare type BundleGraphId = string;
174
+ /** The identifier for a bundle-specific graph. */
175
+ type BundleGraphId = string;
169
176
  /**
170
177
  * Describes a dataset in a bundle-specific graph.
171
178
  */
@@ -225,11 +232,11 @@ interface ModelSpec {
225
232
  /** The map of all variables (both internal and exported) in this version of the model. */
226
233
  implVars: Map<DatasetKey, ImplVar>;
227
234
  /** The custom input variable aliases defined for this model. */
228
- inputAliases?: Map<string, VarId>;
235
+ inputAliases?: Map<InputAliasName, VarId>;
229
236
  /** The custom input variable groups defined for this model. */
230
- inputGroups?: Map<string, InputVar[]>;
237
+ inputGroups?: Map<InputGroupName, InputVar[]>;
231
238
  /** The custom dataset (output variable) groups defined for this model. */
232
- datasetGroups?: Map<string, DatasetKey[]>;
239
+ datasetGroups?: Map<DatasetGroupName, DatasetKey[]>;
233
240
  /** The start time (year) for the model. */
234
241
  startTime?: number;
235
242
  /** The end time (year) for the model. */
@@ -289,7 +296,7 @@ interface LoadedBundle {
289
296
  model: BundleModel;
290
297
  }
291
298
 
292
- declare type CheckDataRequestKey = string;
299
+ type CheckDataRequestKey = string;
293
300
  /**
294
301
  * Coordinates on-demand loading of data used to display a graph representation
295
302
  * of a check/predicate.
@@ -302,17 +309,17 @@ declare class CheckDataCoordinator {
302
309
  cancelRequest(key: CheckDataRequestKey): void;
303
310
  }
304
311
 
305
- declare type CheckPredicateOp = 'gt' | 'gte' | 'lt' | 'lte' | 'eq' | 'approx';
312
+ type CheckPredicateOp = 'gt' | 'gte' | 'lt' | 'lte' | 'eq' | 'approx';
306
313
 
307
- declare type CheckPredicateTimeSingle = number;
308
- declare type CheckPredicateTimeRange = [number, number];
314
+ type CheckPredicateTimeSingle = number;
315
+ type CheckPredicateTimeRange = [number, number];
309
316
  interface CheckPredicateTimeOptions {
310
317
  after_excl?: number;
311
318
  after_incl?: number;
312
319
  before_excl?: number;
313
320
  before_incl?: number;
314
321
  }
315
- declare type CheckPredicateTimeSpec = CheckPredicateTimeSingle | CheckPredicateTimeRange | CheckPredicateTimeOptions;
322
+ type CheckPredicateTimeSpec = CheckPredicateTimeSingle | CheckPredicateTimeRange | CheckPredicateTimeOptions;
316
323
 
317
324
  interface CheckResultErrorInfo {
318
325
  kind: 'unknown-dataset' | 'unknown-input' | 'unknown-input-group' | 'empty-input-group';
@@ -328,7 +335,7 @@ interface CheckResult {
328
335
  errorInfo?: CheckResultErrorInfo;
329
336
  }
330
337
 
331
- declare type CheckDatasetError = 'no-matches-for-dataset' | 'no-matches-for-group' | 'no-matches-for-type';
338
+ type CheckDatasetError = 'no-matches-for-dataset' | 'no-matches-for-group' | 'no-matches-for-type';
332
339
  interface CheckDataset {
333
340
  /** The key for the matched dataset; can be undefined if no dataset matched. */
334
341
  datasetKey?: DatasetKey;
@@ -367,7 +374,7 @@ interface CheckScenario {
367
374
  /**
368
375
  * The key type for data references (in the form `<ScenarioUid::DatasetKey>`).
369
376
  */
370
- declare type CheckDataRefKey = string;
377
+ type CheckDataRefKey = string;
371
378
  /**
372
379
  * The scenario and dataset referenced by a particular predicate (for cases
373
380
  * where the check is against another dataset rather than a constant value).
@@ -381,9 +388,9 @@ interface CheckDataRef {
381
388
  dataset: CheckDataset;
382
389
  }
383
390
 
384
- declare type CheckKey = number;
391
+ type CheckKey = number;
385
392
 
386
- declare type CheckStatus = 'passed' | 'failed' | 'error';
393
+ type CheckStatus = 'passed' | 'failed' | 'error';
387
394
  interface CheckPredicateOpConstantRef {
388
395
  kind: 'constant';
389
396
  value: number;
@@ -392,7 +399,7 @@ interface CheckPredicateOpDataRef {
392
399
  kind: 'data';
393
400
  dataRef: CheckDataRef;
394
401
  }
395
- declare type CheckPredicateOpRef = CheckPredicateOpConstantRef | CheckPredicateOpDataRef;
402
+ type CheckPredicateOpRef = CheckPredicateOpConstantRef | CheckPredicateOpDataRef;
396
403
  interface CheckPredicateReport {
397
404
  checkKey: CheckKey;
398
405
  result: CheckResult;
@@ -423,7 +430,7 @@ interface CheckGroupReport {
423
430
  interface CheckReport {
424
431
  groups: CheckGroupReport[];
425
432
  }
426
- declare type StyleFunc = (s: string) => string;
433
+ type StyleFunc = (s: string) => string;
427
434
  /**
428
435
  * Return a string representation of the given scenario.
429
436
  *
@@ -492,11 +499,11 @@ declare function checkSummaryFromReport(checkReport: CheckReport): CheckSummary;
492
499
  */
493
500
  declare function checkReportFromSummary(checkConfig: CheckConfig, checkSummary: CheckSummary): CheckReport | undefined;
494
501
 
495
- declare type ComparisonScenarioId = string;
496
- declare type ComparisonScenarioTitle = string;
497
- declare type ComparisonScenarioSubtitle = string;
498
- declare type ComparisonScenarioInputName = string;
499
- declare type ComparisonScenarioInputPosition = 'default' | 'min' | 'max';
502
+ type ComparisonScenarioId = string;
503
+ type ComparisonScenarioTitle = string;
504
+ type ComparisonScenarioSubtitle = string;
505
+ type ComparisonScenarioInputName = string;
506
+ type ComparisonScenarioInputPosition = 'default' | 'min' | 'max';
500
507
  /**
501
508
  * Specifies an input that is set to a specific position (default / min / max).
502
509
  */
@@ -521,7 +528,7 @@ interface ComparisonScenarioInputAtValueSpec {
521
528
  * A single input setting for a scenario. An input can be set to a specific number value,
522
529
  * or it can be set to a "position" (default / min / max).
523
530
  */
524
- declare type ComparisonScenarioInputSpec = ComparisonScenarioInputAtPositionSpec | ComparisonScenarioInputAtValueSpec;
531
+ type ComparisonScenarioInputSpec = ComparisonScenarioInputAtPositionSpec | ComparisonScenarioInputAtValueSpec;
525
532
  /**
526
533
  * Specifies a single scenario that sets one or more inputs to a value/position.
527
534
  */
@@ -536,6 +543,23 @@ interface ComparisonScenarioWithInputsSpec {
536
543
  /** The input settings for this scenario. */
537
544
  inputs: ComparisonScenarioInputSpec[];
538
545
  }
546
+ /**
547
+ * Specifies a single scenario that configures inputs differently for the two
548
+ * model instances.
549
+ */
550
+ interface ComparisonScenarioWithDistinctInputsSpec {
551
+ kind: 'scenario-with-distinct-inputs';
552
+ /** The unique identifier for the scenario. */
553
+ id?: ComparisonScenarioId;
554
+ /** The title of the scenario. */
555
+ title?: ComparisonScenarioTitle;
556
+ /** The subtitle of the scenario. */
557
+ subtitle?: ComparisonScenarioSubtitle;
558
+ /** The input settings for this scenario when run with the "left" model. */
559
+ inputsL: ComparisonScenarioInputSpec[];
560
+ /** The input settings for this scenario when run with the "right" model. */
561
+ inputsR: ComparisonScenarioInputSpec[];
562
+ }
539
563
  /**
540
564
  * Specifies a single scenario that sets all available inputs to position.
541
565
  */
@@ -564,7 +588,7 @@ interface ComparisonScenarioPresetMatrixSpec {
564
588
  * A definition of input scenario(s). A scenario can set one input to a value/position, or it
565
589
  * can set multiple inputs to particular values/positions.
566
590
  */
567
- declare type ComparisonScenarioSpec = ComparisonScenarioWithInputsSpec | ComparisonScenarioWithAllInputsSpec | ComparisonScenarioPresetMatrixSpec;
591
+ type ComparisonScenarioSpec = ComparisonScenarioWithInputsSpec | ComparisonScenarioWithDistinctInputsSpec | ComparisonScenarioWithAllInputsSpec | ComparisonScenarioPresetMatrixSpec;
568
592
  /** A reference to a scenario definition. */
569
593
  interface ComparisonScenarioRefSpec {
570
594
  kind: 'scenario-ref';
@@ -575,8 +599,8 @@ interface ComparisonScenarioRefSpec {
575
599
  /** The optional subtitle that is used instead of the referenced scenario's subtitle. */
576
600
  subtitle?: ComparisonScenarioSubtitle;
577
601
  }
578
- declare type ComparisonScenarioGroupId = string;
579
- declare type ComparisonScenarioGroupTitle = string;
602
+ type ComparisonScenarioGroupId = string;
603
+ type ComparisonScenarioGroupTitle = string;
580
604
  /**
581
605
  * A definition of a group of input scenarios. Multiple scenarios can be grouped together under a single name, and
582
606
  * can later be referenced by group ID in a view definition.
@@ -596,9 +620,9 @@ interface ComparisonScenarioGroupRefSpec {
596
620
  /** The ID of the scenario group that is referenced. */
597
621
  groupId: ComparisonScenarioGroupId;
598
622
  }
599
- declare type ComparisonViewTitle = string;
600
- declare type ComparisonViewSubtitle = string;
601
- declare type ComparisonViewGraphId = string;
623
+ type ComparisonViewTitle = string;
624
+ type ComparisonViewSubtitle = string;
625
+ type ComparisonViewGraphId = string;
602
626
  /**
603
627
  * Specifies a list of graphs to be shown in a view.
604
628
  */
@@ -618,7 +642,7 @@ interface ComparisonViewGraphsPresetSpec {
618
642
  /**
619
643
  * Specifies a set of graphs to be shown in a view.
620
644
  */
621
- declare type ComparisonViewGraphsSpec = ComparisonViewGraphsArraySpec | ComparisonViewGraphsPresetSpec;
645
+ type ComparisonViewGraphsSpec = ComparisonViewGraphsArraySpec | ComparisonViewGraphsPresetSpec;
622
646
  /**
623
647
  * A definition of a view. A view presents a set of graphs for a single input scenario.
624
648
  */
@@ -633,7 +657,7 @@ interface ComparisonViewSpec {
633
657
  /** The graphs to be shown for each scenario view. */
634
658
  graphs: ComparisonViewGraphsSpec;
635
659
  }
636
- declare type ComparisonViewGroupTitle = string;
660
+ type ComparisonViewGroupTitle = string;
637
661
  /**
638
662
  * Specifies a view group with an explicit array of view definitions.
639
663
  */
@@ -661,7 +685,7 @@ interface ComparisonViewGroupWithScenariosSpec {
661
685
  * A definition of a group of views. Multiple related views can be grouped together under a single title
662
686
  * to make them easy to distinguish in a report.
663
687
  */
664
- declare type ComparisonViewGroupSpec = ComparisonViewGroupWithViewsSpec | ComparisonViewGroupWithScenariosSpec;
688
+ type ComparisonViewGroupSpec = ComparisonViewGroupWithViewsSpec | ComparisonViewGroupWithScenariosSpec;
665
689
  /**
666
690
  * Contains the scenario and view definitions from one or more sources (JSON/YAML files or manually
667
691
  * defined specs).
@@ -700,7 +724,7 @@ interface ComparisonDataset {
700
724
  outputVarR?: OutputVar;
701
725
  }
702
726
  /** A unique key for a `ComparisonScenario`, generated internally for use by the library. */
703
- declare type ComparisonScenarioKey = string & {
727
+ type ComparisonScenarioKey = string & {
704
728
  _brand?: 'ComparisonScenarioKey';
705
729
  };
706
730
  interface ComparisonResolverUnknownInputError {
@@ -709,7 +733,7 @@ interface ComparisonResolverUnknownInputError {
709
733
  interface ComparisonResolverInvalidValueError {
710
734
  kind: 'invalid-value';
711
735
  }
712
- declare type ComparisonResolverError = ComparisonResolverUnknownInputError | ComparisonResolverInvalidValueError;
736
+ type ComparisonResolverError = ComparisonResolverUnknownInputError | ComparisonResolverInvalidValueError;
713
737
  /** Describes the resolution state for a scenario input relative to a specific model. */
714
738
  interface ComparisonScenarioInputState {
715
739
  /** The matched input variable; can be undefined if no input matched. */
@@ -746,7 +770,7 @@ interface ComparisonScenarioAllInputsSettings {
746
770
  * The configuration for an input scenario, either a set of individual input settings, or one
747
771
  * that sets all inputs in the model to a certain position.
748
772
  */
749
- declare type ComparisonScenarioSettings = ComparisonScenarioInputSettings | ComparisonScenarioAllInputsSettings;
773
+ type ComparisonScenarioSettings = ComparisonScenarioInputSettings | ComparisonScenarioAllInputsSettings;
750
774
  /** A single resolved input scenario. */
751
775
  interface ComparisonScenario {
752
776
  kind: 'scenario';
@@ -907,7 +931,7 @@ interface ComparisonConfig {
907
931
  viewGroups: ComparisonViewGroup[];
908
932
  }
909
933
 
910
- declare type ComparisonDataRequestKey = string;
934
+ type ComparisonDataRequestKey = string;
911
935
  /**
912
936
  * Coordinates loading of data in parallel from two models.
913
937
  */
@@ -928,7 +952,7 @@ interface DiffPoint {
928
952
  valueL: number;
929
953
  valueR: number;
930
954
  }
931
- declare type DiffValidity = 'neither' | 'left-only' | 'right-only' | 'both';
955
+ type DiffValidity = 'neither' | 'left-only' | 'right-only' | 'both';
932
956
  interface DiffReport {
933
957
  validity: DiffValidity;
934
958
  minValue: number;
@@ -1002,7 +1026,7 @@ interface ComparisonSummary {
1002
1026
  perfReportR: PerfReport;
1003
1027
  }
1004
1028
 
1005
- declare type GraphInclusion = 'neither' | 'left-only' | 'right-only' | 'both';
1029
+ type GraphInclusion = 'neither' | 'left-only' | 'right-only' | 'both';
1006
1030
  interface GraphComparisonMetadataReport {
1007
1031
  /** The key for the metadata field. */
1008
1032
  key: string;
@@ -1046,8 +1070,8 @@ declare function diffGraphs(graphL: BundleGraphSpec | undefined, graphR: BundleG
1046
1070
  */
1047
1071
  declare function comparisonSummaryFromReport(comparisonReport: ComparisonReport): ComparisonSummary;
1048
1072
 
1049
- declare type ComparisonGroupKind = 'by-dataset' | 'by-scenario';
1050
- declare type ComparisonGroupKey = string;
1073
+ type ComparisonGroupKind = 'by-dataset' | 'by-scenario';
1074
+ type ComparisonGroupKey = string;
1051
1075
  /**
1052
1076
  * A group of comparison test summaries associated with a particular scenario or dataset.
1053
1077
  */
@@ -1063,7 +1087,7 @@ interface ComparisonGroup {
1063
1087
  testSummaries: ComparisonTestSummary[];
1064
1088
  }
1065
1089
  /** Describes the "root" or primary item for a group of comparisons. */
1066
- declare type ComparisonGroupRoot = ComparisonDataset | ComparisonScenario;
1090
+ type ComparisonGroupRoot = ComparisonDataset | ComparisonScenario;
1067
1091
  /** A summary of scores for a group of comparisons. */
1068
1092
  interface ComparisonGroupScores {
1069
1093
  /** The total number of comparisons (sample size) for this group. */
@@ -1216,7 +1240,7 @@ interface SuiteSummary {
1216
1240
  comparisonSummary?: ComparisonSummary;
1217
1241
  }
1218
1242
 
1219
- declare type CancelRunSuite = () => void;
1243
+ type CancelRunSuite = () => void;
1220
1244
  interface RunSuiteCallbacks {
1221
1245
  onProgress?: (pct: number) => void;
1222
1246
  onComplete?: (suiteReport: SuiteReport) => void;
@@ -1245,4 +1269,4 @@ declare function runSuite(config: Config, callbacks: RunSuiteCallbacks, options?
1245
1269
  */
1246
1270
  declare function suiteSummaryFromReport(suiteReport: SuiteReport): SuiteSummary;
1247
1271
 
1248
- 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, ComparisonScenarioWithInputsSpec, ComparisonScenarios, ComparisonSpecs, ComparisonSpecsSource, ComparisonSummary, ComparisonTestReport, ComparisonTestSummary, ComparisonUnresolvedScenarioGroupRef, ComparisonUnresolvedScenarioRef, ComparisonUnresolvedView, ComparisonView, ComparisonViewGraphId, ComparisonViewGraphsArraySpec, ComparisonViewGraphsPresetSpec, ComparisonViewGraphsSpec, ComparisonViewGroup, ComparisonViewGroupSpec, ComparisonViewGroupTitle, ComparisonViewGroupWithScenariosSpec, ComparisonViewGroupWithViewsSpec, ComparisonViewSpec, ComparisonViewSubtitle, ComparisonViewTitle, Config, ConfigInitOptions, ConfigOptions, DataSource, Dataset, DatasetKey, DatasetMap, DatasetsResult, DiffPoint, DiffReport, DiffValidity, Dimension, GraphComparisonDatasetReport, GraphComparisonMetadataReport, GraphComparisonReport, GraphInclusion, ImplVar, InputId, InputPosition, InputSetting, InputSettingsSpec, InputVar, LegendItem, LinkItem, LoadedBundle, ModelSpec, NamedBundle, OutputVar, PerfReport, PerfRunner, PerfStats, PositionSetting, RelatedItem, RunSuiteCallbacks, RunSuiteOptions, ScenarioSpec, ScenarioSpecUid, SourceName, Subscript, SuiteReport, SuiteSummary, ValueSetting, VarId, categorizeComparisonTestSummaries, checkReportFromSummary, checkSummaryFromReport, comparisonSummaryFromReport, createConfig, datasetMessage, diffDatasets, diffGraphs, predicateMessage, runSuite, scenarioMessage, suiteSummaryFromReport };
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, ComparisonViewGraphId, ComparisonViewGraphsArraySpec, ComparisonViewGraphsPresetSpec, ComparisonViewGraphsSpec, ComparisonViewGroup, ComparisonViewGroupSpec, ComparisonViewGroupTitle, ComparisonViewGroupWithScenariosSpec, ComparisonViewGroupWithViewsSpec, ComparisonViewSpec, ComparisonViewSubtitle, ComparisonViewTitle, Config, ConfigInitOptions, ConfigOptions, DataSource, Dataset, DatasetGroupName, DatasetKey, DatasetMap, DatasetsResult, DiffPoint, DiffReport, DiffValidity, Dimension, GraphComparisonDatasetReport, GraphComparisonMetadataReport, GraphComparisonReport, GraphInclusion, ImplVar, InputAliasName, InputGroupName, InputId, InputPosition, InputSetting, InputSettingsSpec, InputVar, LegendItem, LinkItem, LoadedBundle, ModelSpec, NamedBundle, OutputVar, PerfReport, PerfRunner, PerfStats, PositionSetting, RelatedItem, RunSuiteCallbacks, RunSuiteOptions, ScenarioSpec, ScenarioSpecUid, SourceName, Subscript, SuiteReport, SuiteSummary, ValueSetting, VarId, categorizeComparisonTestSummaries, checkReportFromSummary, checkSummaryFromReport, comparisonSummaryFromReport, createConfig, datasetMessage, diffDatasets, diffGraphs, predicateMessage, runSuite, scenarioMessage, suiteSummaryFromReport };