@atproto/api 0.14.4 → 0.14.6
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 +16 -0
- package/dist/client/index.d.ts +3 -0
- package/dist/client/index.d.ts.map +1 -1
- package/dist/client/index.js +7 -3
- package/dist/client/index.js.map +1 -1
- package/dist/client/lexicons.d.ts +166 -32
- package/dist/client/lexicons.d.ts.map +1 -1
- package/dist/client/lexicons.js +105 -15
- package/dist/client/lexicons.js.map +1 -1
- package/dist/client/types/chat/bsky/convo/updateAllRead.d.ts +26 -0
- package/dist/client/types/chat/bsky/convo/updateAllRead.d.ts.map +1 -0
- package/dist/client/types/chat/bsky/convo/updateAllRead.js +11 -0
- package/dist/client/types/chat/bsky/convo/updateAllRead.js.map +1 -0
- package/dist/client/types/com/atproto/sync/getRepoStatus.d.ts +1 -1
- package/dist/client/types/com/atproto/sync/getRepoStatus.d.ts.map +1 -1
- package/dist/client/types/com/atproto/sync/getRepoStatus.js.map +1 -1
- package/dist/client/types/com/atproto/sync/listRepos.d.ts +1 -1
- package/dist/client/types/com/atproto/sync/listRepos.d.ts.map +1 -1
- package/dist/client/types/com/atproto/sync/listRepos.js.map +1 -1
- package/dist/client/types/com/atproto/sync/subscribeRepos.d.ts +24 -6
- package/dist/client/types/com/atproto/sync/subscribeRepos.d.ts.map +1 -1
- package/dist/client/types/com/atproto/sync/subscribeRepos.js +9 -0
- package/dist/client/types/com/atproto/sync/subscribeRepos.js.map +1 -1
- package/dist/client/types/tools/ozone/moderation/defs.d.ts +2 -2
- package/dist/client/types/tools/ozone/moderation/defs.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/client/index.ts +14 -0
- package/src/client/lexicons.ts +114 -16
- package/src/client/types/chat/bsky/convo/updateAllRead.ts +40 -0
- package/src/client/types/com/atproto/sync/getRepoStatus.ts +8 -1
- package/src/client/types/com/atproto/sync/listRepos.ts +8 -1
- package/src/client/types/com/atproto/sync/subscribeRepos.ts +40 -6
- package/src/client/types/tools/ozone/moderation/defs.ts +2 -2
- package/tsconfig.build.tsbuildinfo +1 -1
|
@@ -46,7 +46,14 @@ export interface Repo {
|
|
|
46
46
|
rev: string
|
|
47
47
|
active?: boolean
|
|
48
48
|
/** 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. */
|
|
49
|
-
status?:
|
|
49
|
+
status?:
|
|
50
|
+
| 'takendown'
|
|
51
|
+
| 'suspended'
|
|
52
|
+
| 'deleted'
|
|
53
|
+
| 'deactivated'
|
|
54
|
+
| 'desynchronized'
|
|
55
|
+
| 'throttled'
|
|
56
|
+
| (string & {})
|
|
50
57
|
}
|
|
51
58
|
|
|
52
59
|
const hashRepo = 'repo'
|
|
@@ -18,22 +18,22 @@ export interface Commit {
|
|
|
18
18
|
seq: number
|
|
19
19
|
/** DEPRECATED -- unused */
|
|
20
20
|
rebase: boolean
|
|
21
|
-
/** 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. */
|
|
21
|
+
/** 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. */
|
|
22
22
|
tooBig: boolean
|
|
23
|
-
/** The repo this event comes from. */
|
|
23
|
+
/** The repo this event comes from. Note that all other message types name this field 'did'. */
|
|
24
24
|
repo: string
|
|
25
25
|
/** Repo commit object CID. */
|
|
26
26
|
commit: CID
|
|
27
|
-
/** DEPRECATED -- unused. WARNING -- nullable and optional; stick with optional to ensure golang interoperability. */
|
|
28
|
-
prev?: CID | null
|
|
29
27
|
/** The rev of the emitted commit. Note that this information is also in the commit object included in blocks, unless this is a tooBig event. */
|
|
30
28
|
rev: string
|
|
31
29
|
/** The rev of the last emitted commit from this repo (if any). */
|
|
32
30
|
since: string | null
|
|
33
|
-
/** CAR file containing relevant blocks, as a diff since the previous repo state. */
|
|
31
|
+
/** 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. */
|
|
34
32
|
blocks: Uint8Array
|
|
35
33
|
ops: RepoOp[]
|
|
36
34
|
blobs: CID[]
|
|
35
|
+
/** 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. */
|
|
36
|
+
prevData?: CID
|
|
37
37
|
/** Timestamp of when this message was originally broadcast. */
|
|
38
38
|
time: string
|
|
39
39
|
}
|
|
@@ -48,6 +48,31 @@ export function validateCommit<V>(v: V) {
|
|
|
48
48
|
return validate<Commit & V>(v, id, hashCommit)
|
|
49
49
|
}
|
|
50
50
|
|
|
51
|
+
/** 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. */
|
|
52
|
+
export interface Sync {
|
|
53
|
+
$type?: 'com.atproto.sync.subscribeRepos#sync'
|
|
54
|
+
/** The stream sequence number of this message. */
|
|
55
|
+
seq: number
|
|
56
|
+
/** The account this repo event corresponds to. Must match that in the commit object. */
|
|
57
|
+
did: string
|
|
58
|
+
/** CAR file containing the commit, as a block. The CAR header must include the commit block CID as the first 'root'. */
|
|
59
|
+
blocks: Uint8Array
|
|
60
|
+
/** The rev of the commit. This value must match that in the commit object. */
|
|
61
|
+
rev: string
|
|
62
|
+
/** Timestamp of when this message was originally broadcast. */
|
|
63
|
+
time: string
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
const hashSync = 'sync'
|
|
67
|
+
|
|
68
|
+
export function isSync<V>(v: V) {
|
|
69
|
+
return is$typed(v, id, hashSync)
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
export function validateSync<V>(v: V) {
|
|
73
|
+
return validate<Sync & V>(v, id, hashSync)
|
|
74
|
+
}
|
|
75
|
+
|
|
51
76
|
/** Represents a change to an account's identity. Could be an updated handle, signing key, or pds hosting endpoint. Serves as a prod to all downstream services to refresh their identity cache. */
|
|
52
77
|
export interface Identity {
|
|
53
78
|
$type?: 'com.atproto.sync.subscribeRepos#identity'
|
|
@@ -77,7 +102,14 @@ export interface Account {
|
|
|
77
102
|
/** Indicates that the account has a repository which can be fetched from the host that emitted this event. */
|
|
78
103
|
active: boolean
|
|
79
104
|
/** If active=false, this optional field indicates a reason for why the account is not active. */
|
|
80
|
-
status?:
|
|
105
|
+
status?:
|
|
106
|
+
| 'takendown'
|
|
107
|
+
| 'suspended'
|
|
108
|
+
| 'deleted'
|
|
109
|
+
| 'deactivated'
|
|
110
|
+
| 'desynchronized'
|
|
111
|
+
| 'throttled'
|
|
112
|
+
| (string & {})
|
|
81
113
|
}
|
|
82
114
|
|
|
83
115
|
const hashAccount = 'account'
|
|
@@ -169,6 +201,8 @@ export interface RepoOp {
|
|
|
169
201
|
path: string
|
|
170
202
|
/** For creates and updates, the new record CID. For deletions, null. */
|
|
171
203
|
cid: CID | null
|
|
204
|
+
/** For updates and deletes, the previous record CID (required for inductive firehose). For creations, field should not be defined. */
|
|
205
|
+
prev?: CID
|
|
172
206
|
}
|
|
173
207
|
|
|
174
208
|
const hashRepoOp = 'repoOp'
|
|
@@ -284,10 +284,10 @@ export function validateModEventResolveAppeal<V>(v: V) {
|
|
|
284
284
|
return validate<ModEventResolveAppeal & V>(v, id, hashModEventResolveAppeal)
|
|
285
285
|
}
|
|
286
286
|
|
|
287
|
-
/** Add a comment to a subject */
|
|
287
|
+
/** Add a comment to a subject. An empty comment will clear any previously set sticky comment. */
|
|
288
288
|
export interface ModEventComment {
|
|
289
289
|
$type?: 'tools.ozone.moderation.defs#modEventComment'
|
|
290
|
-
comment
|
|
290
|
+
comment?: string
|
|
291
291
|
/** Make the comment persistent on the subject */
|
|
292
292
|
sticky?: boolean
|
|
293
293
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"root":["./src/agent.ts","./src/atp-agent.ts","./src/bsky-agent.ts","./src/const.ts","./src/index.ts","./src/mocker.ts","./src/predicate.ts","./src/session-manager.ts","./src/types.ts","./src/util.ts","./src/client/index.ts","./src/client/lexicons.ts","./src/client/util.ts","./src/client/types/app/bsky/actor/defs.ts","./src/client/types/app/bsky/actor/getPreferences.ts","./src/client/types/app/bsky/actor/getProfile.ts","./src/client/types/app/bsky/actor/getProfiles.ts","./src/client/types/app/bsky/actor/getSuggestions.ts","./src/client/types/app/bsky/actor/profile.ts","./src/client/types/app/bsky/actor/putPreferences.ts","./src/client/types/app/bsky/actor/searchActors.ts","./src/client/types/app/bsky/actor/searchActorsTypeahead.ts","./src/client/types/app/bsky/embed/defs.ts","./src/client/types/app/bsky/embed/external.ts","./src/client/types/app/bsky/embed/images.ts","./src/client/types/app/bsky/embed/record.ts","./src/client/types/app/bsky/embed/recordWithMedia.ts","./src/client/types/app/bsky/embed/video.ts","./src/client/types/app/bsky/feed/defs.ts","./src/client/types/app/bsky/feed/describeFeedGenerator.ts","./src/client/types/app/bsky/feed/generator.ts","./src/client/types/app/bsky/feed/getActorFeeds.ts","./src/client/types/app/bsky/feed/getActorLikes.ts","./src/client/types/app/bsky/feed/getAuthorFeed.ts","./src/client/types/app/bsky/feed/getFeed.ts","./src/client/types/app/bsky/feed/getFeedGenerator.ts","./src/client/types/app/bsky/feed/getFeedGenerators.ts","./src/client/types/app/bsky/feed/getFeedSkeleton.ts","./src/client/types/app/bsky/feed/getLikes.ts","./src/client/types/app/bsky/feed/getListFeed.ts","./src/client/types/app/bsky/feed/getPostThread.ts","./src/client/types/app/bsky/feed/getPosts.ts","./src/client/types/app/bsky/feed/getQuotes.ts","./src/client/types/app/bsky/feed/getRepostedBy.ts","./src/client/types/app/bsky/feed/getSuggestedFeeds.ts","./src/client/types/app/bsky/feed/getTimeline.ts","./src/client/types/app/bsky/feed/like.ts","./src/client/types/app/bsky/feed/post.ts","./src/client/types/app/bsky/feed/postgate.ts","./src/client/types/app/bsky/feed/repost.ts","./src/client/types/app/bsky/feed/searchPosts.ts","./src/client/types/app/bsky/feed/sendInteractions.ts","./src/client/types/app/bsky/feed/threadgate.ts","./src/client/types/app/bsky/graph/block.ts","./src/client/types/app/bsky/graph/defs.ts","./src/client/types/app/bsky/graph/follow.ts","./src/client/types/app/bsky/graph/getActorStarterPacks.ts","./src/client/types/app/bsky/graph/getBlocks.ts","./src/client/types/app/bsky/graph/getFollowers.ts","./src/client/types/app/bsky/graph/getFollows.ts","./src/client/types/app/bsky/graph/getKnownFollowers.ts","./src/client/types/app/bsky/graph/getList.ts","./src/client/types/app/bsky/graph/getListBlocks.ts","./src/client/types/app/bsky/graph/getListMutes.ts","./src/client/types/app/bsky/graph/getLists.ts","./src/client/types/app/bsky/graph/getMutes.ts","./src/client/types/app/bsky/graph/getRelationships.ts","./src/client/types/app/bsky/graph/getStarterPack.ts","./src/client/types/app/bsky/graph/getStarterPacks.ts","./src/client/types/app/bsky/graph/getSuggestedFollowsByActor.ts","./src/client/types/app/bsky/graph/list.ts","./src/client/types/app/bsky/graph/listblock.ts","./src/client/types/app/bsky/graph/listitem.ts","./src/client/types/app/bsky/graph/muteActor.ts","./src/client/types/app/bsky/graph/muteActorList.ts","./src/client/types/app/bsky/graph/muteThread.ts","./src/client/types/app/bsky/graph/searchStarterPacks.ts","./src/client/types/app/bsky/graph/starterpack.ts","./src/client/types/app/bsky/graph/unmuteActor.ts","./src/client/types/app/bsky/graph/unmuteActorList.ts","./src/client/types/app/bsky/graph/unmuteThread.ts","./src/client/types/app/bsky/labeler/defs.ts","./src/client/types/app/bsky/labeler/getServices.ts","./src/client/types/app/bsky/labeler/service.ts","./src/client/types/app/bsky/notification/getUnreadCount.ts","./src/client/types/app/bsky/notification/listNotifications.ts","./src/client/types/app/bsky/notification/putPreferences.ts","./src/client/types/app/bsky/notification/registerPush.ts","./src/client/types/app/bsky/notification/updateSeen.ts","./src/client/types/app/bsky/richtext/facet.ts","./src/client/types/app/bsky/unspecced/defs.ts","./src/client/types/app/bsky/unspecced/getConfig.ts","./src/client/types/app/bsky/unspecced/getPopularFeedGenerators.ts","./src/client/types/app/bsky/unspecced/getSuggestionsSkeleton.ts","./src/client/types/app/bsky/unspecced/getTaggedSuggestions.ts","./src/client/types/app/bsky/unspecced/getTrendingTopics.ts","./src/client/types/app/bsky/unspecced/searchActorsSkeleton.ts","./src/client/types/app/bsky/unspecced/searchPostsSkeleton.ts","./src/client/types/app/bsky/unspecced/searchStarterPacksSkeleton.ts","./src/client/types/app/bsky/video/defs.ts","./src/client/types/app/bsky/video/getJobStatus.ts","./src/client/types/app/bsky/video/getUploadLimits.ts","./src/client/types/app/bsky/video/uploadVideo.ts","./src/client/types/chat/bsky/actor/declaration.ts","./src/client/types/chat/bsky/actor/defs.ts","./src/client/types/chat/bsky/actor/deleteAccount.ts","./src/client/types/chat/bsky/actor/exportAccountData.ts","./src/client/types/chat/bsky/convo/acceptConvo.ts","./src/client/types/chat/bsky/convo/defs.ts","./src/client/types/chat/bsky/convo/deleteMessageForSelf.ts","./src/client/types/chat/bsky/convo/getConvo.ts","./src/client/types/chat/bsky/convo/getConvoAvailability.ts","./src/client/types/chat/bsky/convo/getConvoForMembers.ts","./src/client/types/chat/bsky/convo/getLog.ts","./src/client/types/chat/bsky/convo/getMessages.ts","./src/client/types/chat/bsky/convo/leaveConvo.ts","./src/client/types/chat/bsky/convo/listConvos.ts","./src/client/types/chat/bsky/convo/muteConvo.ts","./src/client/types/chat/bsky/convo/sendMessage.ts","./src/client/types/chat/bsky/convo/sendMessageBatch.ts","./src/client/types/chat/bsky/convo/unmuteConvo.ts","./src/client/types/chat/bsky/convo/updateRead.ts","./src/client/types/chat/bsky/moderation/getActorMetadata.ts","./src/client/types/chat/bsky/moderation/getMessageContext.ts","./src/client/types/chat/bsky/moderation/updateActorAccess.ts","./src/client/types/com/atproto/admin/defs.ts","./src/client/types/com/atproto/admin/deleteAccount.ts","./src/client/types/com/atproto/admin/disableAccountInvites.ts","./src/client/types/com/atproto/admin/disableInviteCodes.ts","./src/client/types/com/atproto/admin/enableAccountInvites.ts","./src/client/types/com/atproto/admin/getAccountInfo.ts","./src/client/types/com/atproto/admin/getAccountInfos.ts","./src/client/types/com/atproto/admin/getInviteCodes.ts","./src/client/types/com/atproto/admin/getSubjectStatus.ts","./src/client/types/com/atproto/admin/searchAccounts.ts","./src/client/types/com/atproto/admin/sendEmail.ts","./src/client/types/com/atproto/admin/updateAccountEmail.ts","./src/client/types/com/atproto/admin/updateAccountHandle.ts","./src/client/types/com/atproto/admin/updateAccountPassword.ts","./src/client/types/com/atproto/admin/updateSubjectStatus.ts","./src/client/types/com/atproto/identity/getRecommendedDidCredentials.ts","./src/client/types/com/atproto/identity/requestPlcOperationSignature.ts","./src/client/types/com/atproto/identity/resolveHandle.ts","./src/client/types/com/atproto/identity/signPlcOperation.ts","./src/client/types/com/atproto/identity/submitPlcOperation.ts","./src/client/types/com/atproto/identity/updateHandle.ts","./src/client/types/com/atproto/label/defs.ts","./src/client/types/com/atproto/label/queryLabels.ts","./src/client/types/com/atproto/label/subscribeLabels.ts","./src/client/types/com/atproto/lexicon/schema.ts","./src/client/types/com/atproto/moderation/createReport.ts","./src/client/types/com/atproto/moderation/defs.ts","./src/client/types/com/atproto/repo/applyWrites.ts","./src/client/types/com/atproto/repo/createRecord.ts","./src/client/types/com/atproto/repo/defs.ts","./src/client/types/com/atproto/repo/deleteRecord.ts","./src/client/types/com/atproto/repo/describeRepo.ts","./src/client/types/com/atproto/repo/getRecord.ts","./src/client/types/com/atproto/repo/importRepo.ts","./src/client/types/com/atproto/repo/listMissingBlobs.ts","./src/client/types/com/atproto/repo/listRecords.ts","./src/client/types/com/atproto/repo/putRecord.ts","./src/client/types/com/atproto/repo/strongRef.ts","./src/client/types/com/atproto/repo/uploadBlob.ts","./src/client/types/com/atproto/server/activateAccount.ts","./src/client/types/com/atproto/server/checkAccountStatus.ts","./src/client/types/com/atproto/server/confirmEmail.ts","./src/client/types/com/atproto/server/createAccount.ts","./src/client/types/com/atproto/server/createAppPassword.ts","./src/client/types/com/atproto/server/createInviteCode.ts","./src/client/types/com/atproto/server/createInviteCodes.ts","./src/client/types/com/atproto/server/createSession.ts","./src/client/types/com/atproto/server/deactivateAccount.ts","./src/client/types/com/atproto/server/defs.ts","./src/client/types/com/atproto/server/deleteAccount.ts","./src/client/types/com/atproto/server/deleteSession.ts","./src/client/types/com/atproto/server/describeServer.ts","./src/client/types/com/atproto/server/getAccountInviteCodes.ts","./src/client/types/com/atproto/server/getServiceAuth.ts","./src/client/types/com/atproto/server/getSession.ts","./src/client/types/com/atproto/server/listAppPasswords.ts","./src/client/types/com/atproto/server/refreshSession.ts","./src/client/types/com/atproto/server/requestAccountDelete.ts","./src/client/types/com/atproto/server/requestEmailConfirmation.ts","./src/client/types/com/atproto/server/requestEmailUpdate.ts","./src/client/types/com/atproto/server/requestPasswordReset.ts","./src/client/types/com/atproto/server/reserveSigningKey.ts","./src/client/types/com/atproto/server/resetPassword.ts","./src/client/types/com/atproto/server/revokeAppPassword.ts","./src/client/types/com/atproto/server/updateEmail.ts","./src/client/types/com/atproto/sync/getBlob.ts","./src/client/types/com/atproto/sync/getBlocks.ts","./src/client/types/com/atproto/sync/getCheckout.ts","./src/client/types/com/atproto/sync/getHead.ts","./src/client/types/com/atproto/sync/getLatestCommit.ts","./src/client/types/com/atproto/sync/getRecord.ts","./src/client/types/com/atproto/sync/getRepo.ts","./src/client/types/com/atproto/sync/getRepoStatus.ts","./src/client/types/com/atproto/sync/listBlobs.ts","./src/client/types/com/atproto/sync/listRepos.ts","./src/client/types/com/atproto/sync/listReposByCollection.ts","./src/client/types/com/atproto/sync/notifyOfUpdate.ts","./src/client/types/com/atproto/sync/requestCrawl.ts","./src/client/types/com/atproto/sync/subscribeRepos.ts","./src/client/types/com/atproto/temp/addReservedHandle.ts","./src/client/types/com/atproto/temp/checkSignupQueue.ts","./src/client/types/com/atproto/temp/fetchLabels.ts","./src/client/types/com/atproto/temp/requestPhoneVerification.ts","./src/client/types/tools/ozone/communication/createTemplate.ts","./src/client/types/tools/ozone/communication/defs.ts","./src/client/types/tools/ozone/communication/deleteTemplate.ts","./src/client/types/tools/ozone/communication/listTemplates.ts","./src/client/types/tools/ozone/communication/updateTemplate.ts","./src/client/types/tools/ozone/moderation/defs.ts","./src/client/types/tools/ozone/moderation/emitEvent.ts","./src/client/types/tools/ozone/moderation/getEvent.ts","./src/client/types/tools/ozone/moderation/getRecord.ts","./src/client/types/tools/ozone/moderation/getRecords.ts","./src/client/types/tools/ozone/moderation/getRepo.ts","./src/client/types/tools/ozone/moderation/getReporterStats.ts","./src/client/types/tools/ozone/moderation/getRepos.ts","./src/client/types/tools/ozone/moderation/queryEvents.ts","./src/client/types/tools/ozone/moderation/queryStatuses.ts","./src/client/types/tools/ozone/moderation/searchRepos.ts","./src/client/types/tools/ozone/server/getConfig.ts","./src/client/types/tools/ozone/set/addValues.ts","./src/client/types/tools/ozone/set/defs.ts","./src/client/types/tools/ozone/set/deleteSet.ts","./src/client/types/tools/ozone/set/deleteValues.ts","./src/client/types/tools/ozone/set/getValues.ts","./src/client/types/tools/ozone/set/querySets.ts","./src/client/types/tools/ozone/set/upsertSet.ts","./src/client/types/tools/ozone/setting/defs.ts","./src/client/types/tools/ozone/setting/listOptions.ts","./src/client/types/tools/ozone/setting/removeOptions.ts","./src/client/types/tools/ozone/setting/upsertOption.ts","./src/client/types/tools/ozone/signature/defs.ts","./src/client/types/tools/ozone/signature/findCorrelation.ts","./src/client/types/tools/ozone/signature/findRelatedAccounts.ts","./src/client/types/tools/ozone/signature/searchAccounts.ts","./src/client/types/tools/ozone/team/addMember.ts","./src/client/types/tools/ozone/team/defs.ts","./src/client/types/tools/ozone/team/deleteMember.ts","./src/client/types/tools/ozone/team/listMembers.ts","./src/client/types/tools/ozone/team/updateMember.ts","./src/moderation/decision.ts","./src/moderation/index.ts","./src/moderation/mutewords.ts","./src/moderation/types.ts","./src/moderation/ui.ts","./src/moderation/util.ts","./src/moderation/const/labels.ts","./src/moderation/subjects/account.ts","./src/moderation/subjects/feed-generator.ts","./src/moderation/subjects/notification.ts","./src/moderation/subjects/post.ts","./src/moderation/subjects/profile.ts","./src/moderation/subjects/user-list.ts","./src/rich-text/detection.ts","./src/rich-text/rich-text.ts","./src/rich-text/sanitization.ts","./src/rich-text/unicode.ts","./src/rich-text/util.ts"],"version":"5.6.3"}
|
|
1
|
+
{"root":["./src/agent.ts","./src/atp-agent.ts","./src/bsky-agent.ts","./src/const.ts","./src/index.ts","./src/mocker.ts","./src/predicate.ts","./src/session-manager.ts","./src/types.ts","./src/util.ts","./src/client/index.ts","./src/client/lexicons.ts","./src/client/util.ts","./src/client/types/app/bsky/actor/defs.ts","./src/client/types/app/bsky/actor/getPreferences.ts","./src/client/types/app/bsky/actor/getProfile.ts","./src/client/types/app/bsky/actor/getProfiles.ts","./src/client/types/app/bsky/actor/getSuggestions.ts","./src/client/types/app/bsky/actor/profile.ts","./src/client/types/app/bsky/actor/putPreferences.ts","./src/client/types/app/bsky/actor/searchActors.ts","./src/client/types/app/bsky/actor/searchActorsTypeahead.ts","./src/client/types/app/bsky/embed/defs.ts","./src/client/types/app/bsky/embed/external.ts","./src/client/types/app/bsky/embed/images.ts","./src/client/types/app/bsky/embed/record.ts","./src/client/types/app/bsky/embed/recordWithMedia.ts","./src/client/types/app/bsky/embed/video.ts","./src/client/types/app/bsky/feed/defs.ts","./src/client/types/app/bsky/feed/describeFeedGenerator.ts","./src/client/types/app/bsky/feed/generator.ts","./src/client/types/app/bsky/feed/getActorFeeds.ts","./src/client/types/app/bsky/feed/getActorLikes.ts","./src/client/types/app/bsky/feed/getAuthorFeed.ts","./src/client/types/app/bsky/feed/getFeed.ts","./src/client/types/app/bsky/feed/getFeedGenerator.ts","./src/client/types/app/bsky/feed/getFeedGenerators.ts","./src/client/types/app/bsky/feed/getFeedSkeleton.ts","./src/client/types/app/bsky/feed/getLikes.ts","./src/client/types/app/bsky/feed/getListFeed.ts","./src/client/types/app/bsky/feed/getPostThread.ts","./src/client/types/app/bsky/feed/getPosts.ts","./src/client/types/app/bsky/feed/getQuotes.ts","./src/client/types/app/bsky/feed/getRepostedBy.ts","./src/client/types/app/bsky/feed/getSuggestedFeeds.ts","./src/client/types/app/bsky/feed/getTimeline.ts","./src/client/types/app/bsky/feed/like.ts","./src/client/types/app/bsky/feed/post.ts","./src/client/types/app/bsky/feed/postgate.ts","./src/client/types/app/bsky/feed/repost.ts","./src/client/types/app/bsky/feed/searchPosts.ts","./src/client/types/app/bsky/feed/sendInteractions.ts","./src/client/types/app/bsky/feed/threadgate.ts","./src/client/types/app/bsky/graph/block.ts","./src/client/types/app/bsky/graph/defs.ts","./src/client/types/app/bsky/graph/follow.ts","./src/client/types/app/bsky/graph/getActorStarterPacks.ts","./src/client/types/app/bsky/graph/getBlocks.ts","./src/client/types/app/bsky/graph/getFollowers.ts","./src/client/types/app/bsky/graph/getFollows.ts","./src/client/types/app/bsky/graph/getKnownFollowers.ts","./src/client/types/app/bsky/graph/getList.ts","./src/client/types/app/bsky/graph/getListBlocks.ts","./src/client/types/app/bsky/graph/getListMutes.ts","./src/client/types/app/bsky/graph/getLists.ts","./src/client/types/app/bsky/graph/getMutes.ts","./src/client/types/app/bsky/graph/getRelationships.ts","./src/client/types/app/bsky/graph/getStarterPack.ts","./src/client/types/app/bsky/graph/getStarterPacks.ts","./src/client/types/app/bsky/graph/getSuggestedFollowsByActor.ts","./src/client/types/app/bsky/graph/list.ts","./src/client/types/app/bsky/graph/listblock.ts","./src/client/types/app/bsky/graph/listitem.ts","./src/client/types/app/bsky/graph/muteActor.ts","./src/client/types/app/bsky/graph/muteActorList.ts","./src/client/types/app/bsky/graph/muteThread.ts","./src/client/types/app/bsky/graph/searchStarterPacks.ts","./src/client/types/app/bsky/graph/starterpack.ts","./src/client/types/app/bsky/graph/unmuteActor.ts","./src/client/types/app/bsky/graph/unmuteActorList.ts","./src/client/types/app/bsky/graph/unmuteThread.ts","./src/client/types/app/bsky/labeler/defs.ts","./src/client/types/app/bsky/labeler/getServices.ts","./src/client/types/app/bsky/labeler/service.ts","./src/client/types/app/bsky/notification/getUnreadCount.ts","./src/client/types/app/bsky/notification/listNotifications.ts","./src/client/types/app/bsky/notification/putPreferences.ts","./src/client/types/app/bsky/notification/registerPush.ts","./src/client/types/app/bsky/notification/updateSeen.ts","./src/client/types/app/bsky/richtext/facet.ts","./src/client/types/app/bsky/unspecced/defs.ts","./src/client/types/app/bsky/unspecced/getConfig.ts","./src/client/types/app/bsky/unspecced/getPopularFeedGenerators.ts","./src/client/types/app/bsky/unspecced/getSuggestionsSkeleton.ts","./src/client/types/app/bsky/unspecced/getTaggedSuggestions.ts","./src/client/types/app/bsky/unspecced/getTrendingTopics.ts","./src/client/types/app/bsky/unspecced/searchActorsSkeleton.ts","./src/client/types/app/bsky/unspecced/searchPostsSkeleton.ts","./src/client/types/app/bsky/unspecced/searchStarterPacksSkeleton.ts","./src/client/types/app/bsky/video/defs.ts","./src/client/types/app/bsky/video/getJobStatus.ts","./src/client/types/app/bsky/video/getUploadLimits.ts","./src/client/types/app/bsky/video/uploadVideo.ts","./src/client/types/chat/bsky/actor/declaration.ts","./src/client/types/chat/bsky/actor/defs.ts","./src/client/types/chat/bsky/actor/deleteAccount.ts","./src/client/types/chat/bsky/actor/exportAccountData.ts","./src/client/types/chat/bsky/convo/acceptConvo.ts","./src/client/types/chat/bsky/convo/defs.ts","./src/client/types/chat/bsky/convo/deleteMessageForSelf.ts","./src/client/types/chat/bsky/convo/getConvo.ts","./src/client/types/chat/bsky/convo/getConvoAvailability.ts","./src/client/types/chat/bsky/convo/getConvoForMembers.ts","./src/client/types/chat/bsky/convo/getLog.ts","./src/client/types/chat/bsky/convo/getMessages.ts","./src/client/types/chat/bsky/convo/leaveConvo.ts","./src/client/types/chat/bsky/convo/listConvos.ts","./src/client/types/chat/bsky/convo/muteConvo.ts","./src/client/types/chat/bsky/convo/sendMessage.ts","./src/client/types/chat/bsky/convo/sendMessageBatch.ts","./src/client/types/chat/bsky/convo/unmuteConvo.ts","./src/client/types/chat/bsky/convo/updateAllRead.ts","./src/client/types/chat/bsky/convo/updateRead.ts","./src/client/types/chat/bsky/moderation/getActorMetadata.ts","./src/client/types/chat/bsky/moderation/getMessageContext.ts","./src/client/types/chat/bsky/moderation/updateActorAccess.ts","./src/client/types/com/atproto/admin/defs.ts","./src/client/types/com/atproto/admin/deleteAccount.ts","./src/client/types/com/atproto/admin/disableAccountInvites.ts","./src/client/types/com/atproto/admin/disableInviteCodes.ts","./src/client/types/com/atproto/admin/enableAccountInvites.ts","./src/client/types/com/atproto/admin/getAccountInfo.ts","./src/client/types/com/atproto/admin/getAccountInfos.ts","./src/client/types/com/atproto/admin/getInviteCodes.ts","./src/client/types/com/atproto/admin/getSubjectStatus.ts","./src/client/types/com/atproto/admin/searchAccounts.ts","./src/client/types/com/atproto/admin/sendEmail.ts","./src/client/types/com/atproto/admin/updateAccountEmail.ts","./src/client/types/com/atproto/admin/updateAccountHandle.ts","./src/client/types/com/atproto/admin/updateAccountPassword.ts","./src/client/types/com/atproto/admin/updateSubjectStatus.ts","./src/client/types/com/atproto/identity/getRecommendedDidCredentials.ts","./src/client/types/com/atproto/identity/requestPlcOperationSignature.ts","./src/client/types/com/atproto/identity/resolveHandle.ts","./src/client/types/com/atproto/identity/signPlcOperation.ts","./src/client/types/com/atproto/identity/submitPlcOperation.ts","./src/client/types/com/atproto/identity/updateHandle.ts","./src/client/types/com/atproto/label/defs.ts","./src/client/types/com/atproto/label/queryLabels.ts","./src/client/types/com/atproto/label/subscribeLabels.ts","./src/client/types/com/atproto/lexicon/schema.ts","./src/client/types/com/atproto/moderation/createReport.ts","./src/client/types/com/atproto/moderation/defs.ts","./src/client/types/com/atproto/repo/applyWrites.ts","./src/client/types/com/atproto/repo/createRecord.ts","./src/client/types/com/atproto/repo/defs.ts","./src/client/types/com/atproto/repo/deleteRecord.ts","./src/client/types/com/atproto/repo/describeRepo.ts","./src/client/types/com/atproto/repo/getRecord.ts","./src/client/types/com/atproto/repo/importRepo.ts","./src/client/types/com/atproto/repo/listMissingBlobs.ts","./src/client/types/com/atproto/repo/listRecords.ts","./src/client/types/com/atproto/repo/putRecord.ts","./src/client/types/com/atproto/repo/strongRef.ts","./src/client/types/com/atproto/repo/uploadBlob.ts","./src/client/types/com/atproto/server/activateAccount.ts","./src/client/types/com/atproto/server/checkAccountStatus.ts","./src/client/types/com/atproto/server/confirmEmail.ts","./src/client/types/com/atproto/server/createAccount.ts","./src/client/types/com/atproto/server/createAppPassword.ts","./src/client/types/com/atproto/server/createInviteCode.ts","./src/client/types/com/atproto/server/createInviteCodes.ts","./src/client/types/com/atproto/server/createSession.ts","./src/client/types/com/atproto/server/deactivateAccount.ts","./src/client/types/com/atproto/server/defs.ts","./src/client/types/com/atproto/server/deleteAccount.ts","./src/client/types/com/atproto/server/deleteSession.ts","./src/client/types/com/atproto/server/describeServer.ts","./src/client/types/com/atproto/server/getAccountInviteCodes.ts","./src/client/types/com/atproto/server/getServiceAuth.ts","./src/client/types/com/atproto/server/getSession.ts","./src/client/types/com/atproto/server/listAppPasswords.ts","./src/client/types/com/atproto/server/refreshSession.ts","./src/client/types/com/atproto/server/requestAccountDelete.ts","./src/client/types/com/atproto/server/requestEmailConfirmation.ts","./src/client/types/com/atproto/server/requestEmailUpdate.ts","./src/client/types/com/atproto/server/requestPasswordReset.ts","./src/client/types/com/atproto/server/reserveSigningKey.ts","./src/client/types/com/atproto/server/resetPassword.ts","./src/client/types/com/atproto/server/revokeAppPassword.ts","./src/client/types/com/atproto/server/updateEmail.ts","./src/client/types/com/atproto/sync/getBlob.ts","./src/client/types/com/atproto/sync/getBlocks.ts","./src/client/types/com/atproto/sync/getCheckout.ts","./src/client/types/com/atproto/sync/getHead.ts","./src/client/types/com/atproto/sync/getLatestCommit.ts","./src/client/types/com/atproto/sync/getRecord.ts","./src/client/types/com/atproto/sync/getRepo.ts","./src/client/types/com/atproto/sync/getRepoStatus.ts","./src/client/types/com/atproto/sync/listBlobs.ts","./src/client/types/com/atproto/sync/listRepos.ts","./src/client/types/com/atproto/sync/listReposByCollection.ts","./src/client/types/com/atproto/sync/notifyOfUpdate.ts","./src/client/types/com/atproto/sync/requestCrawl.ts","./src/client/types/com/atproto/sync/subscribeRepos.ts","./src/client/types/com/atproto/temp/addReservedHandle.ts","./src/client/types/com/atproto/temp/checkSignupQueue.ts","./src/client/types/com/atproto/temp/fetchLabels.ts","./src/client/types/com/atproto/temp/requestPhoneVerification.ts","./src/client/types/tools/ozone/communication/createTemplate.ts","./src/client/types/tools/ozone/communication/defs.ts","./src/client/types/tools/ozone/communication/deleteTemplate.ts","./src/client/types/tools/ozone/communication/listTemplates.ts","./src/client/types/tools/ozone/communication/updateTemplate.ts","./src/client/types/tools/ozone/moderation/defs.ts","./src/client/types/tools/ozone/moderation/emitEvent.ts","./src/client/types/tools/ozone/moderation/getEvent.ts","./src/client/types/tools/ozone/moderation/getRecord.ts","./src/client/types/tools/ozone/moderation/getRecords.ts","./src/client/types/tools/ozone/moderation/getRepo.ts","./src/client/types/tools/ozone/moderation/getReporterStats.ts","./src/client/types/tools/ozone/moderation/getRepos.ts","./src/client/types/tools/ozone/moderation/queryEvents.ts","./src/client/types/tools/ozone/moderation/queryStatuses.ts","./src/client/types/tools/ozone/moderation/searchRepos.ts","./src/client/types/tools/ozone/server/getConfig.ts","./src/client/types/tools/ozone/set/addValues.ts","./src/client/types/tools/ozone/set/defs.ts","./src/client/types/tools/ozone/set/deleteSet.ts","./src/client/types/tools/ozone/set/deleteValues.ts","./src/client/types/tools/ozone/set/getValues.ts","./src/client/types/tools/ozone/set/querySets.ts","./src/client/types/tools/ozone/set/upsertSet.ts","./src/client/types/tools/ozone/setting/defs.ts","./src/client/types/tools/ozone/setting/listOptions.ts","./src/client/types/tools/ozone/setting/removeOptions.ts","./src/client/types/tools/ozone/setting/upsertOption.ts","./src/client/types/tools/ozone/signature/defs.ts","./src/client/types/tools/ozone/signature/findCorrelation.ts","./src/client/types/tools/ozone/signature/findRelatedAccounts.ts","./src/client/types/tools/ozone/signature/searchAccounts.ts","./src/client/types/tools/ozone/team/addMember.ts","./src/client/types/tools/ozone/team/defs.ts","./src/client/types/tools/ozone/team/deleteMember.ts","./src/client/types/tools/ozone/team/listMembers.ts","./src/client/types/tools/ozone/team/updateMember.ts","./src/moderation/decision.ts","./src/moderation/index.ts","./src/moderation/mutewords.ts","./src/moderation/types.ts","./src/moderation/ui.ts","./src/moderation/util.ts","./src/moderation/const/labels.ts","./src/moderation/subjects/account.ts","./src/moderation/subjects/feed-generator.ts","./src/moderation/subjects/notification.ts","./src/moderation/subjects/post.ts","./src/moderation/subjects/profile.ts","./src/moderation/subjects/user-list.ts","./src/rich-text/detection.ts","./src/rich-text/rich-text.ts","./src/rich-text/sanitization.ts","./src/rich-text/unicode.ts","./src/rich-text/util.ts"],"version":"5.6.3"}
|