@contractspec/lib.observability 1.58.0 → 1.60.0
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 +24 -0
- package/package.json +113 -23
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# @contractspec/lib.observability
|
|
2
2
|
|
|
3
|
+
## 1.60.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- fix: publish with bun
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies
|
|
12
|
+
- @contractspec/lib.contracts@1.60.0
|
|
13
|
+
- @contractspec/lib.lifecycle@1.60.0
|
|
14
|
+
|
|
15
|
+
## 1.59.0
|
|
16
|
+
|
|
17
|
+
### Minor Changes
|
|
18
|
+
|
|
19
|
+
- 1a0cf44: fix: publishConfig not supported by bun
|
|
20
|
+
|
|
21
|
+
### Patch Changes
|
|
22
|
+
|
|
23
|
+
- Updated dependencies [1a0cf44]
|
|
24
|
+
- @contractspec/lib.contracts@1.59.0
|
|
25
|
+
- @contractspec/lib.lifecycle@1.59.0
|
|
26
|
+
|
|
3
27
|
## 1.58.0
|
|
4
28
|
|
|
5
29
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contractspec/lib.observability",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.60.0",
|
|
4
4
|
"description": "OpenTelemetry-based observability primitives",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"contractspec",
|
|
@@ -27,36 +27,126 @@
|
|
|
27
27
|
"typecheck": "tsc --noEmit"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@contractspec/lib.lifecycle": "1.
|
|
31
|
-
"@contractspec/lib.contracts": "1.
|
|
30
|
+
"@contractspec/lib.lifecycle": "1.60.0",
|
|
31
|
+
"@contractspec/lib.contracts": "1.60.0"
|
|
32
32
|
},
|
|
33
33
|
"peerDependencies": {
|
|
34
34
|
"@opentelemetry/api": "*"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
|
-
"@contractspec/tool.typescript": "1.
|
|
37
|
+
"@contractspec/tool.typescript": "1.60.0",
|
|
38
38
|
"typescript": "^5.9.3",
|
|
39
|
-
"@contractspec/tool.bun": "1.
|
|
39
|
+
"@contractspec/tool.bun": "1.59.0"
|
|
40
40
|
},
|
|
41
41
|
"exports": {
|
|
42
|
-
".":
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
"./
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
"./
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
42
|
+
".": {
|
|
43
|
+
"types": "./dist/index.d.ts",
|
|
44
|
+
"bun": "./dist/index.js",
|
|
45
|
+
"node": "./dist/node/index.mjs",
|
|
46
|
+
"default": "./dist/index.js"
|
|
47
|
+
},
|
|
48
|
+
"./anomaly/alert-manager": {
|
|
49
|
+
"types": "./dist/anomaly/alert-manager.d.ts",
|
|
50
|
+
"bun": "./dist/anomaly/alert-manager.js",
|
|
51
|
+
"node": "./dist/node/anomaly/alert-manager.mjs",
|
|
52
|
+
"default": "./dist/anomaly/alert-manager.js"
|
|
53
|
+
},
|
|
54
|
+
"./anomaly/anomaly-detector": {
|
|
55
|
+
"types": "./dist/anomaly/anomaly-detector.d.ts",
|
|
56
|
+
"bun": "./dist/anomaly/anomaly-detector.js",
|
|
57
|
+
"node": "./dist/node/anomaly/anomaly-detector.mjs",
|
|
58
|
+
"default": "./dist/anomaly/anomaly-detector.js"
|
|
59
|
+
},
|
|
60
|
+
"./anomaly/baseline-calculator": {
|
|
61
|
+
"types": "./dist/anomaly/baseline-calculator.d.ts",
|
|
62
|
+
"bun": "./dist/anomaly/baseline-calculator.js",
|
|
63
|
+
"node": "./dist/node/anomaly/baseline-calculator.mjs",
|
|
64
|
+
"default": "./dist/anomaly/baseline-calculator.js"
|
|
65
|
+
},
|
|
66
|
+
"./anomaly/root-cause-analyzer": {
|
|
67
|
+
"types": "./dist/anomaly/root-cause-analyzer.d.ts",
|
|
68
|
+
"bun": "./dist/anomaly/root-cause-analyzer.js",
|
|
69
|
+
"node": "./dist/node/anomaly/root-cause-analyzer.mjs",
|
|
70
|
+
"default": "./dist/anomaly/root-cause-analyzer.js"
|
|
71
|
+
},
|
|
72
|
+
"./intent/aggregator": {
|
|
73
|
+
"types": "./dist/intent/aggregator.d.ts",
|
|
74
|
+
"bun": "./dist/intent/aggregator.js",
|
|
75
|
+
"node": "./dist/node/intent/aggregator.mjs",
|
|
76
|
+
"default": "./dist/intent/aggregator.js"
|
|
77
|
+
},
|
|
78
|
+
"./intent/detector": {
|
|
79
|
+
"types": "./dist/intent/detector.d.ts",
|
|
80
|
+
"bun": "./dist/intent/detector.js",
|
|
81
|
+
"node": "./dist/node/intent/detector.mjs",
|
|
82
|
+
"default": "./dist/intent/detector.js"
|
|
83
|
+
},
|
|
84
|
+
"./logging": {
|
|
85
|
+
"types": "./dist/logging/index.d.ts",
|
|
86
|
+
"bun": "./dist/logging/index.js",
|
|
87
|
+
"node": "./dist/node/logging/index.mjs",
|
|
88
|
+
"default": "./dist/logging/index.js"
|
|
89
|
+
},
|
|
90
|
+
"./logging/index": {
|
|
91
|
+
"types": "./dist/logging/index.d.ts",
|
|
92
|
+
"bun": "./dist/logging/index.js",
|
|
93
|
+
"node": "./dist/node/logging/index.mjs",
|
|
94
|
+
"default": "./dist/logging/index.js"
|
|
95
|
+
},
|
|
96
|
+
"./metrics": {
|
|
97
|
+
"types": "./dist/metrics/index.d.ts",
|
|
98
|
+
"bun": "./dist/metrics/index.js",
|
|
99
|
+
"node": "./dist/node/metrics/index.mjs",
|
|
100
|
+
"default": "./dist/metrics/index.js"
|
|
101
|
+
},
|
|
102
|
+
"./metrics/index": {
|
|
103
|
+
"types": "./dist/metrics/index.d.ts",
|
|
104
|
+
"bun": "./dist/metrics/index.js",
|
|
105
|
+
"node": "./dist/node/metrics/index.mjs",
|
|
106
|
+
"default": "./dist/metrics/index.js"
|
|
107
|
+
},
|
|
108
|
+
"./pipeline/evolution-pipeline": {
|
|
109
|
+
"types": "./dist/pipeline/evolution-pipeline.d.ts",
|
|
110
|
+
"bun": "./dist/pipeline/evolution-pipeline.js",
|
|
111
|
+
"node": "./dist/node/pipeline/evolution-pipeline.mjs",
|
|
112
|
+
"default": "./dist/pipeline/evolution-pipeline.js"
|
|
113
|
+
},
|
|
114
|
+
"./pipeline/lifecycle-pipeline": {
|
|
115
|
+
"types": "./dist/pipeline/lifecycle-pipeline.d.ts",
|
|
116
|
+
"bun": "./dist/pipeline/lifecycle-pipeline.js",
|
|
117
|
+
"node": "./dist/node/pipeline/lifecycle-pipeline.mjs",
|
|
118
|
+
"default": "./dist/pipeline/lifecycle-pipeline.js"
|
|
119
|
+
},
|
|
120
|
+
"./telemetry/posthog-baseline-reader": {
|
|
121
|
+
"types": "./dist/telemetry/posthog-baseline-reader.d.ts",
|
|
122
|
+
"bun": "./dist/telemetry/posthog-baseline-reader.js",
|
|
123
|
+
"node": "./dist/node/telemetry/posthog-baseline-reader.mjs",
|
|
124
|
+
"default": "./dist/telemetry/posthog-baseline-reader.js"
|
|
125
|
+
},
|
|
126
|
+
"./telemetry/posthog-telemetry": {
|
|
127
|
+
"types": "./dist/telemetry/posthog-telemetry.d.ts",
|
|
128
|
+
"bun": "./dist/telemetry/posthog-telemetry.js",
|
|
129
|
+
"node": "./dist/node/telemetry/posthog-telemetry.mjs",
|
|
130
|
+
"default": "./dist/telemetry/posthog-telemetry.js"
|
|
131
|
+
},
|
|
132
|
+
"./tracing": {
|
|
133
|
+
"types": "./dist/tracing/index.d.ts",
|
|
134
|
+
"bun": "./dist/tracing/index.js",
|
|
135
|
+
"node": "./dist/node/tracing/index.mjs",
|
|
136
|
+
"default": "./dist/tracing/index.js"
|
|
137
|
+
},
|
|
138
|
+
"./tracing/index": {
|
|
139
|
+
"types": "./dist/tracing/index.d.ts",
|
|
140
|
+
"bun": "./dist/tracing/index.js",
|
|
141
|
+
"node": "./dist/node/tracing/index.mjs",
|
|
142
|
+
"default": "./dist/tracing/index.js"
|
|
143
|
+
},
|
|
144
|
+
"./tracing/middleware": {
|
|
145
|
+
"types": "./dist/tracing/middleware.d.ts",
|
|
146
|
+
"bun": "./dist/tracing/middleware.js",
|
|
147
|
+
"node": "./dist/node/tracing/middleware.mjs",
|
|
148
|
+
"default": "./dist/tracing/middleware.js"
|
|
149
|
+
}
|
|
60
150
|
},
|
|
61
151
|
"publishConfig": {
|
|
62
152
|
"access": "public",
|