@kaddo/cli 3.79.0 → 3.81.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/admin-dist/assets/index-DNkI-1xG.css +2 -0
- package/dist/admin-dist/assets/{index-sZtkPyjd.js → index-xgxqXGxn.js} +3 -3
- package/dist/admin-dist/index.html +2 -2
- package/dist/admin-server/index.js +22 -0
- package/dist/core.js +573 -369
- package/package.json +1 -1
- package/dist/admin-dist/assets/index-BPQdYfAp.css +0 -2
|
@@ -5,8 +5,8 @@
|
|
|
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-
|
|
9
|
-
<link rel="stylesheet" crossorigin href="/assets/index-
|
|
8
|
+
<script type="module" crossorigin src="/assets/index-xgxqXGxn.js"></script>
|
|
9
|
+
<link rel="stylesheet" crossorigin href="/assets/index-DNkI-1xG.css">
|
|
10
10
|
</head>
|
|
11
11
|
<body>
|
|
12
12
|
<div id="root"></div>
|
|
@@ -509,6 +509,24 @@ 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 SystemImpactGraphReasonSchema = z.object({
|
|
513
|
+
relationship: z.string().nullable(),
|
|
514
|
+
path: z.array(z.string())
|
|
515
|
+
});
|
|
516
|
+
var SystemImpactEntitySchema = z.object({
|
|
517
|
+
id: z.string(),
|
|
518
|
+
nodeId: z.string(),
|
|
519
|
+
label: z.string(),
|
|
520
|
+
kind: z.string(),
|
|
521
|
+
moduleId: z.string().nullable(),
|
|
522
|
+
reason: z.string().nullable(),
|
|
523
|
+
graphReason: SystemImpactGraphReasonSchema.nullable(),
|
|
524
|
+
evidenceRefs: z.array(z.string()),
|
|
525
|
+
evidenceSummary: z.string().nullable()
|
|
526
|
+
});
|
|
527
|
+
var ReviewedSystemEntitySchema = SystemImpactEntitySchema.extend({
|
|
528
|
+
status: z.string()
|
|
529
|
+
});
|
|
512
530
|
var WorkItemDetailSchema = WorkItemListItemSchema.extend({
|
|
513
531
|
summary: z.string().nullable(),
|
|
514
532
|
actor: z.string().nullable(),
|
|
@@ -527,6 +545,10 @@ var WorkItemDetailSchema = WorkItemListItemSchema.extend({
|
|
|
527
545
|
completionExceptions: z.array(CompletionExceptionEntrySchema),
|
|
528
546
|
decisions: z.array(LinkedDecisionSchema),
|
|
529
547
|
relatedKnowledge: z.array(LinkedKnowledgeSchema),
|
|
548
|
+
affectedSystemEntities: z.array(SystemImpactEntitySchema),
|
|
549
|
+
reviewedSystemEntities: z.array(ReviewedSystemEntitySchema),
|
|
550
|
+
graphRevision: z.string().nullable(),
|
|
551
|
+
graphCoverage: z.enum(["unavailable", "partial", "available"]),
|
|
530
552
|
source: z.object({ type: z.string(), id: z.string().optional(), inferred: z.boolean() }).passthrough(),
|
|
531
553
|
path: z.string(),
|
|
532
554
|
refinement: z.object({
|