@checkstack/incident-common 0.4.1 → 0.4.3

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,25 @@
1
1
  # @checkstack/incident-common
2
2
 
3
+ ## 0.4.3
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [f676e11]
8
+ - @checkstack/common@0.6.2
9
+ - @checkstack/frontend-api@0.3.5
10
+ - @checkstack/signal-common@0.1.6
11
+
12
+ ## 0.4.2
13
+
14
+ ### Patch Changes
15
+
16
+ - 9551fd7: Fix creator display in incident and maintenance status updates
17
+
18
+ - Show the creator's profile name instead of UUID in status updates
19
+ - For maintenances, now properly displays the creator name (was missing)
20
+ - For incidents, replaces UUID with human-readable profile name
21
+ - System-generated updates (automatic maintenance transitions) show no creator
22
+
3
23
  ## 0.4.1
4
24
 
5
25
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@checkstack/incident-common",
3
- "version": "0.4.1",
3
+ "version": "0.4.3",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": {
@@ -8,16 +8,16 @@
8
8
  }
9
9
  },
10
10
  "dependencies": {
11
- "@checkstack/common": "0.6.0",
12
- "@checkstack/frontend-api": "0.3.3",
13
- "@checkstack/signal-common": "0.1.4",
11
+ "@checkstack/common": "0.6.1",
12
+ "@checkstack/frontend-api": "0.3.4",
13
+ "@checkstack/signal-common": "0.1.5",
14
14
  "@orpc/contract": "^1.13.2",
15
15
  "zod": "^4.2.1"
16
16
  },
17
17
  "devDependencies": {
18
18
  "typescript": "^5.7.2",
19
- "@checkstack/tsconfig": "0.0.2",
20
- "@checkstack/scripts": "0.1.0"
19
+ "@checkstack/tsconfig": "0.0.3",
20
+ "@checkstack/scripts": "0.1.1"
21
21
  },
22
22
  "scripts": {
23
23
  "typecheck": "tsc --noEmit",
package/src/schemas.ts CHANGED
@@ -53,6 +53,7 @@ export const IncidentUpdateSchema = z.object({
53
53
  statusChange: IncidentStatusEnum.optional(),
54
54
  createdAt: z.date(),
55
55
  createdBy: z.string().optional(),
56
+ createdByName: z.string().optional(),
56
57
  });
57
58
  export type IncidentUpdate = z.infer<typeof IncidentUpdateSchema>;
58
59