@atproto/api 0.14.19 → 0.14.21
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 +12 -0
- package/dist/client/index.d.ts +6 -0
- package/dist/client/index.d.ts.map +1 -1
- package/dist/client/index.js +12 -4
- package/dist/client/index.js.map +1 -1
- package/dist/client/lexicons.d.ts +174 -0
- package/dist/client/lexicons.d.ts.map +1 -1
- package/dist/client/lexicons.js +89 -0
- package/dist/client/lexicons.js.map +1 -1
- package/dist/client/types/app/bsky/unspecced/getSuggestedUsers.d.ts +25 -0
- package/dist/client/types/app/bsky/unspecced/getSuggestedUsers.d.ts.map +1 -0
- package/dist/client/types/app/bsky/unspecced/getSuggestedUsers.js +11 -0
- package/dist/client/types/app/bsky/unspecced/getSuggestedUsers.js.map +1 -0
- package/dist/client/types/app/bsky/unspecced/getSuggestedUsersSkeleton.d.ts +26 -0
- package/dist/client/types/app/bsky/unspecced/getSuggestedUsersSkeleton.d.ts.map +1 -0
- package/dist/client/types/app/bsky/unspecced/getSuggestedUsersSkeleton.js +11 -0
- package/dist/client/types/app/bsky/unspecced/getSuggestedUsersSkeleton.js.map +1 -0
- package/package.json +1 -1
- package/src/client/index.ts +28 -0
- package/src/client/lexicons.ts +92 -0
- package/src/client/types/app/bsky/unspecced/getSuggestedUsers.ts +44 -0
- package/src/client/types/app/bsky/unspecced/getSuggestedUsersSkeleton.ts +45 -0
- package/tsconfig.build.tsbuildinfo +1 -1
package/dist/client/lexicons.js
CHANGED
|
@@ -9725,6 +9725,93 @@ exports.schemaDict = {
|
|
|
9725
9725
|
},
|
|
9726
9726
|
},
|
|
9727
9727
|
},
|
|
9728
|
+
AppBskyUnspeccedGetSuggestedUsers: {
|
|
9729
|
+
lexicon: 1,
|
|
9730
|
+
id: 'app.bsky.unspecced.getSuggestedUsers',
|
|
9731
|
+
defs: {
|
|
9732
|
+
main: {
|
|
9733
|
+
type: 'query',
|
|
9734
|
+
description: 'Get a list of suggested users',
|
|
9735
|
+
parameters: {
|
|
9736
|
+
type: 'params',
|
|
9737
|
+
properties: {
|
|
9738
|
+
category: {
|
|
9739
|
+
type: 'string',
|
|
9740
|
+
description: 'Category of users to get suggestions for.',
|
|
9741
|
+
},
|
|
9742
|
+
limit: {
|
|
9743
|
+
type: 'integer',
|
|
9744
|
+
minimum: 1,
|
|
9745
|
+
maximum: 50,
|
|
9746
|
+
default: 25,
|
|
9747
|
+
},
|
|
9748
|
+
},
|
|
9749
|
+
},
|
|
9750
|
+
output: {
|
|
9751
|
+
encoding: 'application/json',
|
|
9752
|
+
schema: {
|
|
9753
|
+
type: 'object',
|
|
9754
|
+
required: ['actors'],
|
|
9755
|
+
properties: {
|
|
9756
|
+
actors: {
|
|
9757
|
+
type: 'array',
|
|
9758
|
+
items: {
|
|
9759
|
+
type: 'ref',
|
|
9760
|
+
ref: 'lex:app.bsky.actor.defs#profileView',
|
|
9761
|
+
},
|
|
9762
|
+
},
|
|
9763
|
+
},
|
|
9764
|
+
},
|
|
9765
|
+
},
|
|
9766
|
+
},
|
|
9767
|
+
},
|
|
9768
|
+
},
|
|
9769
|
+
AppBskyUnspeccedGetSuggestedUsersSkeleton: {
|
|
9770
|
+
lexicon: 1,
|
|
9771
|
+
id: 'app.bsky.unspecced.getSuggestedUsersSkeleton',
|
|
9772
|
+
defs: {
|
|
9773
|
+
main: {
|
|
9774
|
+
type: 'query',
|
|
9775
|
+
description: 'Get a skeleton of suggested users. Intended to be called and hydrated by app.bsky.unspecced.getSuggestedUsers',
|
|
9776
|
+
parameters: {
|
|
9777
|
+
type: 'params',
|
|
9778
|
+
properties: {
|
|
9779
|
+
viewer: {
|
|
9780
|
+
type: 'string',
|
|
9781
|
+
format: 'did',
|
|
9782
|
+
description: 'DID of the account making the request (not included for public/unauthenticated queries).',
|
|
9783
|
+
},
|
|
9784
|
+
category: {
|
|
9785
|
+
type: 'string',
|
|
9786
|
+
description: 'Category of users to get suggestions for.',
|
|
9787
|
+
},
|
|
9788
|
+
limit: {
|
|
9789
|
+
type: 'integer',
|
|
9790
|
+
minimum: 1,
|
|
9791
|
+
maximum: 50,
|
|
9792
|
+
default: 25,
|
|
9793
|
+
},
|
|
9794
|
+
},
|
|
9795
|
+
},
|
|
9796
|
+
output: {
|
|
9797
|
+
encoding: 'application/json',
|
|
9798
|
+
schema: {
|
|
9799
|
+
type: 'object',
|
|
9800
|
+
required: ['dids'],
|
|
9801
|
+
properties: {
|
|
9802
|
+
dids: {
|
|
9803
|
+
type: 'array',
|
|
9804
|
+
items: {
|
|
9805
|
+
type: 'string',
|
|
9806
|
+
format: 'did',
|
|
9807
|
+
},
|
|
9808
|
+
},
|
|
9809
|
+
},
|
|
9810
|
+
},
|
|
9811
|
+
},
|
|
9812
|
+
},
|
|
9813
|
+
},
|
|
9814
|
+
},
|
|
9728
9815
|
AppBskyUnspeccedGetSuggestionsSkeleton: {
|
|
9729
9816
|
lexicon: 1,
|
|
9730
9817
|
id: 'app.bsky.unspecced.getSuggestionsSkeleton',
|
|
@@ -14853,6 +14940,8 @@ exports.ids = {
|
|
|
14853
14940
|
AppBskyUnspeccedGetSuggestedFeedsSkeleton: 'app.bsky.unspecced.getSuggestedFeedsSkeleton',
|
|
14854
14941
|
AppBskyUnspeccedGetSuggestedStarterPacks: 'app.bsky.unspecced.getSuggestedStarterPacks',
|
|
14855
14942
|
AppBskyUnspeccedGetSuggestedStarterPacksSkeleton: 'app.bsky.unspecced.getSuggestedStarterPacksSkeleton',
|
|
14943
|
+
AppBskyUnspeccedGetSuggestedUsers: 'app.bsky.unspecced.getSuggestedUsers',
|
|
14944
|
+
AppBskyUnspeccedGetSuggestedUsersSkeleton: 'app.bsky.unspecced.getSuggestedUsersSkeleton',
|
|
14856
14945
|
AppBskyUnspeccedGetSuggestionsSkeleton: 'app.bsky.unspecced.getSuggestionsSkeleton',
|
|
14857
14946
|
AppBskyUnspeccedGetTaggedSuggestions: 'app.bsky.unspecced.getTaggedSuggestions',
|
|
14858
14947
|
AppBskyUnspeccedGetTrendingTopics: 'app.bsky.unspecced.getTrendingTopics',
|