@atproto/api 0.14.18 → 0.14.20
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 +17 -0
- package/dist/client/index.d.ts +12 -0
- package/dist/client/index.d.ts.map +1 -1
- package/dist/client/index.js +20 -4
- package/dist/client/index.js.map +1 -1
- package/dist/client/lexicons.d.ts +332 -0
- package/dist/client/lexicons.d.ts.map +1 -1
- package/dist/client/lexicons.js +170 -0
- package/dist/client/lexicons.js.map +1 -1
- package/dist/client/types/app/bsky/unspecced/getSuggestedFeeds.d.ts +23 -0
- package/dist/client/types/app/bsky/unspecced/getSuggestedFeeds.d.ts.map +1 -0
- package/dist/client/types/app/bsky/unspecced/getSuggestedFeeds.js +11 -0
- package/dist/client/types/app/bsky/unspecced/getSuggestedFeeds.js.map +1 -0
- package/dist/client/types/app/bsky/unspecced/getSuggestedFeedsSkeleton.d.ts +24 -0
- package/dist/client/types/app/bsky/unspecced/getSuggestedFeedsSkeleton.d.ts.map +1 -0
- package/dist/client/types/app/bsky/unspecced/getSuggestedFeedsSkeleton.js +11 -0
- package/dist/client/types/app/bsky/unspecced/getSuggestedFeedsSkeleton.js.map +1 -0
- 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 +5 -5
- package/src/client/index.ts +56 -0
- package/src/client/lexicons.ts +176 -0
- package/src/client/types/app/bsky/unspecced/getSuggestedFeeds.ts +42 -0
- package/src/client/types/app/bsky/unspecced/getSuggestedFeedsSkeleton.ts +43 -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
|
@@ -9567,6 +9567,85 @@ exports.schemaDict = {
|
|
|
9567
9567
|
},
|
|
9568
9568
|
},
|
|
9569
9569
|
},
|
|
9570
|
+
AppBskyUnspeccedGetSuggestedFeeds: {
|
|
9571
|
+
lexicon: 1,
|
|
9572
|
+
id: 'app.bsky.unspecced.getSuggestedFeeds',
|
|
9573
|
+
defs: {
|
|
9574
|
+
main: {
|
|
9575
|
+
type: 'query',
|
|
9576
|
+
description: 'Get a list of suggested feeds',
|
|
9577
|
+
parameters: {
|
|
9578
|
+
type: 'params',
|
|
9579
|
+
properties: {
|
|
9580
|
+
limit: {
|
|
9581
|
+
type: 'integer',
|
|
9582
|
+
minimum: 1,
|
|
9583
|
+
maximum: 25,
|
|
9584
|
+
default: 10,
|
|
9585
|
+
},
|
|
9586
|
+
},
|
|
9587
|
+
},
|
|
9588
|
+
output: {
|
|
9589
|
+
encoding: 'application/json',
|
|
9590
|
+
schema: {
|
|
9591
|
+
type: 'object',
|
|
9592
|
+
required: ['feeds'],
|
|
9593
|
+
properties: {
|
|
9594
|
+
feeds: {
|
|
9595
|
+
type: 'array',
|
|
9596
|
+
items: {
|
|
9597
|
+
type: 'ref',
|
|
9598
|
+
ref: 'lex:app.bsky.feed.defs#generatorView',
|
|
9599
|
+
},
|
|
9600
|
+
},
|
|
9601
|
+
},
|
|
9602
|
+
},
|
|
9603
|
+
},
|
|
9604
|
+
},
|
|
9605
|
+
},
|
|
9606
|
+
},
|
|
9607
|
+
AppBskyUnspeccedGetSuggestedFeedsSkeleton: {
|
|
9608
|
+
lexicon: 1,
|
|
9609
|
+
id: 'app.bsky.unspecced.getSuggestedFeedsSkeleton',
|
|
9610
|
+
defs: {
|
|
9611
|
+
main: {
|
|
9612
|
+
type: 'query',
|
|
9613
|
+
description: 'Get a skeleton of suggested feeds. Intended to be called and hydrated by app.bsky.unspecced.getSuggestedFeeds',
|
|
9614
|
+
parameters: {
|
|
9615
|
+
type: 'params',
|
|
9616
|
+
properties: {
|
|
9617
|
+
viewer: {
|
|
9618
|
+
type: 'string',
|
|
9619
|
+
format: 'did',
|
|
9620
|
+
description: 'DID of the account making the request (not included for public/unauthenticated queries).',
|
|
9621
|
+
},
|
|
9622
|
+
limit: {
|
|
9623
|
+
type: 'integer',
|
|
9624
|
+
minimum: 1,
|
|
9625
|
+
maximum: 25,
|
|
9626
|
+
default: 10,
|
|
9627
|
+
},
|
|
9628
|
+
},
|
|
9629
|
+
},
|
|
9630
|
+
output: {
|
|
9631
|
+
encoding: 'application/json',
|
|
9632
|
+
schema: {
|
|
9633
|
+
type: 'object',
|
|
9634
|
+
required: ['feeds'],
|
|
9635
|
+
properties: {
|
|
9636
|
+
feeds: {
|
|
9637
|
+
type: 'array',
|
|
9638
|
+
items: {
|
|
9639
|
+
type: 'string',
|
|
9640
|
+
format: 'at-uri',
|
|
9641
|
+
},
|
|
9642
|
+
},
|
|
9643
|
+
},
|
|
9644
|
+
},
|
|
9645
|
+
},
|
|
9646
|
+
},
|
|
9647
|
+
},
|
|
9648
|
+
},
|
|
9570
9649
|
AppBskyUnspeccedGetSuggestedStarterPacks: {
|
|
9571
9650
|
lexicon: 1,
|
|
9572
9651
|
id: 'app.bsky.unspecced.getSuggestedStarterPacks',
|
|
@@ -9646,6 +9725,93 @@ exports.schemaDict = {
|
|
|
9646
9725
|
},
|
|
9647
9726
|
},
|
|
9648
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#profileViewBasic',
|
|
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
|
+
},
|
|
9649
9815
|
AppBskyUnspeccedGetSuggestionsSkeleton: {
|
|
9650
9816
|
lexicon: 1,
|
|
9651
9817
|
id: 'app.bsky.unspecced.getSuggestionsSkeleton',
|
|
@@ -14770,8 +14936,12 @@ exports.ids = {
|
|
|
14770
14936
|
AppBskyUnspeccedDefs: 'app.bsky.unspecced.defs',
|
|
14771
14937
|
AppBskyUnspeccedGetConfig: 'app.bsky.unspecced.getConfig',
|
|
14772
14938
|
AppBskyUnspeccedGetPopularFeedGenerators: 'app.bsky.unspecced.getPopularFeedGenerators',
|
|
14939
|
+
AppBskyUnspeccedGetSuggestedFeeds: 'app.bsky.unspecced.getSuggestedFeeds',
|
|
14940
|
+
AppBskyUnspeccedGetSuggestedFeedsSkeleton: 'app.bsky.unspecced.getSuggestedFeedsSkeleton',
|
|
14773
14941
|
AppBskyUnspeccedGetSuggestedStarterPacks: 'app.bsky.unspecced.getSuggestedStarterPacks',
|
|
14774
14942
|
AppBskyUnspeccedGetSuggestedStarterPacksSkeleton: 'app.bsky.unspecced.getSuggestedStarterPacksSkeleton',
|
|
14943
|
+
AppBskyUnspeccedGetSuggestedUsers: 'app.bsky.unspecced.getSuggestedUsers',
|
|
14944
|
+
AppBskyUnspeccedGetSuggestedUsersSkeleton: 'app.bsky.unspecced.getSuggestedUsersSkeleton',
|
|
14775
14945
|
AppBskyUnspeccedGetSuggestionsSkeleton: 'app.bsky.unspecced.getSuggestionsSkeleton',
|
|
14776
14946
|
AppBskyUnspeccedGetTaggedSuggestions: 'app.bsky.unspecced.getTaggedSuggestions',
|
|
14777
14947
|
AppBskyUnspeccedGetTrendingTopics: 'app.bsky.unspecced.getTrendingTopics',
|