this code, after updating to latest hono version doesn't work anymore, i get an empty object
this code, after updating to latest hono version doesn't work anymore, i get an empty object




{} response, i had to update the coderesult.httpMetadata.contentType. I think R2 doesn't do any file autodetection upon uploading
sendPushNotification(userId, Date.now() + 24 hours)scheduled) that runs every ~10 minutes to process anything that's "due". this seems the simplest.alarm() feature. this is theoretically simpler, but I don't see how I could use it for multiple users, since it's one alarm per DO.POST /schedule?timestamp=some_timestamp&payload=abc

wrangler dev, there's no way to delete workflows, etc
result.httpMetadata.contentTypesendPushNotification(userId, Date.now() + 24 hours)POST /schedule?timestamp=some_timestamp&payload=abcstorage.set('payload', abc)
alarm(some_timestamp) scheduled(event: ScheduledEvent, env: Bindings, ctx: ExecutionContext) {
switch (event.cron) {
case "*/5 * * * *":
break;
case "*/10 * * * *":
// Every ten minutes
break;
case "0 * * * *":
// Every hour
break;
case "0 0 * * *":
// Every day
break;
}
},