tangled
alpha
login
or
join now
mackuba.eu
/
skyfall
6
fork
atom
A Ruby gem for streaming data from the Bluesky/ATProto firehose
6
fork
atom
overview
issues
pulls
pipelines
added app.bsky.actor.status collection type
mackuba.eu
10 months ago
4e6a50b0
92228382
+2
1 changed file
expand all
collapse all
unified
split
lib
skyfall
collection.rb
+2
lib/skyfall/collection.rb
···
1
1
module Skyfall
2
2
module Collection
3
3
BSKY_PROFILE = "app.bsky.actor.profile"
4
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
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,