fix: regenerate api routes and swagger documentation

Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-opencode)

Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
This commit is contained in:
2026-02-04 14:58:01 +08:00
parent 0fe4344b3b
commit 33ad8c544e
4 changed files with 566 additions and 0 deletions

View File

@@ -163,6 +163,28 @@ func (r *Routes) Register(router fiber.Router) {
QueryParam[string]("expires"),
QueryParam[string]("sign"),
))
// Register routes for controller: Transaction
r.log.Debugf("Registering route: Get /v1/t/:tenantCode/orders/:id<int>/status -> transaction.Status")
router.Get("/v1/t/:tenantCode/orders/:id<int>/status"[len(r.Path()):], DataFunc1(
r.transaction.Status,
PathParam[int64]("id"),
))
r.log.Debugf("Registering route: Post /v1/t/:tenantCode/orders -> transaction.Create")
router.Post("/v1/t/:tenantCode/orders"[len(r.Path()):], DataFunc1(
r.transaction.Create,
Body[dto.OrderCreateForm]("form"),
))
r.log.Debugf("Registering route: Post /v1/t/:tenantCode/orders/:id<int>/pay -> transaction.Pay")
router.Post("/v1/t/:tenantCode/orders/:id<int>/pay"[len(r.Path()):], DataFunc2(
r.transaction.Pay,
PathParam[int64]("id"),
Body[dto.OrderPayForm]("form"),
))
r.log.Debugf("Registering route: Post /v1/t/:tenantCode/webhook/payment/notify -> transaction.Webhook")
router.Post("/v1/t/:tenantCode/webhook/payment/notify"[len(r.Path()):], DataFunc1(
r.transaction.Webhook,
Body[dto.PaymentWebhookForm]("form"),
))
// Register routes for controller: User
r.log.Debugf("Registering route: Delete /v1/t/:tenantCode/me/favorites/:contentId<int> -> user.RemoveFavorite")
router.Delete("/v1/t/:tenantCode/me/favorites/:contentId<int>"[len(r.Path()):], Func2(