@kaddo/cli 3.79.0 → 3.80.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.
@@ -5,7 +5,7 @@
5
5
  <link rel="icon" type="image/svg+xml" href="/favicon.svg" />
6
6
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
7
7
  <title>admin</title>
8
- <script type="module" crossorigin src="/assets/index-sZtkPyjd.js"></script>
8
+ <script type="module" crossorigin src="/assets/index-CmcfS42m.js"></script>
9
9
  <link rel="stylesheet" crossorigin href="/assets/index-BPQdYfAp.css">
10
10
  </head>
11
11
  <body>
@@ -509,6 +509,17 @@ var LinkedDecisionSchema = z.object({
509
509
  knowledgeLayer: z.string().optional()
510
510
  });
511
511
  var LinkedKnowledgeSchema = z.object({ id: z.string(), title: z.string(), layer: z.string() });
512
+ var SystemImpactEntitySchema = z.object({
513
+ id: z.string(),
514
+ nodeId: z.string(),
515
+ label: z.string(),
516
+ kind: z.string(),
517
+ moduleId: z.string().nullable()
518
+ });
519
+ var ReviewedSystemEntitySchema = SystemImpactEntitySchema.extend({
520
+ status: z.string(),
521
+ reason: z.string().nullable()
522
+ });
512
523
  var WorkItemDetailSchema = WorkItemListItemSchema.extend({
513
524
  summary: z.string().nullable(),
514
525
  actor: z.string().nullable(),
@@ -527,6 +538,9 @@ var WorkItemDetailSchema = WorkItemListItemSchema.extend({
527
538
  completionExceptions: z.array(CompletionExceptionEntrySchema),
528
539
  decisions: z.array(LinkedDecisionSchema),
529
540
  relatedKnowledge: z.array(LinkedKnowledgeSchema),
541
+ affectedSystemEntities: z.array(SystemImpactEntitySchema),
542
+ reviewedSystemEntities: z.array(ReviewedSystemEntitySchema),
543
+ graphRevision: z.string().nullable(),
530
544
  source: z.object({ type: z.string(), id: z.string().optional(), inferred: z.boolean() }).passthrough(),
531
545
  path: z.string(),
532
546
  refinement: z.object({