@atproto/api 0.20.29 → 0.20.30
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 +6 -0
- package/dist/client/index.d.ts +3 -0
- package/dist/client/index.d.ts.map +1 -1
- package/dist/client/index.js +5 -0
- package/dist/client/index.js.map +1 -1
- package/dist/client/lexicons.d.ts +104 -0
- package/dist/client/lexicons.d.ts.map +1 -1
- package/dist/client/lexicons.js +53 -0
- package/dist/client/lexicons.js.map +1 -1
- package/dist/client/types/app/bsky/graph/searchStarterPacksV2.d.ts +29 -0
- package/dist/client/types/app/bsky/graph/searchStarterPacksV2.d.ts.map +1 -0
- package/dist/client/types/app/bsky/graph/searchStarterPacksV2.js +14 -0
- package/dist/client/types/app/bsky/graph/searchStarterPacksV2.js.map +1 -0
- package/package.json +3 -3
package/dist/client/lexicons.js
CHANGED
|
@@ -6824,6 +6824,58 @@ export const schemaDict = {
|
|
|
6824
6824
|
},
|
|
6825
6825
|
},
|
|
6826
6826
|
},
|
|
6827
|
+
AppBskyGraphSearchStarterPacksV2: {
|
|
6828
|
+
lexicon: 1,
|
|
6829
|
+
id: 'app.bsky.graph.searchStarterPacksV2',
|
|
6830
|
+
defs: {
|
|
6831
|
+
main: {
|
|
6832
|
+
type: 'query',
|
|
6833
|
+
description: 'Find starter packs matching search criteria. Does not require auth.',
|
|
6834
|
+
parameters: {
|
|
6835
|
+
type: 'params',
|
|
6836
|
+
required: ['q'],
|
|
6837
|
+
properties: {
|
|
6838
|
+
q: {
|
|
6839
|
+
type: 'string',
|
|
6840
|
+
description: 'Search query string. Syntax, phrase, boolean, and faceting is unspecified, but Lucene query syntax is recommended.',
|
|
6841
|
+
},
|
|
6842
|
+
limit: {
|
|
6843
|
+
type: 'integer',
|
|
6844
|
+
minimum: 1,
|
|
6845
|
+
maximum: 100,
|
|
6846
|
+
default: 25,
|
|
6847
|
+
},
|
|
6848
|
+
cursor: {
|
|
6849
|
+
type: 'string',
|
|
6850
|
+
},
|
|
6851
|
+
},
|
|
6852
|
+
},
|
|
6853
|
+
output: {
|
|
6854
|
+
encoding: 'application/json',
|
|
6855
|
+
schema: {
|
|
6856
|
+
type: 'object',
|
|
6857
|
+
required: ['starterPacks'],
|
|
6858
|
+
properties: {
|
|
6859
|
+
cursor: {
|
|
6860
|
+
type: 'string',
|
|
6861
|
+
},
|
|
6862
|
+
hitsTotal: {
|
|
6863
|
+
type: 'integer',
|
|
6864
|
+
description: 'Estimated total number of matching hits. May be rounded or truncated.',
|
|
6865
|
+
},
|
|
6866
|
+
starterPacks: {
|
|
6867
|
+
type: 'array',
|
|
6868
|
+
items: {
|
|
6869
|
+
type: 'ref',
|
|
6870
|
+
ref: 'lex:app.bsky.graph.defs#starterPackView',
|
|
6871
|
+
},
|
|
6872
|
+
},
|
|
6873
|
+
},
|
|
6874
|
+
},
|
|
6875
|
+
},
|
|
6876
|
+
},
|
|
6877
|
+
},
|
|
6878
|
+
},
|
|
6827
6879
|
AppBskyGraphStarterpack: {
|
|
6828
6880
|
lexicon: 1,
|
|
6829
6881
|
id: 'app.bsky.graph.starterpack',
|
|
@@ -25889,6 +25941,7 @@ export const ids = {
|
|
|
25889
25941
|
AppBskyGraphMuteActorList: 'app.bsky.graph.muteActorList',
|
|
25890
25942
|
AppBskyGraphMuteThread: 'app.bsky.graph.muteThread',
|
|
25891
25943
|
AppBskyGraphSearchStarterPacks: 'app.bsky.graph.searchStarterPacks',
|
|
25944
|
+
AppBskyGraphSearchStarterPacksV2: 'app.bsky.graph.searchStarterPacksV2',
|
|
25892
25945
|
AppBskyGraphStarterpack: 'app.bsky.graph.starterpack',
|
|
25893
25946
|
AppBskyGraphUnmuteActor: 'app.bsky.graph.unmuteActor',
|
|
25894
25947
|
AppBskyGraphUnmuteActorList: 'app.bsky.graph.unmuteActorList',
|