@shenghuabi/workflow 1.1.6 → 1.1.7
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/index.js +48 -49
- package/index.js.map +3 -3
- package/index.mjs +40 -41
- package/index.mjs.map +3 -3
- package/inline/node/text/main/runner.d.ts +0 -1
- package/package.json +2 -2
- package/runner/runner-item.d.ts +3 -2
- package/test/util/text-input/main/runner.d.ts +0 -1
package/runner/runner-item.d.ts
CHANGED
|
@@ -9,12 +9,13 @@ export declare class NodeRunnerBase<TSchema extends v.BaseSchema<any, any, any>
|
|
|
9
9
|
#private;
|
|
10
10
|
protected node: import("..").ParsedNode;
|
|
11
11
|
protected callNode: import("..").ParsedNode | undefined;
|
|
12
|
-
protected
|
|
12
|
+
protected runnerContext: import("./workflow-runner.service").WorkflowRunnerContext;
|
|
13
13
|
protected injector: Injector;
|
|
14
14
|
protected emitter: WorkflowEmitter;
|
|
15
15
|
protected abortSignal: AbortSignal | undefined;
|
|
16
16
|
protected inputs: TSchema extends v.BaseSchema<any, any, any> ? v.InferOutput<TSchema> : undefined;
|
|
17
|
+
protected environmentContextData: import("..").WorkflowRunnerEnvironmentParams;
|
|
17
18
|
run(): RunnerResult;
|
|
18
|
-
|
|
19
|
+
nodeContextData$$: import("static-injector").Signal<Promise<Record<string, any>>>;
|
|
19
20
|
mergeChatModel(input?: ModelInputConfig): Partial<ChatModelOptions>;
|
|
20
21
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { NodeRunnerBase } from '../../../../runner/runner-item';
|
|
2
2
|
import { TEXT_NODE_DEFINE } from '../text.node.define';
|
|
3
3
|
export declare class TextInputRunner extends NodeRunnerBase<typeof TEXT_NODE_DEFINE> {
|
|
4
|
-
environmentContext: import("../../../..").WorkflowRunnerEnvironmentParams;
|
|
5
4
|
run(): Promise<() => Promise<string>>;
|
|
6
5
|
}
|