@atproto/api 0.19.5 → 0.19.7
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 +22 -0
- package/dist/client/index.d.ts +18 -0
- package/dist/client/index.d.ts.map +1 -1
- package/dist/client/index.js +30 -6
- package/dist/client/index.js.map +1 -1
- package/dist/client/lexicons.d.ts +572 -2
- package/dist/client/lexicons.d.ts.map +1 -1
- package/dist/client/lexicons.js +292 -1
- package/dist/client/lexicons.js.map +1 -1
- package/dist/client/types/app/bsky/actor/defs.d.ts +1 -0
- package/dist/client/types/app/bsky/actor/defs.d.ts.map +1 -1
- package/dist/client/types/app/bsky/actor/defs.js.map +1 -1
- package/dist/client/types/app/bsky/embed/images.d.ts +1 -0
- package/dist/client/types/app/bsky/embed/images.d.ts.map +1 -1
- package/dist/client/types/app/bsky/embed/images.js.map +1 -1
- package/dist/client/types/app/bsky/unspecced/getSuggestedUsersForDiscover.d.ts +25 -0
- package/dist/client/types/app/bsky/unspecced/getSuggestedUsersForDiscover.d.ts.map +1 -0
- package/dist/client/types/app/bsky/unspecced/getSuggestedUsersForDiscover.js +11 -0
- package/dist/client/types/app/bsky/unspecced/getSuggestedUsersForDiscover.js.map +1 -0
- package/dist/client/types/app/bsky/unspecced/getSuggestedUsersForDiscoverSkeleton.d.ts +26 -0
- package/dist/client/types/app/bsky/unspecced/getSuggestedUsersForDiscoverSkeleton.d.ts.map +1 -0
- package/dist/client/types/app/bsky/unspecced/getSuggestedUsersForDiscoverSkeleton.js +11 -0
- package/dist/client/types/app/bsky/unspecced/getSuggestedUsersForDiscoverSkeleton.js.map +1 -0
- package/dist/client/types/app/bsky/unspecced/getSuggestedUsersForExplore.d.ts +27 -0
- package/dist/client/types/app/bsky/unspecced/getSuggestedUsersForExplore.d.ts.map +1 -0
- package/dist/client/types/app/bsky/unspecced/getSuggestedUsersForExplore.js +11 -0
- package/dist/client/types/app/bsky/unspecced/getSuggestedUsersForExplore.js.map +1 -0
- package/dist/client/types/app/bsky/unspecced/getSuggestedUsersForExploreSkeleton.d.ts +28 -0
- package/dist/client/types/app/bsky/unspecced/getSuggestedUsersForExploreSkeleton.d.ts.map +1 -0
- package/dist/client/types/app/bsky/unspecced/getSuggestedUsersForExploreSkeleton.js +11 -0
- package/dist/client/types/app/bsky/unspecced/getSuggestedUsersForExploreSkeleton.js.map +1 -0
- package/dist/client/types/app/bsky/unspecced/getSuggestedUsersForSeeMore.d.ts +27 -0
- package/dist/client/types/app/bsky/unspecced/getSuggestedUsersForSeeMore.d.ts.map +1 -0
- package/dist/client/types/app/bsky/unspecced/getSuggestedUsersForSeeMore.js +11 -0
- package/dist/client/types/app/bsky/unspecced/getSuggestedUsersForSeeMore.js.map +1 -0
- package/dist/client/types/app/bsky/unspecced/getSuggestedUsersForSeeMoreSkeleton.d.ts +28 -0
- package/dist/client/types/app/bsky/unspecced/getSuggestedUsersForSeeMoreSkeleton.d.ts.map +1 -0
- package/dist/client/types/app/bsky/unspecced/getSuggestedUsersForSeeMoreSkeleton.js +11 -0
- package/dist/client/types/app/bsky/unspecced/getSuggestedUsersForSeeMoreSkeleton.js.map +1 -0
- package/dist/moderation/index.d.ts +1 -0
- package/dist/moderation/index.d.ts.map +1 -1
- package/dist/moderation/index.js +5 -0
- package/dist/moderation/index.js.map +1 -1
- package/dist/moderation/subjects/status.d.ts +4 -0
- package/dist/moderation/subjects/status.d.ts.map +1 -0
- package/dist/moderation/subjects/status.js +18 -0
- package/dist/moderation/subjects/status.js.map +1 -0
- package/package.json +4 -4
- package/src/client/index.ts +84 -0
- package/src/client/lexicons.ts +311 -1
- package/src/client/types/app/bsky/actor/defs.ts +1 -0
- package/src/client/types/app/bsky/embed/images.ts +1 -0
- package/src/client/types/app/bsky/unspecced/getSuggestedUsersForDiscover.ts +43 -0
- package/src/client/types/app/bsky/unspecced/getSuggestedUsersForDiscoverSkeleton.ts +44 -0
- package/src/client/types/app/bsky/unspecced/getSuggestedUsersForExplore.ts +45 -0
- package/src/client/types/app/bsky/unspecced/getSuggestedUsersForExploreSkeleton.ts +46 -0
- package/src/client/types/app/bsky/unspecced/getSuggestedUsersForSeeMore.ts +45 -0
- package/src/client/types/app/bsky/unspecced/getSuggestedUsersForSeeMoreSkeleton.ts +46 -0
- package/src/moderation/index.ts +8 -0
- package/src/moderation/subjects/status.ts +25 -0
- package/tsconfig.build.tsbuildinfo +1 -1
|
@@ -808,6 +808,13 @@ export declare const schemaDict: {
|
|
|
808
808
|
readonly description: "An optional embed associated with the status.";
|
|
809
809
|
readonly refs: ["lex:app.bsky.embed.external#view"];
|
|
810
810
|
};
|
|
811
|
+
readonly labels: {
|
|
812
|
+
readonly type: "array";
|
|
813
|
+
readonly items: {
|
|
814
|
+
readonly type: "ref";
|
|
815
|
+
readonly ref: "lex:com.atproto.label.defs#label";
|
|
816
|
+
};
|
|
817
|
+
};
|
|
811
818
|
readonly expiresAt: {
|
|
812
819
|
readonly type: "string";
|
|
813
820
|
readonly description: "The date when this status will expire. The application might choose to no longer return the status after expiration.";
|
|
@@ -2557,8 +2564,9 @@ export declare const schemaDict: {
|
|
|
2557
2564
|
readonly properties: {
|
|
2558
2565
|
readonly image: {
|
|
2559
2566
|
readonly type: "blob";
|
|
2567
|
+
readonly description: "The raw image file. May be up to 2mb, formerly limited to 1mb.";
|
|
2560
2568
|
readonly accept: ["image/*"];
|
|
2561
|
-
readonly maxSize:
|
|
2569
|
+
readonly maxSize: 2000000;
|
|
2562
2570
|
};
|
|
2563
2571
|
readonly alt: {
|
|
2564
2572
|
readonly type: "string";
|
|
@@ -8032,6 +8040,283 @@ export declare const schemaDict: {
|
|
|
8032
8040
|
};
|
|
8033
8041
|
};
|
|
8034
8042
|
};
|
|
8043
|
+
readonly AppBskyUnspeccedGetSuggestedUsersForDiscover: {
|
|
8044
|
+
readonly lexicon: 1;
|
|
8045
|
+
readonly id: "app.bsky.unspecced.getSuggestedUsersForDiscover";
|
|
8046
|
+
readonly defs: {
|
|
8047
|
+
readonly main: {
|
|
8048
|
+
readonly type: "query";
|
|
8049
|
+
readonly description: "Get a list of suggested users for the Discover page";
|
|
8050
|
+
readonly parameters: {
|
|
8051
|
+
readonly type: "params";
|
|
8052
|
+
readonly properties: {
|
|
8053
|
+
readonly limit: {
|
|
8054
|
+
readonly type: "integer";
|
|
8055
|
+
readonly minimum: 1;
|
|
8056
|
+
readonly maximum: 50;
|
|
8057
|
+
readonly default: 25;
|
|
8058
|
+
};
|
|
8059
|
+
};
|
|
8060
|
+
};
|
|
8061
|
+
readonly output: {
|
|
8062
|
+
readonly encoding: "application/json";
|
|
8063
|
+
readonly schema: {
|
|
8064
|
+
readonly type: "object";
|
|
8065
|
+
readonly required: ["actors"];
|
|
8066
|
+
readonly properties: {
|
|
8067
|
+
readonly actors: {
|
|
8068
|
+
readonly type: "array";
|
|
8069
|
+
readonly items: {
|
|
8070
|
+
readonly type: "ref";
|
|
8071
|
+
readonly ref: "lex:app.bsky.actor.defs#profileView";
|
|
8072
|
+
};
|
|
8073
|
+
};
|
|
8074
|
+
readonly recIdStr: {
|
|
8075
|
+
readonly type: "string";
|
|
8076
|
+
readonly description: "Snowflake for this recommendation, use when submitting recommendation events.";
|
|
8077
|
+
};
|
|
8078
|
+
};
|
|
8079
|
+
};
|
|
8080
|
+
};
|
|
8081
|
+
};
|
|
8082
|
+
};
|
|
8083
|
+
};
|
|
8084
|
+
readonly AppBskyUnspeccedGetSuggestedUsersForDiscoverSkeleton: {
|
|
8085
|
+
readonly lexicon: 1;
|
|
8086
|
+
readonly id: "app.bsky.unspecced.getSuggestedUsersForDiscoverSkeleton";
|
|
8087
|
+
readonly defs: {
|
|
8088
|
+
readonly main: {
|
|
8089
|
+
readonly type: "query";
|
|
8090
|
+
readonly description: "Get a skeleton of suggested users for the Discover page. Intended to be called and hydrated by app.bsky.unspecced.getSuggestedUsersForDiscover";
|
|
8091
|
+
readonly parameters: {
|
|
8092
|
+
readonly type: "params";
|
|
8093
|
+
readonly properties: {
|
|
8094
|
+
readonly viewer: {
|
|
8095
|
+
readonly type: "string";
|
|
8096
|
+
readonly format: "did";
|
|
8097
|
+
readonly description: "DID of the account making the request (not included for public/unauthenticated queries).";
|
|
8098
|
+
};
|
|
8099
|
+
readonly limit: {
|
|
8100
|
+
readonly type: "integer";
|
|
8101
|
+
readonly minimum: 1;
|
|
8102
|
+
readonly maximum: 50;
|
|
8103
|
+
readonly default: 25;
|
|
8104
|
+
};
|
|
8105
|
+
};
|
|
8106
|
+
};
|
|
8107
|
+
readonly output: {
|
|
8108
|
+
readonly encoding: "application/json";
|
|
8109
|
+
readonly schema: {
|
|
8110
|
+
readonly type: "object";
|
|
8111
|
+
readonly required: ["dids"];
|
|
8112
|
+
readonly properties: {
|
|
8113
|
+
readonly dids: {
|
|
8114
|
+
readonly type: "array";
|
|
8115
|
+
readonly items: {
|
|
8116
|
+
readonly type: "string";
|
|
8117
|
+
readonly format: "did";
|
|
8118
|
+
};
|
|
8119
|
+
};
|
|
8120
|
+
readonly recIdStr: {
|
|
8121
|
+
readonly type: "string";
|
|
8122
|
+
readonly description: "Snowflake for this recommendation, use when submitting recommendation events.";
|
|
8123
|
+
};
|
|
8124
|
+
};
|
|
8125
|
+
};
|
|
8126
|
+
};
|
|
8127
|
+
};
|
|
8128
|
+
};
|
|
8129
|
+
};
|
|
8130
|
+
readonly AppBskyUnspeccedGetSuggestedUsersForExplore: {
|
|
8131
|
+
readonly lexicon: 1;
|
|
8132
|
+
readonly id: "app.bsky.unspecced.getSuggestedUsersForExplore";
|
|
8133
|
+
readonly defs: {
|
|
8134
|
+
readonly main: {
|
|
8135
|
+
readonly type: "query";
|
|
8136
|
+
readonly description: "Get a list of suggested users for the Explore page";
|
|
8137
|
+
readonly parameters: {
|
|
8138
|
+
readonly type: "params";
|
|
8139
|
+
readonly properties: {
|
|
8140
|
+
readonly category: {
|
|
8141
|
+
readonly type: "string";
|
|
8142
|
+
readonly description: "Category of users to get suggestions for.";
|
|
8143
|
+
};
|
|
8144
|
+
readonly limit: {
|
|
8145
|
+
readonly type: "integer";
|
|
8146
|
+
readonly minimum: 1;
|
|
8147
|
+
readonly maximum: 50;
|
|
8148
|
+
readonly default: 25;
|
|
8149
|
+
};
|
|
8150
|
+
};
|
|
8151
|
+
};
|
|
8152
|
+
readonly output: {
|
|
8153
|
+
readonly encoding: "application/json";
|
|
8154
|
+
readonly schema: {
|
|
8155
|
+
readonly type: "object";
|
|
8156
|
+
readonly required: ["actors"];
|
|
8157
|
+
readonly properties: {
|
|
8158
|
+
readonly actors: {
|
|
8159
|
+
readonly type: "array";
|
|
8160
|
+
readonly items: {
|
|
8161
|
+
readonly type: "ref";
|
|
8162
|
+
readonly ref: "lex:app.bsky.actor.defs#profileView";
|
|
8163
|
+
};
|
|
8164
|
+
};
|
|
8165
|
+
readonly recIdStr: {
|
|
8166
|
+
readonly type: "string";
|
|
8167
|
+
readonly description: "Snowflake for this recommendation, use when submitting recommendation events.";
|
|
8168
|
+
};
|
|
8169
|
+
};
|
|
8170
|
+
};
|
|
8171
|
+
};
|
|
8172
|
+
};
|
|
8173
|
+
};
|
|
8174
|
+
};
|
|
8175
|
+
readonly AppBskyUnspeccedGetSuggestedUsersForExploreSkeleton: {
|
|
8176
|
+
readonly lexicon: 1;
|
|
8177
|
+
readonly id: "app.bsky.unspecced.getSuggestedUsersForExploreSkeleton";
|
|
8178
|
+
readonly defs: {
|
|
8179
|
+
readonly main: {
|
|
8180
|
+
readonly type: "query";
|
|
8181
|
+
readonly description: "Get a skeleton of suggested users for the Explore page. Intended to be called and hydrated by app.bsky.unspecced.getSuggestedUsersForExplore";
|
|
8182
|
+
readonly parameters: {
|
|
8183
|
+
readonly type: "params";
|
|
8184
|
+
readonly properties: {
|
|
8185
|
+
readonly viewer: {
|
|
8186
|
+
readonly type: "string";
|
|
8187
|
+
readonly format: "did";
|
|
8188
|
+
readonly description: "DID of the account making the request (not included for public/unauthenticated queries).";
|
|
8189
|
+
};
|
|
8190
|
+
readonly category: {
|
|
8191
|
+
readonly type: "string";
|
|
8192
|
+
readonly description: "Category of users to get suggestions for.";
|
|
8193
|
+
};
|
|
8194
|
+
readonly limit: {
|
|
8195
|
+
readonly type: "integer";
|
|
8196
|
+
readonly minimum: 1;
|
|
8197
|
+
readonly maximum: 50;
|
|
8198
|
+
readonly default: 25;
|
|
8199
|
+
};
|
|
8200
|
+
};
|
|
8201
|
+
};
|
|
8202
|
+
readonly output: {
|
|
8203
|
+
readonly encoding: "application/json";
|
|
8204
|
+
readonly schema: {
|
|
8205
|
+
readonly type: "object";
|
|
8206
|
+
readonly required: ["dids"];
|
|
8207
|
+
readonly properties: {
|
|
8208
|
+
readonly dids: {
|
|
8209
|
+
readonly type: "array";
|
|
8210
|
+
readonly items: {
|
|
8211
|
+
readonly type: "string";
|
|
8212
|
+
readonly format: "did";
|
|
8213
|
+
};
|
|
8214
|
+
};
|
|
8215
|
+
readonly recIdStr: {
|
|
8216
|
+
readonly type: "string";
|
|
8217
|
+
readonly description: "Snowflake for this recommendation, use when submitting recommendation events.";
|
|
8218
|
+
};
|
|
8219
|
+
};
|
|
8220
|
+
};
|
|
8221
|
+
};
|
|
8222
|
+
};
|
|
8223
|
+
};
|
|
8224
|
+
};
|
|
8225
|
+
readonly AppBskyUnspeccedGetSuggestedUsersForSeeMore: {
|
|
8226
|
+
readonly lexicon: 1;
|
|
8227
|
+
readonly id: "app.bsky.unspecced.getSuggestedUsersForSeeMore";
|
|
8228
|
+
readonly defs: {
|
|
8229
|
+
readonly main: {
|
|
8230
|
+
readonly type: "query";
|
|
8231
|
+
readonly description: "Get a list of suggested users for the See More page";
|
|
8232
|
+
readonly parameters: {
|
|
8233
|
+
readonly type: "params";
|
|
8234
|
+
readonly properties: {
|
|
8235
|
+
readonly category: {
|
|
8236
|
+
readonly type: "string";
|
|
8237
|
+
readonly description: "Category of users to get suggestions for.";
|
|
8238
|
+
};
|
|
8239
|
+
readonly limit: {
|
|
8240
|
+
readonly type: "integer";
|
|
8241
|
+
readonly minimum: 1;
|
|
8242
|
+
readonly maximum: 50;
|
|
8243
|
+
readonly default: 25;
|
|
8244
|
+
};
|
|
8245
|
+
};
|
|
8246
|
+
};
|
|
8247
|
+
readonly output: {
|
|
8248
|
+
readonly encoding: "application/json";
|
|
8249
|
+
readonly schema: {
|
|
8250
|
+
readonly type: "object";
|
|
8251
|
+
readonly required: ["actors"];
|
|
8252
|
+
readonly properties: {
|
|
8253
|
+
readonly actors: {
|
|
8254
|
+
readonly type: "array";
|
|
8255
|
+
readonly items: {
|
|
8256
|
+
readonly type: "ref";
|
|
8257
|
+
readonly ref: "lex:app.bsky.actor.defs#profileView";
|
|
8258
|
+
};
|
|
8259
|
+
};
|
|
8260
|
+
readonly recIdStr: {
|
|
8261
|
+
readonly type: "string";
|
|
8262
|
+
readonly description: "Snowflake for this recommendation, use when submitting recommendation events.";
|
|
8263
|
+
};
|
|
8264
|
+
};
|
|
8265
|
+
};
|
|
8266
|
+
};
|
|
8267
|
+
};
|
|
8268
|
+
};
|
|
8269
|
+
};
|
|
8270
|
+
readonly AppBskyUnspeccedGetSuggestedUsersForSeeMoreSkeleton: {
|
|
8271
|
+
readonly lexicon: 1;
|
|
8272
|
+
readonly id: "app.bsky.unspecced.getSuggestedUsersForSeeMoreSkeleton";
|
|
8273
|
+
readonly defs: {
|
|
8274
|
+
readonly main: {
|
|
8275
|
+
readonly type: "query";
|
|
8276
|
+
readonly description: "Get a skeleton of suggested users for the See More page. Intended to be called and hydrated by app.bsky.unspecced.getSuggestedUsersForSeeMore";
|
|
8277
|
+
readonly parameters: {
|
|
8278
|
+
readonly type: "params";
|
|
8279
|
+
readonly properties: {
|
|
8280
|
+
readonly viewer: {
|
|
8281
|
+
readonly type: "string";
|
|
8282
|
+
readonly format: "did";
|
|
8283
|
+
readonly description: "DID of the account making the request (not included for public/unauthenticated queries).";
|
|
8284
|
+
};
|
|
8285
|
+
readonly category: {
|
|
8286
|
+
readonly type: "string";
|
|
8287
|
+
readonly description: "Category of users to get suggestions for.";
|
|
8288
|
+
};
|
|
8289
|
+
readonly limit: {
|
|
8290
|
+
readonly type: "integer";
|
|
8291
|
+
readonly minimum: 1;
|
|
8292
|
+
readonly maximum: 50;
|
|
8293
|
+
readonly default: 25;
|
|
8294
|
+
};
|
|
8295
|
+
};
|
|
8296
|
+
};
|
|
8297
|
+
readonly output: {
|
|
8298
|
+
readonly encoding: "application/json";
|
|
8299
|
+
readonly schema: {
|
|
8300
|
+
readonly type: "object";
|
|
8301
|
+
readonly required: ["dids"];
|
|
8302
|
+
readonly properties: {
|
|
8303
|
+
readonly dids: {
|
|
8304
|
+
readonly type: "array";
|
|
8305
|
+
readonly items: {
|
|
8306
|
+
readonly type: "string";
|
|
8307
|
+
readonly format: "did";
|
|
8308
|
+
};
|
|
8309
|
+
};
|
|
8310
|
+
readonly recIdStr: {
|
|
8311
|
+
readonly type: "string";
|
|
8312
|
+
readonly description: "Snowflake for this recommendation, use when submitting recommendation events.";
|
|
8313
|
+
};
|
|
8314
|
+
};
|
|
8315
|
+
};
|
|
8316
|
+
};
|
|
8317
|
+
};
|
|
8318
|
+
};
|
|
8319
|
+
};
|
|
8035
8320
|
readonly AppBskyUnspeccedGetSuggestedUsersSkeleton: {
|
|
8036
8321
|
readonly lexicon: 1;
|
|
8037
8322
|
readonly id: "app.bsky.unspecced.getSuggestedUsersSkeleton";
|
|
@@ -19819,6 +20104,13 @@ export declare const schemas: ({
|
|
|
19819
20104
|
readonly description: "An optional embed associated with the status.";
|
|
19820
20105
|
readonly refs: ["lex:app.bsky.embed.external#view"];
|
|
19821
20106
|
};
|
|
20107
|
+
readonly labels: {
|
|
20108
|
+
readonly type: "array";
|
|
20109
|
+
readonly items: {
|
|
20110
|
+
readonly type: "ref";
|
|
20111
|
+
readonly ref: "lex:com.atproto.label.defs#label";
|
|
20112
|
+
};
|
|
20113
|
+
};
|
|
19822
20114
|
readonly expiresAt: {
|
|
19823
20115
|
readonly type: "string";
|
|
19824
20116
|
readonly description: "The date when this status will expire. The application might choose to no longer return the status after expiration.";
|
|
@@ -21534,8 +21826,9 @@ export declare const schemas: ({
|
|
|
21534
21826
|
readonly properties: {
|
|
21535
21827
|
readonly image: {
|
|
21536
21828
|
readonly type: "blob";
|
|
21829
|
+
readonly description: "The raw image file. May be up to 2mb, formerly limited to 1mb.";
|
|
21537
21830
|
readonly accept: ["image/*"];
|
|
21538
|
-
readonly maxSize:
|
|
21831
|
+
readonly maxSize: 2000000;
|
|
21539
21832
|
};
|
|
21540
21833
|
readonly alt: {
|
|
21541
21834
|
readonly type: "string";
|
|
@@ -26918,6 +27211,277 @@ export declare const schemas: ({
|
|
|
26918
27211
|
};
|
|
26919
27212
|
};
|
|
26920
27213
|
};
|
|
27214
|
+
} | {
|
|
27215
|
+
readonly lexicon: 1;
|
|
27216
|
+
readonly id: "app.bsky.unspecced.getSuggestedUsersForDiscover";
|
|
27217
|
+
readonly defs: {
|
|
27218
|
+
readonly main: {
|
|
27219
|
+
readonly type: "query";
|
|
27220
|
+
readonly description: "Get a list of suggested users for the Discover page";
|
|
27221
|
+
readonly parameters: {
|
|
27222
|
+
readonly type: "params";
|
|
27223
|
+
readonly properties: {
|
|
27224
|
+
readonly limit: {
|
|
27225
|
+
readonly type: "integer";
|
|
27226
|
+
readonly minimum: 1;
|
|
27227
|
+
readonly maximum: 50;
|
|
27228
|
+
readonly default: 25;
|
|
27229
|
+
};
|
|
27230
|
+
};
|
|
27231
|
+
};
|
|
27232
|
+
readonly output: {
|
|
27233
|
+
readonly encoding: "application/json";
|
|
27234
|
+
readonly schema: {
|
|
27235
|
+
readonly type: "object";
|
|
27236
|
+
readonly required: ["actors"];
|
|
27237
|
+
readonly properties: {
|
|
27238
|
+
readonly actors: {
|
|
27239
|
+
readonly type: "array";
|
|
27240
|
+
readonly items: {
|
|
27241
|
+
readonly type: "ref";
|
|
27242
|
+
readonly ref: "lex:app.bsky.actor.defs#profileView";
|
|
27243
|
+
};
|
|
27244
|
+
};
|
|
27245
|
+
readonly recIdStr: {
|
|
27246
|
+
readonly type: "string";
|
|
27247
|
+
readonly description: "Snowflake for this recommendation, use when submitting recommendation events.";
|
|
27248
|
+
};
|
|
27249
|
+
};
|
|
27250
|
+
};
|
|
27251
|
+
};
|
|
27252
|
+
};
|
|
27253
|
+
};
|
|
27254
|
+
} | {
|
|
27255
|
+
readonly lexicon: 1;
|
|
27256
|
+
readonly id: "app.bsky.unspecced.getSuggestedUsersForDiscoverSkeleton";
|
|
27257
|
+
readonly defs: {
|
|
27258
|
+
readonly main: {
|
|
27259
|
+
readonly type: "query";
|
|
27260
|
+
readonly description: "Get a skeleton of suggested users for the Discover page. Intended to be called and hydrated by app.bsky.unspecced.getSuggestedUsersForDiscover";
|
|
27261
|
+
readonly parameters: {
|
|
27262
|
+
readonly type: "params";
|
|
27263
|
+
readonly properties: {
|
|
27264
|
+
readonly viewer: {
|
|
27265
|
+
readonly type: "string";
|
|
27266
|
+
readonly format: "did";
|
|
27267
|
+
readonly description: "DID of the account making the request (not included for public/unauthenticated queries).";
|
|
27268
|
+
};
|
|
27269
|
+
readonly limit: {
|
|
27270
|
+
readonly type: "integer";
|
|
27271
|
+
readonly minimum: 1;
|
|
27272
|
+
readonly maximum: 50;
|
|
27273
|
+
readonly default: 25;
|
|
27274
|
+
};
|
|
27275
|
+
};
|
|
27276
|
+
};
|
|
27277
|
+
readonly output: {
|
|
27278
|
+
readonly encoding: "application/json";
|
|
27279
|
+
readonly schema: {
|
|
27280
|
+
readonly type: "object";
|
|
27281
|
+
readonly required: ["dids"];
|
|
27282
|
+
readonly properties: {
|
|
27283
|
+
readonly dids: {
|
|
27284
|
+
readonly type: "array";
|
|
27285
|
+
readonly items: {
|
|
27286
|
+
readonly type: "string";
|
|
27287
|
+
readonly format: "did";
|
|
27288
|
+
};
|
|
27289
|
+
};
|
|
27290
|
+
readonly recIdStr: {
|
|
27291
|
+
readonly type: "string";
|
|
27292
|
+
readonly description: "Snowflake for this recommendation, use when submitting recommendation events.";
|
|
27293
|
+
};
|
|
27294
|
+
};
|
|
27295
|
+
};
|
|
27296
|
+
};
|
|
27297
|
+
};
|
|
27298
|
+
};
|
|
27299
|
+
} | {
|
|
27300
|
+
readonly lexicon: 1;
|
|
27301
|
+
readonly id: "app.bsky.unspecced.getSuggestedUsersForExplore";
|
|
27302
|
+
readonly defs: {
|
|
27303
|
+
readonly main: {
|
|
27304
|
+
readonly type: "query";
|
|
27305
|
+
readonly description: "Get a list of suggested users for the Explore page";
|
|
27306
|
+
readonly parameters: {
|
|
27307
|
+
readonly type: "params";
|
|
27308
|
+
readonly properties: {
|
|
27309
|
+
readonly category: {
|
|
27310
|
+
readonly type: "string";
|
|
27311
|
+
readonly description: "Category of users to get suggestions for.";
|
|
27312
|
+
};
|
|
27313
|
+
readonly limit: {
|
|
27314
|
+
readonly type: "integer";
|
|
27315
|
+
readonly minimum: 1;
|
|
27316
|
+
readonly maximum: 50;
|
|
27317
|
+
readonly default: 25;
|
|
27318
|
+
};
|
|
27319
|
+
};
|
|
27320
|
+
};
|
|
27321
|
+
readonly output: {
|
|
27322
|
+
readonly encoding: "application/json";
|
|
27323
|
+
readonly schema: {
|
|
27324
|
+
readonly type: "object";
|
|
27325
|
+
readonly required: ["actors"];
|
|
27326
|
+
readonly properties: {
|
|
27327
|
+
readonly actors: {
|
|
27328
|
+
readonly type: "array";
|
|
27329
|
+
readonly items: {
|
|
27330
|
+
readonly type: "ref";
|
|
27331
|
+
readonly ref: "lex:app.bsky.actor.defs#profileView";
|
|
27332
|
+
};
|
|
27333
|
+
};
|
|
27334
|
+
readonly recIdStr: {
|
|
27335
|
+
readonly type: "string";
|
|
27336
|
+
readonly description: "Snowflake for this recommendation, use when submitting recommendation events.";
|
|
27337
|
+
};
|
|
27338
|
+
};
|
|
27339
|
+
};
|
|
27340
|
+
};
|
|
27341
|
+
};
|
|
27342
|
+
};
|
|
27343
|
+
} | {
|
|
27344
|
+
readonly lexicon: 1;
|
|
27345
|
+
readonly id: "app.bsky.unspecced.getSuggestedUsersForExploreSkeleton";
|
|
27346
|
+
readonly defs: {
|
|
27347
|
+
readonly main: {
|
|
27348
|
+
readonly type: "query";
|
|
27349
|
+
readonly description: "Get a skeleton of suggested users for the Explore page. Intended to be called and hydrated by app.bsky.unspecced.getSuggestedUsersForExplore";
|
|
27350
|
+
readonly parameters: {
|
|
27351
|
+
readonly type: "params";
|
|
27352
|
+
readonly properties: {
|
|
27353
|
+
readonly viewer: {
|
|
27354
|
+
readonly type: "string";
|
|
27355
|
+
readonly format: "did";
|
|
27356
|
+
readonly description: "DID of the account making the request (not included for public/unauthenticated queries).";
|
|
27357
|
+
};
|
|
27358
|
+
readonly category: {
|
|
27359
|
+
readonly type: "string";
|
|
27360
|
+
readonly description: "Category of users to get suggestions for.";
|
|
27361
|
+
};
|
|
27362
|
+
readonly limit: {
|
|
27363
|
+
readonly type: "integer";
|
|
27364
|
+
readonly minimum: 1;
|
|
27365
|
+
readonly maximum: 50;
|
|
27366
|
+
readonly default: 25;
|
|
27367
|
+
};
|
|
27368
|
+
};
|
|
27369
|
+
};
|
|
27370
|
+
readonly output: {
|
|
27371
|
+
readonly encoding: "application/json";
|
|
27372
|
+
readonly schema: {
|
|
27373
|
+
readonly type: "object";
|
|
27374
|
+
readonly required: ["dids"];
|
|
27375
|
+
readonly properties: {
|
|
27376
|
+
readonly dids: {
|
|
27377
|
+
readonly type: "array";
|
|
27378
|
+
readonly items: {
|
|
27379
|
+
readonly type: "string";
|
|
27380
|
+
readonly format: "did";
|
|
27381
|
+
};
|
|
27382
|
+
};
|
|
27383
|
+
readonly recIdStr: {
|
|
27384
|
+
readonly type: "string";
|
|
27385
|
+
readonly description: "Snowflake for this recommendation, use when submitting recommendation events.";
|
|
27386
|
+
};
|
|
27387
|
+
};
|
|
27388
|
+
};
|
|
27389
|
+
};
|
|
27390
|
+
};
|
|
27391
|
+
};
|
|
27392
|
+
} | {
|
|
27393
|
+
readonly lexicon: 1;
|
|
27394
|
+
readonly id: "app.bsky.unspecced.getSuggestedUsersForSeeMore";
|
|
27395
|
+
readonly defs: {
|
|
27396
|
+
readonly main: {
|
|
27397
|
+
readonly type: "query";
|
|
27398
|
+
readonly description: "Get a list of suggested users for the See More page";
|
|
27399
|
+
readonly parameters: {
|
|
27400
|
+
readonly type: "params";
|
|
27401
|
+
readonly properties: {
|
|
27402
|
+
readonly category: {
|
|
27403
|
+
readonly type: "string";
|
|
27404
|
+
readonly description: "Category of users to get suggestions for.";
|
|
27405
|
+
};
|
|
27406
|
+
readonly limit: {
|
|
27407
|
+
readonly type: "integer";
|
|
27408
|
+
readonly minimum: 1;
|
|
27409
|
+
readonly maximum: 50;
|
|
27410
|
+
readonly default: 25;
|
|
27411
|
+
};
|
|
27412
|
+
};
|
|
27413
|
+
};
|
|
27414
|
+
readonly output: {
|
|
27415
|
+
readonly encoding: "application/json";
|
|
27416
|
+
readonly schema: {
|
|
27417
|
+
readonly type: "object";
|
|
27418
|
+
readonly required: ["actors"];
|
|
27419
|
+
readonly properties: {
|
|
27420
|
+
readonly actors: {
|
|
27421
|
+
readonly type: "array";
|
|
27422
|
+
readonly items: {
|
|
27423
|
+
readonly type: "ref";
|
|
27424
|
+
readonly ref: "lex:app.bsky.actor.defs#profileView";
|
|
27425
|
+
};
|
|
27426
|
+
};
|
|
27427
|
+
readonly recIdStr: {
|
|
27428
|
+
readonly type: "string";
|
|
27429
|
+
readonly description: "Snowflake for this recommendation, use when submitting recommendation events.";
|
|
27430
|
+
};
|
|
27431
|
+
};
|
|
27432
|
+
};
|
|
27433
|
+
};
|
|
27434
|
+
};
|
|
27435
|
+
};
|
|
27436
|
+
} | {
|
|
27437
|
+
readonly lexicon: 1;
|
|
27438
|
+
readonly id: "app.bsky.unspecced.getSuggestedUsersForSeeMoreSkeleton";
|
|
27439
|
+
readonly defs: {
|
|
27440
|
+
readonly main: {
|
|
27441
|
+
readonly type: "query";
|
|
27442
|
+
readonly description: "Get a skeleton of suggested users for the See More page. Intended to be called and hydrated by app.bsky.unspecced.getSuggestedUsersForSeeMore";
|
|
27443
|
+
readonly parameters: {
|
|
27444
|
+
readonly type: "params";
|
|
27445
|
+
readonly properties: {
|
|
27446
|
+
readonly viewer: {
|
|
27447
|
+
readonly type: "string";
|
|
27448
|
+
readonly format: "did";
|
|
27449
|
+
readonly description: "DID of the account making the request (not included for public/unauthenticated queries).";
|
|
27450
|
+
};
|
|
27451
|
+
readonly category: {
|
|
27452
|
+
readonly type: "string";
|
|
27453
|
+
readonly description: "Category of users to get suggestions for.";
|
|
27454
|
+
};
|
|
27455
|
+
readonly limit: {
|
|
27456
|
+
readonly type: "integer";
|
|
27457
|
+
readonly minimum: 1;
|
|
27458
|
+
readonly maximum: 50;
|
|
27459
|
+
readonly default: 25;
|
|
27460
|
+
};
|
|
27461
|
+
};
|
|
27462
|
+
};
|
|
27463
|
+
readonly output: {
|
|
27464
|
+
readonly encoding: "application/json";
|
|
27465
|
+
readonly schema: {
|
|
27466
|
+
readonly type: "object";
|
|
27467
|
+
readonly required: ["dids"];
|
|
27468
|
+
readonly properties: {
|
|
27469
|
+
readonly dids: {
|
|
27470
|
+
readonly type: "array";
|
|
27471
|
+
readonly items: {
|
|
27472
|
+
readonly type: "string";
|
|
27473
|
+
readonly format: "did";
|
|
27474
|
+
};
|
|
27475
|
+
};
|
|
27476
|
+
readonly recIdStr: {
|
|
27477
|
+
readonly type: "string";
|
|
27478
|
+
readonly description: "Snowflake for this recommendation, use when submitting recommendation events.";
|
|
27479
|
+
};
|
|
27480
|
+
};
|
|
27481
|
+
};
|
|
27482
|
+
};
|
|
27483
|
+
};
|
|
27484
|
+
};
|
|
26921
27485
|
} | {
|
|
26922
27486
|
readonly lexicon: 1;
|
|
26923
27487
|
readonly id: "app.bsky.unspecced.getSuggestedUsersSkeleton";
|
|
@@ -37844,6 +38408,12 @@ export declare const ids: {
|
|
|
37844
38408
|
readonly AppBskyUnspeccedGetSuggestedStarterPacks: "app.bsky.unspecced.getSuggestedStarterPacks";
|
|
37845
38409
|
readonly AppBskyUnspeccedGetSuggestedStarterPacksSkeleton: "app.bsky.unspecced.getSuggestedStarterPacksSkeleton";
|
|
37846
38410
|
readonly AppBskyUnspeccedGetSuggestedUsers: "app.bsky.unspecced.getSuggestedUsers";
|
|
38411
|
+
readonly AppBskyUnspeccedGetSuggestedUsersForDiscover: "app.bsky.unspecced.getSuggestedUsersForDiscover";
|
|
38412
|
+
readonly AppBskyUnspeccedGetSuggestedUsersForDiscoverSkeleton: "app.bsky.unspecced.getSuggestedUsersForDiscoverSkeleton";
|
|
38413
|
+
readonly AppBskyUnspeccedGetSuggestedUsersForExplore: "app.bsky.unspecced.getSuggestedUsersForExplore";
|
|
38414
|
+
readonly AppBskyUnspeccedGetSuggestedUsersForExploreSkeleton: "app.bsky.unspecced.getSuggestedUsersForExploreSkeleton";
|
|
38415
|
+
readonly AppBskyUnspeccedGetSuggestedUsersForSeeMore: "app.bsky.unspecced.getSuggestedUsersForSeeMore";
|
|
38416
|
+
readonly AppBskyUnspeccedGetSuggestedUsersForSeeMoreSkeleton: "app.bsky.unspecced.getSuggestedUsersForSeeMoreSkeleton";
|
|
37847
38417
|
readonly AppBskyUnspeccedGetSuggestedUsersSkeleton: "app.bsky.unspecced.getSuggestedUsersSkeleton";
|
|
37848
38418
|
readonly AppBskyUnspeccedGetSuggestionsSkeleton: "app.bsky.unspecced.getSuggestionsSkeleton";
|
|
37849
38419
|
readonly AppBskyUnspeccedGetTaggedSuggestions: "app.bsky.unspecced.getTaggedSuggestions";
|