@requence/task 1.0.0-alpha.4 → 1.0.0-alpha.41

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.
Files changed (100) hide show
  1. package/CHANGELOG.md +222 -0
  2. package/build/chunk-y4v98p2s.js +53 -0
  3. package/build/chunk-y4v98p2s.js.map +10 -0
  4. package/build/cli.js +660 -158
  5. package/build/cli.js.map +28 -17
  6. package/build/index.js +865 -227
  7. package/build/index.js.map +20 -8
  8. package/build/types/helpers/src/files/RequenceFile.d.ts +40 -0
  9. package/build/types/helpers/src/files/RequenceFile.d.ts.map +1 -0
  10. package/build/types/helpers/src/files/RequenceStream.d.ts +32 -0
  11. package/build/types/helpers/src/files/RequenceStream.d.ts.map +1 -0
  12. package/build/types/helpers/src/files/fileObject.d.ts +16 -0
  13. package/build/types/helpers/src/files/fileObject.d.ts.map +1 -0
  14. package/build/types/helpers/src/files/index.d.ts +7 -0
  15. package/build/types/helpers/src/files/index.d.ts.map +1 -0
  16. package/build/types/helpers/src/files/isValidMimeType.d.ts +5 -0
  17. package/build/types/helpers/src/files/isValidMimeType.d.ts.map +1 -0
  18. package/build/types/helpers/src/files/mapOutput.d.ts +10 -0
  19. package/build/types/helpers/src/files/mapOutput.d.ts.map +1 -0
  20. package/build/types/helpers/src/files/streamObject.d.ts +14 -0
  21. package/build/types/helpers/src/files/streamObject.d.ts.map +1 -0
  22. package/build/types/helpers/src/files/types.d.ts +4 -0
  23. package/build/types/helpers/src/files/types.d.ts.map +1 -0
  24. package/build/types/helpers/src/index.d.ts +11 -6
  25. package/build/types/helpers/src/index.d.ts.map +1 -1
  26. package/build/types/helpers/src/jsonschema/mapSchema.d.ts +20 -0
  27. package/build/types/helpers/src/jsonschema/mapSchema.d.ts.map +1 -0
  28. package/build/types/helpers/src/jsonschema/types.d.ts +13 -0
  29. package/build/types/helpers/src/jsonschema/types.d.ts.map +1 -0
  30. package/build/types/helpers/src/jsonschema/validate.d.ts +32 -0
  31. package/build/types/helpers/src/jsonschema/validate.d.ts.map +1 -0
  32. package/build/types/helpers/src/jsonschema/zod.d.ts +16 -0
  33. package/build/types/helpers/src/jsonschema/zod.d.ts.map +1 -0
  34. package/build/types/helpers/src/protocol/NodeTree.d.ts +479 -0
  35. package/build/types/helpers/src/protocol/NodeTree.d.ts.map +1 -0
  36. package/build/types/helpers/src/protocol/command.d.ts +489 -0
  37. package/build/types/helpers/src/protocol/command.d.ts.map +1 -0
  38. package/build/types/helpers/src/protocol/helpers.d.ts +7 -0
  39. package/build/types/helpers/src/protocol/helpers.d.ts.map +1 -0
  40. package/build/types/helpers/src/protocol/index.d.ts +8 -0
  41. package/build/types/helpers/src/protocol/index.d.ts.map +1 -0
  42. package/build/types/helpers/src/protocol/nodeType.d.ts +169 -0
  43. package/build/types/helpers/src/protocol/nodeType.d.ts.map +1 -0
  44. package/build/types/helpers/src/protocol/taskOptions.d.ts +23 -0
  45. package/build/types/helpers/src/protocol/taskOptions.d.ts.map +1 -0
  46. package/build/types/helpers/src/protocol/templateNodeTypes.d.ts +235 -0
  47. package/build/types/helpers/src/protocol/templateNodeTypes.d.ts.map +1 -0
  48. package/build/types/helpers/src/protocol/treeNodes.d.ts +832 -0
  49. package/build/types/helpers/src/protocol/treeNodes.d.ts.map +1 -0
  50. package/build/types/helpers/src/protocol/update.d.ts +381 -0
  51. package/build/types/helpers/src/protocol/update.d.ts.map +1 -0
  52. package/build/types/helpers/src/utils/callbackToAsyncIterator.d.ts +3 -0
  53. package/build/types/helpers/src/utils/callbackToAsyncIterator.d.ts.map +1 -0
  54. package/build/types/helpers/src/utils/clone.d.ts +3 -0
  55. package/build/types/helpers/src/utils/clone.d.ts.map +1 -0
  56. package/build/types/helpers/src/utils/createObjectProxy.d.ts +2 -0
  57. package/build/types/helpers/src/utils/createObjectProxy.d.ts.map +1 -0
  58. package/build/types/helpers/src/{createRemotePromise.d.ts → utils/createRemotePromise.d.ts} +1 -1
  59. package/build/types/helpers/src/utils/createRemotePromise.d.ts.map +1 -0
  60. package/build/types/helpers/src/utils/isRecord.d.ts +2 -0
  61. package/build/types/helpers/src/utils/isRecord.d.ts.map +1 -0
  62. package/build/types/helpers/src/utils/mapData.d.ts +18 -0
  63. package/build/types/helpers/src/utils/mapData.d.ts.map +1 -0
  64. package/build/types/helpers/src/{utils.d.ts → utils/matchSchema.d.ts} +2 -2
  65. package/build/types/helpers/src/utils/matchSchema.d.ts.map +1 -0
  66. package/build/types/helpers/src/utils/obfuscate.d.ts.map +1 -0
  67. package/build/types/helpers/src/utils/requenceCallback.d.ts +17 -0
  68. package/build/types/helpers/src/utils/requenceCallback.d.ts.map +1 -0
  69. package/build/types/helpers/src/utils/resolveRequenceTypes.d.ts +8 -0
  70. package/build/types/helpers/src/utils/resolveRequenceTypes.d.ts.map +1 -0
  71. package/build/types/helpers/src/utils/types.d.ts +4 -0
  72. package/build/types/helpers/src/utils/types.d.ts.map +1 -0
  73. package/build/types/task/src/abortTask.d.ts +8 -0
  74. package/build/types/task/src/abortTask.d.ts.map +1 -0
  75. package/build/types/task/src/createTask.d.ts +14 -103
  76. package/build/types/task/src/createTask.d.ts.map +1 -1
  77. package/build/types/task/src/getTask.d.ts +25 -0
  78. package/build/types/task/src/getTask.d.ts.map +1 -0
  79. package/build/types/task/src/index.d.ts +6 -1
  80. package/build/types/task/src/index.d.ts.map +1 -1
  81. package/build/types/task/src/recreateTask.d.ts +10 -0
  82. package/build/types/task/src/recreateTask.d.ts.map +1 -0
  83. package/build/types/task/src/types.d.ts +189 -941
  84. package/build/types/task/src/types.d.ts.map +1 -1
  85. package/build/types/task/src/utils/getAccessToken.d.ts.map +1 -1
  86. package/build/types/task/src/watchTasks.d.ts +13 -97
  87. package/build/types/task/src/watchTasks.d.ts.map +1 -1
  88. package/package.json +8 -7
  89. package/build/chunk-6pjtq0hg.js +0 -66
  90. package/build/chunk-6pjtq0hg.js.map +0 -12
  91. package/build/types/helpers/src/clone.d.ts +0 -3
  92. package/build/types/helpers/src/clone.d.ts.map +0 -1
  93. package/build/types/helpers/src/createObjectProxy.d.ts +0 -2
  94. package/build/types/helpers/src/createObjectProxy.d.ts.map +0 -1
  95. package/build/types/helpers/src/createRemotePromise.d.ts.map +0 -1
  96. package/build/types/helpers/src/obfuscate.d.ts.map +0 -1
  97. package/build/types/helpers/src/utils.d.ts.map +0 -1
  98. package/build/types/task/src/utils/callbackToAsyncIterator.d.ts +0 -5
  99. package/build/types/task/src/utils/callbackToAsyncIterator.d.ts.map +0 -1
  100. /package/build/types/helpers/src/{obfuscate.d.ts → utils/obfuscate.d.ts} +0 -0
@@ -0,0 +1,832 @@
1
+ import { z } from 'zod/v4';
2
+ export declare const treeSchema: z.ZodObject<{
3
+ nodes: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
4
+ id: z.ZodDefault<z.ZodUUID>;
5
+ type: z.ZodLiteral<"entry">;
6
+ alias: z.ZodOptional<z.ZodString>;
7
+ inputSchema: z.ZodDefault<z.ZodCustom<import("json-schema").JSONSchema7, import("json-schema").JSONSchema7>>;
8
+ }, z.core.$strict>, z.ZodObject<{
9
+ id: z.ZodDefault<z.ZodUUID>;
10
+ type: z.ZodLiteral<"service">;
11
+ alias: z.ZodOptional<z.ZodString>;
12
+ inputSchema: z.ZodDefault<z.ZodUnion<readonly [z.ZodIntersection<z.ZodObject<{
13
+ type: z.ZodLiteral<"object">;
14
+ }, z.core.$strip>, z.ZodCustom<import("json-schema").JSONSchema7, import("json-schema").JSONSchema7>>, z.ZodObject<{
15
+ type: z.ZodLiteral<"null">;
16
+ }, z.core.$strip>, z.ZodIntersection<z.ZodObject<{
17
+ $ref: z.ZodString;
18
+ }, z.core.$strip>, z.ZodCustom<import("json-schema").JSONSchema7, import("json-schema").JSONSchema7>>]>>;
19
+ name: z.ZodString;
20
+ version: z.ZodString;
21
+ configuration: z.ZodOptional<z.ZodAny>;
22
+ configurationSchema: z.ZodDefault<z.ZodCustom<import("json-schema").JSONSchema7, import("json-schema").JSONSchema7>>;
23
+ ttl: z.ZodOptional<z.ZodNumber>;
24
+ retry: z.ZodOptional<z.ZodNumber>;
25
+ retryDelay: z.ZodOptional<z.ZodNumber>;
26
+ outputs: z.ZodArray<z.ZodObject<{
27
+ name: z.ZodNullable<z.ZodString>;
28
+ schema: z.ZodNullable<z.ZodCustom<import("json-schema").JSONSchema7, import("json-schema").JSONSchema7>>;
29
+ }, z.core.$strip>>;
30
+ }, z.core.$strict>, z.ZodObject<{
31
+ id: z.ZodDefault<z.ZodUUID>;
32
+ type: z.ZodLiteral<"logic">;
33
+ alias: z.ZodOptional<z.ZodString>;
34
+ script: z.ZodString;
35
+ concurrency: z.ZodDefault<z.ZodBoolean>;
36
+ language: z.ZodDefault<z.ZodEnum<{
37
+ javascript: "javascript";
38
+ python: "python";
39
+ typescript: "typescript";
40
+ }>>;
41
+ maxExecutionTime: z.ZodDefault<z.ZodNumber>;
42
+ outputs: z.ZodArray<z.ZodObject<{
43
+ name: z.ZodNullable<z.ZodString>;
44
+ schema: z.ZodNullable<z.ZodCustom<import("json-schema").JSONSchema7, import("json-schema").JSONSchema7>>;
45
+ }, z.core.$strip>>;
46
+ }, z.core.$strict>, z.ZodObject<{
47
+ id: z.ZodDefault<z.ZodUUID>;
48
+ type: z.ZodLiteral<"or">;
49
+ alias: z.ZodOptional<z.ZodString>;
50
+ }, z.core.$strict>, z.ZodObject<{
51
+ id: z.ZodDefault<z.ZodUUID>;
52
+ type: z.ZodLiteral<"reference">;
53
+ alias: z.ZodOptional<z.ZodString>;
54
+ reference: z.ZodString;
55
+ inputSchema: z.ZodDefault<z.ZodUnion<readonly [z.ZodIntersection<z.ZodObject<{
56
+ type: z.ZodLiteral<"object">;
57
+ }, z.core.$strip>, z.ZodCustom<import("json-schema").JSONSchema7, import("json-schema").JSONSchema7>>, z.ZodObject<{
58
+ type: z.ZodLiteral<"null">;
59
+ }, z.core.$strip>, z.ZodIntersection<z.ZodObject<{
60
+ $ref: z.ZodString;
61
+ }, z.core.$strip>, z.ZodCustom<import("json-schema").JSONSchema7, import("json-schema").JSONSchema7>>]>>;
62
+ outputs: z.ZodArray<z.ZodObject<{
63
+ name: z.ZodNullable<z.ZodString>;
64
+ schema: z.ZodNullable<z.ZodCustom<import("json-schema").JSONSchema7, import("json-schema").JSONSchema7>>;
65
+ }, z.core.$strip>>;
66
+ }, z.core.$strict>, z.ZodObject<{
67
+ id: z.ZodDefault<z.ZodUUID>;
68
+ type: z.ZodLiteral<"exit">;
69
+ alias: z.ZodOptional<z.ZodString>;
70
+ }, z.core.$strict>, z.ZodObject<{
71
+ id: z.ZodDefault<z.ZodUUID>;
72
+ type: z.ZodLiteral<"comment">;
73
+ text: z.ZodDefault<z.ZodString>;
74
+ alias: z.ZodOptional<z.ZodString>;
75
+ }, z.core.$strip>], "type">>;
76
+ edges: z.ZodArray<z.ZodObject<{
77
+ id: z.ZodUUID;
78
+ source: z.ZodUUID;
79
+ sourceHandle: z.ZodNullable<z.ZodString>;
80
+ target: z.ZodUUID;
81
+ }, z.core.$strip>>;
82
+ }, z.core.$strict>;
83
+ export type Tree = z.output<typeof treeSchema>;
84
+ declare const extendedTreeSchema: z.ZodObject<{
85
+ nodes: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
86
+ id: z.ZodDefault<z.ZodUUID>;
87
+ type: z.ZodLiteral<"entry">;
88
+ alias: z.ZodOptional<z.ZodString>;
89
+ inputSchema: z.ZodDefault<z.ZodCustom<import("json-schema").JSONSchema7, import("json-schema").JSONSchema7>>;
90
+ }, z.core.$strict>, z.ZodObject<{
91
+ id: z.ZodDefault<z.ZodUUID>;
92
+ type: z.ZodLiteral<"service">;
93
+ alias: z.ZodOptional<z.ZodString>;
94
+ inputSchema: z.ZodDefault<z.ZodUnion<readonly [z.ZodIntersection<z.ZodObject<{
95
+ type: z.ZodLiteral<"object">;
96
+ }, z.core.$strip>, z.ZodCustom<import("json-schema").JSONSchema7, import("json-schema").JSONSchema7>>, z.ZodObject<{
97
+ type: z.ZodLiteral<"null">;
98
+ }, z.core.$strip>, z.ZodIntersection<z.ZodObject<{
99
+ $ref: z.ZodString;
100
+ }, z.core.$strip>, z.ZodCustom<import("json-schema").JSONSchema7, import("json-schema").JSONSchema7>>]>>;
101
+ name: z.ZodString;
102
+ version: z.ZodString;
103
+ configuration: z.ZodOptional<z.ZodAny>;
104
+ configurationSchema: z.ZodDefault<z.ZodCustom<import("json-schema").JSONSchema7, import("json-schema").JSONSchema7>>;
105
+ ttl: z.ZodOptional<z.ZodNumber>;
106
+ retry: z.ZodOptional<z.ZodNumber>;
107
+ retryDelay: z.ZodOptional<z.ZodNumber>;
108
+ outputs: z.ZodArray<z.ZodObject<{
109
+ name: z.ZodNullable<z.ZodString>;
110
+ schema: z.ZodNullable<z.ZodCustom<import("json-schema").JSONSchema7, import("json-schema").JSONSchema7>>;
111
+ }, z.core.$strip>>;
112
+ }, z.core.$strict>, z.ZodObject<{
113
+ id: z.ZodDefault<z.ZodUUID>;
114
+ type: z.ZodLiteral<"logic">;
115
+ alias: z.ZodOptional<z.ZodString>;
116
+ script: z.ZodString;
117
+ concurrency: z.ZodDefault<z.ZodBoolean>;
118
+ language: z.ZodDefault<z.ZodEnum<{
119
+ javascript: "javascript";
120
+ python: "python";
121
+ typescript: "typescript";
122
+ }>>;
123
+ maxExecutionTime: z.ZodDefault<z.ZodNumber>;
124
+ outputs: z.ZodArray<z.ZodObject<{
125
+ name: z.ZodNullable<z.ZodString>;
126
+ schema: z.ZodNullable<z.ZodCustom<import("json-schema").JSONSchema7, import("json-schema").JSONSchema7>>;
127
+ }, z.core.$strip>>;
128
+ }, z.core.$strict>, z.ZodObject<{
129
+ id: z.ZodDefault<z.ZodUUID>;
130
+ type: z.ZodLiteral<"or">;
131
+ alias: z.ZodOptional<z.ZodString>;
132
+ }, z.core.$strict>, z.ZodObject<{
133
+ id: z.ZodDefault<z.ZodUUID>;
134
+ type: z.ZodLiteral<"reference">;
135
+ alias: z.ZodOptional<z.ZodString>;
136
+ reference: z.ZodString;
137
+ inputSchema: z.ZodDefault<z.ZodUnion<readonly [z.ZodIntersection<z.ZodObject<{
138
+ type: z.ZodLiteral<"object">;
139
+ }, z.core.$strip>, z.ZodCustom<import("json-schema").JSONSchema7, import("json-schema").JSONSchema7>>, z.ZodObject<{
140
+ type: z.ZodLiteral<"null">;
141
+ }, z.core.$strip>, z.ZodIntersection<z.ZodObject<{
142
+ $ref: z.ZodString;
143
+ }, z.core.$strip>, z.ZodCustom<import("json-schema").JSONSchema7, import("json-schema").JSONSchema7>>]>>;
144
+ outputs: z.ZodArray<z.ZodObject<{
145
+ name: z.ZodNullable<z.ZodString>;
146
+ schema: z.ZodNullable<z.ZodCustom<import("json-schema").JSONSchema7, import("json-schema").JSONSchema7>>;
147
+ }, z.core.$strip>>;
148
+ }, z.core.$strict>, z.ZodObject<{
149
+ id: z.ZodDefault<z.ZodUUID>;
150
+ type: z.ZodLiteral<"exit">;
151
+ alias: z.ZodOptional<z.ZodString>;
152
+ }, z.core.$strict>, z.ZodObject<{
153
+ id: z.ZodDefault<z.ZodUUID>;
154
+ type: z.ZodLiteral<"comment">;
155
+ text: z.ZodDefault<z.ZodString>;
156
+ alias: z.ZodOptional<z.ZodString>;
157
+ }, z.core.$strip>], "type">>;
158
+ edges: z.ZodArray<z.ZodObject<{
159
+ id: z.ZodUUID;
160
+ source: z.ZodUUID;
161
+ sourceHandle: z.ZodNullable<z.ZodString>;
162
+ target: z.ZodUUID;
163
+ }, z.core.$strip>>;
164
+ allowMultipleOutputs: z.ZodDefault<z.ZodBoolean>;
165
+ }, z.core.$strict>;
166
+ export type ExtendendTree = z.output<typeof extendedTreeSchema>;
167
+ export declare const validatedTreeSchema: z.ZodPipe<z.ZodObject<{
168
+ nodes: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
169
+ id: z.ZodDefault<z.ZodUUID>;
170
+ type: z.ZodLiteral<"entry">;
171
+ alias: z.ZodOptional<z.ZodString>;
172
+ inputSchema: z.ZodDefault<z.ZodCustom<import("json-schema").JSONSchema7, import("json-schema").JSONSchema7>>;
173
+ }, z.core.$strict>, z.ZodObject<{
174
+ id: z.ZodDefault<z.ZodUUID>;
175
+ type: z.ZodLiteral<"service">;
176
+ alias: z.ZodOptional<z.ZodString>;
177
+ inputSchema: z.ZodDefault<z.ZodUnion<readonly [z.ZodIntersection<z.ZodObject<{
178
+ type: z.ZodLiteral<"object">;
179
+ }, z.core.$strip>, z.ZodCustom<import("json-schema").JSONSchema7, import("json-schema").JSONSchema7>>, z.ZodObject<{
180
+ type: z.ZodLiteral<"null">;
181
+ }, z.core.$strip>, z.ZodIntersection<z.ZodObject<{
182
+ $ref: z.ZodString;
183
+ }, z.core.$strip>, z.ZodCustom<import("json-schema").JSONSchema7, import("json-schema").JSONSchema7>>]>>;
184
+ name: z.ZodString;
185
+ version: z.ZodString;
186
+ configuration: z.ZodOptional<z.ZodAny>;
187
+ configurationSchema: z.ZodDefault<z.ZodCustom<import("json-schema").JSONSchema7, import("json-schema").JSONSchema7>>;
188
+ ttl: z.ZodOptional<z.ZodNumber>;
189
+ retry: z.ZodOptional<z.ZodNumber>;
190
+ retryDelay: z.ZodOptional<z.ZodNumber>;
191
+ outputs: z.ZodArray<z.ZodObject<{
192
+ name: z.ZodNullable<z.ZodString>;
193
+ schema: z.ZodNullable<z.ZodCustom<import("json-schema").JSONSchema7, import("json-schema").JSONSchema7>>;
194
+ }, z.core.$strip>>;
195
+ }, z.core.$strict>, z.ZodObject<{
196
+ id: z.ZodDefault<z.ZodUUID>;
197
+ type: z.ZodLiteral<"logic">;
198
+ alias: z.ZodOptional<z.ZodString>;
199
+ script: z.ZodString;
200
+ concurrency: z.ZodDefault<z.ZodBoolean>;
201
+ language: z.ZodDefault<z.ZodEnum<{
202
+ javascript: "javascript";
203
+ python: "python";
204
+ typescript: "typescript";
205
+ }>>;
206
+ maxExecutionTime: z.ZodDefault<z.ZodNumber>;
207
+ outputs: z.ZodArray<z.ZodObject<{
208
+ name: z.ZodNullable<z.ZodString>;
209
+ schema: z.ZodNullable<z.ZodCustom<import("json-schema").JSONSchema7, import("json-schema").JSONSchema7>>;
210
+ }, z.core.$strip>>;
211
+ }, z.core.$strict>, z.ZodObject<{
212
+ id: z.ZodDefault<z.ZodUUID>;
213
+ type: z.ZodLiteral<"or">;
214
+ alias: z.ZodOptional<z.ZodString>;
215
+ }, z.core.$strict>, z.ZodObject<{
216
+ id: z.ZodDefault<z.ZodUUID>;
217
+ type: z.ZodLiteral<"reference">;
218
+ alias: z.ZodOptional<z.ZodString>;
219
+ reference: z.ZodString;
220
+ inputSchema: z.ZodDefault<z.ZodUnion<readonly [z.ZodIntersection<z.ZodObject<{
221
+ type: z.ZodLiteral<"object">;
222
+ }, z.core.$strip>, z.ZodCustom<import("json-schema").JSONSchema7, import("json-schema").JSONSchema7>>, z.ZodObject<{
223
+ type: z.ZodLiteral<"null">;
224
+ }, z.core.$strip>, z.ZodIntersection<z.ZodObject<{
225
+ $ref: z.ZodString;
226
+ }, z.core.$strip>, z.ZodCustom<import("json-schema").JSONSchema7, import("json-schema").JSONSchema7>>]>>;
227
+ outputs: z.ZodArray<z.ZodObject<{
228
+ name: z.ZodNullable<z.ZodString>;
229
+ schema: z.ZodNullable<z.ZodCustom<import("json-schema").JSONSchema7, import("json-schema").JSONSchema7>>;
230
+ }, z.core.$strip>>;
231
+ }, z.core.$strict>, z.ZodObject<{
232
+ id: z.ZodDefault<z.ZodUUID>;
233
+ type: z.ZodLiteral<"exit">;
234
+ alias: z.ZodOptional<z.ZodString>;
235
+ }, z.core.$strict>, z.ZodObject<{
236
+ id: z.ZodDefault<z.ZodUUID>;
237
+ type: z.ZodLiteral<"comment">;
238
+ text: z.ZodDefault<z.ZodString>;
239
+ alias: z.ZodOptional<z.ZodString>;
240
+ }, z.core.$strip>], "type">>;
241
+ edges: z.ZodArray<z.ZodObject<{
242
+ id: z.ZodUUID;
243
+ source: z.ZodUUID;
244
+ sourceHandle: z.ZodNullable<z.ZodString>;
245
+ target: z.ZodUUID;
246
+ }, z.core.$strip>>;
247
+ allowMultipleOutputs: z.ZodDefault<z.ZodBoolean>;
248
+ }, z.core.$strict>, z.ZodTransform<{
249
+ nodes: ({
250
+ id: string;
251
+ type: "entry";
252
+ inputSchema: import("json-schema").JSONSchema7;
253
+ alias?: string | undefined;
254
+ } | {
255
+ id: string;
256
+ type: "service";
257
+ inputSchema: ({
258
+ type: "object";
259
+ } & import("json-schema").JSONSchema7) | {
260
+ type: "null";
261
+ } | ({
262
+ $ref: string;
263
+ } & import("json-schema").JSONSchema7);
264
+ name: string;
265
+ version: string;
266
+ configurationSchema: import("json-schema").JSONSchema7;
267
+ outputs: {
268
+ name: string | null;
269
+ schema: import("json-schema").JSONSchema7 | null;
270
+ }[];
271
+ alias?: string | undefined;
272
+ configuration?: any;
273
+ ttl?: number | undefined;
274
+ retry?: number | undefined;
275
+ retryDelay?: number | undefined;
276
+ } | {
277
+ id: string;
278
+ type: "logic";
279
+ script: string;
280
+ concurrency: boolean;
281
+ language: "javascript" | "python" | "typescript";
282
+ maxExecutionTime: number;
283
+ outputs: {
284
+ name: string | null;
285
+ schema: import("json-schema").JSONSchema7 | null;
286
+ }[];
287
+ alias?: string | undefined;
288
+ } | {
289
+ id: string;
290
+ type: "or";
291
+ alias?: string | undefined;
292
+ } | {
293
+ id: string;
294
+ type: "reference";
295
+ reference: string;
296
+ inputSchema: ({
297
+ type: "object";
298
+ } & import("json-schema").JSONSchema7) | {
299
+ type: "null";
300
+ } | ({
301
+ $ref: string;
302
+ } & import("json-schema").JSONSchema7);
303
+ outputs: {
304
+ name: string | null;
305
+ schema: import("json-schema").JSONSchema7 | null;
306
+ }[];
307
+ alias?: string | undefined;
308
+ } | {
309
+ id: string;
310
+ type: "exit";
311
+ alias?: string | undefined;
312
+ } | {
313
+ id: string;
314
+ type: "comment";
315
+ text: string;
316
+ alias?: string | undefined;
317
+ })[];
318
+ edges: {
319
+ id: string;
320
+ source: string;
321
+ sourceHandle: string | null;
322
+ target: string;
323
+ }[];
324
+ }, {
325
+ nodes: ({
326
+ id: string;
327
+ type: "entry";
328
+ inputSchema: import("json-schema").JSONSchema7;
329
+ alias?: string | undefined;
330
+ } | {
331
+ id: string;
332
+ type: "service";
333
+ inputSchema: ({
334
+ type: "object";
335
+ } & import("json-schema").JSONSchema7) | {
336
+ type: "null";
337
+ } | ({
338
+ $ref: string;
339
+ } & import("json-schema").JSONSchema7);
340
+ name: string;
341
+ version: string;
342
+ configurationSchema: import("json-schema").JSONSchema7;
343
+ outputs: {
344
+ name: string | null;
345
+ schema: import("json-schema").JSONSchema7 | null;
346
+ }[];
347
+ alias?: string | undefined;
348
+ configuration?: any;
349
+ ttl?: number | undefined;
350
+ retry?: number | undefined;
351
+ retryDelay?: number | undefined;
352
+ } | {
353
+ id: string;
354
+ type: "logic";
355
+ script: string;
356
+ concurrency: boolean;
357
+ language: "javascript" | "python" | "typescript";
358
+ maxExecutionTime: number;
359
+ outputs: {
360
+ name: string | null;
361
+ schema: import("json-schema").JSONSchema7 | null;
362
+ }[];
363
+ alias?: string | undefined;
364
+ } | {
365
+ id: string;
366
+ type: "or";
367
+ alias?: string | undefined;
368
+ } | {
369
+ id: string;
370
+ type: "reference";
371
+ reference: string;
372
+ inputSchema: ({
373
+ type: "object";
374
+ } & import("json-schema").JSONSchema7) | {
375
+ type: "null";
376
+ } | ({
377
+ $ref: string;
378
+ } & import("json-schema").JSONSchema7);
379
+ outputs: {
380
+ name: string | null;
381
+ schema: import("json-schema").JSONSchema7 | null;
382
+ }[];
383
+ alias?: string | undefined;
384
+ } | {
385
+ id: string;
386
+ type: "exit";
387
+ alias?: string | undefined;
388
+ } | {
389
+ id: string;
390
+ type: "comment";
391
+ text: string;
392
+ alias?: string | undefined;
393
+ })[];
394
+ edges: {
395
+ id: string;
396
+ source: string;
397
+ sourceHandle: string | null;
398
+ target: string;
399
+ }[];
400
+ allowMultipleOutputs: boolean;
401
+ }>>;
402
+ export declare const treeReferenceSchema: z.ZodObject<{
403
+ id: z.ZodString;
404
+ options: z.ZodObject<{
405
+ maxExecutions: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
406
+ compliance: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
407
+ MCP_TOOL: "MCP_TOOL";
408
+ }>>>;
409
+ mode: z.ZodDefault<z.ZodEnum<{
410
+ LINEAR: "LINEAR";
411
+ CONTINUOUS: "CONTINUOUS";
412
+ }>>;
413
+ }, z.core.$strip>;
414
+ tree: z.ZodObject<{
415
+ nodes: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
416
+ id: z.ZodDefault<z.ZodUUID>;
417
+ type: z.ZodLiteral<"entry">;
418
+ alias: z.ZodOptional<z.ZodString>;
419
+ inputSchema: z.ZodDefault<z.ZodCustom<import("json-schema").JSONSchema7, import("json-schema").JSONSchema7>>;
420
+ }, z.core.$strict>, z.ZodObject<{
421
+ id: z.ZodDefault<z.ZodUUID>;
422
+ type: z.ZodLiteral<"service">;
423
+ alias: z.ZodOptional<z.ZodString>;
424
+ inputSchema: z.ZodDefault<z.ZodUnion<readonly [z.ZodIntersection<z.ZodObject<{
425
+ type: z.ZodLiteral<"object">;
426
+ }, z.core.$strip>, z.ZodCustom<import("json-schema").JSONSchema7, import("json-schema").JSONSchema7>>, z.ZodObject<{
427
+ type: z.ZodLiteral<"null">;
428
+ }, z.core.$strip>, z.ZodIntersection<z.ZodObject<{
429
+ $ref: z.ZodString;
430
+ }, z.core.$strip>, z.ZodCustom<import("json-schema").JSONSchema7, import("json-schema").JSONSchema7>>]>>;
431
+ name: z.ZodString;
432
+ version: z.ZodString;
433
+ configuration: z.ZodOptional<z.ZodAny>;
434
+ configurationSchema: z.ZodDefault<z.ZodCustom<import("json-schema").JSONSchema7, import("json-schema").JSONSchema7>>;
435
+ ttl: z.ZodOptional<z.ZodNumber>;
436
+ retry: z.ZodOptional<z.ZodNumber>;
437
+ retryDelay: z.ZodOptional<z.ZodNumber>;
438
+ outputs: z.ZodArray<z.ZodObject<{
439
+ name: z.ZodNullable<z.ZodString>;
440
+ schema: z.ZodNullable<z.ZodCustom<import("json-schema").JSONSchema7, import("json-schema").JSONSchema7>>;
441
+ }, z.core.$strip>>;
442
+ }, z.core.$strict>, z.ZodObject<{
443
+ id: z.ZodDefault<z.ZodUUID>;
444
+ type: z.ZodLiteral<"logic">;
445
+ alias: z.ZodOptional<z.ZodString>;
446
+ script: z.ZodString;
447
+ concurrency: z.ZodDefault<z.ZodBoolean>;
448
+ language: z.ZodDefault<z.ZodEnum<{
449
+ javascript: "javascript";
450
+ python: "python";
451
+ typescript: "typescript";
452
+ }>>;
453
+ maxExecutionTime: z.ZodDefault<z.ZodNumber>;
454
+ outputs: z.ZodArray<z.ZodObject<{
455
+ name: z.ZodNullable<z.ZodString>;
456
+ schema: z.ZodNullable<z.ZodCustom<import("json-schema").JSONSchema7, import("json-schema").JSONSchema7>>;
457
+ }, z.core.$strip>>;
458
+ }, z.core.$strict>, z.ZodObject<{
459
+ id: z.ZodDefault<z.ZodUUID>;
460
+ type: z.ZodLiteral<"or">;
461
+ alias: z.ZodOptional<z.ZodString>;
462
+ }, z.core.$strict>, z.ZodObject<{
463
+ id: z.ZodDefault<z.ZodUUID>;
464
+ type: z.ZodLiteral<"reference">;
465
+ alias: z.ZodOptional<z.ZodString>;
466
+ reference: z.ZodString;
467
+ inputSchema: z.ZodDefault<z.ZodUnion<readonly [z.ZodIntersection<z.ZodObject<{
468
+ type: z.ZodLiteral<"object">;
469
+ }, z.core.$strip>, z.ZodCustom<import("json-schema").JSONSchema7, import("json-schema").JSONSchema7>>, z.ZodObject<{
470
+ type: z.ZodLiteral<"null">;
471
+ }, z.core.$strip>, z.ZodIntersection<z.ZodObject<{
472
+ $ref: z.ZodString;
473
+ }, z.core.$strip>, z.ZodCustom<import("json-schema").JSONSchema7, import("json-schema").JSONSchema7>>]>>;
474
+ outputs: z.ZodArray<z.ZodObject<{
475
+ name: z.ZodNullable<z.ZodString>;
476
+ schema: z.ZodNullable<z.ZodCustom<import("json-schema").JSONSchema7, import("json-schema").JSONSchema7>>;
477
+ }, z.core.$strip>>;
478
+ }, z.core.$strict>, z.ZodObject<{
479
+ id: z.ZodDefault<z.ZodUUID>;
480
+ type: z.ZodLiteral<"exit">;
481
+ alias: z.ZodOptional<z.ZodString>;
482
+ }, z.core.$strict>, z.ZodObject<{
483
+ id: z.ZodDefault<z.ZodUUID>;
484
+ type: z.ZodLiteral<"comment">;
485
+ text: z.ZodDefault<z.ZodString>;
486
+ alias: z.ZodOptional<z.ZodString>;
487
+ }, z.core.$strip>], "type">>;
488
+ edges: z.ZodArray<z.ZodObject<{
489
+ id: z.ZodUUID;
490
+ source: z.ZodUUID;
491
+ sourceHandle: z.ZodNullable<z.ZodString>;
492
+ target: z.ZodUUID;
493
+ }, z.core.$strip>>;
494
+ }, z.core.$strip>;
495
+ }, z.core.$strip>;
496
+ export type TreeReference = z.output<typeof treeReferenceSchema>;
497
+ export declare const treeListSchema: z.ZodObject<{
498
+ tree: z.ZodPipe<z.ZodObject<{
499
+ nodes: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
500
+ id: z.ZodDefault<z.ZodUUID>;
501
+ type: z.ZodLiteral<"entry">;
502
+ alias: z.ZodOptional<z.ZodString>;
503
+ inputSchema: z.ZodDefault<z.ZodCustom<import("json-schema").JSONSchema7, import("json-schema").JSONSchema7>>;
504
+ }, z.core.$strict>, z.ZodObject<{
505
+ id: z.ZodDefault<z.ZodUUID>;
506
+ type: z.ZodLiteral<"service">;
507
+ alias: z.ZodOptional<z.ZodString>;
508
+ inputSchema: z.ZodDefault<z.ZodUnion<readonly [z.ZodIntersection<z.ZodObject<{
509
+ type: z.ZodLiteral<"object">;
510
+ }, z.core.$strip>, z.ZodCustom<import("json-schema").JSONSchema7, import("json-schema").JSONSchema7>>, z.ZodObject<{
511
+ type: z.ZodLiteral<"null">;
512
+ }, z.core.$strip>, z.ZodIntersection<z.ZodObject<{
513
+ $ref: z.ZodString;
514
+ }, z.core.$strip>, z.ZodCustom<import("json-schema").JSONSchema7, import("json-schema").JSONSchema7>>]>>;
515
+ name: z.ZodString;
516
+ version: z.ZodString;
517
+ configuration: z.ZodOptional<z.ZodAny>;
518
+ configurationSchema: z.ZodDefault<z.ZodCustom<import("json-schema").JSONSchema7, import("json-schema").JSONSchema7>>;
519
+ ttl: z.ZodOptional<z.ZodNumber>;
520
+ retry: z.ZodOptional<z.ZodNumber>;
521
+ retryDelay: z.ZodOptional<z.ZodNumber>;
522
+ outputs: z.ZodArray<z.ZodObject<{
523
+ name: z.ZodNullable<z.ZodString>;
524
+ schema: z.ZodNullable<z.ZodCustom<import("json-schema").JSONSchema7, import("json-schema").JSONSchema7>>;
525
+ }, z.core.$strip>>;
526
+ }, z.core.$strict>, z.ZodObject<{
527
+ id: z.ZodDefault<z.ZodUUID>;
528
+ type: z.ZodLiteral<"logic">;
529
+ alias: z.ZodOptional<z.ZodString>;
530
+ script: z.ZodString;
531
+ concurrency: z.ZodDefault<z.ZodBoolean>;
532
+ language: z.ZodDefault<z.ZodEnum<{
533
+ javascript: "javascript";
534
+ python: "python";
535
+ typescript: "typescript";
536
+ }>>;
537
+ maxExecutionTime: z.ZodDefault<z.ZodNumber>;
538
+ outputs: z.ZodArray<z.ZodObject<{
539
+ name: z.ZodNullable<z.ZodString>;
540
+ schema: z.ZodNullable<z.ZodCustom<import("json-schema").JSONSchema7, import("json-schema").JSONSchema7>>;
541
+ }, z.core.$strip>>;
542
+ }, z.core.$strict>, z.ZodObject<{
543
+ id: z.ZodDefault<z.ZodUUID>;
544
+ type: z.ZodLiteral<"or">;
545
+ alias: z.ZodOptional<z.ZodString>;
546
+ }, z.core.$strict>, z.ZodObject<{
547
+ id: z.ZodDefault<z.ZodUUID>;
548
+ type: z.ZodLiteral<"reference">;
549
+ alias: z.ZodOptional<z.ZodString>;
550
+ reference: z.ZodString;
551
+ inputSchema: z.ZodDefault<z.ZodUnion<readonly [z.ZodIntersection<z.ZodObject<{
552
+ type: z.ZodLiteral<"object">;
553
+ }, z.core.$strip>, z.ZodCustom<import("json-schema").JSONSchema7, import("json-schema").JSONSchema7>>, z.ZodObject<{
554
+ type: z.ZodLiteral<"null">;
555
+ }, z.core.$strip>, z.ZodIntersection<z.ZodObject<{
556
+ $ref: z.ZodString;
557
+ }, z.core.$strip>, z.ZodCustom<import("json-schema").JSONSchema7, import("json-schema").JSONSchema7>>]>>;
558
+ outputs: z.ZodArray<z.ZodObject<{
559
+ name: z.ZodNullable<z.ZodString>;
560
+ schema: z.ZodNullable<z.ZodCustom<import("json-schema").JSONSchema7, import("json-schema").JSONSchema7>>;
561
+ }, z.core.$strip>>;
562
+ }, z.core.$strict>, z.ZodObject<{
563
+ id: z.ZodDefault<z.ZodUUID>;
564
+ type: z.ZodLiteral<"exit">;
565
+ alias: z.ZodOptional<z.ZodString>;
566
+ }, z.core.$strict>, z.ZodObject<{
567
+ id: z.ZodDefault<z.ZodUUID>;
568
+ type: z.ZodLiteral<"comment">;
569
+ text: z.ZodDefault<z.ZodString>;
570
+ alias: z.ZodOptional<z.ZodString>;
571
+ }, z.core.$strip>], "type">>;
572
+ edges: z.ZodArray<z.ZodObject<{
573
+ id: z.ZodUUID;
574
+ source: z.ZodUUID;
575
+ sourceHandle: z.ZodNullable<z.ZodString>;
576
+ target: z.ZodUUID;
577
+ }, z.core.$strip>>;
578
+ allowMultipleOutputs: z.ZodDefault<z.ZodBoolean>;
579
+ }, z.core.$strict>, z.ZodTransform<{
580
+ nodes: ({
581
+ id: string;
582
+ type: "entry";
583
+ inputSchema: import("json-schema").JSONSchema7;
584
+ alias?: string | undefined;
585
+ } | {
586
+ id: string;
587
+ type: "service";
588
+ inputSchema: ({
589
+ type: "object";
590
+ } & import("json-schema").JSONSchema7) | {
591
+ type: "null";
592
+ } | ({
593
+ $ref: string;
594
+ } & import("json-schema").JSONSchema7);
595
+ name: string;
596
+ version: string;
597
+ configurationSchema: import("json-schema").JSONSchema7;
598
+ outputs: {
599
+ name: string | null;
600
+ schema: import("json-schema").JSONSchema7 | null;
601
+ }[];
602
+ alias?: string | undefined;
603
+ configuration?: any;
604
+ ttl?: number | undefined;
605
+ retry?: number | undefined;
606
+ retryDelay?: number | undefined;
607
+ } | {
608
+ id: string;
609
+ type: "logic";
610
+ script: string;
611
+ concurrency: boolean;
612
+ language: "javascript" | "python" | "typescript";
613
+ maxExecutionTime: number;
614
+ outputs: {
615
+ name: string | null;
616
+ schema: import("json-schema").JSONSchema7 | null;
617
+ }[];
618
+ alias?: string | undefined;
619
+ } | {
620
+ id: string;
621
+ type: "or";
622
+ alias?: string | undefined;
623
+ } | {
624
+ id: string;
625
+ type: "reference";
626
+ reference: string;
627
+ inputSchema: ({
628
+ type: "object";
629
+ } & import("json-schema").JSONSchema7) | {
630
+ type: "null";
631
+ } | ({
632
+ $ref: string;
633
+ } & import("json-schema").JSONSchema7);
634
+ outputs: {
635
+ name: string | null;
636
+ schema: import("json-schema").JSONSchema7 | null;
637
+ }[];
638
+ alias?: string | undefined;
639
+ } | {
640
+ id: string;
641
+ type: "exit";
642
+ alias?: string | undefined;
643
+ } | {
644
+ id: string;
645
+ type: "comment";
646
+ text: string;
647
+ alias?: string | undefined;
648
+ })[];
649
+ edges: {
650
+ id: string;
651
+ source: string;
652
+ sourceHandle: string | null;
653
+ target: string;
654
+ }[];
655
+ }, {
656
+ nodes: ({
657
+ id: string;
658
+ type: "entry";
659
+ inputSchema: import("json-schema").JSONSchema7;
660
+ alias?: string | undefined;
661
+ } | {
662
+ id: string;
663
+ type: "service";
664
+ inputSchema: ({
665
+ type: "object";
666
+ } & import("json-schema").JSONSchema7) | {
667
+ type: "null";
668
+ } | ({
669
+ $ref: string;
670
+ } & import("json-schema").JSONSchema7);
671
+ name: string;
672
+ version: string;
673
+ configurationSchema: import("json-schema").JSONSchema7;
674
+ outputs: {
675
+ name: string | null;
676
+ schema: import("json-schema").JSONSchema7 | null;
677
+ }[];
678
+ alias?: string | undefined;
679
+ configuration?: any;
680
+ ttl?: number | undefined;
681
+ retry?: number | undefined;
682
+ retryDelay?: number | undefined;
683
+ } | {
684
+ id: string;
685
+ type: "logic";
686
+ script: string;
687
+ concurrency: boolean;
688
+ language: "javascript" | "python" | "typescript";
689
+ maxExecutionTime: number;
690
+ outputs: {
691
+ name: string | null;
692
+ schema: import("json-schema").JSONSchema7 | null;
693
+ }[];
694
+ alias?: string | undefined;
695
+ } | {
696
+ id: string;
697
+ type: "or";
698
+ alias?: string | undefined;
699
+ } | {
700
+ id: string;
701
+ type: "reference";
702
+ reference: string;
703
+ inputSchema: ({
704
+ type: "object";
705
+ } & import("json-schema").JSONSchema7) | {
706
+ type: "null";
707
+ } | ({
708
+ $ref: string;
709
+ } & import("json-schema").JSONSchema7);
710
+ outputs: {
711
+ name: string | null;
712
+ schema: import("json-schema").JSONSchema7 | null;
713
+ }[];
714
+ alias?: string | undefined;
715
+ } | {
716
+ id: string;
717
+ type: "exit";
718
+ alias?: string | undefined;
719
+ } | {
720
+ id: string;
721
+ type: "comment";
722
+ text: string;
723
+ alias?: string | undefined;
724
+ })[];
725
+ edges: {
726
+ id: string;
727
+ source: string;
728
+ sourceHandle: string | null;
729
+ target: string;
730
+ }[];
731
+ allowMultipleOutputs: boolean;
732
+ }>>;
733
+ references: z.ZodOptional<z.ZodArray<z.ZodObject<{
734
+ id: z.ZodString;
735
+ options: z.ZodObject<{
736
+ maxExecutions: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
737
+ compliance: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
738
+ MCP_TOOL: "MCP_TOOL";
739
+ }>>>;
740
+ mode: z.ZodDefault<z.ZodEnum<{
741
+ LINEAR: "LINEAR";
742
+ CONTINUOUS: "CONTINUOUS";
743
+ }>>;
744
+ }, z.core.$strip>;
745
+ tree: z.ZodObject<{
746
+ nodes: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
747
+ id: z.ZodDefault<z.ZodUUID>;
748
+ type: z.ZodLiteral<"entry">;
749
+ alias: z.ZodOptional<z.ZodString>;
750
+ inputSchema: z.ZodDefault<z.ZodCustom<import("json-schema").JSONSchema7, import("json-schema").JSONSchema7>>;
751
+ }, z.core.$strict>, z.ZodObject<{
752
+ id: z.ZodDefault<z.ZodUUID>;
753
+ type: z.ZodLiteral<"service">;
754
+ alias: z.ZodOptional<z.ZodString>;
755
+ inputSchema: z.ZodDefault<z.ZodUnion<readonly [z.ZodIntersection<z.ZodObject<{
756
+ type: z.ZodLiteral<"object">;
757
+ }, z.core.$strip>, z.ZodCustom<import("json-schema").JSONSchema7, import("json-schema").JSONSchema7>>, z.ZodObject<{
758
+ type: z.ZodLiteral<"null">;
759
+ }, z.core.$strip>, z.ZodIntersection<z.ZodObject<{
760
+ $ref: z.ZodString;
761
+ }, z.core.$strip>, z.ZodCustom<import("json-schema").JSONSchema7, import("json-schema").JSONSchema7>>]>>;
762
+ name: z.ZodString;
763
+ version: z.ZodString;
764
+ configuration: z.ZodOptional<z.ZodAny>;
765
+ configurationSchema: z.ZodDefault<z.ZodCustom<import("json-schema").JSONSchema7, import("json-schema").JSONSchema7>>;
766
+ ttl: z.ZodOptional<z.ZodNumber>;
767
+ retry: z.ZodOptional<z.ZodNumber>;
768
+ retryDelay: z.ZodOptional<z.ZodNumber>;
769
+ outputs: z.ZodArray<z.ZodObject<{
770
+ name: z.ZodNullable<z.ZodString>;
771
+ schema: z.ZodNullable<z.ZodCustom<import("json-schema").JSONSchema7, import("json-schema").JSONSchema7>>;
772
+ }, z.core.$strip>>;
773
+ }, z.core.$strict>, z.ZodObject<{
774
+ id: z.ZodDefault<z.ZodUUID>;
775
+ type: z.ZodLiteral<"logic">;
776
+ alias: z.ZodOptional<z.ZodString>;
777
+ script: z.ZodString;
778
+ concurrency: z.ZodDefault<z.ZodBoolean>;
779
+ language: z.ZodDefault<z.ZodEnum<{
780
+ javascript: "javascript";
781
+ python: "python";
782
+ typescript: "typescript";
783
+ }>>;
784
+ maxExecutionTime: z.ZodDefault<z.ZodNumber>;
785
+ outputs: z.ZodArray<z.ZodObject<{
786
+ name: z.ZodNullable<z.ZodString>;
787
+ schema: z.ZodNullable<z.ZodCustom<import("json-schema").JSONSchema7, import("json-schema").JSONSchema7>>;
788
+ }, z.core.$strip>>;
789
+ }, z.core.$strict>, z.ZodObject<{
790
+ id: z.ZodDefault<z.ZodUUID>;
791
+ type: z.ZodLiteral<"or">;
792
+ alias: z.ZodOptional<z.ZodString>;
793
+ }, z.core.$strict>, z.ZodObject<{
794
+ id: z.ZodDefault<z.ZodUUID>;
795
+ type: z.ZodLiteral<"reference">;
796
+ alias: z.ZodOptional<z.ZodString>;
797
+ reference: z.ZodString;
798
+ inputSchema: z.ZodDefault<z.ZodUnion<readonly [z.ZodIntersection<z.ZodObject<{
799
+ type: z.ZodLiteral<"object">;
800
+ }, z.core.$strip>, z.ZodCustom<import("json-schema").JSONSchema7, import("json-schema").JSONSchema7>>, z.ZodObject<{
801
+ type: z.ZodLiteral<"null">;
802
+ }, z.core.$strip>, z.ZodIntersection<z.ZodObject<{
803
+ $ref: z.ZodString;
804
+ }, z.core.$strip>, z.ZodCustom<import("json-schema").JSONSchema7, import("json-schema").JSONSchema7>>]>>;
805
+ outputs: z.ZodArray<z.ZodObject<{
806
+ name: z.ZodNullable<z.ZodString>;
807
+ schema: z.ZodNullable<z.ZodCustom<import("json-schema").JSONSchema7, import("json-schema").JSONSchema7>>;
808
+ }, z.core.$strip>>;
809
+ }, z.core.$strict>, z.ZodObject<{
810
+ id: z.ZodDefault<z.ZodUUID>;
811
+ type: z.ZodLiteral<"exit">;
812
+ alias: z.ZodOptional<z.ZodString>;
813
+ }, z.core.$strict>, z.ZodObject<{
814
+ id: z.ZodDefault<z.ZodUUID>;
815
+ type: z.ZodLiteral<"comment">;
816
+ text: z.ZodDefault<z.ZodString>;
817
+ alias: z.ZodOptional<z.ZodString>;
818
+ }, z.core.$strip>], "type">>;
819
+ edges: z.ZodArray<z.ZodObject<{
820
+ id: z.ZodUUID;
821
+ source: z.ZodUUID;
822
+ sourceHandle: z.ZodNullable<z.ZodString>;
823
+ target: z.ZodUUID;
824
+ }, z.core.$strip>>;
825
+ }, z.core.$strip>;
826
+ }, z.core.$strip>>>;
827
+ schemas: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodCustom<import("json-schema").JSONSchema7, import("json-schema").JSONSchema7>>>;
828
+ }, z.core.$strip>;
829
+ export type TreeList = z.output<typeof treeListSchema>;
830
+ export type InputTreeList = z.input<typeof treeListSchema>;
831
+ export {};
832
+ //# sourceMappingURL=treeNodes.d.ts.map