Fix swagger data struct error
Some checks failed
Backend Check Build (NixCN CMS) TeamCity build failed
Client CMS Check Build (NixCN CMS) TeamCity build finished

Signed-off-by: Asai Neko <sugar@sne.moe>
This commit is contained in:
2026-01-29 01:25:12 +08:00
parent f7bde8ef2e
commit 654b196bfd
15 changed files with 136 additions and 316 deletions

View File

@@ -41,22 +41,6 @@ definitions:
username:
type: string
type: object
exception.Builder:
properties:
endpoint:
type: string
error: {}
errorCode:
type: string
original:
type: string
service:
type: string
status:
type: string
type:
type: string
type: object
service_auth.ExchangeData:
properties:
client_id:
@@ -66,15 +50,10 @@ definitions:
state:
type: string
type: object
service_auth.ExchangeResult:
service_auth.ExchangeResponse:
properties:
common:
$ref: '#/definitions/shared.CommonResult'
data:
properties:
redirect_uri:
type: string
type: object
redirect_uri:
type: string
type: object
service_auth.MagicData:
properties:
@@ -91,11 +70,10 @@ definitions:
turnstile_token:
type: string
type: object
service_auth.MagicResult:
service_auth.MagicResponse:
properties:
common:
$ref: '#/definitions/shared.CommonResult'
data: {}
uri:
type: string
type: object
service_auth.RefreshData:
properties:
@@ -114,44 +92,29 @@ definitions:
refresh_token:
type: string
type: object
service_event.CheckinQueryResult:
service_event.CheckinQueryResponse:
properties:
common:
$ref: '#/definitions/shared.CommonResult'
data:
properties:
checkin_at:
type: string
type: object
checkin_at:
type: string
type: object
service_event.CheckinResult:
service_event.CheckinResponse:
properties:
common:
$ref: '#/definitions/shared.CommonResult'
data:
properties:
checkin_code:
type: string
type: object
checkin_code:
type: string
type: object
service_event.CheckinSubmitData:
properties:
checkin_code:
type: string
type: object
service_event.InfoResult:
service_event.InfoResponse:
properties:
common:
$ref: '#/definitions/shared.CommonResult'
data:
properties:
end_time:
type: string
name:
type: string
start_time:
type: string
type: object
end_time:
type: string
name:
type: string
start_time:
type: string
type: object
service_user.UserInfoData:
properties:
@@ -174,22 +137,13 @@ definitions:
username:
type: string
type: object
service_user.UserTableResult:
service_user.UserTableResponse:
properties:
common:
$ref: '#/definitions/shared.CommonResult'
user_table:
items:
$ref: '#/definitions/data.User'
type: array
type: object
shared.CommonResult:
properties:
exception:
$ref: '#/definitions/exception.Builder'
httpCode:
type: integer
type: object
utils.RespStatus:
properties:
code:
@@ -226,7 +180,7 @@ paths:
- $ref: '#/definitions/utils.RespStatus'
- properties:
data:
$ref: '#/definitions/service_auth.ExchangeResult'
$ref: '#/definitions/service_auth.ExchangeResponse'
type: object
"400":
description: Invalid Input
@@ -283,7 +237,7 @@ paths:
- $ref: '#/definitions/utils.RespStatus'
- properties:
data:
$ref: '#/definitions/service_auth.MagicResult'
$ref: '#/definitions/service_auth.MagicResponse'
type: object
"400":
description: Invalid Input
@@ -512,7 +466,7 @@ paths:
- $ref: '#/definitions/utils.RespStatus'
- properties:
data:
$ref: '#/definitions/service_event.CheckinResult'
$ref: '#/definitions/service_event.CheckinResponse'
type: object
"400":
description: Invalid Input
@@ -557,7 +511,7 @@ paths:
- $ref: '#/definitions/utils.RespStatus'
- properties:
data:
$ref: '#/definitions/service_event.CheckinQueryResult'
$ref: '#/definitions/service_event.CheckinQueryResponse'
type: object
"400":
description: Invalid Input
@@ -638,7 +592,7 @@ paths:
- $ref: '#/definitions/utils.RespStatus'
- properties:
data:
$ref: '#/definitions/service_event.InfoResult'
$ref: '#/definitions/service_event.InfoResponse'
type: object
"400":
description: Invalid Input
@@ -686,7 +640,7 @@ paths:
- $ref: '#/definitions/utils.RespStatus'
- properties:
data:
$ref: '#/definitions/service_user.UserTableResult'
$ref: '#/definitions/service_user.UserTableResponse'
type: object
"500":
description: Internal Server Error (Database Error)