edfcore 0.4.520 → 0.4.521
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/constants.d.ts +1 -1
- package/dist/constants.js +1 -1
- package/docs/CHANGELOG.md +18 -0
- package/package.json +1 -1
- package/src/constants.ts +1 -1
package/dist/constants.d.ts
CHANGED
|
@@ -109,5 +109,5 @@ export declare const SIGNAL_FIELD_BLOCK_OFFSETS: {
|
|
|
109
109
|
readonly reserved: 224;
|
|
110
110
|
};
|
|
111
111
|
/** Published package version. Kept in sync with package.json by a test. */
|
|
112
|
-
export declare const VERSION = "0.4.
|
|
112
|
+
export declare const VERSION = "0.4.521";
|
|
113
113
|
//# sourceMappingURL=constants.d.ts.map
|
package/dist/constants.js
CHANGED
package/docs/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,24 @@ alone does not tell you whether you were affected.
|
|
|
6
6
|
edfcore is pre-1.0. Patch releases have carried behaviour changes where the old behaviour was a
|
|
7
7
|
defect; those are called out below.
|
|
8
8
|
|
|
9
|
+
## 0.4.521
|
|
10
|
+
|
|
11
|
+
- **Added** the timeline-helper agreement checks to the offline suite, the second group in
|
|
12
|
+
`tests/corpus/whole-api.test.ts` that skips without the corpus. `contiguityOf`, `segmentAt` and
|
|
13
|
+
`gapAt` each answer a question the index already answers, and the way they fail is by
|
|
14
|
+
disagreeing with it: a time reported as inside a segment AND inside a gap, a gap count that does
|
|
15
|
+
not match the segments it separates, segments that skip a record or claim one twice.
|
|
16
|
+
- The zero-record-duration shape is why this group is worth running on built files as well as real
|
|
17
|
+
ones. Records then occupy no time, so every segment's half-open interval `[start, start)` is
|
|
18
|
+
empty and `segmentAt` returns `undefined` for every instant — the same answer the sample helpers
|
|
19
|
+
give for the same reason, and one that looks like a bug until you notice there is no time axis to
|
|
20
|
+
be on. The sleep-edfx hypnogram is a file of exactly that shape, and a fresh clone had none.
|
|
21
|
+
- Each gap is checked to name the two segments it lies between and to start and end exactly where
|
|
22
|
+
they do, in ticks: a gap derived independently of the pair it separates is how a boundary comes
|
|
23
|
+
to be reported twice with two different numbers.
|
|
24
|
+
- The last case asserts the shapes reach both branches — one file discontinuous, one contiguous,
|
|
25
|
+
one with a zero-width segment — so a green run is not one where every branch was skipped.
|
|
26
|
+
|
|
9
27
|
## 0.4.520
|
|
10
28
|
|
|
11
29
|
- **Added** the header-helper agreement checks to the offline suite. `tests/corpus/whole-api.test.ts`
|
package/package.json
CHANGED
package/src/constants.ts
CHANGED