@atproto/api 0.20.29 → 0.20.31
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 +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 +132 -0
- package/dist/client/lexicons.d.ts.map +1 -1
- package/dist/client/lexicons.js +67 -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/dist/client/types/app/bsky/unspecced/defs.d.ts +2 -0
- package/dist/client/types/app/bsky/unspecced/defs.d.ts.map +1 -1
- package/dist/client/types/app/bsky/unspecced/defs.js.map +1 -1
- package/dist/client/types/app/bsky/unspecced/getTrends.d.ts +2 -0
- package/dist/client/types/app/bsky/unspecced/getTrends.d.ts.map +1 -1
- package/dist/client/types/app/bsky/unspecced/getTrends.js.map +1 -1
- package/dist/client/types/app/bsky/unspecced/getTrendsSkeleton.d.ts +2 -0
- package/dist/client/types/app/bsky/unspecced/getTrendsSkeleton.d.ts.map +1 -1
- package/dist/client/types/app/bsky/unspecced/getTrendsSkeleton.js.map +1 -1
- 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',
|
|
@@ -8028,6 +8080,9 @@ export const schemaDict = {
|
|
|
8028
8080
|
displayName: {
|
|
8029
8081
|
type: 'string',
|
|
8030
8082
|
},
|
|
8083
|
+
description: {
|
|
8084
|
+
type: 'string',
|
|
8085
|
+
},
|
|
8031
8086
|
link: {
|
|
8032
8087
|
type: 'string',
|
|
8033
8088
|
},
|
|
@@ -8071,6 +8126,9 @@ export const schemaDict = {
|
|
|
8071
8126
|
displayName: {
|
|
8072
8127
|
type: 'string',
|
|
8073
8128
|
},
|
|
8129
|
+
description: {
|
|
8130
|
+
type: 'string',
|
|
8131
|
+
},
|
|
8074
8132
|
link: {
|
|
8075
8133
|
type: 'string',
|
|
8076
8134
|
},
|
|
@@ -9383,6 +9441,10 @@ export const schemaDict = {
|
|
|
9383
9441
|
ref: 'lex:app.bsky.unspecced.defs#trendView',
|
|
9384
9442
|
},
|
|
9385
9443
|
},
|
|
9444
|
+
recIdStr: {
|
|
9445
|
+
type: 'string',
|
|
9446
|
+
description: 'Snowflake for this recommendation, use when submitting recommendation events.',
|
|
9447
|
+
},
|
|
9386
9448
|
},
|
|
9387
9449
|
},
|
|
9388
9450
|
},
|
|
@@ -9425,6 +9487,10 @@ export const schemaDict = {
|
|
|
9425
9487
|
ref: 'lex:app.bsky.unspecced.defs#skeletonTrend',
|
|
9426
9488
|
},
|
|
9427
9489
|
},
|
|
9490
|
+
recIdStr: {
|
|
9491
|
+
type: 'string',
|
|
9492
|
+
description: 'Snowflake for this recommendation, use when submitting recommendation events.',
|
|
9493
|
+
},
|
|
9428
9494
|
},
|
|
9429
9495
|
},
|
|
9430
9496
|
},
|
|
@@ -25889,6 +25955,7 @@ export const ids = {
|
|
|
25889
25955
|
AppBskyGraphMuteActorList: 'app.bsky.graph.muteActorList',
|
|
25890
25956
|
AppBskyGraphMuteThread: 'app.bsky.graph.muteThread',
|
|
25891
25957
|
AppBskyGraphSearchStarterPacks: 'app.bsky.graph.searchStarterPacks',
|
|
25958
|
+
AppBskyGraphSearchStarterPacksV2: 'app.bsky.graph.searchStarterPacksV2',
|
|
25892
25959
|
AppBskyGraphStarterpack: 'app.bsky.graph.starterpack',
|
|
25893
25960
|
AppBskyGraphUnmuteActor: 'app.bsky.graph.unmuteActor',
|
|
25894
25961
|
AppBskyGraphUnmuteActorList: 'app.bsky.graph.unmuteActorList',
|