@bizdoc/core 1.13.0-next.4 → 1.13.0-next.5
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/esm2020/lib/compose/trace/flow.component.mjs +4 -4
- package/esm2020/lib/core/models.mjs +1 -1
- package/fesm2015/bizdoc-core.mjs +3 -3
- package/fesm2015/bizdoc-core.mjs.map +1 -1
- package/fesm2020/bizdoc-core.mjs +3 -3
- package/fesm2020/bizdoc-core.mjs.map +1 -1
- package/lib/core/models.d.ts +2 -2
- package/package.json +1 -1
package/lib/core/models.d.ts
CHANGED
@@ -90,7 +90,7 @@ export interface RecipientModel<T = any> extends HeaderModel<T>, DocumentModel<T
|
|
90
90
|
tags?: string[];
|
91
91
|
}
|
92
92
|
export interface ConnectorInfo {
|
93
|
-
|
93
|
+
virtual?: boolean;
|
94
94
|
originId?: number;
|
95
95
|
estimate: boolean;
|
96
96
|
time?: Date;
|
@@ -98,7 +98,7 @@ export interface ConnectorInfo {
|
|
98
98
|
targetId: string;
|
99
99
|
}
|
100
100
|
export interface NodeInfo {
|
101
|
-
|
101
|
+
virtual?: boolean;
|
102
102
|
id: string;
|
103
103
|
/** node */
|
104
104
|
type: string;
|
package/package.json
CHANGED