editar la foto del usuario, notificaciones v2
PUT user/updateProfile con body { username: username, picture: el string machaso } si mandas el picture con "" aproposito significa que el user quiso borrar su foto actual.
indiferente si es seller o customer, al ser solo la picture me pareció mejor.
Para enviar notificaciones via REST: POST con array de emails de destinatarios (Deben haberse logeado por lo menos una vez en mobile y haber generado un Expo token)
curl --location --request POST 'http://localhost:5000/notifications/sendDeals'
--header 'Content-Type: application/json'
--data-raw '{
"recipients": ["mathihd38@gmail.com"]
}'
curl --location --request POST 'http://localhost:5000/notifications/sendNews'
--header 'Content-Type: application/json'
--data-raw '{
"recipients": ["mathihd38@gmail.com"]
}'