Skip to content

Commit

Permalink
changed api to match backend
Browse files Browse the repository at this point in the history
  • Loading branch information
omergunr100 committed Sep 3, 2024
1 parent 3166149 commit 6802bf6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions netbuddy.client/src/api/history/history.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import agent from "../agent.ts";
import {Action, Variable} from "../actions/actions.ts";
import {Action} from "../actions/actions.ts";

export type SequenceResult = {
id: string;
Expand All @@ -13,9 +13,9 @@ export type ActionResult = {
action: Action;
startAt: Date;
endAt: Date;
actionContext: Map<Variable, unknown>;
actionContext: Record<string, string>;
actionLogs: { key: string, value: string }[];
actionOutputs: Map<Variable, unknown>;
actionOutputs: Record<string, string>;
};

export async function GetResultRange(from: number, to: number) {
Expand Down

0 comments on commit 6802bf6

Please sign in to comment.