@uploadista/flow-utility-nodes 0.0.11 → 0.0.12
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/nodes/index.d.cts +5 -5
- package/package.json +4 -4
package/dist/nodes/index.d.cts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { a as MergeParams, r as MultiplexParams, s as ConditionalParams, t as ZipParams } from "../zip-node-D-UE9ml-.cjs";
|
|
2
2
|
import * as _uploadista_core_errors0 from "@uploadista/core/errors";
|
|
3
3
|
import { UploadistaError } from "@uploadista/core/errors";
|
|
4
|
-
import * as
|
|
4
|
+
import * as _uploadista_core_flow0 from "@uploadista/core/flow";
|
|
5
5
|
import { ZipPlugin } from "@uploadista/core/flow";
|
|
6
6
|
import { UploadFile } from "@uploadista/core/types";
|
|
7
7
|
import { Effect } from "effect";
|
|
@@ -12,25 +12,25 @@ declare function createConditionalNode(id: string, {
|
|
|
12
12
|
field,
|
|
13
13
|
operator,
|
|
14
14
|
value
|
|
15
|
-
}: ConditionalParams): Effect.Effect<
|
|
15
|
+
}: ConditionalParams): Effect.Effect<_uploadista_core_flow0.FlowNode<UploadFile, UploadFile, _uploadista_core_errors0.UploadistaError>, never, never>;
|
|
16
16
|
//#endregion
|
|
17
17
|
//#region src/nodes/merge-node.d.ts
|
|
18
18
|
declare function createMergeNode(id: string, {
|
|
19
19
|
strategy,
|
|
20
20
|
separator: _separator
|
|
21
|
-
}: MergeParams): Effect.Effect<
|
|
21
|
+
}: MergeParams): Effect.Effect<_uploadista_core_flow0.FlowNode<Record<string, UploadFile>, UploadFile, UploadistaError>, never, UploadServer>;
|
|
22
22
|
//#endregion
|
|
23
23
|
//#region src/nodes/multiplex-node.d.ts
|
|
24
24
|
declare function createMultiplexNode(id: string, {
|
|
25
25
|
outputCount: _outputCount,
|
|
26
26
|
strategy
|
|
27
|
-
}: MultiplexParams): Effect.Effect<
|
|
27
|
+
}: MultiplexParams): Effect.Effect<_uploadista_core_flow0.FlowNode<UploadFile, UploadFile, UploadistaError>, never, UploadServer>;
|
|
28
28
|
//#endregion
|
|
29
29
|
//#region src/nodes/zip-node.d.ts
|
|
30
30
|
declare function createZipNode(id: string, {
|
|
31
31
|
zipName,
|
|
32
32
|
includeMetadata
|
|
33
|
-
}: ZipParams): Effect.Effect<
|
|
33
|
+
}: ZipParams): Effect.Effect<_uploadista_core_flow0.FlowNode<Record<string, UploadFile>, UploadFile, UploadistaError>, never, UploadServer | ZipPlugin>;
|
|
34
34
|
//#endregion
|
|
35
35
|
export { createConditionalNode, createMergeNode, createMultiplexNode, createZipNode };
|
|
36
36
|
//# sourceMappingURL=index.d.cts.map
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uploadista/flow-utility-nodes",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.12",
|
|
5
5
|
"description": "Utility nodes for Uploadista Flow",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"author": "Uploadista",
|
|
@@ -20,14 +20,14 @@
|
|
|
20
20
|
}
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"effect": "3.19.
|
|
23
|
+
"effect": "3.19.1",
|
|
24
24
|
"zod": "4.1.12",
|
|
25
|
-
"@uploadista/core": "0.0.
|
|
25
|
+
"@uploadista/core": "0.0.12"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
28
|
"@types/node": "24.10.0",
|
|
29
29
|
"tsdown": "0.16.0",
|
|
30
|
-
"@uploadista/typescript-config": "0.0.
|
|
30
|
+
"@uploadista/typescript-config": "0.0.12"
|
|
31
31
|
},
|
|
32
32
|
"scripts": {
|
|
33
33
|
"build": "tsdown",
|