@atproto/pds 0.4.67 → 0.4.69
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +14 -0
- package/dist/lexicon/index.d.ts +2 -0
- package/dist/lexicon/index.d.ts.map +1 -1
- package/dist/lexicon/index.js +4 -0
- package/dist/lexicon/index.js.map +1 -1
- package/dist/lexicon/lexicons.d.ts +84 -0
- package/dist/lexicon/lexicons.d.ts.map +1 -1
- package/dist/lexicon/lexicons.js +86 -2
- package/dist/lexicon/lexicons.js.map +1 -1
- package/dist/lexicon/types/app/bsky/unspecced/getConfig.d.ts +34 -0
- package/dist/lexicon/types/app/bsky/unspecced/getConfig.d.ts.map +1 -0
- package/dist/lexicon/types/app/bsky/unspecced/getConfig.js +3 -0
- package/dist/lexicon/types/app/bsky/unspecced/getConfig.js.map +1 -0
- package/dist/lexicon/types/com/atproto/admin/defs.d.ts +8 -0
- package/dist/lexicon/types/com/atproto/admin/defs.d.ts.map +1 -1
- package/dist/lexicon/types/com/atproto/admin/defs.js +10 -0
- package/dist/lexicon/types/com/atproto/admin/defs.js.map +1 -1
- package/dist/lexicon/types/tools/ozone/moderation/defs.d.ts +2 -0
- package/dist/lexicon/types/tools/ozone/moderation/defs.d.ts.map +1 -1
- package/dist/lexicon/types/tools/ozone/moderation/defs.js.map +1 -1
- package/dist/lexicon/types/tools/ozone/moderation/queryEvents.d.ts +5 -1
- package/dist/lexicon/types/tools/ozone/moderation/queryEvents.d.ts.map +1 -1
- package/dist/lexicon/types/tools/ozone/moderation/queryStatuses.d.ts +5 -1
- package/dist/lexicon/types/tools/ozone/moderation/queryStatuses.d.ts.map +1 -1
- package/package.json +7 -7
- package/src/lexicon/index.ts +12 -0
- package/src/lexicon/lexicons.ts +90 -2
- package/src/lexicon/types/app/bsky/unspecced/getConfig.ts +43 -0
- package/src/lexicon/types/com/atproto/admin/defs.ts +19 -0
- package/src/lexicon/types/tools/ozone/moderation/defs.ts +2 -0
- package/src/lexicon/types/tools/ozone/moderation/queryEvents.ts +5 -1
- package/src/lexicon/types/tools/ozone/moderation/queryStatuses.ts +5 -1
- package/tsconfig.build.tsbuildinfo +1 -1
package/dist/lexicon/lexicons.js
CHANGED
@@ -72,6 +72,13 @@ exports.schemaDict = {
|
|
72
72
|
type: 'string',
|
73
73
|
format: 'datetime',
|
74
74
|
},
|
75
|
+
threatSignatures: {
|
76
|
+
type: 'array',
|
77
|
+
items: {
|
78
|
+
type: 'ref',
|
79
|
+
ref: 'lex:com.atproto.admin.defs#threatSignature',
|
80
|
+
},
|
81
|
+
},
|
75
82
|
},
|
76
83
|
},
|
77
84
|
repoRef: {
|
@@ -102,6 +109,18 @@ exports.schemaDict = {
|
|
102
109
|
},
|
103
110
|
},
|
104
111
|
},
|
112
|
+
threatSignature: {
|
113
|
+
type: 'object',
|
114
|
+
required: ['property', 'value'],
|
115
|
+
properties: {
|
116
|
+
property: {
|
117
|
+
type: 'string',
|
118
|
+
},
|
119
|
+
value: {
|
120
|
+
type: 'string',
|
121
|
+
},
|
122
|
+
},
|
123
|
+
},
|
105
124
|
},
|
106
125
|
},
|
107
126
|
ComAtprotoAdminDeleteAccount: {
|
@@ -8867,6 +8886,28 @@ exports.schemaDict = {
|
|
8867
8886
|
},
|
8868
8887
|
},
|
8869
8888
|
},
|
8889
|
+
AppBskyUnspeccedGetConfig: {
|
8890
|
+
lexicon: 1,
|
8891
|
+
id: 'app.bsky.unspecced.getConfig',
|
8892
|
+
defs: {
|
8893
|
+
main: {
|
8894
|
+
type: 'query',
|
8895
|
+
description: 'Get miscellaneous runtime configuration.',
|
8896
|
+
output: {
|
8897
|
+
encoding: 'application/json',
|
8898
|
+
schema: {
|
8899
|
+
type: 'object',
|
8900
|
+
required: [],
|
8901
|
+
properties: {
|
8902
|
+
checkEmailConfirmed: {
|
8903
|
+
type: 'boolean',
|
8904
|
+
},
|
8905
|
+
},
|
8906
|
+
},
|
8907
|
+
},
|
8908
|
+
},
|
8909
|
+
},
|
8910
|
+
},
|
8870
8911
|
AppBskyUnspeccedGetPopularFeedGenerators: {
|
8871
8912
|
lexicon: 1,
|
8872
8913
|
id: 'app.bsky.unspecced.getPopularFeedGenerators',
|
@@ -10942,6 +10983,13 @@ exports.schemaDict = {
|
|
10942
10983
|
type: 'string',
|
10943
10984
|
format: 'datetime',
|
10944
10985
|
},
|
10986
|
+
threatSignatures: {
|
10987
|
+
type: 'array',
|
10988
|
+
items: {
|
10989
|
+
type: 'ref',
|
10990
|
+
ref: 'lex:com.atproto.admin.defs#threatSignature',
|
10991
|
+
},
|
10992
|
+
},
|
10945
10993
|
},
|
10946
10994
|
},
|
10947
10995
|
repoViewDetail: {
|
@@ -11011,6 +11059,13 @@ exports.schemaDict = {
|
|
11011
11059
|
type: 'string',
|
11012
11060
|
format: 'datetime',
|
11013
11061
|
},
|
11062
|
+
threatSignatures: {
|
11063
|
+
type: 'array',
|
11064
|
+
items: {
|
11065
|
+
type: 'ref',
|
11066
|
+
ref: 'lex:com.atproto.admin.defs#threatSignature',
|
11067
|
+
},
|
11068
|
+
},
|
11014
11069
|
},
|
11015
11070
|
},
|
11016
11071
|
repoViewNotFound: {
|
@@ -11495,10 +11550,24 @@ exports.schemaDict = {
|
|
11495
11550
|
type: 'string',
|
11496
11551
|
format: 'uri',
|
11497
11552
|
},
|
11553
|
+
collections: {
|
11554
|
+
type: 'array',
|
11555
|
+
maxLength: 20,
|
11556
|
+
description: "If specified, only events where the subject belongs to the given collections will be returned. When subjectType is set to 'account', this will be ignored.",
|
11557
|
+
items: {
|
11558
|
+
type: 'string',
|
11559
|
+
format: 'nsid',
|
11560
|
+
},
|
11561
|
+
},
|
11562
|
+
subjectType: {
|
11563
|
+
type: 'string',
|
11564
|
+
description: "If specified, only events where the subject is of the given type (account or record) will be returned. When this is set to 'account' the 'collections' parameter will be ignored. When includeAllUserRecords or subject is set, this will be ignored.",
|
11565
|
+
knownValues: ['account', 'record'],
|
11566
|
+
},
|
11498
11567
|
includeAllUserRecords: {
|
11499
11568
|
type: 'boolean',
|
11500
11569
|
default: false,
|
11501
|
-
description:
|
11570
|
+
description: "If true, events on all record types (posts, lists, profile etc.) or records from given 'collections' param, owned by the did are returned.",
|
11502
11571
|
},
|
11503
11572
|
limit: {
|
11504
11573
|
type: 'integer',
|
@@ -11587,7 +11656,7 @@ exports.schemaDict = {
|
|
11587
11656
|
properties: {
|
11588
11657
|
includeAllUserRecords: {
|
11589
11658
|
type: 'boolean',
|
11590
|
-
description: "All subjects belonging to the account specified in the 'subject' param will be returned.",
|
11659
|
+
description: "All subjects, or subjects from given 'collections' param, belonging to the account specified in the 'subject' param will be returned.",
|
11591
11660
|
},
|
11592
11661
|
subject: {
|
11593
11662
|
type: 'string',
|
@@ -11681,6 +11750,20 @@ exports.schemaDict = {
|
|
11681
11750
|
cursor: {
|
11682
11751
|
type: 'string',
|
11683
11752
|
},
|
11753
|
+
collections: {
|
11754
|
+
type: 'array',
|
11755
|
+
maxLength: 20,
|
11756
|
+
description: "If specified, subjects belonging to the given collections will be returned. When subjectType is set to 'account', this will be ignored.",
|
11757
|
+
items: {
|
11758
|
+
type: 'string',
|
11759
|
+
format: 'nsid',
|
11760
|
+
},
|
11761
|
+
},
|
11762
|
+
subjectType: {
|
11763
|
+
type: 'string',
|
11764
|
+
description: "If specified, subjects of the given type (account or record) will be returned. When this is set to 'account' the 'collections' parameter will be ignored. When includeAllUserRecords or subject is set, this will be ignored.",
|
11765
|
+
knownValues: ['account', 'record'],
|
11766
|
+
},
|
11684
11767
|
},
|
11685
11768
|
},
|
11686
11769
|
output: {
|
@@ -12660,6 +12743,7 @@ exports.ids = {
|
|
12660
12743
|
AppBskyNotificationUpdateSeen: 'app.bsky.notification.updateSeen',
|
12661
12744
|
AppBskyRichtextFacet: 'app.bsky.richtext.facet',
|
12662
12745
|
AppBskyUnspeccedDefs: 'app.bsky.unspecced.defs',
|
12746
|
+
AppBskyUnspeccedGetConfig: 'app.bsky.unspecced.getConfig',
|
12663
12747
|
AppBskyUnspeccedGetPopularFeedGenerators: 'app.bsky.unspecced.getPopularFeedGenerators',
|
12664
12748
|
AppBskyUnspeccedGetSuggestionsSkeleton: 'app.bsky.unspecced.getSuggestionsSkeleton',
|
12665
12749
|
AppBskyUnspeccedGetTaggedSuggestions: 'app.bsky.unspecced.getTaggedSuggestions',
|