Skip to content

Commit

Permalink
test(server):fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
yuval-hazaz committed May 9, 2024
1 parent ab8eccd commit 3360553
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -467,12 +467,18 @@ describe("AssistantFunctionsService", () => {
serviceId: "service123",
actionName: "NewAction",
actionDescription: "Action Description",
gqlOperation: "QUERY",
restVerb: "GET",
gqlOperation: "Query",
restVerb: "Get",
path: "/new-action",
inputType: {},
outputType: {},
restInputSource: "BODY",
inputType: {
type: "String",
isArray: false,
},
outputType: {
type: "String",
isArray: false,
},
restInputSource: "Body",
restInputParamsPropertyName: "params",
restInputBodyPropertyName: "body",
restInputQueryPropertyName: "query",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,6 @@
}
}
},
"required": ["name", "entityId", "fields"]
"required": ["entityId", "fields"]
}
}

0 comments on commit 3360553

Please sign in to comment.