🐛 Bug Report
📄 Title
Describe the bug briefly and clearly.
🔗 External Link
Insert the bug link in the bug management platform
🖥️ Environment
- Operating System: Windows 10
- Application Version: Vaden 1.0.2
- Dart: 3.11.1
📝 Detailed Description
Ao usar @query com tipos int ou bool, o Swagger sempre
mostra o tipo como string na documentação, mesmo quando
o tipo declarado é int ou bool.
@Controller('/expenses')
@Get('/detail-expenses')
Future<Response> getDetailExpense(
Request request,
@Query('id_month_expense') int idMonthExpense,
@Query('category_expense') String? categoryExpense,
@Query('payment_type') String? paymentType,
@Query('payment_made') bool? paymentMade,
@Query('type_expense') String? typeExpense,
) async {
✅ Expected Result
id_month_expense: integer
payment_made: boolean
❌ Actual Result
id_month_expense: string
payment_made: string
📷 Evidence
⚠️ Severity
🚨 Priority
🐛 Bug Report
📄 Title
Describe the bug briefly and clearly.
🔗 External Link
Insert the bug link in the bug management platform
🖥️ Environment
📝 Detailed Description
Ao usar @query com tipos int ou bool, o Swagger sempre
mostra o tipo como string na documentação, mesmo quando
o tipo declarado é int ou bool.
✅ Expected Result
id_month_expense: integer
payment_made: boolean
❌ Actual Result
id_month_expense: string
payment_made: string
📷 Evidence
🚨 Priority