A Ruby gem for streaming data from the Bluesky/ATProto firehose

added app.bsky.actor.status collection type

+2
+2
lib/skyfall/collection.rb
··· 1 1 module Skyfall 2 2 module Collection 3 3 BSKY_PROFILE = "app.bsky.actor.profile" 4 + BSKY_ACTOR_STATUS = "app.bsky.actor.status" 4 5 BSKY_FEED = "app.bsky.feed.generator" 5 6 BSKY_LIKE = "app.bsky.feed.like" 6 7 BSKY_POST = "app.bsky.feed.post" ··· 19 20 BSKY_CHAT_DECLARATION = "chat.bsky.actor.declaration" 20 21 21 22 SHORT_CODES = { 23 + BSKY_ACTOR_STATUS => :bsky_actor_status, 22 24 BSKY_BLOCK => :bsky_block, 23 25 BSKY_FEED => :bsky_feed, 24 26 BSKY_FOLLOW => :bsky_follow,