@actuarial-ts/data 0.8.0 → 0.8.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/README.md +6 -6
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +2 -2
- package/src/version.ts +1 -1
package/README.md
CHANGED
|
@@ -3,15 +3,15 @@
|
|
|
3
3
|
Typed ingestion, preparation, and data-review boundaries for the actuarial-ts SDK. It supports loss-run/exposure CSVs, annual claim-development adaptation, triangle assembly, and generalized diagnostic review designed to support ASOP No. 23 work.
|
|
4
4
|
|
|
5
5
|
```bash
|
|
6
|
-
npm install @actuarial-ts/data@0.8.
|
|
6
|
+
npm install @actuarial-ts/data@0.8.1 @actuarial-ts/core@0.8.1
|
|
7
7
|
```
|
|
8
8
|
|
|
9
9
|
Node 20+, ESM. Responsibility for the review and resulting actuarial work remains with the actuary.
|
|
10
10
|
|
|
11
11
|
SDK 0.8 adds strict parsers, source mapping, externally staged revision
|
|
12
12
|
history, and complete customization resource-policy validation. See the
|
|
13
|
-
[0.8 adoption guide](https://github.com/yerromnitsuj/actng/blob/v0.8.
|
|
14
|
-
and [customization reference](https://github.com/yerromnitsuj/actng/blob/v0.8.
|
|
13
|
+
[0.8 adoption guide](https://github.com/yerromnitsuj/actng/blob/v0.8.1/docs/migrations/0.8-reusable-customization.md)
|
|
14
|
+
and [customization reference](https://github.com/yerromnitsuj/actng/blob/v0.8.1/docs/reference/reusable-customization.md).
|
|
15
15
|
|
|
16
16
|
## Existing ingestion and triangle review
|
|
17
17
|
|
|
@@ -98,8 +98,8 @@ JSON, spreads, and casts cannot recreate these owners. Use
|
|
|
98
98
|
`createCompactDiagnosticRunIdentity` in compliance for compact completed runs;
|
|
99
99
|
the eager provenance function is not interchangeable.
|
|
100
100
|
|
|
101
|
-
See the runnable [compact adoption guide](https://github.com/yerromnitsuj/actng/blob/v0.8.
|
|
102
|
-
and [replay/resource-policy reference](https://github.com/yerromnitsuj/actng/blob/v0.8.
|
|
101
|
+
See the runnable [compact adoption guide](https://github.com/yerromnitsuj/actng/blob/v0.8.1/docs/migrations/0.7-compact-diagnostics.md)
|
|
102
|
+
and [replay/resource-policy reference](https://github.com/yerromnitsuj/actng/blob/v0.8.1/docs/reference/diagnostic-replay-stream.md).
|
|
103
103
|
Compact representation preserves evidence; it is not a claim that an arbitrary
|
|
104
104
|
large dataset or host memory budget has passed acceptance.
|
|
105
105
|
|
|
@@ -114,7 +114,7 @@ immutable preparation and exact review evidence; every other selection follows
|
|
|
114
114
|
the ordinary compact preparation path. The API does not promise a latency or
|
|
115
115
|
process-memory target.
|
|
116
116
|
|
|
117
|
-
See the [formula catalog](https://github.com/yerromnitsuj/actng/blob/v0.8.
|
|
117
|
+
See the [formula catalog](https://github.com/yerromnitsuj/actng/blob/v0.8.1/docs/reference/diagnostic-formulas.md) and [migration guide](https://github.com/yerromnitsuj/actng/blob/v0.8.1/docs/migrations/0.6-generalized-diagnostics.md).
|
|
118
118
|
|
|
119
119
|
## License
|
|
120
120
|
|
package/dist/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const DATA_PACKAGE_VERSION = "0.8.
|
|
1
|
+
export declare const DATA_PACKAGE_VERSION = "0.8.1";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/dist/version.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const DATA_PACKAGE_VERSION = "0.8.
|
|
1
|
+
export const DATA_PACKAGE_VERSION = "0.8.1";
|
|
2
2
|
//# sourceMappingURL=version.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@actuarial-ts/data",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.1",
|
|
4
4
|
"description": "Data ingestion and ASOP No. 23 support for actuarial-ts: loss/exposure preparation, atomic generalized diagnostic validation, declarative review, and triangle assembly.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"type": "module",
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
"prepublishOnly": "node ../../tools/release/verify-release-attestation.mjs @actuarial-ts/data"
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|
|
52
|
-
"@actuarial-ts/core": "^0.8.
|
|
52
|
+
"@actuarial-ts/core": "^0.8.1",
|
|
53
53
|
"zod": "^3.25.76"
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const DATA_PACKAGE_VERSION = "0.8.
|
|
1
|
+
export const DATA_PACKAGE_VERSION = "0.8.1";
|