瀏覽代碼

fix: remove required field

Yeuoly 10 月之前
父節點
當前提交
14feb2852a
共有 1 個文件被更改,包括 1 次插入1 次删除
  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"`
 }