@atproto/bsky 0.0.118 → 0.0.119

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3540,6 +3540,65 @@ exports.schemaDict = {
3540
3540
  },
3541
3541
  },
3542
3542
  },
3543
+ ComAtprotoSyncListReposByCollection: {
3544
+ lexicon: 1,
3545
+ id: 'com.atproto.sync.listReposByCollection',
3546
+ defs: {
3547
+ main: {
3548
+ type: 'query',
3549
+ description: 'Enumerates all the DIDs which have records with the given collection NSID.',
3550
+ parameters: {
3551
+ type: 'params',
3552
+ required: ['collection'],
3553
+ properties: {
3554
+ collection: {
3555
+ type: 'string',
3556
+ format: 'nsid',
3557
+ },
3558
+ limit: {
3559
+ type: 'integer',
3560
+ description: 'Maximum size of response set. Recommend setting a large maximum (1000+) when enumerating large DID lists.',
3561
+ minimum: 1,
3562
+ maximum: 2000,
3563
+ default: 500,
3564
+ },
3565
+ cursor: {
3566
+ type: 'string',
3567
+ },
3568
+ },
3569
+ },
3570
+ output: {
3571
+ encoding: 'application/json',
3572
+ schema: {
3573
+ type: 'object',
3574
+ required: ['repos'],
3575
+ properties: {
3576
+ cursor: {
3577
+ type: 'string',
3578
+ },
3579
+ repos: {
3580
+ type: 'array',
3581
+ items: {
3582
+ type: 'ref',
3583
+ ref: 'lex:com.atproto.sync.listReposByCollection#repo',
3584
+ },
3585
+ },
3586
+ },
3587
+ },
3588
+ },
3589
+ },
3590
+ repo: {
3591
+ type: 'object',
3592
+ required: ['did'],
3593
+ properties: {
3594
+ did: {
3595
+ type: 'string',
3596
+ format: 'did',
3597
+ },
3598
+ },
3599
+ },
3600
+ },
3601
+ },
3543
3602
  ComAtprotoSyncNotifyOfUpdate: {
3544
3603
  lexicon: 1,
3545
3604
  id: 'com.atproto.sync.notifyOfUpdate',
@@ -10706,6 +10765,7 @@ exports.ids = {
10706
10765
  ComAtprotoSyncGetRepoStatus: 'com.atproto.sync.getRepoStatus',
10707
10766
  ComAtprotoSyncListBlobs: 'com.atproto.sync.listBlobs',
10708
10767
  ComAtprotoSyncListRepos: 'com.atproto.sync.listRepos',
10768
+ ComAtprotoSyncListReposByCollection: 'com.atproto.sync.listReposByCollection',
10709
10769
  ComAtprotoSyncNotifyOfUpdate: 'com.atproto.sync.notifyOfUpdate',
10710
10770
  ComAtprotoSyncRequestCrawl: 'com.atproto.sync.requestCrawl',
10711
10771
  ComAtprotoSyncSubscribeRepos: 'com.atproto.sync.subscribeRepos',