@actuarial-ts/compliance 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 +4 -4
- package/src/version.ts +1 -1
package/README.md
CHANGED
|
@@ -3,14 +3,14 @@
|
|
|
3
3
|
Documentation, judgment, provenance, and reproducibility primitives for actuarial-ts. The package is designed to support compliance work under applicable ASOPs; it neither determines compliance nor replaces the actuary’s review.
|
|
4
4
|
|
|
5
5
|
```bash
|
|
6
|
-
npm install @actuarial-ts/compliance@0.8.
|
|
6
|
+
npm install @actuarial-ts/compliance@0.8.1 @actuarial-ts/core@0.8.1 @actuarial-ts/data@0.8.1 @actuarial-ts/interchange@0.8.1
|
|
7
7
|
```
|
|
8
8
|
|
|
9
9
|
Node 20+, ESM.
|
|
10
10
|
|
|
11
11
|
SDK 0.8 adds fresh-execution customization provenance and source-bound bounded
|
|
12
|
-
replay receipts. See the [0.8 adoption guide](https://github.com/yerromnitsuj/actng/blob/v0.8.
|
|
13
|
-
and [customization reference](https://github.com/yerromnitsuj/actng/blob/v0.8.
|
|
12
|
+
replay receipts. See the [0.8 adoption guide](https://github.com/yerromnitsuj/actng/blob/v0.8.1/docs/migrations/0.8-reusable-customization.md)
|
|
13
|
+
and [customization reference](https://github.com/yerromnitsuj/actng/blob/v0.8.1/docs/reference/reusable-customization.md).
|
|
14
14
|
|
|
15
15
|
## Diagnostic provenance
|
|
16
16
|
|
|
@@ -63,7 +63,7 @@ Material host judgments worth recording in the assumption ledger include amount
|
|
|
63
63
|
|
|
64
64
|
The package also provides estimate metadata, assumption ledgers, ASOP No. 41 draft disclosure generation, ASOP No. 56 model cards, actual-versus-expected roll-forward, and canonical reproducibility bundles.
|
|
65
65
|
|
|
66
|
-
See the [formula catalog](https://github.com/yerromnitsuj/actng/blob/v0.8.
|
|
66
|
+
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).
|
|
67
67
|
|
|
68
68
|
## Compact provenance and replay streams
|
|
69
69
|
|
|
@@ -121,8 +121,8 @@ not a promise about total process RSS or host storage caches. The host owns the
|
|
|
121
121
|
adapter, source bytes, output publication, pending-I/O cancellation, and
|
|
122
122
|
temporary-state durability.
|
|
123
123
|
|
|
124
|
-
The runnable [compact adoption guide](https://github.com/yerromnitsuj/actng/blob/v0.8.
|
|
125
|
-
and complete [replay reference](https://github.com/yerromnitsuj/actng/blob/v0.8.
|
|
124
|
+
The runnable [compact adoption guide](https://github.com/yerromnitsuj/actng/blob/v0.8.1/docs/migrations/0.7-compact-diagnostics.md)
|
|
125
|
+
and complete [replay reference](https://github.com/yerromnitsuj/actng/blob/v0.8.1/docs/reference/diagnostic-replay-stream.md)
|
|
126
126
|
document ownership, artifact bytes, paging, framing, resource limits, and
|
|
127
127
|
assurance boundaries. These repository guides are linked here for npm users;
|
|
128
128
|
the guide files themselves are not shipped inside the package.
|
package/dist/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const COMPLIANCE_PACKAGE_VERSION = "0.8.
|
|
1
|
+
export declare const COMPLIANCE_PACKAGE_VERSION = "0.8.1";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/dist/version.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const COMPLIANCE_PACKAGE_VERSION = "0.8.
|
|
1
|
+
export const COMPLIANCE_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/compliance",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.1",
|
|
4
4
|
"description": "ASOP-compliance-support layer for the actuarial-ts SDK: estimate metadata, assumption ledger, disclosures, model cards, diagnostics provenance, reproducibility bundles, and actual-vs-expected roll-forward. Responsibility for compliance remains with the credentialed actuary.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"type": "module",
|
|
@@ -47,9 +47,9 @@
|
|
|
47
47
|
"prepublishOnly": "node ../../tools/release/verify-release-attestation.mjs @actuarial-ts/compliance"
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
|
-
"@actuarial-ts/core": "^0.8.
|
|
51
|
-
"@actuarial-ts/data": "^0.8.
|
|
52
|
-
"@actuarial-ts/interchange": "^0.8.
|
|
50
|
+
"@actuarial-ts/core": "^0.8.1",
|
|
51
|
+
"@actuarial-ts/data": "^0.8.1",
|
|
52
|
+
"@actuarial-ts/interchange": "^0.8.1",
|
|
53
53
|
"zod": "^3.25.76"
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const COMPLIANCE_PACKAGE_VERSION = "0.8.
|
|
1
|
+
export const COMPLIANCE_PACKAGE_VERSION = "0.8.1";
|