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

@@ -45,7 +45,7 @@
"type": "object",
"properties": {
"data": {
"$ref": "#/definitions/service_auth.ExchangeResult"
"$ref": "#/definitions/service_auth.ExchangeResponse"
}
}
}
@@ -145,7 +145,7 @@
"type": "object",
"properties": {
"data": {
"$ref": "#/definitions/service_auth.MagicResult"
"$ref": "#/definitions/service_auth.MagicResponse"
}
}
}
@@ -550,7 +550,7 @@
"type": "object",
"properties": {
"data": {
"$ref": "#/definitions/service_event.CheckinResult"
"$ref": "#/definitions/service_event.CheckinResponse"
}
}
}
@@ -630,7 +630,7 @@
"type": "object",
"properties": {
"data": {
"$ref": "#/definitions/service_event.CheckinQueryResult"
"$ref": "#/definitions/service_event.CheckinQueryResponse"
}
}
}
@@ -774,7 +774,7 @@
"type": "object",
"properties": {
"data": {
"$ref": "#/definitions/service_event.InfoResult"
"$ref": "#/definitions/service_event.InfoResponse"
}
}
}
@@ -868,7 +868,7 @@
"type": "object",
"properties": {
"data": {
"$ref": "#/definitions/service_user.UserTableResult"
"$ref": "#/definitions/service_user.UserTableResponse"
}
}
}
@@ -1250,30 +1250,6 @@
}
}
},
"exception.Builder": {
"type": "object",
"properties": {
"endpoint": {
"type": "string"
},
"error": {},
"errorCode": {
"type": "string"
},
"original": {
"type": "string"
},
"service": {
"type": "string"
},
"status": {
"type": "string"
},
"type": {
"type": "string"
}
}
},
"service_auth.ExchangeData": {
"type": "object",
"properties": {
@@ -1288,19 +1264,11 @@
}
}
},
"service_auth.ExchangeResult": {
"service_auth.ExchangeResponse": {
"type": "object",
"properties": {
"common": {
"$ref": "#/definitions/shared.CommonResult"
},
"data": {
"type": "object",
"properties": {
"redirect_uri": {
"type": "string"
}
}
"redirect_uri": {
"type": "string"
}
}
},
@@ -1327,13 +1295,12 @@
}
}
},
"service_auth.MagicResult": {
"service_auth.MagicResponse": {
"type": "object",
"properties": {
"common": {
"$ref": "#/definitions/shared.CommonResult"
},
"data": {}
"uri": {
"type": "string"
}
}
},
"service_auth.RefreshData": {
@@ -1363,35 +1330,19 @@
}
}
},
"service_event.CheckinQueryResult": {
"service_event.CheckinQueryResponse": {
"type": "object",
"properties": {
"common": {
"$ref": "#/definitions/shared.CommonResult"
},
"data": {
"type": "object",
"properties": {
"checkin_at": {
"type": "string"
}
}
"checkin_at": {
"type": "string"
}
}
},
"service_event.CheckinResult": {
"service_event.CheckinResponse": {
"type": "object",
"properties": {
"common": {
"$ref": "#/definitions/shared.CommonResult"
},
"data": {
"type": "object",
"properties": {
"checkin_code": {
"type": "string"
}
}
"checkin_code": {
"type": "string"
}
}
},
@@ -1403,25 +1354,17 @@
}
}
},
"service_event.InfoResult": {
"service_event.InfoResponse": {
"type": "object",
"properties": {
"common": {
"$ref": "#/definitions/shared.CommonResult"
"end_time": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"end_time": {
"type": "string"
},
"name": {
"type": "string"
},
"start_time": {
"type": "string"
}
}
"name": {
"type": "string"
},
"start_time": {
"type": "string"
}
}
},
@@ -1457,12 +1400,9 @@
}
}
},
"service_user.UserTableResult": {
"service_user.UserTableResponse": {
"type": "object",
"properties": {
"common": {
"$ref": "#/definitions/shared.CommonResult"
},
"user_table": {
"type": "array",
"items": {
@@ -1471,17 +1411,6 @@
}
}
},
"shared.CommonResult": {
"type": "object",
"properties": {
"exception": {
"$ref": "#/definitions/exception.Builder"
},
"httpCode": {
"type": "integer"
}
}
},
"utils.RespStatus": {
"type": "object",
"properties": {