fix(types): remove BigNumberValue usages in http types (#9285)

remove all `BigNumberValue` usages in http types, since http requests will only receive a number.
This commit is contained in:
Shahed Nasser
2024-09-25 12:12:43 +00:00
committed by GitHub
parent 6d16b3294e
commit d7dd7de0fe
4 changed files with 73 additions and 74 deletions
@@ -37,5 +37,7 @@ export const POST = async (
req.remoteQueryConfig.fields
)
res.status(200).json({ payment_collection: paymentCollection })
res.status(200).json({
payment_collection: paymentCollection as HttpTypes.StorePaymentCollection,
})
}