@g1cloud/bpmn-modeler-next 5.0.0-alpha.77 → 5.0.0-alpha.79

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.
@@ -1,5 +1,5 @@
1
1
  import { ModdleElement, ParseWarning } from '../adapter/xml';
2
- import { BwlBand, BwlPlacement, BwlPoolOrder } from '../core/hints';
2
+ import { BwlAfterColumn, BwlBand, BwlPlacement, BwlPoolOrder } from '../core/hints';
3
3
  import { IrDefinition } from '../core/ir';
4
4
  /** 파생 뷰가 표현하지 못한 요소 — 침묵 폐기 금지(에이전트가 미표현 존재를 알아야 안전). */
5
5
  export interface IrOmission {
@@ -27,8 +27,13 @@ export interface IrOmission {
27
27
  export interface BwlHintView {
28
28
  /** participant id → 풀 세로 순서 */
29
29
  poolOrders: Record<string, BwlPoolOrder>;
30
- /** 플로우 노드 id → 프로세스 내부 가로 밴드 */
30
+ /** 플로우 노드 id → 프로세스 내부 가로 밴드(행) */
31
31
  bands: Record<string, BwlBand>;
32
+ /**
33
+ * 플로우 노드 id → 열 지목 힌트(그 노드보다 뒤 열). `bands` 와 대칭 채널이다.
34
+ * ⚠ **존재 필터**(A-6) — 참조 대상이 문서에 없으면 내지 않는다(힌트 = 파생 정보 · 불변식 2).
35
+ */
36
+ afterColumns: Record<string, BwlAfterColumn>;
32
37
  /** 주석 id → 앵커 기준 방위 (앵커 부재분은 필터됨) */
33
38
  placements: Record<string, BwlPlacement>;
34
39
  }
@@ -1,4 +1,4 @@
1
- import { BwlBand, BwlPlacement, BwlPoolOrder } from '../core/hints';
1
+ import { BwlAfterColumn, BwlBand, BwlPlacement, BwlPoolOrder } from '../core/hints';
2
2
  import { IrAssociation, IrDataAssociation, IrDataStore, AddableFlowNodeType, IrFlowCondition, IrGroup, IrLane, IrMessageFlow, IrNode, IrParticipant, IrSequenceFlow, IrTextAnnotation } from '../core/ir';
3
3
  /** LLM 이 산출하는 단일 심볼릭 op. `kind` 로 판별한다. */
4
4
  export type SymbolicOp =
@@ -8,11 +8,15 @@ export type SymbolicOp =
8
8
  participant: IrParticipant;
9
9
  order?: BwlPoolOrder;
10
10
  }
11
- /** 플로우 노드 추가. `node.lane` 은 좌표 결정에만 쓰인다(A-3 — flowNodeRef 는 bpmn-js 지오메트리 자동 유지). `band` = 프로세스 내부 가로 밴드 힌트. */
11
+ /**
12
+ * 플로우 노드 추가. `node.lane` 은 좌표 결정에만 쓰인다(A-3 — flowNodeRef 는 bpmn-js 지오메트리 자동 유지).
13
+ * `band` = 프로세스 내부 가로 밴드(행) 힌트 · `afterColumn` = **열** 지목 힌트(그 노드보다 뒤 열 · 표본 73).
14
+ */
12
15
  | {
13
16
  kind: 'node.add';
14
17
  node: IrNode;
15
18
  band?: BwlBand;
19
+ afterColumn?: BwlAfterColumn;
16
20
  } | {
17
21
  kind: 'sequenceFlow.add';
18
22
  flow: IrSequenceFlow;