Schedule posts to Bluesky with Cloudflare workers. skyscheduler.work
cf tool bsky-tool cloudflare bluesky schedule bsky service social-media cloudflare-workers

puts have to be strings

explicitly convert it

+1 -1
+1 -1
src/utils/inviteKeys.ts
··· 84 84 separator: '-', 85 85 capitalize: false, 86 86 }); 87 - c.executionCtx.waitUntil(c.env.INVITE_POOL!.put(newKey, usages)); 87 + c.executionCtx.waitUntil(c.env.INVITE_POOL!.put(newKey, usages.toString())); 88 88 return newKey; 89 89 }