Laravel AT Protocol Client (alpha & unstable)
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add graph and labeler properties to BskyClient

+13
+13
src/Client/BskyClient.php
··· 13 13 class BskyClient 14 14 { 15 15 use HasDomainExtensions; 16 + 16 17 /** 17 18 * The parent AtpClient instance 18 19 */ ··· 29 30 public Bsky\ActorRequestClient $actor; 30 31 31 32 /** 33 + * Graph operations (app.bsky.graph.*) 34 + */ 35 + public Bsky\GraphRequestClient $graph; 36 + 37 + /** 38 + * Labeler operations (app.bsky.labeler.*) 39 + */ 40 + public Bsky\LabelerRequestClient $labeler; 41 + 42 + /** 32 43 * Post record client 33 44 */ 34 45 public PostRecordClient $post; ··· 53 64 $this->atp = $parent; 54 65 $this->feed = new Bsky\FeedRequestClient($this); 55 66 $this->actor = new Bsky\ActorRequestClient($this); 67 + $this->graph = new Bsky\GraphRequestClient($this); 68 + $this->labeler = new Bsky\LabelerRequestClient($this); 56 69 $this->post = new PostRecordClient($this); 57 70 $this->profile = new ProfileRecordClient($this); 58 71 $this->like = new LikeRecordClient($this);