@flowgram.ai/document 0.1.21 → 0.1.23

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/index.d.mts CHANGED
@@ -1116,7 +1116,7 @@ type FlowNodeType = string | number;
1116
1116
  */
1117
1117
  interface FlowNodeJSON {
1118
1118
  id: string;
1119
- type?: FlowNodeType;
1119
+ type?: FlowNodeBaseType | FlowNodeSplitType | FlowNodeType;
1120
1120
  data?: Record<string, any>;
1121
1121
  meta?: FlowNodeMeta;
1122
1122
  blocks?: FlowNodeJSON[];
package/dist/index.d.ts CHANGED
@@ -1116,7 +1116,7 @@ type FlowNodeType = string | number;
1116
1116
  */
1117
1117
  interface FlowNodeJSON {
1118
1118
  id: string;
1119
- type?: FlowNodeType;
1119
+ type?: FlowNodeBaseType | FlowNodeSplitType | FlowNodeType;
1120
1120
  data?: Record<string, any>;
1121
1121
  meta?: FlowNodeMeta;
1122
1122
  blocks?: FlowNodeJSON[];