@motiadev/workbench 0.13.2-beta.164-110989 → 0.14.0-beta.164
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.ts +10 -189
- package/dist/index.html +1 -1
- package/dist/index.js +7 -1065
- package/dist/middleware.d.ts +8 -66
- package/dist/middleware.js +86 -694
- package/dist/motia-plugin/__tests__/generator.test.d.ts +1 -0
- package/dist/motia-plugin/__tests__/generator.test.js +97 -0
- package/dist/motia-plugin/__tests__/resolver.test.d.ts +1 -0
- package/dist/motia-plugin/__tests__/resolver.test.js +64 -0
- package/dist/motia-plugin/__tests__/validator.test.d.ts +1 -0
- package/dist/motia-plugin/__tests__/validator.test.js +59 -0
- package/dist/motia-plugin/generator.d.ts +78 -0
- package/dist/motia-plugin/{generator.ts → generator.js} +35 -37
- package/dist/motia-plugin/hmr.d.ts +22 -0
- package/dist/motia-plugin/hmr.js +100 -0
- package/dist/motia-plugin/index.d.ts +3 -0
- package/dist/motia-plugin/index.js +153 -0
- package/dist/motia-plugin/{resolver.ts → resolver.d.ts} +5 -38
- package/dist/motia-plugin/resolver.js +92 -0
- package/dist/motia-plugin/types.d.ts +169 -0
- package/dist/motia-plugin/types.js +36 -0
- package/dist/motia-plugin/{utils.ts → utils.d.ts} +4 -17
- package/dist/motia-plugin/utils.js +75 -0
- package/dist/motia-plugin/validator.d.ts +19 -0
- package/dist/motia-plugin/validator.js +163 -0
- package/dist/src/App.d.ts +2 -0
- package/dist/src/App.js +35 -0
- package/dist/src/components/NotFoundPage.d.ts +1 -0
- package/dist/src/components/NotFoundPage.js +3 -0
- package/dist/src/components/bottom-panel.d.ts +1 -0
- package/dist/src/components/bottom-panel.js +15 -0
- package/dist/src/components/flow/base-edge.d.ts +3 -0
- package/dist/src/components/flow/base-edge.js +39 -0
- package/dist/src/components/flow/flow-loader.d.ts +1 -0
- package/dist/src/components/flow/flow-loader.js +4 -0
- package/dist/src/components/flow/flow-page.d.ts +1 -0
- package/dist/src/components/flow/flow-page.js +25 -0
- package/dist/src/components/flow/flow-tab-menu-item.d.ts +1 -0
- package/dist/src/components/flow/flow-tab-menu-item.js +18 -0
- package/dist/src/components/flow/flow-view.d.ts +12 -0
- package/dist/src/components/flow/flow-view.js +22 -0
- package/dist/src/components/flow/hooks/use-get-flow-state.d.ts +10 -0
- package/dist/src/components/flow/hooks/use-get-flow-state.js +133 -0
- package/dist/src/components/flow/hooks/use-save-workflow-config.d.ts +2 -0
- package/dist/src/components/flow/hooks/use-save-workflow-config.js +22 -0
- package/dist/src/components/flow/node-organizer.d.ts +10 -0
- package/dist/src/components/flow/node-organizer.js +82 -0
- package/dist/src/components/flow/nodes/api-flow-node.d.ts +2 -0
- package/dist/src/components/flow/nodes/api-flow-node.js +5 -0
- package/dist/src/components/flow/nodes/cron-flow-node.d.ts +2 -0
- package/dist/src/components/flow/nodes/cron-flow-node.js +5 -0
- package/dist/src/components/flow/nodes/event-flow-node.d.ts +2 -0
- package/dist/src/components/flow/nodes/event-flow-node.js +5 -0
- package/dist/src/components/flow/nodes/noop-flow-node.d.ts +2 -0
- package/dist/src/components/flow/nodes/noop-flow-node.js +5 -0
- package/dist/src/components/header/deploy-button.d.ts +1 -0
- package/dist/src/components/header/deploy-button.js +28 -0
- package/dist/src/components/header/header.d.ts +2 -0
- package/dist/src/components/header/header.js +23 -0
- package/dist/src/components/root-motia.d.ts +2 -0
- package/dist/src/components/root-motia.js +7 -0
- package/dist/src/components/top-panel.d.ts +1 -0
- package/dist/src/components/top-panel.js +15 -0
- package/dist/src/components/tutorial/engine/tutorial-engine.d.ts +12 -0
- package/dist/src/components/tutorial/engine/tutorial-engine.js +36 -0
- package/dist/src/components/tutorial/engine/tutorial-types.d.ts +22 -0
- package/dist/src/components/tutorial/engine/tutorial-types.js +1 -0
- package/dist/src/components/tutorial/engine/workbench-xpath.d.ts +45 -0
- package/dist/src/components/tutorial/engine/workbench-xpath.js +45 -0
- package/dist/src/components/tutorial/hooks/tutorial-utils.d.ts +1 -0
- package/dist/src/components/tutorial/hooks/tutorial-utils.js +17 -0
- package/dist/src/components/tutorial/hooks/use-tutorial-engine.d.ts +15 -0
- package/dist/src/components/tutorial/hooks/use-tutorial-engine.js +183 -0
- package/dist/src/components/tutorial/hooks/use-tutorial.d.ts +5 -0
- package/dist/src/components/tutorial/hooks/use-tutorial.js +10 -0
- package/dist/src/components/tutorial/tutorial-button.d.ts +2 -0
- package/dist/src/components/tutorial/tutorial-button.js +21 -0
- package/dist/src/components/tutorial/tutorial-step.d.ts +14 -0
- package/dist/src/components/tutorial/tutorial-step.js +19 -0
- package/dist/src/components/tutorial/tutorial.css +2 -2
- package/dist/src/components/tutorial/tutorial.d.ts +2 -0
- package/dist/src/components/tutorial/tutorial.js +32 -0
- package/dist/src/components/ui/json-editor.d.ts +12 -0
- package/dist/src/components/ui/json-editor.js +35 -0
- package/dist/src/components/ui/table.d.ts +10 -0
- package/dist/src/components/ui/table.js +20 -0
- package/dist/src/components/ui/theme-toggle.d.ts +2 -0
- package/dist/src/components/ui/theme-toggle.js +19 -0
- package/dist/src/components/ui/tooltip.d.ts +6 -0
- package/dist/src/components/ui/tooltip.js +3 -0
- package/dist/src/hooks/use-debounced.d.ts +1 -0
- package/dist/src/hooks/use-debounced.js +18 -0
- package/dist/src/hooks/use-fetch-flows.d.ts +1 -0
- package/dist/src/hooks/use-fetch-flows.js +26 -0
- package/dist/src/hooks/use-mobile.d.ts +1 -0
- package/dist/src/hooks/use-mobile.js +15 -0
- package/dist/src/hooks/use-update-handle-positions.d.ts +10 -0
- package/dist/src/hooks/use-update-handle-positions.js +35 -0
- package/dist/src/index.css +5 -5
- package/dist/src/lib/__tests__/utils.test.d.ts +1 -0
- package/dist/src/lib/__tests__/utils.test.js +94 -0
- package/dist/src/lib/motia-analytics.d.ts +38 -0
- package/dist/src/lib/motia-analytics.js +132 -0
- package/dist/src/lib/plugins.d.ts +2 -0
- package/dist/src/lib/plugins.js +105 -0
- package/dist/src/lib/utils.d.ts +7 -0
- package/dist/src/lib/utils.js +34 -0
- package/dist/src/main.d.ts +2 -0
- package/dist/src/main.js +17 -0
- package/dist/src/project-view-mode.d.ts +1 -0
- package/dist/src/project-view-mode.js +20 -0
- package/dist/src/publicComponents/api-node.d.ts +5 -0
- package/dist/src/publicComponents/api-node.js +5 -0
- package/dist/src/publicComponents/base-node/base-handle.d.ts +9 -0
- package/dist/src/publicComponents/base-node/base-handle.js +8 -0
- package/dist/src/publicComponents/base-node/base-node.d.ts +15 -0
- package/dist/src/publicComponents/base-node/base-node.js +30 -0
- package/dist/src/publicComponents/base-node/code-display.d.ts +9 -0
- package/dist/src/publicComponents/base-node/code-display.js +64 -0
- package/dist/src/publicComponents/base-node/emits.d.ts +5 -0
- package/dist/src/publicComponents/base-node/emits.js +5 -0
- package/dist/src/publicComponents/base-node/feature-card.d.ts +10 -0
- package/dist/src/publicComponents/base-node/feature-card.js +5 -0
- package/dist/src/publicComponents/base-node/language-indicator.d.ts +10 -0
- package/dist/src/publicComponents/base-node/language-indicator.js +29 -0
- package/dist/src/publicComponents/base-node/node-header.d.ts +13 -0
- package/dist/src/publicComponents/base-node/node-header.js +30 -0
- package/dist/src/publicComponents/base-node/node-sidebar.d.ts +14 -0
- package/dist/src/publicComponents/base-node/node-sidebar.js +9 -0
- package/dist/src/publicComponents/base-node/subscribe.d.ts +4 -0
- package/dist/src/publicComponents/base-node/subscribe.js +4 -0
- package/dist/src/publicComponents/cron-node.d.ts +4 -0
- package/dist/src/publicComponents/cron-node.js +6 -0
- package/dist/src/publicComponents/event-node.d.ts +4 -0
- package/dist/src/publicComponents/event-node.js +5 -0
- package/dist/src/publicComponents/node-props.d.ts +21 -0
- package/dist/src/publicComponents/node-props.js +1 -0
- package/dist/src/publicComponents/noop-node.d.ts +4 -0
- package/dist/src/publicComponents/noop-node.js +5 -0
- package/dist/src/setupTests.d.ts +1 -0
- package/dist/src/setupTests.js +1 -0
- package/dist/src/stores/use-app-tabs-store.d.ts +16 -0
- package/dist/src/stores/use-app-tabs-store.js +31 -0
- package/dist/src/stores/use-flow-store.d.ts +21 -0
- package/dist/src/stores/use-flow-store.js +16 -0
- package/dist/src/stores/use-global-store.d.ts +18 -0
- package/dist/src/stores/use-global-store.js +12 -0
- package/dist/src/stores/use-motia-config-store.d.ts +12 -0
- package/dist/src/stores/use-motia-config-store.js +24 -0
- package/dist/src/stores/use-tabs-store.d.ts +19 -0
- package/dist/src/stores/use-tabs-store.js +22 -0
- package/dist/src/system-view-mode.d.ts +1 -0
- package/dist/src/system-view-mode.js +10 -0
- package/dist/src/types/endpoint.d.ts +14 -0
- package/dist/src/types/endpoint.js +1 -0
- package/dist/src/types/file.d.ts +7 -0
- package/dist/src/types/file.js +1 -0
- package/dist/src/types/flow.d.ts +115 -0
- package/dist/src/types/flow.js +1 -0
- package/dist/tsconfig.app.tsbuildinfo +1 -0
- package/dist/tsconfig.node.tsbuildinfo +1 -0
- package/package.json +51 -53
- package/dist/motia-plugin/__tests__/generator.test.ts +0 -129
- package/dist/motia-plugin/__tests__/resolver.test.ts +0 -82
- package/dist/motia-plugin/__tests__/validator.test.ts +0 -71
- package/dist/motia-plugin/hmr.ts +0 -123
- package/dist/motia-plugin/index.ts +0 -183
- package/dist/motia-plugin/types.ts +0 -198
- package/dist/motia-plugin/validator.ts +0 -197
- package/dist/src/App.tsx +0 -41
- package/dist/src/components/NotFoundPage.tsx +0 -11
- package/dist/src/components/bottom-panel.tsx +0 -39
- package/dist/src/components/flow/base-edge.tsx +0 -61
- package/dist/src/components/flow/flow-loader.tsx +0 -3
- package/dist/src/components/flow/flow-page.tsx +0 -75
- package/dist/src/components/flow/flow-tab-menu-item.tsx +0 -52
- package/dist/src/components/flow/flow-view.tsx +0 -66
- package/dist/src/components/flow/hooks/use-get-flow-state.tsx +0 -171
- package/dist/src/components/flow/hooks/use-save-workflow-config.ts +0 -25
- package/dist/src/components/flow/node-organizer.tsx +0 -103
- package/dist/src/components/flow/nodes/api-flow-node.tsx +0 -6
- package/dist/src/components/flow/nodes/cron-flow-node.tsx +0 -6
- package/dist/src/components/flow/nodes/event-flow-node.tsx +0 -6
- package/dist/src/components/flow/nodes/noop-flow-node.tsx +0 -6
- package/dist/src/components/header/deploy-button.tsx +0 -110
- package/dist/src/components/header/header.tsx +0 -39
- package/dist/src/components/root-motia.tsx +0 -10
- package/dist/src/components/top-panel.tsx +0 -40
- package/dist/src/components/tutorial/engine/tutorial-engine.ts +0 -26
- package/dist/src/components/tutorial/engine/tutorial-types.ts +0 -26
- package/dist/src/components/tutorial/engine/workbench-xpath.ts +0 -53
- package/dist/src/components/tutorial/hooks/tutorial-utils.ts +0 -26
- package/dist/src/components/tutorial/hooks/use-tutorial-engine.ts +0 -213
- package/dist/src/components/tutorial/hooks/use-tutorial.ts +0 -14
- package/dist/src/components/tutorial/tutorial-button.tsx +0 -46
- package/dist/src/components/tutorial/tutorial-step.tsx +0 -82
- package/dist/src/components/tutorial/tutorial.tsx +0 -59
- package/dist/src/components/ui/json-editor.tsx +0 -68
- package/dist/src/components/ui/table.tsx +0 -75
- package/dist/src/components/ui/theme-toggle.tsx +0 -54
- package/dist/src/components/ui/tooltip.tsx +0 -26
- package/dist/src/hooks/use-debounced.ts +0 -22
- package/dist/src/hooks/use-fetch-flows.ts +0 -33
- package/dist/src/hooks/use-mobile.ts +0 -19
- package/dist/src/hooks/use-update-handle-positions.ts +0 -42
- package/dist/src/lib/__tests__/utils.test.ts +0 -110
- package/dist/src/lib/motia-analytics.ts +0 -140
- package/dist/src/lib/plugins.tsx +0 -132
- package/dist/src/lib/utils.ts +0 -37
- package/dist/src/main.tsx +0 -30
- package/dist/src/project-view-mode.tsx +0 -32
- package/dist/src/publicComponents/api-node.tsx +0 -26
- package/dist/src/publicComponents/base-node/base-handle.tsx +0 -50
- package/dist/src/publicComponents/base-node/base-node.tsx +0 -114
- package/dist/src/publicComponents/base-node/code-display.tsx +0 -119
- package/dist/src/publicComponents/base-node/emits.tsx +0 -17
- package/dist/src/publicComponents/base-node/feature-card.tsx +0 -32
- package/dist/src/publicComponents/base-node/language-indicator.tsx +0 -131
- package/dist/src/publicComponents/base-node/node-header.tsx +0 -49
- package/dist/src/publicComponents/base-node/node-sidebar.tsx +0 -41
- package/dist/src/publicComponents/base-node/subscribe.tsx +0 -13
- package/dist/src/publicComponents/cron-node.tsx +0 -24
- package/dist/src/publicComponents/event-node.tsx +0 -20
- package/dist/src/publicComponents/node-props.tsx +0 -15
- package/dist/src/publicComponents/noop-node.tsx +0 -19
- package/dist/src/setupTests.ts +0 -1
- package/dist/src/stores/use-app-tabs-store.ts +0 -49
- package/dist/src/stores/use-flow-store.ts +0 -31
- package/dist/src/stores/use-global-store.ts +0 -24
- package/dist/src/stores/use-motia-config-store.ts +0 -36
- package/dist/src/stores/use-tabs-store.ts +0 -34
- package/dist/src/system-view-mode.tsx +0 -28
- package/dist/src/types/endpoint.ts +0 -12
- package/dist/src/types/file.ts +0 -7
- package/dist/src/types/flow.ts +0 -103
- package/eslint.config.cjs +0 -22
- package/jest.config.cjs +0 -68
package/dist/index.d.ts
CHANGED
|
@@ -1,189 +1,10 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
};
|
|
11
|
-
type TutorialActionEditor = {
|
|
12
|
-
type: "fill-editor";
|
|
13
|
-
content: Record<string, any>;
|
|
14
|
-
};
|
|
15
|
-
type TutorialAction = TutorialActionClick | TutorialActionEditor;
|
|
16
|
-
type TutorialImage = {
|
|
17
|
-
height: number;
|
|
18
|
-
src: string;
|
|
19
|
-
};
|
|
20
|
-
type TutorialStep = {
|
|
21
|
-
title: string;
|
|
22
|
-
description: React.FC<void>;
|
|
23
|
-
image?: TutorialImage;
|
|
24
|
-
link?: string;
|
|
25
|
-
elementXpath?: string;
|
|
26
|
-
before?: TutorialAction[];
|
|
27
|
-
};
|
|
28
|
-
//#endregion
|
|
29
|
-
//#region src/components/tutorial/engine/workbench-xpath.d.ts
|
|
30
|
-
declare const workbenchXPath: {
|
|
31
|
-
sidebarContainer: string;
|
|
32
|
-
closePanelButton: string;
|
|
33
|
-
bottomPanel: string;
|
|
34
|
-
flows: {
|
|
35
|
-
dropdownFlow: (flowId: string) => string;
|
|
36
|
-
feature: (featureId: string) => string;
|
|
37
|
-
previewButton: (stepId: string) => string;
|
|
38
|
-
node: (stepId: string) => string;
|
|
39
|
-
};
|
|
40
|
-
endpoints: {
|
|
41
|
-
endpointsList: string;
|
|
42
|
-
endpoint: (method: string, path: string) => string;
|
|
43
|
-
callPanel: string;
|
|
44
|
-
specButton: string;
|
|
45
|
-
bodyTab: string;
|
|
46
|
-
headersTab: string;
|
|
47
|
-
paramsTab: string;
|
|
48
|
-
callTab: string;
|
|
49
|
-
response: string;
|
|
50
|
-
playButton: string;
|
|
51
|
-
};
|
|
52
|
-
tracing: {
|
|
53
|
-
trace: (index: number) => string;
|
|
54
|
-
details: string;
|
|
55
|
-
timeline: (index: number) => string;
|
|
56
|
-
};
|
|
57
|
-
logs: {
|
|
58
|
-
container: string;
|
|
59
|
-
searchContainer: string;
|
|
60
|
-
traceColumn: (index: number) => string;
|
|
61
|
-
row: string;
|
|
62
|
-
};
|
|
63
|
-
states: {
|
|
64
|
-
container: string;
|
|
65
|
-
row: (index: number) => string;
|
|
66
|
-
};
|
|
67
|
-
links: {
|
|
68
|
-
flows: string;
|
|
69
|
-
endpoints: string;
|
|
70
|
-
tracing: string;
|
|
71
|
-
logs: string;
|
|
72
|
-
states: string;
|
|
73
|
-
};
|
|
74
|
-
};
|
|
75
|
-
//#endregion
|
|
76
|
-
//#region src/types/flow.d.ts
|
|
77
|
-
type EventNodeData = {
|
|
78
|
-
type: string;
|
|
79
|
-
name: string;
|
|
80
|
-
description?: string;
|
|
81
|
-
subscribes: string[];
|
|
82
|
-
emits: Array<string | {
|
|
83
|
-
topic: string;
|
|
84
|
-
label?: string;
|
|
85
|
-
}>;
|
|
86
|
-
virtualEmits?: Array<string | {
|
|
87
|
-
topic: string;
|
|
88
|
-
label?: string;
|
|
89
|
-
}>;
|
|
90
|
-
virtualSubscribes?: string[];
|
|
91
|
-
language?: string;
|
|
92
|
-
};
|
|
93
|
-
type NoopNodeData = {
|
|
94
|
-
type: string;
|
|
95
|
-
name: string;
|
|
96
|
-
description?: string;
|
|
97
|
-
virtualEmits: string[];
|
|
98
|
-
subscribes: string[];
|
|
99
|
-
};
|
|
100
|
-
type ApiNodeData = {
|
|
101
|
-
type: string;
|
|
102
|
-
name: string;
|
|
103
|
-
language?: string;
|
|
104
|
-
description?: string;
|
|
105
|
-
emits: Array<string | {
|
|
106
|
-
topic: string;
|
|
107
|
-
label?: string;
|
|
108
|
-
}>;
|
|
109
|
-
subscribes?: string[];
|
|
110
|
-
virtualEmits?: Array<string | {
|
|
111
|
-
topic: string;
|
|
112
|
-
label?: string;
|
|
113
|
-
}>;
|
|
114
|
-
virtualSubscribes?: string[];
|
|
115
|
-
webhookUrl?: string;
|
|
116
|
-
bodySchema?: JSONSchema7;
|
|
117
|
-
};
|
|
118
|
-
type CronNodeData = {
|
|
119
|
-
type: string;
|
|
120
|
-
name: string;
|
|
121
|
-
description?: string;
|
|
122
|
-
emits: Array<string | {
|
|
123
|
-
topic: string;
|
|
124
|
-
label?: string;
|
|
125
|
-
}>;
|
|
126
|
-
virtualEmits?: Array<string | {
|
|
127
|
-
topic: string;
|
|
128
|
-
label?: string;
|
|
129
|
-
}>;
|
|
130
|
-
virtualSubscribes?: string[];
|
|
131
|
-
cronExpression: string;
|
|
132
|
-
language?: string;
|
|
133
|
-
};
|
|
134
|
-
//#endregion
|
|
135
|
-
//#region src/publicComponents/node-props.d.ts
|
|
136
|
-
type BaseNodeProps = {
|
|
137
|
-
id: string;
|
|
138
|
-
nodeConfig?: {
|
|
139
|
-
sourceHandlePosition?: "bottom" | "right";
|
|
140
|
-
targetHandlePosition?: "top" | "left";
|
|
141
|
-
};
|
|
142
|
-
};
|
|
143
|
-
type EventNodeProps = {
|
|
144
|
-
data: BaseNodeProps & EventNodeData;
|
|
145
|
-
};
|
|
146
|
-
type NoopNodeProps = {
|
|
147
|
-
data: BaseNodeProps & NoopNodeData;
|
|
148
|
-
};
|
|
149
|
-
type ApiNodeProps = {
|
|
150
|
-
data: BaseNodeProps & ApiNodeData;
|
|
151
|
-
};
|
|
152
|
-
type CronNodeProps = {
|
|
153
|
-
data: BaseNodeProps & CronNodeData;
|
|
154
|
-
};
|
|
155
|
-
//#endregion
|
|
156
|
-
//#region src/publicComponents/api-node.d.ts
|
|
157
|
-
type Props$2 = PropsWithChildren<ApiNodeProps>;
|
|
158
|
-
declare const ApiNode: ({
|
|
159
|
-
data,
|
|
160
|
-
children
|
|
161
|
-
}: Props$2) => JSX.Element;
|
|
162
|
-
//#endregion
|
|
163
|
-
//#region src/publicComponents/base-node/base-handle.d.ts
|
|
164
|
-
type Props$1 = HandleProps & Omit<HTMLAttributes<HTMLDivElement>, "id"> & {
|
|
165
|
-
isHidden?: boolean;
|
|
166
|
-
onTogglePosition?: () => void;
|
|
167
|
-
};
|
|
168
|
-
declare const BaseHandle: React$1.FC<Props$1>;
|
|
169
|
-
//#endregion
|
|
170
|
-
//#region src/publicComponents/base-node/base-node.d.ts
|
|
171
|
-
type Props = PropsWithChildren<{
|
|
172
|
-
title: string;
|
|
173
|
-
subtitle?: string;
|
|
174
|
-
variant: "event" | "api" | "noop" | "cron";
|
|
175
|
-
language?: string;
|
|
176
|
-
className?: string;
|
|
177
|
-
disableSourceHandle?: boolean;
|
|
178
|
-
disableTargetHandle?: boolean;
|
|
179
|
-
data: BaseNodeProps;
|
|
180
|
-
}>;
|
|
181
|
-
declare const BaseNode: React$1.FC<Props>;
|
|
182
|
-
//#endregion
|
|
183
|
-
//#region src/publicComponents/event-node.d.ts
|
|
184
|
-
declare const EventNode: React$1.FC<PropsWithChildren<EventNodeProps>>;
|
|
185
|
-
//#endregion
|
|
186
|
-
//#region src/publicComponents/noop-node.d.ts
|
|
187
|
-
declare const NoopNode: React$1.FC<PropsWithChildren<NoopNodeProps>>;
|
|
188
|
-
//#endregion
|
|
189
|
-
export { ApiNode, type ApiNodeData, type ApiNodeProps, BaseHandle, BaseNode, type BaseNodeProps, type CronNodeProps, EventNode, type EventNodeData, type EventNodeProps, NoopNode, type NoopNodeProps, Position, type TutorialStep, workbenchXPath };
|
|
1
|
+
export { Position } from '@xyflow/react';
|
|
2
|
+
export type { TutorialStep } from './src/components/tutorial/engine/tutorial-types';
|
|
3
|
+
export { workbenchXPath } from './src/components/tutorial/engine/workbench-xpath';
|
|
4
|
+
export { ApiNode } from './src/publicComponents/api-node';
|
|
5
|
+
export { BaseHandle } from './src/publicComponents/base-node/base-handle';
|
|
6
|
+
export { BaseNode } from './src/publicComponents/base-node/base-node';
|
|
7
|
+
export { EventNode } from './src/publicComponents/event-node';
|
|
8
|
+
export type { ApiNodeProps, BaseNodeProps, CronNodeProps, EventNodeProps, NoopNodeProps, } from './src/publicComponents/node-props';
|
|
9
|
+
export { NoopNode } from './src/publicComponents/noop-node';
|
|
10
|
+
export type { ApiNodeData, EventNodeData } from './src/types/flow';
|