@atproto/pds 0.4.100 → 0.4.102
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 +20 -0
- package/dist/actor-store/repo/transactor.d.ts +5 -5
- package/dist/actor-store/repo/transactor.d.ts.map +1 -1
- package/dist/actor-store/repo/transactor.js +38 -18
- package/dist/actor-store/repo/transactor.js.map +1 -1
- package/dist/actor-store/repo/util.d.ts +5 -0
- package/dist/actor-store/repo/util.d.ts.map +1 -0
- package/dist/actor-store/repo/util.js +25 -0
- package/dist/actor-store/repo/util.js.map +1 -0
- package/dist/api/com/atproto/repo/applyWrites.js +1 -1
- package/dist/api/com/atproto/repo/applyWrites.js.map +1 -1
- package/dist/api/com/atproto/repo/createRecord.d.ts.map +1 -1
- package/dist/api/com/atproto/repo/createRecord.js +3 -3
- package/dist/api/com/atproto/repo/createRecord.js.map +1 -1
- package/dist/api/com/atproto/repo/deleteRecord.js +1 -1
- package/dist/api/com/atproto/repo/deleteRecord.js.map +1 -1
- package/dist/api/com/atproto/repo/putRecord.d.ts.map +1 -1
- package/dist/api/com/atproto/repo/putRecord.js +1 -1
- package/dist/api/com/atproto/repo/putRecord.js.map +1 -1
- package/dist/api/com/atproto/server/activateAccount.d.ts.map +1 -1
- package/dist/api/com/atproto/server/activateAccount.js +4 -1
- package/dist/api/com/atproto/server/activateAccount.js.map +1 -1
- package/dist/api/com/atproto/server/createAccount.js +1 -1
- package/dist/api/com/atproto/server/createAccount.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- 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 +166 -32
- package/dist/lexicon/lexicons.d.ts.map +1 -1
- package/dist/lexicon/lexicons.js +105 -15
- package/dist/lexicon/lexicons.js.map +1 -1
- package/dist/lexicon/types/chat/bsky/convo/updateAllRead.d.ts +40 -0
- package/dist/lexicon/types/chat/bsky/convo/updateAllRead.d.ts.map +1 -0
- package/dist/lexicon/types/chat/bsky/convo/updateAllRead.js +7 -0
- package/dist/lexicon/types/chat/bsky/convo/updateAllRead.js.map +1 -0
- package/dist/lexicon/types/com/atproto/sync/getRepoStatus.d.ts +1 -1
- package/dist/lexicon/types/com/atproto/sync/getRepoStatus.d.ts.map +1 -1
- package/dist/lexicon/types/com/atproto/sync/listRepos.d.ts +1 -1
- package/dist/lexicon/types/com/atproto/sync/listRepos.d.ts.map +1 -1
- package/dist/lexicon/types/com/atproto/sync/listRepos.js.map +1 -1
- package/dist/lexicon/types/com/atproto/sync/subscribeRepos.d.ts +25 -7
- package/dist/lexicon/types/com/atproto/sync/subscribeRepos.d.ts.map +1 -1
- package/dist/lexicon/types/com/atproto/sync/subscribeRepos.js +9 -0
- package/dist/lexicon/types/com/atproto/sync/subscribeRepos.js.map +1 -1
- package/dist/lexicon/types/tools/ozone/moderation/defs.d.ts +2 -2
- package/dist/lexicon/types/tools/ozone/moderation/defs.d.ts.map +1 -1
- package/dist/repo/types.d.ts +12 -1
- package/dist/repo/types.d.ts.map +1 -1
- package/dist/repo/types.js.map +1 -1
- package/dist/scripts/rebuild-repo.d.ts.map +1 -1
- package/dist/scripts/rebuild-repo.js +4 -1
- package/dist/scripts/rebuild-repo.js.map +1 -1
- package/dist/sequencer/events.d.ts +22 -16
- package/dist/sequencer/events.d.ts.map +1 -1
- package/dist/sequencer/events.js +31 -39
- package/dist/sequencer/events.js.map +1 -1
- package/dist/sequencer/sequencer.d.ts +2 -3
- package/dist/sequencer/sequencer.d.ts.map +1 -1
- package/dist/sequencer/sequencer.js +2 -2
- package/dist/sequencer/sequencer.js.map +1 -1
- package/package.json +6 -6
- package/src/actor-store/repo/transactor.ts +47 -21
- package/src/actor-store/repo/util.ts +22 -0
- package/src/api/com/atproto/repo/applyWrites.ts +1 -1
- package/src/api/com/atproto/repo/createRecord.ts +28 -31
- package/src/api/com/atproto/repo/deleteRecord.ts +1 -1
- package/src/api/com/atproto/repo/putRecord.ts +3 -3
- package/src/api/com/atproto/server/activateAccount.ts +4 -1
- package/src/api/com/atproto/server/createAccount.ts +1 -1
- package/src/index.ts +1 -1
- package/src/lexicon/index.ts +12 -0
- package/src/lexicon/lexicons.ts +114 -16
- package/src/lexicon/types/chat/bsky/convo/updateAllRead.ts +53 -0
- package/src/lexicon/types/com/atproto/sync/getRepoStatus.ts +8 -1
- package/src/lexicon/types/com/atproto/sync/listRepos.ts +8 -1
- package/src/lexicon/types/com/atproto/sync/subscribeRepos.ts +41 -6
- package/src/lexicon/types/tools/ozone/moderation/defs.ts +2 -2
- package/src/repo/types.ts +14 -1
- package/src/scripts/rebuild-repo.ts +4 -1
- package/src/sequencer/events.ts +35 -49
- package/src/sequencer/sequencer.ts +3 -5
- package/tests/crud.test.ts +1 -1
- package/tests/sequencer.test.ts +1 -5
- package/tests/sync/invertible-ops.test.ts +104 -0
- package/tsconfig.build.tsbuildinfo +1 -1
- package/tsconfig.tests.tsbuildinfo +1 -1
package/dist/lexicon/lexicons.js
CHANGED
@@ -3399,7 +3399,14 @@ exports.schemaDict = {
|
|
3399
3399
|
status: {
|
3400
3400
|
type: 'string',
|
3401
3401
|
description: 'If active=false, this optional field indicates a possible reason for why the account is not active. If active=false and no status is supplied, then the host makes no claim for why the repository is no longer being hosted.',
|
3402
|
-
knownValues: [
|
3402
|
+
knownValues: [
|
3403
|
+
'takendown',
|
3404
|
+
'suspended',
|
3405
|
+
'deleted',
|
3406
|
+
'deactivated',
|
3407
|
+
'desynchronized',
|
3408
|
+
'throttled',
|
3409
|
+
],
|
3403
3410
|
},
|
3404
3411
|
rev: {
|
3405
3412
|
type: 'string',
|
@@ -3549,7 +3556,14 @@ exports.schemaDict = {
|
|
3549
3556
|
status: {
|
3550
3557
|
type: 'string',
|
3551
3558
|
description: 'If active=false, this optional field indicates a possible reason for why the account is not active. If active=false and no status is supplied, then the host makes no claim for why the repository is no longer being hosted.',
|
3552
|
-
knownValues: [
|
3559
|
+
knownValues: [
|
3560
|
+
'takendown',
|
3561
|
+
'suspended',
|
3562
|
+
'deleted',
|
3563
|
+
'deactivated',
|
3564
|
+
'desynchronized',
|
3565
|
+
'throttled',
|
3566
|
+
],
|
3553
3567
|
},
|
3554
3568
|
},
|
3555
3569
|
},
|
@@ -3681,6 +3695,7 @@ exports.schemaDict = {
|
|
3681
3695
|
type: 'union',
|
3682
3696
|
refs: [
|
3683
3697
|
'lex:com.atproto.sync.subscribeRepos#commit',
|
3698
|
+
'lex:com.atproto.sync.subscribeRepos#sync',
|
3684
3699
|
'lex:com.atproto.sync.subscribeRepos#identity',
|
3685
3700
|
'lex:com.atproto.sync.subscribeRepos#account',
|
3686
3701
|
'lex:com.atproto.sync.subscribeRepos#handle',
|
@@ -3716,7 +3731,7 @@ exports.schemaDict = {
|
|
3716
3731
|
'blobs',
|
3717
3732
|
'time',
|
3718
3733
|
],
|
3719
|
-
nullable: ['
|
3734
|
+
nullable: ['since'],
|
3720
3735
|
properties: {
|
3721
3736
|
seq: {
|
3722
3737
|
type: 'integer',
|
@@ -3728,21 +3743,17 @@ exports.schemaDict = {
|
|
3728
3743
|
},
|
3729
3744
|
tooBig: {
|
3730
3745
|
type: 'boolean',
|
3731
|
-
description: 'Indicates that this commit contained too many ops, or data size was too large. Consumers will need to make a separate request to get missing data.',
|
3746
|
+
description: 'DEPRECATED -- replaced by #sync event and data limits. Indicates that this commit contained too many ops, or data size was too large. Consumers will need to make a separate request to get missing data.',
|
3732
3747
|
},
|
3733
3748
|
repo: {
|
3734
3749
|
type: 'string',
|
3735
3750
|
format: 'did',
|
3736
|
-
description:
|
3751
|
+
description: "The repo this event comes from. Note that all other message types name this field 'did'.",
|
3737
3752
|
},
|
3738
3753
|
commit: {
|
3739
3754
|
type: 'cid-link',
|
3740
3755
|
description: 'Repo commit object CID.',
|
3741
3756
|
},
|
3742
|
-
prev: {
|
3743
|
-
type: 'cid-link',
|
3744
|
-
description: 'DEPRECATED -- unused. WARNING -- nullable and optional; stick with optional to ensure golang interoperability.',
|
3745
|
-
},
|
3746
3757
|
rev: {
|
3747
3758
|
type: 'string',
|
3748
3759
|
format: 'tid',
|
@@ -3755,8 +3766,8 @@ exports.schemaDict = {
|
|
3755
3766
|
},
|
3756
3767
|
blocks: {
|
3757
3768
|
type: 'bytes',
|
3758
|
-
description:
|
3759
|
-
maxLength:
|
3769
|
+
description: "CAR file containing relevant blocks, as a diff since the previous repo state. The commit must be included as a block, and the commit block CID must be the first entry in the CAR header 'roots' list.",
|
3770
|
+
maxLength: 2000000,
|
3760
3771
|
},
|
3761
3772
|
ops: {
|
3762
3773
|
type: 'array',
|
@@ -3771,9 +3782,43 @@ exports.schemaDict = {
|
|
3771
3782
|
type: 'array',
|
3772
3783
|
items: {
|
3773
3784
|
type: 'cid-link',
|
3774
|
-
description: 'List of new blobs (by CID) referenced by records in this commit.',
|
3785
|
+
description: 'DEPRECATED -- will soon always be empty. List of new blobs (by CID) referenced by records in this commit.',
|
3775
3786
|
},
|
3776
3787
|
},
|
3788
|
+
prevData: {
|
3789
|
+
type: 'cid-link',
|
3790
|
+
description: "The root CID of the MST tree for the previous commit from this repo (indicated by the 'since' revision field in this message). Corresponds to the 'data' field in the repo commit object. NOTE: this field is effectively required for the 'inductive' version of firehose.",
|
3791
|
+
},
|
3792
|
+
time: {
|
3793
|
+
type: 'string',
|
3794
|
+
format: 'datetime',
|
3795
|
+
description: 'Timestamp of when this message was originally broadcast.',
|
3796
|
+
},
|
3797
|
+
},
|
3798
|
+
},
|
3799
|
+
sync: {
|
3800
|
+
type: 'object',
|
3801
|
+
description: 'Updates the repo to a new state, without necessarily including that state on the firehose. Used to recover from broken commit streams, data loss incidents, or in situations where upstream host does not know recent state of the repository.',
|
3802
|
+
required: ['seq', 'did', 'blocks', 'rev', 'time'],
|
3803
|
+
properties: {
|
3804
|
+
seq: {
|
3805
|
+
type: 'integer',
|
3806
|
+
description: 'The stream sequence number of this message.',
|
3807
|
+
},
|
3808
|
+
did: {
|
3809
|
+
type: 'string',
|
3810
|
+
format: 'did',
|
3811
|
+
description: 'The account this repo event corresponds to. Must match that in the commit object.',
|
3812
|
+
},
|
3813
|
+
blocks: {
|
3814
|
+
type: 'bytes',
|
3815
|
+
description: "CAR file containing the commit, as a block. The CAR header must include the commit block CID as the first 'root'.",
|
3816
|
+
maxLength: 10000,
|
3817
|
+
},
|
3818
|
+
rev: {
|
3819
|
+
type: 'string',
|
3820
|
+
description: 'The rev of the commit. This value must match that in the commit object.',
|
3821
|
+
},
|
3777
3822
|
time: {
|
3778
3823
|
type: 'string',
|
3779
3824
|
format: 'datetime',
|
@@ -3827,7 +3872,14 @@ exports.schemaDict = {
|
|
3827
3872
|
status: {
|
3828
3873
|
type: 'string',
|
3829
3874
|
description: 'If active=false, this optional field indicates a reason for why the account is not active.',
|
3830
|
-
knownValues: [
|
3875
|
+
knownValues: [
|
3876
|
+
'takendown',
|
3877
|
+
'suspended',
|
3878
|
+
'deleted',
|
3879
|
+
'deactivated',
|
3880
|
+
'desynchronized',
|
3881
|
+
'throttled',
|
3882
|
+
],
|
3831
3883
|
},
|
3832
3884
|
},
|
3833
3885
|
},
|
@@ -3923,6 +3975,10 @@ exports.schemaDict = {
|
|
3923
3975
|
type: 'cid-link',
|
3924
3976
|
description: 'For creates and updates, the new record CID. For deletions, null.',
|
3925
3977
|
},
|
3978
|
+
prev: {
|
3979
|
+
type: 'cid-link',
|
3980
|
+
description: 'For updates and deletes, the previous record CID (required for inductive firehose). For creations, field should not be defined.',
|
3981
|
+
},
|
3926
3982
|
},
|
3927
3983
|
},
|
3928
3984
|
},
|
@@ -10657,6 +10713,40 @@ exports.schemaDict = {
|
|
10657
10713
|
},
|
10658
10714
|
},
|
10659
10715
|
},
|
10716
|
+
ChatBskyConvoUpdateAllRead: {
|
10717
|
+
lexicon: 1,
|
10718
|
+
id: 'chat.bsky.convo.updateAllRead',
|
10719
|
+
defs: {
|
10720
|
+
main: {
|
10721
|
+
type: 'procedure',
|
10722
|
+
input: {
|
10723
|
+
encoding: 'application/json',
|
10724
|
+
schema: {
|
10725
|
+
type: 'object',
|
10726
|
+
properties: {
|
10727
|
+
status: {
|
10728
|
+
type: 'string',
|
10729
|
+
knownValues: ['request', 'accepted'],
|
10730
|
+
},
|
10731
|
+
},
|
10732
|
+
},
|
10733
|
+
},
|
10734
|
+
output: {
|
10735
|
+
encoding: 'application/json',
|
10736
|
+
schema: {
|
10737
|
+
type: 'object',
|
10738
|
+
required: ['updatedCount'],
|
10739
|
+
properties: {
|
10740
|
+
updatedCount: {
|
10741
|
+
description: 'The count of updated convos.',
|
10742
|
+
type: 'integer',
|
10743
|
+
},
|
10744
|
+
},
|
10745
|
+
},
|
10746
|
+
},
|
10747
|
+
},
|
10748
|
+
},
|
10749
|
+
},
|
10660
10750
|
ChatBskyConvoUpdateRead: {
|
10661
10751
|
lexicon: 1,
|
10662
10752
|
id: 'chat.bsky.convo.updateRead',
|
@@ -11432,8 +11522,7 @@ exports.schemaDict = {
|
|
11432
11522
|
},
|
11433
11523
|
modEventComment: {
|
11434
11524
|
type: 'object',
|
11435
|
-
description: 'Add a comment to a subject',
|
11436
|
-
required: ['comment'],
|
11525
|
+
description: 'Add a comment to a subject. An empty comment will clear any previously set sticky comment.',
|
11437
11526
|
properties: {
|
11438
11527
|
comment: {
|
11439
11528
|
type: 'string',
|
@@ -14004,6 +14093,7 @@ exports.ids = {
|
|
14004
14093
|
ChatBskyConvoSendMessage: 'chat.bsky.convo.sendMessage',
|
14005
14094
|
ChatBskyConvoSendMessageBatch: 'chat.bsky.convo.sendMessageBatch',
|
14006
14095
|
ChatBskyConvoUnmuteConvo: 'chat.bsky.convo.unmuteConvo',
|
14096
|
+
ChatBskyConvoUpdateAllRead: 'chat.bsky.convo.updateAllRead',
|
14007
14097
|
ChatBskyConvoUpdateRead: 'chat.bsky.convo.updateRead',
|
14008
14098
|
ChatBskyModerationGetActorMetadata: 'chat.bsky.moderation.getActorMetadata',
|
14009
14099
|
ChatBskyModerationGetMessageContext: 'chat.bsky.moderation.getMessageContext',
|