@kici-dev/shared 0.8.0 → 0.9.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/dist/idempotency-files.d.ts +7 -0
- package/package.json +17 -17
- package/sbom.spdx.json +758 -975
|
@@ -63,6 +63,13 @@ export interface FileDriftEntry {
|
|
|
63
63
|
remoteContent?: string;
|
|
64
64
|
/** Set when content capture was intentionally skipped — used by the renderer to explain the gap. */
|
|
65
65
|
contentSkipped?: ContentSkipReason;
|
|
66
|
+
/**
|
|
67
|
+
* SHA-256 hex of the remote file bytes. Set for category `content` whenever
|
|
68
|
+
* the box could hash the file — independent of whether the bytes themselves
|
|
69
|
+
* were captured, so a suppressed, over-size or binary payload still has an
|
|
70
|
+
* identity a consumer can compare across previews without holding content.
|
|
71
|
+
*/
|
|
72
|
+
remoteDigest?: string;
|
|
66
73
|
/**
|
|
67
74
|
* Fleet machine the remote side of this comparison lives on. Stamped by the
|
|
68
75
|
* preview helpers, which already know the box. Consumers that aggregate
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kici-dev/shared",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.9.0",
|
|
4
4
|
"description": "Shared utilities for the KiCI CI/CD stack — logging, zx setup, crypto, telemetry, health and metrics routes. No business logic.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ci",
|
|
@@ -100,39 +100,39 @@
|
|
|
100
100
|
}
|
|
101
101
|
},
|
|
102
102
|
"dependencies": {
|
|
103
|
-
"@aws-sdk/client-s3": "^3.
|
|
103
|
+
"@aws-sdk/client-s3": "^3.1135.0",
|
|
104
104
|
"@opentelemetry/api": "^1.9.1",
|
|
105
|
-
"@opentelemetry/exporter-metrics-otlp-http": "^0.
|
|
106
|
-
"@opentelemetry/exporter-prometheus": "^0.
|
|
107
|
-
"@opentelemetry/exporter-trace-otlp-http": "^0.
|
|
108
|
-
"@opentelemetry/instrumentation-runtime-node": "^0.
|
|
109
|
-
"@opentelemetry/resources": "^2.
|
|
110
|
-
"@opentelemetry/sdk-node": "^0.
|
|
105
|
+
"@opentelemetry/exporter-metrics-otlp-http": "^0.222.0",
|
|
106
|
+
"@opentelemetry/exporter-prometheus": "^0.222.0",
|
|
107
|
+
"@opentelemetry/exporter-trace-otlp-http": "^0.222.0",
|
|
108
|
+
"@opentelemetry/instrumentation-runtime-node": "^0.35.0",
|
|
109
|
+
"@opentelemetry/resources": "^2.11.0",
|
|
110
|
+
"@opentelemetry/sdk-node": "^0.222.0",
|
|
111
111
|
"@opentelemetry/semantic-conventions": "^1.43.0",
|
|
112
112
|
"archiver": "^8.0.0",
|
|
113
113
|
"diff": "^9.0.0",
|
|
114
|
-
"hono": "^4.13.
|
|
114
|
+
"hono": "^4.13.7",
|
|
115
115
|
"kysely": "^0.29.4",
|
|
116
|
-
"oxc-transform": "0.
|
|
116
|
+
"oxc-transform": "0.150.0",
|
|
117
117
|
"pg": "^8.23.0",
|
|
118
118
|
"picocolors": "^1.1.1",
|
|
119
119
|
"winston": "^3.19.0",
|
|
120
120
|
"winston-daily-rotate-file": "^5.0.0",
|
|
121
|
-
"yaml": "^2.9.
|
|
122
|
-
"zod": "^4.
|
|
121
|
+
"yaml": "^2.9.1",
|
|
122
|
+
"zod": "^4.6.5",
|
|
123
123
|
"zx": "^8.8.5",
|
|
124
|
-
"@kici-dev/
|
|
125
|
-
"@kici-dev/
|
|
124
|
+
"@kici-dev/engine": "0.9.0",
|
|
125
|
+
"@kici-dev/core": "0.9.0"
|
|
126
126
|
},
|
|
127
127
|
"devDependencies": {
|
|
128
|
-
"@opentelemetry/sdk-trace-base": "^2.
|
|
128
|
+
"@opentelemetry/sdk-trace-base": "^2.11.0",
|
|
129
129
|
"@types/archiver": "^8.0.0",
|
|
130
130
|
"@types/dockerode": "^4.0.1",
|
|
131
131
|
"dockerode": "^5.0.1"
|
|
132
132
|
},
|
|
133
133
|
"scripts": {
|
|
134
|
-
"build": "node ../../scripts/build-ts.mjs &&
|
|
134
|
+
"build": "node ../../scripts/build-ts.mjs && tsc --emitDeclarationOnly",
|
|
135
135
|
"test": "vitest run",
|
|
136
|
-
"typecheck": "
|
|
136
|
+
"typecheck": "tsc --noEmit"
|
|
137
137
|
}
|
|
138
138
|
}
|