@g1cloud/bpmn-modeler-next 5.0.0-alpha.61 → 5.0.0-alpha.63
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/agent/describeProcess.d.ts +7 -1
- package/dist/agent/resolver/issues.d.ts +12 -0
- package/dist/agent/symbolicOp.d.ts +3 -2
- package/dist/bpmn-modeler.js +7193 -7144
- package/dist/bpmn-modeler.umd.cjs +46 -46
- package/dist/core/ir.d.ts +32 -6
- package/package.json +1 -1
|
@@ -7,8 +7,14 @@ export interface IrOmission {
|
|
|
7
7
|
/** bpmn $type 원형 (예: `bpmn:BoundaryEvent`) */
|
|
8
8
|
type: string;
|
|
9
9
|
reason:
|
|
10
|
-
/**
|
|
10
|
+
/** IR 타입 집합 밖 (intermediate 이벤트·dataObject 등 — 승격 시 자동 해소) */
|
|
11
11
|
'type-outside-mvp'
|
|
12
|
+
/**
|
|
13
|
+
* 승격된 컨테이너(subProcess) **내부**라 표현하지 않음 (B-87 ⓐ = 불투명 승격).
|
|
14
|
+
* 컨테이너 자신은 노드로 보이지만 내부는 열지 않았다 — 침묵하면 에이전트가 빈 컨테이너로
|
|
15
|
+
* 오인해 파괴적 편집을 한다. 내부를 IR 에 내려면 부모 채널·컨테이너 내부 좌표계가 필요하다.
|
|
16
|
+
*/
|
|
17
|
+
| 'inside-container'
|
|
12
18
|
/** 끝점이 미표현 요소라 연결 자체를 표현할 수 없음 */
|
|
13
19
|
| 'endpoint-outside-mvp'
|
|
14
20
|
/** 협업 문서인데 어느 participant 도 참조하지 않는 프로세스 (풀 귀속 불명) */
|
|
@@ -102,6 +102,18 @@ export type ResolveIssue =
|
|
|
102
102
|
opIndex: number;
|
|
103
103
|
id: string;
|
|
104
104
|
}
|
|
105
|
+
/**
|
|
106
|
+
* `node.add`/`node.update` 의 type 이 **만들 수 있는 집합 밖** — 읽을 수 있다고 만들 수 있는 것이
|
|
107
|
+
* 아니다(B-87 ⓐ). describe 는 `subProcess`·`boundaryEvent` 를 노드로 내지만 그 둘의 배치 하강은
|
|
108
|
+
* 미실증이다(subProcess = 내부 좌표계 · boundaryEvent = `attachedToRef` 좌표 종속). 스키마 enum 이
|
|
109
|
+
* 1차 방어이고 이 issue 가 2차 방어다 — 호스트가 스키마를 집행하지 않기 때문(payload-invalid 주석 참조).
|
|
110
|
+
*/
|
|
111
|
+
| {
|
|
112
|
+
kind: 'node-type-unsupported';
|
|
113
|
+
opIndex: number;
|
|
114
|
+
id: string;
|
|
115
|
+
type: string;
|
|
116
|
+
}
|
|
105
117
|
/** lanes 재선언이 기존 레인을 누락 — 레인 축소는 미실증 축(B-0)이라 거부 (세션 ②-b 판단) */
|
|
106
118
|
| {
|
|
107
119
|
kind: 'lane-shrink-unsupported';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { BwlBand, BwlPlacement, BwlPoolOrder } from '../core/hints';
|
|
2
|
-
import { IrAssociation, IrDataAssociation, IrDataStore,
|
|
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 =
|
|
5
5
|
/** 풀 추가. `order` = 풀 세로 순서 힌트(생략 시 op 순서가 곧 배치 순서). */
|
|
@@ -57,12 +57,13 @@ export type SymbolicOp =
|
|
|
57
57
|
}
|
|
58
58
|
/** `lane` = 레인 재배정(이동). `type` = 태스크/이벤트 타입 전환(bpmn-js replace 하강 — 외래 확장 속성 유실 가능성은 불변식 2 가 완충). */
|
|
59
59
|
/** 노드 갱신. `band` = 기존 노드의 행 재지정(B-72 ⓐ 승격) — 기존 컨테이너에서 band 는 **행 identity** 다. */
|
|
60
|
+
/** ⚠ `type` 은 **만들 수 있는 집합**으로 좁다 — read 집합(11)이 아니다(B-87 ⓐ). 타입이 0차 방어다. */
|
|
60
61
|
| {
|
|
61
62
|
kind: 'node.update';
|
|
62
63
|
id: string;
|
|
63
64
|
name?: string | null;
|
|
64
65
|
lane?: string;
|
|
65
|
-
type?:
|
|
66
|
+
type?: AddableFlowNodeType;
|
|
66
67
|
band?: BwlBand;
|
|
67
68
|
}
|
|
68
69
|
/**
|