@shenghuabi/workflow 1.1.5 → 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.
@@ -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 context: import("./workflow-runner.service").WorkflowRunnerContext;
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
- context$$: import("static-injector").Signal<Promise<Record<string, any>>>;
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
  }
@@ -13,4 +13,4 @@ export interface SerializeContextOptions {
13
13
  * @param options - 上下文选项
14
14
  * @returns 序列化后的字符串
15
15
  */
16
- export declare function serializeWithContext(input: unknown, options: SerializeContextOptions): string;
16
+ export declare function serializeLexicalTextarea(input: unknown, options: SerializeContextOptions): string;