sysprom 1.27.0 → 1.27.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.
@@ -16,6 +16,7 @@ export const RELATIONSHIP_ENDPOINT_TYPES = {
16
16
  "realisation",
17
17
  "principle",
18
18
  "policy",
19
+ "milestone",
19
20
  ],
20
21
  to: [
21
22
  "intent",
@@ -29,13 +30,34 @@ export const RELATIONSHIP_ENDPOINT_TYPES = {
29
30
  },
30
31
  // Realises — implementation hierarchy
31
32
  realises: {
32
- from: ["capability", "element", "realisation", "artefact", "mode"],
33
- to: ["capability", "element", "realisation", "concept", "stage"],
33
+ from: [
34
+ "capability",
35
+ "element",
36
+ "realisation",
37
+ "artefact",
38
+ "mode",
39
+ "milestone",
40
+ ],
41
+ to: [
42
+ "capability",
43
+ "element",
44
+ "realisation",
45
+ "concept",
46
+ "stage",
47
+ "milestone",
48
+ ],
34
49
  },
35
50
  // Implements — operationalisation
36
51
  implements: {
37
- from: ["element", "realisation", "change", "stage"],
38
- to: ["capability", "element", "realisation", "decision", "change"],
52
+ from: ["element", "realisation", "change", "stage", "milestone"],
53
+ to: [
54
+ "capability",
55
+ "element",
56
+ "realisation",
57
+ "decision",
58
+ "change",
59
+ "milestone",
60
+ ],
39
61
  },
40
62
  // Depends on — broad dependency across all node types
41
63
  depends_on: {
@@ -90,12 +112,13 @@ export const RELATIONSHIP_ENDPOINT_TYPES = {
90
112
  "change",
91
113
  "invariant",
92
114
  "role",
115
+ "milestone",
93
116
  ],
94
117
  to: ["invariant", "principle", "policy", "protocol", "concept"],
95
118
  },
96
119
  // Affects — broad impact relationships
97
120
  affects: {
98
- from: ["decision", "change", "artefact", "stage"],
121
+ from: ["decision", "change", "artefact", "stage", "milestone"],
99
122
  to: [
100
123
  "intent",
101
124
  "concept",
@@ -163,6 +186,7 @@ export const RELATIONSHIP_ENDPOINT_TYPES = {
163
186
  "role",
164
187
  "gate",
165
188
  "mode",
189
+ "milestone",
166
190
  ],
167
191
  to: [
168
192
  "intent",
@@ -178,6 +202,7 @@ export const RELATIONSHIP_ENDPOINT_TYPES = {
178
202
  "role",
179
203
  "gate",
180
204
  "mode",
205
+ "milestone",
181
206
  ],
182
207
  },
183
208
  // Governed by — governance relationships
@@ -194,12 +219,13 @@ export const RELATIONSHIP_ENDPOINT_TYPES = {
194
219
  "policy",
195
220
  "artefact",
196
221
  "role",
222
+ "milestone",
197
223
  ],
198
224
  to: ["policy", "protocol", "role", "principle", "invariant", "concept"],
199
225
  },
200
226
  // Modifies — mutation and change
201
227
  modifies: {
202
- from: ["change", "stage"],
228
+ from: ["change", "stage", "milestone"],
203
229
  to: [
204
230
  "intent",
205
231
  "concept",
@@ -211,7 +237,7 @@ export const RELATIONSHIP_ENDPOINT_TYPES = {
211
237
  },
212
238
  // Produces — generation
213
239
  produces: {
214
- from: ["stage", "realisation", "concept", "capability"],
240
+ from: ["stage", "realisation", "concept", "capability", "milestone"],
215
241
  to: ["artefact", "concept"],
216
242
  },
217
243
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sysprom",
3
- "version": "1.27.0",
3
+ "version": "1.27.1",
4
4
  "description": "SysProM — System Provenance Model CLI and library",
5
5
  "author": "ExaDev",
6
6
  "homepage": "https://exadev.github.io/SysProM",