@atproto/api 0.14.22 → 0.15.1
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 +14 -0
- package/dist/agent.js +17 -7
- package/dist/agent.js.map +1 -1
- package/dist/client/index.d.ts +56 -32
- package/dist/client/index.d.ts.map +1 -1
- package/dist/client/index.js +111 -59
- package/dist/client/index.js.map +1 -1
- package/dist/client/lexicons.d.ts +206 -0
- package/dist/client/lexicons.d.ts.map +1 -1
- package/dist/client/lexicons.js +104 -0
- package/dist/client/lexicons.js.map +1 -1
- package/dist/client/types/app/bsky/actor/defs.d.ts +29 -0
- package/dist/client/types/app/bsky/actor/defs.d.ts.map +1 -1
- package/dist/client/types/app/bsky/actor/defs.js +18 -0
- package/dist/client/types/app/bsky/actor/defs.js.map +1 -1
- package/dist/client/types/app/bsky/graph/verification.d.ts +19 -0
- package/dist/client/types/app/bsky/graph/verification.d.ts.map +1 -0
- package/dist/client/types/app/bsky/graph/verification.js +16 -0
- package/dist/client/types/app/bsky/graph/verification.js.map +1 -0
- package/dist/client/types/chat/bsky/actor/defs.d.ts +1 -0
- package/dist/client/types/chat/bsky/actor/defs.d.ts.map +1 -1
- package/dist/client/types/chat/bsky/actor/defs.js.map +1 -1
- package/dist/client/util.d.ts.map +1 -1
- package/dist/util.d.ts.map +1 -1
- package/package.json +2 -2
- package/src/client/index.ts +117 -48
- package/src/client/lexicons.ts +110 -0
- package/src/client/types/app/bsky/actor/defs.ts +47 -0
- package/src/client/types/app/bsky/graph/verification.ts +38 -0
- package/src/client/types/chat/bsky/actor/defs.ts +1 -0
- package/tsconfig.build.tsbuildinfo +1 -1
- package/tsconfig.tests.tsbuildinfo +1 -1
package/src/client/lexicons.ts
CHANGED
|
@@ -4564,6 +4564,10 @@ export const schemaDict = {
|
|
|
4564
4564
|
type: 'string',
|
|
4565
4565
|
format: 'datetime',
|
|
4566
4566
|
},
|
|
4567
|
+
verification: {
|
|
4568
|
+
type: 'ref',
|
|
4569
|
+
ref: 'lex:app.bsky.actor.defs#verificationState',
|
|
4570
|
+
},
|
|
4567
4571
|
},
|
|
4568
4572
|
},
|
|
4569
4573
|
profileView: {
|
|
@@ -4615,6 +4619,10 @@ export const schemaDict = {
|
|
|
4615
4619
|
ref: 'lex:com.atproto.label.defs#label',
|
|
4616
4620
|
},
|
|
4617
4621
|
},
|
|
4622
|
+
verification: {
|
|
4623
|
+
type: 'ref',
|
|
4624
|
+
ref: 'lex:app.bsky.actor.defs#verificationState',
|
|
4625
|
+
},
|
|
4618
4626
|
},
|
|
4619
4627
|
},
|
|
4620
4628
|
profileViewDetailed: {
|
|
@@ -4687,6 +4695,10 @@ export const schemaDict = {
|
|
|
4687
4695
|
type: 'ref',
|
|
4688
4696
|
ref: 'lex:com.atproto.repo.strongRef',
|
|
4689
4697
|
},
|
|
4698
|
+
verification: {
|
|
4699
|
+
type: 'ref',
|
|
4700
|
+
ref: 'lex:app.bsky.actor.defs#verificationState',
|
|
4701
|
+
},
|
|
4690
4702
|
},
|
|
4691
4703
|
},
|
|
4692
4704
|
profileAssociated: {
|
|
@@ -4776,6 +4788,60 @@ export const schemaDict = {
|
|
|
4776
4788
|
},
|
|
4777
4789
|
},
|
|
4778
4790
|
},
|
|
4791
|
+
verificationState: {
|
|
4792
|
+
type: 'object',
|
|
4793
|
+
description:
|
|
4794
|
+
'Represents the verification information about the user this object is attached to.',
|
|
4795
|
+
required: ['verifications', 'verifiedStatus', 'trustedVerifierStatus'],
|
|
4796
|
+
properties: {
|
|
4797
|
+
verifications: {
|
|
4798
|
+
type: 'array',
|
|
4799
|
+
description:
|
|
4800
|
+
'All verifications issued by trusted verifiers on behalf of this user. Verifications by untrusted verifiers are not included.',
|
|
4801
|
+
items: {
|
|
4802
|
+
type: 'ref',
|
|
4803
|
+
ref: 'lex:app.bsky.actor.defs#verificationView',
|
|
4804
|
+
},
|
|
4805
|
+
},
|
|
4806
|
+
verifiedStatus: {
|
|
4807
|
+
type: 'string',
|
|
4808
|
+
description: "The user's status as a verified account.",
|
|
4809
|
+
knownValues: ['valid', 'invalid', 'none'],
|
|
4810
|
+
},
|
|
4811
|
+
trustedVerifierStatus: {
|
|
4812
|
+
type: 'string',
|
|
4813
|
+
description: "The user's status as a trusted verifier.",
|
|
4814
|
+
knownValues: ['valid', 'invalid', 'none'],
|
|
4815
|
+
},
|
|
4816
|
+
},
|
|
4817
|
+
},
|
|
4818
|
+
verificationView: {
|
|
4819
|
+
type: 'object',
|
|
4820
|
+
description: 'An individual verification for an associated subject.',
|
|
4821
|
+
required: ['issuer', 'uri', 'isValid', 'createdAt'],
|
|
4822
|
+
properties: {
|
|
4823
|
+
issuer: {
|
|
4824
|
+
type: 'string',
|
|
4825
|
+
description: 'The user who issued this verification.',
|
|
4826
|
+
format: 'did',
|
|
4827
|
+
},
|
|
4828
|
+
uri: {
|
|
4829
|
+
type: 'string',
|
|
4830
|
+
description: 'The AT-URI of the verification record.',
|
|
4831
|
+
format: 'at-uri',
|
|
4832
|
+
},
|
|
4833
|
+
isValid: {
|
|
4834
|
+
type: 'boolean',
|
|
4835
|
+
description:
|
|
4836
|
+
'True if the verification passes validation, otherwise false.',
|
|
4837
|
+
},
|
|
4838
|
+
createdAt: {
|
|
4839
|
+
type: 'string',
|
|
4840
|
+
description: 'Timestamp when the verification was created.',
|
|
4841
|
+
format: 'datetime',
|
|
4842
|
+
},
|
|
4843
|
+
},
|
|
4844
|
+
},
|
|
4779
4845
|
preferences: {
|
|
4780
4846
|
type: 'array',
|
|
4781
4847
|
items: {
|
|
@@ -9241,6 +9307,45 @@ export const schemaDict = {
|
|
|
9241
9307
|
},
|
|
9242
9308
|
},
|
|
9243
9309
|
},
|
|
9310
|
+
AppBskyGraphVerification: {
|
|
9311
|
+
lexicon: 1,
|
|
9312
|
+
id: 'app.bsky.graph.verification',
|
|
9313
|
+
defs: {
|
|
9314
|
+
main: {
|
|
9315
|
+
type: 'record',
|
|
9316
|
+
description:
|
|
9317
|
+
'Record declaring a verification relationship between two accounts. Verifications are only considered valid by an app if issued by an account the app considers trusted.',
|
|
9318
|
+
key: 'tid',
|
|
9319
|
+
record: {
|
|
9320
|
+
type: 'object',
|
|
9321
|
+
required: ['subject', 'handle', 'displayName', 'createdAt'],
|
|
9322
|
+
properties: {
|
|
9323
|
+
subject: {
|
|
9324
|
+
description: 'DID of the subject the verification applies to.',
|
|
9325
|
+
type: 'string',
|
|
9326
|
+
format: 'did',
|
|
9327
|
+
},
|
|
9328
|
+
handle: {
|
|
9329
|
+
description:
|
|
9330
|
+
'Handle of the subject the verification applies to at the moment of verifying, which might not be the same at the time of viewing. The verification is only valid if the current handle matches the one at the time of verifying.',
|
|
9331
|
+
type: 'string',
|
|
9332
|
+
format: 'handle',
|
|
9333
|
+
},
|
|
9334
|
+
displayName: {
|
|
9335
|
+
description:
|
|
9336
|
+
'Display name of the subject the verification applies to at the moment of verifying, which might not be the same at the time of viewing. The verification is only valid if the current displayName matches the one at the time of verifying.',
|
|
9337
|
+
type: 'string',
|
|
9338
|
+
},
|
|
9339
|
+
createdAt: {
|
|
9340
|
+
description: 'Date of when the verification was created.',
|
|
9341
|
+
type: 'string',
|
|
9342
|
+
format: 'datetime',
|
|
9343
|
+
},
|
|
9344
|
+
},
|
|
9345
|
+
},
|
|
9346
|
+
},
|
|
9347
|
+
},
|
|
9348
|
+
},
|
|
9244
9349
|
AppBskyLabelerDefs: {
|
|
9245
9350
|
lexicon: 1,
|
|
9246
9351
|
id: 'app.bsky.labeler.defs',
|
|
@@ -10975,6 +11080,10 @@ export const schemaDict = {
|
|
|
10975
11080
|
description:
|
|
10976
11081
|
'Set to true when the actor cannot actively participate in converations',
|
|
10977
11082
|
},
|
|
11083
|
+
verification: {
|
|
11084
|
+
type: 'ref',
|
|
11085
|
+
ref: 'lex:app.bsky.actor.defs#verificationState',
|
|
11086
|
+
},
|
|
10978
11087
|
},
|
|
10979
11088
|
},
|
|
10980
11089
|
},
|
|
@@ -15542,6 +15651,7 @@ export const ids = {
|
|
|
15542
15651
|
AppBskyGraphUnmuteActor: 'app.bsky.graph.unmuteActor',
|
|
15543
15652
|
AppBskyGraphUnmuteActorList: 'app.bsky.graph.unmuteActorList',
|
|
15544
15653
|
AppBskyGraphUnmuteThread: 'app.bsky.graph.unmuteThread',
|
|
15654
|
+
AppBskyGraphVerification: 'app.bsky.graph.verification',
|
|
15545
15655
|
AppBskyLabelerDefs: 'app.bsky.labeler.defs',
|
|
15546
15656
|
AppBskyLabelerGetServices: 'app.bsky.labeler.getServices',
|
|
15547
15657
|
AppBskyLabelerService: 'app.bsky.labeler.service',
|
|
@@ -29,6 +29,7 @@ export interface ProfileViewBasic {
|
|
|
29
29
|
viewer?: ViewerState
|
|
30
30
|
labels?: ComAtprotoLabelDefs.Label[]
|
|
31
31
|
createdAt?: string
|
|
32
|
+
verification?: VerificationState
|
|
32
33
|
}
|
|
33
34
|
|
|
34
35
|
const hashProfileViewBasic = 'profileViewBasic'
|
|
@@ -53,6 +54,7 @@ export interface ProfileView {
|
|
|
53
54
|
createdAt?: string
|
|
54
55
|
viewer?: ViewerState
|
|
55
56
|
labels?: ComAtprotoLabelDefs.Label[]
|
|
57
|
+
verification?: VerificationState
|
|
56
58
|
}
|
|
57
59
|
|
|
58
60
|
const hashProfileView = 'profileView'
|
|
@@ -83,6 +85,7 @@ export interface ProfileViewDetailed {
|
|
|
83
85
|
viewer?: ViewerState
|
|
84
86
|
labels?: ComAtprotoLabelDefs.Label[]
|
|
85
87
|
pinnedPost?: ComAtprotoRepoStrongRef.Main
|
|
88
|
+
verification?: VerificationState
|
|
86
89
|
}
|
|
87
90
|
|
|
88
91
|
const hashProfileViewDetailed = 'profileViewDetailed'
|
|
@@ -169,6 +172,50 @@ export function validateKnownFollowers<V>(v: V) {
|
|
|
169
172
|
return validate<KnownFollowers & V>(v, id, hashKnownFollowers)
|
|
170
173
|
}
|
|
171
174
|
|
|
175
|
+
/** Represents the verification information about the user this object is attached to. */
|
|
176
|
+
export interface VerificationState {
|
|
177
|
+
$type?: 'app.bsky.actor.defs#verificationState'
|
|
178
|
+
/** All verifications issued by trusted verifiers on behalf of this user. Verifications by untrusted verifiers are not included. */
|
|
179
|
+
verifications: VerificationView[]
|
|
180
|
+
/** The user's status as a verified account. */
|
|
181
|
+
verifiedStatus: 'valid' | 'invalid' | 'none' | (string & {})
|
|
182
|
+
/** The user's status as a trusted verifier. */
|
|
183
|
+
trustedVerifierStatus: 'valid' | 'invalid' | 'none' | (string & {})
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
const hashVerificationState = 'verificationState'
|
|
187
|
+
|
|
188
|
+
export function isVerificationState<V>(v: V) {
|
|
189
|
+
return is$typed(v, id, hashVerificationState)
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
export function validateVerificationState<V>(v: V) {
|
|
193
|
+
return validate<VerificationState & V>(v, id, hashVerificationState)
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
/** An individual verification for an associated subject. */
|
|
197
|
+
export interface VerificationView {
|
|
198
|
+
$type?: 'app.bsky.actor.defs#verificationView'
|
|
199
|
+
/** The user who issued this verification. */
|
|
200
|
+
issuer: string
|
|
201
|
+
/** The AT-URI of the verification record. */
|
|
202
|
+
uri: string
|
|
203
|
+
/** True if the verification passes validation, otherwise false. */
|
|
204
|
+
isValid: boolean
|
|
205
|
+
/** Timestamp when the verification was created. */
|
|
206
|
+
createdAt: string
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
const hashVerificationView = 'verificationView'
|
|
210
|
+
|
|
211
|
+
export function isVerificationView<V>(v: V) {
|
|
212
|
+
return is$typed(v, id, hashVerificationView)
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
export function validateVerificationView<V>(v: V) {
|
|
216
|
+
return validate<VerificationView & V>(v, id, hashVerificationView)
|
|
217
|
+
}
|
|
218
|
+
|
|
172
219
|
export type Preferences = (
|
|
173
220
|
| $Typed<AdultContentPref>
|
|
174
221
|
| $Typed<ContentLabelPref>
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* GENERATED CODE - DO NOT MODIFY
|
|
3
|
+
*/
|
|
4
|
+
import { type ValidationResult, BlobRef } from '@atproto/lexicon'
|
|
5
|
+
import { CID } from 'multiformats/cid'
|
|
6
|
+
import { validate as _validate } from '../../../../lexicons'
|
|
7
|
+
import {
|
|
8
|
+
type $Typed,
|
|
9
|
+
is$typed as _is$typed,
|
|
10
|
+
type OmitKey,
|
|
11
|
+
} from '../../../../util'
|
|
12
|
+
|
|
13
|
+
const is$typed = _is$typed,
|
|
14
|
+
validate = _validate
|
|
15
|
+
const id = 'app.bsky.graph.verification'
|
|
16
|
+
|
|
17
|
+
export interface Record {
|
|
18
|
+
$type: 'app.bsky.graph.verification'
|
|
19
|
+
/** DID of the subject the verification applies to. */
|
|
20
|
+
subject: string
|
|
21
|
+
/** Handle of the subject the verification applies to at the moment of verifying, which might not be the same at the time of viewing. The verification is only valid if the current handle matches the one at the time of verifying. */
|
|
22
|
+
handle: string
|
|
23
|
+
/** Display name of the subject the verification applies to at the moment of verifying, which might not be the same at the time of viewing. The verification is only valid if the current displayName matches the one at the time of verifying. */
|
|
24
|
+
displayName: string
|
|
25
|
+
/** Date of when the verification was created. */
|
|
26
|
+
createdAt: string
|
|
27
|
+
[k: string]: unknown
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
const hashRecord = 'main'
|
|
31
|
+
|
|
32
|
+
export function isRecord<V>(v: V) {
|
|
33
|
+
return is$typed(v, id, hashRecord)
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
export function validateRecord<V>(v: V) {
|
|
37
|
+
return validate<Record & V>(v, id, hashRecord, true)
|
|
38
|
+
}
|
|
@@ -27,6 +27,7 @@ export interface ProfileViewBasic {
|
|
|
27
27
|
labels?: ComAtprotoLabelDefs.Label[]
|
|
28
28
|
/** Set to true when the actor cannot actively participate in converations */
|
|
29
29
|
chatDisabled?: boolean
|
|
30
|
+
verification?: AppBskyActorDefs.VerificationState
|
|
30
31
|
}
|
|
31
32
|
|
|
32
33
|
const hashProfileViewBasic = 'profileViewBasic'
|
|
@@ -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/getSuggestedFeeds.ts","./src/client/types/app/bsky/unspecced/getSuggestedFeedsSkeleton.ts","./src/client/types/app/bsky/unspecced/getSuggestedStarterPacks.ts","./src/client/types/app/bsky/unspecced/getSuggestedStarterPacksSkeleton.ts","./src/client/types/app/bsky/unspecced/getSuggestedUsers.ts","./src/client/types/app/bsky/unspecced/getSuggestedUsersSkeleton.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/getTrends.ts","./src/client/types/app/bsky/unspecced/getTrendsSkeleton.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/addReaction.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/removeReaction.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/updateAccountSigningKey.ts","./src/client/types/com/atproto/admin/updateSubjectStatus.ts","./src/client/types/com/atproto/identity/defs.ts","./src/client/types/com/atproto/identity/getRecommendedDidCredentials.ts","./src/client/types/com/atproto/identity/refreshIdentity.ts","./src/client/types/com/atproto/identity/requestPlcOperationSignature.ts","./src/client/types/com/atproto/identity/resolveDid.ts","./src/client/types/com/atproto/identity/resolveHandle.ts","./src/client/types/com/atproto/identity/resolveIdentity.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/defs.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/getHostStatus.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/listHosts.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/getSubjects.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/graph/verification.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/getSuggestedFeeds.ts","./src/client/types/app/bsky/unspecced/getSuggestedFeedsSkeleton.ts","./src/client/types/app/bsky/unspecced/getSuggestedStarterPacks.ts","./src/client/types/app/bsky/unspecced/getSuggestedStarterPacksSkeleton.ts","./src/client/types/app/bsky/unspecced/getSuggestedUsers.ts","./src/client/types/app/bsky/unspecced/getSuggestedUsersSkeleton.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/getTrends.ts","./src/client/types/app/bsky/unspecced/getTrendsSkeleton.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/addReaction.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/removeReaction.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/updateAccountSigningKey.ts","./src/client/types/com/atproto/admin/updateSubjectStatus.ts","./src/client/types/com/atproto/identity/defs.ts","./src/client/types/com/atproto/identity/getRecommendedDidCredentials.ts","./src/client/types/com/atproto/identity/refreshIdentity.ts","./src/client/types/com/atproto/identity/requestPlcOperationSignature.ts","./src/client/types/com/atproto/identity/resolveDid.ts","./src/client/types/com/atproto/identity/resolveHandle.ts","./src/client/types/com/atproto/identity/resolveIdentity.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/defs.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/getHostStatus.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/listHosts.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/getSubjects.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.8.2"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"root":["./tests/atp-agent.test.ts","./tests/dispatcher.test.ts","./tests/errors.test.ts","./tests/moderation-behaviors.test.ts","./tests/moderation-custom-labels.test.ts","./tests/moderation-mutewords.test.ts","./tests/moderation-prefs.test.ts","./tests/moderation-quoteposts.test.ts","./tests/moderation.test.ts","./tests/rich-text-detection.test.ts","./tests/rich-text-sanitization.test.ts","./tests/rich-text.test.ts","./tests/util/echo-server.ts","./tests/util/moderation-behavior.ts"],"version":"5.
|
|
1
|
+
{"root":["./tests/atp-agent.test.ts","./tests/dispatcher.test.ts","./tests/errors.test.ts","./tests/moderation-behaviors.test.ts","./tests/moderation-custom-labels.test.ts","./tests/moderation-mutewords.test.ts","./tests/moderation-prefs.test.ts","./tests/moderation-quoteposts.test.ts","./tests/moderation.test.ts","./tests/rich-text-detection.test.ts","./tests/rich-text-sanitization.test.ts","./tests/rich-text.test.ts","./tests/util/echo-server.ts","./tests/util/moderation-behavior.ts"],"version":"5.8.2"}
|