archgraph-argo 0.13.1 → 0.13.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.
@@ -447,7 +447,12 @@ function syncGraphToQea(graph, qeaPath, opts) {
447
447
  const end = elemIdByAliasAll.get(String(rel.target_id));
448
448
  if (start === undefined || end === undefined) { continue; }
449
449
  const map = relationshipMap(rel.type);
450
- const direction = map.directed ? 'Source -> Destination' : '';
450
+ // Every ArchiMate relationship in the graph carries an explicit source->target
451
+ // orientation. Write an EA Direction unconditionally so the projected VIEW renders
452
+ // each relationship's arrowhead and the source/target orientation is never lost —
453
+ // an empty/Unspecified Direction renders Association-mapped connectors as arrowless
454
+ // lines (Serving/Assignment/Composition/Aggregation) which hides their direction.
455
+ const direction = 'Source -> Destination';
451
456
  const existing = relByGuid.get(guid);
452
457
  const intended = {
453
458
  Name: safeName(rel.name, alias),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "archgraph-argo",
3
- "version": "0.13.1",
3
+ "version": "0.13.3",
4
4
  "description": "Deploy the ArchGraph ARGO toolchain, skills, and rules (schema, scripts, argo-init skill, global rule) with one command.",
5
5
  "license": "MIT",
6
6
  "bin": {