merge v0.23.0-rc changes

This commit is contained in:
Gani Georgiev
2024-09-29 19:23:19 +03:00
parent ad92992324
commit 844f18cac3
753 changed files with 85141 additions and 63396 deletions
+31
View File
@@ -0,0 +1,31 @@
package core
import (
"net/http"
validation "github.com/go-ozzo/ozzo-validation/v4"
)
type BatchRequestEvent struct {
*RequestEvent
Batch []*InternalRequest
}
type InternalRequest struct {
// note: for uploading files the value must be either *filesystem.File or []*filesystem.File
Body map[string]any `form:"body" json:"body"`
Headers map[string]string `form:"headers" json:"headers"`
Method string `form:"method" json:"method"`
URL string `form:"url" json:"url"`
}
func (br InternalRequest) Validate() error {
return validation.ValidateStruct(&br,
validation.Field(&br.Method, validation.Required, validation.In(http.MethodGet, http.MethodPost, http.MethodPut, http.MethodPatch, http.MethodDelete)),
validation.Field(&br.URL, validation.Required, validation.Length(0, 2000)),
)
}