Skip to content

Commit

Permalink
Merge branch 'feat/continue-on-error' into deploy/dev
Browse files Browse the repository at this point in the history
  • Loading branch information
Novice Lee authored and Novice Lee committed Dec 4, 2024
2 parents 1ed9dcd + 6f46c36 commit 6f35d87
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions api/core/workflow/nodes/base/entities.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@


class DefaultValueType(StrEnum):
STRING = "String"
NUMBER = "Number"
OBJECT = "Object"
ARRAY_NUMBER = "Array[Number]"
ARRAY_STRING = "Array[String]"
ARRAY_OBJECT = "Array[Object]"
ARRAY_FILES = "Array[File]"
STRING = "string"
NUMBER = "number"
OBJECT = "object"
ARRAY_NUMBER = "array[number]"
ARRAY_STRING = "array[string]"
ARRAY_OBJECT = "array[object]"
ARRAY_FILES = "array[file]"


NumberType = Union[int, float]
Expand Down

0 comments on commit 6f35d87

Please sign in to comment.