@loopstack/loopstack-studio 0.23.1 → 0.25.0
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/api/config.js +3 -3
- package/dist/api/index.js +10 -12
- package/dist/api/processor.js +1 -1
- package/dist/api/secrets.js +16 -0
- package/dist/api/workflows.js +7 -1
- package/dist/components/dynamic-form/ArrayController.js +68 -64
- package/dist/components/dynamic-form/CodeContent.js +3 -3
- package/dist/components/dynamic-form/Form.js +46 -40
- package/dist/components/dynamic-form/FormElement.js +1 -1
- package/dist/components/dynamic-form/FormElementHeader.js +2 -2
- package/dist/components/dynamic-form/ObjectController.js +24 -21
- package/dist/components/dynamic-form/fields/BaseFieldWrapper.js +1 -1
- package/dist/components/dynamic-form/fields/CodeViewField.js +36 -36
- package/dist/components/dynamic-form/fields/InputField.js +20 -19
- package/dist/components/dynamic-form/fields/RadioField.js +18 -18
- package/dist/components/dynamic-form/fields/SelectField.js +19 -19
- package/dist/components/dynamic-form/fields/TextareaField.js +17 -17
- package/dist/components/feedback/LoadingCentered.js +1 -1
- package/dist/components/layout/MainLayout.js +18 -31
- package/dist/components/layout/StudioSidebar.js +169 -109
- package/dist/components/loopstack-elements/link.js +77 -76
- package/dist/components/loopstack-elements/tool.js +171 -0
- package/dist/components/page/PageBreadcrumbs.js +79 -32
- package/dist/components/ui-widgets/UiActions.js +10 -4
- package/dist/components/ui-widgets/widgets/ButtonFullWidth.js +8 -6
- package/dist/components/ui-widgets/widgets/SubmitButton.js +8 -6
- package/dist/features/code-explorer/components/FileContentViewer.js +92 -100
- package/dist/features/dashboard/RunItem.js +1 -1
- package/dist/features/debug/components/ConfigFlowViewer.js +2 -2
- package/dist/features/debug/components/{PipelineDebugHeader.js → WorkflowDebugHeader.js} +5 -5
- package/dist/features/debug/components/{PipelineDebugLegend.js → WorkflowDebugLegend.js} +2 -2
- package/dist/features/debug/components/{PipelineFlowViewer.js → WorkflowFlowViewer.js} +9 -9
- package/dist/features/debug/components/workflow-flow/WorkflowGraph.js +46 -0
- package/dist/features/debug/index.js +2 -2
- package/dist/features/debug/lib/flow-utils.js +142 -150
- package/dist/features/documents/DocumentRenderer.js +66 -30
- package/dist/features/documents/components/DocumentItem.js +2 -2
- package/dist/features/documents/components/DocumentList.js +18 -11
- package/dist/features/documents/document-details/DocumentDetails.js +4 -4
- package/dist/features/documents/renderers/AiMessage.js +12 -12
- package/dist/features/documents/renderers/ChoicesRenderer.js +92 -0
- package/dist/features/documents/renderers/ClaudeMessage.js +1 -1
- package/dist/features/documents/renderers/ConfirmPromptRenderer.js +56 -0
- package/dist/features/documents/renderers/DocumentFormRenderer.js +95 -65
- package/dist/features/documents/renderers/LinkMessageRenderer.js +8 -10
- package/dist/features/documents/renderers/SecretInputRenderer.js +87 -0
- package/dist/features/documents/renderers/TextPromptRenderer.js +57 -0
- package/dist/features/documents/renderers/useDocumentTransition.js +30 -0
- package/dist/features/oauth/OAuthPromptRenderer.js +20 -20
- package/dist/features/runs/Runs.js +8 -8
- package/dist/features/workbench/Workbench.js +35 -35
- package/dist/features/workbench/WorkflowItem.js +10 -9
- package/dist/features/workbench/WorkflowList.js +56 -73
- package/dist/features/workbench/components/NewRunDialog.js +18 -18
- package/dist/features/workbench/components/WorkbenchFilesPanel.js +33 -26
- package/dist/features/workbench/components/WorkbenchFloatingPanel.js +13 -44
- package/dist/features/workbench/components/WorkbenchFlowPanel.js +27 -29
- package/dist/features/workbench/components/WorkbenchIconSidebar.js +17 -17
- package/dist/features/workbench/components/WorkbenchPreviewPanel.js +2 -2
- package/dist/features/workbench/components/WorkbenchSecretsPanel.js +182 -0
- package/dist/features/workbench/components/WorkbenchSettingsModal.js +16 -41
- package/dist/features/workbench/components/WorkflowForms.js +14 -13
- package/dist/features/workbench/components/WorkflowHistoryItem.js +60 -81
- package/dist/features/workbench/components/{PipelineHistoryList.js → WorkflowHistoryList.js} +5 -5
- package/dist/features/workbench/components/buttons/WorkflowButtons.js +56 -54
- package/dist/features/workbench/hooks/useWorkflowData.js +10 -10
- package/dist/features/workbench/hooks/useWorkflowListState.js +8 -45
- package/dist/features/workbench/index.js +2 -3
- package/dist/features/workbench/providers/RemoteFileExplorerProvider.js +132 -117
- package/dist/features/workbench/providers/ScrollProvider.js +2 -2
- package/dist/features/workbench/providers/WorkbenchLayoutProvider.js +4 -4
- package/dist/features/workspaces/Workspaces.js +1 -1
- package/dist/features/workspaces/components/CreateWorkspace.js +12 -12
- package/dist/features/workspaces/components/ExecutionTimeline.js +22 -21
- package/dist/features/workspaces/components/{NewPipelineRunDialog.js → NewWorkflowRunDialog.js} +6 -6
- package/dist/features/workspaces/components/{PipelineForm.js → WorkflowRunForm.js} +31 -31
- package/dist/features/workspaces/components/WorkspaceHomePage.js +11 -11
- package/dist/features/workspaces/components/{pipeline-form → workflow-form}/ArgumentsView.js +1 -1
- package/dist/features/workspaces/components/{pipeline-form → workflow-form}/SelectionView.js +16 -16
- package/dist/hooks/index.js +3 -3
- package/dist/hooks/query-keys.js +34 -68
- package/dist/hooks/useConfig.js +5 -5
- package/dist/hooks/useProcessor.js +5 -5
- package/dist/hooks/useSecrets.js +69 -0
- package/dist/hooks/useWorkflows.js +155 -68
- package/dist/index.d.ts +158 -116
- package/dist/index.js +5 -5
- package/dist/packages/contracts/dist/enums/index.js +11 -12
- package/dist/packages/contracts/dist/enums/workflow-state.enum.js +1 -1
- package/dist/pages/DashboardPage.js +87 -35
- package/dist/pages/DebugWorkflowDetailsPage.js +8 -8
- package/dist/pages/DebugWorkflowsPage.js +10 -10
- package/dist/pages/EmbedWorkbenchPage.js +39 -45
- package/dist/pages/PreviewWorkbenchPage.js +130 -255
- package/dist/pages/RunsListPage.js +1 -1
- package/dist/pages/StudioLandingPage.js +13 -13
- package/dist/pages/WorkbenchPage.js +6 -6
- package/dist/pages/WorkflowDebugPage.js +114 -0
- package/dist/pages/WorkspacePage.js +4 -2
- package/dist/providers/InvalidationEventsProvider.js +19 -19
- package/dist/providers/SseProvider.js +0 -1
- package/dist/routing/LocalRouter.js +14 -17
- package/dist/types/ai.types.js +13 -0
- package/package.json +2 -3
- package/dist/api/namespaces.js +0 -7
- package/dist/api/pipelines.js +0 -13
- package/dist/components/ai-elements/tool.js +0 -158
- package/dist/features/debug/components/pipeline-flow/WorkflowGraph.js +0 -41
- package/dist/features/workbench/NavigationItems.js +0 -52
- package/dist/features/workbench/WorkbenchNavigation.js +0 -38
- package/dist/features/workbench/components/NavigationItem.js +0 -68
- package/dist/features/workbench/hooks/useIntersectionObserver.js +0 -44
- package/dist/hooks/useNamespaceTree.js +0 -27
- package/dist/hooks/useNamespaces.js +0 -25
- package/dist/hooks/usePipelines.js +0 -161
- package/dist/node_modules/@ai-sdk/provider/dist/index.js +0 -65
- package/dist/node_modules/@ai-sdk/provider-utils/dist/index.js +0 -1008
- package/dist/node_modules/ai/dist/index.js +0 -1083
- package/dist/node_modules/zod/v3/ZodError.js +0 -79
- package/dist/node_modules/zod/v3/errors.js +0 -6
- package/dist/node_modules/zod/v3/helpers/errorUtil.js +0 -5
- package/dist/node_modules/zod/v3/helpers/parseUtil.js +0 -90
- package/dist/node_modules/zod/v3/helpers/util.js +0 -72
- package/dist/node_modules/zod/v3/locales/en.js +0 -58
- package/dist/node_modules/zod/v3/types.js +0 -2425
- package/dist/node_modules/zod/v4/classic/errors.js +0 -21
- package/dist/node_modules/zod/v4/classic/iso.js +0 -29
- package/dist/node_modules/zod/v4/classic/parse.js +0 -4
- package/dist/node_modules/zod/v4/classic/schemas.js +0 -392
- package/dist/node_modules/zod/v4/core/api.js +0 -532
- package/dist/node_modules/zod/v4/core/checks.js +0 -283
- package/dist/node_modules/zod/v4/core/core.js +0 -44
- package/dist/node_modules/zod/v4/core/doc.js +0 -21
- package/dist/node_modules/zod/v4/core/errors.js +0 -40
- package/dist/node_modules/zod/v4/core/json-schema-processors.js +0 -305
- package/dist/node_modules/zod/v4/core/parse.js +0 -66
- package/dist/node_modules/zod/v4/core/regexes.js +0 -28
- package/dist/node_modules/zod/v4/core/registries.js +0 -38
- package/dist/node_modules/zod/v4/core/schemas.js +0 -863
- package/dist/node_modules/zod/v4/core/to-json-schema.js +0 -220
- package/dist/node_modules/zod/v4/core/util.js +0 -267
- package/dist/node_modules/zod/v4/core/versions.js +0 -6
- package/dist/packages/contracts/dist/enums/pipeline-state.js +0 -10
- package/dist/pages/PipelineDebugPage.js +0 -115
- /package/dist/features/debug/components/{pipeline-flow → workflow-flow}/StateNode.js +0 -0
- /package/dist/features/debug/components/{pipeline-flow → workflow-flow}/WorkflowTransitionEdge.js +0 -0
- /package/dist/features/workspaces/components/{pipeline-form → workflow-form}/HeaderSection.js +0 -0
|
@@ -1,220 +0,0 @@
|
|
|
1
|
-
import { globalRegistry } from "./registries.js";
|
|
2
|
-
function initializeContext(t) {
|
|
3
|
-
let n = t?.target ?? "draft-2020-12";
|
|
4
|
-
return n === "draft-4" && (n = "draft-04"), n === "draft-7" && (n = "draft-07"), {
|
|
5
|
-
processors: t.processors ?? {},
|
|
6
|
-
metadataRegistry: t?.metadata ?? globalRegistry,
|
|
7
|
-
target: n,
|
|
8
|
-
unrepresentable: t?.unrepresentable ?? "throw",
|
|
9
|
-
override: t?.override ?? (() => {}),
|
|
10
|
-
io: t?.io ?? "output",
|
|
11
|
-
counter: 0,
|
|
12
|
-
seen: /* @__PURE__ */ new Map(),
|
|
13
|
-
cycles: t?.cycles ?? "ref",
|
|
14
|
-
reused: t?.reused ?? "inline",
|
|
15
|
-
external: t?.external ?? void 0
|
|
16
|
-
};
|
|
17
|
-
}
|
|
18
|
-
function process(e, t, r = {
|
|
19
|
-
path: [],
|
|
20
|
-
schemaPath: []
|
|
21
|
-
}) {
|
|
22
|
-
var i;
|
|
23
|
-
let o = e._zod.def, s = t.seen.get(e);
|
|
24
|
-
if (s) return s.count++, r.schemaPath.includes(e) && (s.cycle = r.path), s.schema;
|
|
25
|
-
let c = {
|
|
26
|
-
schema: {},
|
|
27
|
-
count: 1,
|
|
28
|
-
cycle: void 0,
|
|
29
|
-
path: r.path
|
|
30
|
-
};
|
|
31
|
-
t.seen.set(e, c);
|
|
32
|
-
let l = e._zod.toJSONSchema?.();
|
|
33
|
-
if (l) c.schema = l;
|
|
34
|
-
else {
|
|
35
|
-
let i = {
|
|
36
|
-
...r,
|
|
37
|
-
schemaPath: [...r.schemaPath, e],
|
|
38
|
-
path: r.path
|
|
39
|
-
};
|
|
40
|
-
if (e._zod.processJSONSchema) e._zod.processJSONSchema(t, c.schema, i);
|
|
41
|
-
else {
|
|
42
|
-
let n = c.schema, r = t.processors[o.type];
|
|
43
|
-
if (!r) throw Error(`[toJSONSchema]: Non-representable type encountered: ${o.type}`);
|
|
44
|
-
r(e, t, n, i);
|
|
45
|
-
}
|
|
46
|
-
let a = e._zod.parent;
|
|
47
|
-
a && (c.ref ||= a, process(a, t, i), t.seen.get(a).isParent = !0);
|
|
48
|
-
}
|
|
49
|
-
let u = t.metadataRegistry.get(e);
|
|
50
|
-
return u && Object.assign(c.schema, u), t.io === "input" && isTransforming(e) && (delete c.schema.examples, delete c.schema.default), t.io === "input" && c.schema._prefault && ((i = c.schema).default ?? (i.default = c.schema._prefault)), delete c.schema._prefault, t.seen.get(e).schema;
|
|
51
|
-
}
|
|
52
|
-
function extractDefs(e, t) {
|
|
53
|
-
let n = e.seen.get(t);
|
|
54
|
-
if (!n) throw Error("Unprocessed schema. This is a bug in Zod.");
|
|
55
|
-
let r = /* @__PURE__ */ new Map();
|
|
56
|
-
for (let t of e.seen.entries()) {
|
|
57
|
-
let n = e.metadataRegistry.get(t[0])?.id;
|
|
58
|
-
if (n) {
|
|
59
|
-
let e = r.get(n);
|
|
60
|
-
if (e && e !== t[0]) throw Error(`Duplicate schema id "${n}" detected during JSON Schema conversion. Two different schemas cannot share the same id when converted together.`);
|
|
61
|
-
r.set(n, t[0]);
|
|
62
|
-
}
|
|
63
|
-
}
|
|
64
|
-
let i = (t) => {
|
|
65
|
-
let r = e.target === "draft-2020-12" ? "$defs" : "definitions";
|
|
66
|
-
if (e.external) {
|
|
67
|
-
let n = e.external.registry.get(t[0])?.id, i = e.external.uri ?? ((e) => e);
|
|
68
|
-
if (n) return { ref: i(n) };
|
|
69
|
-
let a = t[1].defId ?? t[1].schema.id ?? `schema${e.counter++}`;
|
|
70
|
-
return t[1].defId = a, {
|
|
71
|
-
defId: a,
|
|
72
|
-
ref: `${i("__shared")}#/${r}/${a}`
|
|
73
|
-
};
|
|
74
|
-
}
|
|
75
|
-
if (t[1] === n) return { ref: "#" };
|
|
76
|
-
let i = `#/${r}/`, a = t[1].schema.id ?? `__schema${e.counter++}`;
|
|
77
|
-
return {
|
|
78
|
-
defId: a,
|
|
79
|
-
ref: i + a
|
|
80
|
-
};
|
|
81
|
-
}, a = (e) => {
|
|
82
|
-
if (e[1].schema.$ref) return;
|
|
83
|
-
let t = e[1], { ref: n, defId: r } = i(e);
|
|
84
|
-
t.def = { ...t.schema }, r && (t.defId = r);
|
|
85
|
-
let a = t.schema;
|
|
86
|
-
for (let e in a) delete a[e];
|
|
87
|
-
a.$ref = n;
|
|
88
|
-
};
|
|
89
|
-
if (e.cycles === "throw") for (let t of e.seen.entries()) {
|
|
90
|
-
let e = t[1];
|
|
91
|
-
if (e.cycle) throw Error(`Cycle detected: #/${e.cycle?.join("/")}/<root>
|
|
92
|
-
|
|
93
|
-
Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.`);
|
|
94
|
-
}
|
|
95
|
-
for (let n of e.seen.entries()) {
|
|
96
|
-
let r = n[1];
|
|
97
|
-
if (t === n[0]) {
|
|
98
|
-
a(n);
|
|
99
|
-
continue;
|
|
100
|
-
}
|
|
101
|
-
if (e.external) {
|
|
102
|
-
let r = e.external.registry.get(n[0])?.id;
|
|
103
|
-
if (t !== n[0] && r) {
|
|
104
|
-
a(n);
|
|
105
|
-
continue;
|
|
106
|
-
}
|
|
107
|
-
}
|
|
108
|
-
if (e.metadataRegistry.get(n[0])?.id) {
|
|
109
|
-
a(n);
|
|
110
|
-
continue;
|
|
111
|
-
}
|
|
112
|
-
if (r.cycle) {
|
|
113
|
-
a(n);
|
|
114
|
-
continue;
|
|
115
|
-
}
|
|
116
|
-
if (r.count > 1 && e.reused === "ref") {
|
|
117
|
-
a(n);
|
|
118
|
-
continue;
|
|
119
|
-
}
|
|
120
|
-
}
|
|
121
|
-
}
|
|
122
|
-
function finalize(e, t) {
|
|
123
|
-
let n = e.seen.get(t);
|
|
124
|
-
if (!n) throw Error("Unprocessed schema. This is a bug in Zod.");
|
|
125
|
-
let r = (t) => {
|
|
126
|
-
let n = e.seen.get(t);
|
|
127
|
-
if (n.ref === null) return;
|
|
128
|
-
let i = n.def ?? n.schema, a = { ...i }, o = n.ref;
|
|
129
|
-
if (n.ref = null, o) {
|
|
130
|
-
r(o);
|
|
131
|
-
let n = e.seen.get(o), s = n.schema;
|
|
132
|
-
if (s.$ref && (e.target === "draft-07" || e.target === "draft-04" || e.target === "openapi-3.0") ? (i.allOf = i.allOf ?? [], i.allOf.push(s)) : Object.assign(i, s), Object.assign(i, a), t._zod.parent === o) for (let e in i) e === "$ref" || e === "allOf" || e in a || delete i[e];
|
|
133
|
-
if (s.$ref && n.def) for (let e in i) e === "$ref" || e === "allOf" || e in n.def && JSON.stringify(i[e]) === JSON.stringify(n.def[e]) && delete i[e];
|
|
134
|
-
}
|
|
135
|
-
let s = t._zod.parent;
|
|
136
|
-
if (s && s !== o) {
|
|
137
|
-
r(s);
|
|
138
|
-
let t = e.seen.get(s);
|
|
139
|
-
if (t?.schema.$ref && (i.$ref = t.schema.$ref, t.def)) for (let e in i) e === "$ref" || e === "allOf" || e in t.def && JSON.stringify(i[e]) === JSON.stringify(t.def[e]) && delete i[e];
|
|
140
|
-
}
|
|
141
|
-
e.override({
|
|
142
|
-
zodSchema: t,
|
|
143
|
-
jsonSchema: i,
|
|
144
|
-
path: n.path ?? []
|
|
145
|
-
});
|
|
146
|
-
};
|
|
147
|
-
for (let t of [...e.seen.entries()].reverse()) r(t[0]);
|
|
148
|
-
let i = {};
|
|
149
|
-
if (e.target === "draft-2020-12" ? i.$schema = "https://json-schema.org/draft/2020-12/schema" : e.target === "draft-07" ? i.$schema = "http://json-schema.org/draft-07/schema#" : e.target === "draft-04" ? i.$schema = "http://json-schema.org/draft-04/schema#" : e.target, e.external?.uri) {
|
|
150
|
-
let n = e.external.registry.get(t)?.id;
|
|
151
|
-
if (!n) throw Error("Schema is missing an `id` property");
|
|
152
|
-
i.$id = e.external.uri(n);
|
|
153
|
-
}
|
|
154
|
-
Object.assign(i, n.def ?? n.schema);
|
|
155
|
-
let a = e.external?.defs ?? {};
|
|
156
|
-
for (let t of e.seen.entries()) {
|
|
157
|
-
let e = t[1];
|
|
158
|
-
e.def && e.defId && (a[e.defId] = e.def);
|
|
159
|
-
}
|
|
160
|
-
e.external || Object.keys(a).length > 0 && (e.target === "draft-2020-12" ? i.$defs = a : i.definitions = a);
|
|
161
|
-
try {
|
|
162
|
-
let n = JSON.parse(JSON.stringify(i));
|
|
163
|
-
return Object.defineProperty(n, "~standard", {
|
|
164
|
-
value: {
|
|
165
|
-
...t["~standard"],
|
|
166
|
-
jsonSchema: {
|
|
167
|
-
input: createStandardJSONSchemaMethod(t, "input", e.processors),
|
|
168
|
-
output: createStandardJSONSchemaMethod(t, "output", e.processors)
|
|
169
|
-
}
|
|
170
|
-
},
|
|
171
|
-
enumerable: !1,
|
|
172
|
-
writable: !1
|
|
173
|
-
}), n;
|
|
174
|
-
} catch {
|
|
175
|
-
throw Error("Error converting schema to JSON.");
|
|
176
|
-
}
|
|
177
|
-
}
|
|
178
|
-
function isTransforming(e, t) {
|
|
179
|
-
let n = t ?? { seen: /* @__PURE__ */ new Set() };
|
|
180
|
-
if (n.seen.has(e)) return !1;
|
|
181
|
-
n.seen.add(e);
|
|
182
|
-
let r = e._zod.def;
|
|
183
|
-
if (r.type === "transform") return !0;
|
|
184
|
-
if (r.type === "array") return isTransforming(r.element, n);
|
|
185
|
-
if (r.type === "set") return isTransforming(r.valueType, n);
|
|
186
|
-
if (r.type === "lazy") return isTransforming(r.getter(), n);
|
|
187
|
-
if (r.type === "promise" || r.type === "optional" || r.type === "nonoptional" || r.type === "nullable" || r.type === "readonly" || r.type === "default" || r.type === "prefault") return isTransforming(r.innerType, n);
|
|
188
|
-
if (r.type === "intersection") return isTransforming(r.left, n) || isTransforming(r.right, n);
|
|
189
|
-
if (r.type === "record" || r.type === "map") return isTransforming(r.keyType, n) || isTransforming(r.valueType, n);
|
|
190
|
-
if (r.type === "pipe") return isTransforming(r.in, n) || isTransforming(r.out, n);
|
|
191
|
-
if (r.type === "object") {
|
|
192
|
-
for (let e in r.shape) if (isTransforming(r.shape[e], n)) return !0;
|
|
193
|
-
return !1;
|
|
194
|
-
}
|
|
195
|
-
if (r.type === "union") {
|
|
196
|
-
for (let e of r.options) if (isTransforming(e, n)) return !0;
|
|
197
|
-
return !1;
|
|
198
|
-
}
|
|
199
|
-
if (r.type === "tuple") {
|
|
200
|
-
for (let e of r.items) if (isTransforming(e, n)) return !0;
|
|
201
|
-
return !!(r.rest && isTransforming(r.rest, n));
|
|
202
|
-
}
|
|
203
|
-
return !1;
|
|
204
|
-
}
|
|
205
|
-
const createToJSONSchemaMethod = (e, a = {}) => (o) => {
|
|
206
|
-
let s = initializeContext({
|
|
207
|
-
...o,
|
|
208
|
-
processors: a
|
|
209
|
-
});
|
|
210
|
-
return process(e, s), extractDefs(s, e), finalize(s, e);
|
|
211
|
-
}, createStandardJSONSchemaMethod = (e, a, o = {}) => (s) => {
|
|
212
|
-
let { libraryOptions: c, target: l } = s ?? {}, u = initializeContext({
|
|
213
|
-
...c ?? {},
|
|
214
|
-
target: l,
|
|
215
|
-
io: a,
|
|
216
|
-
processors: o
|
|
217
|
-
});
|
|
218
|
-
return process(e, u), extractDefs(u, e), finalize(u, e);
|
|
219
|
-
};
|
|
220
|
-
export { createStandardJSONSchemaMethod, createToJSONSchemaMethod, extractDefs, finalize, initializeContext, process };
|
|
@@ -1,267 +0,0 @@
|
|
|
1
|
-
function getEnumValues(f) {
|
|
2
|
-
let j = Object.values(f).filter((f) => typeof f == "number");
|
|
3
|
-
return Object.entries(f).filter(([f, M]) => j.indexOf(+f) === -1).map(([f, j]) => j);
|
|
4
|
-
}
|
|
5
|
-
function jsonStringifyReplacer(f, j) {
|
|
6
|
-
return typeof j == "bigint" ? j.toString() : j;
|
|
7
|
-
}
|
|
8
|
-
function cached(f) {
|
|
9
|
-
return { get value() {
|
|
10
|
-
{
|
|
11
|
-
let j = f();
|
|
12
|
-
return Object.defineProperty(this, "value", { value: j }), j;
|
|
13
|
-
}
|
|
14
|
-
throw Error("cached value already set");
|
|
15
|
-
} };
|
|
16
|
-
}
|
|
17
|
-
function nullish(f) {
|
|
18
|
-
return f == null;
|
|
19
|
-
}
|
|
20
|
-
function cleanRegex(f) {
|
|
21
|
-
let j = f.startsWith("^") ? 1 : 0, M = f.endsWith("$") ? f.length - 1 : f.length;
|
|
22
|
-
return f.slice(j, M);
|
|
23
|
-
}
|
|
24
|
-
function floatSafeRemainder(f, j) {
|
|
25
|
-
let M = (f.toString().split(".")[1] || "").length, N = j.toString(), P = (N.split(".")[1] || "").length;
|
|
26
|
-
if (P === 0 && /\d?e-\d?/.test(N)) {
|
|
27
|
-
let f = N.match(/\d?e-(\d?)/);
|
|
28
|
-
f?.[1] && (P = Number.parseInt(f[1]));
|
|
29
|
-
}
|
|
30
|
-
let F = M > P ? M : P;
|
|
31
|
-
return Number.parseInt(f.toFixed(F).replace(".", "")) % Number.parseInt(j.toFixed(F).replace(".", "")) / 10 ** F;
|
|
32
|
-
}
|
|
33
|
-
var EVALUATING = Symbol("evaluating");
|
|
34
|
-
function defineLazy(f, j, M) {
|
|
35
|
-
let N;
|
|
36
|
-
Object.defineProperty(f, j, {
|
|
37
|
-
get() {
|
|
38
|
-
if (N !== EVALUATING) return N === void 0 && (N = EVALUATING, N = M()), N;
|
|
39
|
-
},
|
|
40
|
-
set(M) {
|
|
41
|
-
Object.defineProperty(f, j, { value: M });
|
|
42
|
-
},
|
|
43
|
-
configurable: !0
|
|
44
|
-
});
|
|
45
|
-
}
|
|
46
|
-
function assignProp(f, j, M) {
|
|
47
|
-
Object.defineProperty(f, j, {
|
|
48
|
-
value: M,
|
|
49
|
-
writable: !0,
|
|
50
|
-
enumerable: !0,
|
|
51
|
-
configurable: !0
|
|
52
|
-
});
|
|
53
|
-
}
|
|
54
|
-
function mergeDefs(...f) {
|
|
55
|
-
let j = {};
|
|
56
|
-
for (let M of f) {
|
|
57
|
-
let f = Object.getOwnPropertyDescriptors(M);
|
|
58
|
-
Object.assign(j, f);
|
|
59
|
-
}
|
|
60
|
-
return Object.defineProperties({}, j);
|
|
61
|
-
}
|
|
62
|
-
function esc(f) {
|
|
63
|
-
return JSON.stringify(f);
|
|
64
|
-
}
|
|
65
|
-
function slugify(f) {
|
|
66
|
-
return f.toLowerCase().trim().replace(/[^\w\s-]/g, "").replace(/[\s_-]+/g, "-").replace(/^-+|-+$/g, "");
|
|
67
|
-
}
|
|
68
|
-
const captureStackTrace = "captureStackTrace" in Error ? Error.captureStackTrace : (...f) => {};
|
|
69
|
-
function isObject(f) {
|
|
70
|
-
return typeof f == "object" && !!f && !Array.isArray(f);
|
|
71
|
-
}
|
|
72
|
-
const allowsEval = cached(() => {
|
|
73
|
-
if (typeof navigator < "u" && navigator?.userAgent?.includes("Cloudflare")) return !1;
|
|
74
|
-
try {
|
|
75
|
-
return Function(""), !0;
|
|
76
|
-
} catch {
|
|
77
|
-
return !1;
|
|
78
|
-
}
|
|
79
|
-
});
|
|
80
|
-
function isPlainObject(f) {
|
|
81
|
-
if (isObject(f) === !1) return !1;
|
|
82
|
-
let j = f.constructor;
|
|
83
|
-
if (j === void 0 || typeof j != "function") return !0;
|
|
84
|
-
let M = j.prototype;
|
|
85
|
-
return !(isObject(M) === !1 || Object.prototype.hasOwnProperty.call(M, "isPrototypeOf") === !1);
|
|
86
|
-
}
|
|
87
|
-
function shallowClone(f) {
|
|
88
|
-
return isPlainObject(f) ? { ...f } : Array.isArray(f) ? [...f] : f;
|
|
89
|
-
}
|
|
90
|
-
const propertyKeyTypes = new Set([
|
|
91
|
-
"string",
|
|
92
|
-
"number",
|
|
93
|
-
"symbol"
|
|
94
|
-
]);
|
|
95
|
-
function escapeRegex(f) {
|
|
96
|
-
return f.replace(/[.*+?^${}()|[\]\\]/g, "\\$&");
|
|
97
|
-
}
|
|
98
|
-
function clone(f, j, M) {
|
|
99
|
-
let N = new f._zod.constr(j ?? f._zod.def);
|
|
100
|
-
return (!j || M?.parent) && (N._zod.parent = f), N;
|
|
101
|
-
}
|
|
102
|
-
function normalizeParams(f) {
|
|
103
|
-
let j = f;
|
|
104
|
-
if (!j) return {};
|
|
105
|
-
if (typeof j == "string") return { error: () => j };
|
|
106
|
-
if (j?.message !== void 0) {
|
|
107
|
-
if (j?.error !== void 0) throw Error("Cannot specify both `message` and `error` params");
|
|
108
|
-
j.error = j.message;
|
|
109
|
-
}
|
|
110
|
-
return delete j.message, typeof j.error == "string" ? {
|
|
111
|
-
...j,
|
|
112
|
-
error: () => j.error
|
|
113
|
-
} : j;
|
|
114
|
-
}
|
|
115
|
-
function optionalKeys(f) {
|
|
116
|
-
return Object.keys(f).filter((j) => f[j]._zod.optin === "optional" && f[j]._zod.optout === "optional");
|
|
117
|
-
}
|
|
118
|
-
const NUMBER_FORMAT_RANGES = {
|
|
119
|
-
safeint: [-(2 ** 53 - 1), 2 ** 53 - 1],
|
|
120
|
-
int32: [-2147483648, 2147483647],
|
|
121
|
-
uint32: [0, 4294967295],
|
|
122
|
-
float32: [-34028234663852886e22, 34028234663852886e22],
|
|
123
|
-
float64: [-Number.MAX_VALUE, Number.MAX_VALUE]
|
|
124
|
-
};
|
|
125
|
-
function pick(f, j) {
|
|
126
|
-
let M = f._zod.def, N = M.checks;
|
|
127
|
-
if (N && N.length > 0) throw Error(".pick() cannot be used on object schemas containing refinements");
|
|
128
|
-
return clone(f, mergeDefs(f._zod.def, {
|
|
129
|
-
get shape() {
|
|
130
|
-
let f = {};
|
|
131
|
-
for (let N in j) {
|
|
132
|
-
if (!(N in M.shape)) throw Error(`Unrecognized key: "${N}"`);
|
|
133
|
-
j[N] && (f[N] = M.shape[N]);
|
|
134
|
-
}
|
|
135
|
-
return assignProp(this, "shape", f), f;
|
|
136
|
-
},
|
|
137
|
-
checks: []
|
|
138
|
-
}));
|
|
139
|
-
}
|
|
140
|
-
function omit(f, j) {
|
|
141
|
-
let M = f._zod.def, N = M.checks;
|
|
142
|
-
if (N && N.length > 0) throw Error(".omit() cannot be used on object schemas containing refinements");
|
|
143
|
-
return clone(f, mergeDefs(f._zod.def, {
|
|
144
|
-
get shape() {
|
|
145
|
-
let N = { ...f._zod.def.shape };
|
|
146
|
-
for (let f in j) {
|
|
147
|
-
if (!(f in M.shape)) throw Error(`Unrecognized key: "${f}"`);
|
|
148
|
-
j[f] && delete N[f];
|
|
149
|
-
}
|
|
150
|
-
return assignProp(this, "shape", N), N;
|
|
151
|
-
},
|
|
152
|
-
checks: []
|
|
153
|
-
}));
|
|
154
|
-
}
|
|
155
|
-
function extend(f, j) {
|
|
156
|
-
if (!isPlainObject(j)) throw Error("Invalid input to extend: expected a plain object");
|
|
157
|
-
let M = f._zod.def.checks;
|
|
158
|
-
if (M && M.length > 0) {
|
|
159
|
-
let M = f._zod.def.shape;
|
|
160
|
-
for (let f in j) if (Object.getOwnPropertyDescriptor(M, f) !== void 0) throw Error("Cannot overwrite keys on object schemas containing refinements. Use `.safeExtend()` instead.");
|
|
161
|
-
}
|
|
162
|
-
return clone(f, mergeDefs(f._zod.def, { get shape() {
|
|
163
|
-
let M = {
|
|
164
|
-
...f._zod.def.shape,
|
|
165
|
-
...j
|
|
166
|
-
};
|
|
167
|
-
return assignProp(this, "shape", M), M;
|
|
168
|
-
} }));
|
|
169
|
-
}
|
|
170
|
-
function safeExtend(f, j) {
|
|
171
|
-
if (!isPlainObject(j)) throw Error("Invalid input to safeExtend: expected a plain object");
|
|
172
|
-
return clone(f, mergeDefs(f._zod.def, { get shape() {
|
|
173
|
-
let M = {
|
|
174
|
-
...f._zod.def.shape,
|
|
175
|
-
...j
|
|
176
|
-
};
|
|
177
|
-
return assignProp(this, "shape", M), M;
|
|
178
|
-
} }));
|
|
179
|
-
}
|
|
180
|
-
function merge(f, j) {
|
|
181
|
-
return clone(f, mergeDefs(f._zod.def, {
|
|
182
|
-
get shape() {
|
|
183
|
-
let M = {
|
|
184
|
-
...f._zod.def.shape,
|
|
185
|
-
...j._zod.def.shape
|
|
186
|
-
};
|
|
187
|
-
return assignProp(this, "shape", M), M;
|
|
188
|
-
},
|
|
189
|
-
get catchall() {
|
|
190
|
-
return j._zod.def.catchall;
|
|
191
|
-
},
|
|
192
|
-
checks: []
|
|
193
|
-
}));
|
|
194
|
-
}
|
|
195
|
-
function partial(f, j, M) {
|
|
196
|
-
let N = j._zod.def.checks;
|
|
197
|
-
if (N && N.length > 0) throw Error(".partial() cannot be used on object schemas containing refinements");
|
|
198
|
-
return clone(j, mergeDefs(j._zod.def, {
|
|
199
|
-
get shape() {
|
|
200
|
-
let N = j._zod.def.shape, P = { ...N };
|
|
201
|
-
if (M) for (let j in M) {
|
|
202
|
-
if (!(j in N)) throw Error(`Unrecognized key: "${j}"`);
|
|
203
|
-
M[j] && (P[j] = f ? new f({
|
|
204
|
-
type: "optional",
|
|
205
|
-
innerType: N[j]
|
|
206
|
-
}) : N[j]);
|
|
207
|
-
}
|
|
208
|
-
else for (let j in N) P[j] = f ? new f({
|
|
209
|
-
type: "optional",
|
|
210
|
-
innerType: N[j]
|
|
211
|
-
}) : N[j];
|
|
212
|
-
return assignProp(this, "shape", P), P;
|
|
213
|
-
},
|
|
214
|
-
checks: []
|
|
215
|
-
}));
|
|
216
|
-
}
|
|
217
|
-
function required(f, j, M) {
|
|
218
|
-
return clone(j, mergeDefs(j._zod.def, { get shape() {
|
|
219
|
-
let N = j._zod.def.shape, P = { ...N };
|
|
220
|
-
if (M) for (let j in M) {
|
|
221
|
-
if (!(j in P)) throw Error(`Unrecognized key: "${j}"`);
|
|
222
|
-
M[j] && (P[j] = new f({
|
|
223
|
-
type: "nonoptional",
|
|
224
|
-
innerType: N[j]
|
|
225
|
-
}));
|
|
226
|
-
}
|
|
227
|
-
else for (let j in N) P[j] = new f({
|
|
228
|
-
type: "nonoptional",
|
|
229
|
-
innerType: N[j]
|
|
230
|
-
});
|
|
231
|
-
return assignProp(this, "shape", P), P;
|
|
232
|
-
} }));
|
|
233
|
-
}
|
|
234
|
-
function aborted(f, j = 0) {
|
|
235
|
-
if (f.aborted === !0) return !0;
|
|
236
|
-
for (let M = j; M < f.issues.length; M++) if (f.issues[M]?.continue !== !0) return !0;
|
|
237
|
-
return !1;
|
|
238
|
-
}
|
|
239
|
-
function prefixIssues(f, j) {
|
|
240
|
-
return j.map((j) => {
|
|
241
|
-
var M;
|
|
242
|
-
return (M = j).path ?? (M.path = []), j.path.unshift(f), j;
|
|
243
|
-
});
|
|
244
|
-
}
|
|
245
|
-
function unwrapMessage(f) {
|
|
246
|
-
return typeof f == "string" ? f : f?.message;
|
|
247
|
-
}
|
|
248
|
-
function finalizeIssue(f, j, M) {
|
|
249
|
-
let N = {
|
|
250
|
-
...f,
|
|
251
|
-
path: f.path ?? []
|
|
252
|
-
};
|
|
253
|
-
return f.message || (N.message = unwrapMessage(f.inst?._zod.def?.error?.(f)) ?? unwrapMessage(j?.error?.(f)) ?? unwrapMessage(M.customError?.(f)) ?? unwrapMessage(M.localeError?.(f)) ?? "Invalid input"), delete N.inst, delete N.continue, j?.reportInput || delete N.input, N;
|
|
254
|
-
}
|
|
255
|
-
function getLengthableOrigin(f) {
|
|
256
|
-
return Array.isArray(f) ? "array" : typeof f == "string" ? "string" : "unknown";
|
|
257
|
-
}
|
|
258
|
-
function issue(...f) {
|
|
259
|
-
let [j, M, N] = f;
|
|
260
|
-
return typeof j == "string" ? {
|
|
261
|
-
message: j,
|
|
262
|
-
code: "custom",
|
|
263
|
-
input: M,
|
|
264
|
-
inst: N
|
|
265
|
-
} : { ...j };
|
|
266
|
-
}
|
|
267
|
-
export { NUMBER_FORMAT_RANGES, aborted, allowsEval, cached, captureStackTrace, cleanRegex, clone, defineLazy, esc, escapeRegex, extend, finalizeIssue, floatSafeRemainder, getEnumValues, getLengthableOrigin, isObject, isPlainObject, issue, jsonStringifyReplacer, merge, mergeDefs, normalizeParams, nullish, omit, optionalKeys, partial, pick, prefixIssues, propertyKeyTypes, required, safeExtend, shallowClone, slugify };
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { __commonJSMin } from "../../../../_virtual/rolldown_runtime.js";
|
|
2
|
-
var require_pipeline_state = /* @__PURE__ */ __commonJSMin(((e) => {
|
|
3
|
-
Object.defineProperty(e, "__esModule", { value: !0 }), e.PipelineState = void 0;
|
|
4
|
-
var t;
|
|
5
|
-
(function(e) {
|
|
6
|
-
e.Pending = "pending", e.Running = "running", e.Paused = "paused", e.Completed = "completed", e.Failed = "failed", e.Canceled = "canceled";
|
|
7
|
-
})(t || (e.PipelineState = t = {}));
|
|
8
|
-
}));
|
|
9
|
-
export default require_pipeline_state();
|
|
10
|
-
export { require_pipeline_state };
|
|
@@ -1,115 +0,0 @@
|
|
|
1
|
-
import { useStudio } from "../providers/StudioProvider.js";
|
|
2
|
-
import { usePipeline, usePipelineConfigByName } from "../hooks/usePipelines.js";
|
|
3
|
-
import { useWorkspace } from "../hooks/useWorkspaces.js";
|
|
4
|
-
import MainLayout_default from "../components/layout/MainLayout.js";
|
|
5
|
-
import ErrorSnackbar_default from "../components/feedback/ErrorSnackbar.js";
|
|
6
|
-
import { useFetchWorkflowsByPipeline } from "../hooks/useWorkflows.js";
|
|
7
|
-
import { ReactFlowProvider } from "../node_modules/@xyflow/react/dist/esm/index.js";
|
|
8
|
-
import PipelineFlowViewer_default from "../features/debug/components/PipelineFlowViewer.js";
|
|
9
|
-
import PipelineDebugHeader_default from "../features/debug/components/PipelineDebugHeader.js";
|
|
10
|
-
import "../features/debug/index.js";
|
|
11
|
-
import { requireParam } from "../lib/requireParam.js";
|
|
12
|
-
import { c } from "react/compiler-runtime";
|
|
13
|
-
import React, { useMemo } from "react";
|
|
14
|
-
import { jsx, jsxs } from "react/jsx-runtime";
|
|
15
|
-
import { useParams } from "react-router-dom";
|
|
16
|
-
import { Bug, Home, Loader2 } from "lucide-react";
|
|
17
|
-
var PipelineDebugPage_default = () => {
|
|
18
|
-
let v = c(54), { router: y } = useStudio(), b = useParams(), x;
|
|
19
|
-
v[0] === b ? x = v[1] : (x = requireParam(b, "pipelineId"), v[0] = b, v[1] = x);
|
|
20
|
-
let S = x, C = usePipeline(S), w = C.data?.workspaceId, T = useWorkspace(w), E = useFetchWorkflowsByPipeline(S), D;
|
|
21
|
-
v[2] === E.data ? D = v[3] : (D = E.data ?? [], v[2] = E.data, v[3] = D);
|
|
22
|
-
let O = D, k = T.data?.blockName, A = C.data?.blockName, j = usePipelineConfigByName(k, A), M;
|
|
23
|
-
v[4] === y ? M = v[5] : (M = y.getDashboard(), v[4] = y, v[5] = M);
|
|
24
|
-
let N;
|
|
25
|
-
v[6] === Symbol.for("react.memo_cache_sentinel") ? (N = /* @__PURE__ */ jsx(Home, { className: "h-4 w-4" }), v[6] = N) : N = v[6];
|
|
26
|
-
let P;
|
|
27
|
-
v[7] === M ? P = v[8] : (P = {
|
|
28
|
-
label: "Dashboard",
|
|
29
|
-
href: M,
|
|
30
|
-
icon: N
|
|
31
|
-
}, v[7] = M, v[8] = P);
|
|
32
|
-
let F;
|
|
33
|
-
v[9] === y ? F = v[10] : (F = y.getWorkspaces(), v[9] = y, v[10] = F);
|
|
34
|
-
let I;
|
|
35
|
-
v[11] === F ? I = v[12] : (I = {
|
|
36
|
-
label: "Workspaces",
|
|
37
|
-
href: F
|
|
38
|
-
}, v[11] = F, v[12] = I);
|
|
39
|
-
let L = T.data?.title ?? "...", R;
|
|
40
|
-
v[13] !== y || v[14] !== w ? (R = w ? y.getWorkspace(w) : void 0, v[13] = y, v[14] = w, v[15] = R) : R = v[15];
|
|
41
|
-
let z;
|
|
42
|
-
v[16] !== L || v[17] !== R ? (z = {
|
|
43
|
-
label: L,
|
|
44
|
-
href: R
|
|
45
|
-
}, v[16] = L, v[17] = R, v[18] = z) : z = v[18];
|
|
46
|
-
let B = `Run #${C.data?.run ?? "..."}`, V;
|
|
47
|
-
v[19] !== S || v[20] !== y ? (V = y.getPipeline(S), v[19] = S, v[20] = y, v[21] = V) : V = v[21];
|
|
48
|
-
let H;
|
|
49
|
-
v[22] !== B || v[23] !== V ? (H = {
|
|
50
|
-
label: B,
|
|
51
|
-
href: V
|
|
52
|
-
}, v[22] = B, v[23] = V, v[24] = H) : H = v[24];
|
|
53
|
-
let U;
|
|
54
|
-
v[25] === Symbol.for("react.memo_cache_sentinel") ? (U = {
|
|
55
|
-
label: "Debug Flow",
|
|
56
|
-
icon: /* @__PURE__ */ jsx(Bug, { className: "h-4 w-4" })
|
|
57
|
-
}, v[25] = U) : U = v[25];
|
|
58
|
-
let W;
|
|
59
|
-
v[26] !== H || v[27] !== P || v[28] !== I || v[29] !== z ? (W = [
|
|
60
|
-
P,
|
|
61
|
-
I,
|
|
62
|
-
z,
|
|
63
|
-
H,
|
|
64
|
-
U
|
|
65
|
-
], v[26] = H, v[27] = P, v[28] = I, v[29] = z, v[30] = W) : W = v[30];
|
|
66
|
-
let G = W;
|
|
67
|
-
if (C.isLoading || E.isLoading || T.isLoading) {
|
|
68
|
-
let t;
|
|
69
|
-
v[31] === Symbol.for("react.memo_cache_sentinel") ? (t = /* @__PURE__ */ jsx("div", {
|
|
70
|
-
className: "flex h-[calc(100vh-8rem)] items-center justify-center",
|
|
71
|
-
children: /* @__PURE__ */ jsx(Loader2, { className: "text-muted-foreground h-8 w-8 animate-spin" })
|
|
72
|
-
}), v[31] = t) : t = v[31];
|
|
73
|
-
let _;
|
|
74
|
-
return v[32] === G ? _ = v[33] : (_ = /* @__PURE__ */ jsx(MainLayout_default, {
|
|
75
|
-
breadcrumbsData: G,
|
|
76
|
-
children: t
|
|
77
|
-
}), v[32] = G, v[33] = _), _;
|
|
78
|
-
}
|
|
79
|
-
let K;
|
|
80
|
-
v[34] === C.error ? K = v[35] : (K = /* @__PURE__ */ jsx(ErrorSnackbar_default, { error: C.error }), v[34] = C.error, v[35] = K);
|
|
81
|
-
let q = C.data?.title ?? C.data?.blockName ?? "Pipeline", J = C.data?.run, Y;
|
|
82
|
-
v[36] !== S || v[37] !== y ? (Y = () => void y.navigateToPipeline(S), v[36] = S, v[37] = y, v[38] = Y) : Y = v[38];
|
|
83
|
-
let X;
|
|
84
|
-
v[39] !== q || v[40] !== J || v[41] !== Y ? (X = /* @__PURE__ */ jsx(PipelineDebugHeader_default, {
|
|
85
|
-
title: q,
|
|
86
|
-
runNumber: J,
|
|
87
|
-
onBack: Y
|
|
88
|
-
}), v[39] = q, v[40] = J, v[41] = Y, v[42] = X) : X = v[42];
|
|
89
|
-
let Z;
|
|
90
|
-
v[43] !== j || v[44] !== S || v[45] !== O ? (Z = /* @__PURE__ */ jsx("div", {
|
|
91
|
-
className: "bg-card border-border flex-1 overflow-hidden rounded-2xl border shadow-sm",
|
|
92
|
-
children: O.length > 0 ? /* @__PURE__ */ jsx(ReactFlowProvider, { children: /* @__PURE__ */ jsx(PipelineFlowViewer_default, {
|
|
93
|
-
pipelineId: S,
|
|
94
|
-
workflows: O,
|
|
95
|
-
pipelineConfig: j.data
|
|
96
|
-
}) }) : /* @__PURE__ */ jsx("div", {
|
|
97
|
-
className: "text-muted-foreground flex h-full items-center justify-center",
|
|
98
|
-
children: /* @__PURE__ */ jsx("p", {
|
|
99
|
-
className: "font-medium",
|
|
100
|
-
children: "No workflows found for this pipeline"
|
|
101
|
-
})
|
|
102
|
-
})
|
|
103
|
-
}), v[43] = j, v[44] = S, v[45] = O, v[46] = Z) : Z = v[46];
|
|
104
|
-
let Q;
|
|
105
|
-
v[47] !== X || v[48] !== Z ? (Q = /* @__PURE__ */ jsxs("div", {
|
|
106
|
-
className: "flex h-[calc(100vh-8rem)] flex-col gap-6",
|
|
107
|
-
children: [X, Z]
|
|
108
|
-
}), v[47] = X, v[48] = Z, v[49] = Q) : Q = v[49];
|
|
109
|
-
let $;
|
|
110
|
-
return v[50] !== G || v[51] !== K || v[52] !== Q ? ($ = /* @__PURE__ */ jsxs(MainLayout_default, {
|
|
111
|
-
breadcrumbsData: G,
|
|
112
|
-
children: [K, Q]
|
|
113
|
-
}), v[50] = G, v[51] = K, v[52] = Q, v[53] = $) : $ = v[53], $;
|
|
114
|
-
};
|
|
115
|
-
export { PipelineDebugPage_default as default };
|
|
File without changes
|
/package/dist/features/debug/components/{pipeline-flow → workflow-flow}/WorkflowTransitionEdge.js
RENAMED
|
File without changes
|
/package/dist/features/workspaces/components/{pipeline-form → workflow-form}/HeaderSection.js
RENAMED
|
File without changes
|