Browse Source

fix: remove required field

Yeuoly 10 months ago
parent
commit
14feb2852a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      internal/core/dify_invocation/types.go

+ 1 - 1
internal/core/dify_invocation/types.go

@@ -215,5 +215,5 @@ type InvokeNodeResponse struct {
 
 type InvokeEncryptionResponse struct {
 	Error string         `json:"error"`
-	Data  map[string]any `json:"data" validate:"required"`
+	Data  map[string]any `json:"data"`
 }