Laravel AT Protocol Client (alpha & unstable)
at main 19 lines 663 B view raw
1<?php 2 3namespace SocialDept\AtpClient\Enums\Nsid; 4 5use SocialDept\AtpClient\Enums\Nsid\Concerns\HasScopeHelpers; 6 7enum AtprotoSync: string 8{ 9 use HasScopeHelpers; 10 case GetBlob = 'com.atproto.sync.getBlob'; 11 case GetRepo = 'com.atproto.sync.getRepo'; 12 case ListRepos = 'com.atproto.sync.listRepos'; 13 case ListReposByCollection = 'com.atproto.sync.listReposByCollection'; 14 case GetLatestCommit = 'com.atproto.sync.getLatestCommit'; 15 case GetRecord = 'com.atproto.sync.getRecord'; 16 case ListBlobs = 'com.atproto.sync.listBlobs'; 17 case GetBlocks = 'com.atproto.sync.getBlocks'; 18 case GetRepoStatus = 'com.atproto.sync.getRepoStatus'; 19}