@checkstack/catalog-common 1.3.0 → 1.4.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 CHANGED
@@ -1,5 +1,59 @@
1
1
  # @checkstack/catalog-common
2
2
 
3
+ ## 1.4.0
4
+
5
+ ### Minor Changes
6
+
7
+ - bb1fea0: Redesign system detail page with hero banner, two-column layout, plugin metric tiles, and health check slide-over drawer.
8
+
9
+ ### New Components
10
+
11
+ - **MetricTile** (`@checkstack/ui`): Compact stat tile with icon, label, value, variant coloring
12
+ - **Sheet** (`@checkstack/ui`): Slide-over drawer built on Radix Dialog primitives
13
+
14
+ ### New Extension Slot
15
+
16
+ - **SystemOverviewMetricsSlot** (`@checkstack/catalog-common`): Plugin-contributed at-a-glance metric tiles in the system detail hero banner
17
+
18
+ ### Layout Changes
19
+
20
+ - System detail page now uses a hero banner with breadcrumb, status badges, and metric tile strip
21
+ - Two-column layout: monitoring content (left) and system context (right)
22
+ - Health checks rendered as compact card rows instead of heavy accordions
23
+ - Clicking a health check opens a slide-over drawer with summary tiles, timeline charts, and recent runs
24
+ - Right column uses lightweight borderless sections with dividers instead of heavy Card wrappers
25
+
26
+ ### Plugin Extensions
27
+
28
+ - Health check, SLO, Incident, and Maintenance plugins each contribute a metric tile to the hero banner
29
+
30
+ ## 1.3.1
31
+
32
+ ### Patch Changes
33
+
34
+ - 3c34b07: Complete SLO Reliability Engine frontend and backend
35
+
36
+ **Frontend** — 7 new visualization components:
37
+
38
+ - `StreakCounter`: Fire-themed compliance streak counter with color-coded flame and best-streak trophy
39
+ - `AchievementBadge`: Emoji-labeled badges for 9 achievement types with hover tooltip
40
+ - `AttributionChart`: Horizontal stacked bar showing error budget split (self/upstream/remaining)
41
+ - `DowntimeTimeline`: Dot-and-line timeline with attribution badges and timestamps
42
+ - `SloTrendChart`: Pure SVG availability trend line chart from daily snapshots
43
+ - `MilestoneFeed`: Organization-wide milestone feed on the SLO overview sidebar
44
+ - `DependencyExclusionConfig`: Interactive upstream dependency picker for SLO editor
45
+
46
+ **Backend** — Weekly digest scheduled integration event:
47
+
48
+ - `weekly-digest.ts`: Cron job (Monday 09:00 UTC) emitting SLO performance summary
49
+ - Top/worst performers, breach counts, and streak data delivered via configured notification channels
50
+ - New `sloWeeklyDigest` hook registered as integration event
51
+
52
+ - Updated dependencies [d1a2796]
53
+ - @checkstack/common@0.6.5
54
+ - @checkstack/frontend-api@0.3.9
55
+ - @checkstack/auth-common@0.6.1
56
+
3
57
  ## 1.3.0
4
58
 
5
59
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@checkstack/catalog-common",
3
- "version": "1.3.0",
3
+ "version": "1.4.0",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": {
@@ -8,15 +8,15 @@
8
8
  }
9
9
  },
10
10
  "dependencies": {
11
- "@checkstack/common": "0.6.4",
12
- "@checkstack/auth-common": "0.6.0",
13
- "@checkstack/frontend-api": "0.3.8",
11
+ "@checkstack/common": "0.6.5",
12
+ "@checkstack/auth-common": "0.6.1",
13
+ "@checkstack/frontend-api": "0.3.9",
14
14
  "@orpc/contract": "^1.13.14",
15
15
  "zod": "^4.2.1"
16
16
  },
17
17
  "devDependencies": {
18
18
  "typescript": "^5.7.2",
19
- "@checkstack/tsconfig": "0.0.4",
19
+ "@checkstack/tsconfig": "0.0.5",
20
20
  "@checkstack/scripts": "0.1.2"
21
21
  },
22
22
  "scripts": {
@@ -72,6 +72,7 @@ export const catalogContract = {
72
72
  operationType: "query",
73
73
  userType: "public",
74
74
  access: [catalogAccess.system.read],
75
+ instanceAccess: { idParam: "systemId" },
75
76
  })
76
77
  .input(z.object({ systemId: z.string() }))
77
78
  .output(SystemSchema.nullable()),
package/src/slots.ts CHANGED
@@ -91,3 +91,4 @@ export const SystemStateBadgesSlot = createSlot<{ system: System }>(
91
91
  export const SystemEditorSlot = createSlot<{ systemId: string }>(
92
92
  "plugin.catalog.system-editor"
93
93
  );
94
+