@sjcrh/proteinpaint-types 2.112.1-0 → 2.114.0
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/brainImaging.js +1 -1
- package/dist/{chunk-FMW25T52.js → chunk-66XSFQPI.js} +282 -182
- package/dist/{chunk-ES6BRZ4L.js → chunk-7AQB3YHO.js} +15 -11
- package/dist/{chunk-A72XYNKT.js → chunk-BEXUBE5A.js} +15 -11
- package/dist/{chunk-TXZQ56TX.js → chunk-BNOGQYXG.js} +421 -251
- package/dist/{chunk-7Z3AE4AY.js → chunk-H45GALYV.js} +445 -345
- package/dist/{chunk-4CCAF4O5.js → chunk-JNEIQWTE.js} +44 -36
- package/dist/{chunk-KHPBBU43.js → chunk-KRHYG2ZZ.js} +610 -580
- package/dist/{chunk-NPVDG36X.js → chunk-OSHG443J.js} +401 -371
- package/dist/{chunk-GHAIGRB7.js → chunk-PR7XHL4T.js} +15 -11
- package/dist/{chunk-ZFUF4XMD.js → chunk-T3NOHXOJ.js} +15 -11
- package/dist/{chunk-2WZPM25H.js → chunk-WVBWDL2B.js} +445 -345
- package/dist/{chunk-GGKNEHME.js → chunk-XDRUNGOV.js} +192 -162
- package/dist/correlationVolcano.js +1 -1
- package/dist/index.js +12 -12
- package/dist/termdb.boxplot.js +1 -1
- package/dist/termdb.categories.js +1 -1
- package/dist/termdb.cluster.js +1 -1
- package/dist/termdb.descrstats.js +1 -1
- package/dist/termdb.numericcategories.js +1 -1
- package/dist/termdb.percentile.js +1 -1
- package/dist/termdb.termsbyids.js +1 -1
- package/dist/termdb.topTermsByType.js +1 -1
- package/dist/termdb.topVariablyExpressedGenes.js +1 -1
- package/dist/termdb.violin.js +1 -1
- package/package.json +1 -1
- package/src/dataset.ts +31 -15
- package/src/routes/termdb.DE.ts +4 -0
- package/src/routes/termdb.cluster.ts +7 -2
- package/src/terms/geneVariant.ts +23 -2
- package/src/terms/term.ts +16 -8
- package/src/termsetting.ts +3 -3
|
@@ -3,88 +3,64 @@ import {
|
|
|
3
3
|
require_lib
|
|
4
4
|
} from "./chunk-CNSSF43V.js";
|
|
5
5
|
|
|
6
|
-
// dist/termdb.
|
|
6
|
+
// dist/termdb.descrstats.ts
|
|
7
7
|
var import_typia = __toESM(require_lib(), 1);
|
|
8
8
|
|
|
9
|
-
// src/routes/termdb.
|
|
10
|
-
var
|
|
9
|
+
// src/routes/termdb.descrstats.ts
|
|
10
|
+
var descrStatsPayload = {
|
|
11
11
|
request: {
|
|
12
|
-
typeId: "
|
|
12
|
+
typeId: "DescrStatsRequest"
|
|
13
13
|
},
|
|
14
14
|
response: {
|
|
15
|
-
typeId: "
|
|
16
|
-
}
|
|
17
|
-
|
|
15
|
+
typeId: "DescrStatsResponse"
|
|
16
|
+
},
|
|
17
|
+
examples: [
|
|
18
|
+
{
|
|
19
|
+
request: {
|
|
20
|
+
body: {
|
|
21
|
+
genome: "hg38-test",
|
|
22
|
+
dslabel: "TermdbTest",
|
|
23
|
+
embedder: "localhost",
|
|
24
|
+
tw: { term: { id: "hrtavg" }, q: { mode: "continuous" } },
|
|
25
|
+
filter: {
|
|
26
|
+
type: "tvslst",
|
|
27
|
+
in: true,
|
|
28
|
+
join: "",
|
|
29
|
+
lst: [
|
|
30
|
+
{
|
|
31
|
+
tag: "cohortFilter",
|
|
32
|
+
type: "tvs",
|
|
33
|
+
tvs: {
|
|
34
|
+
term: {
|
|
35
|
+
name: "Cohort",
|
|
36
|
+
type: "categorical",
|
|
37
|
+
values: { ABC: { label: "ABC" }, XYZ: { label: "XYZ" } },
|
|
38
|
+
id: "subcohort",
|
|
39
|
+
isleaf: false,
|
|
40
|
+
groupsetting: { disabled: true }
|
|
41
|
+
},
|
|
42
|
+
values: [{ key: "ABC", label: "ABC" }]
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
]
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
},
|
|
49
|
+
response: {
|
|
50
|
+
header: { status: 200 }
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
]
|
|
18
54
|
};
|
|
19
55
|
|
|
20
|
-
// dist/termdb.
|
|
21
|
-
var
|
|
22
|
-
const errors = [];
|
|
23
|
-
const __is = (input2) => {
|
|
24
|
-
const $io0 = (input3) => "string" === typeof input3.genome && "string" === typeof input3.dslabel && "string" === typeof input3.embedder && (Array.isArray(input3.ids) && input3.ids.every((elem) => "string" === typeof elem));
|
|
25
|
-
return "object" === typeof input2 && null !== input2 && $io0(input2);
|
|
26
|
-
};
|
|
27
|
-
if (false === __is(input)) {
|
|
28
|
-
const $report = import_typia.createValidate.report(errors);
|
|
29
|
-
((input2, _path, _exceptionable = true) => {
|
|
30
|
-
const $vo0 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.genome || $report(_exceptionable2, {
|
|
31
|
-
path: _path2 + ".genome",
|
|
32
|
-
expected: "string",
|
|
33
|
-
value: input3.genome
|
|
34
|
-
}), "string" === typeof input3.dslabel || $report(_exceptionable2, {
|
|
35
|
-
path: _path2 + ".dslabel",
|
|
36
|
-
expected: "string",
|
|
37
|
-
value: input3.dslabel
|
|
38
|
-
}), "string" === typeof input3.embedder || $report(_exceptionable2, {
|
|
39
|
-
path: _path2 + ".embedder",
|
|
40
|
-
expected: "string",
|
|
41
|
-
value: input3.embedder
|
|
42
|
-
}), (Array.isArray(input3.ids) || $report(_exceptionable2, {
|
|
43
|
-
path: _path2 + ".ids",
|
|
44
|
-
expected: "Array<string>",
|
|
45
|
-
value: input3.ids
|
|
46
|
-
})) && input3.ids.map((elem, _index1) => "string" === typeof elem || $report(_exceptionable2, {
|
|
47
|
-
path: _path2 + ".ids[" + _index1 + "]",
|
|
48
|
-
expected: "string",
|
|
49
|
-
value: elem
|
|
50
|
-
})).every((flag) => flag) || $report(_exceptionable2, {
|
|
51
|
-
path: _path2 + ".ids",
|
|
52
|
-
expected: "Array<string>",
|
|
53
|
-
value: input3.ids
|
|
54
|
-
})].every((flag) => flag);
|
|
55
|
-
return ("object" === typeof input2 && null !== input2 || $report(true, {
|
|
56
|
-
path: _path + "",
|
|
57
|
-
expected: "TermsByIdsRequest",
|
|
58
|
-
value: input2
|
|
59
|
-
})) && $vo0(input2, _path + "", true) || $report(true, {
|
|
60
|
-
path: _path + "",
|
|
61
|
-
expected: "TermsByIdsRequest",
|
|
62
|
-
value: input2
|
|
63
|
-
});
|
|
64
|
-
})(input, "$input", true);
|
|
65
|
-
}
|
|
66
|
-
const success = 0 === errors.length;
|
|
67
|
-
return {
|
|
68
|
-
success,
|
|
69
|
-
errors,
|
|
70
|
-
data: success ? input : void 0
|
|
71
|
-
};
|
|
72
|
-
};
|
|
73
|
-
var validTermsByIdsResponse = (input) => {
|
|
56
|
+
// dist/termdb.descrstats.ts
|
|
57
|
+
var validDescrStatsRequest = (input) => {
|
|
74
58
|
const errors = [];
|
|
75
59
|
const __is = (input2) => {
|
|
76
60
|
const $join = import_typia.createValidate.join;
|
|
77
|
-
const $io0 = (input3) => "object" === typeof input3.
|
|
78
|
-
const $io1 = (input3) =>
|
|
79
|
-
|
|
80
|
-
if (void 0 === value)
|
|
81
|
-
return true;
|
|
82
|
-
if (RegExp(/(.*)/).test(key))
|
|
83
|
-
return "object" === typeof value && null !== value && $iu6(value);
|
|
84
|
-
return true;
|
|
85
|
-
});
|
|
86
|
-
const $io2 = (input3) => (void 0 === input3.id || "string" === typeof input3.id) && "string" === typeof input3.$id && (void 0 === input3.isAtomic || true === input3.isAtomic) && true && (void 0 === input3.settings || "object" === typeof input3.settings && null !== input3.settings && false === Array.isArray(input3.settings) && $io3(input3.settings)) && true && (void 0 === input3.minNumSamples || "number" === typeof input3.minNumSamples) && true && ("CatTWValues" === input3.type || "CatTWPredefinedGS" === input3.type || "CatTWCustomGS" === input3.type) && ("object" === typeof input3.q && null !== input3.q && $iu7(input3.q)) && ("object" === typeof input3.term && null !== input3.term && $io14(input3.term));
|
|
87
|
-
const $io3 = (input3) => Object.keys(input3).every((key) => {
|
|
61
|
+
const $io0 = (input3) => "string" === typeof input3.genome && "string" === typeof input3.dslabel && "string" === typeof input3.embedder && ("object" === typeof input3.tw && null !== input3.tw && $iu6(input3.tw)) && (void 0 === input3.logScale || "boolean" === typeof input3.logScale) && (void 0 === input3.filter || "object" === typeof input3.filter && null !== input3.filter && $io12(input3.filter)) && true;
|
|
62
|
+
const $io1 = (input3) => (void 0 === input3.id || "string" === typeof input3.id) && "string" === typeof input3.$id && (void 0 === input3.isAtomic || true === input3.isAtomic) && true && (void 0 === input3.settings || "object" === typeof input3.settings && null !== input3.settings && false === Array.isArray(input3.settings) && $io2(input3.settings)) && true && (void 0 === input3.minNumSamples || "number" === typeof input3.minNumSamples) && true && ("CatTWValues" === input3.type || "CatTWPredefinedGS" === input3.type || "CatTWCustomGS" === input3.type) && ("object" === typeof input3.q && null !== input3.q && false === Array.isArray(input3.q) && $iu7(input3.q)) && ("object" === typeof input3.term && null !== input3.term && $io14(input3.term));
|
|
63
|
+
const $io2 = (input3) => Object.keys(input3).every((key) => {
|
|
88
64
|
const value = input3[key];
|
|
89
65
|
if (void 0 === value)
|
|
90
66
|
return true;
|
|
@@ -92,8 +68,8 @@ var validTermsByIdsResponse = (input) => {
|
|
|
92
68
|
return true;
|
|
93
69
|
return true;
|
|
94
70
|
});
|
|
95
|
-
const $
|
|
96
|
-
const $
|
|
71
|
+
const $io3 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $io4(input3.hiddenValues)) && (void 0 === input3.isAtomic || true === input3.isAtomic) && (void 0 === input3.name || "string" === typeof input3.name) && (void 0 === input3.reuseId || "string" === typeof input3.reuseId) && (void 0 === input3.mode || "discrete" === input3.mode || "binary" === input3.mode) && "values" === input3.type;
|
|
72
|
+
const $io4 = (input3) => Object.keys(input3).every((key) => {
|
|
97
73
|
const value = input3[key];
|
|
98
74
|
if (void 0 === value)
|
|
99
75
|
return true;
|
|
@@ -101,15 +77,16 @@ var validTermsByIdsResponse = (input) => {
|
|
|
101
77
|
return "number" === typeof value;
|
|
102
78
|
return true;
|
|
103
79
|
});
|
|
104
|
-
const $
|
|
105
|
-
const $
|
|
80
|
+
const $io5 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $io4(input3.hiddenValues)) && (void 0 === input3.isAtomic || "boolean" === typeof input3.isAtomic) && (void 0 === input3.name || "string" === typeof input3.name) && (void 0 === input3.mode || "discrete" === input3.mode || "binary" === input3.mode || "continuous" === input3.mode || "spline" === input3.mode || "cuminc" === input3.mode || "cox" === input3.mode) && (void 0 === input3.reuseId || "string" === typeof input3.reuseId) && (void 0 === input3.type || "filter" === input3.type);
|
|
81
|
+
const $io6 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $io4(input3.hiddenValues)) && (void 0 === input3.isAtomic || true === input3.isAtomic) && (void 0 === input3.name || "string" === typeof input3.name) && (void 0 === input3.reuseId || "string" === typeof input3.reuseId) && (void 0 === input3.mode || "discrete" === input3.mode || "binary" === input3.mode) && "predefined-groupset" === input3.type && "number" === typeof input3.predefined_groupset_idx;
|
|
82
|
+
const $io7 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $io4(input3.hiddenValues)) && (void 0 === input3.isAtomic || true === input3.isAtomic) && (void 0 === input3.name || "string" === typeof input3.name) && (void 0 === input3.reuseId || "string" === typeof input3.reuseId) && (void 0 === input3.mode || "discrete" === input3.mode || "binary" === input3.mode) && "custom-groupset" === input3.type && ("object" === typeof input3.customset && null !== input3.customset && $io8(input3.customset));
|
|
106
83
|
const $io8 = (input3) => Array.isArray(input3.groups) && input3.groups.every((elem) => "object" === typeof elem && null !== elem && $iu0(elem));
|
|
107
84
|
const $io9 = (input3) => "string" === typeof input3.name && "string" === typeof input3.type && (Array.isArray(input3.values) && input3.values.every((elem) => "object" === typeof elem && null !== elem && $io10(elem))) && (void 0 === input3.uncomputable || "boolean" === typeof input3.uncomputable);
|
|
108
85
|
const $io10 = (input3) => ("string" === typeof input3.key || "number" === typeof input3.key) && "string" === typeof input3.label;
|
|
109
|
-
const $io11 = (input3) => "string" === typeof input3.name && "filter" === input3.type && ("object" === typeof input3.filter && null !== input3.filter && $io12(input3.filter));
|
|
86
|
+
const $io11 = (input3) => "string" === typeof input3.name && "filter" === input3.type && ("object" === typeof input3.filter && null !== input3.filter && $io12(input3.filter)) && (void 0 === input3.uncomputable || "boolean" === typeof input3.uncomputable);
|
|
110
87
|
const $io12 = (input3) => "lst" === input3.type && (void 0 === input3["in"] || "boolean" === typeof input3["in"]) && ("and" === input3.join || "or" === input3.join) && (void 0 === input3.tag || "string" === typeof input3.tag) && (Array.isArray(input3.lst) && input3.lst.every((elem) => "object" === typeof elem && null !== elem && $iu1(elem)));
|
|
111
88
|
const $io13 = (input3) => (void 0 === input3.join || "string" === typeof input3.join) && (void 0 === input3.isnot || "boolean" === typeof input3.isnot) && ("object" === typeof input3.term && null !== input3.term && $io14(input3.term)) && (void 0 === input3.groupset_label || "string" === typeof input3.groupset_label) && (Array.isArray(input3.values) && input3.values.every((elem) => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && $io16(elem)));
|
|
112
|
-
const $io14 = (input3) => "string" === typeof input3.id && "string" === typeof input3.name && "categorical" === input3.type && (void 0 === input3.child_types || Array.isArray(input3.child_types) && input3.child_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.hashtmldetail || "boolean" === typeof input3.hashtmldetail) && (void 0 === input3.included_types || Array.isArray(input3.included_types) && input3.included_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.isleaf || "boolean" === typeof input3.isleaf) && (void 0 === input3.values || "object" === typeof input3.values && null !== input3.values && false === Array.isArray(input3.values) && $io15(input3.values)) && ("object" === typeof input3.groupsetting && null !== input3.groupsetting && $iu8(input3.groupsetting));
|
|
89
|
+
const $io14 = (input3) => "string" === typeof input3.id && "string" === typeof input3.name && "categorical" === input3.type && (void 0 === input3.child_types || Array.isArray(input3.child_types) && input3.child_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.hashtmldetail || "boolean" === typeof input3.hashtmldetail) && (void 0 === input3.included_types || Array.isArray(input3.included_types) && input3.included_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.isleaf || "boolean" === typeof input3.isleaf) && (void 0 === input3.values || "object" === typeof input3.values && null !== input3.values && false === Array.isArray(input3.values) && $io15(input3.values)) && true && ("object" === typeof input3.groupsetting && null !== input3.groupsetting && $iu8(input3.groupsetting));
|
|
113
90
|
const $io15 = (input3) => Object.keys(input3).every((key) => {
|
|
114
91
|
const value = input3[key];
|
|
115
92
|
if (void 0 === value)
|
|
@@ -125,45 +102,45 @@ var validTermsByIdsResponse = (input) => {
|
|
|
125
102
|
const $io18 = (input3) => "string" === typeof input3.name && (void 0 === input3.is_grade || "boolean" === typeof input3.is_grade) && (void 0 === input3.is_subcondition || "boolean" === typeof input3.is_subcondition) && (Array.isArray(input3.groups) && input3.groups.every((elem) => "object" === typeof elem && null !== elem && $iu0(elem)));
|
|
126
103
|
const $io19 = (input3) => "boolean" === typeof input3.disabled && (void 0 === input3.lst || Array.isArray(input3.lst) && input3.lst.length === 0);
|
|
127
104
|
const $io20 = (input3) => (void 0 === input3.join || "string" === typeof input3.join) && (void 0 === input3.isnot || "boolean" === typeof input3.isnot) && ("object" === typeof input3.term && null !== input3.term && $io21(input3.term)) && (Array.isArray(input3.ranges) && input3.ranges.every((elem) => "object" === typeof elem && null !== elem && $iu2(elem))) && (Array.isArray(input3.values) && input3.values.every((elem) => "object" === typeof elem && null !== elem && $io29(elem)));
|
|
128
|
-
const $io21 = (input3) => "string" === typeof input3.id && "string" === typeof input3.name && ("integer" === input3.type || "float" === input3.type || "geneExpression" === input3.type || "metaboliteIntensity" === input3.type) && (void 0 === input3.child_types || Array.isArray(input3.child_types) && input3.child_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.hashtmldetail || "boolean" === typeof input3.hashtmldetail) && (void 0 === input3.included_types || Array.isArray(input3.included_types) && input3.included_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.isleaf || "boolean" === typeof input3.isleaf) && (void 0 === input3.values || "object" === typeof input3.values && null !== input3.values && false === Array.isArray(input3.values) && $io15(input3.values)) && ("object" === typeof input3.bins && null !== input3.bins && $io22(input3.bins)) && (void 0 === input3.unit || "string" === typeof input3.unit) && (void 0 === input3.continuousColorScale || "object" === typeof input3.continuousColorScale && null !== input3.continuousColorScale && $io28(input3.continuousColorScale));
|
|
105
|
+
const $io21 = (input3) => "string" === typeof input3.id && "string" === typeof input3.name && ("integer" === input3.type || "float" === input3.type || "geneExpression" === input3.type || "metaboliteIntensity" === input3.type) && (void 0 === input3.child_types || Array.isArray(input3.child_types) && input3.child_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.hashtmldetail || "boolean" === typeof input3.hashtmldetail) && (void 0 === input3.included_types || Array.isArray(input3.included_types) && input3.included_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.isleaf || "boolean" === typeof input3.isleaf) && (void 0 === input3.values || "object" === typeof input3.values && null !== input3.values && false === Array.isArray(input3.values) && $io15(input3.values)) && true && ("object" === typeof input3.bins && null !== input3.bins && $io22(input3.bins)) && (void 0 === input3.unit || "string" === typeof input3.unit) && (void 0 === input3.continuousColorScale || "object" === typeof input3.continuousColorScale && null !== input3.continuousColorScale && $io28(input3.continuousColorScale));
|
|
129
106
|
const $io22 = (input3) => "object" === typeof input3["default"] && null !== input3["default"] && $iu9(input3["default"]) && ("object" === typeof input3.less && null !== input3.less && $iu9(input3.less)) && (void 0 === input3.label_offset || "number" === typeof input3.label_offset) && (void 0 === input3.label_offset_ignored || "boolean" === typeof input3.label_offset_ignored) && (void 0 === input3.rounding || "string" === typeof input3.rounding) && (void 0 === input3.min || "number" === typeof input3.min) && (void 0 === input3.max || "number" === typeof input3.max);
|
|
130
|
-
const $io23 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $
|
|
107
|
+
const $io23 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $io4(input3.hiddenValues)) && (void 0 === input3.isAtomic || true === input3.isAtomic) && (void 0 === input3.name || "string" === typeof input3.name) && (void 0 === input3.reuseId || "string" === typeof input3.reuseId) && "regular-bin" === input3.type && (void 0 === input3.mode || "discrete" === input3.mode) && "number" === typeof input3.bin_size && ("object" === typeof input3.first_bin && null !== input3.first_bin && $iu4(input3.first_bin)) && (void 0 === input3.last_bin || "object" === typeof input3.last_bin && null !== input3.last_bin && $iu5(input3.last_bin)) && (void 0 === input3.label_offset || "number" === typeof input3.label_offset);
|
|
131
108
|
const $io24 = (input3) => true === input3.startunbounded && (void 0 === input3.startinclusive || false === input3.startinclusive) && "number" === typeof input3.stop && (void 0 === input3.stopinclusive || "boolean" === typeof input3.stopinclusive) && (void 0 === input3.stopunbounded || false === input3.stopunbounded) && (void 0 === input3.label || "string" === typeof input3.label);
|
|
132
109
|
const $io25 = (input3) => (void 0 === input3.startunbounded || false === input3.startunbounded) && (void 0 === input3.startinclusive || "boolean" === typeof input3.startinclusive) && "number" === typeof input3.start && "number" === typeof input3.stop && (void 0 === input3.stopinclusive || "boolean" === typeof input3.stopinclusive) && (void 0 === input3.stopunbounded || false === input3.stopunbounded) && (void 0 === input3.label || "string" === typeof input3.label);
|
|
133
110
|
const $io26 = (input3) => "number" === typeof input3.start && true === input3.stopunbounded && (void 0 === input3.startinclusive || "boolean" === typeof input3.startinclusive) && (void 0 === input3.startunbounded || false === input3.startunbounded) && (void 0 === input3.stopinclusive || false === input3.stopinclusive) && (void 0 === input3.label || "string" === typeof input3.label);
|
|
134
|
-
const $io27 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $
|
|
111
|
+
const $io27 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $io4(input3.hiddenValues)) && (void 0 === input3.isAtomic || true === input3.isAtomic) && (void 0 === input3.name || "string" === typeof input3.name) && (void 0 === input3.reuseId || "string" === typeof input3.reuseId) && "custom-bin" === input3.type && (void 0 === input3.mode || "discrete" === input3.mode || "binary" === input3.mode) && (Array.isArray(input3.lst) && ("object" === typeof input3.lst[0] && null !== input3.lst[0] && $iu2(input3.lst[0]) && (Array.isArray(input3.lst.slice(1)) && input3.lst.slice(1).every((elem) => "object" === typeof elem && null !== elem && $iu2(elem))))) && (void 0 === input3.preferredBins || "median" === input3.preferredBins);
|
|
135
112
|
const $io28 = (input3) => "string" === typeof input3.minColor && "string" === typeof input3.maxColor;
|
|
136
113
|
const $io29 = (input3) => "string" === typeof input3.key && "number" === typeof input3.value && true === input3.uncomputable && (void 0 === input3.label || "string" === typeof input3.label);
|
|
137
114
|
const $io30 = (input3) => (void 0 === input3.join || "string" === typeof input3.join) && (void 0 === input3.isnot || "boolean" === typeof input3.isnot) && ("object" === typeof input3.term && null !== input3.term && $io31(input3.term)) && (void 0 === input3.value_by_max_grade || "boolean" === typeof input3.value_by_max_grade) && (void 0 === input3.value_by_most_recent || "boolean" === typeof input3.value_by_most_recent) && (void 0 === input3.value_by_computable_grade || "boolean" === typeof input3.value_by_computable_grade) && (void 0 === input3.grade_and_child || Array.isArray(input3.grade_and_child) && input3.grade_and_child.every((elem) => "object" === typeof elem && null !== elem && $io32(elem)));
|
|
138
|
-
const $io31 = (input3) => "string" === typeof input3.id && "string" === typeof input3.name && "condition" === input3.type && (void 0 === input3.child_types || Array.isArray(input3.child_types) && input3.child_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.hashtmldetail || "boolean" === typeof input3.hashtmldetail) && (void 0 === input3.included_types || Array.isArray(input3.included_types) && input3.included_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.isleaf || "boolean" === typeof input3.isleaf) && (void 0 === input3.values || "object" === typeof input3.values && null !== input3.values && false === Array.isArray(input3.values) && $io15(input3.values));
|
|
115
|
+
const $io31 = (input3) => "string" === typeof input3.id && "string" === typeof input3.name && "condition" === input3.type && (void 0 === input3.child_types || Array.isArray(input3.child_types) && input3.child_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.hashtmldetail || "boolean" === typeof input3.hashtmldetail) && (void 0 === input3.included_types || Array.isArray(input3.included_types) && input3.included_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.isleaf || "boolean" === typeof input3.isleaf) && (void 0 === input3.values || "object" === typeof input3.values && null !== input3.values && false === Array.isArray(input3.values) && $io15(input3.values)) && true;
|
|
139
116
|
const $io32 = (input3) => "number" === typeof input3.grade && "string" === typeof input3.grade_label && (void 0 === input3.child_id || "string" === typeof input3.child_id) && "string" === typeof input3.child_label;
|
|
140
117
|
const $io33 = (input3) => (void 0 === input3.join || "string" === typeof input3.join) && (void 0 === input3.isnot || "boolean" === typeof input3.isnot) && ("object" === typeof input3.term && null !== input3.term && $iu10(input3.term)) && (Array.isArray(input3.values) && input3.values.every((elem) => "object" === typeof elem && null !== elem && $iu3(elem)));
|
|
141
|
-
const $io34 = (input3) => "string" === typeof input3.id && "string" === typeof input3.name && "geneVariant" === input3.type && (void 0 === input3.child_types || Array.isArray(input3.child_types) && input3.child_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.hashtmldetail || "boolean" === typeof input3.hashtmldetail) && (void 0 === input3.included_types || Array.isArray(input3.included_types) && input3.included_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.isleaf || "boolean" === typeof input3.isleaf) && (void 0 === input3.values || "object" === typeof input3.values && null !== input3.values && false === Array.isArray(input3.values) && $io15(input3.values)) && ("object" === typeof input3.groupsetting && null !== input3.groupsetting && $io17(input3.groupsetting)) && "gene" === input3.kind && "string" === typeof input3.gene && (void 0 === input3.chr || "string" === typeof input3.chr) && (void 0 === input3.start || "number" === typeof input3.start) && (void 0 === input3.stop || "number" === typeof input3.stop);
|
|
142
|
-
const $io35 = (input3) => "string" === typeof input3.id && "string" === typeof input3.name && "geneVariant" === input3.type && (void 0 === input3.child_types || Array.isArray(input3.child_types) && input3.child_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.hashtmldetail || "boolean" === typeof input3.hashtmldetail) && (void 0 === input3.included_types || Array.isArray(input3.included_types) && input3.included_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.isleaf || "boolean" === typeof input3.isleaf) && (void 0 === input3.values || "object" === typeof input3.values && null !== input3.values && false === Array.isArray(input3.values) && $io15(input3.values)) && ("object" === typeof input3.groupsetting && null !== input3.groupsetting && $io17(input3.groupsetting)) && "coord" === input3.kind && "string" === typeof input3.chr && "number" === typeof input3.start && "number" === typeof input3.stop;
|
|
118
|
+
const $io34 = (input3) => "string" === typeof input3.id && "string" === typeof input3.name && "geneVariant" === input3.type && (void 0 === input3.child_types || Array.isArray(input3.child_types) && input3.child_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.hashtmldetail || "boolean" === typeof input3.hashtmldetail) && (void 0 === input3.included_types || Array.isArray(input3.included_types) && input3.included_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.isleaf || "boolean" === typeof input3.isleaf) && (void 0 === input3.values || "object" === typeof input3.values && null !== input3.values && false === Array.isArray(input3.values) && $io15(input3.values)) && true && ("object" === typeof input3.groupsetting && null !== input3.groupsetting && $io17(input3.groupsetting)) && "gene" === input3.kind && "string" === typeof input3.gene && (void 0 === input3.chr || "string" === typeof input3.chr) && (void 0 === input3.start || "number" === typeof input3.start) && (void 0 === input3.stop || "number" === typeof input3.stop);
|
|
119
|
+
const $io35 = (input3) => "string" === typeof input3.id && "string" === typeof input3.name && "geneVariant" === input3.type && (void 0 === input3.child_types || Array.isArray(input3.child_types) && input3.child_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.hashtmldetail || "boolean" === typeof input3.hashtmldetail) && (void 0 === input3.included_types || Array.isArray(input3.included_types) && input3.included_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.isleaf || "boolean" === typeof input3.isleaf) && (void 0 === input3.values || "object" === typeof input3.values && null !== input3.values && false === Array.isArray(input3.values) && $io15(input3.values)) && true && ("object" === typeof input3.groupsetting && null !== input3.groupsetting && $io17(input3.groupsetting)) && "coord" === input3.kind && "string" === typeof input3.chr && "number" === typeof input3.start && "number" === typeof input3.stop;
|
|
143
120
|
const $io36 = (input3) => 1 === input3.dt && (Array.isArray(input3.mclassLst) && input3.mclassLst.every((elem) => "M" === elem || "E" === elem || "F" === elem || "N" === elem || "S" === elem || "D" === elem || "I" === elem || "P" === elem || "L" === elem || "Intron" === elem || "Blank" === elem || "WT" === elem || "ITD" === elem || "DEL" === elem || "NLOSS" === elem || "CLOSS" === elem || "Utr3" === elem || "Utr5" === elem || "X" === elem || "noncoding" === elem)) && (Array.isArray(input3.mclassExcludeLst) && input3.mclassExcludeLst.every((elem) => "M" === elem || "E" === elem || "F" === elem || "N" === elem || "S" === elem || "D" === elem || "I" === elem || "P" === elem || "L" === elem || "Intron" === elem || "Blank" === elem || "WT" === elem || "ITD" === elem || "DEL" === elem || "NLOSS" === elem || "CLOSS" === elem || "Utr3" === elem || "Utr5" === elem || "X" === elem || "noncoding" === elem)) && (void 0 === input3.origin || "somatic" === input3.origin || "germline" === input3.origin);
|
|
144
121
|
const $io37 = (input3) => 4 === input3.dt && (Array.isArray(input3.mclassLst) && input3.mclassLst.every((elem) => "Blank" === elem || "WT" === elem || "CNV_amp" === elem || "CNV_loss" === elem || "CNV_loh" === elem || "CNV_amplification" === elem || "CNV_homozygous_deletion" === elem)) && (Array.isArray(input3.mclassExcludeLst) && input3.mclassExcludeLst.every((elem) => "Blank" === elem || "WT" === elem || "CNV_amp" === elem || "CNV_loss" === elem || "CNV_loh" === elem || "CNV_amplification" === elem || "CNV_homozygous_deletion" === elem)) && (void 0 === input3.origin || "somatic" === input3.origin || "germline" === input3.origin);
|
|
145
122
|
const $io38 = (input3) => 5 === input3.dt && (Array.isArray(input3.mclassLst) && input3.mclassLst.every((elem) => "Blank" === elem || "WT" === elem || "SV" === elem)) && (Array.isArray(input3.mclassExcludeLst) && input3.mclassExcludeLst.every((elem) => "Blank" === elem || "WT" === elem || "SV" === elem)) && (void 0 === input3.origin || "somatic" === input3.origin || "germline" === input3.origin);
|
|
146
123
|
const $io39 = (input3) => 2 === input3.dt && (Array.isArray(input3.mclassLst) && input3.mclassLst.every((elem) => "Blank" === elem || "WT" === elem || "Fuserna" === elem)) && (Array.isArray(input3.mclassExcludeLst) && input3.mclassExcludeLst.every((elem) => "Blank" === elem || "WT" === elem || "Fuserna" === elem)) && (void 0 === input3.origin || "somatic" === input3.origin || "germline" === input3.origin);
|
|
147
|
-
const $io40 = (input3) => (void 0 === input3.id || "string" === typeof input3.id) && "string" === typeof input3.$id && (void 0 === input3.isAtomic || true === input3.isAtomic) && true && (void 0 === input3.settings || "object" === typeof input3.settings && null !== input3.settings && false === Array.isArray(input3.settings) && $
|
|
148
|
-
const $io41 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $
|
|
149
|
-
const $io42 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $
|
|
150
|
-
const $io43 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $
|
|
124
|
+
const $io40 = (input3) => (void 0 === input3.id || "string" === typeof input3.id) && "string" === typeof input3.$id && (void 0 === input3.isAtomic || true === input3.isAtomic) && true && (void 0 === input3.settings || "object" === typeof input3.settings && null !== input3.settings && false === Array.isArray(input3.settings) && $io2(input3.settings)) && true && (void 0 === input3.minNumSamples || "number" === typeof input3.minNumSamples) && true && ("object" === typeof input3.term && null !== input3.term && $io21(input3.term)) && ("object" === typeof input3.q && null !== input3.q && $iu11(input3.q));
|
|
125
|
+
const $io41 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $io4(input3.hiddenValues)) && (void 0 === input3.isAtomic || true === input3.isAtomic) && (void 0 === input3.name || "string" === typeof input3.name) && (void 0 === input3.reuseId || "string" === typeof input3.reuseId) && "binary" === input3.mode && "custom-bin" === input3.type && (Array.isArray(input3.lst) && (input3.lst.length === 2 && ("object" === typeof input3.lst[0] && null !== input3.lst[0] && $iu4(input3.lst[0])) && ("object" === typeof input3.lst[1] && null !== input3.lst[1] && $iu5(input3.lst[1]))));
|
|
126
|
+
const $io42 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $io4(input3.hiddenValues)) && (void 0 === input3.isAtomic || true === input3.isAtomic) && (void 0 === input3.name || "string" === typeof input3.name) && (void 0 === input3.reuseId || "string" === typeof input3.reuseId) && "continuous" === input3.mode && (void 0 === input3.convert2ZScore || "boolean" === typeof input3.convert2ZScore) && (null !== input3.type && void 0 === input3.type);
|
|
127
|
+
const $io43 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $io4(input3.hiddenValues)) && (void 0 === input3.isAtomic || true === input3.isAtomic) && (void 0 === input3.name || "string" === typeof input3.name) && (void 0 === input3.reuseId || "string" === typeof input3.reuseId) && "spline" === input3.mode && (Array.isArray(input3.knots) && input3.knots.every((elem) => "object" === typeof elem && null !== elem && $io44(elem))) && (null !== input3.type && void 0 === input3.type);
|
|
151
128
|
const $io44 = (input3) => "number" === typeof input3.value;
|
|
152
|
-
const $io45 = (input3) => (void 0 === input3.id || "string" === typeof input3.id) && "string" === typeof input3.$id && (void 0 === input3.isAtomic || true === input3.isAtomic) && true && (void 0 === input3.settings || "object" === typeof input3.settings && null !== input3.settings && false === Array.isArray(input3.settings) && $
|
|
153
|
-
const $io46 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $
|
|
129
|
+
const $io45 = (input3) => (void 0 === input3.id || "string" === typeof input3.id) && "string" === typeof input3.$id && (void 0 === input3.isAtomic || true === input3.isAtomic) && true && (void 0 === input3.settings || "object" === typeof input3.settings && null !== input3.settings && false === Array.isArray(input3.settings) && $io2(input3.settings)) && true && (void 0 === input3.minNumSamples || "number" === typeof input3.minNumSamples) && true && ("object" === typeof input3.q && null !== input3.q && $io46(input3.q)) && ("object" === typeof input3.term && null !== input3.term && $io48(input3.term));
|
|
130
|
+
const $io46 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $io4(input3.hiddenValues)) && (void 0 === input3.isAtomic || "boolean" === typeof input3.isAtomic) && (void 0 === input3.name || "string" === typeof input3.name) && (void 0 === input3.mode || "discrete" === input3.mode || "binary" === input3.mode || "continuous" === input3.mode || "spline" === input3.mode || "cuminc" === input3.mode || "cox" === input3.mode) && (void 0 === input3.reuseId || "string" === typeof input3.reuseId) && (void 0 === input3.type || "values" === input3.type || "regular-bin" === input3.type || "custom-bin" === input3.type || "predefined-groupset" === input3.type || "custom-groupset" === input3.type || "custom-samplelst" === input3.type || "filter" === input3.type) && "number" === typeof input3.AFcutoff && "number" === typeof input3.alleleType && "string" === typeof input3.cacheid && true && "number" === typeof input3.geneticModel && true && (void 0 === input3.missingGenotype || "number" === typeof input3.missingGenotype) && "number" === typeof input3.numOfSampleWithAnyValidGT && ("object" === typeof input3.restrictAncestry && null !== input3.restrictAncestry && $io47(input3.restrictAncestry)) && true && true && ("object" === typeof input3.variant_filter && null !== input3.variant_filter && $io12(input3.variant_filter)) && "string" === typeof input3.chr && "number" === typeof input3.start && "number" === typeof input3.stop;
|
|
154
131
|
const $io47 = (input3) => "string" === typeof input3.name && ("object" === typeof input3.tvs && null !== input3.tvs && $iu12(input3.tvs));
|
|
155
|
-
const $io48 = (input3) => "string" === typeof input3.id && "string" === typeof input3.name && "string" === typeof input3.type && (void 0 === input3.child_types || Array.isArray(input3.child_types) && input3.child_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.hashtmldetail || "boolean" === typeof input3.hashtmldetail) && (void 0 === input3.included_types || Array.isArray(input3.included_types) && input3.included_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.isleaf || "boolean" === typeof input3.isleaf) && (void 0 === input3.values || "object" === typeof input3.values && null !== input3.values && false === Array.isArray(input3.values) && $io15(input3.values)) && (void 0 === input3.reachedVariantLimit || "boolean" === typeof input3.reachedVariantLimit) && (void 0 === input3.snps || Array.isArray(input3.snps) && input3.snps.every((elem) => "object" === typeof elem && null !== elem && $io49(elem)));
|
|
132
|
+
const $io48 = (input3) => "string" === typeof input3.id && "string" === typeof input3.name && "string" === typeof input3.type && (void 0 === input3.child_types || Array.isArray(input3.child_types) && input3.child_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.hashtmldetail || "boolean" === typeof input3.hashtmldetail) && (void 0 === input3.included_types || Array.isArray(input3.included_types) && input3.included_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.isleaf || "boolean" === typeof input3.isleaf) && (void 0 === input3.values || "object" === typeof input3.values && null !== input3.values && false === Array.isArray(input3.values) && $io15(input3.values)) && true && (void 0 === input3.reachedVariantLimit || "boolean" === typeof input3.reachedVariantLimit) && (void 0 === input3.snps || Array.isArray(input3.snps) && input3.snps.every((elem) => "object" === typeof elem && null !== elem && $io49(elem)));
|
|
156
133
|
const $io49 = (input3) => (void 0 === input3.altAlleles || Array.isArray(input3.altAlleles) && input3.altAlleles.every((elem) => "string" === typeof elem)) && (void 0 === input3.alleles || Array.isArray(input3.alleles) && input3.alleles.every((elem) => "object" === typeof elem && null !== elem && $io50(elem))) && "boolean" === typeof input3.effectAllele && (void 0 === input3.gt2count || "object" === typeof input3.gt2count && null !== input3.gt2count && $io51(input3.gt2count)) && (void 0 === input3.invalid || "boolean" === typeof input3.invalid) && (void 0 === input3.referenceAllele || "string" === typeof input3.referenceAllele) && "string" === typeof input3.rsid && "string" === typeof input3.snpid && true && (void 0 === input3.chr || "string" === typeof input3.chr) && (void 0 === input3.pos || "number" === typeof input3.pos);
|
|
157
134
|
const $io50 = (input3) => "string" === typeof input3.allele && "number" === typeof input3.count && "boolean" === typeof input3.isRef;
|
|
158
135
|
const $io51 = (input3) => "string" === typeof input3.k && ("string" === typeof input3.v || "number" === typeof input3.v);
|
|
159
|
-
const $io52 = (input3) => (void 0 === input3.id || "string" === typeof input3.id) && "string" === typeof input3.$id && (void 0 === input3.isAtomic || true === input3.isAtomic) && true && (void 0 === input3.settings || "object" === typeof input3.settings && null !== input3.settings && false === Array.isArray(input3.settings) && $
|
|
160
|
-
const $io53 = (input3) => "string" === typeof input3.id && "string" === typeof input3.name && "categorical" === input3.type && (void 0 === input3.child_types || Array.isArray(input3.child_types) && input3.child_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.hashtmldetail || "boolean" === typeof input3.hashtmldetail) && (void 0 === input3.included_types || Array.isArray(input3.included_types) && input3.included_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.isleaf || "boolean" === typeof input3.isleaf) && (void 0 === input3.values || "object" === typeof input3.values && null !== input3.values && false === Array.isArray(input3.values) && $io15(input3.values)) && ("object" === typeof input3.groupsetting && null !== input3.groupsetting && $iu8(input3.groupsetting));
|
|
161
|
-
const $io54 = (input3) => "string" === typeof input3.id && "string" === typeof input3.name && ("integer" === input3.type || "float" === input3.type || "geneExpression" === input3.type || "metaboliteIntensity" === input3.type) && (void 0 === input3.child_types || Array.isArray(input3.child_types) && input3.child_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.hashtmldetail || "boolean" === typeof input3.hashtmldetail) && (void 0 === input3.included_types || Array.isArray(input3.included_types) && input3.included_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.isleaf || "boolean" === typeof input3.isleaf) && (void 0 === input3.values || "object" === typeof input3.values && null !== input3.values && false === Array.isArray(input3.values) && $io15(input3.values)) && ("object" === typeof input3.bins && null !== input3.bins && $io22(input3.bins)) && (void 0 === input3.unit || "string" === typeof input3.unit) && (void 0 === input3.continuousColorScale || "object" === typeof input3.continuousColorScale && null !== input3.continuousColorScale && $io28(input3.continuousColorScale));
|
|
162
|
-
const $io55 = (input3) => "string" === typeof input3.id && "string" === typeof input3.name && "condition" === input3.type && (void 0 === input3.child_types || Array.isArray(input3.child_types) && input3.child_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.hashtmldetail || "boolean" === typeof input3.hashtmldetail) && (void 0 === input3.included_types || Array.isArray(input3.included_types) && input3.included_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.isleaf || "boolean" === typeof input3.isleaf) && (void 0 === input3.values || "object" === typeof input3.values && null !== input3.values && false === Array.isArray(input3.values) && $io15(input3.values));
|
|
163
|
-
const $io56 = (input3) => "string" === typeof input3.id && "string" === typeof input3.name && "geneVariant" === input3.type && (void 0 === input3.child_types || Array.isArray(input3.child_types) && input3.child_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.hashtmldetail || "boolean" === typeof input3.hashtmldetail) && (void 0 === input3.included_types || Array.isArray(input3.included_types) && input3.included_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.isleaf || "boolean" === typeof input3.isleaf) && (void 0 === input3.values || "object" === typeof input3.values && null !== input3.values && false === Array.isArray(input3.values) && $io15(input3.values)) && ("object" === typeof input3.groupsetting && null !== input3.groupsetting && $io17(input3.groupsetting)) && "gene" === input3.kind && "string" === typeof input3.gene && (void 0 === input3.chr || "string" === typeof input3.chr) && (void 0 === input3.start || "number" === typeof input3.start) && (void 0 === input3.stop || "number" === typeof input3.stop);
|
|
164
|
-
const $io57 = (input3) => "string" === typeof input3.id && "string" === typeof input3.name && "geneVariant" === input3.type && (void 0 === input3.child_types || Array.isArray(input3.child_types) && input3.child_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.hashtmldetail || "boolean" === typeof input3.hashtmldetail) && (void 0 === input3.included_types || Array.isArray(input3.included_types) && input3.included_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.isleaf || "boolean" === typeof input3.isleaf) && (void 0 === input3.values || "object" === typeof input3.values && null !== input3.values && false === Array.isArray(input3.values) && $io15(input3.values)) && ("object" === typeof input3.groupsetting && null !== input3.groupsetting && $io17(input3.groupsetting)) && "coord" === input3.kind && "string" === typeof input3.chr && "number" === typeof input3.start && "number" === typeof input3.stop;
|
|
165
|
-
const $io58 = (input3) => "string" === typeof input3.id && "string" === typeof input3.name && "string" === typeof input3.type && (void 0 === input3.child_types || Array.isArray(input3.child_types) && input3.child_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.hashtmldetail || "boolean" === typeof input3.hashtmldetail) && (void 0 === input3.included_types || Array.isArray(input3.included_types) && input3.included_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.isleaf || "boolean" === typeof input3.isleaf) && (void 0 === input3.values || "object" === typeof input3.values && null !== input3.values && false === Array.isArray(input3.values) && $io15(input3.values)) && (void 0 === input3.reachedVariantLimit || "boolean" === typeof input3.reachedVariantLimit) && (void 0 === input3.snps || Array.isArray(input3.snps) && input3.snps.every((elem) => "object" === typeof elem && null !== elem && $io49(elem)));
|
|
166
|
-
const $io59 = (input3) => "string" === typeof input3.id && "string" === typeof input3.name && "string" === typeof input3.type && (void 0 === input3.child_types || Array.isArray(input3.child_types) && input3.child_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.hashtmldetail || "boolean" === typeof input3.hashtmldetail) && (void 0 === input3.included_types || Array.isArray(input3.included_types) && input3.included_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.isleaf || "boolean" === typeof input3.isleaf) && (void 0 === input3.values || "object" === typeof input3.values && null !== input3.values && false === Array.isArray(input3.values) && $io60(input3.values));
|
|
136
|
+
const $io52 = (input3) => (void 0 === input3.id || "string" === typeof input3.id) && "string" === typeof input3.$id && (void 0 === input3.isAtomic || true === input3.isAtomic) && true && (void 0 === input3.settings || "object" === typeof input3.settings && null !== input3.settings && false === Array.isArray(input3.settings) && $io2(input3.settings)) && true && (void 0 === input3.minNumSamples || "number" === typeof input3.minNumSamples) && true && ("object" === typeof input3.term && null !== input3.term && $iu13(input3.term)) && ("object" === typeof input3.q && null !== input3.q && false === Array.isArray(input3.q) && $iu14(input3.q));
|
|
137
|
+
const $io53 = (input3) => "string" === typeof input3.id && "string" === typeof input3.name && "categorical" === input3.type && (void 0 === input3.child_types || Array.isArray(input3.child_types) && input3.child_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.hashtmldetail || "boolean" === typeof input3.hashtmldetail) && (void 0 === input3.included_types || Array.isArray(input3.included_types) && input3.included_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.isleaf || "boolean" === typeof input3.isleaf) && (void 0 === input3.values || "object" === typeof input3.values && null !== input3.values && false === Array.isArray(input3.values) && $io15(input3.values)) && true && ("object" === typeof input3.groupsetting && null !== input3.groupsetting && $iu8(input3.groupsetting));
|
|
138
|
+
const $io54 = (input3) => "string" === typeof input3.id && "string" === typeof input3.name && ("integer" === input3.type || "float" === input3.type || "geneExpression" === input3.type || "metaboliteIntensity" === input3.type) && (void 0 === input3.child_types || Array.isArray(input3.child_types) && input3.child_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.hashtmldetail || "boolean" === typeof input3.hashtmldetail) && (void 0 === input3.included_types || Array.isArray(input3.included_types) && input3.included_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.isleaf || "boolean" === typeof input3.isleaf) && (void 0 === input3.values || "object" === typeof input3.values && null !== input3.values && false === Array.isArray(input3.values) && $io15(input3.values)) && true && ("object" === typeof input3.bins && null !== input3.bins && $io22(input3.bins)) && (void 0 === input3.unit || "string" === typeof input3.unit) && (void 0 === input3.continuousColorScale || "object" === typeof input3.continuousColorScale && null !== input3.continuousColorScale && $io28(input3.continuousColorScale));
|
|
139
|
+
const $io55 = (input3) => "string" === typeof input3.id && "string" === typeof input3.name && "condition" === input3.type && (void 0 === input3.child_types || Array.isArray(input3.child_types) && input3.child_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.hashtmldetail || "boolean" === typeof input3.hashtmldetail) && (void 0 === input3.included_types || Array.isArray(input3.included_types) && input3.included_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.isleaf || "boolean" === typeof input3.isleaf) && (void 0 === input3.values || "object" === typeof input3.values && null !== input3.values && false === Array.isArray(input3.values) && $io15(input3.values)) && true;
|
|
140
|
+
const $io56 = (input3) => "string" === typeof input3.id && "string" === typeof input3.name && "geneVariant" === input3.type && (void 0 === input3.child_types || Array.isArray(input3.child_types) && input3.child_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.hashtmldetail || "boolean" === typeof input3.hashtmldetail) && (void 0 === input3.included_types || Array.isArray(input3.included_types) && input3.included_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.isleaf || "boolean" === typeof input3.isleaf) && (void 0 === input3.values || "object" === typeof input3.values && null !== input3.values && false === Array.isArray(input3.values) && $io15(input3.values)) && true && ("object" === typeof input3.groupsetting && null !== input3.groupsetting && $io17(input3.groupsetting)) && "gene" === input3.kind && "string" === typeof input3.gene && (void 0 === input3.chr || "string" === typeof input3.chr) && (void 0 === input3.start || "number" === typeof input3.start) && (void 0 === input3.stop || "number" === typeof input3.stop);
|
|
141
|
+
const $io57 = (input3) => "string" === typeof input3.id && "string" === typeof input3.name && "geneVariant" === input3.type && (void 0 === input3.child_types || Array.isArray(input3.child_types) && input3.child_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.hashtmldetail || "boolean" === typeof input3.hashtmldetail) && (void 0 === input3.included_types || Array.isArray(input3.included_types) && input3.included_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.isleaf || "boolean" === typeof input3.isleaf) && (void 0 === input3.values || "object" === typeof input3.values && null !== input3.values && false === Array.isArray(input3.values) && $io15(input3.values)) && true && ("object" === typeof input3.groupsetting && null !== input3.groupsetting && $io17(input3.groupsetting)) && "coord" === input3.kind && "string" === typeof input3.chr && "number" === typeof input3.start && "number" === typeof input3.stop;
|
|
142
|
+
const $io58 = (input3) => "string" === typeof input3.id && "string" === typeof input3.name && "string" === typeof input3.type && (void 0 === input3.child_types || Array.isArray(input3.child_types) && input3.child_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.hashtmldetail || "boolean" === typeof input3.hashtmldetail) && (void 0 === input3.included_types || Array.isArray(input3.included_types) && input3.included_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.isleaf || "boolean" === typeof input3.isleaf) && (void 0 === input3.values || "object" === typeof input3.values && null !== input3.values && false === Array.isArray(input3.values) && $io15(input3.values)) && true && (void 0 === input3.reachedVariantLimit || "boolean" === typeof input3.reachedVariantLimit) && (void 0 === input3.snps || Array.isArray(input3.snps) && input3.snps.every((elem) => "object" === typeof elem && null !== elem && $io49(elem)));
|
|
143
|
+
const $io59 = (input3) => "string" === typeof input3.id && "string" === typeof input3.name && "string" === typeof input3.type && (void 0 === input3.child_types || Array.isArray(input3.child_types) && input3.child_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.hashtmldetail || "boolean" === typeof input3.hashtmldetail) && (void 0 === input3.included_types || Array.isArray(input3.included_types) && input3.included_types.every((elem) => "string" === typeof elem)) && (void 0 === input3.isleaf || "boolean" === typeof input3.isleaf) && (void 0 === input3.values || "object" === typeof input3.values && null !== input3.values && false === Array.isArray(input3.values) && $io60(input3.values)) && true;
|
|
167
144
|
const $io60 = (input3) => Object.keys(input3).every((key) => {
|
|
168
145
|
const value = input3[key];
|
|
169
146
|
if (void 0 === value)
|
|
@@ -176,23 +153,24 @@ var validTermsByIdsResponse = (input) => {
|
|
|
176
153
|
});
|
|
177
154
|
const $io61 = (input3) => (void 0 === input3.key || "string" === typeof input3.key) && (void 0 === input3.uncomputable || "boolean" === typeof input3.uncomputable) && (void 0 === input3.label || "string" === typeof input3.label || "number" === typeof input3.label) && (void 0 === input3.order || "string" === typeof input3.order) && (void 0 === input3.color || "string" === typeof input3.color) && (void 0 === input3.group || "number" === typeof input3.group) && (void 0 === input3.filter || "object" === typeof input3.filter && null !== input3.filter && $io12(input3.filter)) && "string" === typeof input3.name && "boolean" === typeof input3.inuse && (Array.isArray(input3.list) && input3.list.every((elem) => "object" === typeof elem && null !== elem && $io62(elem))) && true;
|
|
178
155
|
const $io62 = (input3) => "string" === typeof input3.sampleId && "string" === typeof input3.sample;
|
|
179
|
-
const $io63 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $
|
|
180
|
-
const $io64 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $
|
|
181
|
-
const $io65 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $
|
|
182
|
-
const $io66 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $
|
|
183
|
-
const $io67 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $
|
|
184
|
-
const $io68 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $
|
|
185
|
-
const $io69 = (input3) =>
|
|
156
|
+
const $io63 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $io4(input3.hiddenValues)) && (void 0 === input3.isAtomic || "boolean" === typeof input3.isAtomic) && (void 0 === input3.name || "string" === typeof input3.name) && (void 0 === input3.mode || "discrete" === input3.mode || "binary" === input3.mode || "continuous" === input3.mode || "spline" === input3.mode || "cuminc" === input3.mode || "cox" === input3.mode) && (void 0 === input3.reuseId || "string" === typeof input3.reuseId) && (void 0 === input3.type || "values" === input3.type || "regular-bin" === input3.type || "custom-bin" === input3.type || "predefined-groupset" === input3.type || "custom-groupset" === input3.type || "custom-samplelst" === input3.type || "filter" === input3.type);
|
|
157
|
+
const $io64 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $io4(input3.hiddenValues)) && (void 0 === input3.isAtomic || "boolean" === typeof input3.isAtomic) && (void 0 === input3.name || "string" === typeof input3.name) && (void 0 === input3.mode || "discrete" === input3.mode || "binary" === input3.mode || "cuminc" === input3.mode || "cox" === input3.mode) && (void 0 === input3.reuseId || "string" === typeof input3.reuseId) && (void 0 === input3.type || "values" === input3.type) && (void 0 === input3.bar_by_children || "boolean" === typeof input3.bar_by_children) && (void 0 === input3.bar_by_grade || "boolean" === typeof input3.bar_by_grade) && (void 0 === input3.breaks || Array.isArray(input3.breaks) && input3.breaks.every((elem) => "number" === typeof elem)) && ("age" === input3.timeScale || "time" === input3.timeScale) && (void 0 === input3.value_by_max_grade || "boolean" === typeof input3.value_by_max_grade) && (void 0 === input3.value_by_most_recent || "boolean" === typeof input3.value_by_most_recent) && (void 0 === input3.value_by_computable_grade || "boolean" === typeof input3.value_by_computable_grade) && true;
|
|
158
|
+
const $io65 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $io4(input3.hiddenValues)) && (void 0 === input3.isAtomic || true === input3.isAtomic) && (void 0 === input3.name || "string" === typeof input3.name) && (void 0 === input3.reuseId || "string" === typeof input3.reuseId) && (void 0 === input3.cnvGainCutoff || "number" === typeof input3.cnvGainCutoff) && (void 0 === input3.cnvMaxLength || "number" === typeof input3.cnvMaxLength) && (void 0 === input3.cnvMinAbsValue || "number" === typeof input3.cnvMinAbsValue) && (void 0 === input3.cnvLossCutoff || "number" === typeof input3.cnvLossCutoff) && (Array.isArray(input3.exclude) && input3.exclude.every((elem) => "string" === typeof elem)) && (void 0 === input3.dt || "number" === typeof input3.dt) && (void 0 === input3.origin || "string" === typeof input3.origin) && (void 0 === input3.mode || "discrete" === input3.mode || "binary" === input3.mode) && "values" === input3.type;
|
|
159
|
+
const $io66 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $io4(input3.hiddenValues)) && (void 0 === input3.isAtomic || true === input3.isAtomic) && (void 0 === input3.name || "string" === typeof input3.name) && (void 0 === input3.reuseId || "string" === typeof input3.reuseId) && (void 0 === input3.cnvGainCutoff || "number" === typeof input3.cnvGainCutoff) && (void 0 === input3.cnvMaxLength || "number" === typeof input3.cnvMaxLength) && (void 0 === input3.cnvMinAbsValue || "number" === typeof input3.cnvMinAbsValue) && (void 0 === input3.cnvLossCutoff || "number" === typeof input3.cnvLossCutoff) && (Array.isArray(input3.exclude) && input3.exclude.every((elem) => "string" === typeof elem)) && (void 0 === input3.dt || "number" === typeof input3.dt) && (void 0 === input3.origin || "string" === typeof input3.origin) && (void 0 === input3.mode || "discrete" === input3.mode || "binary" === input3.mode || "continuous" === input3.mode || "spline" === input3.mode || "cuminc" === input3.mode || "cox" === input3.mode) && (void 0 === input3.type || "filter" === input3.type);
|
|
160
|
+
const $io67 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $io4(input3.hiddenValues)) && (void 0 === input3.isAtomic || true === input3.isAtomic) && (void 0 === input3.name || "string" === typeof input3.name) && (void 0 === input3.reuseId || "string" === typeof input3.reuseId) && (void 0 === input3.cnvGainCutoff || "number" === typeof input3.cnvGainCutoff) && (void 0 === input3.cnvMaxLength || "number" === typeof input3.cnvMaxLength) && (void 0 === input3.cnvMinAbsValue || "number" === typeof input3.cnvMinAbsValue) && (void 0 === input3.cnvLossCutoff || "number" === typeof input3.cnvLossCutoff) && (Array.isArray(input3.exclude) && input3.exclude.every((elem) => "string" === typeof elem)) && (void 0 === input3.dt || "number" === typeof input3.dt) && (void 0 === input3.origin || "string" === typeof input3.origin) && (void 0 === input3.mode || "discrete" === input3.mode || "binary" === input3.mode) && "predefined-groupset" === input3.type && "number" === typeof input3.predefined_groupset_idx;
|
|
161
|
+
const $io68 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $io4(input3.hiddenValues)) && (void 0 === input3.isAtomic || true === input3.isAtomic) && (void 0 === input3.name || "string" === typeof input3.name) && (void 0 === input3.reuseId || "string" === typeof input3.reuseId) && (void 0 === input3.cnvGainCutoff || "number" === typeof input3.cnvGainCutoff) && (void 0 === input3.cnvMaxLength || "number" === typeof input3.cnvMaxLength) && (void 0 === input3.cnvMinAbsValue || "number" === typeof input3.cnvMinAbsValue) && (void 0 === input3.cnvLossCutoff || "number" === typeof input3.cnvLossCutoff) && (Array.isArray(input3.exclude) && input3.exclude.every((elem) => "string" === typeof elem)) && (void 0 === input3.dt || "number" === typeof input3.dt) && (void 0 === input3.origin || "string" === typeof input3.origin) && (void 0 === input3.mode || "discrete" === input3.mode || "binary" === input3.mode) && "custom-groupset" === input3.type && ("object" === typeof input3.customset && null !== input3.customset && $io8(input3.customset));
|
|
162
|
+
const $io69 = (input3) => (void 0 === input3.hiddenValues || "object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) && $io4(input3.hiddenValues)) && (void 0 === input3.isAtomic || "boolean" === typeof input3.isAtomic) && (void 0 === input3.name || "string" === typeof input3.name) && (void 0 === input3.mode || "discrete" === input3.mode || "binary" === input3.mode || "continuous" === input3.mode || "spline" === input3.mode || "cuminc" === input3.mode || "cox" === input3.mode) && (void 0 === input3.reuseId || "string" === typeof input3.reuseId) && (void 0 === input3.type || "values" === input3.type || "regular-bin" === input3.type || "custom-bin" === input3.type || "predefined-groupset" === input3.type || "custom-groupset" === input3.type || "custom-samplelst" === input3.type || "filter" === input3.type) && ("object" === typeof input3.groups && null !== input3.groups && false === Array.isArray(input3.groups) && $io70(input3.groups));
|
|
163
|
+
const $io70 = (input3) => Object.keys(input3).every((key) => {
|
|
186
164
|
const value = input3[key];
|
|
187
165
|
if (void 0 === value)
|
|
188
166
|
return true;
|
|
189
167
|
if (RegExp(/(.*)/).test(key))
|
|
190
|
-
return "object" === typeof value && null !== value && $
|
|
168
|
+
return "object" === typeof value && null !== value && $io71(value);
|
|
191
169
|
if (RegExp(/^[+-]?\d+(?:\.\d+)?(?:[eE][+-]?\d+)?$/).test(key))
|
|
192
|
-
return "object" === typeof value && null !== value && $
|
|
170
|
+
return "object" === typeof value && null !== value && $io71(value);
|
|
193
171
|
return true;
|
|
194
172
|
});
|
|
195
|
-
const $
|
|
173
|
+
const $io71 = (input3) => "string" === typeof input3.name && "boolean" === typeof input3.inuse && (Array.isArray(input3.list) && input3.list.every((elem) => "object" === typeof elem && null !== elem && $io62(elem))) && true;
|
|
196
174
|
const $iu0 = (input3) => (() => {
|
|
197
175
|
if ("string" === typeof input3.type)
|
|
198
176
|
return $io9(input3);
|
|
@@ -249,7 +227,7 @@ var validTermsByIdsResponse = (input) => {
|
|
|
249
227
|
})();
|
|
250
228
|
const $iu6 = (input3) => (() => {
|
|
251
229
|
if (void 0 !== input3.type)
|
|
252
|
-
return $
|
|
230
|
+
return $io1(input3);
|
|
253
231
|
return (() => {
|
|
254
232
|
if ($io52(input3))
|
|
255
233
|
return $io52(input3);
|
|
@@ -262,12 +240,12 @@ var validTermsByIdsResponse = (input) => {
|
|
|
262
240
|
})();
|
|
263
241
|
const $iu7 = (input3) => (() => {
|
|
264
242
|
if ("values" === input3.type)
|
|
265
|
-
return $
|
|
243
|
+
return $io3(input3);
|
|
266
244
|
if ("predefined-groupset" === input3.type)
|
|
267
245
|
return $io6(input3);
|
|
268
246
|
if ("custom-groupset" === input3.type)
|
|
269
247
|
return $io7(input3);
|
|
270
|
-
return
|
|
248
|
+
return $io5(input3);
|
|
271
249
|
})();
|
|
272
250
|
const $iu8 = (input3) => (() => {
|
|
273
251
|
if (Array.isArray(input3.lst) && input3.lst.every((elem) => "object" === typeof elem && null !== elem && $io18(elem)))
|
|
@@ -346,10 +324,14 @@ var validTermsByIdsResponse = (input) => {
|
|
|
346
324
|
return $io64(input3);
|
|
347
325
|
return (() => {
|
|
348
326
|
if (void 0 !== input3.groups)
|
|
349
|
-
return $
|
|
327
|
+
return $io69(input3);
|
|
350
328
|
return (() => {
|
|
351
|
-
if ($
|
|
352
|
-
return $
|
|
329
|
+
if ($io5(input3))
|
|
330
|
+
return $io5(input3);
|
|
331
|
+
if ($io63(input3))
|
|
332
|
+
return $io63(input3);
|
|
333
|
+
if ($io3(input3))
|
|
334
|
+
return $io3(input3);
|
|
353
335
|
if ($io6(input3))
|
|
354
336
|
return $io6(input3);
|
|
355
337
|
if ($io7(input3))
|
|
@@ -360,14 +342,14 @@ var validTermsByIdsResponse = (input) => {
|
|
|
360
342
|
return $io41(input3);
|
|
361
343
|
if ($io42(input3))
|
|
362
344
|
return $io42(input3);
|
|
363
|
-
if ($io63(input3))
|
|
364
|
-
return $io63(input3);
|
|
365
|
-
if ($io65(input3))
|
|
366
|
-
return $io65(input3);
|
|
367
345
|
if ($io66(input3))
|
|
368
346
|
return $io66(input3);
|
|
347
|
+
if ($io65(input3))
|
|
348
|
+
return $io65(input3);
|
|
369
349
|
if ($io67(input3))
|
|
370
350
|
return $io67(input3);
|
|
351
|
+
if ($io68(input3))
|
|
352
|
+
return $io68(input3);
|
|
371
353
|
return false;
|
|
372
354
|
})();
|
|
373
355
|
})();
|
|
@@ -378,32 +360,40 @@ var validTermsByIdsResponse = (input) => {
|
|
|
378
360
|
const $report = import_typia.createValidate.report(errors);
|
|
379
361
|
((input2, _path, _exceptionable = true) => {
|
|
380
362
|
const $join = import_typia.createValidate.join;
|
|
381
|
-
const $vo0 = (input3, _path2, _exceptionable2 = true) => [
|
|
382
|
-
path: _path2 + ".
|
|
383
|
-
expected: "
|
|
384
|
-
value: input3.
|
|
385
|
-
})
|
|
386
|
-
path: _path2 + ".
|
|
387
|
-
expected: "
|
|
388
|
-
value: input3.
|
|
389
|
-
})
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
}).
|
|
406
|
-
|
|
363
|
+
const $vo0 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.genome || $report(_exceptionable2, {
|
|
364
|
+
path: _path2 + ".genome",
|
|
365
|
+
expected: "string",
|
|
366
|
+
value: input3.genome
|
|
367
|
+
}), "string" === typeof input3.dslabel || $report(_exceptionable2, {
|
|
368
|
+
path: _path2 + ".dslabel",
|
|
369
|
+
expected: "string",
|
|
370
|
+
value: input3.dslabel
|
|
371
|
+
}), "string" === typeof input3.embedder || $report(_exceptionable2, {
|
|
372
|
+
path: _path2 + ".embedder",
|
|
373
|
+
expected: "string",
|
|
374
|
+
value: input3.embedder
|
|
375
|
+
}), ("object" === typeof input3.tw && null !== input3.tw || $report(_exceptionable2, {
|
|
376
|
+
path: _path2 + ".tw",
|
|
377
|
+
expected: "(BaseTW & { term: Term; q: Q; } | CategoricalTW | NumericTW | SnpsTW)",
|
|
378
|
+
value: input3.tw
|
|
379
|
+
})) && $vu6(input3.tw, _path2 + ".tw", _exceptionable2) || $report(_exceptionable2, {
|
|
380
|
+
path: _path2 + ".tw",
|
|
381
|
+
expected: "(BaseTW & { term: Term; q: Q; } | CategoricalTW | NumericTW | SnpsTW)",
|
|
382
|
+
value: input3.tw
|
|
383
|
+
}), void 0 === input3.logScale || "boolean" === typeof input3.logScale || $report(_exceptionable2, {
|
|
384
|
+
path: _path2 + ".logScale",
|
|
385
|
+
expected: "(boolean | undefined)",
|
|
386
|
+
value: input3.logScale
|
|
387
|
+
}), void 0 === input3.filter || ("object" === typeof input3.filter && null !== input3.filter || $report(_exceptionable2, {
|
|
388
|
+
path: _path2 + ".filter",
|
|
389
|
+
expected: "(Filter | undefined)",
|
|
390
|
+
value: input3.filter
|
|
391
|
+
})) && $vo12(input3.filter, _path2 + ".filter", _exceptionable2) || $report(_exceptionable2, {
|
|
392
|
+
path: _path2 + ".filter",
|
|
393
|
+
expected: "(Filter | undefined)",
|
|
394
|
+
value: input3.filter
|
|
395
|
+
}), true].every((flag) => flag);
|
|
396
|
+
const $vo1 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.id || "string" === typeof input3.id || $report(_exceptionable2, {
|
|
407
397
|
path: _path2 + ".id",
|
|
408
398
|
expected: "(string | undefined)",
|
|
409
399
|
value: input3.id
|
|
@@ -417,11 +407,11 @@ var validTermsByIdsResponse = (input) => {
|
|
|
417
407
|
value: input3.isAtomic
|
|
418
408
|
}), true, void 0 === input3.settings || ("object" === typeof input3.settings && null !== input3.settings && false === Array.isArray(input3.settings) || $report(_exceptionable2, {
|
|
419
409
|
path: _path2 + ".settings",
|
|
420
|
-
expected: "(__type
|
|
410
|
+
expected: "(__type | undefined)",
|
|
421
411
|
value: input3.settings
|
|
422
|
-
})) && $
|
|
412
|
+
})) && $vo2(input3.settings, _path2 + ".settings", _exceptionable2) || $report(_exceptionable2, {
|
|
423
413
|
path: _path2 + ".settings",
|
|
424
|
-
expected: "(__type
|
|
414
|
+
expected: "(__type | undefined)",
|
|
425
415
|
value: input3.settings
|
|
426
416
|
}), true, void 0 === input3.minNumSamples || "number" === typeof input3.minNumSamples || $report(_exceptionable2, {
|
|
427
417
|
path: _path2 + ".minNumSamples",
|
|
@@ -431,13 +421,13 @@ var validTermsByIdsResponse = (input) => {
|
|
|
431
421
|
path: _path2 + ".type",
|
|
432
422
|
expected: '("CatTWCustomGS" | "CatTWPredefinedGS" | "CatTWValues")',
|
|
433
423
|
value: input3.type
|
|
434
|
-
}), ("object" === typeof input3.q && null !== input3.q || $report(_exceptionable2, {
|
|
424
|
+
}), ("object" === typeof input3.q && null !== input3.q && false === Array.isArray(input3.q) || $report(_exceptionable2, {
|
|
435
425
|
path: _path2 + ".q",
|
|
436
|
-
expected: "(CustomGroupSettingQ | PredefinedGroupSettingQ | ValuesQ)",
|
|
426
|
+
expected: "(CustomGroupSettingQ | FilterQ | PredefinedGroupSettingQ | ValuesQ)",
|
|
437
427
|
value: input3.q
|
|
438
428
|
})) && $vu7(input3.q, _path2 + ".q", _exceptionable2) || $report(_exceptionable2, {
|
|
439
429
|
path: _path2 + ".q",
|
|
440
|
-
expected: "(CustomGroupSettingQ | PredefinedGroupSettingQ | ValuesQ)",
|
|
430
|
+
expected: "(CustomGroupSettingQ | FilterQ | PredefinedGroupSettingQ | ValuesQ)",
|
|
441
431
|
value: input3.q
|
|
442
432
|
}), ("object" === typeof input3.term && null !== input3.term || $report(_exceptionable2, {
|
|
443
433
|
path: _path2 + ".term",
|
|
@@ -448,7 +438,7 @@ var validTermsByIdsResponse = (input) => {
|
|
|
448
438
|
expected: "CategoricalTerm",
|
|
449
439
|
value: input3.term
|
|
450
440
|
})].every((flag) => flag);
|
|
451
|
-
const $
|
|
441
|
+
const $vo2 = (input3, _path2, _exceptionable2 = true) => [false === _exceptionable2 || Object.keys(input3).map((key) => {
|
|
452
442
|
const value = input3[key];
|
|
453
443
|
if (void 0 === value)
|
|
454
444
|
return true;
|
|
@@ -456,11 +446,11 @@ var validTermsByIdsResponse = (input) => {
|
|
|
456
446
|
return true;
|
|
457
447
|
return true;
|
|
458
448
|
}).every((flag) => flag)].every((flag) => flag);
|
|
459
|
-
const $
|
|
449
|
+
const $vo3 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.hiddenValues || ("object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) || $report(_exceptionable2, {
|
|
460
450
|
path: _path2 + ".hiddenValues",
|
|
461
451
|
expected: "(HiddenValues | undefined)",
|
|
462
452
|
value: input3.hiddenValues
|
|
463
|
-
})) && $
|
|
453
|
+
})) && $vo4(input3.hiddenValues, _path2 + ".hiddenValues", _exceptionable2) || $report(_exceptionable2, {
|
|
464
454
|
path: _path2 + ".hiddenValues",
|
|
465
455
|
expected: "(HiddenValues | undefined)",
|
|
466
456
|
value: input3.hiddenValues
|
|
@@ -485,7 +475,7 @@ var validTermsByIdsResponse = (input) => {
|
|
|
485
475
|
expected: '"values"',
|
|
486
476
|
value: input3.type
|
|
487
477
|
})].every((flag) => flag);
|
|
488
|
-
const $
|
|
478
|
+
const $vo4 = (input3, _path2, _exceptionable2 = true) => [false === _exceptionable2 || Object.keys(input3).map((key) => {
|
|
489
479
|
const value = input3[key];
|
|
490
480
|
if (void 0 === value)
|
|
491
481
|
return true;
|
|
@@ -497,11 +487,40 @@ var validTermsByIdsResponse = (input) => {
|
|
|
497
487
|
});
|
|
498
488
|
return true;
|
|
499
489
|
}).every((flag) => flag)].every((flag) => flag);
|
|
490
|
+
const $vo5 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.hiddenValues || ("object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) || $report(_exceptionable2, {
|
|
491
|
+
path: _path2 + ".hiddenValues",
|
|
492
|
+
expected: "(HiddenValues | undefined)",
|
|
493
|
+
value: input3.hiddenValues
|
|
494
|
+
})) && $vo4(input3.hiddenValues, _path2 + ".hiddenValues", _exceptionable2) || $report(_exceptionable2, {
|
|
495
|
+
path: _path2 + ".hiddenValues",
|
|
496
|
+
expected: "(HiddenValues | undefined)",
|
|
497
|
+
value: input3.hiddenValues
|
|
498
|
+
}), void 0 === input3.isAtomic || "boolean" === typeof input3.isAtomic || $report(_exceptionable2, {
|
|
499
|
+
path: _path2 + ".isAtomic",
|
|
500
|
+
expected: "(boolean | undefined)",
|
|
501
|
+
value: input3.isAtomic
|
|
502
|
+
}), void 0 === input3.name || "string" === typeof input3.name || $report(_exceptionable2, {
|
|
503
|
+
path: _path2 + ".name",
|
|
504
|
+
expected: "(string | undefined)",
|
|
505
|
+
value: input3.name
|
|
506
|
+
}), void 0 === input3.mode || "discrete" === input3.mode || "binary" === input3.mode || "continuous" === input3.mode || "spline" === input3.mode || "cuminc" === input3.mode || "cox" === input3.mode || $report(_exceptionable2, {
|
|
507
|
+
path: _path2 + ".mode",
|
|
508
|
+
expected: '("binary" | "continuous" | "cox" | "cuminc" | "discrete" | "spline" | undefined)',
|
|
509
|
+
value: input3.mode
|
|
510
|
+
}), void 0 === input3.reuseId || "string" === typeof input3.reuseId || $report(_exceptionable2, {
|
|
511
|
+
path: _path2 + ".reuseId",
|
|
512
|
+
expected: "(string | undefined)",
|
|
513
|
+
value: input3.reuseId
|
|
514
|
+
}), void 0 === input3.type || "filter" === input3.type || $report(_exceptionable2, {
|
|
515
|
+
path: _path2 + ".type",
|
|
516
|
+
expected: '("filter" | undefined)',
|
|
517
|
+
value: input3.type
|
|
518
|
+
})].every((flag) => flag);
|
|
500
519
|
const $vo6 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.hiddenValues || ("object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) || $report(_exceptionable2, {
|
|
501
520
|
path: _path2 + ".hiddenValues",
|
|
502
521
|
expected: "(HiddenValues | undefined)",
|
|
503
522
|
value: input3.hiddenValues
|
|
504
|
-
})) && $
|
|
523
|
+
})) && $vo4(input3.hiddenValues, _path2 + ".hiddenValues", _exceptionable2) || $report(_exceptionable2, {
|
|
505
524
|
path: _path2 + ".hiddenValues",
|
|
506
525
|
expected: "(HiddenValues | undefined)",
|
|
507
526
|
value: input3.hiddenValues
|
|
@@ -534,7 +553,7 @@ var validTermsByIdsResponse = (input) => {
|
|
|
534
553
|
path: _path2 + ".hiddenValues",
|
|
535
554
|
expected: "(HiddenValues | undefined)",
|
|
536
555
|
value: input3.hiddenValues
|
|
537
|
-
})) && $
|
|
556
|
+
})) && $vo4(input3.hiddenValues, _path2 + ".hiddenValues", _exceptionable2) || $report(_exceptionable2, {
|
|
538
557
|
path: _path2 + ".hiddenValues",
|
|
539
558
|
expected: "(HiddenValues | undefined)",
|
|
540
559
|
value: input3.hiddenValues
|
|
@@ -598,11 +617,11 @@ var validTermsByIdsResponse = (input) => {
|
|
|
598
617
|
value: input3.values
|
|
599
618
|
})) && input3.values.map((elem, _index2) => ("object" === typeof elem && null !== elem || $report(_exceptionable2, {
|
|
600
619
|
path: _path2 + ".values[" + _index2 + "]",
|
|
601
|
-
expected: "__type.
|
|
620
|
+
expected: "__type.o1",
|
|
602
621
|
value: elem
|
|
603
622
|
})) && $vo10(elem, _path2 + ".values[" + _index2 + "]", _exceptionable2) || $report(_exceptionable2, {
|
|
604
623
|
path: _path2 + ".values[" + _index2 + "]",
|
|
605
|
-
expected: "__type.
|
|
624
|
+
expected: "__type.o1",
|
|
606
625
|
value: elem
|
|
607
626
|
})).every((flag) => flag) || $report(_exceptionable2, {
|
|
608
627
|
path: _path2 + ".values",
|
|
@@ -638,6 +657,10 @@ var validTermsByIdsResponse = (input) => {
|
|
|
638
657
|
path: _path2 + ".filter",
|
|
639
658
|
expected: "Filter",
|
|
640
659
|
value: input3.filter
|
|
660
|
+
}), void 0 === input3.uncomputable || "boolean" === typeof input3.uncomputable || $report(_exceptionable2, {
|
|
661
|
+
path: _path2 + ".uncomputable",
|
|
662
|
+
expected: "(boolean | undefined)",
|
|
663
|
+
value: input3.uncomputable
|
|
641
664
|
})].every((flag) => flag);
|
|
642
665
|
const $vo12 = (input3, _path2, _exceptionable2 = true) => ["lst" === input3.type || $report(_exceptionable2, {
|
|
643
666
|
path: _path2 + ".type",
|
|
@@ -761,13 +784,13 @@ var validTermsByIdsResponse = (input) => {
|
|
|
761
784
|
path: _path2 + ".values",
|
|
762
785
|
expected: "(TermValues | undefined)",
|
|
763
786
|
value: input3.values
|
|
764
|
-
}), ("object" === typeof input3.groupsetting && null !== input3.groupsetting || $report(_exceptionable2, {
|
|
787
|
+
}), true, ("object" === typeof input3.groupsetting && null !== input3.groupsetting || $report(_exceptionable2, {
|
|
765
788
|
path: _path2 + ".groupsetting",
|
|
766
|
-
expected: "(EnabledTermGroupSetting | __type.
|
|
789
|
+
expected: "(EnabledTermGroupSetting | __type.o2)",
|
|
767
790
|
value: input3.groupsetting
|
|
768
791
|
})) && $vu8(input3.groupsetting, _path2 + ".groupsetting", _exceptionable2) || $report(_exceptionable2, {
|
|
769
792
|
path: _path2 + ".groupsetting",
|
|
770
|
-
expected: "(EnabledTermGroupSetting | __type.
|
|
793
|
+
expected: "(EnabledTermGroupSetting | __type.o2)",
|
|
771
794
|
value: input3.groupsetting
|
|
772
795
|
})].every((flag) => flag);
|
|
773
796
|
const $vo15 = (input3, _path2, _exceptionable2 = true) => [false === _exceptionable2 || Object.keys(input3).map((key) => {
|
|
@@ -934,11 +957,11 @@ var validTermsByIdsResponse = (input) => {
|
|
|
934
957
|
value: input3.values
|
|
935
958
|
})) && input3.values.map((elem, _index10) => ("object" === typeof elem && null !== elem || $report(_exceptionable2, {
|
|
936
959
|
path: _path2 + ".values[" + _index10 + "]",
|
|
937
|
-
expected: "__type.
|
|
960
|
+
expected: "__type.o4",
|
|
938
961
|
value: elem
|
|
939
962
|
})) && $vo29(elem, _path2 + ".values[" + _index10 + "]", _exceptionable2) || $report(_exceptionable2, {
|
|
940
963
|
path: _path2 + ".values[" + _index10 + "]",
|
|
941
|
-
expected: "__type.
|
|
964
|
+
expected: "__type.o4",
|
|
942
965
|
value: elem
|
|
943
966
|
})).every((flag) => flag) || $report(_exceptionable2, {
|
|
944
967
|
path: _path2 + ".values",
|
|
@@ -997,7 +1020,7 @@ var validTermsByIdsResponse = (input) => {
|
|
|
997
1020
|
path: _path2 + ".values",
|
|
998
1021
|
expected: "(TermValues | undefined)",
|
|
999
1022
|
value: input3.values
|
|
1000
|
-
}), ("object" === typeof input3.bins && null !== input3.bins || $report(_exceptionable2, {
|
|
1023
|
+
}), true, ("object" === typeof input3.bins && null !== input3.bins || $report(_exceptionable2, {
|
|
1001
1024
|
path: _path2 + ".bins",
|
|
1002
1025
|
expected: "PresetNumericBins",
|
|
1003
1026
|
value: input3.bins
|
|
@@ -1011,11 +1034,11 @@ var validTermsByIdsResponse = (input) => {
|
|
|
1011
1034
|
value: input3.unit
|
|
1012
1035
|
}), void 0 === input3.continuousColorScale || ("object" === typeof input3.continuousColorScale && null !== input3.continuousColorScale || $report(_exceptionable2, {
|
|
1013
1036
|
path: _path2 + ".continuousColorScale",
|
|
1014
|
-
expected: "(__type.
|
|
1037
|
+
expected: "(__type.o3 | undefined)",
|
|
1015
1038
|
value: input3.continuousColorScale
|
|
1016
1039
|
})) && $vo28(input3.continuousColorScale, _path2 + ".continuousColorScale", _exceptionable2) || $report(_exceptionable2, {
|
|
1017
1040
|
path: _path2 + ".continuousColorScale",
|
|
1018
|
-
expected: "(__type.
|
|
1041
|
+
expected: "(__type.o3 | undefined)",
|
|
1019
1042
|
value: input3.continuousColorScale
|
|
1020
1043
|
})].every((flag) => flag);
|
|
1021
1044
|
const $vo22 = (input3, _path2, _exceptionable2 = true) => [("object" === typeof input3["default"] && null !== input3["default"] || $report(_exceptionable2, {
|
|
@@ -1059,7 +1082,7 @@ var validTermsByIdsResponse = (input) => {
|
|
|
1059
1082
|
path: _path2 + ".hiddenValues",
|
|
1060
1083
|
expected: "(HiddenValues | undefined)",
|
|
1061
1084
|
value: input3.hiddenValues
|
|
1062
|
-
})) && $
|
|
1085
|
+
})) && $vo4(input3.hiddenValues, _path2 + ".hiddenValues", _exceptionable2) || $report(_exceptionable2, {
|
|
1063
1086
|
path: _path2 + ".hiddenValues",
|
|
1064
1087
|
expected: "(HiddenValues | undefined)",
|
|
1065
1088
|
value: input3.hiddenValues
|
|
@@ -1191,7 +1214,7 @@ var validTermsByIdsResponse = (input) => {
|
|
|
1191
1214
|
path: _path2 + ".hiddenValues",
|
|
1192
1215
|
expected: "(HiddenValues | undefined)",
|
|
1193
1216
|
value: input3.hiddenValues
|
|
1194
|
-
})) && $
|
|
1217
|
+
})) && $vo4(input3.hiddenValues, _path2 + ".hiddenValues", _exceptionable2) || $report(_exceptionable2, {
|
|
1195
1218
|
path: _path2 + ".hiddenValues",
|
|
1196
1219
|
expected: "(HiddenValues | undefined)",
|
|
1197
1220
|
value: input3.hiddenValues
|
|
@@ -1377,7 +1400,7 @@ var validTermsByIdsResponse = (input) => {
|
|
|
1377
1400
|
path: _path2 + ".values",
|
|
1378
1401
|
expected: "(TermValues | undefined)",
|
|
1379
1402
|
value: input3.values
|
|
1380
|
-
})].every((flag) => flag);
|
|
1403
|
+
}), true].every((flag) => flag);
|
|
1381
1404
|
const $vo32 = (input3, _path2, _exceptionable2 = true) => ["number" === typeof input3.grade || $report(_exceptionable2, {
|
|
1382
1405
|
path: _path2 + ".grade",
|
|
1383
1406
|
expected: "number",
|
|
@@ -1480,7 +1503,7 @@ var validTermsByIdsResponse = (input) => {
|
|
|
1480
1503
|
path: _path2 + ".values",
|
|
1481
1504
|
expected: "(TermValues | undefined)",
|
|
1482
1505
|
value: input3.values
|
|
1483
|
-
}), ("object" === typeof input3.groupsetting && null !== input3.groupsetting || $report(_exceptionable2, {
|
|
1506
|
+
}), true, ("object" === typeof input3.groupsetting && null !== input3.groupsetting || $report(_exceptionable2, {
|
|
1484
1507
|
path: _path2 + ".groupsetting",
|
|
1485
1508
|
expected: "EnabledTermGroupSetting",
|
|
1486
1509
|
value: input3.groupsetting
|
|
@@ -1561,7 +1584,7 @@ var validTermsByIdsResponse = (input) => {
|
|
|
1561
1584
|
path: _path2 + ".values",
|
|
1562
1585
|
expected: "(TermValues | undefined)",
|
|
1563
1586
|
value: input3.values
|
|
1564
|
-
}), ("object" === typeof input3.groupsetting && null !== input3.groupsetting || $report(_exceptionable2, {
|
|
1587
|
+
}), true, ("object" === typeof input3.groupsetting && null !== input3.groupsetting || $report(_exceptionable2, {
|
|
1565
1588
|
path: _path2 + ".groupsetting",
|
|
1566
1589
|
expected: "EnabledTermGroupSetting",
|
|
1567
1590
|
value: input3.groupsetting
|
|
@@ -1732,11 +1755,11 @@ var validTermsByIdsResponse = (input) => {
|
|
|
1732
1755
|
value: input3.isAtomic
|
|
1733
1756
|
}), true, void 0 === input3.settings || ("object" === typeof input3.settings && null !== input3.settings && false === Array.isArray(input3.settings) || $report(_exceptionable2, {
|
|
1734
1757
|
path: _path2 + ".settings",
|
|
1735
|
-
expected: "(__type
|
|
1758
|
+
expected: "(__type | undefined)",
|
|
1736
1759
|
value: input3.settings
|
|
1737
|
-
})) && $
|
|
1760
|
+
})) && $vo2(input3.settings, _path2 + ".settings", _exceptionable2) || $report(_exceptionable2, {
|
|
1738
1761
|
path: _path2 + ".settings",
|
|
1739
|
-
expected: "(__type
|
|
1762
|
+
expected: "(__type | undefined)",
|
|
1740
1763
|
value: input3.settings
|
|
1741
1764
|
}), true, void 0 === input3.minNumSamples || "number" === typeof input3.minNumSamples || $report(_exceptionable2, {
|
|
1742
1765
|
path: _path2 + ".minNumSamples",
|
|
@@ -1763,7 +1786,7 @@ var validTermsByIdsResponse = (input) => {
|
|
|
1763
1786
|
path: _path2 + ".hiddenValues",
|
|
1764
1787
|
expected: "(HiddenValues | undefined)",
|
|
1765
1788
|
value: input3.hiddenValues
|
|
1766
|
-
})) && $
|
|
1789
|
+
})) && $vo4(input3.hiddenValues, _path2 + ".hiddenValues", _exceptionable2) || $report(_exceptionable2, {
|
|
1767
1790
|
path: _path2 + ".hiddenValues",
|
|
1768
1791
|
expected: "(HiddenValues | undefined)",
|
|
1769
1792
|
value: input3.hiddenValues
|
|
@@ -1823,7 +1846,7 @@ var validTermsByIdsResponse = (input) => {
|
|
|
1823
1846
|
path: _path2 + ".hiddenValues",
|
|
1824
1847
|
expected: "(HiddenValues | undefined)",
|
|
1825
1848
|
value: input3.hiddenValues
|
|
1826
|
-
})) && $
|
|
1849
|
+
})) && $vo4(input3.hiddenValues, _path2 + ".hiddenValues", _exceptionable2) || $report(_exceptionable2, {
|
|
1827
1850
|
path: _path2 + ".hiddenValues",
|
|
1828
1851
|
expected: "(HiddenValues | undefined)",
|
|
1829
1852
|
value: input3.hiddenValues
|
|
@@ -1860,7 +1883,7 @@ var validTermsByIdsResponse = (input) => {
|
|
|
1860
1883
|
path: _path2 + ".hiddenValues",
|
|
1861
1884
|
expected: "(HiddenValues | undefined)",
|
|
1862
1885
|
value: input3.hiddenValues
|
|
1863
|
-
})) && $
|
|
1886
|
+
})) && $vo4(input3.hiddenValues, _path2 + ".hiddenValues", _exceptionable2) || $report(_exceptionable2, {
|
|
1864
1887
|
path: _path2 + ".hiddenValues",
|
|
1865
1888
|
expected: "(HiddenValues | undefined)",
|
|
1866
1889
|
value: input3.hiddenValues
|
|
@@ -1886,11 +1909,11 @@ var validTermsByIdsResponse = (input) => {
|
|
|
1886
1909
|
value: input3.knots
|
|
1887
1910
|
})) && input3.knots.map((elem, _index30) => ("object" === typeof elem && null !== elem || $report(_exceptionable2, {
|
|
1888
1911
|
path: _path2 + ".knots[" + _index30 + "]",
|
|
1889
|
-
expected: "__type.
|
|
1912
|
+
expected: "__type.o5",
|
|
1890
1913
|
value: elem
|
|
1891
1914
|
})) && $vo44(elem, _path2 + ".knots[" + _index30 + "]", _exceptionable2) || $report(_exceptionable2, {
|
|
1892
1915
|
path: _path2 + ".knots[" + _index30 + "]",
|
|
1893
|
-
expected: "__type.
|
|
1916
|
+
expected: "__type.o5",
|
|
1894
1917
|
value: elem
|
|
1895
1918
|
})).every((flag) => flag) || $report(_exceptionable2, {
|
|
1896
1919
|
path: _path2 + ".knots",
|
|
@@ -1924,11 +1947,11 @@ var validTermsByIdsResponse = (input) => {
|
|
|
1924
1947
|
value: input3.isAtomic
|
|
1925
1948
|
}), true, void 0 === input3.settings || ("object" === typeof input3.settings && null !== input3.settings && false === Array.isArray(input3.settings) || $report(_exceptionable2, {
|
|
1926
1949
|
path: _path2 + ".settings",
|
|
1927
|
-
expected: "(__type
|
|
1950
|
+
expected: "(__type | undefined)",
|
|
1928
1951
|
value: input3.settings
|
|
1929
|
-
})) && $
|
|
1952
|
+
})) && $vo2(input3.settings, _path2 + ".settings", _exceptionable2) || $report(_exceptionable2, {
|
|
1930
1953
|
path: _path2 + ".settings",
|
|
1931
|
-
expected: "(__type
|
|
1954
|
+
expected: "(__type | undefined)",
|
|
1932
1955
|
value: input3.settings
|
|
1933
1956
|
}), true, void 0 === input3.minNumSamples || "number" === typeof input3.minNumSamples || $report(_exceptionable2, {
|
|
1934
1957
|
path: _path2 + ".minNumSamples",
|
|
@@ -1955,7 +1978,7 @@ var validTermsByIdsResponse = (input) => {
|
|
|
1955
1978
|
path: _path2 + ".hiddenValues",
|
|
1956
1979
|
expected: "(HiddenValues | undefined)",
|
|
1957
1980
|
value: input3.hiddenValues
|
|
1958
|
-
})) && $
|
|
1981
|
+
})) && $vo4(input3.hiddenValues, _path2 + ".hiddenValues", _exceptionable2) || $report(_exceptionable2, {
|
|
1959
1982
|
path: _path2 + ".hiddenValues",
|
|
1960
1983
|
expected: "(HiddenValues | undefined)",
|
|
1961
1984
|
value: input3.hiddenValues
|
|
@@ -1975,9 +1998,9 @@ var validTermsByIdsResponse = (input) => {
|
|
|
1975
1998
|
path: _path2 + ".reuseId",
|
|
1976
1999
|
expected: "(string | undefined)",
|
|
1977
2000
|
value: input3.reuseId
|
|
1978
|
-
}), void 0 === input3.type || "values" === input3.type || "
|
|
2001
|
+
}), void 0 === input3.type || "values" === input3.type || "regular-bin" === input3.type || "custom-bin" === input3.type || "predefined-groupset" === input3.type || "custom-groupset" === input3.type || "custom-samplelst" === input3.type || "filter" === input3.type || $report(_exceptionable2, {
|
|
1979
2002
|
path: _path2 + ".type",
|
|
1980
|
-
expected: '("custom-bin" | "custom-groupset" | "custom-samplelst" | "predefined-groupset" | "regular-bin" | "values" | undefined)',
|
|
2003
|
+
expected: '("custom-bin" | "custom-groupset" | "custom-samplelst" | "filter" | "predefined-groupset" | "regular-bin" | "values" | undefined)',
|
|
1981
2004
|
value: input3.type
|
|
1982
2005
|
}), "number" === typeof input3.AFcutoff || $report(_exceptionable2, {
|
|
1983
2006
|
path: _path2 + ".AFcutoff",
|
|
@@ -2097,7 +2120,7 @@ var validTermsByIdsResponse = (input) => {
|
|
|
2097
2120
|
path: _path2 + ".values",
|
|
2098
2121
|
expected: "(TermValues | undefined)",
|
|
2099
2122
|
value: input3.values
|
|
2100
|
-
}), void 0 === input3.reachedVariantLimit || "boolean" === typeof input3.reachedVariantLimit || $report(_exceptionable2, {
|
|
2123
|
+
}), true, void 0 === input3.reachedVariantLimit || "boolean" === typeof input3.reachedVariantLimit || $report(_exceptionable2, {
|
|
2101
2124
|
path: _path2 + ".reachedVariantLimit",
|
|
2102
2125
|
expected: "(boolean | undefined)",
|
|
2103
2126
|
value: input3.reachedVariantLimit
|
|
@@ -2152,11 +2175,11 @@ var validTermsByIdsResponse = (input) => {
|
|
|
2152
2175
|
value: input3.effectAllele
|
|
2153
2176
|
}), void 0 === input3.gt2count || ("object" === typeof input3.gt2count && null !== input3.gt2count || $report(_exceptionable2, {
|
|
2154
2177
|
path: _path2 + ".gt2count",
|
|
2155
|
-
expected: "(__type.
|
|
2178
|
+
expected: "(__type.o6 | undefined)",
|
|
2156
2179
|
value: input3.gt2count
|
|
2157
2180
|
})) && $vo51(input3.gt2count, _path2 + ".gt2count", _exceptionable2) || $report(_exceptionable2, {
|
|
2158
2181
|
path: _path2 + ".gt2count",
|
|
2159
|
-
expected: "(__type.
|
|
2182
|
+
expected: "(__type.o6 | undefined)",
|
|
2160
2183
|
value: input3.gt2count
|
|
2161
2184
|
}), void 0 === input3.invalid || "boolean" === typeof input3.invalid || $report(_exceptionable2, {
|
|
2162
2185
|
path: _path2 + ".invalid",
|
|
@@ -2219,11 +2242,11 @@ var validTermsByIdsResponse = (input) => {
|
|
|
2219
2242
|
value: input3.isAtomic
|
|
2220
2243
|
}), true, void 0 === input3.settings || ("object" === typeof input3.settings && null !== input3.settings && false === Array.isArray(input3.settings) || $report(_exceptionable2, {
|
|
2221
2244
|
path: _path2 + ".settings",
|
|
2222
|
-
expected: "(__type
|
|
2245
|
+
expected: "(__type | undefined)",
|
|
2223
2246
|
value: input3.settings
|
|
2224
|
-
})) && $
|
|
2247
|
+
})) && $vo2(input3.settings, _path2 + ".settings", _exceptionable2) || $report(_exceptionable2, {
|
|
2225
2248
|
path: _path2 + ".settings",
|
|
2226
|
-
expected: "(__type
|
|
2249
|
+
expected: "(__type | undefined)",
|
|
2227
2250
|
value: input3.settings
|
|
2228
2251
|
}), true, void 0 === input3.minNumSamples || "number" === typeof input3.minNumSamples || $report(_exceptionable2, {
|
|
2229
2252
|
path: _path2 + ".minNumSamples",
|
|
@@ -2239,11 +2262,11 @@ var validTermsByIdsResponse = (input) => {
|
|
|
2239
2262
|
value: input3.term
|
|
2240
2263
|
}), ("object" === typeof input3.q && null !== input3.q && false === Array.isArray(input3.q) || $report(_exceptionable2, {
|
|
2241
2264
|
path: _path2 + ".q",
|
|
2242
|
-
expected: "(BaseQ | BinaryNumericQ | ConditionQ | ContinuousNumericQ | CustomGroupSettingQ | CustomNumericBinConfig | MinBaseQ & { cnvGainCutoff?: number | undefined; cnvMaxLength?: number | undefined; cnvMinAbsValue?: number | undefined; cnvLossCutoff?: number | undefined; exclude: string[]; dt?: number | undefined; origin?: string | undefined; } & { ...; } & { ...; } | MinBaseQ & { cnvGainCutoff?: number | undefined; cnvMaxLength?: number | undefined; cnvMinAbsValue?: number | undefined; cnvLossCutoff?: number | undefined; exclude: string[]; dt?: number | undefined; origin?: string | undefined; } & { ...; } & { ...; }.o1 | MinBaseQ & { cnvGainCutoff?: number | undefined; cnvMaxLength?: number | undefined; cnvMinAbsValue?: number | undefined; cnvLossCutoff?: number | undefined; exclude: string[]; dt?: number | undefined; origin?: string | undefined; } & { ...; } & { ...; }.o2 | PredefinedGroupSettingQ | RegularNumericBinConfig | SampleLstQ | SnpsQ | SplineNumericQ | ValuesQ)",
|
|
2265
|
+
expected: "(BaseQ | BinaryNumericQ | ConditionQ | ContinuousNumericQ | CustomGroupSettingQ | CustomNumericBinConfig | FilterQ | MinBaseQ & { cnvGainCutoff?: number | undefined; cnvMaxLength?: number | undefined; cnvMinAbsValue?: number | undefined; cnvLossCutoff?: number | undefined; exclude: string[]; dt?: number | undefined; origin?: string | undefined; } & BaseQ & { ...; } | MinBaseQ & { cnvGainCutoff?: number | undefined; cnvMaxLength?: number | undefined; cnvMinAbsValue?: number | undefined; cnvLossCutoff?: number | undefined; exclude: string[]; dt?: number | undefined; origin?: string | undefined; } & { ...; } & { ...; } | MinBaseQ & { cnvGainCutoff?: number | undefined; cnvMaxLength?: number | undefined; cnvMinAbsValue?: number | undefined; cnvLossCutoff?: number | undefined; exclude: string[]; dt?: number | undefined; origin?: string | undefined; } & { ...; } & { ...; }.o1 | MinBaseQ & { cnvGainCutoff?: number | undefined; cnvMaxLength?: number | undefined; cnvMinAbsValue?: number | undefined; cnvLossCutoff?: number | undefined; exclude: string[]; dt?: number | undefined; origin?: string | undefined; } & { ...; } & { ...; }.o2 | PredefinedGroupSettingQ | RegularNumericBinConfig | SampleLstQ | SnpsQ | SplineNumericQ | ValuesQ)",
|
|
2243
2266
|
value: input3.q
|
|
2244
2267
|
})) && $vu14(input3.q, _path2 + ".q", _exceptionable2) || $report(_exceptionable2, {
|
|
2245
2268
|
path: _path2 + ".q",
|
|
2246
|
-
expected: "(BaseQ | BinaryNumericQ | ConditionQ | ContinuousNumericQ | CustomGroupSettingQ | CustomNumericBinConfig | MinBaseQ & { cnvGainCutoff?: number | undefined; cnvMaxLength?: number | undefined; cnvMinAbsValue?: number | undefined; cnvLossCutoff?: number | undefined; exclude: string[]; dt?: number | undefined; origin?: string | undefined; } & { ...; } & { ...; } | MinBaseQ & { cnvGainCutoff?: number | undefined; cnvMaxLength?: number | undefined; cnvMinAbsValue?: number | undefined; cnvLossCutoff?: number | undefined; exclude: string[]; dt?: number | undefined; origin?: string | undefined; } & { ...; } & { ...; }.o1 | MinBaseQ & { cnvGainCutoff?: number | undefined; cnvMaxLength?: number | undefined; cnvMinAbsValue?: number | undefined; cnvLossCutoff?: number | undefined; exclude: string[]; dt?: number | undefined; origin?: string | undefined; } & { ...; } & { ...; }.o2 | PredefinedGroupSettingQ | RegularNumericBinConfig | SampleLstQ | SnpsQ | SplineNumericQ | ValuesQ)",
|
|
2269
|
+
expected: "(BaseQ | BinaryNumericQ | ConditionQ | ContinuousNumericQ | CustomGroupSettingQ | CustomNumericBinConfig | FilterQ | MinBaseQ & { cnvGainCutoff?: number | undefined; cnvMaxLength?: number | undefined; cnvMinAbsValue?: number | undefined; cnvLossCutoff?: number | undefined; exclude: string[]; dt?: number | undefined; origin?: string | undefined; } & BaseQ & { ...; } | MinBaseQ & { cnvGainCutoff?: number | undefined; cnvMaxLength?: number | undefined; cnvMinAbsValue?: number | undefined; cnvLossCutoff?: number | undefined; exclude: string[]; dt?: number | undefined; origin?: string | undefined; } & { ...; } & { ...; } | MinBaseQ & { cnvGainCutoff?: number | undefined; cnvMaxLength?: number | undefined; cnvMinAbsValue?: number | undefined; cnvLossCutoff?: number | undefined; exclude: string[]; dt?: number | undefined; origin?: string | undefined; } & { ...; } & { ...; }.o1 | MinBaseQ & { cnvGainCutoff?: number | undefined; cnvMaxLength?: number | undefined; cnvMinAbsValue?: number | undefined; cnvLossCutoff?: number | undefined; exclude: string[]; dt?: number | undefined; origin?: string | undefined; } & { ...; } & { ...; }.o2 | PredefinedGroupSettingQ | RegularNumericBinConfig | SampleLstQ | SnpsQ | SplineNumericQ | ValuesQ)",
|
|
2247
2270
|
value: input3.q
|
|
2248
2271
|
})].every((flag) => flag);
|
|
2249
2272
|
const $vo53 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.id || $report(_exceptionable2, {
|
|
@@ -2298,13 +2321,13 @@ var validTermsByIdsResponse = (input) => {
|
|
|
2298
2321
|
path: _path2 + ".values",
|
|
2299
2322
|
expected: "(TermValues | undefined)",
|
|
2300
2323
|
value: input3.values
|
|
2301
|
-
}), ("object" === typeof input3.groupsetting && null !== input3.groupsetting || $report(_exceptionable2, {
|
|
2324
|
+
}), true, ("object" === typeof input3.groupsetting && null !== input3.groupsetting || $report(_exceptionable2, {
|
|
2302
2325
|
path: _path2 + ".groupsetting",
|
|
2303
|
-
expected: "(EnabledTermGroupSetting | __type.
|
|
2326
|
+
expected: "(EnabledTermGroupSetting | __type.o2)",
|
|
2304
2327
|
value: input3.groupsetting
|
|
2305
2328
|
})) && $vu8(input3.groupsetting, _path2 + ".groupsetting", _exceptionable2) || $report(_exceptionable2, {
|
|
2306
2329
|
path: _path2 + ".groupsetting",
|
|
2307
|
-
expected: "(EnabledTermGroupSetting | __type.
|
|
2330
|
+
expected: "(EnabledTermGroupSetting | __type.o2)",
|
|
2308
2331
|
value: input3.groupsetting
|
|
2309
2332
|
})].every((flag) => flag);
|
|
2310
2333
|
const $vo54 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.id || $report(_exceptionable2, {
|
|
@@ -2359,7 +2382,7 @@ var validTermsByIdsResponse = (input) => {
|
|
|
2359
2382
|
path: _path2 + ".values",
|
|
2360
2383
|
expected: "(TermValues | undefined)",
|
|
2361
2384
|
value: input3.values
|
|
2362
|
-
}), ("object" === typeof input3.bins && null !== input3.bins || $report(_exceptionable2, {
|
|
2385
|
+
}), true, ("object" === typeof input3.bins && null !== input3.bins || $report(_exceptionable2, {
|
|
2363
2386
|
path: _path2 + ".bins",
|
|
2364
2387
|
expected: "PresetNumericBins",
|
|
2365
2388
|
value: input3.bins
|
|
@@ -2373,11 +2396,11 @@ var validTermsByIdsResponse = (input) => {
|
|
|
2373
2396
|
value: input3.unit
|
|
2374
2397
|
}), void 0 === input3.continuousColorScale || ("object" === typeof input3.continuousColorScale && null !== input3.continuousColorScale || $report(_exceptionable2, {
|
|
2375
2398
|
path: _path2 + ".continuousColorScale",
|
|
2376
|
-
expected: "(__type.
|
|
2399
|
+
expected: "(__type.o3 | undefined)",
|
|
2377
2400
|
value: input3.continuousColorScale
|
|
2378
2401
|
})) && $vo28(input3.continuousColorScale, _path2 + ".continuousColorScale", _exceptionable2) || $report(_exceptionable2, {
|
|
2379
2402
|
path: _path2 + ".continuousColorScale",
|
|
2380
|
-
expected: "(__type.
|
|
2403
|
+
expected: "(__type.o3 | undefined)",
|
|
2381
2404
|
value: input3.continuousColorScale
|
|
2382
2405
|
})].every((flag) => flag);
|
|
2383
2406
|
const $vo55 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.id || $report(_exceptionable2, {
|
|
@@ -2432,7 +2455,7 @@ var validTermsByIdsResponse = (input) => {
|
|
|
2432
2455
|
path: _path2 + ".values",
|
|
2433
2456
|
expected: "(TermValues | undefined)",
|
|
2434
2457
|
value: input3.values
|
|
2435
|
-
})].every((flag) => flag);
|
|
2458
|
+
}), true].every((flag) => flag);
|
|
2436
2459
|
const $vo56 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.id || $report(_exceptionable2, {
|
|
2437
2460
|
path: _path2 + ".id",
|
|
2438
2461
|
expected: "string",
|
|
@@ -2485,7 +2508,7 @@ var validTermsByIdsResponse = (input) => {
|
|
|
2485
2508
|
path: _path2 + ".values",
|
|
2486
2509
|
expected: "(TermValues | undefined)",
|
|
2487
2510
|
value: input3.values
|
|
2488
|
-
}), ("object" === typeof input3.groupsetting && null !== input3.groupsetting || $report(_exceptionable2, {
|
|
2511
|
+
}), true, ("object" === typeof input3.groupsetting && null !== input3.groupsetting || $report(_exceptionable2, {
|
|
2489
2512
|
path: _path2 + ".groupsetting",
|
|
2490
2513
|
expected: "EnabledTermGroupSetting",
|
|
2491
2514
|
value: input3.groupsetting
|
|
@@ -2566,7 +2589,7 @@ var validTermsByIdsResponse = (input) => {
|
|
|
2566
2589
|
path: _path2 + ".values",
|
|
2567
2590
|
expected: "(TermValues | undefined)",
|
|
2568
2591
|
value: input3.values
|
|
2569
|
-
}), ("object" === typeof input3.groupsetting && null !== input3.groupsetting || $report(_exceptionable2, {
|
|
2592
|
+
}), true, ("object" === typeof input3.groupsetting && null !== input3.groupsetting || $report(_exceptionable2, {
|
|
2570
2593
|
path: _path2 + ".groupsetting",
|
|
2571
2594
|
expected: "EnabledTermGroupSetting",
|
|
2572
2595
|
value: input3.groupsetting
|
|
@@ -2643,7 +2666,7 @@ var validTermsByIdsResponse = (input) => {
|
|
|
2643
2666
|
path: _path2 + ".values",
|
|
2644
2667
|
expected: "(TermValues | undefined)",
|
|
2645
2668
|
value: input3.values
|
|
2646
|
-
}), void 0 === input3.reachedVariantLimit || "boolean" === typeof input3.reachedVariantLimit || $report(_exceptionable2, {
|
|
2669
|
+
}), true, void 0 === input3.reachedVariantLimit || "boolean" === typeof input3.reachedVariantLimit || $report(_exceptionable2, {
|
|
2647
2670
|
path: _path2 + ".reachedVariantLimit",
|
|
2648
2671
|
expected: "(boolean | undefined)",
|
|
2649
2672
|
value: input3.reachedVariantLimit
|
|
@@ -2716,7 +2739,7 @@ var validTermsByIdsResponse = (input) => {
|
|
|
2716
2739
|
path: _path2 + ".values",
|
|
2717
2740
|
expected: "(TermValues & SampleLstTermValues | undefined)",
|
|
2718
2741
|
value: input3.values
|
|
2719
|
-
})].every((flag) => flag);
|
|
2742
|
+
}), true].every((flag) => flag);
|
|
2720
2743
|
const $vo60 = (input3, _path2, _exceptionable2 = true) => [false === _exceptionable2 || Object.keys(input3).map((key) => {
|
|
2721
2744
|
const value = input3[key];
|
|
2722
2745
|
if (void 0 === value)
|
|
@@ -2789,11 +2812,11 @@ var validTermsByIdsResponse = (input) => {
|
|
|
2789
2812
|
value: input3.list
|
|
2790
2813
|
})) && input3.list.map((elem, _index51) => ("object" === typeof elem && null !== elem || $report(_exceptionable2, {
|
|
2791
2814
|
path: _path2 + ".list[" + _index51 + "]",
|
|
2792
|
-
expected: "__type.
|
|
2815
|
+
expected: "__type.o7",
|
|
2793
2816
|
value: elem
|
|
2794
2817
|
})) && $vo62(elem, _path2 + ".list[" + _index51 + "]", _exceptionable2) || $report(_exceptionable2, {
|
|
2795
2818
|
path: _path2 + ".list[" + _index51 + "]",
|
|
2796
|
-
expected: "__type.
|
|
2819
|
+
expected: "__type.o7",
|
|
2797
2820
|
value: elem
|
|
2798
2821
|
})).every((flag) => flag) || $report(_exceptionable2, {
|
|
2799
2822
|
path: _path2 + ".list",
|
|
@@ -2813,7 +2836,7 @@ var validTermsByIdsResponse = (input) => {
|
|
|
2813
2836
|
path: _path2 + ".hiddenValues",
|
|
2814
2837
|
expected: "(HiddenValues | undefined)",
|
|
2815
2838
|
value: input3.hiddenValues
|
|
2816
|
-
})) && $
|
|
2839
|
+
})) && $vo4(input3.hiddenValues, _path2 + ".hiddenValues", _exceptionable2) || $report(_exceptionable2, {
|
|
2817
2840
|
path: _path2 + ".hiddenValues",
|
|
2818
2841
|
expected: "(HiddenValues | undefined)",
|
|
2819
2842
|
value: input3.hiddenValues
|
|
@@ -2833,16 +2856,16 @@ var validTermsByIdsResponse = (input) => {
|
|
|
2833
2856
|
path: _path2 + ".reuseId",
|
|
2834
2857
|
expected: "(string | undefined)",
|
|
2835
2858
|
value: input3.reuseId
|
|
2836
|
-
}), void 0 === input3.type || "values" === input3.type || "
|
|
2859
|
+
}), void 0 === input3.type || "values" === input3.type || "regular-bin" === input3.type || "custom-bin" === input3.type || "predefined-groupset" === input3.type || "custom-groupset" === input3.type || "custom-samplelst" === input3.type || "filter" === input3.type || $report(_exceptionable2, {
|
|
2837
2860
|
path: _path2 + ".type",
|
|
2838
|
-
expected: '("custom-bin" | "custom-groupset" | "custom-samplelst" | "predefined-groupset" | "regular-bin" | "values" | undefined)',
|
|
2861
|
+
expected: '("custom-bin" | "custom-groupset" | "custom-samplelst" | "filter" | "predefined-groupset" | "regular-bin" | "values" | undefined)',
|
|
2839
2862
|
value: input3.type
|
|
2840
2863
|
})].every((flag) => flag);
|
|
2841
2864
|
const $vo64 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.hiddenValues || ("object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) || $report(_exceptionable2, {
|
|
2842
2865
|
path: _path2 + ".hiddenValues",
|
|
2843
2866
|
expected: "(HiddenValues | undefined)",
|
|
2844
2867
|
value: input3.hiddenValues
|
|
2845
|
-
})) && $
|
|
2868
|
+
})) && $vo4(input3.hiddenValues, _path2 + ".hiddenValues", _exceptionable2) || $report(_exceptionable2, {
|
|
2846
2869
|
path: _path2 + ".hiddenValues",
|
|
2847
2870
|
expected: "(HiddenValues | undefined)",
|
|
2848
2871
|
value: input3.hiddenValues
|
|
@@ -2907,7 +2930,7 @@ var validTermsByIdsResponse = (input) => {
|
|
|
2907
2930
|
path: _path2 + ".hiddenValues",
|
|
2908
2931
|
expected: "(HiddenValues | undefined)",
|
|
2909
2932
|
value: input3.hiddenValues
|
|
2910
|
-
})) && $
|
|
2933
|
+
})) && $vo4(input3.hiddenValues, _path2 + ".hiddenValues", _exceptionable2) || $report(_exceptionable2, {
|
|
2911
2934
|
path: _path2 + ".hiddenValues",
|
|
2912
2935
|
expected: "(HiddenValues | undefined)",
|
|
2913
2936
|
value: input3.hiddenValues
|
|
@@ -2972,7 +2995,7 @@ var validTermsByIdsResponse = (input) => {
|
|
|
2972
2995
|
path: _path2 + ".hiddenValues",
|
|
2973
2996
|
expected: "(HiddenValues | undefined)",
|
|
2974
2997
|
value: input3.hiddenValues
|
|
2975
|
-
})) && $
|
|
2998
|
+
})) && $vo4(input3.hiddenValues, _path2 + ".hiddenValues", _exceptionable2) || $report(_exceptionable2, {
|
|
2976
2999
|
path: _path2 + ".hiddenValues",
|
|
2977
3000
|
expected: "(HiddenValues | undefined)",
|
|
2978
3001
|
value: input3.hiddenValues
|
|
@@ -3024,6 +3047,71 @@ var validTermsByIdsResponse = (input) => {
|
|
|
3024
3047
|
path: _path2 + ".origin",
|
|
3025
3048
|
expected: "(string | undefined)",
|
|
3026
3049
|
value: input3.origin
|
|
3050
|
+
}), void 0 === input3.mode || "discrete" === input3.mode || "binary" === input3.mode || "continuous" === input3.mode || "spline" === input3.mode || "cuminc" === input3.mode || "cox" === input3.mode || $report(_exceptionable2, {
|
|
3051
|
+
path: _path2 + ".mode",
|
|
3052
|
+
expected: '("binary" | "continuous" | "cox" | "cuminc" | "discrete" | "spline" | undefined)',
|
|
3053
|
+
value: input3.mode
|
|
3054
|
+
}), void 0 === input3.type || "filter" === input3.type || $report(_exceptionable2, {
|
|
3055
|
+
path: _path2 + ".type",
|
|
3056
|
+
expected: '("filter" | undefined)',
|
|
3057
|
+
value: input3.type
|
|
3058
|
+
})].every((flag) => flag);
|
|
3059
|
+
const $vo67 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.hiddenValues || ("object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) || $report(_exceptionable2, {
|
|
3060
|
+
path: _path2 + ".hiddenValues",
|
|
3061
|
+
expected: "(HiddenValues | undefined)",
|
|
3062
|
+
value: input3.hiddenValues
|
|
3063
|
+
})) && $vo4(input3.hiddenValues, _path2 + ".hiddenValues", _exceptionable2) || $report(_exceptionable2, {
|
|
3064
|
+
path: _path2 + ".hiddenValues",
|
|
3065
|
+
expected: "(HiddenValues | undefined)",
|
|
3066
|
+
value: input3.hiddenValues
|
|
3067
|
+
}), void 0 === input3.isAtomic || true === input3.isAtomic || $report(_exceptionable2, {
|
|
3068
|
+
path: _path2 + ".isAtomic",
|
|
3069
|
+
expected: "(true | undefined)",
|
|
3070
|
+
value: input3.isAtomic
|
|
3071
|
+
}), void 0 === input3.name || "string" === typeof input3.name || $report(_exceptionable2, {
|
|
3072
|
+
path: _path2 + ".name",
|
|
3073
|
+
expected: "(string | undefined)",
|
|
3074
|
+
value: input3.name
|
|
3075
|
+
}), void 0 === input3.reuseId || "string" === typeof input3.reuseId || $report(_exceptionable2, {
|
|
3076
|
+
path: _path2 + ".reuseId",
|
|
3077
|
+
expected: "(string | undefined)",
|
|
3078
|
+
value: input3.reuseId
|
|
3079
|
+
}), void 0 === input3.cnvGainCutoff || "number" === typeof input3.cnvGainCutoff || $report(_exceptionable2, {
|
|
3080
|
+
path: _path2 + ".cnvGainCutoff",
|
|
3081
|
+
expected: "(number | undefined)",
|
|
3082
|
+
value: input3.cnvGainCutoff
|
|
3083
|
+
}), void 0 === input3.cnvMaxLength || "number" === typeof input3.cnvMaxLength || $report(_exceptionable2, {
|
|
3084
|
+
path: _path2 + ".cnvMaxLength",
|
|
3085
|
+
expected: "(number | undefined)",
|
|
3086
|
+
value: input3.cnvMaxLength
|
|
3087
|
+
}), void 0 === input3.cnvMinAbsValue || "number" === typeof input3.cnvMinAbsValue || $report(_exceptionable2, {
|
|
3088
|
+
path: _path2 + ".cnvMinAbsValue",
|
|
3089
|
+
expected: "(number | undefined)",
|
|
3090
|
+
value: input3.cnvMinAbsValue
|
|
3091
|
+
}), void 0 === input3.cnvLossCutoff || "number" === typeof input3.cnvLossCutoff || $report(_exceptionable2, {
|
|
3092
|
+
path: _path2 + ".cnvLossCutoff",
|
|
3093
|
+
expected: "(number | undefined)",
|
|
3094
|
+
value: input3.cnvLossCutoff
|
|
3095
|
+
}), (Array.isArray(input3.exclude) || $report(_exceptionable2, {
|
|
3096
|
+
path: _path2 + ".exclude",
|
|
3097
|
+
expected: "Array<string>",
|
|
3098
|
+
value: input3.exclude
|
|
3099
|
+
})) && input3.exclude.map((elem, _index55) => "string" === typeof elem || $report(_exceptionable2, {
|
|
3100
|
+
path: _path2 + ".exclude[" + _index55 + "]",
|
|
3101
|
+
expected: "string",
|
|
3102
|
+
value: elem
|
|
3103
|
+
})).every((flag) => flag) || $report(_exceptionable2, {
|
|
3104
|
+
path: _path2 + ".exclude",
|
|
3105
|
+
expected: "Array<string>",
|
|
3106
|
+
value: input3.exclude
|
|
3107
|
+
}), void 0 === input3.dt || "number" === typeof input3.dt || $report(_exceptionable2, {
|
|
3108
|
+
path: _path2 + ".dt",
|
|
3109
|
+
expected: "(number | undefined)",
|
|
3110
|
+
value: input3.dt
|
|
3111
|
+
}), void 0 === input3.origin || "string" === typeof input3.origin || $report(_exceptionable2, {
|
|
3112
|
+
path: _path2 + ".origin",
|
|
3113
|
+
expected: "(string | undefined)",
|
|
3114
|
+
value: input3.origin
|
|
3027
3115
|
}), void 0 === input3.mode || "discrete" === input3.mode || "binary" === input3.mode || $report(_exceptionable2, {
|
|
3028
3116
|
path: _path2 + ".mode",
|
|
3029
3117
|
expected: '("binary" | "discrete" | undefined)',
|
|
@@ -3037,11 +3125,11 @@ var validTermsByIdsResponse = (input) => {
|
|
|
3037
3125
|
expected: "number",
|
|
3038
3126
|
value: input3.predefined_groupset_idx
|
|
3039
3127
|
})].every((flag) => flag);
|
|
3040
|
-
const $
|
|
3128
|
+
const $vo68 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.hiddenValues || ("object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) || $report(_exceptionable2, {
|
|
3041
3129
|
path: _path2 + ".hiddenValues",
|
|
3042
3130
|
expected: "(HiddenValues | undefined)",
|
|
3043
3131
|
value: input3.hiddenValues
|
|
3044
|
-
})) && $
|
|
3132
|
+
})) && $vo4(input3.hiddenValues, _path2 + ".hiddenValues", _exceptionable2) || $report(_exceptionable2, {
|
|
3045
3133
|
path: _path2 + ".hiddenValues",
|
|
3046
3134
|
expected: "(HiddenValues | undefined)",
|
|
3047
3135
|
value: input3.hiddenValues
|
|
@@ -3077,8 +3165,8 @@ var validTermsByIdsResponse = (input) => {
|
|
|
3077
3165
|
path: _path2 + ".exclude",
|
|
3078
3166
|
expected: "Array<string>",
|
|
3079
3167
|
value: input3.exclude
|
|
3080
|
-
})) && input3.exclude.map((elem,
|
|
3081
|
-
path: _path2 + ".exclude[" +
|
|
3168
|
+
})) && input3.exclude.map((elem, _index56) => "string" === typeof elem || $report(_exceptionable2, {
|
|
3169
|
+
path: _path2 + ".exclude[" + _index56 + "]",
|
|
3082
3170
|
expected: "string",
|
|
3083
3171
|
value: elem
|
|
3084
3172
|
})).every((flag) => flag) || $report(_exceptionable2, {
|
|
@@ -3110,11 +3198,11 @@ var validTermsByIdsResponse = (input) => {
|
|
|
3110
3198
|
expected: "BaseGroupSet",
|
|
3111
3199
|
value: input3.customset
|
|
3112
3200
|
})].every((flag) => flag);
|
|
3113
|
-
const $
|
|
3201
|
+
const $vo69 = (input3, _path2, _exceptionable2 = true) => [void 0 === input3.hiddenValues || ("object" === typeof input3.hiddenValues && null !== input3.hiddenValues && false === Array.isArray(input3.hiddenValues) || $report(_exceptionable2, {
|
|
3114
3202
|
path: _path2 + ".hiddenValues",
|
|
3115
3203
|
expected: "(HiddenValues | undefined)",
|
|
3116
3204
|
value: input3.hiddenValues
|
|
3117
|
-
})) && $
|
|
3205
|
+
})) && $vo4(input3.hiddenValues, _path2 + ".hiddenValues", _exceptionable2) || $report(_exceptionable2, {
|
|
3118
3206
|
path: _path2 + ".hiddenValues",
|
|
3119
3207
|
expected: "(HiddenValues | undefined)",
|
|
3120
3208
|
value: input3.hiddenValues
|
|
@@ -3134,46 +3222,46 @@ var validTermsByIdsResponse = (input) => {
|
|
|
3134
3222
|
path: _path2 + ".reuseId",
|
|
3135
3223
|
expected: "(string | undefined)",
|
|
3136
3224
|
value: input3.reuseId
|
|
3137
|
-
}), void 0 === input3.type || "values" === input3.type || "
|
|
3225
|
+
}), void 0 === input3.type || "values" === input3.type || "regular-bin" === input3.type || "custom-bin" === input3.type || "predefined-groupset" === input3.type || "custom-groupset" === input3.type || "custom-samplelst" === input3.type || "filter" === input3.type || $report(_exceptionable2, {
|
|
3138
3226
|
path: _path2 + ".type",
|
|
3139
|
-
expected: '("custom-bin" | "custom-groupset" | "custom-samplelst" | "predefined-groupset" | "regular-bin" | "values" | undefined)',
|
|
3227
|
+
expected: '("custom-bin" | "custom-groupset" | "custom-samplelst" | "filter" | "predefined-groupset" | "regular-bin" | "values" | undefined)',
|
|
3140
3228
|
value: input3.type
|
|
3141
3229
|
}), ("object" === typeof input3.groups && null !== input3.groups && false === Array.isArray(input3.groups) || $report(_exceptionable2, {
|
|
3142
3230
|
path: _path2 + ".groups",
|
|
3143
3231
|
expected: "SampleLstTermValues",
|
|
3144
3232
|
value: input3.groups
|
|
3145
|
-
})) && $
|
|
3233
|
+
})) && $vo70(input3.groups, _path2 + ".groups", _exceptionable2) || $report(_exceptionable2, {
|
|
3146
3234
|
path: _path2 + ".groups",
|
|
3147
3235
|
expected: "SampleLstTermValues",
|
|
3148
3236
|
value: input3.groups
|
|
3149
3237
|
})].every((flag) => flag);
|
|
3150
|
-
const $
|
|
3238
|
+
const $vo70 = (input3, _path2, _exceptionable2 = true) => [false === _exceptionable2 || Object.keys(input3).map((key) => {
|
|
3151
3239
|
const value = input3[key];
|
|
3152
3240
|
if (void 0 === value)
|
|
3153
3241
|
return true;
|
|
3154
3242
|
if (RegExp(/(.*)/).test(key))
|
|
3155
3243
|
return ("object" === typeof value && null !== value || $report(_exceptionable2, {
|
|
3156
3244
|
path: _path2 + $join(key),
|
|
3157
|
-
expected: "__type.
|
|
3245
|
+
expected: "__type.o8",
|
|
3158
3246
|
value
|
|
3159
|
-
})) && $
|
|
3247
|
+
})) && $vo71(value, _path2 + $join(key), _exceptionable2) || $report(_exceptionable2, {
|
|
3160
3248
|
path: _path2 + $join(key),
|
|
3161
|
-
expected: "__type.
|
|
3249
|
+
expected: "__type.o8",
|
|
3162
3250
|
value
|
|
3163
3251
|
});
|
|
3164
3252
|
if (RegExp(/^[+-]?\d+(?:\.\d+)?(?:[eE][+-]?\d+)?$/).test(key))
|
|
3165
3253
|
return ("object" === typeof value && null !== value || $report(_exceptionable2, {
|
|
3166
3254
|
path: _path2 + $join(key),
|
|
3167
|
-
expected: "__type.
|
|
3255
|
+
expected: "__type.o8",
|
|
3168
3256
|
value
|
|
3169
|
-
})) && $
|
|
3257
|
+
})) && $vo71(value, _path2 + $join(key), _exceptionable2) || $report(_exceptionable2, {
|
|
3170
3258
|
path: _path2 + $join(key),
|
|
3171
|
-
expected: "__type.
|
|
3259
|
+
expected: "__type.o8",
|
|
3172
3260
|
value
|
|
3173
3261
|
});
|
|
3174
3262
|
return true;
|
|
3175
3263
|
}).every((flag) => flag)].every((flag) => flag);
|
|
3176
|
-
const $
|
|
3264
|
+
const $vo71 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.name || $report(_exceptionable2, {
|
|
3177
3265
|
path: _path2 + ".name",
|
|
3178
3266
|
expected: "string",
|
|
3179
3267
|
value: input3.name
|
|
@@ -3185,13 +3273,13 @@ var validTermsByIdsResponse = (input) => {
|
|
|
3185
3273
|
path: _path2 + ".list",
|
|
3186
3274
|
expected: "Array<__type>.o3",
|
|
3187
3275
|
value: input3.list
|
|
3188
|
-
})) && input3.list.map((elem,
|
|
3189
|
-
path: _path2 + ".list[" +
|
|
3190
|
-
expected: "__type.
|
|
3276
|
+
})) && input3.list.map((elem, _index57) => ("object" === typeof elem && null !== elem || $report(_exceptionable2, {
|
|
3277
|
+
path: _path2 + ".list[" + _index57 + "]",
|
|
3278
|
+
expected: "__type.o7",
|
|
3191
3279
|
value: elem
|
|
3192
|
-
})) && $vo62(elem, _path2 + ".list[" +
|
|
3193
|
-
path: _path2 + ".list[" +
|
|
3194
|
-
expected: "__type.
|
|
3280
|
+
})) && $vo62(elem, _path2 + ".list[" + _index57 + "]", _exceptionable2) || $report(_exceptionable2, {
|
|
3281
|
+
path: _path2 + ".list[" + _index57 + "]",
|
|
3282
|
+
expected: "__type.o7",
|
|
3195
3283
|
value: elem
|
|
3196
3284
|
})).every((flag) => flag) || $report(_exceptionable2, {
|
|
3197
3285
|
path: _path2 + ".list",
|
|
@@ -3262,24 +3350,20 @@ var validTermsByIdsResponse = (input) => {
|
|
|
3262
3350
|
})();
|
|
3263
3351
|
const $vu6 = (input3, _path2, _exceptionable2 = true) => (() => {
|
|
3264
3352
|
if (void 0 !== input3.type)
|
|
3265
|
-
return $
|
|
3353
|
+
return $vo1(input3, _path2, _exceptionable2);
|
|
3266
3354
|
return $vo52(input3, _path2, false) || $vo45(input3, _path2, false) || $vo40(input3, _path2, false);
|
|
3267
3355
|
})();
|
|
3268
3356
|
const $vu7 = (input3, _path2, _exceptionable2 = true) => (() => {
|
|
3269
3357
|
if ("values" === input3.type)
|
|
3270
|
-
return $
|
|
3358
|
+
return $vo3(input3, _path2, _exceptionable2);
|
|
3271
3359
|
if ("predefined-groupset" === input3.type)
|
|
3272
3360
|
return $vo6(input3, _path2, _exceptionable2);
|
|
3273
3361
|
if ("custom-groupset" === input3.type)
|
|
3274
3362
|
return $vo7(input3, _path2, _exceptionable2);
|
|
3275
|
-
return $
|
|
3276
|
-
path: _path2,
|
|
3277
|
-
expected: "(ValuesQ | PredefinedGroupSettingQ | CustomGroupSettingQ)",
|
|
3278
|
-
value: input3
|
|
3279
|
-
});
|
|
3363
|
+
return $vo5(input3, _path2, _exceptionable2);
|
|
3280
3364
|
})();
|
|
3281
3365
|
const $vu8 = (input3, _path2, _exceptionable2 = true) => (() => {
|
|
3282
|
-
if (Array.isArray(input3.lst) && input3.lst.map((elem,
|
|
3366
|
+
if (Array.isArray(input3.lst) && input3.lst.map((elem, _index58) => "object" === typeof elem && null !== elem && $vo18(elem, _path2 + ".lst[" + _index58 + "]", false)).every((flag) => flag))
|
|
3283
3367
|
return $vo17(input3, _path2, _exceptionable2);
|
|
3284
3368
|
return $vo19(input3, _path2, _exceptionable2);
|
|
3285
3369
|
})();
|
|
@@ -3343,17 +3427,103 @@ var validTermsByIdsResponse = (input) => {
|
|
|
3343
3427
|
return $vo64(input3, _path2, _exceptionable2);
|
|
3344
3428
|
return (() => {
|
|
3345
3429
|
if (void 0 !== input3.groups)
|
|
3346
|
-
return $
|
|
3347
|
-
return $
|
|
3430
|
+
return $vo69(input3, _path2, _exceptionable2);
|
|
3431
|
+
return $vo5(input3, _path2, false) || $vo63(input3, _path2, false) || $vo3(input3, _path2, false) || $vo6(input3, _path2, false) || $vo7(input3, _path2, false) || $vo27(input3, _path2, false) || $vo41(input3, _path2, false) || $vo42(input3, _path2, false) || $vo66(input3, _path2, false) || $vo65(input3, _path2, false) || $vo67(input3, _path2, false) || $vo68(input3, _path2, false);
|
|
3348
3432
|
})();
|
|
3349
3433
|
})();
|
|
3350
3434
|
return ("object" === typeof input2 && null !== input2 || $report(true, {
|
|
3351
3435
|
path: _path + "",
|
|
3352
|
-
expected: "
|
|
3436
|
+
expected: "DescrStatsRequest",
|
|
3353
3437
|
value: input2
|
|
3354
3438
|
})) && $vo0(input2, _path + "", true) || $report(true, {
|
|
3355
3439
|
path: _path + "",
|
|
3356
|
-
expected: "
|
|
3440
|
+
expected: "DescrStatsRequest",
|
|
3441
|
+
value: input2
|
|
3442
|
+
});
|
|
3443
|
+
})(input, "$input", true);
|
|
3444
|
+
}
|
|
3445
|
+
const success = 0 === errors.length;
|
|
3446
|
+
return {
|
|
3447
|
+
success,
|
|
3448
|
+
errors,
|
|
3449
|
+
data: success ? input : void 0
|
|
3450
|
+
};
|
|
3451
|
+
};
|
|
3452
|
+
var validDescrStatsResponse = (input) => {
|
|
3453
|
+
const errors = [];
|
|
3454
|
+
const __is = (input2) => {
|
|
3455
|
+
const $io0 = (input3) => "number" === typeof input3.status && "string" === typeof input3.error;
|
|
3456
|
+
const $io1 = (input3) => Array.isArray(input3.values) && input3.values.every((elem) => "object" === typeof elem && null !== elem && $io2(elem));
|
|
3457
|
+
const $io2 = (input3) => "string" === typeof input3.id && "string" === typeof input3.label && "number" === typeof input3.value;
|
|
3458
|
+
const $iu0 = (input3) => (() => {
|
|
3459
|
+
if (void 0 !== input3.status)
|
|
3460
|
+
return $io0(input3);
|
|
3461
|
+
if (void 0 !== input3.values)
|
|
3462
|
+
return $io1(input3);
|
|
3463
|
+
return false;
|
|
3464
|
+
})();
|
|
3465
|
+
return "object" === typeof input2 && null !== input2 && $iu0(input2);
|
|
3466
|
+
};
|
|
3467
|
+
if (false === __is(input)) {
|
|
3468
|
+
const $report = import_typia.createValidate.report(errors);
|
|
3469
|
+
((input2, _path, _exceptionable = true) => {
|
|
3470
|
+
const $vo0 = (input3, _path2, _exceptionable2 = true) => ["number" === typeof input3.status || $report(_exceptionable2, {
|
|
3471
|
+
path: _path2 + ".status",
|
|
3472
|
+
expected: "number",
|
|
3473
|
+
value: input3.status
|
|
3474
|
+
}), "string" === typeof input3.error || $report(_exceptionable2, {
|
|
3475
|
+
path: _path2 + ".error",
|
|
3476
|
+
expected: "string",
|
|
3477
|
+
value: input3.error
|
|
3478
|
+
})].every((flag) => flag);
|
|
3479
|
+
const $vo1 = (input3, _path2, _exceptionable2 = true) => [(Array.isArray(input3.values) || $report(_exceptionable2, {
|
|
3480
|
+
path: _path2 + ".values",
|
|
3481
|
+
expected: "Array<entries>",
|
|
3482
|
+
value: input3.values
|
|
3483
|
+
})) && input3.values.map((elem, _index1) => ("object" === typeof elem && null !== elem || $report(_exceptionable2, {
|
|
3484
|
+
path: _path2 + ".values[" + _index1 + "]",
|
|
3485
|
+
expected: "entries",
|
|
3486
|
+
value: elem
|
|
3487
|
+
})) && $vo2(elem, _path2 + ".values[" + _index1 + "]", _exceptionable2) || $report(_exceptionable2, {
|
|
3488
|
+
path: _path2 + ".values[" + _index1 + "]",
|
|
3489
|
+
expected: "entries",
|
|
3490
|
+
value: elem
|
|
3491
|
+
})).every((flag) => flag) || $report(_exceptionable2, {
|
|
3492
|
+
path: _path2 + ".values",
|
|
3493
|
+
expected: "Array<entries>",
|
|
3494
|
+
value: input3.values
|
|
3495
|
+
})].every((flag) => flag);
|
|
3496
|
+
const $vo2 = (input3, _path2, _exceptionable2 = true) => ["string" === typeof input3.id || $report(_exceptionable2, {
|
|
3497
|
+
path: _path2 + ".id",
|
|
3498
|
+
expected: "string",
|
|
3499
|
+
value: input3.id
|
|
3500
|
+
}), "string" === typeof input3.label || $report(_exceptionable2, {
|
|
3501
|
+
path: _path2 + ".label",
|
|
3502
|
+
expected: "string",
|
|
3503
|
+
value: input3.label
|
|
3504
|
+
}), "number" === typeof input3.value || $report(_exceptionable2, {
|
|
3505
|
+
path: _path2 + ".value",
|
|
3506
|
+
expected: "number",
|
|
3507
|
+
value: input3.value
|
|
3508
|
+
})].every((flag) => flag);
|
|
3509
|
+
const $vu0 = (input3, _path2, _exceptionable2 = true) => (() => {
|
|
3510
|
+
if (void 0 !== input3.status)
|
|
3511
|
+
return $vo0(input3, _path2, _exceptionable2);
|
|
3512
|
+
if (void 0 !== input3.values)
|
|
3513
|
+
return $vo1(input3, _path2, _exceptionable2);
|
|
3514
|
+
return $report(_exceptionable2, {
|
|
3515
|
+
path: _path2,
|
|
3516
|
+
expected: "(ErrorResponse | ValidResponse)",
|
|
3517
|
+
value: input3
|
|
3518
|
+
});
|
|
3519
|
+
})();
|
|
3520
|
+
return ("object" === typeof input2 && null !== input2 || $report(true, {
|
|
3521
|
+
path: _path + "",
|
|
3522
|
+
expected: "(ErrorResponse | ValidResponse)",
|
|
3523
|
+
value: input2
|
|
3524
|
+
})) && $vu0(input2, _path + "", true) || $report(true, {
|
|
3525
|
+
path: _path + "",
|
|
3526
|
+
expected: "(ErrorResponse | ValidResponse)",
|
|
3357
3527
|
value: input2
|
|
3358
3528
|
});
|
|
3359
3529
|
})(input, "$input", true);
|
|
@@ -3367,7 +3537,7 @@ var validTermsByIdsResponse = (input) => {
|
|
|
3367
3537
|
};
|
|
3368
3538
|
|
|
3369
3539
|
export {
|
|
3370
|
-
|
|
3371
|
-
|
|
3372
|
-
|
|
3540
|
+
descrStatsPayload,
|
|
3541
|
+
validDescrStatsRequest,
|
|
3542
|
+
validDescrStatsResponse
|
|
3373
3543
|
};
|