@atproto/bsky 0.0.132 → 0.0.134

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (66) hide show
  1. package/CHANGELOG.md +26 -0
  2. package/dist/api/app/bsky/unspecced/getSuggestedStarterPacks.d.ts +4 -0
  3. package/dist/api/app/bsky/unspecced/getSuggestedStarterPacks.d.ts.map +1 -0
  4. package/dist/api/app/bsky/unspecced/getSuggestedStarterPacks.js +101 -0
  5. package/dist/api/app/bsky/unspecced/getSuggestedStarterPacks.js.map +1 -0
  6. package/dist/api/app/bsky/unspecced/getTrends.d.ts +4 -0
  7. package/dist/api/app/bsky/unspecced/getTrends.d.ts.map +1 -0
  8. package/dist/api/app/bsky/unspecced/getTrends.js +96 -0
  9. package/dist/api/app/bsky/unspecced/getTrends.js.map +1 -0
  10. package/dist/api/index.d.ts.map +1 -1
  11. package/dist/api/index.js +4 -0
  12. package/dist/api/index.js.map +1 -1
  13. package/dist/lexicon/index.d.ts +10 -0
  14. package/dist/lexicon/index.d.ts.map +1 -1
  15. package/dist/lexicon/index.js +20 -0
  16. package/dist/lexicon/index.js.map +1 -1
  17. package/dist/lexicon/lexicons.d.ts +536 -4
  18. package/dist/lexicon/lexicons.d.ts.map +1 -1
  19. package/dist/lexicon/lexicons.js +286 -2
  20. package/dist/lexicon/lexicons.js.map +1 -1
  21. package/dist/lexicon/types/app/bsky/unspecced/defs.d.ts +27 -0
  22. package/dist/lexicon/types/app/bsky/unspecced/defs.d.ts.map +1 -1
  23. package/dist/lexicon/types/app/bsky/unspecced/defs.js +18 -0
  24. package/dist/lexicon/types/app/bsky/unspecced/defs.js.map +1 -1
  25. package/dist/lexicon/types/app/bsky/unspecced/getSuggestedStarterPacks.d.ts +36 -0
  26. package/dist/lexicon/types/app/bsky/unspecced/getSuggestedStarterPacks.d.ts.map +1 -0
  27. package/dist/lexicon/types/app/bsky/unspecced/getSuggestedStarterPacks.js +7 -0
  28. package/dist/lexicon/types/app/bsky/unspecced/getSuggestedStarterPacks.js.map +1 -0
  29. package/dist/lexicon/types/app/bsky/unspecced/getSuggestedStarterPacksSkeleton.d.ts +37 -0
  30. package/dist/lexicon/types/app/bsky/unspecced/getSuggestedStarterPacksSkeleton.d.ts.map +1 -0
  31. package/dist/lexicon/types/app/bsky/unspecced/getSuggestedStarterPacksSkeleton.js +7 -0
  32. package/dist/lexicon/types/app/bsky/unspecced/getSuggestedStarterPacksSkeleton.js.map +1 -0
  33. package/dist/lexicon/types/app/bsky/unspecced/getTrends.d.ts +36 -0
  34. package/dist/lexicon/types/app/bsky/unspecced/getTrends.d.ts.map +1 -0
  35. package/dist/lexicon/types/app/bsky/unspecced/getTrends.js +7 -0
  36. package/dist/lexicon/types/app/bsky/unspecced/getTrends.js.map +1 -0
  37. package/dist/lexicon/types/app/bsky/unspecced/getTrendsSkeleton.d.ts +38 -0
  38. package/dist/lexicon/types/app/bsky/unspecced/getTrendsSkeleton.d.ts.map +1 -0
  39. package/dist/lexicon/types/app/bsky/unspecced/getTrendsSkeleton.js +7 -0
  40. package/dist/lexicon/types/app/bsky/unspecced/getTrendsSkeleton.js.map +1 -0
  41. package/dist/lexicon/types/chat/bsky/convo/defs.d.ts +5 -1
  42. package/dist/lexicon/types/chat/bsky/convo/defs.d.ts.map +1 -1
  43. package/dist/lexicon/types/chat/bsky/convo/defs.js.map +1 -1
  44. package/dist/lexicon/types/com/atproto/admin/updateAccountSigningKey.d.ts +31 -0
  45. package/dist/lexicon/types/com/atproto/admin/updateAccountSigningKey.d.ts.map +1 -0
  46. package/dist/lexicon/types/com/atproto/admin/updateAccountSigningKey.js +7 -0
  47. package/dist/lexicon/types/com/atproto/admin/updateAccountSigningKey.js.map +1 -0
  48. package/package.json +9 -9
  49. package/src/api/app/bsky/unspecced/getSuggestedStarterPacks.ts +150 -0
  50. package/src/api/app/bsky/unspecced/getTrends.ts +144 -0
  51. package/src/api/index.ts +4 -0
  52. package/src/lexicon/index.ts +62 -0
  53. package/src/lexicon/lexicons.ts +294 -2
  54. package/src/lexicon/types/app/bsky/unspecced/defs.ts +45 -0
  55. package/src/lexicon/types/app/bsky/unspecced/getSuggestedStarterPacks.ts +54 -0
  56. package/src/lexicon/types/app/bsky/unspecced/getSuggestedStarterPacksSkeleton.ts +55 -0
  57. package/src/lexicon/types/app/bsky/unspecced/getTrends.ts +54 -0
  58. package/src/lexicon/types/app/bsky/unspecced/getTrendsSkeleton.ts +56 -0
  59. package/src/lexicon/types/chat/bsky/convo/defs.ts +2 -1
  60. package/src/lexicon/types/com/atproto/admin/updateAccountSigningKey.ts +48 -0
  61. package/tests/seed/get-suggested-starter-packs.ts +63 -0
  62. package/tests/seed/get-trends.ts +70 -0
  63. package/tests/views/get-suggested-starter-packs.test.ts +128 -0
  64. package/tests/views/get-trends.test.ts +133 -0
  65. package/tsconfig.build.tsbuildinfo +1 -1
  66. 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#starterPackViewBasic";
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";
@@ -9893,7 +10151,7 @@ export declare const schemaDict: {
9893
10151
  };
9894
10152
  readonly reactionView: {
9895
10153
  readonly type: "object";
9896
- readonly required: ["value", "sender"];
10154
+ readonly required: ["value", "sender", "createdAt"];
9897
10155
  readonly properties: {
9898
10156
  readonly value: {
9899
10157
  readonly type: "string";
@@ -9902,6 +10160,10 @@ export declare const schemaDict: {
9902
10160
  readonly type: "ref";
9903
10161
  readonly ref: "lex:chat.bsky.convo.defs#reactionViewSender";
9904
10162
  };
10163
+ readonly createdAt: {
10164
+ readonly type: "string";
10165
+ readonly format: "datetime";
10166
+ };
9905
10167
  };
9906
10168
  };
9907
10169
  readonly reactionViewSender: {
@@ -9947,7 +10209,11 @@ export declare const schemaDict: {
9947
10209
  };
9948
10210
  readonly lastMessage: {
9949
10211
  readonly type: "union";
9950
- readonly refs: ["lex:chat.bsky.convo.defs#messageView", "lex:chat.bsky.convo.defs#deletedMessageView", "lex:chat.bsky.convo.defs#messageAndReactionView"];
10212
+ readonly refs: ["lex:chat.bsky.convo.defs#messageView", "lex:chat.bsky.convo.defs#deletedMessageView"];
10213
+ };
10214
+ readonly lastReaction: {
10215
+ readonly type: "union";
10216
+ readonly refs: ["lex:chat.bsky.convo.defs#messageAndReactionView"];
9951
10217
  };
9952
10218
  readonly muted: {
9953
10219
  readonly type: "boolean";
@@ -11378,6 +11644,33 @@ export declare const schemas: ({
11378
11644
  };
11379
11645
  };
11380
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
+ };
11381
11674
  } | {
11382
11675
  readonly lexicon: 1;
11383
11676
  readonly id: "com.atproto.admin.updateSubjectStatus";
@@ -19659,6 +19952,78 @@ export declare const schemas: ({
19659
19952
  };
19660
19953
  };
19661
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
+ };
19662
20027
  };
19663
20028
  } | {
19664
20029
  readonly lexicon: 1;
@@ -19726,6 +20091,83 @@ export declare const schemas: ({
19726
20091
  };
19727
20092
  };
19728
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#starterPackViewBasic";
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
+ };
19729
20171
  } | {
19730
20172
  readonly lexicon: 1;
19731
20173
  readonly id: "app.bsky.unspecced.getSuggestionsSkeleton";
@@ -19881,6 +20323,83 @@ export declare const schemas: ({
19881
20323
  };
19882
20324
  };
19883
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
+ };
19884
20403
  } | {
19885
20404
  readonly lexicon: 1;
19886
20405
  readonly id: "app.bsky.unspecced.searchActorsSkeleton";
@@ -20538,7 +21057,7 @@ export declare const schemas: ({
20538
21057
  };
20539
21058
  readonly reactionView: {
20540
21059
  readonly type: "object";
20541
- readonly required: ["value", "sender"];
21060
+ readonly required: ["value", "sender", "createdAt"];
20542
21061
  readonly properties: {
20543
21062
  readonly value: {
20544
21063
  readonly type: "string";
@@ -20547,6 +21066,10 @@ export declare const schemas: ({
20547
21066
  readonly type: "ref";
20548
21067
  readonly ref: "lex:chat.bsky.convo.defs#reactionViewSender";
20549
21068
  };
21069
+ readonly createdAt: {
21070
+ readonly type: "string";
21071
+ readonly format: "datetime";
21072
+ };
20550
21073
  };
20551
21074
  };
20552
21075
  readonly reactionViewSender: {
@@ -20592,7 +21115,11 @@ export declare const schemas: ({
20592
21115
  };
20593
21116
  readonly lastMessage: {
20594
21117
  readonly type: "union";
20595
- readonly refs: ["lex:chat.bsky.convo.defs#messageView", "lex:chat.bsky.convo.defs#deletedMessageView", "lex:chat.bsky.convo.defs#messageAndReactionView"];
21118
+ readonly refs: ["lex:chat.bsky.convo.defs#messageView", "lex:chat.bsky.convo.defs#deletedMessageView"];
21119
+ };
21120
+ readonly lastReaction: {
21121
+ readonly type: "union";
21122
+ readonly refs: ["lex:chat.bsky.convo.defs#messageAndReactionView"];
20596
21123
  };
20597
21124
  readonly muted: {
20598
21125
  readonly type: "boolean";
@@ -21479,6 +22006,7 @@ export declare const ids: {
21479
22006
  readonly ComAtprotoAdminUpdateAccountEmail: "com.atproto.admin.updateAccountEmail";
21480
22007
  readonly ComAtprotoAdminUpdateAccountHandle: "com.atproto.admin.updateAccountHandle";
21481
22008
  readonly ComAtprotoAdminUpdateAccountPassword: "com.atproto.admin.updateAccountPassword";
22009
+ readonly ComAtprotoAdminUpdateAccountSigningKey: "com.atproto.admin.updateAccountSigningKey";
21482
22010
  readonly ComAtprotoAdminUpdateSubjectStatus: "com.atproto.admin.updateSubjectStatus";
21483
22011
  readonly ComAtprotoIdentityDefs: "com.atproto.identity.defs";
21484
22012
  readonly ComAtprotoIdentityGetRecommendedDidCredentials: "com.atproto.identity.getRecommendedDidCredentials";
@@ -21632,9 +22160,13 @@ export declare const ids: {
21632
22160
  readonly AppBskyUnspeccedDefs: "app.bsky.unspecced.defs";
21633
22161
  readonly AppBskyUnspeccedGetConfig: "app.bsky.unspecced.getConfig";
21634
22162
  readonly AppBskyUnspeccedGetPopularFeedGenerators: "app.bsky.unspecced.getPopularFeedGenerators";
22163
+ readonly AppBskyUnspeccedGetSuggestedStarterPacks: "app.bsky.unspecced.getSuggestedStarterPacks";
22164
+ readonly AppBskyUnspeccedGetSuggestedStarterPacksSkeleton: "app.bsky.unspecced.getSuggestedStarterPacksSkeleton";
21635
22165
  readonly AppBskyUnspeccedGetSuggestionsSkeleton: "app.bsky.unspecced.getSuggestionsSkeleton";
21636
22166
  readonly AppBskyUnspeccedGetTaggedSuggestions: "app.bsky.unspecced.getTaggedSuggestions";
21637
22167
  readonly AppBskyUnspeccedGetTrendingTopics: "app.bsky.unspecced.getTrendingTopics";
22168
+ readonly AppBskyUnspeccedGetTrends: "app.bsky.unspecced.getTrends";
22169
+ readonly AppBskyUnspeccedGetTrendsSkeleton: "app.bsky.unspecced.getTrendsSkeleton";
21638
22170
  readonly AppBskyUnspeccedSearchActorsSkeleton: "app.bsky.unspecced.searchActorsSkeleton";
21639
22171
  readonly AppBskyUnspeccedSearchPostsSkeleton: "app.bsky.unspecced.searchPostsSkeleton";
21640
22172
  readonly AppBskyUnspeccedSearchStarterPacksSkeleton: "app.bsky.unspecced.searchStarterPacksSkeleton";