@requence/service 1.0.0-alpha.3 → 1.0.0-alpha.30

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 (92) hide show
  1. package/CHANGELOG.md +163 -0
  2. package/build/{chunk-0x9092n4.js → chunk-6w7td62p.js} +5 -44
  3. package/build/chunk-6w7td62p.js.map +10 -0
  4. package/build/cli.js +14 -9
  5. package/build/cli.js.map +3 -3
  6. package/build/index.js +801 -792
  7. package/build/index.js.map +17 -16
  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 +10 -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 +12 -0
  29. package/build/types/helpers/src/jsonschema/types.d.ts.map +1 -0
  30. package/build/types/helpers/src/jsonschema/validate.d.ts +29 -0
  31. package/build/types/helpers/src/jsonschema/validate.d.ts.map +1 -0
  32. package/build/types/helpers/src/jsonschema/zod.d.ts +12 -0
  33. package/build/types/helpers/src/jsonschema/zod.d.ts.map +1 -0
  34. package/build/types/helpers/src/protocol/NodeTree.d.ts +441 -0
  35. package/build/types/helpers/src/protocol/NodeTree.d.ts.map +1 -0
  36. package/build/types/helpers/src/protocol/command.d.ts +420 -0
  37. package/build/types/helpers/src/protocol/command.d.ts.map +1 -0
  38. package/build/types/helpers/src/protocol/helpers.d.ts +5 -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 +283 -0
  43. package/build/types/helpers/src/protocol/nodeType.d.ts.map +1 -0
  44. package/build/types/helpers/src/protocol/targetNodes.d.ts +253 -0
  45. package/build/types/helpers/src/protocol/targetNodes.d.ts.map +1 -0
  46. package/build/types/helpers/src/protocol/taskOptions.d.ts +17 -0
  47. package/build/types/helpers/src/protocol/taskOptions.d.ts.map +1 -0
  48. package/build/types/helpers/src/protocol/treeNodes.d.ts +606 -0
  49. package/build/types/helpers/src/protocol/treeNodes.d.ts.map +1 -0
  50. package/build/types/helpers/src/protocol/update.d.ts +354 -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/service/src/createAmqpConnection.d.ts +19 -20
  74. package/build/types/service/src/createAmqpConnection.d.ts.map +1 -1
  75. package/build/types/service/src/helpers.d.ts +56 -100
  76. package/build/types/service/src/helpers.d.ts.map +1 -1
  77. package/build/types/service/src/index.d.ts +8 -5
  78. package/build/types/service/src/index.d.ts.map +1 -1
  79. package/build/types/service/src/macro.d.ts +2 -0
  80. package/build/types/service/src/macro.d.ts.map +1 -0
  81. package/build/types/service/src/mapInput.d.ts +2 -0
  82. package/build/types/service/src/mapInput.d.ts.map +1 -0
  83. package/package.json +7 -8
  84. package/build/chunk-0x9092n4.js.map +0 -12
  85. package/build/types/helpers/src/clone.d.ts +0 -3
  86. package/build/types/helpers/src/clone.d.ts.map +0 -1
  87. package/build/types/helpers/src/createObjectProxy.d.ts +0 -2
  88. package/build/types/helpers/src/createObjectProxy.d.ts.map +0 -1
  89. package/build/types/helpers/src/createRemotePromise.d.ts.map +0 -1
  90. package/build/types/helpers/src/obfuscate.d.ts.map +0 -1
  91. package/build/types/helpers/src/utils.d.ts.map +0 -1
  92. /package/build/types/helpers/src/{obfuscate.d.ts → utils/obfuscate.d.ts} +0 -0
@@ -0,0 +1,420 @@
1
+ import { z } from 'zod/v4';
2
+ export declare const abortCommandSchema: z.ZodObject<{
3
+ type: z.ZodLiteral<"ABORT">;
4
+ reason: z.ZodOptional<z.ZodString>;
5
+ }, z.core.$strip>;
6
+ export type AbortCommand = z.infer<typeof abortCommandSchema>;
7
+ export declare const createCommandSchema: z.ZodPipe<z.ZodObject<{
8
+ type: z.ZodLiteral<"CREATE">;
9
+ treeList: z.ZodObject<{
10
+ tree: z.ZodObject<{
11
+ nodes: z.ZodArray<z.ZodAny>;
12
+ edges: z.ZodArray<z.ZodAny>;
13
+ }, z.core.$strip>;
14
+ references: z.ZodOptional<z.ZodArray<z.ZodAny>>;
15
+ }, z.core.$strip>;
16
+ input: z.ZodAny;
17
+ options: z.ZodObject<{
18
+ maxExecutions: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
19
+ compliance: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
20
+ "mcp-tool": "mcp-tool";
21
+ }>>>;
22
+ mode: z.ZodDefault<z.ZodEnum<{
23
+ linear: "linear";
24
+ continuous: "continuous";
25
+ }>>;
26
+ priority: z.ZodDefault<z.ZodInt>;
27
+ uploadUrl: z.ZodOptional<z.ZodString>;
28
+ streamUrl: z.ZodOptional<z.ZodString>;
29
+ }, z.core.$strip>;
30
+ }, z.core.$strip>, z.ZodTransform<{
31
+ treeList: {
32
+ tree: {
33
+ nodes: ({
34
+ id: string;
35
+ type: "exit";
36
+ alias?: string | undefined;
37
+ } | {
38
+ id: string;
39
+ type: "entry";
40
+ inputSchema: import("json-schema").JSONSchema7;
41
+ outputs: {
42
+ name: string | typeof import("./nodeType.ts").ERROR | null;
43
+ schema: import("json-schema").JSONSchema7 | null;
44
+ }[];
45
+ alias?: string | undefined;
46
+ } | {
47
+ id: string;
48
+ type: "service";
49
+ inputSchema: ({
50
+ type: "object";
51
+ } & import("json-schema").JSONSchema7) | {
52
+ type: "null";
53
+ };
54
+ name: string;
55
+ version: string;
56
+ configurationSchema: import("json-schema").JSONSchema7;
57
+ outputs: {
58
+ name: string | typeof import("./nodeType.ts").ERROR | null;
59
+ schema: import("json-schema").JSONSchema7 | null;
60
+ }[];
61
+ alias?: string | undefined;
62
+ configuration?: any;
63
+ ttl?: number | undefined;
64
+ retry?: number | undefined;
65
+ retryDelay?: number | undefined;
66
+ } | {
67
+ id: string;
68
+ type: "logic";
69
+ script: string;
70
+ concurrency: boolean;
71
+ language: "javascript" | "python" | "typescript";
72
+ maxExecutionTime: number;
73
+ outputs: {
74
+ name: string | typeof import("./nodeType.ts").ERROR | null;
75
+ schema: import("json-schema").JSONSchema7 | null;
76
+ }[];
77
+ alias?: string | undefined;
78
+ } | {
79
+ id: string;
80
+ type: "or";
81
+ outputs: {
82
+ name: string | typeof import("./nodeType.ts").ERROR | null;
83
+ schema: import("json-schema").JSONSchema7 | null;
84
+ }[];
85
+ alias?: string | undefined;
86
+ } | {
87
+ id: string;
88
+ type: "reference";
89
+ reference: string;
90
+ outputs: {
91
+ name: string | typeof import("./nodeType.ts").ERROR | null;
92
+ schema: import("json-schema").JSONSchema7 | null;
93
+ }[];
94
+ alias?: string | undefined;
95
+ configuration?: any;
96
+ })[];
97
+ edges: {
98
+ source: string;
99
+ sourceHandle: string | typeof import("./nodeType.ts").ERROR | null;
100
+ target: string;
101
+ }[];
102
+ };
103
+ references?: {
104
+ id: string;
105
+ options: {
106
+ maxExecutions: number;
107
+ };
108
+ tree: {
109
+ nodes: ({
110
+ id: string;
111
+ type: "exit";
112
+ alias?: string | undefined;
113
+ } | {
114
+ id: string;
115
+ type: "entry";
116
+ inputSchema: import("json-schema").JSONSchema7;
117
+ outputs: {
118
+ name: string | typeof import("./nodeType.ts").ERROR | null;
119
+ schema: import("json-schema").JSONSchema7 | null;
120
+ }[];
121
+ alias?: string | undefined;
122
+ } | {
123
+ id: string;
124
+ type: "service";
125
+ inputSchema: ({
126
+ type: "object";
127
+ } & import("json-schema").JSONSchema7) | {
128
+ type: "null";
129
+ };
130
+ name: string;
131
+ version: string;
132
+ configurationSchema: import("json-schema").JSONSchema7;
133
+ outputs: {
134
+ name: string | typeof import("./nodeType.ts").ERROR | null;
135
+ schema: import("json-schema").JSONSchema7 | null;
136
+ }[];
137
+ alias?: string | undefined;
138
+ configuration?: any;
139
+ ttl?: number | undefined;
140
+ retry?: number | undefined;
141
+ retryDelay?: number | undefined;
142
+ } | {
143
+ id: string;
144
+ type: "logic";
145
+ script: string;
146
+ concurrency: boolean;
147
+ language: "javascript" | "python" | "typescript";
148
+ maxExecutionTime: number;
149
+ outputs: {
150
+ name: string | typeof import("./nodeType.ts").ERROR | null;
151
+ schema: import("json-schema").JSONSchema7 | null;
152
+ }[];
153
+ alias?: string | undefined;
154
+ } | {
155
+ id: string;
156
+ type: "or";
157
+ outputs: {
158
+ name: string | typeof import("./nodeType.ts").ERROR | null;
159
+ schema: import("json-schema").JSONSchema7 | null;
160
+ }[];
161
+ alias?: string | undefined;
162
+ } | {
163
+ id: string;
164
+ type: "reference";
165
+ reference: string;
166
+ outputs: {
167
+ name: string | typeof import("./nodeType.ts").ERROR | null;
168
+ schema: import("json-schema").JSONSchema7 | null;
169
+ }[];
170
+ alias?: string | undefined;
171
+ configuration?: any;
172
+ })[];
173
+ edges: {
174
+ source: string;
175
+ sourceHandle: string | typeof import("./nodeType.ts").ERROR | null;
176
+ target: string;
177
+ }[];
178
+ };
179
+ references?: /*elided*/ any[] | undefined;
180
+ }[] | undefined;
181
+ };
182
+ type: "CREATE";
183
+ input: any;
184
+ options: {
185
+ maxExecutions: number;
186
+ compliance: "mcp-tool" | null;
187
+ mode: "linear" | "continuous";
188
+ priority: number;
189
+ uploadUrl?: string | undefined;
190
+ streamUrl?: string | undefined;
191
+ };
192
+ }, {
193
+ type: "CREATE";
194
+ treeList: {
195
+ tree: {
196
+ nodes: any[];
197
+ edges: any[];
198
+ };
199
+ references?: any[] | undefined;
200
+ };
201
+ input: any;
202
+ options: {
203
+ maxExecutions: number;
204
+ compliance: "mcp-tool" | null;
205
+ mode: "linear" | "continuous";
206
+ priority: number;
207
+ uploadUrl?: string | undefined;
208
+ streamUrl?: string | undefined;
209
+ };
210
+ }>>;
211
+ export declare const commandSchema: z.ZodUnion<readonly [z.ZodObject<{
212
+ type: z.ZodLiteral<"ABORT">;
213
+ reason: z.ZodOptional<z.ZodString>;
214
+ }, z.core.$strip>, z.ZodPipe<z.ZodObject<{
215
+ type: z.ZodLiteral<"CREATE">;
216
+ treeList: z.ZodObject<{
217
+ tree: z.ZodObject<{
218
+ nodes: z.ZodArray<z.ZodAny>;
219
+ edges: z.ZodArray<z.ZodAny>;
220
+ }, z.core.$strip>;
221
+ references: z.ZodOptional<z.ZodArray<z.ZodAny>>;
222
+ }, z.core.$strip>;
223
+ input: z.ZodAny;
224
+ options: z.ZodObject<{
225
+ maxExecutions: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
226
+ compliance: z.ZodDefault<z.ZodNullable<z.ZodEnum<{
227
+ "mcp-tool": "mcp-tool";
228
+ }>>>;
229
+ mode: z.ZodDefault<z.ZodEnum<{
230
+ linear: "linear";
231
+ continuous: "continuous";
232
+ }>>;
233
+ priority: z.ZodDefault<z.ZodInt>;
234
+ uploadUrl: z.ZodOptional<z.ZodString>;
235
+ streamUrl: z.ZodOptional<z.ZodString>;
236
+ }, z.core.$strip>;
237
+ }, z.core.$strip>, z.ZodTransform<{
238
+ treeList: {
239
+ tree: {
240
+ nodes: ({
241
+ id: string;
242
+ type: "exit";
243
+ alias?: string | undefined;
244
+ } | {
245
+ id: string;
246
+ type: "entry";
247
+ inputSchema: import("json-schema").JSONSchema7;
248
+ outputs: {
249
+ name: string | typeof import("./nodeType.ts").ERROR | null;
250
+ schema: import("json-schema").JSONSchema7 | null;
251
+ }[];
252
+ alias?: string | undefined;
253
+ } | {
254
+ id: string;
255
+ type: "service";
256
+ inputSchema: ({
257
+ type: "object";
258
+ } & import("json-schema").JSONSchema7) | {
259
+ type: "null";
260
+ };
261
+ name: string;
262
+ version: string;
263
+ configurationSchema: import("json-schema").JSONSchema7;
264
+ outputs: {
265
+ name: string | typeof import("./nodeType.ts").ERROR | null;
266
+ schema: import("json-schema").JSONSchema7 | null;
267
+ }[];
268
+ alias?: string | undefined;
269
+ configuration?: any;
270
+ ttl?: number | undefined;
271
+ retry?: number | undefined;
272
+ retryDelay?: number | undefined;
273
+ } | {
274
+ id: string;
275
+ type: "logic";
276
+ script: string;
277
+ concurrency: boolean;
278
+ language: "javascript" | "python" | "typescript";
279
+ maxExecutionTime: number;
280
+ outputs: {
281
+ name: string | typeof import("./nodeType.ts").ERROR | null;
282
+ schema: import("json-schema").JSONSchema7 | null;
283
+ }[];
284
+ alias?: string | undefined;
285
+ } | {
286
+ id: string;
287
+ type: "or";
288
+ outputs: {
289
+ name: string | typeof import("./nodeType.ts").ERROR | null;
290
+ schema: import("json-schema").JSONSchema7 | null;
291
+ }[];
292
+ alias?: string | undefined;
293
+ } | {
294
+ id: string;
295
+ type: "reference";
296
+ reference: string;
297
+ outputs: {
298
+ name: string | typeof import("./nodeType.ts").ERROR | null;
299
+ schema: import("json-schema").JSONSchema7 | null;
300
+ }[];
301
+ alias?: string | undefined;
302
+ configuration?: any;
303
+ })[];
304
+ edges: {
305
+ source: string;
306
+ sourceHandle: string | typeof import("./nodeType.ts").ERROR | null;
307
+ target: string;
308
+ }[];
309
+ };
310
+ references?: {
311
+ id: string;
312
+ options: {
313
+ maxExecutions: number;
314
+ };
315
+ tree: {
316
+ nodes: ({
317
+ id: string;
318
+ type: "exit";
319
+ alias?: string | undefined;
320
+ } | {
321
+ id: string;
322
+ type: "entry";
323
+ inputSchema: import("json-schema").JSONSchema7;
324
+ outputs: {
325
+ name: string | typeof import("./nodeType.ts").ERROR | null;
326
+ schema: import("json-schema").JSONSchema7 | null;
327
+ }[];
328
+ alias?: string | undefined;
329
+ } | {
330
+ id: string;
331
+ type: "service";
332
+ inputSchema: ({
333
+ type: "object";
334
+ } & import("json-schema").JSONSchema7) | {
335
+ type: "null";
336
+ };
337
+ name: string;
338
+ version: string;
339
+ configurationSchema: import("json-schema").JSONSchema7;
340
+ outputs: {
341
+ name: string | typeof import("./nodeType.ts").ERROR | null;
342
+ schema: import("json-schema").JSONSchema7 | null;
343
+ }[];
344
+ alias?: string | undefined;
345
+ configuration?: any;
346
+ ttl?: number | undefined;
347
+ retry?: number | undefined;
348
+ retryDelay?: number | undefined;
349
+ } | {
350
+ id: string;
351
+ type: "logic";
352
+ script: string;
353
+ concurrency: boolean;
354
+ language: "javascript" | "python" | "typescript";
355
+ maxExecutionTime: number;
356
+ outputs: {
357
+ name: string | typeof import("./nodeType.ts").ERROR | null;
358
+ schema: import("json-schema").JSONSchema7 | null;
359
+ }[];
360
+ alias?: string | undefined;
361
+ } | {
362
+ id: string;
363
+ type: "or";
364
+ outputs: {
365
+ name: string | typeof import("./nodeType.ts").ERROR | null;
366
+ schema: import("json-schema").JSONSchema7 | null;
367
+ }[];
368
+ alias?: string | undefined;
369
+ } | {
370
+ id: string;
371
+ type: "reference";
372
+ reference: string;
373
+ outputs: {
374
+ name: string | typeof import("./nodeType.ts").ERROR | null;
375
+ schema: import("json-schema").JSONSchema7 | null;
376
+ }[];
377
+ alias?: string | undefined;
378
+ configuration?: any;
379
+ })[];
380
+ edges: {
381
+ source: string;
382
+ sourceHandle: string | typeof import("./nodeType.ts").ERROR | null;
383
+ target: string;
384
+ }[];
385
+ };
386
+ references?: /*elided*/ any[] | undefined;
387
+ }[] | undefined;
388
+ };
389
+ type: "CREATE";
390
+ input: any;
391
+ options: {
392
+ maxExecutions: number;
393
+ compliance: "mcp-tool" | null;
394
+ mode: "linear" | "continuous";
395
+ priority: number;
396
+ uploadUrl?: string | undefined;
397
+ streamUrl?: string | undefined;
398
+ };
399
+ }, {
400
+ type: "CREATE";
401
+ treeList: {
402
+ tree: {
403
+ nodes: any[];
404
+ edges: any[];
405
+ };
406
+ references?: any[] | undefined;
407
+ };
408
+ input: any;
409
+ options: {
410
+ maxExecutions: number;
411
+ compliance: "mcp-tool" | null;
412
+ mode: "linear" | "continuous";
413
+ priority: number;
414
+ uploadUrl?: string | undefined;
415
+ streamUrl?: string | undefined;
416
+ };
417
+ }>>]>;
418
+ export type Command = z.infer<typeof commandSchema>;
419
+ export type CommandInput = z.input<typeof commandSchema>;
420
+ //# sourceMappingURL=command.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"command.d.ts","sourceRoot":"","sources":["../../../../../../helpers/src/protocol/command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,QAAQ,CAAA;AAK1B,eAAO,MAAM,kBAAkB;;;iBAG7B,CAAA;AAEF,MAAM,MAAM,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAA;AAE7D,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAsB3B,CAAA;AAEL,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KAAqD,CAAA;AAE/E,MAAM,MAAM,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAA;AACnD,MAAM,MAAM,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAA"}
@@ -0,0 +1,5 @@
1
+ import type { z } from 'zod/v4';
2
+ export declare class NodeTransformError extends Error {
3
+ }
4
+ export declare function safeTransform<T extends () => any>(ctx: z.RefinementCtx, handler: T): ReturnType<T>;
5
+ //# sourceMappingURL=helpers.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"helpers.d.ts","sourceRoot":"","sources":["../../../../../../helpers/src/protocol/helpers.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,CAAC,EAAE,MAAM,QAAQ,CAAA;AAE/B,qBAAa,kBAAmB,SAAQ,KAAK;CAAG;AAEhD,wBAAgB,aAAa,CAAC,CAAC,SAAS,MAAM,GAAG,EAC/C,GAAG,EAAE,CAAC,CAAC,aAAa,EACpB,OAAO,EAAE,CAAC,GACT,UAAU,CAAC,CAAC,CAAC,CAUf"}
@@ -0,0 +1,8 @@
1
+ export * from './command.ts';
2
+ export * from './nodeType.ts';
3
+ export * from './targetNodes.ts';
4
+ export * from './update.ts';
5
+ export * from './treeNodes.ts';
6
+ export * from './NodeTree.ts';
7
+ export * from './taskOptions.ts';
8
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../helpers/src/protocol/index.ts"],"names":[],"mappings":"AAAA,cAAc,cAAc,CAAA;AAC5B,cAAc,eAAe,CAAA;AAC7B,cAAc,kBAAkB,CAAA;AAChC,cAAc,aAAa,CAAA;AAC3B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,eAAe,CAAA;AAC7B,cAAc,kBAAkB,CAAA"}