merge: 同步 origin/master 新功能到定制版本
Build docker and publish / build (20.15.1) (push) Successful in 8m8s
Build docker and publish / build (20.15.1) (push) Successful in 8m8s
This commit is contained in:
+21
-3
@@ -890,9 +890,10 @@ type Follow struct {
|
||||
}
|
||||
|
||||
type GenerateCaptchaResponse struct {
|
||||
Id string `json:"id"`
|
||||
Image string `json:"image"`
|
||||
Type string `json:"type"`
|
||||
Id string `json:"id"`
|
||||
Image string `json:"image"`
|
||||
Type string `json:"type"`
|
||||
BlockImage string `json:"block_image,omitempty"`
|
||||
}
|
||||
|
||||
type GetAdsDetailRequest struct {
|
||||
@@ -2320,6 +2321,7 @@ type ResetPasswordRequest struct {
|
||||
CfToken string `json:"cf_token,optional"`
|
||||
CaptchaId string `json:"captcha_id,optional"`
|
||||
CaptchaCode string `json:"captcha_code,optional"`
|
||||
SliderToken string `json:"slider_token,optional"`
|
||||
}
|
||||
|
||||
type ResetSortRequest struct {
|
||||
@@ -2551,6 +2553,17 @@ type SiteCustomDataContacts struct {
|
||||
Address string `json:"address"`
|
||||
}
|
||||
|
||||
type SliderVerifyCaptchaRequest struct {
|
||||
Id string `json:"id" validate:"required"`
|
||||
X int `json:"x" validate:"required"`
|
||||
Y int `json:"y" validate:"required"`
|
||||
Trail string `json:"trail"`
|
||||
}
|
||||
|
||||
type SliderVerifyCaptchaResponse struct {
|
||||
Token string `json:"token"`
|
||||
}
|
||||
|
||||
type SortItem struct {
|
||||
Id int64 `json:"id" validate:"required"`
|
||||
Sort int64 `json:"sort" validate:"required"`
|
||||
@@ -2702,6 +2715,7 @@ type TelephoneLoginRequest struct {
|
||||
CfToken string `json:"cf_token,optional"`
|
||||
CaptchaId string `json:"captcha_id,optional"`
|
||||
CaptchaCode string `json:"captcha_code,optional"`
|
||||
SliderToken string `json:"slider_token,optional"`
|
||||
}
|
||||
|
||||
type TelephoneRegisterRequest struct {
|
||||
@@ -2717,6 +2731,7 @@ type TelephoneRegisterRequest struct {
|
||||
CfToken string `json:"cf_token,optional"`
|
||||
CaptchaId string `json:"captcha_id,optional"`
|
||||
CaptchaCode string `json:"captcha_code,optional"`
|
||||
SliderToken string `json:"slider_token,optional"`
|
||||
}
|
||||
|
||||
type TelephoneResetPasswordRequest struct {
|
||||
@@ -2731,6 +2746,7 @@ type TelephoneResetPasswordRequest struct {
|
||||
CfToken string `json:"cf_token,optional"`
|
||||
CaptchaId string `json:"captcha_id,optional"`
|
||||
CaptchaCode string `json:"captcha_code,optional"`
|
||||
SliderToken string `json:"slider_token,optional"`
|
||||
}
|
||||
|
||||
type TestEmailSendRequest struct {
|
||||
@@ -3201,6 +3217,7 @@ type UserLoginRequest struct {
|
||||
CfToken string `json:"cf_token,optional"`
|
||||
CaptchaId string `json:"captcha_id,optional"`
|
||||
CaptchaCode string `json:"captcha_code,optional"`
|
||||
SliderToken string `json:"slider_token,optional"`
|
||||
}
|
||||
|
||||
type UserRegisterRequest struct {
|
||||
@@ -3215,6 +3232,7 @@ type UserRegisterRequest struct {
|
||||
CfToken string `json:"cf_token,optional"`
|
||||
CaptchaId string `json:"captcha_id,optional"`
|
||||
CaptchaCode string `json:"captcha_code,optional"`
|
||||
SliderToken string `json:"slider_token,optional"`
|
||||
}
|
||||
|
||||
type UserStatistics struct {
|
||||
|
||||
Reference in New Issue
Block a user