@biorate/schema-registry 2.0.0 → 2.1.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/.nyc_output/2ab817d0-505c-454e-bed2-1750a6e607a4.json +1 -0
- package/.nyc_output/97ca74bd-bff5-4f5e-b84c-68ea3601b0d6.json +1 -0
- package/.nyc_output/c03eee38-4fa7-4d46-973b-4d91dcc18bca.json +1 -0
- package/.nyc_output/processinfo/2ab817d0-505c-454e-bed2-1750a6e607a4.json +1 -0
- package/.nyc_output/processinfo/97ca74bd-bff5-4f5e-b84c-68ea3601b0d6.json +1 -0
- package/.nyc_output/processinfo/c03eee38-4fa7-4d46-973b-4d91dcc18bca.json +1 -0
- package/.nyc_output/processinfo/index.json +1 -0
- package/CHANGELOG.md +6 -0
- package/allure-results/090d63d4-5302-44e6-a431-1f0bb56b01a4-result.json +1 -0
- package/allure-results/13f0ae5c-3043-4bdb-b6b1-327953028f5b-result.json +1 -0
- package/allure-results/1ac1fd37-8bf9-42f0-a808-976f1b58a5e1-container.json +1 -0
- package/allure-results/41a93db0-4085-4b31-8c34-5016fe756a73-result.json +1 -0
- package/allure-results/5059215a-e888-471e-b61d-2231e86df801-result.json +1 -0
- package/allure-results/5afc98f7-ce6c-4d4a-b23c-94fa74a96e14-result.json +1 -0
- package/allure-results/5f57981e-3ffa-4b13-8aab-c93c93d494a1-result.json +1 -0
- package/allure-results/8298dd4f-c79c-44eb-b6a9-ee86fe498e22-result.json +1 -0
- package/allure-results/aee745b7-2ca7-4d13-b780-f39c3c647e31-result.json +1 -0
- package/allure-results/b3c2840e-8a5c-492c-9704-e2c82e0311b5-result.json +1 -0
- package/allure-results/c591d6cd-6548-4899-827d-cb9575581d95-result.json +1 -0
- package/allure-results/d3a22bb1-3c24-4c25-b226-3c4b3c5e4bc1-result.json +1 -0
- package/allure-results/e015e709-764f-42c2-96a3-26b31fe144d3-container.json +1 -0
- package/coverage/base.css +224 -0
- package/coverage/block-navigation.js +87 -0
- package/coverage/clover.xml +120 -0
- package/coverage/coverage-final.json +7 -0
- package/coverage/favicon.png +0 -0
- package/coverage/index.html +146 -0
- package/coverage/prettify.css +1 -0
- package/coverage/prettify.js +2 -0
- package/coverage/sort-arrow-sprite.png +0 -0
- package/coverage/sorter.js +210 -0
- package/coverage/src/api.ts.html +802 -0
- package/coverage/src/errors.ts.html +130 -0
- package/coverage/src/index.html +161 -0
- package/coverage/src/index.ts.html +379 -0
- package/coverage/src/interfaces.ts.html +154 -0
- package/coverage/tests/__mocks__/index.html +116 -0
- package/coverage/tests/__mocks__/index.ts.html +145 -0
- package/coverage/tests/index.html +116 -0
- package/coverage/tests/test.avsc.json.html +142 -0
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +8 -8
- package/.reporters.json +0 -6
|
@@ -0,0 +1,224 @@
|
|
|
1
|
+
body, html {
|
|
2
|
+
margin:0; padding: 0;
|
|
3
|
+
height: 100%;
|
|
4
|
+
}
|
|
5
|
+
body {
|
|
6
|
+
font-family: Helvetica Neue, Helvetica, Arial;
|
|
7
|
+
font-size: 14px;
|
|
8
|
+
color:#333;
|
|
9
|
+
}
|
|
10
|
+
.small { font-size: 12px; }
|
|
11
|
+
*, *:after, *:before {
|
|
12
|
+
-webkit-box-sizing:border-box;
|
|
13
|
+
-moz-box-sizing:border-box;
|
|
14
|
+
box-sizing:border-box;
|
|
15
|
+
}
|
|
16
|
+
h1 { font-size: 20px; margin: 0;}
|
|
17
|
+
h2 { font-size: 14px; }
|
|
18
|
+
pre {
|
|
19
|
+
font: 12px/1.4 Consolas, "Liberation Mono", Menlo, Courier, monospace;
|
|
20
|
+
margin: 0;
|
|
21
|
+
padding: 0;
|
|
22
|
+
-moz-tab-size: 2;
|
|
23
|
+
-o-tab-size: 2;
|
|
24
|
+
tab-size: 2;
|
|
25
|
+
}
|
|
26
|
+
a { color:#0074D9; text-decoration:none; }
|
|
27
|
+
a:hover { text-decoration:underline; }
|
|
28
|
+
.strong { font-weight: bold; }
|
|
29
|
+
.space-top1 { padding: 10px 0 0 0; }
|
|
30
|
+
.pad2y { padding: 20px 0; }
|
|
31
|
+
.pad1y { padding: 10px 0; }
|
|
32
|
+
.pad2x { padding: 0 20px; }
|
|
33
|
+
.pad2 { padding: 20px; }
|
|
34
|
+
.pad1 { padding: 10px; }
|
|
35
|
+
.space-left2 { padding-left:55px; }
|
|
36
|
+
.space-right2 { padding-right:20px; }
|
|
37
|
+
.center { text-align:center; }
|
|
38
|
+
.clearfix { display:block; }
|
|
39
|
+
.clearfix:after {
|
|
40
|
+
content:'';
|
|
41
|
+
display:block;
|
|
42
|
+
height:0;
|
|
43
|
+
clear:both;
|
|
44
|
+
visibility:hidden;
|
|
45
|
+
}
|
|
46
|
+
.fl { float: left; }
|
|
47
|
+
@media only screen and (max-width:640px) {
|
|
48
|
+
.col3 { width:100%; max-width:100%; }
|
|
49
|
+
.hide-mobile { display:none!important; }
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.quiet {
|
|
53
|
+
color: #7f7f7f;
|
|
54
|
+
color: rgba(0,0,0,0.5);
|
|
55
|
+
}
|
|
56
|
+
.quiet a { opacity: 0.7; }
|
|
57
|
+
|
|
58
|
+
.fraction {
|
|
59
|
+
font-family: Consolas, 'Liberation Mono', Menlo, Courier, monospace;
|
|
60
|
+
font-size: 10px;
|
|
61
|
+
color: #555;
|
|
62
|
+
background: #E8E8E8;
|
|
63
|
+
padding: 4px 5px;
|
|
64
|
+
border-radius: 3px;
|
|
65
|
+
vertical-align: middle;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
div.path a:link, div.path a:visited { color: #333; }
|
|
69
|
+
table.coverage {
|
|
70
|
+
border-collapse: collapse;
|
|
71
|
+
margin: 10px 0 0 0;
|
|
72
|
+
padding: 0;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
table.coverage td {
|
|
76
|
+
margin: 0;
|
|
77
|
+
padding: 0;
|
|
78
|
+
vertical-align: top;
|
|
79
|
+
}
|
|
80
|
+
table.coverage td.line-count {
|
|
81
|
+
text-align: right;
|
|
82
|
+
padding: 0 5px 0 20px;
|
|
83
|
+
}
|
|
84
|
+
table.coverage td.line-coverage {
|
|
85
|
+
text-align: right;
|
|
86
|
+
padding-right: 10px;
|
|
87
|
+
min-width:20px;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
table.coverage td span.cline-any {
|
|
91
|
+
display: inline-block;
|
|
92
|
+
padding: 0 5px;
|
|
93
|
+
width: 100%;
|
|
94
|
+
}
|
|
95
|
+
.missing-if-branch {
|
|
96
|
+
display: inline-block;
|
|
97
|
+
margin-right: 5px;
|
|
98
|
+
border-radius: 3px;
|
|
99
|
+
position: relative;
|
|
100
|
+
padding: 0 4px;
|
|
101
|
+
background: #333;
|
|
102
|
+
color: yellow;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
.skip-if-branch {
|
|
106
|
+
display: none;
|
|
107
|
+
margin-right: 10px;
|
|
108
|
+
position: relative;
|
|
109
|
+
padding: 0 4px;
|
|
110
|
+
background: #ccc;
|
|
111
|
+
color: white;
|
|
112
|
+
}
|
|
113
|
+
.missing-if-branch .typ, .skip-if-branch .typ {
|
|
114
|
+
color: inherit !important;
|
|
115
|
+
}
|
|
116
|
+
.coverage-summary {
|
|
117
|
+
border-collapse: collapse;
|
|
118
|
+
width: 100%;
|
|
119
|
+
}
|
|
120
|
+
.coverage-summary tr { border-bottom: 1px solid #bbb; }
|
|
121
|
+
.keyline-all { border: 1px solid #ddd; }
|
|
122
|
+
.coverage-summary td, .coverage-summary th { padding: 10px; }
|
|
123
|
+
.coverage-summary tbody { border: 1px solid #bbb; }
|
|
124
|
+
.coverage-summary td { border-right: 1px solid #bbb; }
|
|
125
|
+
.coverage-summary td:last-child { border-right: none; }
|
|
126
|
+
.coverage-summary th {
|
|
127
|
+
text-align: left;
|
|
128
|
+
font-weight: normal;
|
|
129
|
+
white-space: nowrap;
|
|
130
|
+
}
|
|
131
|
+
.coverage-summary th.file { border-right: none !important; }
|
|
132
|
+
.coverage-summary th.pct { }
|
|
133
|
+
.coverage-summary th.pic,
|
|
134
|
+
.coverage-summary th.abs,
|
|
135
|
+
.coverage-summary td.pct,
|
|
136
|
+
.coverage-summary td.abs { text-align: right; }
|
|
137
|
+
.coverage-summary td.file { white-space: nowrap; }
|
|
138
|
+
.coverage-summary td.pic { min-width: 120px !important; }
|
|
139
|
+
.coverage-summary tfoot td { }
|
|
140
|
+
|
|
141
|
+
.coverage-summary .sorter {
|
|
142
|
+
height: 10px;
|
|
143
|
+
width: 7px;
|
|
144
|
+
display: inline-block;
|
|
145
|
+
margin-left: 0.5em;
|
|
146
|
+
background: url(sort-arrow-sprite.png) no-repeat scroll 0 0 transparent;
|
|
147
|
+
}
|
|
148
|
+
.coverage-summary .sorted .sorter {
|
|
149
|
+
background-position: 0 -20px;
|
|
150
|
+
}
|
|
151
|
+
.coverage-summary .sorted-desc .sorter {
|
|
152
|
+
background-position: 0 -10px;
|
|
153
|
+
}
|
|
154
|
+
.status-line { height: 10px; }
|
|
155
|
+
/* yellow */
|
|
156
|
+
.cbranch-no { background: yellow !important; color: #111; }
|
|
157
|
+
/* dark red */
|
|
158
|
+
.red.solid, .status-line.low, .low .cover-fill { background:#C21F39 }
|
|
159
|
+
.low .chart { border:1px solid #C21F39 }
|
|
160
|
+
.highlighted,
|
|
161
|
+
.highlighted .cstat-no, .highlighted .fstat-no, .highlighted .cbranch-no{
|
|
162
|
+
background: #C21F39 !important;
|
|
163
|
+
}
|
|
164
|
+
/* medium red */
|
|
165
|
+
.cstat-no, .fstat-no, .cbranch-no, .cbranch-no { background:#F6C6CE }
|
|
166
|
+
/* light red */
|
|
167
|
+
.low, .cline-no { background:#FCE1E5 }
|
|
168
|
+
/* light green */
|
|
169
|
+
.high, .cline-yes { background:rgb(230,245,208) }
|
|
170
|
+
/* medium green */
|
|
171
|
+
.cstat-yes { background:rgb(161,215,106) }
|
|
172
|
+
/* dark green */
|
|
173
|
+
.status-line.high, .high .cover-fill { background:rgb(77,146,33) }
|
|
174
|
+
.high .chart { border:1px solid rgb(77,146,33) }
|
|
175
|
+
/* dark yellow (gold) */
|
|
176
|
+
.status-line.medium, .medium .cover-fill { background: #f9cd0b; }
|
|
177
|
+
.medium .chart { border:1px solid #f9cd0b; }
|
|
178
|
+
/* light yellow */
|
|
179
|
+
.medium { background: #fff4c2; }
|
|
180
|
+
|
|
181
|
+
.cstat-skip { background: #ddd; color: #111; }
|
|
182
|
+
.fstat-skip { background: #ddd; color: #111 !important; }
|
|
183
|
+
.cbranch-skip { background: #ddd !important; color: #111; }
|
|
184
|
+
|
|
185
|
+
span.cline-neutral { background: #eaeaea; }
|
|
186
|
+
|
|
187
|
+
.coverage-summary td.empty {
|
|
188
|
+
opacity: .5;
|
|
189
|
+
padding-top: 4px;
|
|
190
|
+
padding-bottom: 4px;
|
|
191
|
+
line-height: 1;
|
|
192
|
+
color: #888;
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
.cover-fill, .cover-empty {
|
|
196
|
+
display:inline-block;
|
|
197
|
+
height: 12px;
|
|
198
|
+
}
|
|
199
|
+
.chart {
|
|
200
|
+
line-height: 0;
|
|
201
|
+
}
|
|
202
|
+
.cover-empty {
|
|
203
|
+
background: white;
|
|
204
|
+
}
|
|
205
|
+
.cover-full {
|
|
206
|
+
border-right: none !important;
|
|
207
|
+
}
|
|
208
|
+
pre.prettyprint {
|
|
209
|
+
border: none !important;
|
|
210
|
+
padding: 0 !important;
|
|
211
|
+
margin: 0 !important;
|
|
212
|
+
}
|
|
213
|
+
.com { color: #999 !important; }
|
|
214
|
+
.ignore-none { color: #999; font-weight: normal; }
|
|
215
|
+
|
|
216
|
+
.wrapper {
|
|
217
|
+
min-height: 100%;
|
|
218
|
+
height: auto !important;
|
|
219
|
+
height: 100%;
|
|
220
|
+
margin: 0 auto -48px;
|
|
221
|
+
}
|
|
222
|
+
.footer, .push {
|
|
223
|
+
height: 48px;
|
|
224
|
+
}
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
/* eslint-disable */
|
|
2
|
+
var jumpToCode = (function init() {
|
|
3
|
+
// Classes of code we would like to highlight in the file view
|
|
4
|
+
var missingCoverageClasses = ['.cbranch-no', '.cstat-no', '.fstat-no'];
|
|
5
|
+
|
|
6
|
+
// Elements to highlight in the file listing view
|
|
7
|
+
var fileListingElements = ['td.pct.low'];
|
|
8
|
+
|
|
9
|
+
// We don't want to select elements that are direct descendants of another match
|
|
10
|
+
var notSelector = ':not(' + missingCoverageClasses.join('):not(') + ') > '; // becomes `:not(a):not(b) > `
|
|
11
|
+
|
|
12
|
+
// Selector that finds elements on the page to which we can jump
|
|
13
|
+
var selector =
|
|
14
|
+
fileListingElements.join(', ') +
|
|
15
|
+
', ' +
|
|
16
|
+
notSelector +
|
|
17
|
+
missingCoverageClasses.join(', ' + notSelector); // becomes `:not(a):not(b) > a, :not(a):not(b) > b`
|
|
18
|
+
|
|
19
|
+
// The NodeList of matching elements
|
|
20
|
+
var missingCoverageElements = document.querySelectorAll(selector);
|
|
21
|
+
|
|
22
|
+
var currentIndex;
|
|
23
|
+
|
|
24
|
+
function toggleClass(index) {
|
|
25
|
+
missingCoverageElements
|
|
26
|
+
.item(currentIndex)
|
|
27
|
+
.classList.remove('highlighted');
|
|
28
|
+
missingCoverageElements.item(index).classList.add('highlighted');
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
function makeCurrent(index) {
|
|
32
|
+
toggleClass(index);
|
|
33
|
+
currentIndex = index;
|
|
34
|
+
missingCoverageElements.item(index).scrollIntoView({
|
|
35
|
+
behavior: 'smooth',
|
|
36
|
+
block: 'center',
|
|
37
|
+
inline: 'center'
|
|
38
|
+
});
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
function goToPrevious() {
|
|
42
|
+
var nextIndex = 0;
|
|
43
|
+
if (typeof currentIndex !== 'number' || currentIndex === 0) {
|
|
44
|
+
nextIndex = missingCoverageElements.length - 1;
|
|
45
|
+
} else if (missingCoverageElements.length > 1) {
|
|
46
|
+
nextIndex = currentIndex - 1;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
makeCurrent(nextIndex);
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
function goToNext() {
|
|
53
|
+
var nextIndex = 0;
|
|
54
|
+
|
|
55
|
+
if (
|
|
56
|
+
typeof currentIndex === 'number' &&
|
|
57
|
+
currentIndex < missingCoverageElements.length - 1
|
|
58
|
+
) {
|
|
59
|
+
nextIndex = currentIndex + 1;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
makeCurrent(nextIndex);
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
return function jump(event) {
|
|
66
|
+
if (
|
|
67
|
+
document.getElementById('fileSearch') === document.activeElement &&
|
|
68
|
+
document.activeElement != null
|
|
69
|
+
) {
|
|
70
|
+
// if we're currently focused on the search input, we don't want to navigate
|
|
71
|
+
return;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
switch (event.which) {
|
|
75
|
+
case 78: // n
|
|
76
|
+
case 74: // j
|
|
77
|
+
goToNext();
|
|
78
|
+
break;
|
|
79
|
+
case 66: // b
|
|
80
|
+
case 75: // k
|
|
81
|
+
case 80: // p
|
|
82
|
+
goToPrevious();
|
|
83
|
+
break;
|
|
84
|
+
}
|
|
85
|
+
};
|
|
86
|
+
})();
|
|
87
|
+
window.addEventListener('keydown', jumpToCode);
|
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<coverage generated="1770965514609" clover="3.2.0">
|
|
3
|
+
<project timestamp="1770965514609" name="All files">
|
|
4
|
+
<metrics statements="87" coveredstatements="75" conditionals="7" coveredconditionals="4" methods="34" coveredmethods="29" elements="128" coveredelements="108" complexity="0" loc="87" ncloc="87" packages="3" files="6" classes="6"/>
|
|
5
|
+
<package name="src">
|
|
6
|
+
<metrics statements="81" coveredstatements="69" conditionals="7" coveredconditionals="4" methods="34" coveredmethods="29"/>
|
|
7
|
+
<file name="api.ts" path="/www/biorate/core/packages/@biorate/schema-registry/src/api.ts">
|
|
8
|
+
<metrics statements="72" coveredstatements="63" conditionals="7" coveredconditionals="4" methods="30" coveredmethods="27"/>
|
|
9
|
+
<line num="6" count="1" type="stmt"/>
|
|
10
|
+
<line num="7" count="1" type="stmt"/>
|
|
11
|
+
<line num="9" count="10" type="stmt"/>
|
|
12
|
+
<line num="10" count="10" type="stmt"/>
|
|
13
|
+
<line num="11" count="10" type="stmt"/>
|
|
14
|
+
<line num="17" count="1" type="stmt"/>
|
|
15
|
+
<line num="18" count="1" type="stmt"/>
|
|
16
|
+
<line num="19" count="1" type="stmt"/>
|
|
17
|
+
<line num="22" count="2" type="stmt"/>
|
|
18
|
+
<line num="26" count="1" type="stmt"/>
|
|
19
|
+
<line num="27" count="1" type="stmt"/>
|
|
20
|
+
<line num="28" count="1" type="stmt"/>
|
|
21
|
+
<line num="31" count="2" type="stmt"/>
|
|
22
|
+
<line num="35" count="1" type="stmt"/>
|
|
23
|
+
<line num="36" count="1" type="stmt"/>
|
|
24
|
+
<line num="37" count="1" type="stmt"/>
|
|
25
|
+
<line num="40" count="1" type="stmt"/>
|
|
26
|
+
<line num="44" count="1" type="stmt"/>
|
|
27
|
+
<line num="45" count="1" type="stmt"/>
|
|
28
|
+
<line num="46" count="1" type="stmt"/>
|
|
29
|
+
<line num="49" count="1" type="stmt"/>
|
|
30
|
+
<line num="53" count="1" type="stmt"/>
|
|
31
|
+
<line num="54" count="1" type="stmt"/>
|
|
32
|
+
<line num="55" count="1" type="stmt"/>
|
|
33
|
+
<line num="58" count="1" type="stmt"/>
|
|
34
|
+
<line num="62" count="1" type="stmt"/>
|
|
35
|
+
<line num="63" count="1" type="stmt"/>
|
|
36
|
+
<line num="64" count="1" type="stmt"/>
|
|
37
|
+
<line num="67" count="1" type="stmt"/>
|
|
38
|
+
<line num="71" count="1" type="stmt"/>
|
|
39
|
+
<line num="72" count="1" type="stmt"/>
|
|
40
|
+
<line num="73" count="1" type="stmt"/>
|
|
41
|
+
<line num="76" count="1" type="stmt"/>
|
|
42
|
+
<line num="83" count="1" type="stmt"/>
|
|
43
|
+
<line num="84" count="1" type="stmt"/>
|
|
44
|
+
<line num="85" count="1" type="stmt"/>
|
|
45
|
+
<line num="88" count="2" type="stmt"/>
|
|
46
|
+
<line num="98" count="0" type="stmt"/>
|
|
47
|
+
<line num="99" count="0" type="stmt"/>
|
|
48
|
+
<line num="100" count="0" type="stmt"/>
|
|
49
|
+
<line num="103" count="0" type="stmt"/>
|
|
50
|
+
<line num="107" count="1" type="stmt"/>
|
|
51
|
+
<line num="108" count="1" type="stmt"/>
|
|
52
|
+
<line num="109" count="1" type="stmt"/>
|
|
53
|
+
<line num="118" count="1" type="stmt"/>
|
|
54
|
+
<line num="130" count="1" type="stmt"/>
|
|
55
|
+
<line num="131" count="1" type="stmt"/>
|
|
56
|
+
<line num="132" count="1" type="stmt"/>
|
|
57
|
+
<line num="141" count="1" type="stmt"/>
|
|
58
|
+
<line num="158" count="0" type="stmt"/>
|
|
59
|
+
<line num="159" count="0" type="stmt"/>
|
|
60
|
+
<line num="160" count="0" type="stmt"/>
|
|
61
|
+
<line num="163" count="0" type="stmt"/>
|
|
62
|
+
<line num="177" count="1" type="stmt"/>
|
|
63
|
+
<line num="178" count="1" type="stmt"/>
|
|
64
|
+
<line num="179" count="1" type="stmt"/>
|
|
65
|
+
<line num="180" count="1" type="stmt"/>
|
|
66
|
+
<line num="181" count="1" type="stmt"/>
|
|
67
|
+
<line num="183" count="0" type="stmt"/>
|
|
68
|
+
<line num="186" count="1" type="cond" truecount="1" falsecount="1"/>
|
|
69
|
+
<line num="187" count="1" type="stmt"/>
|
|
70
|
+
<line num="188" count="1" type="stmt"/>
|
|
71
|
+
<line num="192" count="1" type="stmt"/>
|
|
72
|
+
<line num="193" count="1" type="stmt"/>
|
|
73
|
+
<line num="194" count="1" type="cond" truecount="1" falsecount="1"/>
|
|
74
|
+
<line num="195" count="1" type="stmt"/>
|
|
75
|
+
<line num="196" count="1" type="stmt"/>
|
|
76
|
+
<line num="197" count="1" type="stmt"/>
|
|
77
|
+
<line num="199" count="1" type="stmt"/>
|
|
78
|
+
<line num="200" count="1" type="stmt"/>
|
|
79
|
+
<line num="204" count="2" type="cond" truecount="1" falsecount="1"/>
|
|
80
|
+
<line num="207" count="1" type="stmt"/>
|
|
81
|
+
</file>
|
|
82
|
+
<file name="errors.ts" path="/www/biorate/core/packages/@biorate/schema-registry/src/errors.ts">
|
|
83
|
+
<metrics statements="2" coveredstatements="0" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="0"/>
|
|
84
|
+
<line num="5" count="0" type="stmt"/>
|
|
85
|
+
<line num="11" count="0" type="stmt"/>
|
|
86
|
+
</file>
|
|
87
|
+
<file name="index.ts" path="/www/biorate/core/packages/@biorate/schema-registry/src/index.ts">
|
|
88
|
+
<metrics statements="7" coveredstatements="6" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="2"/>
|
|
89
|
+
<line num="70" count="1" type="stmt"/>
|
|
90
|
+
<line num="85" count="1" type="stmt"/>
|
|
91
|
+
<line num="90" count="1" type="stmt"/>
|
|
92
|
+
<line num="91" count="1" type="stmt"/>
|
|
93
|
+
<line num="92" count="1" type="stmt"/>
|
|
94
|
+
<line num="94" count="0" type="stmt"/>
|
|
95
|
+
<line num="96" count="1" type="stmt"/>
|
|
96
|
+
</file>
|
|
97
|
+
<file name="interfaces.ts" path="/www/biorate/core/packages/@biorate/schema-registry/src/interfaces.ts">
|
|
98
|
+
<metrics statements="0" coveredstatements="0" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
|
|
99
|
+
</file>
|
|
100
|
+
</package>
|
|
101
|
+
<package name="tests">
|
|
102
|
+
<metrics statements="0" coveredstatements="0" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
|
|
103
|
+
<file name="test.avsc.json" path="/www/biorate/core/packages/@biorate/schema-registry/tests/test.avsc.json">
|
|
104
|
+
<metrics statements="0" coveredstatements="0" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
|
|
105
|
+
</file>
|
|
106
|
+
</package>
|
|
107
|
+
<package name="tests.__mocks__">
|
|
108
|
+
<metrics statements="6" coveredstatements="6" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
|
|
109
|
+
<file name="index.ts" path="/www/biorate/core/packages/@biorate/schema-registry/tests/__mocks__/index.ts">
|
|
110
|
+
<metrics statements="6" coveredstatements="6" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
|
|
111
|
+
<line num="6" count="1" type="stmt"/>
|
|
112
|
+
<line num="9" count="1" type="stmt"/>
|
|
113
|
+
<line num="10" count="1" type="stmt"/>
|
|
114
|
+
<line num="14" count="1" type="stmt"/>
|
|
115
|
+
<line num="16" count="1" type="stmt"/>
|
|
116
|
+
<line num="20" count="1" type="stmt"/>
|
|
117
|
+
</file>
|
|
118
|
+
</package>
|
|
119
|
+
</project>
|
|
120
|
+
</coverage>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
{"/www/biorate/core/packages/@biorate/schema-registry/src/api.ts": {"path":"/www/biorate/core/packages/@biorate/schema-registry/src/api.ts","statementMap":{"0":{"start":{"line":6,"column":22},"end":{"line":239,"column":null}},"1":{"start":{"line":7,"column":16},"end":{"line":7,"column":null}},"2":{"start":{"line":9,"column":2},"end":{"line":9,"column":8}},"3":{"start":{"line":10,"column":4},"end":{"line":10,"column":null}},"4":{"start":{"line":11,"column":4},"end":{"line":11,"column":null}},"5":{"start":{"line":17,"column":2},"end":{"line":17,"column":8}},"6":{"start":{"line":18,"column":4},"end":{"line":18,"column":null}},"7":{"start":{"line":19,"column":4},"end":{"line":19,"column":null}},"8":{"start":{"line":22,"column":6},"end":{"line":22,"column":null}},"9":{"start":{"line":26,"column":2},"end":{"line":26,"column":8}},"10":{"start":{"line":27,"column":4},"end":{"line":27,"column":null}},"11":{"start":{"line":28,"column":4},"end":{"line":28,"column":null}},"12":{"start":{"line":31,"column":6},"end":{"line":31,"column":null}},"13":{"start":{"line":35,"column":2},"end":{"line":35,"column":8}},"14":{"start":{"line":36,"column":4},"end":{"line":36,"column":null}},"15":{"start":{"line":37,"column":4},"end":{"line":37,"column":null}},"16":{"start":{"line":40,"column":6},"end":{"line":40,"column":null}},"17":{"start":{"line":44,"column":2},"end":{"line":44,"column":8}},"18":{"start":{"line":45,"column":4},"end":{"line":45,"column":null}},"19":{"start":{"line":46,"column":4},"end":{"line":46,"column":null}},"20":{"start":{"line":49,"column":6},"end":{"line":49,"column":null}},"21":{"start":{"line":53,"column":2},"end":{"line":53,"column":8}},"22":{"start":{"line":54,"column":4},"end":{"line":54,"column":null}},"23":{"start":{"line":55,"column":4},"end":{"line":55,"column":null}},"24":{"start":{"line":58,"column":6},"end":{"line":58,"column":null}},"25":{"start":{"line":62,"column":2},"end":{"line":62,"column":8}},"26":{"start":{"line":63,"column":4},"end":{"line":63,"column":null}},"27":{"start":{"line":64,"column":4},"end":{"line":64,"column":null}},"28":{"start":{"line":67,"column":6},"end":{"line":67,"column":null}},"29":{"start":{"line":71,"column":2},"end":{"line":71,"column":8}},"30":{"start":{"line":72,"column":4},"end":{"line":72,"column":null}},"31":{"start":{"line":73,"column":4},"end":{"line":73,"column":null}},"32":{"start":{"line":76,"column":6},"end":{"line":79,"column":null}},"33":{"start":{"line":83,"column":2},"end":{"line":83,"column":8}},"34":{"start":{"line":84,"column":4},"end":{"line":84,"column":null}},"35":{"start":{"line":85,"column":4},"end":{"line":85,"column":null}},"36":{"start":{"line":88,"column":6},"end":{"line":94,"column":null}},"37":{"start":{"line":98,"column":2},"end":{"line":98,"column":8}},"38":{"start":{"line":99,"column":4},"end":{"line":99,"column":null}},"39":{"start":{"line":100,"column":4},"end":{"line":100,"column":null}},"40":{"start":{"line":103,"column":6},"end":{"line":103,"column":null}},"41":{"start":{"line":107,"column":2},"end":{"line":107,"column":8}},"42":{"start":{"line":108,"column":4},"end":{"line":108,"column":null}},"43":{"start":{"line":109,"column":4},"end":{"line":109,"column":null}},"44":{"start":{"line":118,"column":6},"end":{"line":126,"column":null}},"45":{"start":{"line":130,"column":2},"end":{"line":130,"column":8}},"46":{"start":{"line":131,"column":4},"end":{"line":131,"column":null}},"47":{"start":{"line":132,"column":4},"end":{"line":132,"column":null}},"48":{"start":{"line":141,"column":6},"end":{"line":154,"column":null}},"49":{"start":{"line":158,"column":2},"end":{"line":158,"column":8}},"50":{"start":{"line":159,"column":4},"end":{"line":159,"column":null}},"51":{"start":{"line":160,"column":4},"end":{"line":160,"column":null}},"52":{"start":{"line":163,"column":6},"end":{"line":168,"column":null}},"53":{"start":{"line":177,"column":29},"end":{"line":177,"column":null}},"54":{"start":{"line":178,"column":21},"end":{"line":178,"column":null}},"55":{"start":{"line":179,"column":19},"end":{"line":179,"column":null}},"56":{"start":{"line":180,"column":19},"end":{"line":180,"column":null}},"57":{"start":{"line":181,"column":4},"end":{"line":185,"column":null}},"58":{"start":{"line":183,"column":8},"end":{"line":183,"column":null}},"59":{"start":{"line":186,"column":4},"end":{"line":186,"column":null}},"60":{"start":{"line":186,"column":23},"end":{"line":186,"column":null}},"61":{"start":{"line":187,"column":4},"end":{"line":187,"column":null}},"62":{"start":{"line":188,"column":4},"end":{"line":188,"column":null}},"63":{"start":{"line":192,"column":15},"end":{"line":192,"column":null}},"64":{"start":{"line":193,"column":33},"end":{"line":193,"column":null}},"65":{"start":{"line":194,"column":4},"end":{"line":198,"column":null}},"66":{"start":{"line":195,"column":23},"end":{"line":195,"column":null}},"67":{"start":{"line":196,"column":6},"end":{"line":196,"column":null}},"68":{"start":{"line":197,"column":6},"end":{"line":197,"column":null}},"69":{"start":{"line":199,"column":19},"end":{"line":199,"column":null}},"70":{"start":{"line":200,"column":4},"end":{"line":200,"column":null}},"71":{"start":{"line":204,"column":4},"end":{"line":204,"column":null}},"72":{"start":{"line":207,"column":2},"end":{"line":238,"column":null}}},"fnMap":{"0":{"name":"(anonymous_0)","decl":{"start":{"line":6,"column":22},"end":{"line":6,"column":23}},"loc":{"start":{"line":6,"column":57},"end":{"line":239,"column":null}},"line":6},"1":{"name":"(anonymous_1)","decl":{"start":{"line":9,"column":2},"end":{"line":9,"column":8}},"loc":{"start":{"line":9,"column":2},"end":{"line":11,"column":null}},"line":9},"2":{"name":"(anonymous_2)","decl":{"start":{"line":17,"column":2},"end":{"line":17,"column":8}},"loc":{"start":{"line":17,"column":2},"end":{"line":19,"column":null}},"line":17},"3":{"name":"(anonymous_3)","decl":{"start":{"line":21,"column":18},"end":{"line":21,"column":26}},"loc":{"start":{"line":21,"column":26},"end":{"line":23,"column":null}},"line":21},"4":{"name":"(anonymous_4)","decl":{"start":{"line":26,"column":2},"end":{"line":26,"column":8}},"loc":{"start":{"line":26,"column":2},"end":{"line":28,"column":null}},"line":26},"5":{"name":"(anonymous_5)","decl":{"start":{"line":30,"column":18},"end":{"line":30,"column":24}},"loc":{"start":{"line":30,"column":36},"end":{"line":32,"column":null}},"line":30},"6":{"name":"(anonymous_6)","decl":{"start":{"line":35,"column":2},"end":{"line":35,"column":8}},"loc":{"start":{"line":35,"column":2},"end":{"line":37,"column":null}},"line":35},"7":{"name":"(anonymous_7)","decl":{"start":{"line":39,"column":18},"end":{"line":39,"column":26}},"loc":{"start":{"line":39,"column":26},"end":{"line":41,"column":null}},"line":39},"8":{"name":"(anonymous_8)","decl":{"start":{"line":44,"column":2},"end":{"line":44,"column":8}},"loc":{"start":{"line":44,"column":2},"end":{"line":46,"column":null}},"line":44},"9":{"name":"(anonymous_9)","decl":{"start":{"line":48,"column":18},"end":{"line":48,"column":24}},"loc":{"start":{"line":48,"column":36},"end":{"line":50,"column":null}},"line":48},"10":{"name":"(anonymous_10)","decl":{"start":{"line":53,"column":2},"end":{"line":53,"column":8}},"loc":{"start":{"line":53,"column":2},"end":{"line":55,"column":null}},"line":53},"11":{"name":"(anonymous_11)","decl":{"start":{"line":57,"column":18},"end":{"line":57,"column":26}},"loc":{"start":{"line":57,"column":26},"end":{"line":59,"column":null}},"line":57},"12":{"name":"(anonymous_12)","decl":{"start":{"line":62,"column":2},"end":{"line":62,"column":8}},"loc":{"start":{"line":62,"column":2},"end":{"line":64,"column":null}},"line":62},"13":{"name":"(anonymous_13)","decl":{"start":{"line":66,"column":18},"end":{"line":66,"column":24}},"loc":{"start":{"line":66,"column":41},"end":{"line":68,"column":null}},"line":66},"14":{"name":"(anonymous_14)","decl":{"start":{"line":71,"column":2},"end":{"line":71,"column":8}},"loc":{"start":{"line":71,"column":2},"end":{"line":73,"column":null}},"line":71},"15":{"name":"(anonymous_15)","decl":{"start":{"line":75,"column":18},"end":{"line":75,"column":24}},"loc":{"start":{"line":75,"column":72},"end":{"line":80,"column":null}},"line":75},"16":{"name":"(anonymous_16)","decl":{"start":{"line":83,"column":2},"end":{"line":83,"column":8}},"loc":{"start":{"line":83,"column":2},"end":{"line":85,"column":null}},"line":83},"17":{"name":"(anonymous_17)","decl":{"start":{"line":87,"column":18},"end":{"line":87,"column":24}},"loc":{"start":{"line":87,"column":77},"end":{"line":95,"column":null}},"line":87},"18":{"name":"(anonymous_18)","decl":{"start":{"line":98,"column":2},"end":{"line":98,"column":8}},"loc":{"start":{"line":98,"column":2},"end":{"line":100,"column":null}},"line":98},"19":{"name":"(anonymous_19)","decl":{"start":{"line":102,"column":18},"end":{"line":102,"column":24}},"loc":{"start":{"line":102,"column":77},"end":{"line":104,"column":null}},"line":102},"20":{"name":"(anonymous_20)","decl":{"start":{"line":107,"column":2},"end":{"line":107,"column":8}},"loc":{"start":{"line":107,"column":2},"end":{"line":109,"column":null}},"line":107},"21":{"name":"(anonymous_21)","decl":{"start":{"line":111,"column":18},"end":{"line":111,"column":24}},"loc":{"start":{"line":117,"column":7},"end":{"line":127,"column":null}},"line":117},"22":{"name":"(anonymous_22)","decl":{"start":{"line":130,"column":2},"end":{"line":130,"column":8}},"loc":{"start":{"line":130,"column":2},"end":{"line":132,"column":null}},"line":130},"23":{"name":"(anonymous_23)","decl":{"start":{"line":134,"column":18},"end":{"line":134,"column":24}},"loc":{"start":{"line":140,"column":7},"end":{"line":155,"column":null}},"line":140},"24":{"name":"(anonymous_24)","decl":{"start":{"line":158,"column":2},"end":{"line":158,"column":8}},"loc":{"start":{"line":158,"column":2},"end":{"line":160,"column":null}},"line":158},"25":{"name":"(anonymous_25)","decl":{"start":{"line":162,"column":18},"end":{"line":162,"column":24}},"loc":{"start":{"line":162,"column":84},"end":{"line":169,"column":null}},"line":162},"26":{"name":"encode","decl":{"start":{"line":172,"column":17},"end":{"line":172,"column":null}},"loc":{"start":{"line":176,"column":4},"end":{"line":189,"column":null}},"line":176},"27":{"name":"(anonymous_27)","decl":{"start":{"line":182,"column":17},"end":{"line":182,"column":18}},"loc":{"start":{"line":182,"column":53},"end":{"line":184,"column":null}},"line":182},"28":{"name":"decode","decl":{"start":{"line":191,"column":17},"end":{"line":191,"column":24}},"loc":{"start":{"line":191,"column":40},"end":{"line":201,"column":null}},"line":191},"29":{"name":"toStringData","decl":{"start":{"line":203,"column":11},"end":{"line":203,"column":24}},"loc":{"start":{"line":203,"column":60},"end":{"line":205,"column":null}},"line":203}},"branchMap":{"0":{"loc":{"start":{"line":175,"column":4},"end":{"line":175,"column":null}},"type":"default-arg","locations":[{"start":{"line":175,"column":31},"end":{"line":175,"column":null}}],"line":175},"1":{"loc":{"start":{"line":186,"column":4},"end":{"line":186,"column":null}},"type":"if","locations":[{"start":{"line":186,"column":4},"end":{"line":186,"column":null}},{"start":{},"end":{}}],"line":186},"2":{"loc":{"start":{"line":194,"column":4},"end":{"line":198,"column":null}},"type":"if","locations":[{"start":{"line":194,"column":4},"end":{"line":198,"column":null}},{"start":{},"end":{}}],"line":194},"3":{"loc":{"start":{"line":204,"column":11},"end":{"line":204,"column":null}},"type":"cond-expr","locations":[{"start":{"line":204,"column":38},"end":{"line":204,"column":45}},{"start":{"line":204,"column":45},"end":{"line":204,"column":null}}],"line":204}},"s":{"0":1,"1":1,"2":10,"3":10,"4":10,"5":1,"6":1,"7":1,"8":2,"9":1,"10":1,"11":1,"12":2,"13":1,"14":1,"15":1,"16":1,"17":1,"18":1,"19":1,"20":1,"21":1,"22":1,"23":1,"24":1,"25":1,"26":1,"27":1,"28":1,"29":1,"30":1,"31":1,"32":1,"33":1,"34":1,"35":1,"36":2,"37":0,"38":0,"39":0,"40":0,"41":1,"42":1,"43":1,"44":1,"45":1,"46":1,"47":1,"48":1,"49":0,"50":0,"51":0,"52":0,"53":1,"54":1,"55":1,"56":1,"57":1,"58":0,"59":1,"60":0,"61":1,"62":1,"63":1,"64":1,"65":1,"66":1,"67":1,"68":1,"69":1,"70":1,"71":2,"72":1},"f":{"0":1,"1":10,"2":1,"3":1,"4":1,"5":1,"6":1,"7":1,"8":1,"9":1,"10":1,"11":1,"12":1,"13":1,"14":1,"15":1,"16":1,"17":1,"18":0,"19":1,"20":1,"21":1,"22":1,"23":1,"24":0,"25":1,"26":1,"27":0,"28":1,"29":2},"b":{"0":[1],"1":[0,1],"2":[1,0],"3":[0,2]},"meta":{"lastBranch":4,"lastFunction":30,"lastStatement":73,"seen":{"s:6:22:239:Infinity":0,"f:6:22:6:23":0,"s:7:16:7:Infinity":1,"f:9:2:9:8":1,"s:9:2:9:8":2,"s:10:4:10:Infinity":3,"s:11:4:11:Infinity":4,"f:17:2:17:8":2,"s:17:2:17:8":5,"s:18:4:18:Infinity":6,"s:19:4:19:Infinity":7,"f:21:18:21:26":3,"s:22:6:22:Infinity":8,"f:26:2:26:8":4,"s:26:2:26:8":9,"s:27:4:27:Infinity":10,"s:28:4:28:Infinity":11,"f:30:18:30:24":5,"s:31:6:31:Infinity":12,"f:35:2:35:8":6,"s:35:2:35:8":13,"s:36:4:36:Infinity":14,"s:37:4:37:Infinity":15,"f:39:18:39:26":7,"s:40:6:40:Infinity":16,"f:44:2:44:8":8,"s:44:2:44:8":17,"s:45:4:45:Infinity":18,"s:46:4:46:Infinity":19,"f:48:18:48:24":9,"s:49:6:49:Infinity":20,"f:53:2:53:8":10,"s:53:2:53:8":21,"s:54:4:54:Infinity":22,"s:55:4:55:Infinity":23,"f:57:18:57:26":11,"s:58:6:58:Infinity":24,"f:62:2:62:8":12,"s:62:2:62:8":25,"s:63:4:63:Infinity":26,"s:64:4:64:Infinity":27,"f:66:18:66:24":13,"s:67:6:67:Infinity":28,"f:71:2:71:8":14,"s:71:2:71:8":29,"s:72:4:72:Infinity":30,"s:73:4:73:Infinity":31,"f:75:18:75:24":15,"s:76:6:79:Infinity":32,"f:83:2:83:8":16,"s:83:2:83:8":33,"s:84:4:84:Infinity":34,"s:85:4:85:Infinity":35,"f:87:18:87:24":17,"s:88:6:94:Infinity":36,"f:98:2:98:8":18,"s:98:2:98:8":37,"s:99:4:99:Infinity":38,"s:100:4:100:Infinity":39,"f:102:18:102:24":19,"s:103:6:103:Infinity":40,"f:107:2:107:8":20,"s:107:2:107:8":41,"s:108:4:108:Infinity":42,"s:109:4:109:Infinity":43,"f:111:18:111:24":21,"s:118:6:126:Infinity":44,"f:130:2:130:8":22,"s:130:2:130:8":45,"s:131:4:131:Infinity":46,"s:132:4:132:Infinity":47,"f:134:18:134:24":23,"s:141:6:154:Infinity":48,"f:158:2:158:8":24,"s:158:2:158:8":49,"s:159:4:159:Infinity":50,"s:160:4:160:Infinity":51,"f:162:18:162:24":25,"s:163:6:168:Infinity":52,"f:172:17:172:Infinity":26,"b:175:31:175:Infinity":0,"s:177:29:177:Infinity":53,"s:178:21:178:Infinity":54,"s:179:19:179:Infinity":55,"s:180:19:180:Infinity":56,"s:181:4:185:Infinity":57,"f:182:17:182:18":27,"s:183:8:183:Infinity":58,"b:186:4:186:Infinity:undefined:undefined:undefined:undefined":1,"s:186:4:186:Infinity":59,"s:186:23:186:Infinity":60,"s:187:4:187:Infinity":61,"s:188:4:188:Infinity":62,"f:191:17:191:24":28,"s:192:15:192:Infinity":63,"s:193:33:193:Infinity":64,"b:194:4:198:Infinity:undefined:undefined:undefined:undefined":2,"s:194:4:198:Infinity":65,"s:195:23:195:Infinity":66,"s:196:6:196:Infinity":67,"s:197:6:197:Infinity":68,"s:199:19:199:Infinity":69,"s:200:4:200:Infinity":70,"f:203:11:203:24":29,"s:204:4:204:Infinity":71,"b:204:38:204:45:204:45:204:Infinity":3,"s:207:2:238:Infinity":72}}}
|
|
2
|
+
,"/www/biorate/core/packages/@biorate/schema-registry/src/errors.ts": {"path":"/www/biorate/core/packages/@biorate/schema-registry/src/errors.ts","statementMap":{"0":{"start":{"line":5,"column":4},"end":{"line":5,"column":null}},"1":{"start":{"line":11,"column":4},"end":{"line":13,"column":null}}},"fnMap":{"0":{"name":"(anonymous_0)","decl":{"start":{"line":4,"column":9},"end":{"line":4,"column":21}},"loc":{"start":{"line":4,"column":31},"end":{"line":6,"column":null}},"line":4},"1":{"name":"(anonymous_1)","decl":{"start":{"line":10,"column":9},"end":{"line":10,"column":21}},"loc":{"start":{"line":10,"column":39},"end":{"line":14,"column":null}},"line":10}},"branchMap":{},"s":{"0":0,"1":0},"f":{"0":0,"1":0},"b":{},"meta":{"lastBranch":0,"lastFunction":2,"lastStatement":2,"seen":{"f:4:9:4:21":0,"s:5:4:5:Infinity":0,"f:10:9:10:21":1,"s:11:4:13:Infinity":1}}}
|
|
3
|
+
,"/www/biorate/core/packages/@biorate/schema-registry/src/index.ts": {"path":"/www/biorate/core/packages/@biorate/schema-registry/src/index.ts","statementMap":{"0":{"start":{"line":70,"column":7},"end":{"line":98,"column":null}},"1":{"start":{"line":70,"column":7},"end":{"line":70,"column":13}},"2":{"start":{"line":85,"column":2},"end":{"line":85,"column":null}},"3":{"start":{"line":90,"column":10},"end":{"line":90,"column":null}},"4":{"start":{"line":91,"column":4},"end":{"line":95,"column":null}},"5":{"start":{"line":92,"column":6},"end":{"line":92,"column":null}},"6":{"start":{"line":94,"column":6},"end":{"line":94,"column":null}},"7":{"start":{"line":96,"column":4},"end":{"line":96,"column":null}},"8":{"start":{"line":70,"column":13},"end":{"line":70,"column":45}}},"fnMap":{"0":{"name":"(anonymous_0)","decl":{"start":{"line":70,"column":7},"end":{"line":70,"column":13}},"loc":{"start":{"line":70,"column":7},"end":{"line":85,"column":null}},"line":70},"1":{"name":"(anonymous_1)","decl":{"start":{"line":89,"column":18},"end":{"line":89,"column":26}},"loc":{"start":{"line":89,"column":57},"end":{"line":97,"column":null}},"line":89}},"branchMap":{},"s":{"0":1,"1":1,"2":1,"3":1,"4":1,"5":1,"6":0,"7":1,"8":1},"f":{"0":1,"1":1},"b":{},"meta":{"lastBranch":0,"lastFunction":2,"lastStatement":9,"seen":{"s:70:7:98:Infinity":0,"f:70:7:70:13":0,"s:70:7:70:13":1,"s:85:2:85:Infinity":2,"f:89:18:89:26":1,"s:90:10:90:Infinity":3,"s:91:4:95:Infinity":4,"s:92:6:92:Infinity":5,"s:94:6:94:Infinity":6,"s:96:4:96:Infinity":7,"s:70:13:70:45":8}}}
|
|
4
|
+
,"/www/biorate/core/packages/@biorate/schema-registry/src/interfaces.ts": {"path":"/www/biorate/core/packages/@biorate/schema-registry/src/interfaces.ts","statementMap":{},"fnMap":{},"branchMap":{},"s":{},"f":{},"b":{},"meta":{"lastBranch":0,"lastFunction":0,"lastStatement":0,"seen":{}}}
|
|
5
|
+
,"/www/biorate/core/packages/@biorate/schema-registry/tests/test.avsc.json": {"path":"/www/biorate/core/packages/@biorate/schema-registry/tests/test.avsc.json","statementMap":{},"fnMap":{},"branchMap":{},"s":{},"f":{},"b":{},"meta":{"lastBranch":0,"lastFunction":0,"lastStatement":0,"seen":{}}}
|
|
6
|
+
,"/www/biorate/core/packages/@biorate/schema-registry/tests/__mocks__/index.ts": {"path":"/www/biorate/core/packages/@biorate/schema-registry/tests/__mocks__/index.ts","statementMap":{"0":{"start":{"line":6,"column":42},"end":{"line":6,"column":null}},"1":{"start":{"line":9,"column":0},"end":{"line":9,"column":null}},"2":{"start":{"line":10,"column":0},"end":{"line":13,"column":null}},"3":{"start":{"line":14,"column":0},"end":{"line":14,"column":null}},"4":{"start":{"line":16,"column":0},"end":{"line":18,"column":null}},"5":{"start":{"line":20,"column":20},"end":{"line":20,"column":null}}},"fnMap":{},"branchMap":{},"s":{"0":1,"1":1,"2":1,"3":1,"4":1,"5":1},"f":{},"b":{},"meta":{"lastBranch":0,"lastFunction":0,"lastStatement":6,"seen":{"s:6:42:6:Infinity":0,"s:9:0:9:Infinity":1,"s:10:0:13:Infinity":2,"s:14:0:14:Infinity":3,"s:16:0:18:Infinity":4,"s:20:20:20:Infinity":5}}}
|
|
7
|
+
}
|
|
Binary file
|