chore: ⬆️ updated deps

This commit is contained in:
2026-05-20 22:52:20 +02:00
parent d9f27c1775
commit 43f4680176
374 changed files with 295527 additions and 301467 deletions
+15
View File
@@ -73,6 +73,21 @@ func convertInputParameter(val interface{}) (interface{}, error) {
return val, nil
case civil.Time:
return val, nil
case NullDate:
if v.Valid {
return v.Date, nil
}
return val, nil
case NullDateTime:
if v.Valid {
return v.DateTime, nil
}
return val, nil
case NullTime:
if v.Valid {
return v.Time, nil
}
return val, nil
// case *apd.Decimal:
// return nil
case float32: