@atproto/ozone 0.1.52 → 0.1.53
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -0
- package/dist/api/util.d.ts.map +1 -1
- package/dist/api/util.js +3 -1
- package/dist/api/util.js.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 +37 -0
- package/dist/lexicon/lexicons.d.ts.map +1 -1
- package/dist/lexicon/lexicons.js +37 -0
- 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/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/package.json +3 -3
- package/src/api/util.ts +3 -0
- package/src/lexicon/index.ts +12 -0
- package/src/lexicon/lexicons.ts +37 -0
- package/src/lexicon/types/app/bsky/unspecced/getConfig.ts +43 -0
- package/src/lexicon/types/tools/ozone/moderation/defs.ts +2 -0
- package/tsconfig.build.tsbuildinfo +1 -1
package/dist/lexicon/lexicons.js
CHANGED
|
@@ -8886,6 +8886,28 @@ exports.schemaDict = {
|
|
|
8886
8886
|
},
|
|
8887
8887
|
},
|
|
8888
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
|
+
},
|
|
8889
8911
|
AppBskyUnspeccedGetPopularFeedGenerators: {
|
|
8890
8912
|
lexicon: 1,
|
|
8891
8913
|
id: 'app.bsky.unspecced.getPopularFeedGenerators',
|
|
@@ -10961,6 +10983,13 @@ exports.schemaDict = {
|
|
|
10961
10983
|
type: 'string',
|
|
10962
10984
|
format: 'datetime',
|
|
10963
10985
|
},
|
|
10986
|
+
threatSignatures: {
|
|
10987
|
+
type: 'array',
|
|
10988
|
+
items: {
|
|
10989
|
+
type: 'ref',
|
|
10990
|
+
ref: 'lex:com.atproto.admin.defs#threatSignature',
|
|
10991
|
+
},
|
|
10992
|
+
},
|
|
10964
10993
|
},
|
|
10965
10994
|
},
|
|
10966
10995
|
repoViewDetail: {
|
|
@@ -11030,6 +11059,13 @@ exports.schemaDict = {
|
|
|
11030
11059
|
type: 'string',
|
|
11031
11060
|
format: 'datetime',
|
|
11032
11061
|
},
|
|
11062
|
+
threatSignatures: {
|
|
11063
|
+
type: 'array',
|
|
11064
|
+
items: {
|
|
11065
|
+
type: 'ref',
|
|
11066
|
+
ref: 'lex:com.atproto.admin.defs#threatSignature',
|
|
11067
|
+
},
|
|
11068
|
+
},
|
|
11033
11069
|
},
|
|
11034
11070
|
},
|
|
11035
11071
|
repoViewNotFound: {
|
|
@@ -12707,6 +12743,7 @@ exports.ids = {
|
|
|
12707
12743
|
AppBskyNotificationUpdateSeen: 'app.bsky.notification.updateSeen',
|
|
12708
12744
|
AppBskyRichtextFacet: 'app.bsky.richtext.facet',
|
|
12709
12745
|
AppBskyUnspeccedDefs: 'app.bsky.unspecced.defs',
|
|
12746
|
+
AppBskyUnspeccedGetConfig: 'app.bsky.unspecced.getConfig',
|
|
12710
12747
|
AppBskyUnspeccedGetPopularFeedGenerators: 'app.bsky.unspecced.getPopularFeedGenerators',
|
|
12711
12748
|
AppBskyUnspeccedGetSuggestionsSkeleton: 'app.bsky.unspecced.getSuggestionsSkeleton',
|
|
12712
12749
|
AppBskyUnspeccedGetTaggedSuggestions: 'app.bsky.unspecced.getTaggedSuggestions',
|