@atproto/bsky 0.0.133 → 0.0.135
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 +26 -0
- package/dist/api/app/bsky/unspecced/getSuggestedStarterPacks.d.ts +4 -0
- package/dist/api/app/bsky/unspecced/getSuggestedStarterPacks.d.ts.map +1 -0
- package/dist/api/app/bsky/unspecced/getSuggestedStarterPacks.js +101 -0
- package/dist/api/app/bsky/unspecced/getSuggestedStarterPacks.js.map +1 -0
- package/dist/api/app/bsky/unspecced/getTrends.d.ts +4 -0
- package/dist/api/app/bsky/unspecced/getTrends.d.ts.map +1 -0
- package/dist/api/app/bsky/unspecced/getTrends.js +96 -0
- package/dist/api/app/bsky/unspecced/getTrends.js.map +1 -0
- package/dist/api/index.d.ts.map +1 -1
- package/dist/api/index.js +4 -0
- package/dist/api/index.js.map +1 -1
- package/dist/lexicon/index.d.ts +10 -0
- package/dist/lexicon/index.d.ts.map +1 -1
- package/dist/lexicon/index.js +20 -0
- package/dist/lexicon/index.js.map +1 -1
- package/dist/lexicon/lexicons.d.ts +516 -0
- package/dist/lexicon/lexicons.d.ts.map +1 -1
- package/dist/lexicon/lexicons.js +277 -0
- package/dist/lexicon/lexicons.js.map +1 -1
- package/dist/lexicon/types/app/bsky/unspecced/defs.d.ts +27 -0
- package/dist/lexicon/types/app/bsky/unspecced/defs.d.ts.map +1 -1
- package/dist/lexicon/types/app/bsky/unspecced/defs.js +18 -0
- package/dist/lexicon/types/app/bsky/unspecced/defs.js.map +1 -1
- package/dist/lexicon/types/app/bsky/unspecced/getSuggestedStarterPacks.d.ts +36 -0
- package/dist/lexicon/types/app/bsky/unspecced/getSuggestedStarterPacks.d.ts.map +1 -0
- package/dist/lexicon/types/app/bsky/unspecced/getSuggestedStarterPacks.js +7 -0
- package/dist/lexicon/types/app/bsky/unspecced/getSuggestedStarterPacks.js.map +1 -0
- package/dist/lexicon/types/app/bsky/unspecced/getSuggestedStarterPacksSkeleton.d.ts +37 -0
- package/dist/lexicon/types/app/bsky/unspecced/getSuggestedStarterPacksSkeleton.d.ts.map +1 -0
- package/dist/lexicon/types/app/bsky/unspecced/getSuggestedStarterPacksSkeleton.js +7 -0
- package/dist/lexicon/types/app/bsky/unspecced/getSuggestedStarterPacksSkeleton.js.map +1 -0
- package/dist/lexicon/types/app/bsky/unspecced/getTrends.d.ts +36 -0
- package/dist/lexicon/types/app/bsky/unspecced/getTrends.d.ts.map +1 -0
- package/dist/lexicon/types/app/bsky/unspecced/getTrends.js +7 -0
- package/dist/lexicon/types/app/bsky/unspecced/getTrends.js.map +1 -0
- package/dist/lexicon/types/app/bsky/unspecced/getTrendsSkeleton.d.ts +38 -0
- package/dist/lexicon/types/app/bsky/unspecced/getTrendsSkeleton.d.ts.map +1 -0
- package/dist/lexicon/types/app/bsky/unspecced/getTrendsSkeleton.js +7 -0
- package/dist/lexicon/types/app/bsky/unspecced/getTrendsSkeleton.js.map +1 -0
- package/dist/lexicon/types/com/atproto/admin/updateAccountSigningKey.d.ts +31 -0
- package/dist/lexicon/types/com/atproto/admin/updateAccountSigningKey.d.ts.map +1 -0
- package/dist/lexicon/types/com/atproto/admin/updateAccountSigningKey.js +7 -0
- package/dist/lexicon/types/com/atproto/admin/updateAccountSigningKey.js.map +1 -0
- package/package.json +9 -9
- package/src/api/app/bsky/unspecced/getSuggestedStarterPacks.ts +147 -0
- package/src/api/app/bsky/unspecced/getTrends.ts +144 -0
- package/src/api/index.ts +4 -0
- package/src/lexicon/index.ts +62 -0
- package/src/lexicon/lexicons.ts +285 -0
- package/src/lexicon/types/app/bsky/unspecced/defs.ts +45 -0
- package/src/lexicon/types/app/bsky/unspecced/getSuggestedStarterPacks.ts +54 -0
- package/src/lexicon/types/app/bsky/unspecced/getSuggestedStarterPacksSkeleton.ts +55 -0
- package/src/lexicon/types/app/bsky/unspecced/getTrends.ts +54 -0
- package/src/lexicon/types/app/bsky/unspecced/getTrendsSkeleton.ts +56 -0
- package/src/lexicon/types/com/atproto/admin/updateAccountSigningKey.ts +48 -0
- package/tests/seed/get-suggested-starter-packs.ts +63 -0
- package/tests/seed/get-trends.ts +70 -0
- package/tests/views/get-suggested-starter-packs.test.ts +128 -0
- package/tests/views/get-trends.test.ts +133 -0
- package/tsconfig.build.tsbuildinfo +1 -1
- package/tsconfig.tests.tsbuildinfo +1 -1
|
@@ -564,6 +564,34 @@ export declare const schemaDict: {
|
|
|
564
564
|
};
|
|
565
565
|
};
|
|
566
566
|
};
|
|
567
|
+
readonly ComAtprotoAdminUpdateAccountSigningKey: {
|
|
568
|
+
readonly lexicon: 1;
|
|
569
|
+
readonly id: "com.atproto.admin.updateAccountSigningKey";
|
|
570
|
+
readonly defs: {
|
|
571
|
+
readonly main: {
|
|
572
|
+
readonly type: "procedure";
|
|
573
|
+
readonly description: "Administrative action to update an account's signing key in their Did document.";
|
|
574
|
+
readonly input: {
|
|
575
|
+
readonly encoding: "application/json";
|
|
576
|
+
readonly schema: {
|
|
577
|
+
readonly type: "object";
|
|
578
|
+
readonly required: ["did", "signingKey"];
|
|
579
|
+
readonly properties: {
|
|
580
|
+
readonly did: {
|
|
581
|
+
readonly type: "string";
|
|
582
|
+
readonly format: "did";
|
|
583
|
+
};
|
|
584
|
+
readonly signingKey: {
|
|
585
|
+
readonly type: "string";
|
|
586
|
+
readonly format: "did";
|
|
587
|
+
readonly description: "Did-key formatted public key";
|
|
588
|
+
};
|
|
589
|
+
};
|
|
590
|
+
};
|
|
591
|
+
};
|
|
592
|
+
};
|
|
593
|
+
};
|
|
594
|
+
};
|
|
567
595
|
readonly ComAtprotoAdminUpdateSubjectStatus: {
|
|
568
596
|
readonly lexicon: 1;
|
|
569
597
|
readonly id: "com.atproto.admin.updateSubjectStatus";
|
|
@@ -8995,6 +9023,78 @@ export declare const schemaDict: {
|
|
|
8995
9023
|
};
|
|
8996
9024
|
};
|
|
8997
9025
|
};
|
|
9026
|
+
readonly skeletonTrend: {
|
|
9027
|
+
readonly type: "object";
|
|
9028
|
+
readonly required: ["topic", "displayName", "link", "startedAt", "postCount", "dids"];
|
|
9029
|
+
readonly properties: {
|
|
9030
|
+
readonly topic: {
|
|
9031
|
+
readonly type: "string";
|
|
9032
|
+
};
|
|
9033
|
+
readonly displayName: {
|
|
9034
|
+
readonly type: "string";
|
|
9035
|
+
};
|
|
9036
|
+
readonly link: {
|
|
9037
|
+
readonly type: "string";
|
|
9038
|
+
};
|
|
9039
|
+
readonly startedAt: {
|
|
9040
|
+
readonly type: "string";
|
|
9041
|
+
readonly format: "datetime";
|
|
9042
|
+
};
|
|
9043
|
+
readonly postCount: {
|
|
9044
|
+
readonly type: "integer";
|
|
9045
|
+
};
|
|
9046
|
+
readonly status: {
|
|
9047
|
+
readonly type: "string";
|
|
9048
|
+
readonly knownValues: ["hot"];
|
|
9049
|
+
};
|
|
9050
|
+
readonly category: {
|
|
9051
|
+
readonly type: "string";
|
|
9052
|
+
};
|
|
9053
|
+
readonly dids: {
|
|
9054
|
+
readonly type: "array";
|
|
9055
|
+
readonly items: {
|
|
9056
|
+
readonly type: "string";
|
|
9057
|
+
readonly format: "did";
|
|
9058
|
+
};
|
|
9059
|
+
};
|
|
9060
|
+
};
|
|
9061
|
+
};
|
|
9062
|
+
readonly trendView: {
|
|
9063
|
+
readonly type: "object";
|
|
9064
|
+
readonly required: ["topic", "displayName", "link", "startedAt", "postCount", "actors"];
|
|
9065
|
+
readonly properties: {
|
|
9066
|
+
readonly topic: {
|
|
9067
|
+
readonly type: "string";
|
|
9068
|
+
};
|
|
9069
|
+
readonly displayName: {
|
|
9070
|
+
readonly type: "string";
|
|
9071
|
+
};
|
|
9072
|
+
readonly link: {
|
|
9073
|
+
readonly type: "string";
|
|
9074
|
+
};
|
|
9075
|
+
readonly startedAt: {
|
|
9076
|
+
readonly type: "string";
|
|
9077
|
+
readonly format: "datetime";
|
|
9078
|
+
};
|
|
9079
|
+
readonly postCount: {
|
|
9080
|
+
readonly type: "integer";
|
|
9081
|
+
};
|
|
9082
|
+
readonly status: {
|
|
9083
|
+
readonly type: "string";
|
|
9084
|
+
readonly knownValues: ["hot"];
|
|
9085
|
+
};
|
|
9086
|
+
readonly category: {
|
|
9087
|
+
readonly type: "string";
|
|
9088
|
+
};
|
|
9089
|
+
readonly actors: {
|
|
9090
|
+
readonly type: "array";
|
|
9091
|
+
readonly items: {
|
|
9092
|
+
readonly type: "ref";
|
|
9093
|
+
readonly ref: "lex:app.bsky.actor.defs#profileViewBasic";
|
|
9094
|
+
};
|
|
9095
|
+
};
|
|
9096
|
+
};
|
|
9097
|
+
};
|
|
8998
9098
|
};
|
|
8999
9099
|
};
|
|
9000
9100
|
readonly AppBskyUnspeccedGetConfig: {
|
|
@@ -9065,6 +9165,85 @@ export declare const schemaDict: {
|
|
|
9065
9165
|
};
|
|
9066
9166
|
};
|
|
9067
9167
|
};
|
|
9168
|
+
readonly AppBskyUnspeccedGetSuggestedStarterPacks: {
|
|
9169
|
+
readonly lexicon: 1;
|
|
9170
|
+
readonly id: "app.bsky.unspecced.getSuggestedStarterPacks";
|
|
9171
|
+
readonly defs: {
|
|
9172
|
+
readonly main: {
|
|
9173
|
+
readonly type: "query";
|
|
9174
|
+
readonly description: "Get a list of suggested starterpacks";
|
|
9175
|
+
readonly parameters: {
|
|
9176
|
+
readonly type: "params";
|
|
9177
|
+
readonly properties: {
|
|
9178
|
+
readonly limit: {
|
|
9179
|
+
readonly type: "integer";
|
|
9180
|
+
readonly minimum: 1;
|
|
9181
|
+
readonly maximum: 25;
|
|
9182
|
+
readonly default: 10;
|
|
9183
|
+
};
|
|
9184
|
+
};
|
|
9185
|
+
};
|
|
9186
|
+
readonly output: {
|
|
9187
|
+
readonly encoding: "application/json";
|
|
9188
|
+
readonly schema: {
|
|
9189
|
+
readonly type: "object";
|
|
9190
|
+
readonly required: ["starterPacks"];
|
|
9191
|
+
readonly properties: {
|
|
9192
|
+
readonly starterPacks: {
|
|
9193
|
+
readonly type: "array";
|
|
9194
|
+
readonly items: {
|
|
9195
|
+
readonly type: "ref";
|
|
9196
|
+
readonly ref: "lex:app.bsky.graph.defs#starterPackView";
|
|
9197
|
+
};
|
|
9198
|
+
};
|
|
9199
|
+
};
|
|
9200
|
+
};
|
|
9201
|
+
};
|
|
9202
|
+
};
|
|
9203
|
+
};
|
|
9204
|
+
};
|
|
9205
|
+
readonly AppBskyUnspeccedGetSuggestedStarterPacksSkeleton: {
|
|
9206
|
+
readonly lexicon: 1;
|
|
9207
|
+
readonly id: "app.bsky.unspecced.getSuggestedStarterPacksSkeleton";
|
|
9208
|
+
readonly defs: {
|
|
9209
|
+
readonly main: {
|
|
9210
|
+
readonly type: "query";
|
|
9211
|
+
readonly description: "Get a skeleton of suggested starterpacks. Intended to be called and hydrated by app.bsky.unspecced.getSuggestedStarterpacks";
|
|
9212
|
+
readonly parameters: {
|
|
9213
|
+
readonly type: "params";
|
|
9214
|
+
readonly properties: {
|
|
9215
|
+
readonly viewer: {
|
|
9216
|
+
readonly type: "string";
|
|
9217
|
+
readonly format: "did";
|
|
9218
|
+
readonly description: "DID of the account making the request (not included for public/unauthenticated queries).";
|
|
9219
|
+
};
|
|
9220
|
+
readonly limit: {
|
|
9221
|
+
readonly type: "integer";
|
|
9222
|
+
readonly minimum: 1;
|
|
9223
|
+
readonly maximum: 25;
|
|
9224
|
+
readonly default: 10;
|
|
9225
|
+
};
|
|
9226
|
+
};
|
|
9227
|
+
};
|
|
9228
|
+
readonly output: {
|
|
9229
|
+
readonly encoding: "application/json";
|
|
9230
|
+
readonly schema: {
|
|
9231
|
+
readonly type: "object";
|
|
9232
|
+
readonly required: ["starterPacks"];
|
|
9233
|
+
readonly properties: {
|
|
9234
|
+
readonly starterPacks: {
|
|
9235
|
+
readonly type: "array";
|
|
9236
|
+
readonly items: {
|
|
9237
|
+
readonly type: "string";
|
|
9238
|
+
readonly format: "at-uri";
|
|
9239
|
+
};
|
|
9240
|
+
};
|
|
9241
|
+
};
|
|
9242
|
+
};
|
|
9243
|
+
};
|
|
9244
|
+
};
|
|
9245
|
+
};
|
|
9246
|
+
};
|
|
9068
9247
|
readonly AppBskyUnspeccedGetSuggestionsSkeleton: {
|
|
9069
9248
|
readonly lexicon: 1;
|
|
9070
9249
|
readonly id: "app.bsky.unspecced.getSuggestionsSkeleton";
|
|
@@ -9223,6 +9402,85 @@ export declare const schemaDict: {
|
|
|
9223
9402
|
};
|
|
9224
9403
|
};
|
|
9225
9404
|
};
|
|
9405
|
+
readonly AppBskyUnspeccedGetTrends: {
|
|
9406
|
+
readonly lexicon: 1;
|
|
9407
|
+
readonly id: "app.bsky.unspecced.getTrends";
|
|
9408
|
+
readonly defs: {
|
|
9409
|
+
readonly main: {
|
|
9410
|
+
readonly type: "query";
|
|
9411
|
+
readonly description: "Get the current trends on the network";
|
|
9412
|
+
readonly parameters: {
|
|
9413
|
+
readonly type: "params";
|
|
9414
|
+
readonly properties: {
|
|
9415
|
+
readonly limit: {
|
|
9416
|
+
readonly type: "integer";
|
|
9417
|
+
readonly minimum: 1;
|
|
9418
|
+
readonly maximum: 25;
|
|
9419
|
+
readonly default: 10;
|
|
9420
|
+
};
|
|
9421
|
+
};
|
|
9422
|
+
};
|
|
9423
|
+
readonly output: {
|
|
9424
|
+
readonly encoding: "application/json";
|
|
9425
|
+
readonly schema: {
|
|
9426
|
+
readonly type: "object";
|
|
9427
|
+
readonly required: ["trends"];
|
|
9428
|
+
readonly properties: {
|
|
9429
|
+
readonly trends: {
|
|
9430
|
+
readonly type: "array";
|
|
9431
|
+
readonly items: {
|
|
9432
|
+
readonly type: "ref";
|
|
9433
|
+
readonly ref: "lex:app.bsky.unspecced.defs#trendView";
|
|
9434
|
+
};
|
|
9435
|
+
};
|
|
9436
|
+
};
|
|
9437
|
+
};
|
|
9438
|
+
};
|
|
9439
|
+
};
|
|
9440
|
+
};
|
|
9441
|
+
};
|
|
9442
|
+
readonly AppBskyUnspeccedGetTrendsSkeleton: {
|
|
9443
|
+
readonly lexicon: 1;
|
|
9444
|
+
readonly id: "app.bsky.unspecced.getTrendsSkeleton";
|
|
9445
|
+
readonly defs: {
|
|
9446
|
+
readonly main: {
|
|
9447
|
+
readonly type: "query";
|
|
9448
|
+
readonly description: "Get the skeleton of trends on the network. Intended to be called and then hydrated through app.bsky.unspecced.getTrends";
|
|
9449
|
+
readonly parameters: {
|
|
9450
|
+
readonly type: "params";
|
|
9451
|
+
readonly properties: {
|
|
9452
|
+
readonly viewer: {
|
|
9453
|
+
readonly type: "string";
|
|
9454
|
+
readonly format: "did";
|
|
9455
|
+
readonly description: "DID of the account making the request (not included for public/unauthenticated queries).";
|
|
9456
|
+
};
|
|
9457
|
+
readonly limit: {
|
|
9458
|
+
readonly type: "integer";
|
|
9459
|
+
readonly minimum: 1;
|
|
9460
|
+
readonly maximum: 25;
|
|
9461
|
+
readonly default: 10;
|
|
9462
|
+
};
|
|
9463
|
+
};
|
|
9464
|
+
};
|
|
9465
|
+
readonly output: {
|
|
9466
|
+
readonly encoding: "application/json";
|
|
9467
|
+
readonly schema: {
|
|
9468
|
+
readonly type: "object";
|
|
9469
|
+
readonly required: ["trends"];
|
|
9470
|
+
readonly properties: {
|
|
9471
|
+
readonly trends: {
|
|
9472
|
+
readonly type: "array";
|
|
9473
|
+
readonly items: {
|
|
9474
|
+
readonly type: "ref";
|
|
9475
|
+
readonly ref: "lex:app.bsky.unspecced.defs#skeletonTrend";
|
|
9476
|
+
};
|
|
9477
|
+
};
|
|
9478
|
+
};
|
|
9479
|
+
};
|
|
9480
|
+
};
|
|
9481
|
+
};
|
|
9482
|
+
};
|
|
9483
|
+
};
|
|
9226
9484
|
readonly AppBskyUnspeccedSearchActorsSkeleton: {
|
|
9227
9485
|
readonly lexicon: 1;
|
|
9228
9486
|
readonly id: "app.bsky.unspecced.searchActorsSkeleton";
|
|
@@ -11386,6 +11644,33 @@ export declare const schemas: ({
|
|
|
11386
11644
|
};
|
|
11387
11645
|
};
|
|
11388
11646
|
};
|
|
11647
|
+
} | {
|
|
11648
|
+
readonly lexicon: 1;
|
|
11649
|
+
readonly id: "com.atproto.admin.updateAccountSigningKey";
|
|
11650
|
+
readonly defs: {
|
|
11651
|
+
readonly main: {
|
|
11652
|
+
readonly type: "procedure";
|
|
11653
|
+
readonly description: "Administrative action to update an account's signing key in their Did document.";
|
|
11654
|
+
readonly input: {
|
|
11655
|
+
readonly encoding: "application/json";
|
|
11656
|
+
readonly schema: {
|
|
11657
|
+
readonly type: "object";
|
|
11658
|
+
readonly required: ["did", "signingKey"];
|
|
11659
|
+
readonly properties: {
|
|
11660
|
+
readonly did: {
|
|
11661
|
+
readonly type: "string";
|
|
11662
|
+
readonly format: "did";
|
|
11663
|
+
};
|
|
11664
|
+
readonly signingKey: {
|
|
11665
|
+
readonly type: "string";
|
|
11666
|
+
readonly format: "did";
|
|
11667
|
+
readonly description: "Did-key formatted public key";
|
|
11668
|
+
};
|
|
11669
|
+
};
|
|
11670
|
+
};
|
|
11671
|
+
};
|
|
11672
|
+
};
|
|
11673
|
+
};
|
|
11389
11674
|
} | {
|
|
11390
11675
|
readonly lexicon: 1;
|
|
11391
11676
|
readonly id: "com.atproto.admin.updateSubjectStatus";
|
|
@@ -19667,6 +19952,78 @@ export declare const schemas: ({
|
|
|
19667
19952
|
};
|
|
19668
19953
|
};
|
|
19669
19954
|
};
|
|
19955
|
+
readonly skeletonTrend: {
|
|
19956
|
+
readonly type: "object";
|
|
19957
|
+
readonly required: ["topic", "displayName", "link", "startedAt", "postCount", "dids"];
|
|
19958
|
+
readonly properties: {
|
|
19959
|
+
readonly topic: {
|
|
19960
|
+
readonly type: "string";
|
|
19961
|
+
};
|
|
19962
|
+
readonly displayName: {
|
|
19963
|
+
readonly type: "string";
|
|
19964
|
+
};
|
|
19965
|
+
readonly link: {
|
|
19966
|
+
readonly type: "string";
|
|
19967
|
+
};
|
|
19968
|
+
readonly startedAt: {
|
|
19969
|
+
readonly type: "string";
|
|
19970
|
+
readonly format: "datetime";
|
|
19971
|
+
};
|
|
19972
|
+
readonly postCount: {
|
|
19973
|
+
readonly type: "integer";
|
|
19974
|
+
};
|
|
19975
|
+
readonly status: {
|
|
19976
|
+
readonly type: "string";
|
|
19977
|
+
readonly knownValues: ["hot"];
|
|
19978
|
+
};
|
|
19979
|
+
readonly category: {
|
|
19980
|
+
readonly type: "string";
|
|
19981
|
+
};
|
|
19982
|
+
readonly dids: {
|
|
19983
|
+
readonly type: "array";
|
|
19984
|
+
readonly items: {
|
|
19985
|
+
readonly type: "string";
|
|
19986
|
+
readonly format: "did";
|
|
19987
|
+
};
|
|
19988
|
+
};
|
|
19989
|
+
};
|
|
19990
|
+
};
|
|
19991
|
+
readonly trendView: {
|
|
19992
|
+
readonly type: "object";
|
|
19993
|
+
readonly required: ["topic", "displayName", "link", "startedAt", "postCount", "actors"];
|
|
19994
|
+
readonly properties: {
|
|
19995
|
+
readonly topic: {
|
|
19996
|
+
readonly type: "string";
|
|
19997
|
+
};
|
|
19998
|
+
readonly displayName: {
|
|
19999
|
+
readonly type: "string";
|
|
20000
|
+
};
|
|
20001
|
+
readonly link: {
|
|
20002
|
+
readonly type: "string";
|
|
20003
|
+
};
|
|
20004
|
+
readonly startedAt: {
|
|
20005
|
+
readonly type: "string";
|
|
20006
|
+
readonly format: "datetime";
|
|
20007
|
+
};
|
|
20008
|
+
readonly postCount: {
|
|
20009
|
+
readonly type: "integer";
|
|
20010
|
+
};
|
|
20011
|
+
readonly status: {
|
|
20012
|
+
readonly type: "string";
|
|
20013
|
+
readonly knownValues: ["hot"];
|
|
20014
|
+
};
|
|
20015
|
+
readonly category: {
|
|
20016
|
+
readonly type: "string";
|
|
20017
|
+
};
|
|
20018
|
+
readonly actors: {
|
|
20019
|
+
readonly type: "array";
|
|
20020
|
+
readonly items: {
|
|
20021
|
+
readonly type: "ref";
|
|
20022
|
+
readonly ref: "lex:app.bsky.actor.defs#profileViewBasic";
|
|
20023
|
+
};
|
|
20024
|
+
};
|
|
20025
|
+
};
|
|
20026
|
+
};
|
|
19670
20027
|
};
|
|
19671
20028
|
} | {
|
|
19672
20029
|
readonly lexicon: 1;
|
|
@@ -19734,6 +20091,83 @@ export declare const schemas: ({
|
|
|
19734
20091
|
};
|
|
19735
20092
|
};
|
|
19736
20093
|
};
|
|
20094
|
+
} | {
|
|
20095
|
+
readonly lexicon: 1;
|
|
20096
|
+
readonly id: "app.bsky.unspecced.getSuggestedStarterPacks";
|
|
20097
|
+
readonly defs: {
|
|
20098
|
+
readonly main: {
|
|
20099
|
+
readonly type: "query";
|
|
20100
|
+
readonly description: "Get a list of suggested starterpacks";
|
|
20101
|
+
readonly parameters: {
|
|
20102
|
+
readonly type: "params";
|
|
20103
|
+
readonly properties: {
|
|
20104
|
+
readonly limit: {
|
|
20105
|
+
readonly type: "integer";
|
|
20106
|
+
readonly minimum: 1;
|
|
20107
|
+
readonly maximum: 25;
|
|
20108
|
+
readonly default: 10;
|
|
20109
|
+
};
|
|
20110
|
+
};
|
|
20111
|
+
};
|
|
20112
|
+
readonly output: {
|
|
20113
|
+
readonly encoding: "application/json";
|
|
20114
|
+
readonly schema: {
|
|
20115
|
+
readonly type: "object";
|
|
20116
|
+
readonly required: ["starterPacks"];
|
|
20117
|
+
readonly properties: {
|
|
20118
|
+
readonly starterPacks: {
|
|
20119
|
+
readonly type: "array";
|
|
20120
|
+
readonly items: {
|
|
20121
|
+
readonly type: "ref";
|
|
20122
|
+
readonly ref: "lex:app.bsky.graph.defs#starterPackView";
|
|
20123
|
+
};
|
|
20124
|
+
};
|
|
20125
|
+
};
|
|
20126
|
+
};
|
|
20127
|
+
};
|
|
20128
|
+
};
|
|
20129
|
+
};
|
|
20130
|
+
} | {
|
|
20131
|
+
readonly lexicon: 1;
|
|
20132
|
+
readonly id: "app.bsky.unspecced.getSuggestedStarterPacksSkeleton";
|
|
20133
|
+
readonly defs: {
|
|
20134
|
+
readonly main: {
|
|
20135
|
+
readonly type: "query";
|
|
20136
|
+
readonly description: "Get a skeleton of suggested starterpacks. Intended to be called and hydrated by app.bsky.unspecced.getSuggestedStarterpacks";
|
|
20137
|
+
readonly parameters: {
|
|
20138
|
+
readonly type: "params";
|
|
20139
|
+
readonly properties: {
|
|
20140
|
+
readonly viewer: {
|
|
20141
|
+
readonly type: "string";
|
|
20142
|
+
readonly format: "did";
|
|
20143
|
+
readonly description: "DID of the account making the request (not included for public/unauthenticated queries).";
|
|
20144
|
+
};
|
|
20145
|
+
readonly limit: {
|
|
20146
|
+
readonly type: "integer";
|
|
20147
|
+
readonly minimum: 1;
|
|
20148
|
+
readonly maximum: 25;
|
|
20149
|
+
readonly default: 10;
|
|
20150
|
+
};
|
|
20151
|
+
};
|
|
20152
|
+
};
|
|
20153
|
+
readonly output: {
|
|
20154
|
+
readonly encoding: "application/json";
|
|
20155
|
+
readonly schema: {
|
|
20156
|
+
readonly type: "object";
|
|
20157
|
+
readonly required: ["starterPacks"];
|
|
20158
|
+
readonly properties: {
|
|
20159
|
+
readonly starterPacks: {
|
|
20160
|
+
readonly type: "array";
|
|
20161
|
+
readonly items: {
|
|
20162
|
+
readonly type: "string";
|
|
20163
|
+
readonly format: "at-uri";
|
|
20164
|
+
};
|
|
20165
|
+
};
|
|
20166
|
+
};
|
|
20167
|
+
};
|
|
20168
|
+
};
|
|
20169
|
+
};
|
|
20170
|
+
};
|
|
19737
20171
|
} | {
|
|
19738
20172
|
readonly lexicon: 1;
|
|
19739
20173
|
readonly id: "app.bsky.unspecced.getSuggestionsSkeleton";
|
|
@@ -19889,6 +20323,83 @@ export declare const schemas: ({
|
|
|
19889
20323
|
};
|
|
19890
20324
|
};
|
|
19891
20325
|
};
|
|
20326
|
+
} | {
|
|
20327
|
+
readonly lexicon: 1;
|
|
20328
|
+
readonly id: "app.bsky.unspecced.getTrends";
|
|
20329
|
+
readonly defs: {
|
|
20330
|
+
readonly main: {
|
|
20331
|
+
readonly type: "query";
|
|
20332
|
+
readonly description: "Get the current trends on the network";
|
|
20333
|
+
readonly parameters: {
|
|
20334
|
+
readonly type: "params";
|
|
20335
|
+
readonly properties: {
|
|
20336
|
+
readonly limit: {
|
|
20337
|
+
readonly type: "integer";
|
|
20338
|
+
readonly minimum: 1;
|
|
20339
|
+
readonly maximum: 25;
|
|
20340
|
+
readonly default: 10;
|
|
20341
|
+
};
|
|
20342
|
+
};
|
|
20343
|
+
};
|
|
20344
|
+
readonly output: {
|
|
20345
|
+
readonly encoding: "application/json";
|
|
20346
|
+
readonly schema: {
|
|
20347
|
+
readonly type: "object";
|
|
20348
|
+
readonly required: ["trends"];
|
|
20349
|
+
readonly properties: {
|
|
20350
|
+
readonly trends: {
|
|
20351
|
+
readonly type: "array";
|
|
20352
|
+
readonly items: {
|
|
20353
|
+
readonly type: "ref";
|
|
20354
|
+
readonly ref: "lex:app.bsky.unspecced.defs#trendView";
|
|
20355
|
+
};
|
|
20356
|
+
};
|
|
20357
|
+
};
|
|
20358
|
+
};
|
|
20359
|
+
};
|
|
20360
|
+
};
|
|
20361
|
+
};
|
|
20362
|
+
} | {
|
|
20363
|
+
readonly lexicon: 1;
|
|
20364
|
+
readonly id: "app.bsky.unspecced.getTrendsSkeleton";
|
|
20365
|
+
readonly defs: {
|
|
20366
|
+
readonly main: {
|
|
20367
|
+
readonly type: "query";
|
|
20368
|
+
readonly description: "Get the skeleton of trends on the network. Intended to be called and then hydrated through app.bsky.unspecced.getTrends";
|
|
20369
|
+
readonly parameters: {
|
|
20370
|
+
readonly type: "params";
|
|
20371
|
+
readonly properties: {
|
|
20372
|
+
readonly viewer: {
|
|
20373
|
+
readonly type: "string";
|
|
20374
|
+
readonly format: "did";
|
|
20375
|
+
readonly description: "DID of the account making the request (not included for public/unauthenticated queries).";
|
|
20376
|
+
};
|
|
20377
|
+
readonly limit: {
|
|
20378
|
+
readonly type: "integer";
|
|
20379
|
+
readonly minimum: 1;
|
|
20380
|
+
readonly maximum: 25;
|
|
20381
|
+
readonly default: 10;
|
|
20382
|
+
};
|
|
20383
|
+
};
|
|
20384
|
+
};
|
|
20385
|
+
readonly output: {
|
|
20386
|
+
readonly encoding: "application/json";
|
|
20387
|
+
readonly schema: {
|
|
20388
|
+
readonly type: "object";
|
|
20389
|
+
readonly required: ["trends"];
|
|
20390
|
+
readonly properties: {
|
|
20391
|
+
readonly trends: {
|
|
20392
|
+
readonly type: "array";
|
|
20393
|
+
readonly items: {
|
|
20394
|
+
readonly type: "ref";
|
|
20395
|
+
readonly ref: "lex:app.bsky.unspecced.defs#skeletonTrend";
|
|
20396
|
+
};
|
|
20397
|
+
};
|
|
20398
|
+
};
|
|
20399
|
+
};
|
|
20400
|
+
};
|
|
20401
|
+
};
|
|
20402
|
+
};
|
|
19892
20403
|
} | {
|
|
19893
20404
|
readonly lexicon: 1;
|
|
19894
20405
|
readonly id: "app.bsky.unspecced.searchActorsSkeleton";
|
|
@@ -21495,6 +22006,7 @@ export declare const ids: {
|
|
|
21495
22006
|
readonly ComAtprotoAdminUpdateAccountEmail: "com.atproto.admin.updateAccountEmail";
|
|
21496
22007
|
readonly ComAtprotoAdminUpdateAccountHandle: "com.atproto.admin.updateAccountHandle";
|
|
21497
22008
|
readonly ComAtprotoAdminUpdateAccountPassword: "com.atproto.admin.updateAccountPassword";
|
|
22009
|
+
readonly ComAtprotoAdminUpdateAccountSigningKey: "com.atproto.admin.updateAccountSigningKey";
|
|
21498
22010
|
readonly ComAtprotoAdminUpdateSubjectStatus: "com.atproto.admin.updateSubjectStatus";
|
|
21499
22011
|
readonly ComAtprotoIdentityDefs: "com.atproto.identity.defs";
|
|
21500
22012
|
readonly ComAtprotoIdentityGetRecommendedDidCredentials: "com.atproto.identity.getRecommendedDidCredentials";
|
|
@@ -21648,9 +22160,13 @@ export declare const ids: {
|
|
|
21648
22160
|
readonly AppBskyUnspeccedDefs: "app.bsky.unspecced.defs";
|
|
21649
22161
|
readonly AppBskyUnspeccedGetConfig: "app.bsky.unspecced.getConfig";
|
|
21650
22162
|
readonly AppBskyUnspeccedGetPopularFeedGenerators: "app.bsky.unspecced.getPopularFeedGenerators";
|
|
22163
|
+
readonly AppBskyUnspeccedGetSuggestedStarterPacks: "app.bsky.unspecced.getSuggestedStarterPacks";
|
|
22164
|
+
readonly AppBskyUnspeccedGetSuggestedStarterPacksSkeleton: "app.bsky.unspecced.getSuggestedStarterPacksSkeleton";
|
|
21651
22165
|
readonly AppBskyUnspeccedGetSuggestionsSkeleton: "app.bsky.unspecced.getSuggestionsSkeleton";
|
|
21652
22166
|
readonly AppBskyUnspeccedGetTaggedSuggestions: "app.bsky.unspecced.getTaggedSuggestions";
|
|
21653
22167
|
readonly AppBskyUnspeccedGetTrendingTopics: "app.bsky.unspecced.getTrendingTopics";
|
|
22168
|
+
readonly AppBskyUnspeccedGetTrends: "app.bsky.unspecced.getTrends";
|
|
22169
|
+
readonly AppBskyUnspeccedGetTrendsSkeleton: "app.bsky.unspecced.getTrendsSkeleton";
|
|
21654
22170
|
readonly AppBskyUnspeccedSearchActorsSkeleton: "app.bsky.unspecced.searchActorsSkeleton";
|
|
21655
22171
|
readonly AppBskyUnspeccedSearchPostsSkeleton: "app.bsky.unspecced.searchPostsSkeleton";
|
|
21656
22172
|
readonly AppBskyUnspeccedSearchStarterPacksSkeleton: "app.bsky.unspecced.searchStarterPacksSkeleton";
|