airgen-cli 0.11.0 → 0.11.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.
@@ -66,17 +66,25 @@ export function registerProjectCommands(program, client) {
66
66
  { name: "System Requirements", code: "SYS", sections: [
67
67
  { name: "System Requirements", code: "SYS" },
68
68
  ] },
69
+ { name: "Interface Requirements", code: "IFC", sections: [
70
+ { name: "Interface Requirements", code: "IFC" },
71
+ ] },
69
72
  { name: "Subsystem Requirements", code: "SUB", sections: [
70
73
  { name: "Subsystem Requirements", code: "SUB" },
71
74
  ] },
75
+ { name: "Architecture Decisions", code: "ARC", sections: [
76
+ { name: "Architecture Decisions", code: "ARC" },
77
+ ] },
72
78
  { name: "Verification Requirements", code: "VER", sections: [
73
79
  { name: "Verification Requirements", code: "VER" },
74
80
  ] },
75
81
  ];
76
82
  const seLinksets = [
77
83
  { source: "stakeholder-requirements", target: "system-requirements" },
84
+ { source: "system-requirements", target: "interface-requirements" },
78
85
  { source: "system-requirements", target: "subsystem-requirements" },
79
86
  { source: "system-requirements", target: "verification-requirements" },
87
+ { source: "interface-requirements", target: "verification-requirements" },
80
88
  { source: "subsystem-requirements", target: "verification-requirements" },
81
89
  ];
82
90
  const safetyExtras = [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "airgen-cli",
3
- "version": "0.11.0",
3
+ "version": "0.11.1",
4
4
  "description": "AIRGen CLI — requirements engineering from the command line",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",