@hs-x/checkpoint 0.2.4 → 0.2.6
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/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { CheckpointErrorFingerprint, CheckpointMetricEvent, CheckpointRunExemplar } from '@hs-x/types';
|
|
2
2
|
import { Effect } from 'effect';
|
|
3
|
-
export declare const CHECKPOINT_VERSION = "0.2.
|
|
3
|
+
export declare const CHECKPOINT_VERSION = "0.2.6";
|
|
4
4
|
export declare const REDACTED = "[redacted]";
|
|
5
5
|
export interface FingerprintErrorOptions {
|
|
6
6
|
readonly capabilityId: string;
|
package/dist/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { schemas } from '@hs-x/types';
|
|
2
2
|
import { Effect, Schema } from 'effect';
|
|
3
|
-
export const CHECKPOINT_VERSION = '0.2.
|
|
3
|
+
export const CHECKPOINT_VERSION = '0.2.6';
|
|
4
4
|
export const REDACTED = '[redacted]';
|
|
5
5
|
const defaultPolicy = createExemplarPolicy();
|
|
6
6
|
export function fingerprintError({ capabilityId, error, }) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hs-x/checkpoint",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.6",
|
|
4
4
|
"description": "HS-X Checkpoint observability primitives — metrics, exemplars, fingerprinting, and redaction.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"clean": "tsc -b --clean"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@hs-x/types": "0.2.
|
|
29
|
+
"@hs-x/types": "0.2.6",
|
|
30
30
|
"effect": "^3.10.19"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|