@atproto/ozone 0.1.167 → 0.1.169
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 +23 -0
- package/dist/api/report/createReport.d.ts.map +1 -1
- package/dist/api/report/createReport.js +2 -4
- package/dist/api/report/createReport.js.map +1 -1
- package/dist/lexicon/index.d.ts +12 -0
- package/dist/lexicon/index.d.ts.map +1 -1
- package/dist/lexicon/index.js +24 -0
- package/dist/lexicon/index.js.map +1 -1
- package/dist/lexicon/lexicons.d.ts +981 -427
- package/dist/lexicon/lexicons.d.ts.map +1 -1
- package/dist/lexicon/lexicons.js +290 -10
- package/dist/lexicon/lexicons.js.map +1 -1
- package/dist/lexicon/types/app/bsky/graph/getSuggestedFollowsByActor.d.ts +3 -3
- package/dist/lexicon/types/app/bsky/graph/getSuggestedFollowsByActor.d.ts.map +1 -1
- package/dist/lexicon/types/app/bsky/graph/getSuggestedFollowsByActor.js.map +1 -1
- package/dist/lexicon/types/app/bsky/unspecced/getSuggestedUsersForDiscover.d.ts +24 -0
- package/dist/lexicon/types/app/bsky/unspecced/getSuggestedUsersForDiscover.d.ts.map +1 -0
- package/dist/lexicon/types/app/bsky/unspecced/getSuggestedUsersForDiscover.js +7 -0
- package/dist/lexicon/types/app/bsky/unspecced/getSuggestedUsersForDiscover.js.map +1 -0
- package/dist/lexicon/types/app/bsky/unspecced/getSuggestedUsersForDiscoverSkeleton.d.ts +25 -0
- package/dist/lexicon/types/app/bsky/unspecced/getSuggestedUsersForDiscoverSkeleton.d.ts.map +1 -0
- package/dist/lexicon/types/app/bsky/unspecced/getSuggestedUsersForDiscoverSkeleton.js +7 -0
- package/dist/lexicon/types/app/bsky/unspecced/getSuggestedUsersForDiscoverSkeleton.js.map +1 -0
- package/dist/lexicon/types/app/bsky/unspecced/getSuggestedUsersForExplore.d.ts +26 -0
- package/dist/lexicon/types/app/bsky/unspecced/getSuggestedUsersForExplore.d.ts.map +1 -0
- package/dist/lexicon/types/app/bsky/unspecced/getSuggestedUsersForExplore.js +7 -0
- package/dist/lexicon/types/app/bsky/unspecced/getSuggestedUsersForExplore.js.map +1 -0
- package/dist/lexicon/types/app/bsky/unspecced/getSuggestedUsersForExploreSkeleton.d.ts +27 -0
- package/dist/lexicon/types/app/bsky/unspecced/getSuggestedUsersForExploreSkeleton.d.ts.map +1 -0
- package/dist/lexicon/types/app/bsky/unspecced/getSuggestedUsersForExploreSkeleton.js +7 -0
- package/dist/lexicon/types/app/bsky/unspecced/getSuggestedUsersForExploreSkeleton.js.map +1 -0
- package/dist/lexicon/types/app/bsky/unspecced/getSuggestedUsersForSeeMore.d.ts +26 -0
- package/dist/lexicon/types/app/bsky/unspecced/getSuggestedUsersForSeeMore.d.ts.map +1 -0
- package/dist/lexicon/types/app/bsky/unspecced/getSuggestedUsersForSeeMore.js +7 -0
- package/dist/lexicon/types/app/bsky/unspecced/getSuggestedUsersForSeeMore.js.map +1 -0
- package/dist/lexicon/types/app/bsky/unspecced/getSuggestedUsersForSeeMoreSkeleton.d.ts +27 -0
- package/dist/lexicon/types/app/bsky/unspecced/getSuggestedUsersForSeeMoreSkeleton.d.ts.map +1 -0
- package/dist/lexicon/types/app/bsky/unspecced/getSuggestedUsersForSeeMoreSkeleton.js +7 -0
- package/dist/lexicon/types/app/bsky/unspecced/getSuggestedUsersForSeeMoreSkeleton.js.map +1 -0
- package/dist/lexicon/types/com/atproto/label/defs.d.ts +1 -1
- package/dist/lexicon/types/com/atproto/label/defs.d.ts.map +1 -1
- package/dist/lexicon/types/com/atproto/label/defs.js.map +1 -1
- package/package.json +6 -6
- package/src/api/report/createReport.ts +2 -4
- package/src/lexicon/index.ts +78 -0
- package/src/lexicon/lexicons.ts +309 -11
- package/src/lexicon/types/app/bsky/graph/getSuggestedFollowsByActor.ts +3 -3
- package/src/lexicon/types/app/bsky/unspecced/getSuggestedUsersForDiscover.ts +42 -0
- package/src/lexicon/types/app/bsky/unspecced/getSuggestedUsersForDiscoverSkeleton.ts +43 -0
- package/src/lexicon/types/app/bsky/unspecced/getSuggestedUsersForExplore.ts +44 -0
- package/src/lexicon/types/app/bsky/unspecced/getSuggestedUsersForExploreSkeleton.ts +45 -0
- package/src/lexicon/types/app/bsky/unspecced/getSuggestedUsersForSeeMore.ts +44 -0
- package/src/lexicon/types/app/bsky/unspecced/getSuggestedUsersForSeeMoreSkeleton.ts +45 -0
- package/src/lexicon/types/com/atproto/label/defs.ts +2 -5
- package/tests/3p-labeler.test.ts +2 -2
- package/tests/account-strikes.test.ts +1 -1
- package/tests/communication-templates.test.ts +1 -1
- package/tests/expiring-label.test.ts +1 -1
- package/tests/get-account-timeline.test.ts +1 -1
- package/tests/get-config.test.ts +1 -1
- package/tests/get-lists.test.ts +2 -2
- package/tests/get-profiles.test.ts +1 -1
- package/tests/get-record.test.ts +1 -1
- package/tests/get-records.test.ts +1 -1
- package/tests/get-repo.test.ts +2 -2
- package/tests/get-repos.test.ts +2 -2
- package/tests/get-starter-pack.test.ts +2 -2
- package/tests/get-subjects.test.ts +1 -1
- package/tests/moderation.test.ts +3 -3
- package/tests/query-labels.test.ts +1 -1
- package/tests/repo-search.test.ts +1 -1
- package/tests/report-reason.test.ts +1 -1
- package/tests/safelink.test.ts +3 -3
- package/tests/scheduled-action-processor.test.ts +1 -1
- package/tests/scheduled-action.test.ts +3 -3
- package/tests/sets.test.ts +1 -1
- package/tests/settings.test.ts +1 -1
- package/tests/strike-expiry-processor.test.ts +1 -1
- package/tests/takedown.test.ts +2 -2
- package/tests/team.test.ts +2 -2
- package/tests/verification-listener.test.ts +1 -1
- package/tests/verification.test.ts +2 -2
- package/tsconfig.build.tsbuildinfo +1 -1
|
@@ -5823,19 +5823,19 @@ export declare const schemaDict: {
|
|
|
5823
5823
|
readonly ref: "lex:app.bsky.actor.defs#profileView";
|
|
5824
5824
|
};
|
|
5825
5825
|
};
|
|
5826
|
+
readonly recIdStr: {
|
|
5827
|
+
readonly type: "string";
|
|
5828
|
+
readonly description: "Snowflake for this recommendation, use when submitting recommendation events.";
|
|
5829
|
+
};
|
|
5826
5830
|
readonly isFallback: {
|
|
5827
5831
|
readonly type: "boolean";
|
|
5828
|
-
readonly description: "
|
|
5832
|
+
readonly description: "DEPRECATED, unused. Previously: if true, response has fallen-back to generic results, and is not scoped using relativeToDid";
|
|
5829
5833
|
readonly default: false;
|
|
5830
5834
|
};
|
|
5831
5835
|
readonly recId: {
|
|
5832
5836
|
readonly type: "integer";
|
|
5833
5837
|
readonly description: "DEPRECATED: use recIdStr instead.";
|
|
5834
5838
|
};
|
|
5835
|
-
readonly recIdStr: {
|
|
5836
|
-
readonly type: "string";
|
|
5837
|
-
readonly description: "Snowflake for this recommendation, use when submitting recommendation events.";
|
|
5838
|
-
};
|
|
5839
5839
|
};
|
|
5840
5840
|
};
|
|
5841
5841
|
};
|
|
@@ -8032,25 +8032,16 @@ export declare const schemaDict: {
|
|
|
8032
8032
|
};
|
|
8033
8033
|
};
|
|
8034
8034
|
};
|
|
8035
|
-
readonly
|
|
8035
|
+
readonly AppBskyUnspeccedGetSuggestedUsersForDiscover: {
|
|
8036
8036
|
readonly lexicon: 1;
|
|
8037
|
-
readonly id: "app.bsky.unspecced.
|
|
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
|
|
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: ["
|
|
8057
|
+
readonly required: ["actors"];
|
|
8067
8058
|
readonly properties: {
|
|
8068
|
-
readonly
|
|
8059
|
+
readonly actors: {
|
|
8069
8060
|
readonly type: "array";
|
|
8070
8061
|
readonly items: {
|
|
8071
|
-
readonly type: "
|
|
8072
|
-
readonly
|
|
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
|
|
8076
|
+
readonly AppBskyUnspeccedGetSuggestedUsersForDiscoverSkeleton: {
|
|
8090
8077
|
readonly lexicon: 1;
|
|
8091
|
-
readonly id: "app.bsky.unspecced.
|
|
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
|
|
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).
|
|
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:
|
|
8108
|
-
readonly default:
|
|
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: ["
|
|
8103
|
+
readonly required: ["dids"];
|
|
8125
8104
|
readonly properties: {
|
|
8126
|
-
readonly
|
|
8127
|
-
readonly type: "string";
|
|
8128
|
-
};
|
|
8129
|
-
readonly actors: {
|
|
8105
|
+
readonly dids: {
|
|
8130
8106
|
readonly type: "array";
|
|
8131
8107
|
readonly items: {
|
|
8132
|
-
readonly type: "
|
|
8133
|
-
readonly
|
|
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
|
|
8122
|
+
readonly AppBskyUnspeccedGetSuggestedUsersForExplore: {
|
|
8156
8123
|
readonly lexicon: 1;
|
|
8157
|
-
readonly id: "app.bsky.unspecced.
|
|
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
|
|
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: ["
|
|
8148
|
+
readonly required: ["actors"];
|
|
8171
8149
|
readonly properties: {
|
|
8172
|
-
readonly
|
|
8150
|
+
readonly actors: {
|
|
8173
8151
|
readonly type: "array";
|
|
8174
8152
|
readonly items: {
|
|
8175
8153
|
readonly type: "ref";
|
|
8176
|
-
readonly ref: "lex:app.bsky.
|
|
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
|
|
8167
|
+
readonly AppBskyUnspeccedGetSuggestedUsersForExploreSkeleton: {
|
|
8203
8168
|
readonly lexicon: 1;
|
|
8204
|
-
readonly id: "app.bsky.unspecced.
|
|
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
|
|
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).
|
|
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:
|
|
8221
|
-
readonly default:
|
|
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: ["
|
|
8198
|
+
readonly required: ["dids"];
|
|
8230
8199
|
readonly properties: {
|
|
8231
|
-
readonly
|
|
8200
|
+
readonly dids: {
|
|
8232
8201
|
readonly type: "array";
|
|
8233
8202
|
readonly items: {
|
|
8234
|
-
readonly type: "
|
|
8235
|
-
readonly
|
|
8203
|
+
readonly type: "string";
|
|
8204
|
+
readonly format: "did";
|
|
8236
8205
|
};
|
|
8237
8206
|
};
|
|
8238
|
-
readonly
|
|
8239
|
-
readonly type: "
|
|
8240
|
-
readonly
|
|
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
|
|
8217
|
+
readonly AppBskyUnspeccedGetSuggestedUsersForSeeMore: {
|
|
8252
8218
|
readonly lexicon: 1;
|
|
8253
|
-
readonly id: "app.bsky.unspecced.
|
|
8219
|
+
readonly id: "app.bsky.unspecced.getSuggestedUsersForSeeMore";
|
|
8254
8220
|
readonly defs: {
|
|
8255
8221
|
readonly main: {
|
|
8256
8222
|
readonly type: "query";
|
|
8257
|
-
readonly description: "Get
|
|
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:
|
|
8265
|
-
readonly default:
|
|
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: ["
|
|
8243
|
+
readonly required: ["actors"];
|
|
8274
8244
|
readonly properties: {
|
|
8275
|
-
readonly
|
|
8245
|
+
readonly actors: {
|
|
8276
8246
|
readonly type: "array";
|
|
8277
8247
|
readonly items: {
|
|
8278
8248
|
readonly type: "ref";
|
|
8279
|
-
readonly ref: "lex:app.bsky.
|
|
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
|
|
8262
|
+
readonly AppBskyUnspeccedGetSuggestedUsersForSeeMoreSkeleton: {
|
|
8289
8263
|
readonly lexicon: 1;
|
|
8290
|
-
readonly id: "app.bsky.unspecced.
|
|
8264
|
+
readonly id: "app.bsky.unspecced.getSuggestedUsersForSeeMoreSkeleton";
|
|
8291
8265
|
readonly defs: {
|
|
8292
8266
|
readonly main: {
|
|
8293
8267
|
readonly type: "query";
|
|
8294
|
-
readonly description: "Get
|
|
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:
|
|
8307
|
-
readonly default:
|
|
8284
|
+
readonly maximum: 50;
|
|
8285
|
+
readonly default: 25;
|
|
8308
8286
|
};
|
|
8309
8287
|
};
|
|
8310
8288
|
};
|
|
@@ -8312,110 +8290,409 @@ export declare const schemaDict: {
|
|
|
8312
8290
|
readonly encoding: "application/json";
|
|
8313
8291
|
readonly schema: {
|
|
8314
8292
|
readonly type: "object";
|
|
8315
|
-
readonly required: ["
|
|
8293
|
+
readonly required: ["dids"];
|
|
8316
8294
|
readonly properties: {
|
|
8317
|
-
readonly
|
|
8295
|
+
readonly dids: {
|
|
8318
8296
|
readonly type: "array";
|
|
8319
8297
|
readonly items: {
|
|
8320
|
-
readonly type: "
|
|
8321
|
-
readonly
|
|
8298
|
+
readonly type: "string";
|
|
8299
|
+
readonly format: "did";
|
|
8322
8300
|
};
|
|
8323
8301
|
};
|
|
8324
|
-
|
|
8325
|
-
};
|
|
8326
|
-
};
|
|
8327
|
-
};
|
|
8328
|
-
};
|
|
8329
|
-
};
|
|
8330
|
-
readonly AppBskyUnspeccedInitAgeAssurance: {
|
|
8331
|
-
readonly lexicon: 1;
|
|
8332
|
-
readonly id: "app.bsky.unspecced.initAgeAssurance";
|
|
8333
|
-
readonly defs: {
|
|
8334
|
-
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: {
|
|
8338
|
-
readonly encoding: "application/json";
|
|
8339
|
-
readonly schema: {
|
|
8340
|
-
readonly type: "object";
|
|
8341
|
-
readonly required: ["email", "language", "countryCode"];
|
|
8342
|
-
readonly properties: {
|
|
8343
|
-
readonly email: {
|
|
8344
|
-
readonly type: "string";
|
|
8345
|
-
readonly description: "The user's email address to receive assurance instructions.";
|
|
8346
|
-
};
|
|
8347
|
-
readonly language: {
|
|
8348
|
-
readonly type: "string";
|
|
8349
|
-
readonly description: "The user's preferred language for communication during the assurance process.";
|
|
8350
|
-
};
|
|
8351
|
-
readonly countryCode: {
|
|
8302
|
+
readonly recIdStr: {
|
|
8352
8303
|
readonly type: "string";
|
|
8353
|
-
readonly description: "
|
|
8304
|
+
readonly description: "Snowflake for this recommendation, use when submitting recommendation events.";
|
|
8354
8305
|
};
|
|
8355
8306
|
};
|
|
8356
8307
|
};
|
|
8357
8308
|
};
|
|
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
8309
|
};
|
|
8373
8310
|
};
|
|
8374
8311
|
};
|
|
8375
|
-
readonly
|
|
8312
|
+
readonly AppBskyUnspeccedGetSuggestedUsersSkeleton: {
|
|
8376
8313
|
readonly lexicon: 1;
|
|
8377
|
-
readonly id: "app.bsky.unspecced.
|
|
8314
|
+
readonly id: "app.bsky.unspecced.getSuggestedUsersSkeleton";
|
|
8378
8315
|
readonly defs: {
|
|
8379
8316
|
readonly main: {
|
|
8380
8317
|
readonly type: "query";
|
|
8381
|
-
readonly description: "
|
|
8318
|
+
readonly description: "Get a skeleton of suggested users. Intended to be called and hydrated by app.bsky.unspecced.getSuggestedUsers";
|
|
8382
8319
|
readonly parameters: {
|
|
8383
8320
|
readonly type: "params";
|
|
8384
|
-
readonly required: ["q"];
|
|
8385
8321
|
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
8322
|
readonly viewer: {
|
|
8391
8323
|
readonly type: "string";
|
|
8392
8324
|
readonly format: "did";
|
|
8393
|
-
readonly description: "DID of the account making the request (not included for public/unauthenticated queries).
|
|
8325
|
+
readonly description: "DID of the account making the request (not included for public/unauthenticated queries).";
|
|
8394
8326
|
};
|
|
8395
|
-
readonly
|
|
8396
|
-
readonly type: "
|
|
8397
|
-
readonly description: "
|
|
8327
|
+
readonly category: {
|
|
8328
|
+
readonly type: "string";
|
|
8329
|
+
readonly description: "Category of users to get suggestions for.";
|
|
8398
8330
|
};
|
|
8399
8331
|
readonly limit: {
|
|
8400
8332
|
readonly type: "integer";
|
|
8401
8333
|
readonly minimum: 1;
|
|
8402
|
-
readonly maximum:
|
|
8334
|
+
readonly maximum: 50;
|
|
8403
8335
|
readonly default: 25;
|
|
8404
8336
|
};
|
|
8405
|
-
readonly cursor: {
|
|
8406
|
-
readonly type: "string";
|
|
8407
|
-
readonly description: "Optional pagination mechanism; may not necessarily allow scrolling through entire result set.";
|
|
8408
|
-
};
|
|
8409
8337
|
};
|
|
8410
8338
|
};
|
|
8411
8339
|
readonly output: {
|
|
8412
8340
|
readonly encoding: "application/json";
|
|
8413
8341
|
readonly schema: {
|
|
8414
8342
|
readonly type: "object";
|
|
8415
|
-
readonly required: ["
|
|
8343
|
+
readonly required: ["dids"];
|
|
8416
8344
|
readonly properties: {
|
|
8417
|
-
readonly
|
|
8418
|
-
readonly type: "
|
|
8345
|
+
readonly dids: {
|
|
8346
|
+
readonly type: "array";
|
|
8347
|
+
readonly items: {
|
|
8348
|
+
readonly type: "string";
|
|
8349
|
+
readonly format: "did";
|
|
8350
|
+
};
|
|
8351
|
+
};
|
|
8352
|
+
readonly recId: {
|
|
8353
|
+
readonly type: "string";
|
|
8354
|
+
readonly description: "DEPRECATED: use recIdStr instead.";
|
|
8355
|
+
};
|
|
8356
|
+
readonly recIdStr: {
|
|
8357
|
+
readonly type: "string";
|
|
8358
|
+
readonly description: "Snowflake for this recommendation, use when submitting recommendation events.";
|
|
8359
|
+
};
|
|
8360
|
+
};
|
|
8361
|
+
};
|
|
8362
|
+
};
|
|
8363
|
+
};
|
|
8364
|
+
};
|
|
8365
|
+
};
|
|
8366
|
+
readonly AppBskyUnspeccedGetSuggestionsSkeleton: {
|
|
8367
|
+
readonly lexicon: 1;
|
|
8368
|
+
readonly id: "app.bsky.unspecced.getSuggestionsSkeleton";
|
|
8369
|
+
readonly defs: {
|
|
8370
|
+
readonly main: {
|
|
8371
|
+
readonly type: "query";
|
|
8372
|
+
readonly description: "Get a skeleton of suggested actors. Intended to be called and then hydrated through app.bsky.actor.getSuggestions";
|
|
8373
|
+
readonly parameters: {
|
|
8374
|
+
readonly type: "params";
|
|
8375
|
+
readonly properties: {
|
|
8376
|
+
readonly viewer: {
|
|
8377
|
+
readonly type: "string";
|
|
8378
|
+
readonly format: "did";
|
|
8379
|
+
readonly description: "DID of the account making the request (not included for public/unauthenticated queries). Used to boost followed accounts in ranking.";
|
|
8380
|
+
};
|
|
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
|
+
};
|
|
8676
|
+
readonly limit: {
|
|
8677
|
+
readonly type: "integer";
|
|
8678
|
+
readonly minimum: 1;
|
|
8679
|
+
readonly maximum: 100;
|
|
8680
|
+
readonly default: 25;
|
|
8681
|
+
};
|
|
8682
|
+
readonly cursor: {
|
|
8683
|
+
readonly type: "string";
|
|
8684
|
+
readonly description: "Optional pagination mechanism; may not necessarily allow scrolling through entire result set.";
|
|
8685
|
+
};
|
|
8686
|
+
};
|
|
8687
|
+
};
|
|
8688
|
+
readonly output: {
|
|
8689
|
+
readonly encoding: "application/json";
|
|
8690
|
+
readonly schema: {
|
|
8691
|
+
readonly type: "object";
|
|
8692
|
+
readonly required: ["actors"];
|
|
8693
|
+
readonly properties: {
|
|
8694
|
+
readonly cursor: {
|
|
8695
|
+
readonly type: "string";
|
|
8419
8696
|
};
|
|
8420
8697
|
readonly hitsTotal: {
|
|
8421
8698
|
readonly type: "integer";
|
|
@@ -11102,7 +11379,7 @@ export declare const schemaDict: {
|
|
|
11102
11379
|
};
|
|
11103
11380
|
readonly labelValue: {
|
|
11104
11381
|
readonly type: "string";
|
|
11105
|
-
readonly knownValues: ["!hide", "!
|
|
11382
|
+
readonly knownValues: ["!hide", "!warn", "!no-unauthenticated", "porn", "sexual", "nudity", "graphic-media", "bot"];
|
|
11106
11383
|
};
|
|
11107
11384
|
};
|
|
11108
11385
|
};
|
|
@@ -24689,19 +24966,19 @@ export declare const schemas: ({
|
|
|
24689
24966
|
readonly ref: "lex:app.bsky.actor.defs#profileView";
|
|
24690
24967
|
};
|
|
24691
24968
|
};
|
|
24969
|
+
readonly recIdStr: {
|
|
24970
|
+
readonly type: "string";
|
|
24971
|
+
readonly description: "Snowflake for this recommendation, use when submitting recommendation events.";
|
|
24972
|
+
};
|
|
24692
24973
|
readonly isFallback: {
|
|
24693
24974
|
readonly type: "boolean";
|
|
24694
|
-
readonly description: "
|
|
24975
|
+
readonly description: "DEPRECATED, unused. Previously: if true, response has fallen-back to generic results, and is not scoped using relativeToDid";
|
|
24695
24976
|
readonly default: false;
|
|
24696
24977
|
};
|
|
24697
24978
|
readonly recId: {
|
|
24698
24979
|
readonly type: "integer";
|
|
24699
24980
|
readonly description: "DEPRECATED: use recIdStr instead.";
|
|
24700
24981
|
};
|
|
24701
|
-
readonly recIdStr: {
|
|
24702
|
-
readonly type: "string";
|
|
24703
|
-
readonly description: "Snowflake for this recommendation, use when submitting recommendation events.";
|
|
24704
|
-
};
|
|
24705
24982
|
};
|
|
24706
24983
|
};
|
|
24707
24984
|
};
|
|
@@ -26167,132 +26444,450 @@ export declare const schemas: ({
|
|
|
26167
26444
|
};
|
|
26168
26445
|
};
|
|
26169
26446
|
};
|
|
26170
|
-
readonly ageAssuranceState: {
|
|
26171
|
-
readonly type: "object";
|
|
26172
|
-
readonly description: "The computed state of the age assurance process, returned to the user in question on certain authenticated requests.";
|
|
26173
|
-
readonly required: ["status"];
|
|
26174
|
-
readonly properties: {
|
|
26175
|
-
readonly lastInitiatedAt: {
|
|
26176
|
-
readonly type: "string";
|
|
26177
|
-
readonly format: "datetime";
|
|
26178
|
-
readonly description: "The timestamp when this state was last updated.";
|
|
26179
|
-
};
|
|
26180
|
-
readonly status: {
|
|
26181
|
-
readonly type: "string";
|
|
26182
|
-
readonly description: "The status of the age assurance process.";
|
|
26183
|
-
readonly knownValues: ["unknown", "pending", "assured", "blocked"];
|
|
26447
|
+
readonly ageAssuranceState: {
|
|
26448
|
+
readonly type: "object";
|
|
26449
|
+
readonly description: "The computed state of the age assurance process, returned to the user in question on certain authenticated requests.";
|
|
26450
|
+
readonly required: ["status"];
|
|
26451
|
+
readonly properties: {
|
|
26452
|
+
readonly lastInitiatedAt: {
|
|
26453
|
+
readonly type: "string";
|
|
26454
|
+
readonly format: "datetime";
|
|
26455
|
+
readonly description: "The timestamp when this state was last updated.";
|
|
26456
|
+
};
|
|
26457
|
+
readonly status: {
|
|
26458
|
+
readonly type: "string";
|
|
26459
|
+
readonly description: "The status of the age assurance process.";
|
|
26460
|
+
readonly knownValues: ["unknown", "pending", "assured", "blocked"];
|
|
26461
|
+
};
|
|
26462
|
+
};
|
|
26463
|
+
};
|
|
26464
|
+
readonly ageAssuranceEvent: {
|
|
26465
|
+
readonly type: "object";
|
|
26466
|
+
readonly description: "Object used to store age assurance data in stash.";
|
|
26467
|
+
readonly required: ["createdAt", "status", "attemptId"];
|
|
26468
|
+
readonly properties: {
|
|
26469
|
+
readonly createdAt: {
|
|
26470
|
+
readonly type: "string";
|
|
26471
|
+
readonly format: "datetime";
|
|
26472
|
+
readonly description: "The date and time of this write operation.";
|
|
26473
|
+
};
|
|
26474
|
+
readonly status: {
|
|
26475
|
+
readonly type: "string";
|
|
26476
|
+
readonly description: "The status of the age assurance process.";
|
|
26477
|
+
readonly knownValues: ["unknown", "pending", "assured"];
|
|
26478
|
+
};
|
|
26479
|
+
readonly attemptId: {
|
|
26480
|
+
readonly type: "string";
|
|
26481
|
+
readonly description: "The unique identifier for this instance of the age assurance flow, in UUID format.";
|
|
26482
|
+
};
|
|
26483
|
+
readonly email: {
|
|
26484
|
+
readonly type: "string";
|
|
26485
|
+
readonly description: "The email used for AA.";
|
|
26486
|
+
};
|
|
26487
|
+
readonly initIp: {
|
|
26488
|
+
readonly type: "string";
|
|
26489
|
+
readonly description: "The IP address used when initiating the AA flow.";
|
|
26490
|
+
};
|
|
26491
|
+
readonly initUa: {
|
|
26492
|
+
readonly type: "string";
|
|
26493
|
+
readonly description: "The user agent used when initiating the AA flow.";
|
|
26494
|
+
};
|
|
26495
|
+
readonly completeIp: {
|
|
26496
|
+
readonly type: "string";
|
|
26497
|
+
readonly description: "The IP address used when completing the AA flow.";
|
|
26498
|
+
};
|
|
26499
|
+
readonly completeUa: {
|
|
26500
|
+
readonly type: "string";
|
|
26501
|
+
readonly description: "The user agent used when completing the AA flow.";
|
|
26502
|
+
};
|
|
26503
|
+
};
|
|
26504
|
+
};
|
|
26505
|
+
};
|
|
26506
|
+
} | {
|
|
26507
|
+
readonly lexicon: 1;
|
|
26508
|
+
readonly id: "app.bsky.unspecced.getAgeAssuranceState";
|
|
26509
|
+
readonly defs: {
|
|
26510
|
+
readonly main: {
|
|
26511
|
+
readonly type: "query";
|
|
26512
|
+
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.";
|
|
26513
|
+
readonly output: {
|
|
26514
|
+
readonly encoding: "application/json";
|
|
26515
|
+
readonly schema: {
|
|
26516
|
+
readonly type: "ref";
|
|
26517
|
+
readonly ref: "lex:app.bsky.unspecced.defs#ageAssuranceState";
|
|
26518
|
+
};
|
|
26519
|
+
};
|
|
26520
|
+
};
|
|
26521
|
+
};
|
|
26522
|
+
} | {
|
|
26523
|
+
readonly lexicon: 1;
|
|
26524
|
+
readonly id: "app.bsky.unspecced.getConfig";
|
|
26525
|
+
readonly defs: {
|
|
26526
|
+
readonly main: {
|
|
26527
|
+
readonly type: "query";
|
|
26528
|
+
readonly description: "Get miscellaneous runtime configuration.";
|
|
26529
|
+
readonly output: {
|
|
26530
|
+
readonly encoding: "application/json";
|
|
26531
|
+
readonly schema: {
|
|
26532
|
+
readonly type: "object";
|
|
26533
|
+
readonly required: [];
|
|
26534
|
+
readonly properties: {
|
|
26535
|
+
readonly checkEmailConfirmed: {
|
|
26536
|
+
readonly type: "boolean";
|
|
26537
|
+
};
|
|
26538
|
+
readonly liveNow: {
|
|
26539
|
+
readonly type: "array";
|
|
26540
|
+
readonly items: {
|
|
26541
|
+
readonly type: "ref";
|
|
26542
|
+
readonly ref: "lex:app.bsky.unspecced.getConfig#liveNowConfig";
|
|
26543
|
+
};
|
|
26544
|
+
};
|
|
26545
|
+
};
|
|
26546
|
+
};
|
|
26547
|
+
};
|
|
26548
|
+
};
|
|
26549
|
+
readonly liveNowConfig: {
|
|
26550
|
+
readonly type: "object";
|
|
26551
|
+
readonly required: ["did", "domains"];
|
|
26552
|
+
readonly properties: {
|
|
26553
|
+
readonly did: {
|
|
26554
|
+
readonly type: "string";
|
|
26555
|
+
readonly format: "did";
|
|
26556
|
+
};
|
|
26557
|
+
readonly domains: {
|
|
26558
|
+
readonly type: "array";
|
|
26559
|
+
readonly items: {
|
|
26560
|
+
readonly type: "string";
|
|
26561
|
+
};
|
|
26562
|
+
};
|
|
26563
|
+
};
|
|
26564
|
+
};
|
|
26565
|
+
};
|
|
26566
|
+
} | {
|
|
26567
|
+
readonly lexicon: 1;
|
|
26568
|
+
readonly id: "app.bsky.unspecced.getOnboardingSuggestedStarterPacks";
|
|
26569
|
+
readonly defs: {
|
|
26570
|
+
readonly main: {
|
|
26571
|
+
readonly type: "query";
|
|
26572
|
+
readonly description: "Get a list of suggested starterpacks for onboarding";
|
|
26573
|
+
readonly parameters: {
|
|
26574
|
+
readonly type: "params";
|
|
26575
|
+
readonly properties: {
|
|
26576
|
+
readonly limit: {
|
|
26577
|
+
readonly type: "integer";
|
|
26578
|
+
readonly minimum: 1;
|
|
26579
|
+
readonly maximum: 25;
|
|
26580
|
+
readonly default: 10;
|
|
26581
|
+
};
|
|
26582
|
+
};
|
|
26583
|
+
};
|
|
26584
|
+
readonly output: {
|
|
26585
|
+
readonly encoding: "application/json";
|
|
26586
|
+
readonly schema: {
|
|
26587
|
+
readonly type: "object";
|
|
26588
|
+
readonly required: ["starterPacks"];
|
|
26589
|
+
readonly properties: {
|
|
26590
|
+
readonly starterPacks: {
|
|
26591
|
+
readonly type: "array";
|
|
26592
|
+
readonly items: {
|
|
26593
|
+
readonly type: "ref";
|
|
26594
|
+
readonly ref: "lex:app.bsky.graph.defs#starterPackView";
|
|
26595
|
+
};
|
|
26596
|
+
};
|
|
26597
|
+
};
|
|
26598
|
+
};
|
|
26599
|
+
};
|
|
26600
|
+
};
|
|
26601
|
+
};
|
|
26602
|
+
} | {
|
|
26603
|
+
readonly lexicon: 1;
|
|
26604
|
+
readonly id: "app.bsky.unspecced.getOnboardingSuggestedStarterPacksSkeleton";
|
|
26605
|
+
readonly defs: {
|
|
26606
|
+
readonly main: {
|
|
26607
|
+
readonly type: "query";
|
|
26608
|
+
readonly description: "Get a skeleton of suggested starterpacks for onboarding. Intended to be called and hydrated by app.bsky.unspecced.getOnboardingSuggestedStarterPacks";
|
|
26609
|
+
readonly parameters: {
|
|
26610
|
+
readonly type: "params";
|
|
26611
|
+
readonly properties: {
|
|
26612
|
+
readonly viewer: {
|
|
26613
|
+
readonly type: "string";
|
|
26614
|
+
readonly format: "did";
|
|
26615
|
+
readonly description: "DID of the account making the request (not included for public/unauthenticated queries).";
|
|
26616
|
+
};
|
|
26617
|
+
readonly limit: {
|
|
26618
|
+
readonly type: "integer";
|
|
26619
|
+
readonly minimum: 1;
|
|
26620
|
+
readonly maximum: 25;
|
|
26621
|
+
readonly default: 10;
|
|
26622
|
+
};
|
|
26623
|
+
};
|
|
26624
|
+
};
|
|
26625
|
+
readonly output: {
|
|
26626
|
+
readonly encoding: "application/json";
|
|
26627
|
+
readonly schema: {
|
|
26628
|
+
readonly type: "object";
|
|
26629
|
+
readonly required: ["starterPacks"];
|
|
26630
|
+
readonly properties: {
|
|
26631
|
+
readonly starterPacks: {
|
|
26632
|
+
readonly type: "array";
|
|
26633
|
+
readonly items: {
|
|
26634
|
+
readonly type: "string";
|
|
26635
|
+
readonly format: "at-uri";
|
|
26636
|
+
};
|
|
26637
|
+
};
|
|
26638
|
+
};
|
|
26639
|
+
};
|
|
26640
|
+
};
|
|
26641
|
+
};
|
|
26642
|
+
};
|
|
26643
|
+
} | {
|
|
26644
|
+
readonly lexicon: 1;
|
|
26645
|
+
readonly id: "app.bsky.unspecced.getOnboardingSuggestedUsersSkeleton";
|
|
26646
|
+
readonly defs: {
|
|
26647
|
+
readonly main: {
|
|
26648
|
+
readonly type: "query";
|
|
26649
|
+
readonly description: "Get a skeleton of suggested users for onboarding. Intended to be called and hydrated by app.bsky.unspecced.getSuggestedOnboardingUsers";
|
|
26650
|
+
readonly parameters: {
|
|
26651
|
+
readonly type: "params";
|
|
26652
|
+
readonly properties: {
|
|
26653
|
+
readonly viewer: {
|
|
26654
|
+
readonly type: "string";
|
|
26655
|
+
readonly format: "did";
|
|
26656
|
+
readonly description: "DID of the account making the request (not included for public/unauthenticated queries).";
|
|
26657
|
+
};
|
|
26658
|
+
readonly category: {
|
|
26659
|
+
readonly type: "string";
|
|
26660
|
+
readonly description: "Category of users to get suggestions for.";
|
|
26661
|
+
};
|
|
26662
|
+
readonly limit: {
|
|
26663
|
+
readonly type: "integer";
|
|
26664
|
+
readonly minimum: 1;
|
|
26665
|
+
readonly maximum: 50;
|
|
26666
|
+
readonly default: 25;
|
|
26667
|
+
};
|
|
26668
|
+
};
|
|
26669
|
+
};
|
|
26670
|
+
readonly output: {
|
|
26671
|
+
readonly encoding: "application/json";
|
|
26672
|
+
readonly schema: {
|
|
26673
|
+
readonly type: "object";
|
|
26674
|
+
readonly required: ["dids"];
|
|
26675
|
+
readonly properties: {
|
|
26676
|
+
readonly dids: {
|
|
26677
|
+
readonly type: "array";
|
|
26678
|
+
readonly items: {
|
|
26679
|
+
readonly type: "string";
|
|
26680
|
+
readonly format: "did";
|
|
26681
|
+
};
|
|
26682
|
+
};
|
|
26683
|
+
readonly recId: {
|
|
26684
|
+
readonly type: "string";
|
|
26685
|
+
readonly description: "DEPRECATED: use recIdStr instead.";
|
|
26686
|
+
};
|
|
26687
|
+
readonly recIdStr: {
|
|
26688
|
+
readonly type: "string";
|
|
26689
|
+
readonly description: "Snowflake for this recommendation, use when submitting recommendation events.";
|
|
26690
|
+
};
|
|
26691
|
+
};
|
|
26692
|
+
};
|
|
26693
|
+
};
|
|
26694
|
+
};
|
|
26695
|
+
};
|
|
26696
|
+
} | {
|
|
26697
|
+
readonly lexicon: 1;
|
|
26698
|
+
readonly id: "app.bsky.unspecced.getPopularFeedGenerators";
|
|
26699
|
+
readonly defs: {
|
|
26700
|
+
readonly main: {
|
|
26701
|
+
readonly type: "query";
|
|
26702
|
+
readonly description: "An unspecced view of globally popular feed generators.";
|
|
26703
|
+
readonly parameters: {
|
|
26704
|
+
readonly type: "params";
|
|
26705
|
+
readonly properties: {
|
|
26706
|
+
readonly limit: {
|
|
26707
|
+
readonly type: "integer";
|
|
26708
|
+
readonly minimum: 1;
|
|
26709
|
+
readonly maximum: 100;
|
|
26710
|
+
readonly default: 50;
|
|
26711
|
+
};
|
|
26712
|
+
readonly cursor: {
|
|
26713
|
+
readonly type: "string";
|
|
26714
|
+
};
|
|
26715
|
+
readonly query: {
|
|
26716
|
+
readonly type: "string";
|
|
26717
|
+
};
|
|
26184
26718
|
};
|
|
26185
26719
|
};
|
|
26186
|
-
|
|
26187
|
-
|
|
26188
|
-
|
|
26189
|
-
|
|
26190
|
-
|
|
26191
|
-
|
|
26192
|
-
|
|
26193
|
-
|
|
26194
|
-
|
|
26195
|
-
|
|
26196
|
-
|
|
26197
|
-
|
|
26198
|
-
|
|
26199
|
-
|
|
26200
|
-
|
|
26201
|
-
|
|
26202
|
-
|
|
26203
|
-
readonly type: "string";
|
|
26204
|
-
readonly description: "The unique identifier for this instance of the age assurance flow, in UUID format.";
|
|
26205
|
-
};
|
|
26206
|
-
readonly email: {
|
|
26207
|
-
readonly type: "string";
|
|
26208
|
-
readonly description: "The email used for AA.";
|
|
26209
|
-
};
|
|
26210
|
-
readonly initIp: {
|
|
26211
|
-
readonly type: "string";
|
|
26212
|
-
readonly description: "The IP address used when initiating the AA flow.";
|
|
26213
|
-
};
|
|
26214
|
-
readonly initUa: {
|
|
26215
|
-
readonly type: "string";
|
|
26216
|
-
readonly description: "The user agent used when initiating the AA flow.";
|
|
26217
|
-
};
|
|
26218
|
-
readonly completeIp: {
|
|
26219
|
-
readonly type: "string";
|
|
26220
|
-
readonly description: "The IP address used when completing the AA flow.";
|
|
26221
|
-
};
|
|
26222
|
-
readonly completeUa: {
|
|
26223
|
-
readonly type: "string";
|
|
26224
|
-
readonly description: "The user agent used when completing the AA flow.";
|
|
26720
|
+
readonly output: {
|
|
26721
|
+
readonly encoding: "application/json";
|
|
26722
|
+
readonly schema: {
|
|
26723
|
+
readonly type: "object";
|
|
26724
|
+
readonly required: ["feeds"];
|
|
26725
|
+
readonly properties: {
|
|
26726
|
+
readonly cursor: {
|
|
26727
|
+
readonly type: "string";
|
|
26728
|
+
};
|
|
26729
|
+
readonly feeds: {
|
|
26730
|
+
readonly type: "array";
|
|
26731
|
+
readonly items: {
|
|
26732
|
+
readonly type: "ref";
|
|
26733
|
+
readonly ref: "lex:app.bsky.feed.defs#generatorView";
|
|
26734
|
+
};
|
|
26735
|
+
};
|
|
26736
|
+
};
|
|
26225
26737
|
};
|
|
26226
26738
|
};
|
|
26227
26739
|
};
|
|
26228
26740
|
};
|
|
26229
26741
|
} | {
|
|
26230
26742
|
readonly lexicon: 1;
|
|
26231
|
-
readonly id: "app.bsky.unspecced.
|
|
26743
|
+
readonly id: "app.bsky.unspecced.getPostThreadOtherV2";
|
|
26232
26744
|
readonly defs: {
|
|
26233
26745
|
readonly main: {
|
|
26234
26746
|
readonly type: "query";
|
|
26235
|
-
readonly description: "
|
|
26747
|
+
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.";
|
|
26748
|
+
readonly parameters: {
|
|
26749
|
+
readonly type: "params";
|
|
26750
|
+
readonly required: ["anchor"];
|
|
26751
|
+
readonly properties: {
|
|
26752
|
+
readonly anchor: {
|
|
26753
|
+
readonly type: "string";
|
|
26754
|
+
readonly format: "at-uri";
|
|
26755
|
+
readonly description: "Reference (AT-URI) to post record. This is the anchor post.";
|
|
26756
|
+
};
|
|
26757
|
+
};
|
|
26758
|
+
};
|
|
26236
26759
|
readonly output: {
|
|
26237
26760
|
readonly encoding: "application/json";
|
|
26238
26761
|
readonly schema: {
|
|
26239
|
-
readonly type: "
|
|
26240
|
-
readonly
|
|
26762
|
+
readonly type: "object";
|
|
26763
|
+
readonly required: ["thread"];
|
|
26764
|
+
readonly properties: {
|
|
26765
|
+
readonly thread: {
|
|
26766
|
+
readonly type: "array";
|
|
26767
|
+
readonly description: "A flat list of other thread items. The depth of each item is indicated by the depth property inside the item.";
|
|
26768
|
+
readonly items: {
|
|
26769
|
+
readonly type: "ref";
|
|
26770
|
+
readonly ref: "lex:app.bsky.unspecced.getPostThreadOtherV2#threadItem";
|
|
26771
|
+
};
|
|
26772
|
+
};
|
|
26773
|
+
};
|
|
26774
|
+
};
|
|
26775
|
+
};
|
|
26776
|
+
};
|
|
26777
|
+
readonly threadItem: {
|
|
26778
|
+
readonly type: "object";
|
|
26779
|
+
readonly required: ["uri", "depth", "value"];
|
|
26780
|
+
readonly properties: {
|
|
26781
|
+
readonly uri: {
|
|
26782
|
+
readonly type: "string";
|
|
26783
|
+
readonly format: "at-uri";
|
|
26784
|
+
};
|
|
26785
|
+
readonly depth: {
|
|
26786
|
+
readonly type: "integer";
|
|
26787
|
+
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.";
|
|
26788
|
+
};
|
|
26789
|
+
readonly value: {
|
|
26790
|
+
readonly type: "union";
|
|
26791
|
+
readonly refs: ["lex:app.bsky.unspecced.defs#threadItemPost"];
|
|
26241
26792
|
};
|
|
26242
26793
|
};
|
|
26243
26794
|
};
|
|
26244
26795
|
};
|
|
26245
26796
|
} | {
|
|
26246
26797
|
readonly lexicon: 1;
|
|
26247
|
-
readonly id: "app.bsky.unspecced.
|
|
26798
|
+
readonly id: "app.bsky.unspecced.getPostThreadV2";
|
|
26248
26799
|
readonly defs: {
|
|
26249
26800
|
readonly main: {
|
|
26250
26801
|
readonly type: "query";
|
|
26251
|
-
readonly description: "Get
|
|
26802
|
+
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.";
|
|
26803
|
+
readonly parameters: {
|
|
26804
|
+
readonly type: "params";
|
|
26805
|
+
readonly required: ["anchor"];
|
|
26806
|
+
readonly properties: {
|
|
26807
|
+
readonly anchor: {
|
|
26808
|
+
readonly type: "string";
|
|
26809
|
+
readonly format: "at-uri";
|
|
26810
|
+
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.";
|
|
26811
|
+
};
|
|
26812
|
+
readonly above: {
|
|
26813
|
+
readonly type: "boolean";
|
|
26814
|
+
readonly description: "Whether to include parents above the anchor.";
|
|
26815
|
+
readonly default: true;
|
|
26816
|
+
};
|
|
26817
|
+
readonly below: {
|
|
26818
|
+
readonly type: "integer";
|
|
26819
|
+
readonly description: "How many levels of replies to include below the anchor.";
|
|
26820
|
+
readonly default: 6;
|
|
26821
|
+
readonly minimum: 0;
|
|
26822
|
+
readonly maximum: 20;
|
|
26823
|
+
};
|
|
26824
|
+
readonly branchingFactor: {
|
|
26825
|
+
readonly type: "integer";
|
|
26826
|
+
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).";
|
|
26827
|
+
readonly default: 10;
|
|
26828
|
+
readonly minimum: 0;
|
|
26829
|
+
readonly maximum: 100;
|
|
26830
|
+
};
|
|
26831
|
+
readonly sort: {
|
|
26832
|
+
readonly type: "string";
|
|
26833
|
+
readonly description: "Sorting for the thread replies.";
|
|
26834
|
+
readonly knownValues: ["newest", "oldest", "top"];
|
|
26835
|
+
readonly default: "oldest";
|
|
26836
|
+
};
|
|
26837
|
+
};
|
|
26838
|
+
};
|
|
26252
26839
|
readonly output: {
|
|
26253
26840
|
readonly encoding: "application/json";
|
|
26254
26841
|
readonly schema: {
|
|
26255
26842
|
readonly type: "object";
|
|
26256
|
-
readonly required: [];
|
|
26843
|
+
readonly required: ["thread", "hasOtherReplies"];
|
|
26257
26844
|
readonly properties: {
|
|
26258
|
-
readonly
|
|
26259
|
-
readonly type: "boolean";
|
|
26260
|
-
};
|
|
26261
|
-
readonly liveNow: {
|
|
26845
|
+
readonly thread: {
|
|
26262
26846
|
readonly type: "array";
|
|
26847
|
+
readonly description: "A flat list of thread items. The depth of each item is indicated by the depth property inside the item.";
|
|
26263
26848
|
readonly items: {
|
|
26264
26849
|
readonly type: "ref";
|
|
26265
|
-
readonly ref: "lex:app.bsky.unspecced.
|
|
26850
|
+
readonly ref: "lex:app.bsky.unspecced.getPostThreadV2#threadItem";
|
|
26266
26851
|
};
|
|
26267
26852
|
};
|
|
26853
|
+
readonly threadgate: {
|
|
26854
|
+
readonly type: "ref";
|
|
26855
|
+
readonly ref: "lex:app.bsky.feed.defs#threadgateView";
|
|
26856
|
+
};
|
|
26857
|
+
readonly hasOtherReplies: {
|
|
26858
|
+
readonly type: "boolean";
|
|
26859
|
+
readonly description: "Whether this thread has additional replies. If true, a call can be made to the `getPostThreadOtherV2` endpoint to retrieve them.";
|
|
26860
|
+
};
|
|
26268
26861
|
};
|
|
26269
26862
|
};
|
|
26270
26863
|
};
|
|
26271
26864
|
};
|
|
26272
|
-
readonly
|
|
26865
|
+
readonly threadItem: {
|
|
26273
26866
|
readonly type: "object";
|
|
26274
|
-
readonly required: ["
|
|
26867
|
+
readonly required: ["uri", "depth", "value"];
|
|
26275
26868
|
readonly properties: {
|
|
26276
|
-
readonly
|
|
26869
|
+
readonly uri: {
|
|
26277
26870
|
readonly type: "string";
|
|
26278
|
-
readonly format: "
|
|
26871
|
+
readonly format: "at-uri";
|
|
26279
26872
|
};
|
|
26280
|
-
readonly
|
|
26281
|
-
readonly type: "
|
|
26282
|
-
readonly
|
|
26283
|
-
|
|
26284
|
-
|
|
26873
|
+
readonly depth: {
|
|
26874
|
+
readonly type: "integer";
|
|
26875
|
+
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.";
|
|
26876
|
+
};
|
|
26877
|
+
readonly value: {
|
|
26878
|
+
readonly type: "union";
|
|
26879
|
+
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"];
|
|
26285
26880
|
};
|
|
26286
26881
|
};
|
|
26287
26882
|
};
|
|
26288
26883
|
};
|
|
26289
26884
|
} | {
|
|
26290
26885
|
readonly lexicon: 1;
|
|
26291
|
-
readonly id: "app.bsky.unspecced.
|
|
26886
|
+
readonly id: "app.bsky.unspecced.getSuggestedFeeds";
|
|
26292
26887
|
readonly defs: {
|
|
26293
26888
|
readonly main: {
|
|
26294
26889
|
readonly type: "query";
|
|
26295
|
-
readonly description: "Get a list of suggested
|
|
26890
|
+
readonly description: "Get a list of suggested feeds";
|
|
26296
26891
|
readonly parameters: {
|
|
26297
26892
|
readonly type: "params";
|
|
26298
26893
|
readonly properties: {
|
|
@@ -26308,13 +26903,13 @@ export declare const schemas: ({
|
|
|
26308
26903
|
readonly encoding: "application/json";
|
|
26309
26904
|
readonly schema: {
|
|
26310
26905
|
readonly type: "object";
|
|
26311
|
-
readonly required: ["
|
|
26906
|
+
readonly required: ["feeds"];
|
|
26312
26907
|
readonly properties: {
|
|
26313
|
-
readonly
|
|
26908
|
+
readonly feeds: {
|
|
26314
26909
|
readonly type: "array";
|
|
26315
26910
|
readonly items: {
|
|
26316
26911
|
readonly type: "ref";
|
|
26317
|
-
readonly ref: "lex:app.bsky.
|
|
26912
|
+
readonly ref: "lex:app.bsky.feed.defs#generatorView";
|
|
26318
26913
|
};
|
|
26319
26914
|
};
|
|
26320
26915
|
};
|
|
@@ -26324,11 +26919,11 @@ export declare const schemas: ({
|
|
|
26324
26919
|
};
|
|
26325
26920
|
} | {
|
|
26326
26921
|
readonly lexicon: 1;
|
|
26327
|
-
readonly id: "app.bsky.unspecced.
|
|
26922
|
+
readonly id: "app.bsky.unspecced.getSuggestedFeedsSkeleton";
|
|
26328
26923
|
readonly defs: {
|
|
26329
26924
|
readonly main: {
|
|
26330
26925
|
readonly type: "query";
|
|
26331
|
-
readonly description: "Get a skeleton of suggested
|
|
26926
|
+
readonly description: "Get a skeleton of suggested feeds. Intended to be called and hydrated by app.bsky.unspecced.getSuggestedFeeds";
|
|
26332
26927
|
readonly parameters: {
|
|
26333
26928
|
readonly type: "params";
|
|
26334
26929
|
readonly properties: {
|
|
@@ -26349,9 +26944,9 @@ export declare const schemas: ({
|
|
|
26349
26944
|
readonly encoding: "application/json";
|
|
26350
26945
|
readonly schema: {
|
|
26351
26946
|
readonly type: "object";
|
|
26352
|
-
readonly required: ["
|
|
26947
|
+
readonly required: ["feeds"];
|
|
26353
26948
|
readonly properties: {
|
|
26354
|
-
readonly
|
|
26949
|
+
readonly feeds: {
|
|
26355
26950
|
readonly type: "array";
|
|
26356
26951
|
readonly items: {
|
|
26357
26952
|
readonly type: "string";
|
|
@@ -26365,19 +26960,14 @@ export declare const schemas: ({
|
|
|
26365
26960
|
};
|
|
26366
26961
|
} | {
|
|
26367
26962
|
readonly lexicon: 1;
|
|
26368
|
-
readonly id: "app.bsky.unspecced.
|
|
26963
|
+
readonly id: "app.bsky.unspecced.getSuggestedOnboardingUsers";
|
|
26369
26964
|
readonly defs: {
|
|
26370
26965
|
readonly main: {
|
|
26371
26966
|
readonly type: "query";
|
|
26372
|
-
readonly description: "Get a
|
|
26967
|
+
readonly description: "Get a list of suggested users for onboarding";
|
|
26373
26968
|
readonly parameters: {
|
|
26374
26969
|
readonly type: "params";
|
|
26375
26970
|
readonly properties: {
|
|
26376
|
-
readonly viewer: {
|
|
26377
|
-
readonly type: "string";
|
|
26378
|
-
readonly format: "did";
|
|
26379
|
-
readonly description: "DID of the account making the request (not included for public/unauthenticated queries).";
|
|
26380
|
-
};
|
|
26381
26971
|
readonly category: {
|
|
26382
26972
|
readonly type: "string";
|
|
26383
26973
|
readonly description: "Category of users to get suggestions for.";
|
|
@@ -26394,13 +26984,13 @@ export declare const schemas: ({
|
|
|
26394
26984
|
readonly encoding: "application/json";
|
|
26395
26985
|
readonly schema: {
|
|
26396
26986
|
readonly type: "object";
|
|
26397
|
-
readonly required: ["
|
|
26987
|
+
readonly required: ["actors"];
|
|
26398
26988
|
readonly properties: {
|
|
26399
|
-
readonly
|
|
26989
|
+
readonly actors: {
|
|
26400
26990
|
readonly type: "array";
|
|
26401
26991
|
readonly items: {
|
|
26402
|
-
readonly type: "
|
|
26403
|
-
readonly
|
|
26992
|
+
readonly type: "ref";
|
|
26993
|
+
readonly ref: "lex:app.bsky.actor.defs#profileView";
|
|
26404
26994
|
};
|
|
26405
26995
|
};
|
|
26406
26996
|
readonly recId: {
|
|
@@ -26418,25 +27008,19 @@ export declare const schemas: ({
|
|
|
26418
27008
|
};
|
|
26419
27009
|
} | {
|
|
26420
27010
|
readonly lexicon: 1;
|
|
26421
|
-
readonly id: "app.bsky.unspecced.
|
|
27011
|
+
readonly id: "app.bsky.unspecced.getSuggestedStarterPacks";
|
|
26422
27012
|
readonly defs: {
|
|
26423
27013
|
readonly main: {
|
|
26424
27014
|
readonly type: "query";
|
|
26425
|
-
readonly description: "
|
|
27015
|
+
readonly description: "Get a list of suggested starterpacks";
|
|
26426
27016
|
readonly parameters: {
|
|
26427
27017
|
readonly type: "params";
|
|
26428
27018
|
readonly properties: {
|
|
26429
27019
|
readonly limit: {
|
|
26430
27020
|
readonly type: "integer";
|
|
26431
27021
|
readonly minimum: 1;
|
|
26432
|
-
readonly maximum:
|
|
26433
|
-
readonly default:
|
|
26434
|
-
};
|
|
26435
|
-
readonly cursor: {
|
|
26436
|
-
readonly type: "string";
|
|
26437
|
-
};
|
|
26438
|
-
readonly query: {
|
|
26439
|
-
readonly type: "string";
|
|
27022
|
+
readonly maximum: 25;
|
|
27023
|
+
readonly default: 10;
|
|
26440
27024
|
};
|
|
26441
27025
|
};
|
|
26442
27026
|
};
|
|
@@ -26444,16 +27028,13 @@ export declare const schemas: ({
|
|
|
26444
27028
|
readonly encoding: "application/json";
|
|
26445
27029
|
readonly schema: {
|
|
26446
27030
|
readonly type: "object";
|
|
26447
|
-
readonly required: ["
|
|
27031
|
+
readonly required: ["starterPacks"];
|
|
26448
27032
|
readonly properties: {
|
|
26449
|
-
readonly
|
|
26450
|
-
readonly type: "string";
|
|
26451
|
-
};
|
|
26452
|
-
readonly feeds: {
|
|
27033
|
+
readonly starterPacks: {
|
|
26453
27034
|
readonly type: "array";
|
|
26454
27035
|
readonly items: {
|
|
26455
27036
|
readonly type: "ref";
|
|
26456
|
-
readonly ref: "lex:app.bsky.
|
|
27037
|
+
readonly ref: "lex:app.bsky.graph.defs#starterPackView";
|
|
26457
27038
|
};
|
|
26458
27039
|
};
|
|
26459
27040
|
};
|
|
@@ -26463,19 +27044,24 @@ export declare const schemas: ({
|
|
|
26463
27044
|
};
|
|
26464
27045
|
} | {
|
|
26465
27046
|
readonly lexicon: 1;
|
|
26466
|
-
readonly id: "app.bsky.unspecced.
|
|
27047
|
+
readonly id: "app.bsky.unspecced.getSuggestedStarterPacksSkeleton";
|
|
26467
27048
|
readonly defs: {
|
|
26468
27049
|
readonly main: {
|
|
26469
27050
|
readonly type: "query";
|
|
26470
|
-
readonly description: "
|
|
27051
|
+
readonly description: "Get a skeleton of suggested starterpacks. Intended to be called and hydrated by app.bsky.unspecced.getSuggestedStarterpacks";
|
|
26471
27052
|
readonly parameters: {
|
|
26472
27053
|
readonly type: "params";
|
|
26473
|
-
readonly required: ["anchor"];
|
|
26474
27054
|
readonly properties: {
|
|
26475
|
-
readonly
|
|
27055
|
+
readonly viewer: {
|
|
26476
27056
|
readonly type: "string";
|
|
26477
|
-
readonly format: "
|
|
26478
|
-
readonly description: "
|
|
27057
|
+
readonly format: "did";
|
|
27058
|
+
readonly description: "DID of the account making the request (not included for public/unauthenticated queries).";
|
|
27059
|
+
};
|
|
27060
|
+
readonly limit: {
|
|
27061
|
+
readonly type: "integer";
|
|
27062
|
+
readonly minimum: 1;
|
|
27063
|
+
readonly maximum: 25;
|
|
27064
|
+
readonly default: 10;
|
|
26479
27065
|
};
|
|
26480
27066
|
};
|
|
26481
27067
|
};
|
|
@@ -26483,79 +27069,39 @@ export declare const schemas: ({
|
|
|
26483
27069
|
readonly encoding: "application/json";
|
|
26484
27070
|
readonly schema: {
|
|
26485
27071
|
readonly type: "object";
|
|
26486
|
-
readonly required: ["
|
|
27072
|
+
readonly required: ["starterPacks"];
|
|
26487
27073
|
readonly properties: {
|
|
26488
|
-
readonly
|
|
27074
|
+
readonly starterPacks: {
|
|
26489
27075
|
readonly type: "array";
|
|
26490
|
-
readonly description: "A flat list of other thread items. The depth of each item is indicated by the depth property inside the item.";
|
|
26491
27076
|
readonly items: {
|
|
26492
|
-
readonly type: "
|
|
26493
|
-
readonly
|
|
27077
|
+
readonly type: "string";
|
|
27078
|
+
readonly format: "at-uri";
|
|
26494
27079
|
};
|
|
26495
27080
|
};
|
|
26496
27081
|
};
|
|
26497
27082
|
};
|
|
26498
27083
|
};
|
|
26499
27084
|
};
|
|
26500
|
-
readonly threadItem: {
|
|
26501
|
-
readonly type: "object";
|
|
26502
|
-
readonly required: ["uri", "depth", "value"];
|
|
26503
|
-
readonly properties: {
|
|
26504
|
-
readonly uri: {
|
|
26505
|
-
readonly type: "string";
|
|
26506
|
-
readonly format: "at-uri";
|
|
26507
|
-
};
|
|
26508
|
-
readonly depth: {
|
|
26509
|
-
readonly type: "integer";
|
|
26510
|
-
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.";
|
|
26511
|
-
};
|
|
26512
|
-
readonly value: {
|
|
26513
|
-
readonly type: "union";
|
|
26514
|
-
readonly refs: ["lex:app.bsky.unspecced.defs#threadItemPost"];
|
|
26515
|
-
};
|
|
26516
|
-
};
|
|
26517
|
-
};
|
|
26518
27085
|
};
|
|
26519
27086
|
} | {
|
|
26520
27087
|
readonly lexicon: 1;
|
|
26521
|
-
readonly id: "app.bsky.unspecced.
|
|
27088
|
+
readonly id: "app.bsky.unspecced.getSuggestedUsers";
|
|
26522
27089
|
readonly defs: {
|
|
26523
27090
|
readonly main: {
|
|
26524
27091
|
readonly type: "query";
|
|
26525
|
-
readonly description: "
|
|
27092
|
+
readonly description: "Get a list of suggested users";
|
|
26526
27093
|
readonly parameters: {
|
|
26527
27094
|
readonly type: "params";
|
|
26528
|
-
readonly required: ["anchor"];
|
|
26529
27095
|
readonly properties: {
|
|
26530
|
-
readonly
|
|
27096
|
+
readonly category: {
|
|
26531
27097
|
readonly type: "string";
|
|
26532
|
-
readonly
|
|
26533
|
-
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.";
|
|
26534
|
-
};
|
|
26535
|
-
readonly above: {
|
|
26536
|
-
readonly type: "boolean";
|
|
26537
|
-
readonly description: "Whether to include parents above the anchor.";
|
|
26538
|
-
readonly default: true;
|
|
26539
|
-
};
|
|
26540
|
-
readonly below: {
|
|
26541
|
-
readonly type: "integer";
|
|
26542
|
-
readonly description: "How many levels of replies to include below the anchor.";
|
|
26543
|
-
readonly default: 6;
|
|
26544
|
-
readonly minimum: 0;
|
|
26545
|
-
readonly maximum: 20;
|
|
27098
|
+
readonly description: "Category of users to get suggestions for.";
|
|
26546
27099
|
};
|
|
26547
|
-
readonly
|
|
27100
|
+
readonly limit: {
|
|
26548
27101
|
readonly type: "integer";
|
|
26549
|
-
readonly
|
|
26550
|
-
readonly
|
|
26551
|
-
readonly
|
|
26552
|
-
readonly maximum: 100;
|
|
26553
|
-
};
|
|
26554
|
-
readonly sort: {
|
|
26555
|
-
readonly type: "string";
|
|
26556
|
-
readonly description: "Sorting for the thread replies.";
|
|
26557
|
-
readonly knownValues: ["newest", "oldest", "top"];
|
|
26558
|
-
readonly default: "oldest";
|
|
27102
|
+
readonly minimum: 1;
|
|
27103
|
+
readonly maximum: 50;
|
|
27104
|
+
readonly default: 25;
|
|
26559
27105
|
};
|
|
26560
27106
|
};
|
|
26561
27107
|
};
|
|
@@ -26563,62 +27109,43 @@ export declare const schemas: ({
|
|
|
26563
27109
|
readonly encoding: "application/json";
|
|
26564
27110
|
readonly schema: {
|
|
26565
27111
|
readonly type: "object";
|
|
26566
|
-
readonly required: ["
|
|
27112
|
+
readonly required: ["actors"];
|
|
26567
27113
|
readonly properties: {
|
|
26568
|
-
readonly
|
|
27114
|
+
readonly actors: {
|
|
26569
27115
|
readonly type: "array";
|
|
26570
|
-
readonly description: "A flat list of thread items. The depth of each item is indicated by the depth property inside the item.";
|
|
26571
27116
|
readonly items: {
|
|
26572
27117
|
readonly type: "ref";
|
|
26573
|
-
readonly ref: "lex:app.bsky.
|
|
27118
|
+
readonly ref: "lex:app.bsky.actor.defs#profileView";
|
|
26574
27119
|
};
|
|
26575
27120
|
};
|
|
26576
|
-
readonly
|
|
26577
|
-
readonly type: "
|
|
26578
|
-
readonly
|
|
27121
|
+
readonly recId: {
|
|
27122
|
+
readonly type: "string";
|
|
27123
|
+
readonly description: "DEPRECATED: use recIdStr instead.";
|
|
26579
27124
|
};
|
|
26580
|
-
readonly
|
|
26581
|
-
readonly type: "
|
|
26582
|
-
readonly description: "
|
|
27125
|
+
readonly recIdStr: {
|
|
27126
|
+
readonly type: "string";
|
|
27127
|
+
readonly description: "Snowflake for this recommendation, use when submitting recommendation events.";
|
|
26583
27128
|
};
|
|
26584
27129
|
};
|
|
26585
27130
|
};
|
|
26586
27131
|
};
|
|
26587
27132
|
};
|
|
26588
|
-
readonly threadItem: {
|
|
26589
|
-
readonly type: "object";
|
|
26590
|
-
readonly required: ["uri", "depth", "value"];
|
|
26591
|
-
readonly properties: {
|
|
26592
|
-
readonly uri: {
|
|
26593
|
-
readonly type: "string";
|
|
26594
|
-
readonly format: "at-uri";
|
|
26595
|
-
};
|
|
26596
|
-
readonly depth: {
|
|
26597
|
-
readonly type: "integer";
|
|
26598
|
-
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.";
|
|
26599
|
-
};
|
|
26600
|
-
readonly value: {
|
|
26601
|
-
readonly type: "union";
|
|
26602
|
-
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"];
|
|
26603
|
-
};
|
|
26604
|
-
};
|
|
26605
|
-
};
|
|
26606
27133
|
};
|
|
26607
27134
|
} | {
|
|
26608
27135
|
readonly lexicon: 1;
|
|
26609
|
-
readonly id: "app.bsky.unspecced.
|
|
27136
|
+
readonly id: "app.bsky.unspecced.getSuggestedUsersForDiscover";
|
|
26610
27137
|
readonly defs: {
|
|
26611
27138
|
readonly main: {
|
|
26612
27139
|
readonly type: "query";
|
|
26613
|
-
readonly description: "Get a list of suggested
|
|
27140
|
+
readonly description: "Get a list of suggested users for the Discover page";
|
|
26614
27141
|
readonly parameters: {
|
|
26615
27142
|
readonly type: "params";
|
|
26616
27143
|
readonly properties: {
|
|
26617
27144
|
readonly limit: {
|
|
26618
27145
|
readonly type: "integer";
|
|
26619
27146
|
readonly minimum: 1;
|
|
26620
|
-
readonly maximum:
|
|
26621
|
-
readonly default:
|
|
27147
|
+
readonly maximum: 50;
|
|
27148
|
+
readonly default: 25;
|
|
26622
27149
|
};
|
|
26623
27150
|
};
|
|
26624
27151
|
};
|
|
@@ -26626,15 +27153,19 @@ export declare const schemas: ({
|
|
|
26626
27153
|
readonly encoding: "application/json";
|
|
26627
27154
|
readonly schema: {
|
|
26628
27155
|
readonly type: "object";
|
|
26629
|
-
readonly required: ["
|
|
27156
|
+
readonly required: ["actors"];
|
|
26630
27157
|
readonly properties: {
|
|
26631
|
-
readonly
|
|
27158
|
+
readonly actors: {
|
|
26632
27159
|
readonly type: "array";
|
|
26633
27160
|
readonly items: {
|
|
26634
27161
|
readonly type: "ref";
|
|
26635
|
-
readonly ref: "lex:app.bsky.
|
|
27162
|
+
readonly ref: "lex:app.bsky.actor.defs#profileView";
|
|
26636
27163
|
};
|
|
26637
27164
|
};
|
|
27165
|
+
readonly recIdStr: {
|
|
27166
|
+
readonly type: "string";
|
|
27167
|
+
readonly description: "Snowflake for this recommendation, use when submitting recommendation events.";
|
|
27168
|
+
};
|
|
26638
27169
|
};
|
|
26639
27170
|
};
|
|
26640
27171
|
};
|
|
@@ -26642,11 +27173,11 @@ export declare const schemas: ({
|
|
|
26642
27173
|
};
|
|
26643
27174
|
} | {
|
|
26644
27175
|
readonly lexicon: 1;
|
|
26645
|
-
readonly id: "app.bsky.unspecced.
|
|
27176
|
+
readonly id: "app.bsky.unspecced.getSuggestedUsersForDiscoverSkeleton";
|
|
26646
27177
|
readonly defs: {
|
|
26647
27178
|
readonly main: {
|
|
26648
27179
|
readonly type: "query";
|
|
26649
|
-
readonly description: "Get a skeleton of suggested
|
|
27180
|
+
readonly description: "Get a skeleton of suggested users for the Discover page. Intended to be called and hydrated by app.bsky.unspecced.getSuggestedUsersForDiscover";
|
|
26650
27181
|
readonly parameters: {
|
|
26651
27182
|
readonly type: "params";
|
|
26652
27183
|
readonly properties: {
|
|
@@ -26658,8 +27189,8 @@ export declare const schemas: ({
|
|
|
26658
27189
|
readonly limit: {
|
|
26659
27190
|
readonly type: "integer";
|
|
26660
27191
|
readonly minimum: 1;
|
|
26661
|
-
readonly maximum:
|
|
26662
|
-
readonly default:
|
|
27192
|
+
readonly maximum: 50;
|
|
27193
|
+
readonly default: 25;
|
|
26663
27194
|
};
|
|
26664
27195
|
};
|
|
26665
27196
|
};
|
|
@@ -26667,15 +27198,19 @@ export declare const schemas: ({
|
|
|
26667
27198
|
readonly encoding: "application/json";
|
|
26668
27199
|
readonly schema: {
|
|
26669
27200
|
readonly type: "object";
|
|
26670
|
-
readonly required: ["
|
|
27201
|
+
readonly required: ["dids"];
|
|
26671
27202
|
readonly properties: {
|
|
26672
|
-
readonly
|
|
27203
|
+
readonly dids: {
|
|
26673
27204
|
readonly type: "array";
|
|
26674
27205
|
readonly items: {
|
|
26675
27206
|
readonly type: "string";
|
|
26676
|
-
readonly format: "
|
|
27207
|
+
readonly format: "did";
|
|
26677
27208
|
};
|
|
26678
27209
|
};
|
|
27210
|
+
readonly recIdStr: {
|
|
27211
|
+
readonly type: "string";
|
|
27212
|
+
readonly description: "Snowflake for this recommendation, use when submitting recommendation events.";
|
|
27213
|
+
};
|
|
26679
27214
|
};
|
|
26680
27215
|
};
|
|
26681
27216
|
};
|
|
@@ -26683,11 +27218,11 @@ export declare const schemas: ({
|
|
|
26683
27218
|
};
|
|
26684
27219
|
} | {
|
|
26685
27220
|
readonly lexicon: 1;
|
|
26686
|
-
readonly id: "app.bsky.unspecced.
|
|
27221
|
+
readonly id: "app.bsky.unspecced.getSuggestedUsersForExplore";
|
|
26687
27222
|
readonly defs: {
|
|
26688
27223
|
readonly main: {
|
|
26689
27224
|
readonly type: "query";
|
|
26690
|
-
readonly description: "Get a list of suggested users for
|
|
27225
|
+
readonly description: "Get a list of suggested users for the Explore page";
|
|
26691
27226
|
readonly parameters: {
|
|
26692
27227
|
readonly type: "params";
|
|
26693
27228
|
readonly properties: {
|
|
@@ -26716,10 +27251,6 @@ export declare const schemas: ({
|
|
|
26716
27251
|
readonly ref: "lex:app.bsky.actor.defs#profileView";
|
|
26717
27252
|
};
|
|
26718
27253
|
};
|
|
26719
|
-
readonly recId: {
|
|
26720
|
-
readonly type: "string";
|
|
26721
|
-
readonly description: "DEPRECATED: use recIdStr instead.";
|
|
26722
|
-
};
|
|
26723
27254
|
readonly recIdStr: {
|
|
26724
27255
|
readonly type: "string";
|
|
26725
27256
|
readonly description: "Snowflake for this recommendation, use when submitting recommendation events.";
|
|
@@ -26731,19 +27262,28 @@ export declare const schemas: ({
|
|
|
26731
27262
|
};
|
|
26732
27263
|
} | {
|
|
26733
27264
|
readonly lexicon: 1;
|
|
26734
|
-
readonly id: "app.bsky.unspecced.
|
|
27265
|
+
readonly id: "app.bsky.unspecced.getSuggestedUsersForExploreSkeleton";
|
|
26735
27266
|
readonly defs: {
|
|
26736
27267
|
readonly main: {
|
|
26737
27268
|
readonly type: "query";
|
|
26738
|
-
readonly description: "Get a
|
|
27269
|
+
readonly description: "Get a skeleton of suggested users for the Explore page. Intended to be called and hydrated by app.bsky.unspecced.getSuggestedUsersForExplore";
|
|
26739
27270
|
readonly parameters: {
|
|
26740
27271
|
readonly type: "params";
|
|
26741
27272
|
readonly properties: {
|
|
27273
|
+
readonly viewer: {
|
|
27274
|
+
readonly type: "string";
|
|
27275
|
+
readonly format: "did";
|
|
27276
|
+
readonly description: "DID of the account making the request (not included for public/unauthenticated queries).";
|
|
27277
|
+
};
|
|
27278
|
+
readonly category: {
|
|
27279
|
+
readonly type: "string";
|
|
27280
|
+
readonly description: "Category of users to get suggestions for.";
|
|
27281
|
+
};
|
|
26742
27282
|
readonly limit: {
|
|
26743
27283
|
readonly type: "integer";
|
|
26744
27284
|
readonly minimum: 1;
|
|
26745
|
-
readonly maximum:
|
|
26746
|
-
readonly default:
|
|
27285
|
+
readonly maximum: 50;
|
|
27286
|
+
readonly default: 25;
|
|
26747
27287
|
};
|
|
26748
27288
|
};
|
|
26749
27289
|
};
|
|
@@ -26751,15 +27291,19 @@ export declare const schemas: ({
|
|
|
26751
27291
|
readonly encoding: "application/json";
|
|
26752
27292
|
readonly schema: {
|
|
26753
27293
|
readonly type: "object";
|
|
26754
|
-
readonly required: ["
|
|
27294
|
+
readonly required: ["dids"];
|
|
26755
27295
|
readonly properties: {
|
|
26756
|
-
readonly
|
|
27296
|
+
readonly dids: {
|
|
26757
27297
|
readonly type: "array";
|
|
26758
27298
|
readonly items: {
|
|
26759
|
-
readonly type: "
|
|
26760
|
-
readonly
|
|
27299
|
+
readonly type: "string";
|
|
27300
|
+
readonly format: "did";
|
|
26761
27301
|
};
|
|
26762
27302
|
};
|
|
27303
|
+
readonly recIdStr: {
|
|
27304
|
+
readonly type: "string";
|
|
27305
|
+
readonly description: "Snowflake for this recommendation, use when submitting recommendation events.";
|
|
27306
|
+
};
|
|
26763
27307
|
};
|
|
26764
27308
|
};
|
|
26765
27309
|
};
|
|
@@ -26767,24 +27311,23 @@ export declare const schemas: ({
|
|
|
26767
27311
|
};
|
|
26768
27312
|
} | {
|
|
26769
27313
|
readonly lexicon: 1;
|
|
26770
|
-
readonly id: "app.bsky.unspecced.
|
|
27314
|
+
readonly id: "app.bsky.unspecced.getSuggestedUsersForSeeMore";
|
|
26771
27315
|
readonly defs: {
|
|
26772
27316
|
readonly main: {
|
|
26773
27317
|
readonly type: "query";
|
|
26774
|
-
readonly description: "Get a
|
|
27318
|
+
readonly description: "Get a list of suggested users for the See More page";
|
|
26775
27319
|
readonly parameters: {
|
|
26776
27320
|
readonly type: "params";
|
|
26777
27321
|
readonly properties: {
|
|
26778
|
-
readonly
|
|
27322
|
+
readonly category: {
|
|
26779
27323
|
readonly type: "string";
|
|
26780
|
-
readonly
|
|
26781
|
-
readonly description: "DID of the account making the request (not included for public/unauthenticated queries).";
|
|
27324
|
+
readonly description: "Category of users to get suggestions for.";
|
|
26782
27325
|
};
|
|
26783
27326
|
readonly limit: {
|
|
26784
27327
|
readonly type: "integer";
|
|
26785
27328
|
readonly minimum: 1;
|
|
26786
|
-
readonly maximum:
|
|
26787
|
-
readonly default:
|
|
27329
|
+
readonly maximum: 50;
|
|
27330
|
+
readonly default: 25;
|
|
26788
27331
|
};
|
|
26789
27332
|
};
|
|
26790
27333
|
};
|
|
@@ -26792,15 +27335,19 @@ export declare const schemas: ({
|
|
|
26792
27335
|
readonly encoding: "application/json";
|
|
26793
27336
|
readonly schema: {
|
|
26794
27337
|
readonly type: "object";
|
|
26795
|
-
readonly required: ["
|
|
27338
|
+
readonly required: ["actors"];
|
|
26796
27339
|
readonly properties: {
|
|
26797
|
-
readonly
|
|
27340
|
+
readonly actors: {
|
|
26798
27341
|
readonly type: "array";
|
|
26799
27342
|
readonly items: {
|
|
26800
|
-
readonly type: "
|
|
26801
|
-
readonly
|
|
27343
|
+
readonly type: "ref";
|
|
27344
|
+
readonly ref: "lex:app.bsky.actor.defs#profileView";
|
|
26802
27345
|
};
|
|
26803
27346
|
};
|
|
27347
|
+
readonly recIdStr: {
|
|
27348
|
+
readonly type: "string";
|
|
27349
|
+
readonly description: "Snowflake for this recommendation, use when submitting recommendation events.";
|
|
27350
|
+
};
|
|
26804
27351
|
};
|
|
26805
27352
|
};
|
|
26806
27353
|
};
|
|
@@ -26808,14 +27355,19 @@ export declare const schemas: ({
|
|
|
26808
27355
|
};
|
|
26809
27356
|
} | {
|
|
26810
27357
|
readonly lexicon: 1;
|
|
26811
|
-
readonly id: "app.bsky.unspecced.
|
|
27358
|
+
readonly id: "app.bsky.unspecced.getSuggestedUsersForSeeMoreSkeleton";
|
|
26812
27359
|
readonly defs: {
|
|
26813
27360
|
readonly main: {
|
|
26814
27361
|
readonly type: "query";
|
|
26815
|
-
readonly description: "Get a
|
|
27362
|
+
readonly description: "Get a skeleton of suggested users for the See More page. Intended to be called and hydrated by app.bsky.unspecced.getSuggestedUsersForSeeMore";
|
|
26816
27363
|
readonly parameters: {
|
|
26817
27364
|
readonly type: "params";
|
|
26818
27365
|
readonly properties: {
|
|
27366
|
+
readonly viewer: {
|
|
27367
|
+
readonly type: "string";
|
|
27368
|
+
readonly format: "did";
|
|
27369
|
+
readonly description: "DID of the account making the request (not included for public/unauthenticated queries).";
|
|
27370
|
+
};
|
|
26819
27371
|
readonly category: {
|
|
26820
27372
|
readonly type: "string";
|
|
26821
27373
|
readonly description: "Category of users to get suggestions for.";
|
|
@@ -26832,19 +27384,15 @@ export declare const schemas: ({
|
|
|
26832
27384
|
readonly encoding: "application/json";
|
|
26833
27385
|
readonly schema: {
|
|
26834
27386
|
readonly type: "object";
|
|
26835
|
-
readonly required: ["
|
|
27387
|
+
readonly required: ["dids"];
|
|
26836
27388
|
readonly properties: {
|
|
26837
|
-
readonly
|
|
27389
|
+
readonly dids: {
|
|
26838
27390
|
readonly type: "array";
|
|
26839
27391
|
readonly items: {
|
|
26840
|
-
readonly type: "
|
|
26841
|
-
readonly
|
|
27392
|
+
readonly type: "string";
|
|
27393
|
+
readonly format: "did";
|
|
26842
27394
|
};
|
|
26843
27395
|
};
|
|
26844
|
-
readonly recId: {
|
|
26845
|
-
readonly type: "string";
|
|
26846
|
-
readonly description: "DEPRECATED: use recIdStr instead.";
|
|
26847
|
-
};
|
|
26848
27396
|
readonly recIdStr: {
|
|
26849
27397
|
readonly type: "string";
|
|
26850
27398
|
readonly description: "Snowflake for this recommendation, use when submitting recommendation events.";
|
|
@@ -29859,7 +30407,7 @@ export declare const schemas: ({
|
|
|
29859
30407
|
};
|
|
29860
30408
|
readonly labelValue: {
|
|
29861
30409
|
readonly type: "string";
|
|
29862
|
-
readonly knownValues: ["!hide", "!
|
|
30410
|
+
readonly knownValues: ["!hide", "!warn", "!no-unauthenticated", "porn", "sexual", "nudity", "graphic-media", "bot"];
|
|
29863
30411
|
};
|
|
29864
30412
|
};
|
|
29865
30413
|
} | {
|
|
@@ -37717,6 +38265,12 @@ export declare const ids: {
|
|
|
37717
38265
|
readonly AppBskyUnspeccedGetSuggestedStarterPacks: "app.bsky.unspecced.getSuggestedStarterPacks";
|
|
37718
38266
|
readonly AppBskyUnspeccedGetSuggestedStarterPacksSkeleton: "app.bsky.unspecced.getSuggestedStarterPacksSkeleton";
|
|
37719
38267
|
readonly AppBskyUnspeccedGetSuggestedUsers: "app.bsky.unspecced.getSuggestedUsers";
|
|
38268
|
+
readonly AppBskyUnspeccedGetSuggestedUsersForDiscover: "app.bsky.unspecced.getSuggestedUsersForDiscover";
|
|
38269
|
+
readonly AppBskyUnspeccedGetSuggestedUsersForDiscoverSkeleton: "app.bsky.unspecced.getSuggestedUsersForDiscoverSkeleton";
|
|
38270
|
+
readonly AppBskyUnspeccedGetSuggestedUsersForExplore: "app.bsky.unspecced.getSuggestedUsersForExplore";
|
|
38271
|
+
readonly AppBskyUnspeccedGetSuggestedUsersForExploreSkeleton: "app.bsky.unspecced.getSuggestedUsersForExploreSkeleton";
|
|
38272
|
+
readonly AppBskyUnspeccedGetSuggestedUsersForSeeMore: "app.bsky.unspecced.getSuggestedUsersForSeeMore";
|
|
38273
|
+
readonly AppBskyUnspeccedGetSuggestedUsersForSeeMoreSkeleton: "app.bsky.unspecced.getSuggestedUsersForSeeMoreSkeleton";
|
|
37720
38274
|
readonly AppBskyUnspeccedGetSuggestedUsersSkeleton: "app.bsky.unspecced.getSuggestedUsersSkeleton";
|
|
37721
38275
|
readonly AppBskyUnspeccedGetSuggestionsSkeleton: "app.bsky.unspecced.getSuggestionsSkeleton";
|
|
37722
38276
|
readonly AppBskyUnspeccedGetTaggedSuggestions: "app.bsky.unspecced.getTaggedSuggestions";
|