@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.
- package/CHANGELOG.md +7 -0
- package/dist/lexicon/index.d.ts +2 -0
- package/dist/lexicon/index.d.ts.map +1 -1
- package/dist/lexicon/index.js +4 -0
- package/dist/lexicon/index.js.map +1 -1
- package/dist/lexicon/lexicons.d.ts +118 -0
- package/dist/lexicon/lexicons.d.ts.map +1 -1
- package/dist/lexicon/lexicons.js +60 -0
- package/dist/lexicon/lexicons.js.map +1 -1
- package/dist/lexicon/types/com/atproto/sync/listReposByCollection.d.ts +46 -0
- package/dist/lexicon/types/com/atproto/sync/listReposByCollection.d.ts.map +1 -0
- package/dist/lexicon/types/com/atproto/sync/listReposByCollection.js +16 -0
- package/dist/lexicon/types/com/atproto/sync/listReposByCollection.js.map +1 -0
- package/package.json +4 -4
- package/src/lexicon/index.ts +12 -0
- package/src/lexicon/lexicons.ts +62 -0
- package/src/lexicon/types/com/atproto/sync/listReposByCollection.ts +68 -0
- package/tsconfig.build.tsbuildinfo +1 -1
package/dist/lexicon/lexicons.js
CHANGED
|
@@ -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',
|