@contractspec/lib.observability 1.59.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/package.json +113 -23
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
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
+
3
15
  ## 1.59.0
4
16
 
5
17
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@contractspec/lib.observability",
3
- "version": "1.59.0",
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.59.0",
31
- "@contractspec/lib.contracts": "1.59.0"
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.59.0",
37
+ "@contractspec/tool.typescript": "1.60.0",
38
38
  "typescript": "^5.9.3",
39
- "@contractspec/tool.bun": "1.58.0"
39
+ "@contractspec/tool.bun": "1.59.0"
40
40
  },
41
41
  "exports": {
42
- ".": "./src/index.ts",
43
- "./anomaly/alert-manager": "./src/anomaly/alert-manager.ts",
44
- "./anomaly/anomaly-detector": "./src/anomaly/anomaly-detector.ts",
45
- "./anomaly/baseline-calculator": "./src/anomaly/baseline-calculator.ts",
46
- "./anomaly/root-cause-analyzer": "./src/anomaly/root-cause-analyzer.ts",
47
- "./intent/aggregator": "./src/intent/aggregator.ts",
48
- "./intent/detector": "./src/intent/detector.ts",
49
- "./logging": "./src/logging/index.ts",
50
- "./logging/index": "./src/logging/index.ts",
51
- "./metrics": "./src/metrics/index.ts",
52
- "./metrics/index": "./src/metrics/index.ts",
53
- "./pipeline/evolution-pipeline": "./src/pipeline/evolution-pipeline.ts",
54
- "./pipeline/lifecycle-pipeline": "./src/pipeline/lifecycle-pipeline.ts",
55
- "./telemetry/posthog-baseline-reader": "./src/telemetry/posthog-baseline-reader.ts",
56
- "./telemetry/posthog-telemetry": "./src/telemetry/posthog-telemetry.ts",
57
- "./tracing": "./src/tracing/index.ts",
58
- "./tracing/index": "./src/tracing/index.ts",
59
- "./tracing/middleware": "./src/tracing/middleware.ts"
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",