Laravel AT Protocol Client (alpha & unstable)
3
fork

Configure Feed

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

Add typed response to Chat ActorRequestClient

+4 -1
+4 -1
src/Client/Requests/Chat/ActorRequestClient.php
··· 4 4 5 5 use SocialDept\AtpClient\Attributes\ScopedEndpoint; 6 6 use SocialDept\AtpClient\Client\Requests\Request; 7 + use SocialDept\AtpClient\Data\Responses\EmptyResponse; 7 8 use SocialDept\AtpClient\Enums\Nsid\ChatActor; 8 9 use SocialDept\AtpClient\Enums\Scope; 9 10 use SocialDept\AtpClient\Http\Response; ··· 48 49 * @see https://docs.bsky.app/docs/api/chat-bsky-actor-delete-account 49 50 */ 50 51 #[ScopedEndpoint(Scope::TransitionChat, granular: 'rpc:chat.bsky.actor.deleteAccount')] 51 - public function deleteAccount(): void 52 + public function deleteAccount(): EmptyResponse 52 53 { 53 54 $this->atp->client->post( 54 55 endpoint: ChatActor::DeleteAccount 55 56 ); 57 + 58 + return new EmptyResponse; 56 59 } 57 60 }