@checkstack/healthcheck-common 0.10.0 → 0.10.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/CHANGELOG.md CHANGED
@@ -1,5 +1,31 @@
1
1
  # @checkstack/healthcheck-common
2
2
 
3
+ ## 0.10.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 3c34b07: Complete SLO Reliability Engine frontend and backend
8
+
9
+ **Frontend** — 7 new visualization components:
10
+
11
+ - `StreakCounter`: Fire-themed compliance streak counter with color-coded flame and best-streak trophy
12
+ - `AchievementBadge`: Emoji-labeled badges for 9 achievement types with hover tooltip
13
+ - `AttributionChart`: Horizontal stacked bar showing error budget split (self/upstream/remaining)
14
+ - `DowntimeTimeline`: Dot-and-line timeline with attribution badges and timestamps
15
+ - `SloTrendChart`: Pure SVG availability trend line chart from daily snapshots
16
+ - `MilestoneFeed`: Organization-wide milestone feed on the SLO overview sidebar
17
+ - `DependencyExclusionConfig`: Interactive upstream dependency picker for SLO editor
18
+
19
+ **Backend** — Weekly digest scheduled integration event:
20
+
21
+ - `weekly-digest.ts`: Cron job (Monday 09:00 UTC) emitting SLO performance summary
22
+ - Top/worst performers, breach counts, and streak data delivered via configured notification channels
23
+ - New `sloWeeklyDigest` hook registered as integration event
24
+
25
+ - Updated dependencies [d1a2796]
26
+ - @checkstack/common@0.6.5
27
+ - @checkstack/signal-common@0.1.9
28
+
3
29
  ## 0.10.0
4
30
 
5
31
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@checkstack/healthcheck-common",
3
- "version": "0.10.0",
3
+ "version": "0.10.1",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": {
@@ -14,7 +14,7 @@
14
14
  },
15
15
  "devDependencies": {
16
16
  "typescript": "^5.7.2",
17
- "@checkstack/tsconfig": "0.0.4",
17
+ "@checkstack/tsconfig": "0.0.5",
18
18
  "@checkstack/scripts": "0.1.2"
19
19
  },
20
20
  "scripts": {
@@ -371,26 +371,6 @@ export const healthCheckContract = {
371
371
  ),
372
372
  }),
373
373
  ),
374
-
375
- getAvailabilityStats: proc({
376
- operationType: "query",
377
- userType: "public",
378
- access: [healthCheckAccess.status],
379
- })
380
- .input(
381
- z.object({
382
- systemId: z.string(),
383
- configurationId: z.string(),
384
- }),
385
- )
386
- .output(
387
- z.object({
388
- availability31Days: z.number().nullable(),
389
- availability365Days: z.number().nullable(),
390
- totalRuns31Days: z.number(),
391
- totalRuns365Days: z.number(),
392
- }),
393
- ),
394
374
  };
395
375
  // Export contract type
396
376
  export type HealthCheckContract = typeof healthCheckContract;