@atproto/api 0.19.5 → 0.19.6

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.
Files changed (43) hide show
  1. package/CHANGELOG.md +9 -0
  2. package/dist/client/index.d.ts +18 -0
  3. package/dist/client/index.d.ts.map +1 -1
  4. package/dist/client/index.js +30 -6
  5. package/dist/client/index.js.map +1 -1
  6. package/dist/client/lexicons.d.ts +945 -391
  7. package/dist/client/lexicons.d.ts.map +1 -1
  8. package/dist/client/lexicons.js +283 -0
  9. package/dist/client/lexicons.js.map +1 -1
  10. package/dist/client/types/app/bsky/unspecced/getSuggestedUsersForDiscover.d.ts +25 -0
  11. package/dist/client/types/app/bsky/unspecced/getSuggestedUsersForDiscover.d.ts.map +1 -0
  12. package/dist/client/types/app/bsky/unspecced/getSuggestedUsersForDiscover.js +11 -0
  13. package/dist/client/types/app/bsky/unspecced/getSuggestedUsersForDiscover.js.map +1 -0
  14. package/dist/client/types/app/bsky/unspecced/getSuggestedUsersForDiscoverSkeleton.d.ts +26 -0
  15. package/dist/client/types/app/bsky/unspecced/getSuggestedUsersForDiscoverSkeleton.d.ts.map +1 -0
  16. package/dist/client/types/app/bsky/unspecced/getSuggestedUsersForDiscoverSkeleton.js +11 -0
  17. package/dist/client/types/app/bsky/unspecced/getSuggestedUsersForDiscoverSkeleton.js.map +1 -0
  18. package/dist/client/types/app/bsky/unspecced/getSuggestedUsersForExplore.d.ts +27 -0
  19. package/dist/client/types/app/bsky/unspecced/getSuggestedUsersForExplore.d.ts.map +1 -0
  20. package/dist/client/types/app/bsky/unspecced/getSuggestedUsersForExplore.js +11 -0
  21. package/dist/client/types/app/bsky/unspecced/getSuggestedUsersForExplore.js.map +1 -0
  22. package/dist/client/types/app/bsky/unspecced/getSuggestedUsersForExploreSkeleton.d.ts +28 -0
  23. package/dist/client/types/app/bsky/unspecced/getSuggestedUsersForExploreSkeleton.d.ts.map +1 -0
  24. package/dist/client/types/app/bsky/unspecced/getSuggestedUsersForExploreSkeleton.js +11 -0
  25. package/dist/client/types/app/bsky/unspecced/getSuggestedUsersForExploreSkeleton.js.map +1 -0
  26. package/dist/client/types/app/bsky/unspecced/getSuggestedUsersForSeeMore.d.ts +27 -0
  27. package/dist/client/types/app/bsky/unspecced/getSuggestedUsersForSeeMore.d.ts.map +1 -0
  28. package/dist/client/types/app/bsky/unspecced/getSuggestedUsersForSeeMore.js +11 -0
  29. package/dist/client/types/app/bsky/unspecced/getSuggestedUsersForSeeMore.js.map +1 -0
  30. package/dist/client/types/app/bsky/unspecced/getSuggestedUsersForSeeMoreSkeleton.d.ts +28 -0
  31. package/dist/client/types/app/bsky/unspecced/getSuggestedUsersForSeeMoreSkeleton.d.ts.map +1 -0
  32. package/dist/client/types/app/bsky/unspecced/getSuggestedUsersForSeeMoreSkeleton.js +11 -0
  33. package/dist/client/types/app/bsky/unspecced/getSuggestedUsersForSeeMoreSkeleton.js.map +1 -0
  34. package/package.json +2 -2
  35. package/src/client/index.ts +84 -0
  36. package/src/client/lexicons.ts +301 -0
  37. package/src/client/types/app/bsky/unspecced/getSuggestedUsersForDiscover.ts +43 -0
  38. package/src/client/types/app/bsky/unspecced/getSuggestedUsersForDiscoverSkeleton.ts +44 -0
  39. package/src/client/types/app/bsky/unspecced/getSuggestedUsersForExplore.ts +45 -0
  40. package/src/client/types/app/bsky/unspecced/getSuggestedUsersForExploreSkeleton.ts +46 -0
  41. package/src/client/types/app/bsky/unspecced/getSuggestedUsersForSeeMore.ts +45 -0
  42. package/src/client/types/app/bsky/unspecced/getSuggestedUsersForSeeMoreSkeleton.ts +46 -0
  43. package/tsconfig.build.tsbuildinfo +1 -1
@@ -8032,25 +8032,16 @@ export declare const schemaDict: {
8032
8032
  };
8033
8033
  };
8034
8034
  };
8035
- readonly AppBskyUnspeccedGetSuggestedUsersSkeleton: {
8035
+ readonly AppBskyUnspeccedGetSuggestedUsersForDiscover: {
8036
8036
  readonly lexicon: 1;
8037
- readonly id: "app.bsky.unspecced.getSuggestedUsersSkeleton";
8037
+ readonly id: "app.bsky.unspecced.getSuggestedUsersForDiscover";
8038
8038
  readonly defs: {
8039
8039
  readonly main: {
8040
8040
  readonly type: "query";
8041
- readonly description: "Get a skeleton of suggested users. Intended to be called and hydrated by app.bsky.unspecced.getSuggestedUsers";
8041
+ readonly description: "Get a list of suggested users for the Discover page";
8042
8042
  readonly parameters: {
8043
8043
  readonly type: "params";
8044
8044
  readonly properties: {
8045
- readonly viewer: {
8046
- readonly type: "string";
8047
- readonly format: "did";
8048
- readonly description: "DID of the account making the request (not included for public/unauthenticated queries).";
8049
- };
8050
- readonly category: {
8051
- readonly type: "string";
8052
- readonly description: "Category of users to get suggestions for.";
8053
- };
8054
8045
  readonly limit: {
8055
8046
  readonly type: "integer";
8056
8047
  readonly minimum: 1;
@@ -8063,19 +8054,15 @@ export declare const schemaDict: {
8063
8054
  readonly encoding: "application/json";
8064
8055
  readonly schema: {
8065
8056
  readonly type: "object";
8066
- readonly required: ["dids"];
8057
+ readonly required: ["actors"];
8067
8058
  readonly properties: {
8068
- readonly dids: {
8059
+ readonly actors: {
8069
8060
  readonly type: "array";
8070
8061
  readonly items: {
8071
- readonly type: "string";
8072
- readonly format: "did";
8062
+ readonly type: "ref";
8063
+ readonly ref: "lex:app.bsky.actor.defs#profileView";
8073
8064
  };
8074
8065
  };
8075
- readonly recId: {
8076
- readonly type: "string";
8077
- readonly description: "DEPRECATED: use recIdStr instead.";
8078
- };
8079
8066
  readonly recIdStr: {
8080
8067
  readonly type: "string";
8081
8068
  readonly description: "Snowflake for this recommendation, use when submitting recommendation events.";
@@ -8086,34 +8073,26 @@ export declare const schemaDict: {
8086
8073
  };
8087
8074
  };
8088
8075
  };
8089
- readonly AppBskyUnspeccedGetSuggestionsSkeleton: {
8076
+ readonly AppBskyUnspeccedGetSuggestedUsersForDiscoverSkeleton: {
8090
8077
  readonly lexicon: 1;
8091
- readonly id: "app.bsky.unspecced.getSuggestionsSkeleton";
8078
+ readonly id: "app.bsky.unspecced.getSuggestedUsersForDiscoverSkeleton";
8092
8079
  readonly defs: {
8093
8080
  readonly main: {
8094
8081
  readonly type: "query";
8095
- readonly description: "Get a skeleton of suggested actors. Intended to be called and then hydrated through app.bsky.actor.getSuggestions";
8082
+ readonly description: "Get a skeleton of suggested users for the Discover page. Intended to be called and hydrated by app.bsky.unspecced.getSuggestedUsersForDiscover";
8096
8083
  readonly parameters: {
8097
8084
  readonly type: "params";
8098
8085
  readonly properties: {
8099
8086
  readonly viewer: {
8100
8087
  readonly type: "string";
8101
8088
  readonly format: "did";
8102
- readonly description: "DID of the account making the request (not included for public/unauthenticated queries). Used to boost followed accounts in ranking.";
8089
+ readonly description: "DID of the account making the request (not included for public/unauthenticated queries).";
8103
8090
  };
8104
8091
  readonly limit: {
8105
8092
  readonly type: "integer";
8106
8093
  readonly minimum: 1;
8107
- readonly maximum: 100;
8108
- readonly default: 50;
8109
- };
8110
- readonly cursor: {
8111
- readonly type: "string";
8112
- };
8113
- readonly relativeToDid: {
8114
- readonly type: "string";
8115
- readonly format: "did";
8116
- readonly description: "DID of the account to get suggestions relative to. If not provided, suggestions will be based on the viewer.";
8094
+ readonly maximum: 50;
8095
+ readonly default: 25;
8117
8096
  };
8118
8097
  };
8119
8098
  };
@@ -8121,27 +8100,15 @@ export declare const schemaDict: {
8121
8100
  readonly encoding: "application/json";
8122
8101
  readonly schema: {
8123
8102
  readonly type: "object";
8124
- readonly required: ["actors"];
8103
+ readonly required: ["dids"];
8125
8104
  readonly properties: {
8126
- readonly cursor: {
8127
- readonly type: "string";
8128
- };
8129
- readonly actors: {
8105
+ readonly dids: {
8130
8106
  readonly type: "array";
8131
8107
  readonly items: {
8132
- readonly type: "ref";
8133
- readonly ref: "lex:app.bsky.unspecced.defs#skeletonSearchActor";
8108
+ readonly type: "string";
8109
+ readonly format: "did";
8134
8110
  };
8135
8111
  };
8136
- readonly relativeToDid: {
8137
- readonly type: "string";
8138
- readonly format: "did";
8139
- readonly description: "DID of the account these suggestions are relative to. If this is returned undefined, suggestions are based on the viewer.";
8140
- };
8141
- readonly recId: {
8142
- readonly type: "integer";
8143
- readonly description: "DEPRECATED: use recIdStr instead.";
8144
- };
8145
8112
  readonly recIdStr: {
8146
8113
  readonly type: "string";
8147
8114
  readonly description: "Snowflake for this recommendation, use when submitting recommendation events.";
@@ -8152,73 +8119,75 @@ export declare const schemaDict: {
8152
8119
  };
8153
8120
  };
8154
8121
  };
8155
- readonly AppBskyUnspeccedGetTaggedSuggestions: {
8122
+ readonly AppBskyUnspeccedGetSuggestedUsersForExplore: {
8156
8123
  readonly lexicon: 1;
8157
- readonly id: "app.bsky.unspecced.getTaggedSuggestions";
8124
+ readonly id: "app.bsky.unspecced.getSuggestedUsersForExplore";
8158
8125
  readonly defs: {
8159
8126
  readonly main: {
8160
8127
  readonly type: "query";
8161
- readonly description: "Get a list of suggestions (feeds and users) tagged with categories";
8128
+ readonly description: "Get a list of suggested users for the Explore page";
8162
8129
  readonly parameters: {
8163
8130
  readonly type: "params";
8164
- readonly properties: {};
8131
+ readonly properties: {
8132
+ readonly category: {
8133
+ readonly type: "string";
8134
+ readonly description: "Category of users to get suggestions for.";
8135
+ };
8136
+ readonly limit: {
8137
+ readonly type: "integer";
8138
+ readonly minimum: 1;
8139
+ readonly maximum: 50;
8140
+ readonly default: 25;
8141
+ };
8142
+ };
8165
8143
  };
8166
8144
  readonly output: {
8167
8145
  readonly encoding: "application/json";
8168
8146
  readonly schema: {
8169
8147
  readonly type: "object";
8170
- readonly required: ["suggestions"];
8148
+ readonly required: ["actors"];
8171
8149
  readonly properties: {
8172
- readonly suggestions: {
8150
+ readonly actors: {
8173
8151
  readonly type: "array";
8174
8152
  readonly items: {
8175
8153
  readonly type: "ref";
8176
- readonly ref: "lex:app.bsky.unspecced.getTaggedSuggestions#suggestion";
8154
+ readonly ref: "lex:app.bsky.actor.defs#profileView";
8177
8155
  };
8178
8156
  };
8157
+ readonly recIdStr: {
8158
+ readonly type: "string";
8159
+ readonly description: "Snowflake for this recommendation, use when submitting recommendation events.";
8160
+ };
8179
8161
  };
8180
8162
  };
8181
8163
  };
8182
8164
  };
8183
- readonly suggestion: {
8184
- readonly type: "object";
8185
- readonly required: ["tag", "subjectType", "subject"];
8186
- readonly properties: {
8187
- readonly tag: {
8188
- readonly type: "string";
8189
- };
8190
- readonly subjectType: {
8191
- readonly type: "string";
8192
- readonly knownValues: ["actor", "feed"];
8193
- };
8194
- readonly subject: {
8195
- readonly type: "string";
8196
- readonly format: "uri";
8197
- };
8198
- };
8199
- };
8200
8165
  };
8201
8166
  };
8202
- readonly AppBskyUnspeccedGetTrendingTopics: {
8167
+ readonly AppBskyUnspeccedGetSuggestedUsersForExploreSkeleton: {
8203
8168
  readonly lexicon: 1;
8204
- readonly id: "app.bsky.unspecced.getTrendingTopics";
8169
+ readonly id: "app.bsky.unspecced.getSuggestedUsersForExploreSkeleton";
8205
8170
  readonly defs: {
8206
8171
  readonly main: {
8207
8172
  readonly type: "query";
8208
- readonly description: "Get a list of trending topics";
8173
+ readonly description: "Get a skeleton of suggested users for the Explore page. Intended to be called and hydrated by app.bsky.unspecced.getSuggestedUsersForExplore";
8209
8174
  readonly parameters: {
8210
8175
  readonly type: "params";
8211
8176
  readonly properties: {
8212
8177
  readonly viewer: {
8213
8178
  readonly type: "string";
8214
8179
  readonly format: "did";
8215
- readonly description: "DID of the account making the request (not included for public/unauthenticated queries). Used to boost followed accounts in ranking.";
8180
+ readonly description: "DID of the account making the request (not included for public/unauthenticated queries).";
8181
+ };
8182
+ readonly category: {
8183
+ readonly type: "string";
8184
+ readonly description: "Category of users to get suggestions for.";
8216
8185
  };
8217
8186
  readonly limit: {
8218
8187
  readonly type: "integer";
8219
8188
  readonly minimum: 1;
8220
- readonly maximum: 25;
8221
- readonly default: 10;
8189
+ readonly maximum: 50;
8190
+ readonly default: 25;
8222
8191
  };
8223
8192
  };
8224
8193
  };
@@ -8226,21 +8195,18 @@ export declare const schemaDict: {
8226
8195
  readonly encoding: "application/json";
8227
8196
  readonly schema: {
8228
8197
  readonly type: "object";
8229
- readonly required: ["topics", "suggested"];
8198
+ readonly required: ["dids"];
8230
8199
  readonly properties: {
8231
- readonly topics: {
8200
+ readonly dids: {
8232
8201
  readonly type: "array";
8233
8202
  readonly items: {
8234
- readonly type: "ref";
8235
- readonly ref: "lex:app.bsky.unspecced.defs#trendingTopic";
8203
+ readonly type: "string";
8204
+ readonly format: "did";
8236
8205
  };
8237
8206
  };
8238
- readonly suggested: {
8239
- readonly type: "array";
8240
- readonly items: {
8241
- readonly type: "ref";
8242
- readonly ref: "lex:app.bsky.unspecced.defs#trendingTopic";
8243
- };
8207
+ readonly recIdStr: {
8208
+ readonly type: "string";
8209
+ readonly description: "Snowflake for this recommendation, use when submitting recommendation events.";
8244
8210
  };
8245
8211
  };
8246
8212
  };
@@ -8248,21 +8214,25 @@ export declare const schemaDict: {
8248
8214
  };
8249
8215
  };
8250
8216
  };
8251
- readonly AppBskyUnspeccedGetTrends: {
8217
+ readonly AppBskyUnspeccedGetSuggestedUsersForSeeMore: {
8252
8218
  readonly lexicon: 1;
8253
- readonly id: "app.bsky.unspecced.getTrends";
8219
+ readonly id: "app.bsky.unspecced.getSuggestedUsersForSeeMore";
8254
8220
  readonly defs: {
8255
8221
  readonly main: {
8256
8222
  readonly type: "query";
8257
- readonly description: "Get the current trends on the network";
8223
+ readonly description: "Get a list of suggested users for the See More page";
8258
8224
  readonly parameters: {
8259
8225
  readonly type: "params";
8260
8226
  readonly properties: {
8227
+ readonly category: {
8228
+ readonly type: "string";
8229
+ readonly description: "Category of users to get suggestions for.";
8230
+ };
8261
8231
  readonly limit: {
8262
8232
  readonly type: "integer";
8263
8233
  readonly minimum: 1;
8264
- readonly maximum: 25;
8265
- readonly default: 10;
8234
+ readonly maximum: 50;
8235
+ readonly default: 25;
8266
8236
  };
8267
8237
  };
8268
8238
  };
@@ -8270,28 +8240,32 @@ export declare const schemaDict: {
8270
8240
  readonly encoding: "application/json";
8271
8241
  readonly schema: {
8272
8242
  readonly type: "object";
8273
- readonly required: ["trends"];
8243
+ readonly required: ["actors"];
8274
8244
  readonly properties: {
8275
- readonly trends: {
8245
+ readonly actors: {
8276
8246
  readonly type: "array";
8277
8247
  readonly items: {
8278
8248
  readonly type: "ref";
8279
- readonly ref: "lex:app.bsky.unspecced.defs#trendView";
8249
+ readonly ref: "lex:app.bsky.actor.defs#profileView";
8280
8250
  };
8281
8251
  };
8252
+ readonly recIdStr: {
8253
+ readonly type: "string";
8254
+ readonly description: "Snowflake for this recommendation, use when submitting recommendation events.";
8255
+ };
8282
8256
  };
8283
8257
  };
8284
8258
  };
8285
8259
  };
8286
8260
  };
8287
8261
  };
8288
- readonly AppBskyUnspeccedGetTrendsSkeleton: {
8262
+ readonly AppBskyUnspeccedGetSuggestedUsersForSeeMoreSkeleton: {
8289
8263
  readonly lexicon: 1;
8290
- readonly id: "app.bsky.unspecced.getTrendsSkeleton";
8264
+ readonly id: "app.bsky.unspecced.getSuggestedUsersForSeeMoreSkeleton";
8291
8265
  readonly defs: {
8292
8266
  readonly main: {
8293
8267
  readonly type: "query";
8294
- readonly description: "Get the skeleton of trends on the network. Intended to be called and then hydrated through app.bsky.unspecced.getTrends";
8268
+ readonly description: "Get a skeleton of suggested users for the See More page. Intended to be called and hydrated by app.bsky.unspecced.getSuggestedUsersForSeeMore";
8295
8269
  readonly parameters: {
8296
8270
  readonly type: "params";
8297
8271
  readonly properties: {
@@ -8300,11 +8274,15 @@ export declare const schemaDict: {
8300
8274
  readonly format: "did";
8301
8275
  readonly description: "DID of the account making the request (not included for public/unauthenticated queries).";
8302
8276
  };
8277
+ readonly category: {
8278
+ readonly type: "string";
8279
+ readonly description: "Category of users to get suggestions for.";
8280
+ };
8303
8281
  readonly limit: {
8304
8282
  readonly type: "integer";
8305
8283
  readonly minimum: 1;
8306
- readonly maximum: 25;
8307
- readonly default: 10;
8284
+ readonly maximum: 50;
8285
+ readonly default: 25;
8308
8286
  };
8309
8287
  };
8310
8288
  };
@@ -8312,90 +8290,389 @@ export declare const schemaDict: {
8312
8290
  readonly encoding: "application/json";
8313
8291
  readonly schema: {
8314
8292
  readonly type: "object";
8315
- readonly required: ["trends"];
8293
+ readonly required: ["dids"];
8316
8294
  readonly properties: {
8317
- readonly trends: {
8295
+ readonly dids: {
8318
8296
  readonly type: "array";
8319
8297
  readonly items: {
8320
- readonly type: "ref";
8321
- readonly ref: "lex:app.bsky.unspecced.defs#skeletonTrend";
8298
+ readonly type: "string";
8299
+ readonly format: "did";
8322
8300
  };
8323
8301
  };
8302
+ readonly recIdStr: {
8303
+ readonly type: "string";
8304
+ readonly description: "Snowflake for this recommendation, use when submitting recommendation events.";
8305
+ };
8324
8306
  };
8325
8307
  };
8326
8308
  };
8327
8309
  };
8328
8310
  };
8329
8311
  };
8330
- readonly AppBskyUnspeccedInitAgeAssurance: {
8312
+ readonly AppBskyUnspeccedGetSuggestedUsersSkeleton: {
8331
8313
  readonly lexicon: 1;
8332
- readonly id: "app.bsky.unspecced.initAgeAssurance";
8314
+ readonly id: "app.bsky.unspecced.getSuggestedUsersSkeleton";
8333
8315
  readonly defs: {
8334
8316
  readonly main: {
8335
- readonly type: "procedure";
8336
- readonly description: "Initiate age assurance for an account. This is a one-time action that will start the process of verifying the user's age.";
8337
- readonly input: {
8317
+ readonly type: "query";
8318
+ readonly description: "Get a skeleton of suggested users. Intended to be called and hydrated by app.bsky.unspecced.getSuggestedUsers";
8319
+ readonly parameters: {
8320
+ readonly type: "params";
8321
+ readonly properties: {
8322
+ readonly viewer: {
8323
+ readonly type: "string";
8324
+ readonly format: "did";
8325
+ readonly description: "DID of the account making the request (not included for public/unauthenticated queries).";
8326
+ };
8327
+ readonly category: {
8328
+ readonly type: "string";
8329
+ readonly description: "Category of users to get suggestions for.";
8330
+ };
8331
+ readonly limit: {
8332
+ readonly type: "integer";
8333
+ readonly minimum: 1;
8334
+ readonly maximum: 50;
8335
+ readonly default: 25;
8336
+ };
8337
+ };
8338
+ };
8339
+ readonly output: {
8338
8340
  readonly encoding: "application/json";
8339
8341
  readonly schema: {
8340
8342
  readonly type: "object";
8341
- readonly required: ["email", "language", "countryCode"];
8343
+ readonly required: ["dids"];
8342
8344
  readonly properties: {
8343
- readonly email: {
8344
- readonly type: "string";
8345
- readonly description: "The user's email address to receive assurance instructions.";
8345
+ readonly dids: {
8346
+ readonly type: "array";
8347
+ readonly items: {
8348
+ readonly type: "string";
8349
+ readonly format: "did";
8350
+ };
8346
8351
  };
8347
- readonly language: {
8352
+ readonly recId: {
8348
8353
  readonly type: "string";
8349
- readonly description: "The user's preferred language for communication during the assurance process.";
8354
+ readonly description: "DEPRECATED: use recIdStr instead.";
8350
8355
  };
8351
- readonly countryCode: {
8356
+ readonly recIdStr: {
8352
8357
  readonly type: "string";
8353
- readonly description: "An ISO 3166-1 alpha-2 code of the user's location.";
8358
+ readonly description: "Snowflake for this recommendation, use when submitting recommendation events.";
8354
8359
  };
8355
8360
  };
8356
8361
  };
8357
8362
  };
8358
- readonly output: {
8359
- readonly encoding: "application/json";
8360
- readonly schema: {
8361
- readonly type: "ref";
8362
- readonly ref: "lex:app.bsky.unspecced.defs#ageAssuranceState";
8363
- };
8364
- };
8365
- readonly errors: [{
8366
- readonly name: "InvalidEmail";
8367
- }, {
8368
- readonly name: "DidTooLong";
8369
- }, {
8370
- readonly name: "InvalidInitiation";
8371
- }];
8372
8363
  };
8373
8364
  };
8374
8365
  };
8375
- readonly AppBskyUnspeccedSearchActorsSkeleton: {
8366
+ readonly AppBskyUnspeccedGetSuggestionsSkeleton: {
8376
8367
  readonly lexicon: 1;
8377
- readonly id: "app.bsky.unspecced.searchActorsSkeleton";
8368
+ readonly id: "app.bsky.unspecced.getSuggestionsSkeleton";
8378
8369
  readonly defs: {
8379
8370
  readonly main: {
8380
8371
  readonly type: "query";
8381
- readonly description: "Backend Actors (profile) search, returns only skeleton.";
8372
+ readonly description: "Get a skeleton of suggested actors. Intended to be called and then hydrated through app.bsky.actor.getSuggestions";
8382
8373
  readonly parameters: {
8383
8374
  readonly type: "params";
8384
- readonly required: ["q"];
8385
8375
  readonly properties: {
8386
- readonly q: {
8387
- readonly type: "string";
8388
- readonly description: "Search query string; syntax, phrase, boolean, and faceting is unspecified, but Lucene query syntax is recommended. For typeahead search, only simple term match is supported, not full syntax.";
8389
- };
8390
8376
  readonly viewer: {
8391
8377
  readonly type: "string";
8392
8378
  readonly format: "did";
8393
8379
  readonly description: "DID of the account making the request (not included for public/unauthenticated queries). Used to boost followed accounts in ranking.";
8394
8380
  };
8395
- readonly typeahead: {
8396
- readonly type: "boolean";
8397
- readonly description: "If true, acts as fast/simple 'typeahead' query.";
8398
- };
8381
+ readonly limit: {
8382
+ readonly type: "integer";
8383
+ readonly minimum: 1;
8384
+ readonly maximum: 100;
8385
+ readonly default: 50;
8386
+ };
8387
+ readonly cursor: {
8388
+ readonly type: "string";
8389
+ };
8390
+ readonly relativeToDid: {
8391
+ readonly type: "string";
8392
+ readonly format: "did";
8393
+ readonly description: "DID of the account to get suggestions relative to. If not provided, suggestions will be based on the viewer.";
8394
+ };
8395
+ };
8396
+ };
8397
+ readonly output: {
8398
+ readonly encoding: "application/json";
8399
+ readonly schema: {
8400
+ readonly type: "object";
8401
+ readonly required: ["actors"];
8402
+ readonly properties: {
8403
+ readonly cursor: {
8404
+ readonly type: "string";
8405
+ };
8406
+ readonly actors: {
8407
+ readonly type: "array";
8408
+ readonly items: {
8409
+ readonly type: "ref";
8410
+ readonly ref: "lex:app.bsky.unspecced.defs#skeletonSearchActor";
8411
+ };
8412
+ };
8413
+ readonly relativeToDid: {
8414
+ readonly type: "string";
8415
+ readonly format: "did";
8416
+ readonly description: "DID of the account these suggestions are relative to. If this is returned undefined, suggestions are based on the viewer.";
8417
+ };
8418
+ readonly recId: {
8419
+ readonly type: "integer";
8420
+ readonly description: "DEPRECATED: use recIdStr instead.";
8421
+ };
8422
+ readonly recIdStr: {
8423
+ readonly type: "string";
8424
+ readonly description: "Snowflake for this recommendation, use when submitting recommendation events.";
8425
+ };
8426
+ };
8427
+ };
8428
+ };
8429
+ };
8430
+ };
8431
+ };
8432
+ readonly AppBskyUnspeccedGetTaggedSuggestions: {
8433
+ readonly lexicon: 1;
8434
+ readonly id: "app.bsky.unspecced.getTaggedSuggestions";
8435
+ readonly defs: {
8436
+ readonly main: {
8437
+ readonly type: "query";
8438
+ readonly description: "Get a list of suggestions (feeds and users) tagged with categories";
8439
+ readonly parameters: {
8440
+ readonly type: "params";
8441
+ readonly properties: {};
8442
+ };
8443
+ readonly output: {
8444
+ readonly encoding: "application/json";
8445
+ readonly schema: {
8446
+ readonly type: "object";
8447
+ readonly required: ["suggestions"];
8448
+ readonly properties: {
8449
+ readonly suggestions: {
8450
+ readonly type: "array";
8451
+ readonly items: {
8452
+ readonly type: "ref";
8453
+ readonly ref: "lex:app.bsky.unspecced.getTaggedSuggestions#suggestion";
8454
+ };
8455
+ };
8456
+ };
8457
+ };
8458
+ };
8459
+ };
8460
+ readonly suggestion: {
8461
+ readonly type: "object";
8462
+ readonly required: ["tag", "subjectType", "subject"];
8463
+ readonly properties: {
8464
+ readonly tag: {
8465
+ readonly type: "string";
8466
+ };
8467
+ readonly subjectType: {
8468
+ readonly type: "string";
8469
+ readonly knownValues: ["actor", "feed"];
8470
+ };
8471
+ readonly subject: {
8472
+ readonly type: "string";
8473
+ readonly format: "uri";
8474
+ };
8475
+ };
8476
+ };
8477
+ };
8478
+ };
8479
+ readonly AppBskyUnspeccedGetTrendingTopics: {
8480
+ readonly lexicon: 1;
8481
+ readonly id: "app.bsky.unspecced.getTrendingTopics";
8482
+ readonly defs: {
8483
+ readonly main: {
8484
+ readonly type: "query";
8485
+ readonly description: "Get a list of trending topics";
8486
+ readonly parameters: {
8487
+ readonly type: "params";
8488
+ readonly properties: {
8489
+ readonly viewer: {
8490
+ readonly type: "string";
8491
+ readonly format: "did";
8492
+ readonly description: "DID of the account making the request (not included for public/unauthenticated queries). Used to boost followed accounts in ranking.";
8493
+ };
8494
+ readonly limit: {
8495
+ readonly type: "integer";
8496
+ readonly minimum: 1;
8497
+ readonly maximum: 25;
8498
+ readonly default: 10;
8499
+ };
8500
+ };
8501
+ };
8502
+ readonly output: {
8503
+ readonly encoding: "application/json";
8504
+ readonly schema: {
8505
+ readonly type: "object";
8506
+ readonly required: ["topics", "suggested"];
8507
+ readonly properties: {
8508
+ readonly topics: {
8509
+ readonly type: "array";
8510
+ readonly items: {
8511
+ readonly type: "ref";
8512
+ readonly ref: "lex:app.bsky.unspecced.defs#trendingTopic";
8513
+ };
8514
+ };
8515
+ readonly suggested: {
8516
+ readonly type: "array";
8517
+ readonly items: {
8518
+ readonly type: "ref";
8519
+ readonly ref: "lex:app.bsky.unspecced.defs#trendingTopic";
8520
+ };
8521
+ };
8522
+ };
8523
+ };
8524
+ };
8525
+ };
8526
+ };
8527
+ };
8528
+ readonly AppBskyUnspeccedGetTrends: {
8529
+ readonly lexicon: 1;
8530
+ readonly id: "app.bsky.unspecced.getTrends";
8531
+ readonly defs: {
8532
+ readonly main: {
8533
+ readonly type: "query";
8534
+ readonly description: "Get the current trends on the network";
8535
+ readonly parameters: {
8536
+ readonly type: "params";
8537
+ readonly properties: {
8538
+ readonly limit: {
8539
+ readonly type: "integer";
8540
+ readonly minimum: 1;
8541
+ readonly maximum: 25;
8542
+ readonly default: 10;
8543
+ };
8544
+ };
8545
+ };
8546
+ readonly output: {
8547
+ readonly encoding: "application/json";
8548
+ readonly schema: {
8549
+ readonly type: "object";
8550
+ readonly required: ["trends"];
8551
+ readonly properties: {
8552
+ readonly trends: {
8553
+ readonly type: "array";
8554
+ readonly items: {
8555
+ readonly type: "ref";
8556
+ readonly ref: "lex:app.bsky.unspecced.defs#trendView";
8557
+ };
8558
+ };
8559
+ };
8560
+ };
8561
+ };
8562
+ };
8563
+ };
8564
+ };
8565
+ readonly AppBskyUnspeccedGetTrendsSkeleton: {
8566
+ readonly lexicon: 1;
8567
+ readonly id: "app.bsky.unspecced.getTrendsSkeleton";
8568
+ readonly defs: {
8569
+ readonly main: {
8570
+ readonly type: "query";
8571
+ readonly description: "Get the skeleton of trends on the network. Intended to be called and then hydrated through app.bsky.unspecced.getTrends";
8572
+ readonly parameters: {
8573
+ readonly type: "params";
8574
+ readonly properties: {
8575
+ readonly viewer: {
8576
+ readonly type: "string";
8577
+ readonly format: "did";
8578
+ readonly description: "DID of the account making the request (not included for public/unauthenticated queries).";
8579
+ };
8580
+ readonly limit: {
8581
+ readonly type: "integer";
8582
+ readonly minimum: 1;
8583
+ readonly maximum: 25;
8584
+ readonly default: 10;
8585
+ };
8586
+ };
8587
+ };
8588
+ readonly output: {
8589
+ readonly encoding: "application/json";
8590
+ readonly schema: {
8591
+ readonly type: "object";
8592
+ readonly required: ["trends"];
8593
+ readonly properties: {
8594
+ readonly trends: {
8595
+ readonly type: "array";
8596
+ readonly items: {
8597
+ readonly type: "ref";
8598
+ readonly ref: "lex:app.bsky.unspecced.defs#skeletonTrend";
8599
+ };
8600
+ };
8601
+ };
8602
+ };
8603
+ };
8604
+ };
8605
+ };
8606
+ };
8607
+ readonly AppBskyUnspeccedInitAgeAssurance: {
8608
+ readonly lexicon: 1;
8609
+ readonly id: "app.bsky.unspecced.initAgeAssurance";
8610
+ readonly defs: {
8611
+ readonly main: {
8612
+ readonly type: "procedure";
8613
+ readonly description: "Initiate age assurance for an account. This is a one-time action that will start the process of verifying the user's age.";
8614
+ readonly input: {
8615
+ readonly encoding: "application/json";
8616
+ readonly schema: {
8617
+ readonly type: "object";
8618
+ readonly required: ["email", "language", "countryCode"];
8619
+ readonly properties: {
8620
+ readonly email: {
8621
+ readonly type: "string";
8622
+ readonly description: "The user's email address to receive assurance instructions.";
8623
+ };
8624
+ readonly language: {
8625
+ readonly type: "string";
8626
+ readonly description: "The user's preferred language for communication during the assurance process.";
8627
+ };
8628
+ readonly countryCode: {
8629
+ readonly type: "string";
8630
+ readonly description: "An ISO 3166-1 alpha-2 code of the user's location.";
8631
+ };
8632
+ };
8633
+ };
8634
+ };
8635
+ readonly output: {
8636
+ readonly encoding: "application/json";
8637
+ readonly schema: {
8638
+ readonly type: "ref";
8639
+ readonly ref: "lex:app.bsky.unspecced.defs#ageAssuranceState";
8640
+ };
8641
+ };
8642
+ readonly errors: [{
8643
+ readonly name: "InvalidEmail";
8644
+ }, {
8645
+ readonly name: "DidTooLong";
8646
+ }, {
8647
+ readonly name: "InvalidInitiation";
8648
+ }];
8649
+ };
8650
+ };
8651
+ };
8652
+ readonly AppBskyUnspeccedSearchActorsSkeleton: {
8653
+ readonly lexicon: 1;
8654
+ readonly id: "app.bsky.unspecced.searchActorsSkeleton";
8655
+ readonly defs: {
8656
+ readonly main: {
8657
+ readonly type: "query";
8658
+ readonly description: "Backend Actors (profile) search, returns only skeleton.";
8659
+ readonly parameters: {
8660
+ readonly type: "params";
8661
+ readonly required: ["q"];
8662
+ readonly properties: {
8663
+ readonly q: {
8664
+ readonly type: "string";
8665
+ readonly description: "Search query string; syntax, phrase, boolean, and faceting is unspecified, but Lucene query syntax is recommended. For typeahead search, only simple term match is supported, not full syntax.";
8666
+ };
8667
+ readonly viewer: {
8668
+ readonly type: "string";
8669
+ readonly format: "did";
8670
+ readonly description: "DID of the account making the request (not included for public/unauthenticated queries). Used to boost followed accounts in ranking.";
8671
+ };
8672
+ readonly typeahead: {
8673
+ readonly type: "boolean";
8674
+ readonly description: "If true, acts as fast/simple 'typeahead' query.";
8675
+ };
8399
8676
  readonly limit: {
8400
8677
  readonly type: "integer";
8401
8678
  readonly minimum: 1;
@@ -26231,132 +26508,450 @@ export declare const schemas: ({
26231
26508
  };
26232
26509
  };
26233
26510
  };
26234
- readonly ageAssuranceState: {
26235
- readonly type: "object";
26236
- readonly description: "The computed state of the age assurance process, returned to the user in question on certain authenticated requests.";
26237
- readonly required: ["status"];
26238
- readonly properties: {
26239
- readonly lastInitiatedAt: {
26240
- readonly type: "string";
26241
- readonly format: "datetime";
26242
- readonly description: "The timestamp when this state was last updated.";
26243
- };
26244
- readonly status: {
26245
- readonly type: "string";
26246
- readonly description: "The status of the age assurance process.";
26247
- readonly knownValues: ["unknown", "pending", "assured", "blocked"];
26511
+ readonly ageAssuranceState: {
26512
+ readonly type: "object";
26513
+ readonly description: "The computed state of the age assurance process, returned to the user in question on certain authenticated requests.";
26514
+ readonly required: ["status"];
26515
+ readonly properties: {
26516
+ readonly lastInitiatedAt: {
26517
+ readonly type: "string";
26518
+ readonly format: "datetime";
26519
+ readonly description: "The timestamp when this state was last updated.";
26520
+ };
26521
+ readonly status: {
26522
+ readonly type: "string";
26523
+ readonly description: "The status of the age assurance process.";
26524
+ readonly knownValues: ["unknown", "pending", "assured", "blocked"];
26525
+ };
26526
+ };
26527
+ };
26528
+ readonly ageAssuranceEvent: {
26529
+ readonly type: "object";
26530
+ readonly description: "Object used to store age assurance data in stash.";
26531
+ readonly required: ["createdAt", "status", "attemptId"];
26532
+ readonly properties: {
26533
+ readonly createdAt: {
26534
+ readonly type: "string";
26535
+ readonly format: "datetime";
26536
+ readonly description: "The date and time of this write operation.";
26537
+ };
26538
+ readonly status: {
26539
+ readonly type: "string";
26540
+ readonly description: "The status of the age assurance process.";
26541
+ readonly knownValues: ["unknown", "pending", "assured"];
26542
+ };
26543
+ readonly attemptId: {
26544
+ readonly type: "string";
26545
+ readonly description: "The unique identifier for this instance of the age assurance flow, in UUID format.";
26546
+ };
26547
+ readonly email: {
26548
+ readonly type: "string";
26549
+ readonly description: "The email used for AA.";
26550
+ };
26551
+ readonly initIp: {
26552
+ readonly type: "string";
26553
+ readonly description: "The IP address used when initiating the AA flow.";
26554
+ };
26555
+ readonly initUa: {
26556
+ readonly type: "string";
26557
+ readonly description: "The user agent used when initiating the AA flow.";
26558
+ };
26559
+ readonly completeIp: {
26560
+ readonly type: "string";
26561
+ readonly description: "The IP address used when completing the AA flow.";
26562
+ };
26563
+ readonly completeUa: {
26564
+ readonly type: "string";
26565
+ readonly description: "The user agent used when completing the AA flow.";
26566
+ };
26567
+ };
26568
+ };
26569
+ };
26570
+ } | {
26571
+ readonly lexicon: 1;
26572
+ readonly id: "app.bsky.unspecced.getAgeAssuranceState";
26573
+ readonly defs: {
26574
+ readonly main: {
26575
+ readonly type: "query";
26576
+ readonly description: "Returns the current state of the age assurance process for an account. This is used to check if the user has completed age assurance or if further action is required.";
26577
+ readonly output: {
26578
+ readonly encoding: "application/json";
26579
+ readonly schema: {
26580
+ readonly type: "ref";
26581
+ readonly ref: "lex:app.bsky.unspecced.defs#ageAssuranceState";
26582
+ };
26583
+ };
26584
+ };
26585
+ };
26586
+ } | {
26587
+ readonly lexicon: 1;
26588
+ readonly id: "app.bsky.unspecced.getConfig";
26589
+ readonly defs: {
26590
+ readonly main: {
26591
+ readonly type: "query";
26592
+ readonly description: "Get miscellaneous runtime configuration.";
26593
+ readonly output: {
26594
+ readonly encoding: "application/json";
26595
+ readonly schema: {
26596
+ readonly type: "object";
26597
+ readonly required: [];
26598
+ readonly properties: {
26599
+ readonly checkEmailConfirmed: {
26600
+ readonly type: "boolean";
26601
+ };
26602
+ readonly liveNow: {
26603
+ readonly type: "array";
26604
+ readonly items: {
26605
+ readonly type: "ref";
26606
+ readonly ref: "lex:app.bsky.unspecced.getConfig#liveNowConfig";
26607
+ };
26608
+ };
26609
+ };
26610
+ };
26611
+ };
26612
+ };
26613
+ readonly liveNowConfig: {
26614
+ readonly type: "object";
26615
+ readonly required: ["did", "domains"];
26616
+ readonly properties: {
26617
+ readonly did: {
26618
+ readonly type: "string";
26619
+ readonly format: "did";
26620
+ };
26621
+ readonly domains: {
26622
+ readonly type: "array";
26623
+ readonly items: {
26624
+ readonly type: "string";
26625
+ };
26626
+ };
26627
+ };
26628
+ };
26629
+ };
26630
+ } | {
26631
+ readonly lexicon: 1;
26632
+ readonly id: "app.bsky.unspecced.getOnboardingSuggestedStarterPacks";
26633
+ readonly defs: {
26634
+ readonly main: {
26635
+ readonly type: "query";
26636
+ readonly description: "Get a list of suggested starterpacks for onboarding";
26637
+ readonly parameters: {
26638
+ readonly type: "params";
26639
+ readonly properties: {
26640
+ readonly limit: {
26641
+ readonly type: "integer";
26642
+ readonly minimum: 1;
26643
+ readonly maximum: 25;
26644
+ readonly default: 10;
26645
+ };
26646
+ };
26647
+ };
26648
+ readonly output: {
26649
+ readonly encoding: "application/json";
26650
+ readonly schema: {
26651
+ readonly type: "object";
26652
+ readonly required: ["starterPacks"];
26653
+ readonly properties: {
26654
+ readonly starterPacks: {
26655
+ readonly type: "array";
26656
+ readonly items: {
26657
+ readonly type: "ref";
26658
+ readonly ref: "lex:app.bsky.graph.defs#starterPackView";
26659
+ };
26660
+ };
26661
+ };
26662
+ };
26663
+ };
26664
+ };
26665
+ };
26666
+ } | {
26667
+ readonly lexicon: 1;
26668
+ readonly id: "app.bsky.unspecced.getOnboardingSuggestedStarterPacksSkeleton";
26669
+ readonly defs: {
26670
+ readonly main: {
26671
+ readonly type: "query";
26672
+ readonly description: "Get a skeleton of suggested starterpacks for onboarding. Intended to be called and hydrated by app.bsky.unspecced.getOnboardingSuggestedStarterPacks";
26673
+ readonly parameters: {
26674
+ readonly type: "params";
26675
+ readonly properties: {
26676
+ readonly viewer: {
26677
+ readonly type: "string";
26678
+ readonly format: "did";
26679
+ readonly description: "DID of the account making the request (not included for public/unauthenticated queries).";
26680
+ };
26681
+ readonly limit: {
26682
+ readonly type: "integer";
26683
+ readonly minimum: 1;
26684
+ readonly maximum: 25;
26685
+ readonly default: 10;
26686
+ };
26687
+ };
26688
+ };
26689
+ readonly output: {
26690
+ readonly encoding: "application/json";
26691
+ readonly schema: {
26692
+ readonly type: "object";
26693
+ readonly required: ["starterPacks"];
26694
+ readonly properties: {
26695
+ readonly starterPacks: {
26696
+ readonly type: "array";
26697
+ readonly items: {
26698
+ readonly type: "string";
26699
+ readonly format: "at-uri";
26700
+ };
26701
+ };
26702
+ };
26703
+ };
26704
+ };
26705
+ };
26706
+ };
26707
+ } | {
26708
+ readonly lexicon: 1;
26709
+ readonly id: "app.bsky.unspecced.getOnboardingSuggestedUsersSkeleton";
26710
+ readonly defs: {
26711
+ readonly main: {
26712
+ readonly type: "query";
26713
+ readonly description: "Get a skeleton of suggested users for onboarding. Intended to be called and hydrated by app.bsky.unspecced.getSuggestedOnboardingUsers";
26714
+ readonly parameters: {
26715
+ readonly type: "params";
26716
+ readonly properties: {
26717
+ readonly viewer: {
26718
+ readonly type: "string";
26719
+ readonly format: "did";
26720
+ readonly description: "DID of the account making the request (not included for public/unauthenticated queries).";
26721
+ };
26722
+ readonly category: {
26723
+ readonly type: "string";
26724
+ readonly description: "Category of users to get suggestions for.";
26725
+ };
26726
+ readonly limit: {
26727
+ readonly type: "integer";
26728
+ readonly minimum: 1;
26729
+ readonly maximum: 50;
26730
+ readonly default: 25;
26731
+ };
26732
+ };
26733
+ };
26734
+ readonly output: {
26735
+ readonly encoding: "application/json";
26736
+ readonly schema: {
26737
+ readonly type: "object";
26738
+ readonly required: ["dids"];
26739
+ readonly properties: {
26740
+ readonly dids: {
26741
+ readonly type: "array";
26742
+ readonly items: {
26743
+ readonly type: "string";
26744
+ readonly format: "did";
26745
+ };
26746
+ };
26747
+ readonly recId: {
26748
+ readonly type: "string";
26749
+ readonly description: "DEPRECATED: use recIdStr instead.";
26750
+ };
26751
+ readonly recIdStr: {
26752
+ readonly type: "string";
26753
+ readonly description: "Snowflake for this recommendation, use when submitting recommendation events.";
26754
+ };
26755
+ };
26756
+ };
26757
+ };
26758
+ };
26759
+ };
26760
+ } | {
26761
+ readonly lexicon: 1;
26762
+ readonly id: "app.bsky.unspecced.getPopularFeedGenerators";
26763
+ readonly defs: {
26764
+ readonly main: {
26765
+ readonly type: "query";
26766
+ readonly description: "An unspecced view of globally popular feed generators.";
26767
+ readonly parameters: {
26768
+ readonly type: "params";
26769
+ readonly properties: {
26770
+ readonly limit: {
26771
+ readonly type: "integer";
26772
+ readonly minimum: 1;
26773
+ readonly maximum: 100;
26774
+ readonly default: 50;
26775
+ };
26776
+ readonly cursor: {
26777
+ readonly type: "string";
26778
+ };
26779
+ readonly query: {
26780
+ readonly type: "string";
26781
+ };
26248
26782
  };
26249
26783
  };
26250
- };
26251
- readonly ageAssuranceEvent: {
26252
- readonly type: "object";
26253
- readonly description: "Object used to store age assurance data in stash.";
26254
- readonly required: ["createdAt", "status", "attemptId"];
26255
- readonly properties: {
26256
- readonly createdAt: {
26257
- readonly type: "string";
26258
- readonly format: "datetime";
26259
- readonly description: "The date and time of this write operation.";
26260
- };
26261
- readonly status: {
26262
- readonly type: "string";
26263
- readonly description: "The status of the age assurance process.";
26264
- readonly knownValues: ["unknown", "pending", "assured"];
26265
- };
26266
- readonly attemptId: {
26267
- readonly type: "string";
26268
- readonly description: "The unique identifier for this instance of the age assurance flow, in UUID format.";
26269
- };
26270
- readonly email: {
26271
- readonly type: "string";
26272
- readonly description: "The email used for AA.";
26273
- };
26274
- readonly initIp: {
26275
- readonly type: "string";
26276
- readonly description: "The IP address used when initiating the AA flow.";
26277
- };
26278
- readonly initUa: {
26279
- readonly type: "string";
26280
- readonly description: "The user agent used when initiating the AA flow.";
26281
- };
26282
- readonly completeIp: {
26283
- readonly type: "string";
26284
- readonly description: "The IP address used when completing the AA flow.";
26285
- };
26286
- readonly completeUa: {
26287
- readonly type: "string";
26288
- readonly description: "The user agent used when completing the AA flow.";
26784
+ readonly output: {
26785
+ readonly encoding: "application/json";
26786
+ readonly schema: {
26787
+ readonly type: "object";
26788
+ readonly required: ["feeds"];
26789
+ readonly properties: {
26790
+ readonly cursor: {
26791
+ readonly type: "string";
26792
+ };
26793
+ readonly feeds: {
26794
+ readonly type: "array";
26795
+ readonly items: {
26796
+ readonly type: "ref";
26797
+ readonly ref: "lex:app.bsky.feed.defs#generatorView";
26798
+ };
26799
+ };
26800
+ };
26289
26801
  };
26290
26802
  };
26291
26803
  };
26292
26804
  };
26293
26805
  } | {
26294
26806
  readonly lexicon: 1;
26295
- readonly id: "app.bsky.unspecced.getAgeAssuranceState";
26807
+ readonly id: "app.bsky.unspecced.getPostThreadOtherV2";
26296
26808
  readonly defs: {
26297
26809
  readonly main: {
26298
26810
  readonly type: "query";
26299
- readonly description: "Returns the current state of the age assurance process for an account. This is used to check if the user has completed age assurance or if further action is required.";
26811
+ readonly description: "(NOTE: this endpoint is under development and WILL change without notice. Don't use it until it is moved out of `unspecced` or your application WILL break) Get additional posts under a thread e.g. replies hidden by threadgate. Based on an anchor post at any depth of the tree, returns top-level replies below that anchor. It does not include ancestors nor the anchor itself. This should be called after exhausting `app.bsky.unspecced.getPostThreadV2`. Does not require auth, but additional metadata and filtering will be applied for authed requests.";
26812
+ readonly parameters: {
26813
+ readonly type: "params";
26814
+ readonly required: ["anchor"];
26815
+ readonly properties: {
26816
+ readonly anchor: {
26817
+ readonly type: "string";
26818
+ readonly format: "at-uri";
26819
+ readonly description: "Reference (AT-URI) to post record. This is the anchor post.";
26820
+ };
26821
+ };
26822
+ };
26300
26823
  readonly output: {
26301
26824
  readonly encoding: "application/json";
26302
26825
  readonly schema: {
26303
- readonly type: "ref";
26304
- readonly ref: "lex:app.bsky.unspecced.defs#ageAssuranceState";
26826
+ readonly type: "object";
26827
+ readonly required: ["thread"];
26828
+ readonly properties: {
26829
+ readonly thread: {
26830
+ readonly type: "array";
26831
+ readonly description: "A flat list of other thread items. The depth of each item is indicated by the depth property inside the item.";
26832
+ readonly items: {
26833
+ readonly type: "ref";
26834
+ readonly ref: "lex:app.bsky.unspecced.getPostThreadOtherV2#threadItem";
26835
+ };
26836
+ };
26837
+ };
26838
+ };
26839
+ };
26840
+ };
26841
+ readonly threadItem: {
26842
+ readonly type: "object";
26843
+ readonly required: ["uri", "depth", "value"];
26844
+ readonly properties: {
26845
+ readonly uri: {
26846
+ readonly type: "string";
26847
+ readonly format: "at-uri";
26848
+ };
26849
+ readonly depth: {
26850
+ readonly type: "integer";
26851
+ readonly description: "The nesting level of this item in the thread. Depth 0 means the anchor item. Items above have negative depths, items below have positive depths.";
26852
+ };
26853
+ readonly value: {
26854
+ readonly type: "union";
26855
+ readonly refs: ["lex:app.bsky.unspecced.defs#threadItemPost"];
26305
26856
  };
26306
26857
  };
26307
26858
  };
26308
26859
  };
26309
26860
  } | {
26310
26861
  readonly lexicon: 1;
26311
- readonly id: "app.bsky.unspecced.getConfig";
26862
+ readonly id: "app.bsky.unspecced.getPostThreadV2";
26312
26863
  readonly defs: {
26313
26864
  readonly main: {
26314
26865
  readonly type: "query";
26315
- readonly description: "Get miscellaneous runtime configuration.";
26866
+ readonly description: "(NOTE: this endpoint is under development and WILL change without notice. Don't use it until it is moved out of `unspecced` or your application WILL break) Get posts in a thread. It is based in an anchor post at any depth of the tree, and returns posts above it (recursively resolving the parent, without further branching to their replies) and below it (recursive replies, with branching to their replies). Does not require auth, but additional metadata and filtering will be applied for authed requests.";
26867
+ readonly parameters: {
26868
+ readonly type: "params";
26869
+ readonly required: ["anchor"];
26870
+ readonly properties: {
26871
+ readonly anchor: {
26872
+ readonly type: "string";
26873
+ readonly format: "at-uri";
26874
+ readonly description: "Reference (AT-URI) to post record. This is the anchor post, and the thread will be built around it. It can be any post in the tree, not necessarily a root post.";
26875
+ };
26876
+ readonly above: {
26877
+ readonly type: "boolean";
26878
+ readonly description: "Whether to include parents above the anchor.";
26879
+ readonly default: true;
26880
+ };
26881
+ readonly below: {
26882
+ readonly type: "integer";
26883
+ readonly description: "How many levels of replies to include below the anchor.";
26884
+ readonly default: 6;
26885
+ readonly minimum: 0;
26886
+ readonly maximum: 20;
26887
+ };
26888
+ readonly branchingFactor: {
26889
+ readonly type: "integer";
26890
+ readonly description: "Maximum of replies to include at each level of the thread, except for the direct replies to the anchor, which are (NOTE: currently, during unspecced phase) all returned (NOTE: later they might be paginated).";
26891
+ readonly default: 10;
26892
+ readonly minimum: 0;
26893
+ readonly maximum: 100;
26894
+ };
26895
+ readonly sort: {
26896
+ readonly type: "string";
26897
+ readonly description: "Sorting for the thread replies.";
26898
+ readonly knownValues: ["newest", "oldest", "top"];
26899
+ readonly default: "oldest";
26900
+ };
26901
+ };
26902
+ };
26316
26903
  readonly output: {
26317
26904
  readonly encoding: "application/json";
26318
26905
  readonly schema: {
26319
26906
  readonly type: "object";
26320
- readonly required: [];
26907
+ readonly required: ["thread", "hasOtherReplies"];
26321
26908
  readonly properties: {
26322
- readonly checkEmailConfirmed: {
26323
- readonly type: "boolean";
26324
- };
26325
- readonly liveNow: {
26909
+ readonly thread: {
26326
26910
  readonly type: "array";
26911
+ readonly description: "A flat list of thread items. The depth of each item is indicated by the depth property inside the item.";
26327
26912
  readonly items: {
26328
26913
  readonly type: "ref";
26329
- readonly ref: "lex:app.bsky.unspecced.getConfig#liveNowConfig";
26914
+ readonly ref: "lex:app.bsky.unspecced.getPostThreadV2#threadItem";
26330
26915
  };
26331
26916
  };
26917
+ readonly threadgate: {
26918
+ readonly type: "ref";
26919
+ readonly ref: "lex:app.bsky.feed.defs#threadgateView";
26920
+ };
26921
+ readonly hasOtherReplies: {
26922
+ readonly type: "boolean";
26923
+ readonly description: "Whether this thread has additional replies. If true, a call can be made to the `getPostThreadOtherV2` endpoint to retrieve them.";
26924
+ };
26332
26925
  };
26333
26926
  };
26334
26927
  };
26335
26928
  };
26336
- readonly liveNowConfig: {
26929
+ readonly threadItem: {
26337
26930
  readonly type: "object";
26338
- readonly required: ["did", "domains"];
26931
+ readonly required: ["uri", "depth", "value"];
26339
26932
  readonly properties: {
26340
- readonly did: {
26933
+ readonly uri: {
26341
26934
  readonly type: "string";
26342
- readonly format: "did";
26935
+ readonly format: "at-uri";
26343
26936
  };
26344
- readonly domains: {
26345
- readonly type: "array";
26346
- readonly items: {
26347
- readonly type: "string";
26348
- };
26937
+ readonly depth: {
26938
+ readonly type: "integer";
26939
+ readonly description: "The nesting level of this item in the thread. Depth 0 means the anchor item. Items above have negative depths, items below have positive depths.";
26940
+ };
26941
+ readonly value: {
26942
+ readonly type: "union";
26943
+ readonly refs: ["lex:app.bsky.unspecced.defs#threadItemPost", "lex:app.bsky.unspecced.defs#threadItemNoUnauthenticated", "lex:app.bsky.unspecced.defs#threadItemNotFound", "lex:app.bsky.unspecced.defs#threadItemBlocked"];
26349
26944
  };
26350
26945
  };
26351
26946
  };
26352
26947
  };
26353
26948
  } | {
26354
26949
  readonly lexicon: 1;
26355
- readonly id: "app.bsky.unspecced.getOnboardingSuggestedStarterPacks";
26950
+ readonly id: "app.bsky.unspecced.getSuggestedFeeds";
26356
26951
  readonly defs: {
26357
26952
  readonly main: {
26358
26953
  readonly type: "query";
26359
- readonly description: "Get a list of suggested starterpacks for onboarding";
26954
+ readonly description: "Get a list of suggested feeds";
26360
26955
  readonly parameters: {
26361
26956
  readonly type: "params";
26362
26957
  readonly properties: {
@@ -26372,13 +26967,13 @@ export declare const schemas: ({
26372
26967
  readonly encoding: "application/json";
26373
26968
  readonly schema: {
26374
26969
  readonly type: "object";
26375
- readonly required: ["starterPacks"];
26970
+ readonly required: ["feeds"];
26376
26971
  readonly properties: {
26377
- readonly starterPacks: {
26972
+ readonly feeds: {
26378
26973
  readonly type: "array";
26379
26974
  readonly items: {
26380
26975
  readonly type: "ref";
26381
- readonly ref: "lex:app.bsky.graph.defs#starterPackView";
26976
+ readonly ref: "lex:app.bsky.feed.defs#generatorView";
26382
26977
  };
26383
26978
  };
26384
26979
  };
@@ -26388,11 +26983,11 @@ export declare const schemas: ({
26388
26983
  };
26389
26984
  } | {
26390
26985
  readonly lexicon: 1;
26391
- readonly id: "app.bsky.unspecced.getOnboardingSuggestedStarterPacksSkeleton";
26986
+ readonly id: "app.bsky.unspecced.getSuggestedFeedsSkeleton";
26392
26987
  readonly defs: {
26393
26988
  readonly main: {
26394
26989
  readonly type: "query";
26395
- readonly description: "Get a skeleton of suggested starterpacks for onboarding. Intended to be called and hydrated by app.bsky.unspecced.getOnboardingSuggestedStarterPacks";
26990
+ readonly description: "Get a skeleton of suggested feeds. Intended to be called and hydrated by app.bsky.unspecced.getSuggestedFeeds";
26396
26991
  readonly parameters: {
26397
26992
  readonly type: "params";
26398
26993
  readonly properties: {
@@ -26413,9 +27008,9 @@ export declare const schemas: ({
26413
27008
  readonly encoding: "application/json";
26414
27009
  readonly schema: {
26415
27010
  readonly type: "object";
26416
- readonly required: ["starterPacks"];
27011
+ readonly required: ["feeds"];
26417
27012
  readonly properties: {
26418
- readonly starterPacks: {
27013
+ readonly feeds: {
26419
27014
  readonly type: "array";
26420
27015
  readonly items: {
26421
27016
  readonly type: "string";
@@ -26429,19 +27024,14 @@ export declare const schemas: ({
26429
27024
  };
26430
27025
  } | {
26431
27026
  readonly lexicon: 1;
26432
- readonly id: "app.bsky.unspecced.getOnboardingSuggestedUsersSkeleton";
27027
+ readonly id: "app.bsky.unspecced.getSuggestedOnboardingUsers";
26433
27028
  readonly defs: {
26434
27029
  readonly main: {
26435
27030
  readonly type: "query";
26436
- readonly description: "Get a skeleton of suggested users for onboarding. Intended to be called and hydrated by app.bsky.unspecced.getSuggestedOnboardingUsers";
27031
+ readonly description: "Get a list of suggested users for onboarding";
26437
27032
  readonly parameters: {
26438
27033
  readonly type: "params";
26439
27034
  readonly properties: {
26440
- readonly viewer: {
26441
- readonly type: "string";
26442
- readonly format: "did";
26443
- readonly description: "DID of the account making the request (not included for public/unauthenticated queries).";
26444
- };
26445
27035
  readonly category: {
26446
27036
  readonly type: "string";
26447
27037
  readonly description: "Category of users to get suggestions for.";
@@ -26458,13 +27048,13 @@ export declare const schemas: ({
26458
27048
  readonly encoding: "application/json";
26459
27049
  readonly schema: {
26460
27050
  readonly type: "object";
26461
- readonly required: ["dids"];
27051
+ readonly required: ["actors"];
26462
27052
  readonly properties: {
26463
- readonly dids: {
27053
+ readonly actors: {
26464
27054
  readonly type: "array";
26465
27055
  readonly items: {
26466
- readonly type: "string";
26467
- readonly format: "did";
27056
+ readonly type: "ref";
27057
+ readonly ref: "lex:app.bsky.actor.defs#profileView";
26468
27058
  };
26469
27059
  };
26470
27060
  readonly recId: {
@@ -26482,25 +27072,19 @@ export declare const schemas: ({
26482
27072
  };
26483
27073
  } | {
26484
27074
  readonly lexicon: 1;
26485
- readonly id: "app.bsky.unspecced.getPopularFeedGenerators";
27075
+ readonly id: "app.bsky.unspecced.getSuggestedStarterPacks";
26486
27076
  readonly defs: {
26487
27077
  readonly main: {
26488
27078
  readonly type: "query";
26489
- readonly description: "An unspecced view of globally popular feed generators.";
27079
+ readonly description: "Get a list of suggested starterpacks";
26490
27080
  readonly parameters: {
26491
27081
  readonly type: "params";
26492
27082
  readonly properties: {
26493
27083
  readonly limit: {
26494
27084
  readonly type: "integer";
26495
27085
  readonly minimum: 1;
26496
- readonly maximum: 100;
26497
- readonly default: 50;
26498
- };
26499
- readonly cursor: {
26500
- readonly type: "string";
26501
- };
26502
- readonly query: {
26503
- readonly type: "string";
27086
+ readonly maximum: 25;
27087
+ readonly default: 10;
26504
27088
  };
26505
27089
  };
26506
27090
  };
@@ -26508,16 +27092,13 @@ export declare const schemas: ({
26508
27092
  readonly encoding: "application/json";
26509
27093
  readonly schema: {
26510
27094
  readonly type: "object";
26511
- readonly required: ["feeds"];
27095
+ readonly required: ["starterPacks"];
26512
27096
  readonly properties: {
26513
- readonly cursor: {
26514
- readonly type: "string";
26515
- };
26516
- readonly feeds: {
27097
+ readonly starterPacks: {
26517
27098
  readonly type: "array";
26518
27099
  readonly items: {
26519
27100
  readonly type: "ref";
26520
- readonly ref: "lex:app.bsky.feed.defs#generatorView";
27101
+ readonly ref: "lex:app.bsky.graph.defs#starterPackView";
26521
27102
  };
26522
27103
  };
26523
27104
  };
@@ -26527,19 +27108,24 @@ export declare const schemas: ({
26527
27108
  };
26528
27109
  } | {
26529
27110
  readonly lexicon: 1;
26530
- readonly id: "app.bsky.unspecced.getPostThreadOtherV2";
27111
+ readonly id: "app.bsky.unspecced.getSuggestedStarterPacksSkeleton";
26531
27112
  readonly defs: {
26532
27113
  readonly main: {
26533
27114
  readonly type: "query";
26534
- readonly description: "(NOTE: this endpoint is under development and WILL change without notice. Don't use it until it is moved out of `unspecced` or your application WILL break) Get additional posts under a thread e.g. replies hidden by threadgate. Based on an anchor post at any depth of the tree, returns top-level replies below that anchor. It does not include ancestors nor the anchor itself. This should be called after exhausting `app.bsky.unspecced.getPostThreadV2`. Does not require auth, but additional metadata and filtering will be applied for authed requests.";
27115
+ readonly description: "Get a skeleton of suggested starterpacks. Intended to be called and hydrated by app.bsky.unspecced.getSuggestedStarterpacks";
26535
27116
  readonly parameters: {
26536
27117
  readonly type: "params";
26537
- readonly required: ["anchor"];
26538
27118
  readonly properties: {
26539
- readonly anchor: {
27119
+ readonly viewer: {
26540
27120
  readonly type: "string";
26541
- readonly format: "at-uri";
26542
- readonly description: "Reference (AT-URI) to post record. This is the anchor post.";
27121
+ readonly format: "did";
27122
+ readonly description: "DID of the account making the request (not included for public/unauthenticated queries).";
27123
+ };
27124
+ readonly limit: {
27125
+ readonly type: "integer";
27126
+ readonly minimum: 1;
27127
+ readonly maximum: 25;
27128
+ readonly default: 10;
26543
27129
  };
26544
27130
  };
26545
27131
  };
@@ -26547,79 +27133,39 @@ export declare const schemas: ({
26547
27133
  readonly encoding: "application/json";
26548
27134
  readonly schema: {
26549
27135
  readonly type: "object";
26550
- readonly required: ["thread"];
27136
+ readonly required: ["starterPacks"];
26551
27137
  readonly properties: {
26552
- readonly thread: {
27138
+ readonly starterPacks: {
26553
27139
  readonly type: "array";
26554
- readonly description: "A flat list of other thread items. The depth of each item is indicated by the depth property inside the item.";
26555
27140
  readonly items: {
26556
- readonly type: "ref";
26557
- readonly ref: "lex:app.bsky.unspecced.getPostThreadOtherV2#threadItem";
27141
+ readonly type: "string";
27142
+ readonly format: "at-uri";
26558
27143
  };
26559
27144
  };
26560
27145
  };
26561
27146
  };
26562
27147
  };
26563
27148
  };
26564
- readonly threadItem: {
26565
- readonly type: "object";
26566
- readonly required: ["uri", "depth", "value"];
26567
- readonly properties: {
26568
- readonly uri: {
26569
- readonly type: "string";
26570
- readonly format: "at-uri";
26571
- };
26572
- readonly depth: {
26573
- readonly type: "integer";
26574
- readonly description: "The nesting level of this item in the thread. Depth 0 means the anchor item. Items above have negative depths, items below have positive depths.";
26575
- };
26576
- readonly value: {
26577
- readonly type: "union";
26578
- readonly refs: ["lex:app.bsky.unspecced.defs#threadItemPost"];
26579
- };
26580
- };
26581
- };
26582
27149
  };
26583
27150
  } | {
26584
27151
  readonly lexicon: 1;
26585
- readonly id: "app.bsky.unspecced.getPostThreadV2";
27152
+ readonly id: "app.bsky.unspecced.getSuggestedUsers";
26586
27153
  readonly defs: {
26587
27154
  readonly main: {
26588
27155
  readonly type: "query";
26589
- readonly description: "(NOTE: this endpoint is under development and WILL change without notice. Don't use it until it is moved out of `unspecced` or your application WILL break) Get posts in a thread. It is based in an anchor post at any depth of the tree, and returns posts above it (recursively resolving the parent, without further branching to their replies) and below it (recursive replies, with branching to their replies). Does not require auth, but additional metadata and filtering will be applied for authed requests.";
27156
+ readonly description: "Get a list of suggested users";
26590
27157
  readonly parameters: {
26591
27158
  readonly type: "params";
26592
- readonly required: ["anchor"];
26593
27159
  readonly properties: {
26594
- readonly anchor: {
27160
+ readonly category: {
26595
27161
  readonly type: "string";
26596
- readonly format: "at-uri";
26597
- readonly description: "Reference (AT-URI) to post record. This is the anchor post, and the thread will be built around it. It can be any post in the tree, not necessarily a root post.";
26598
- };
26599
- readonly above: {
26600
- readonly type: "boolean";
26601
- readonly description: "Whether to include parents above the anchor.";
26602
- readonly default: true;
26603
- };
26604
- readonly below: {
26605
- readonly type: "integer";
26606
- readonly description: "How many levels of replies to include below the anchor.";
26607
- readonly default: 6;
26608
- readonly minimum: 0;
26609
- readonly maximum: 20;
27162
+ readonly description: "Category of users to get suggestions for.";
26610
27163
  };
26611
- readonly branchingFactor: {
27164
+ readonly limit: {
26612
27165
  readonly type: "integer";
26613
- readonly description: "Maximum of replies to include at each level of the thread, except for the direct replies to the anchor, which are (NOTE: currently, during unspecced phase) all returned (NOTE: later they might be paginated).";
26614
- readonly default: 10;
26615
- readonly minimum: 0;
26616
- readonly maximum: 100;
26617
- };
26618
- readonly sort: {
26619
- readonly type: "string";
26620
- readonly description: "Sorting for the thread replies.";
26621
- readonly knownValues: ["newest", "oldest", "top"];
26622
- readonly default: "oldest";
27166
+ readonly minimum: 1;
27167
+ readonly maximum: 50;
27168
+ readonly default: 25;
26623
27169
  };
26624
27170
  };
26625
27171
  };
@@ -26627,62 +27173,43 @@ export declare const schemas: ({
26627
27173
  readonly encoding: "application/json";
26628
27174
  readonly schema: {
26629
27175
  readonly type: "object";
26630
- readonly required: ["thread", "hasOtherReplies"];
27176
+ readonly required: ["actors"];
26631
27177
  readonly properties: {
26632
- readonly thread: {
27178
+ readonly actors: {
26633
27179
  readonly type: "array";
26634
- readonly description: "A flat list of thread items. The depth of each item is indicated by the depth property inside the item.";
26635
27180
  readonly items: {
26636
27181
  readonly type: "ref";
26637
- readonly ref: "lex:app.bsky.unspecced.getPostThreadV2#threadItem";
27182
+ readonly ref: "lex:app.bsky.actor.defs#profileView";
26638
27183
  };
26639
27184
  };
26640
- readonly threadgate: {
26641
- readonly type: "ref";
26642
- readonly ref: "lex:app.bsky.feed.defs#threadgateView";
27185
+ readonly recId: {
27186
+ readonly type: "string";
27187
+ readonly description: "DEPRECATED: use recIdStr instead.";
26643
27188
  };
26644
- readonly hasOtherReplies: {
26645
- readonly type: "boolean";
26646
- readonly description: "Whether this thread has additional replies. If true, a call can be made to the `getPostThreadOtherV2` endpoint to retrieve them.";
27189
+ readonly recIdStr: {
27190
+ readonly type: "string";
27191
+ readonly description: "Snowflake for this recommendation, use when submitting recommendation events.";
26647
27192
  };
26648
27193
  };
26649
27194
  };
26650
27195
  };
26651
27196
  };
26652
- readonly threadItem: {
26653
- readonly type: "object";
26654
- readonly required: ["uri", "depth", "value"];
26655
- readonly properties: {
26656
- readonly uri: {
26657
- readonly type: "string";
26658
- readonly format: "at-uri";
26659
- };
26660
- readonly depth: {
26661
- readonly type: "integer";
26662
- readonly description: "The nesting level of this item in the thread. Depth 0 means the anchor item. Items above have negative depths, items below have positive depths.";
26663
- };
26664
- readonly value: {
26665
- readonly type: "union";
26666
- readonly refs: ["lex:app.bsky.unspecced.defs#threadItemPost", "lex:app.bsky.unspecced.defs#threadItemNoUnauthenticated", "lex:app.bsky.unspecced.defs#threadItemNotFound", "lex:app.bsky.unspecced.defs#threadItemBlocked"];
26667
- };
26668
- };
26669
- };
26670
27197
  };
26671
27198
  } | {
26672
27199
  readonly lexicon: 1;
26673
- readonly id: "app.bsky.unspecced.getSuggestedFeeds";
27200
+ readonly id: "app.bsky.unspecced.getSuggestedUsersForDiscover";
26674
27201
  readonly defs: {
26675
27202
  readonly main: {
26676
27203
  readonly type: "query";
26677
- readonly description: "Get a list of suggested feeds";
27204
+ readonly description: "Get a list of suggested users for the Discover page";
26678
27205
  readonly parameters: {
26679
27206
  readonly type: "params";
26680
27207
  readonly properties: {
26681
27208
  readonly limit: {
26682
27209
  readonly type: "integer";
26683
27210
  readonly minimum: 1;
26684
- readonly maximum: 25;
26685
- readonly default: 10;
27211
+ readonly maximum: 50;
27212
+ readonly default: 25;
26686
27213
  };
26687
27214
  };
26688
27215
  };
@@ -26690,15 +27217,19 @@ export declare const schemas: ({
26690
27217
  readonly encoding: "application/json";
26691
27218
  readonly schema: {
26692
27219
  readonly type: "object";
26693
- readonly required: ["feeds"];
27220
+ readonly required: ["actors"];
26694
27221
  readonly properties: {
26695
- readonly feeds: {
27222
+ readonly actors: {
26696
27223
  readonly type: "array";
26697
27224
  readonly items: {
26698
27225
  readonly type: "ref";
26699
- readonly ref: "lex:app.bsky.feed.defs#generatorView";
27226
+ readonly ref: "lex:app.bsky.actor.defs#profileView";
26700
27227
  };
26701
27228
  };
27229
+ readonly recIdStr: {
27230
+ readonly type: "string";
27231
+ readonly description: "Snowflake for this recommendation, use when submitting recommendation events.";
27232
+ };
26702
27233
  };
26703
27234
  };
26704
27235
  };
@@ -26706,11 +27237,11 @@ export declare const schemas: ({
26706
27237
  };
26707
27238
  } | {
26708
27239
  readonly lexicon: 1;
26709
- readonly id: "app.bsky.unspecced.getSuggestedFeedsSkeleton";
27240
+ readonly id: "app.bsky.unspecced.getSuggestedUsersForDiscoverSkeleton";
26710
27241
  readonly defs: {
26711
27242
  readonly main: {
26712
27243
  readonly type: "query";
26713
- readonly description: "Get a skeleton of suggested feeds. Intended to be called and hydrated by app.bsky.unspecced.getSuggestedFeeds";
27244
+ readonly description: "Get a skeleton of suggested users for the Discover page. Intended to be called and hydrated by app.bsky.unspecced.getSuggestedUsersForDiscover";
26714
27245
  readonly parameters: {
26715
27246
  readonly type: "params";
26716
27247
  readonly properties: {
@@ -26722,8 +27253,8 @@ export declare const schemas: ({
26722
27253
  readonly limit: {
26723
27254
  readonly type: "integer";
26724
27255
  readonly minimum: 1;
26725
- readonly maximum: 25;
26726
- readonly default: 10;
27256
+ readonly maximum: 50;
27257
+ readonly default: 25;
26727
27258
  };
26728
27259
  };
26729
27260
  };
@@ -26731,15 +27262,19 @@ export declare const schemas: ({
26731
27262
  readonly encoding: "application/json";
26732
27263
  readonly schema: {
26733
27264
  readonly type: "object";
26734
- readonly required: ["feeds"];
27265
+ readonly required: ["dids"];
26735
27266
  readonly properties: {
26736
- readonly feeds: {
27267
+ readonly dids: {
26737
27268
  readonly type: "array";
26738
27269
  readonly items: {
26739
27270
  readonly type: "string";
26740
- readonly format: "at-uri";
27271
+ readonly format: "did";
26741
27272
  };
26742
27273
  };
27274
+ readonly recIdStr: {
27275
+ readonly type: "string";
27276
+ readonly description: "Snowflake for this recommendation, use when submitting recommendation events.";
27277
+ };
26743
27278
  };
26744
27279
  };
26745
27280
  };
@@ -26747,11 +27282,11 @@ export declare const schemas: ({
26747
27282
  };
26748
27283
  } | {
26749
27284
  readonly lexicon: 1;
26750
- readonly id: "app.bsky.unspecced.getSuggestedOnboardingUsers";
27285
+ readonly id: "app.bsky.unspecced.getSuggestedUsersForExplore";
26751
27286
  readonly defs: {
26752
27287
  readonly main: {
26753
27288
  readonly type: "query";
26754
- readonly description: "Get a list of suggested users for onboarding";
27289
+ readonly description: "Get a list of suggested users for the Explore page";
26755
27290
  readonly parameters: {
26756
27291
  readonly type: "params";
26757
27292
  readonly properties: {
@@ -26780,10 +27315,6 @@ export declare const schemas: ({
26780
27315
  readonly ref: "lex:app.bsky.actor.defs#profileView";
26781
27316
  };
26782
27317
  };
26783
- readonly recId: {
26784
- readonly type: "string";
26785
- readonly description: "DEPRECATED: use recIdStr instead.";
26786
- };
26787
27318
  readonly recIdStr: {
26788
27319
  readonly type: "string";
26789
27320
  readonly description: "Snowflake for this recommendation, use when submitting recommendation events.";
@@ -26795,19 +27326,28 @@ export declare const schemas: ({
26795
27326
  };
26796
27327
  } | {
26797
27328
  readonly lexicon: 1;
26798
- readonly id: "app.bsky.unspecced.getSuggestedStarterPacks";
27329
+ readonly id: "app.bsky.unspecced.getSuggestedUsersForExploreSkeleton";
26799
27330
  readonly defs: {
26800
27331
  readonly main: {
26801
27332
  readonly type: "query";
26802
- readonly description: "Get a list of suggested starterpacks";
27333
+ readonly description: "Get a skeleton of suggested users for the Explore page. Intended to be called and hydrated by app.bsky.unspecced.getSuggestedUsersForExplore";
26803
27334
  readonly parameters: {
26804
27335
  readonly type: "params";
26805
27336
  readonly properties: {
27337
+ readonly viewer: {
27338
+ readonly type: "string";
27339
+ readonly format: "did";
27340
+ readonly description: "DID of the account making the request (not included for public/unauthenticated queries).";
27341
+ };
27342
+ readonly category: {
27343
+ readonly type: "string";
27344
+ readonly description: "Category of users to get suggestions for.";
27345
+ };
26806
27346
  readonly limit: {
26807
27347
  readonly type: "integer";
26808
27348
  readonly minimum: 1;
26809
- readonly maximum: 25;
26810
- readonly default: 10;
27349
+ readonly maximum: 50;
27350
+ readonly default: 25;
26811
27351
  };
26812
27352
  };
26813
27353
  };
@@ -26815,15 +27355,19 @@ export declare const schemas: ({
26815
27355
  readonly encoding: "application/json";
26816
27356
  readonly schema: {
26817
27357
  readonly type: "object";
26818
- readonly required: ["starterPacks"];
27358
+ readonly required: ["dids"];
26819
27359
  readonly properties: {
26820
- readonly starterPacks: {
27360
+ readonly dids: {
26821
27361
  readonly type: "array";
26822
27362
  readonly items: {
26823
- readonly type: "ref";
26824
- readonly ref: "lex:app.bsky.graph.defs#starterPackView";
27363
+ readonly type: "string";
27364
+ readonly format: "did";
26825
27365
  };
26826
27366
  };
27367
+ readonly recIdStr: {
27368
+ readonly type: "string";
27369
+ readonly description: "Snowflake for this recommendation, use when submitting recommendation events.";
27370
+ };
26827
27371
  };
26828
27372
  };
26829
27373
  };
@@ -26831,24 +27375,23 @@ export declare const schemas: ({
26831
27375
  };
26832
27376
  } | {
26833
27377
  readonly lexicon: 1;
26834
- readonly id: "app.bsky.unspecced.getSuggestedStarterPacksSkeleton";
27378
+ readonly id: "app.bsky.unspecced.getSuggestedUsersForSeeMore";
26835
27379
  readonly defs: {
26836
27380
  readonly main: {
26837
27381
  readonly type: "query";
26838
- readonly description: "Get a skeleton of suggested starterpacks. Intended to be called and hydrated by app.bsky.unspecced.getSuggestedStarterpacks";
27382
+ readonly description: "Get a list of suggested users for the See More page";
26839
27383
  readonly parameters: {
26840
27384
  readonly type: "params";
26841
27385
  readonly properties: {
26842
- readonly viewer: {
27386
+ readonly category: {
26843
27387
  readonly type: "string";
26844
- readonly format: "did";
26845
- readonly description: "DID of the account making the request (not included for public/unauthenticated queries).";
27388
+ readonly description: "Category of users to get suggestions for.";
26846
27389
  };
26847
27390
  readonly limit: {
26848
27391
  readonly type: "integer";
26849
27392
  readonly minimum: 1;
26850
- readonly maximum: 25;
26851
- readonly default: 10;
27393
+ readonly maximum: 50;
27394
+ readonly default: 25;
26852
27395
  };
26853
27396
  };
26854
27397
  };
@@ -26856,15 +27399,19 @@ export declare const schemas: ({
26856
27399
  readonly encoding: "application/json";
26857
27400
  readonly schema: {
26858
27401
  readonly type: "object";
26859
- readonly required: ["starterPacks"];
27402
+ readonly required: ["actors"];
26860
27403
  readonly properties: {
26861
- readonly starterPacks: {
27404
+ readonly actors: {
26862
27405
  readonly type: "array";
26863
27406
  readonly items: {
26864
- readonly type: "string";
26865
- readonly format: "at-uri";
27407
+ readonly type: "ref";
27408
+ readonly ref: "lex:app.bsky.actor.defs#profileView";
26866
27409
  };
26867
27410
  };
27411
+ readonly recIdStr: {
27412
+ readonly type: "string";
27413
+ readonly description: "Snowflake for this recommendation, use when submitting recommendation events.";
27414
+ };
26868
27415
  };
26869
27416
  };
26870
27417
  };
@@ -26872,14 +27419,19 @@ export declare const schemas: ({
26872
27419
  };
26873
27420
  } | {
26874
27421
  readonly lexicon: 1;
26875
- readonly id: "app.bsky.unspecced.getSuggestedUsers";
27422
+ readonly id: "app.bsky.unspecced.getSuggestedUsersForSeeMoreSkeleton";
26876
27423
  readonly defs: {
26877
27424
  readonly main: {
26878
27425
  readonly type: "query";
26879
- readonly description: "Get a list of suggested users";
27426
+ readonly description: "Get a skeleton of suggested users for the See More page. Intended to be called and hydrated by app.bsky.unspecced.getSuggestedUsersForSeeMore";
26880
27427
  readonly parameters: {
26881
27428
  readonly type: "params";
26882
27429
  readonly properties: {
27430
+ readonly viewer: {
27431
+ readonly type: "string";
27432
+ readonly format: "did";
27433
+ readonly description: "DID of the account making the request (not included for public/unauthenticated queries).";
27434
+ };
26883
27435
  readonly category: {
26884
27436
  readonly type: "string";
26885
27437
  readonly description: "Category of users to get suggestions for.";
@@ -26896,19 +27448,15 @@ export declare const schemas: ({
26896
27448
  readonly encoding: "application/json";
26897
27449
  readonly schema: {
26898
27450
  readonly type: "object";
26899
- readonly required: ["actors"];
27451
+ readonly required: ["dids"];
26900
27452
  readonly properties: {
26901
- readonly actors: {
27453
+ readonly dids: {
26902
27454
  readonly type: "array";
26903
27455
  readonly items: {
26904
- readonly type: "ref";
26905
- readonly ref: "lex:app.bsky.actor.defs#profileView";
27456
+ readonly type: "string";
27457
+ readonly format: "did";
26906
27458
  };
26907
27459
  };
26908
- readonly recId: {
26909
- readonly type: "string";
26910
- readonly description: "DEPRECATED: use recIdStr instead.";
26911
- };
26912
27460
  readonly recIdStr: {
26913
27461
  readonly type: "string";
26914
27462
  readonly description: "Snowflake for this recommendation, use when submitting recommendation events.";
@@ -37844,6 +38392,12 @@ export declare const ids: {
37844
38392
  readonly AppBskyUnspeccedGetSuggestedStarterPacks: "app.bsky.unspecced.getSuggestedStarterPacks";
37845
38393
  readonly AppBskyUnspeccedGetSuggestedStarterPacksSkeleton: "app.bsky.unspecced.getSuggestedStarterPacksSkeleton";
37846
38394
  readonly AppBskyUnspeccedGetSuggestedUsers: "app.bsky.unspecced.getSuggestedUsers";
38395
+ readonly AppBskyUnspeccedGetSuggestedUsersForDiscover: "app.bsky.unspecced.getSuggestedUsersForDiscover";
38396
+ readonly AppBskyUnspeccedGetSuggestedUsersForDiscoverSkeleton: "app.bsky.unspecced.getSuggestedUsersForDiscoverSkeleton";
38397
+ readonly AppBskyUnspeccedGetSuggestedUsersForExplore: "app.bsky.unspecced.getSuggestedUsersForExplore";
38398
+ readonly AppBskyUnspeccedGetSuggestedUsersForExploreSkeleton: "app.bsky.unspecced.getSuggestedUsersForExploreSkeleton";
38399
+ readonly AppBskyUnspeccedGetSuggestedUsersForSeeMore: "app.bsky.unspecced.getSuggestedUsersForSeeMore";
38400
+ readonly AppBskyUnspeccedGetSuggestedUsersForSeeMoreSkeleton: "app.bsky.unspecced.getSuggestedUsersForSeeMoreSkeleton";
37847
38401
  readonly AppBskyUnspeccedGetSuggestedUsersSkeleton: "app.bsky.unspecced.getSuggestedUsersSkeleton";
37848
38402
  readonly AppBskyUnspeccedGetSuggestionsSkeleton: "app.bsky.unspecced.getSuggestionsSkeleton";
37849
38403
  readonly AppBskyUnspeccedGetTaggedSuggestions: "app.bsky.unspecced.getTaggedSuggestions";