@more-ink/irt-edge 3.0.0 → 3.1.1
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/CHANGELOG.md +21 -0
- package/README.md +1 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# @more-ink/irt-edge
|
|
2
2
|
|
|
3
|
+
## 3.1.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Refined PTE route and practice processing typings by reusing existing request/domain types and removing redundant type redefinitions.
|
|
8
|
+
- Strengthened bulk event typing boundaries to keep validation input and internal business types explicit and maintainable.
|
|
9
|
+
- Simplified PTE practice replay ordering logic and aligned route/runtime behavior with required `timestamp` handling.
|
|
10
|
+
- Updated SDK/PTE test suites and docs to match the latest request contracts and production integration test layout.
|
|
11
|
+
|
|
12
|
+
## 3.1.0
|
|
13
|
+
|
|
14
|
+
### Minor Changes
|
|
15
|
+
|
|
16
|
+
- PTE `init-item` and `init-user` now require `timestamp` and replay practices in server-side ascending timestamp order.
|
|
17
|
+
- PTE `record-prac` now requires `timestamp` and `calcs[]` in request payloads.
|
|
18
|
+
- Simplified PTE route normalization by reusing `RecordPtePracRequest` in internal normalized practice handling.
|
|
19
|
+
- Improved bulk update typing boundaries:
|
|
20
|
+
- `validateBulkEvents` accepts `BulkEventInput` for validation.
|
|
21
|
+
- `bulkUpdateUser` / `bulkUpdateItem` consume strict `BulkEvent` events.
|
|
22
|
+
- Expanded and updated PTE/bulk tests to cover timestamp requirements, replay ordering, and updated request shapes.
|
|
23
|
+
|
|
3
24
|
## 3.0.0
|
|
4
25
|
|
|
5
26
|
### Breaking Changes
|
package/README.md
CHANGED