@atproto/api 0.0.2 → 0.0.4

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 (83) hide show
  1. package/build.js +0 -14
  2. package/dist/client/index.d.ts +471 -0
  3. package/dist/client/lexicons.d.ts +3042 -0
  4. package/dist/client/types/app/bsky/actor/createScene.d.ts +32 -0
  5. package/dist/client/types/app/bsky/actor/getProfile.d.ts +37 -0
  6. package/dist/client/types/app/bsky/actor/getSuggestions.d.ts +36 -0
  7. package/dist/client/types/app/bsky/actor/profile.d.ts +15 -0
  8. package/dist/client/types/app/bsky/actor/ref.d.ts +19 -0
  9. package/dist/client/types/app/bsky/actor/search.d.ts +32 -0
  10. package/dist/client/types/app/bsky/actor/searchTypeahead.d.ts +28 -0
  11. package/dist/client/types/app/bsky/actor/updateProfile.d.ts +48 -0
  12. package/dist/client/types/app/bsky/embed/external.d.ts +26 -0
  13. package/dist/client/types/app/bsky/embed/images.d.ts +23 -0
  14. package/dist/client/types/app/bsky/feed/feedViewPost.d.ts +26 -0
  15. package/dist/client/types/app/bsky/feed/getAuthorFeed.d.ts +22 -0
  16. package/dist/client/types/app/bsky/feed/getPostThread.d.ts +43 -0
  17. package/dist/client/types/app/bsky/feed/getRepostedBy.d.ts +35 -0
  18. package/dist/client/types/app/bsky/feed/getTimeline.d.ts +22 -0
  19. package/dist/client/types/app/bsky/feed/getVotes.d.ts +33 -0
  20. package/dist/client/types/app/bsky/feed/post.d.ts +55 -0
  21. package/dist/client/types/app/bsky/feed/repost.d.ts +6 -0
  22. package/dist/client/types/app/bsky/feed/setVote.d.ts +25 -0
  23. package/dist/client/types/app/bsky/feed/trend.d.ts +6 -0
  24. package/dist/client/types/app/bsky/feed/vote.d.ts +7 -0
  25. package/dist/client/types/app/bsky/graph/assertCreator.d.ts +1 -0
  26. package/dist/client/types/app/bsky/graph/assertMember.d.ts +1 -0
  27. package/dist/client/types/app/bsky/graph/assertion.d.ts +7 -0
  28. package/dist/client/types/app/bsky/graph/confirmation.d.ts +8 -0
  29. package/dist/client/types/app/bsky/graph/follow.d.ts +6 -0
  30. package/dist/client/types/app/bsky/graph/getAssertions.d.ts +43 -0
  31. package/dist/client/types/app/bsky/graph/getFollowers.d.ts +34 -0
  32. package/dist/client/types/app/bsky/graph/getFollows.d.ts +33 -0
  33. package/dist/client/types/app/bsky/graph/getMembers.d.ts +33 -0
  34. package/dist/client/types/app/bsky/graph/getMemberships.d.ts +33 -0
  35. package/dist/client/types/app/bsky/graph/getMutes.d.ts +29 -0
  36. package/dist/client/types/app/bsky/graph/mute.d.ts +17 -0
  37. package/dist/client/types/app/bsky/graph/unmute.d.ts +17 -0
  38. package/dist/client/types/app/bsky/notification/getCount.d.ts +17 -0
  39. package/dist/client/types/app/bsky/notification/list.d.ts +32 -0
  40. package/dist/client/types/app/bsky/notification/updateSeen.d.ts +17 -0
  41. package/dist/client/types/app/bsky/system/actorScene.d.ts +1 -0
  42. package/dist/client/types/app/bsky/system/actorUser.d.ts +1 -0
  43. package/dist/client/types/app/bsky/system/declRef.d.ts +5 -0
  44. package/dist/client/types/app/bsky/system/declaration.d.ts +4 -0
  45. package/dist/client/types/com/atproto/account/create.d.ts +41 -0
  46. package/dist/client/types/com/atproto/account/createInviteCode.d.ts +22 -0
  47. package/dist/client/types/com/atproto/account/delete.d.ts +13 -0
  48. package/dist/client/types/com/atproto/account/get.d.ts +12 -0
  49. package/dist/client/types/com/atproto/account/requestPasswordReset.d.ts +17 -0
  50. package/dist/client/types/com/atproto/account/resetPassword.d.ts +24 -0
  51. package/dist/client/types/com/atproto/blob/upload.d.ts +19 -0
  52. package/dist/client/types/com/atproto/handle/resolve.d.ts +18 -0
  53. package/dist/client/types/com/atproto/repo/batchWrite.d.ts +39 -0
  54. package/dist/client/types/com/atproto/repo/createRecord.d.ts +26 -0
  55. package/dist/client/types/com/atproto/repo/deleteRecord.d.ts +19 -0
  56. package/dist/client/types/com/atproto/repo/describe.d.ts +22 -0
  57. package/dist/client/types/com/atproto/repo/getRecord.d.ts +23 -0
  58. package/dist/client/types/com/atproto/repo/listRecords.d.ts +30 -0
  59. package/dist/client/types/com/atproto/repo/putRecord.d.ts +27 -0
  60. package/dist/client/types/com/atproto/repo/strongRef.d.ts +5 -0
  61. package/dist/client/types/com/atproto/server/getAccountsConfig.d.ts +24 -0
  62. package/dist/client/types/com/atproto/session/create.d.ts +26 -0
  63. package/dist/client/types/com/atproto/session/delete.d.ts +13 -0
  64. package/dist/client/types/com/atproto/session/get.d.ts +18 -0
  65. package/dist/client/types/com/atproto/session/refresh.d.ts +21 -0
  66. package/dist/client/types/com/atproto/sync/getRepo.d.ts +15 -0
  67. package/dist/client/types/com/atproto/sync/getRoot.d.ts +18 -0
  68. package/dist/client/types/com/atproto/sync/updateRepo.d.ts +15 -0
  69. package/dist/index.d.ts +4 -0
  70. package/dist/index.js +201 -18
  71. package/dist/index.js.map +4 -4
  72. package/dist/session.d.ts +42 -0
  73. package/package.json +4 -4
  74. package/src/client/index.ts +39 -0
  75. package/src/client/lexicons.ts +141 -9
  76. package/src/client/types/app/bsky/actor/getProfile.ts +1 -0
  77. package/src/client/types/app/bsky/actor/ref.ts +6 -0
  78. package/src/client/types/app/bsky/feed/post.ts +2 -0
  79. package/src/client/types/app/bsky/graph/getMutes.ts +43 -0
  80. package/src/client/types/app/bsky/graph/mute.ts +28 -0
  81. package/src/client/types/app/bsky/graph/unmute.ts +28 -0
  82. package/tsconfig.build.tsbuildinfo +1 -1
  83. package/update-pkg.js +14 -0
@@ -0,0 +1,3042 @@
1
+ import { LexiconDoc, Lexicons } from '@atproto/lexicon';
2
+ export declare const schemaDict: {
3
+ ComAtprotoAccountCreate: {
4
+ lexicon: number;
5
+ id: string;
6
+ defs: {
7
+ main: {
8
+ type: string;
9
+ description: string;
10
+ input: {
11
+ encoding: string;
12
+ schema: {
13
+ type: string;
14
+ required: string[];
15
+ properties: {
16
+ email: {
17
+ type: string;
18
+ };
19
+ handle: {
20
+ type: string;
21
+ };
22
+ inviteCode: {
23
+ type: string;
24
+ };
25
+ password: {
26
+ type: string;
27
+ };
28
+ recoveryKey: {
29
+ type: string;
30
+ };
31
+ };
32
+ };
33
+ };
34
+ output: {
35
+ encoding: string;
36
+ schema: {
37
+ type: string;
38
+ required: string[];
39
+ properties: {
40
+ accessJwt: {
41
+ type: string;
42
+ };
43
+ refreshJwt: {
44
+ type: string;
45
+ };
46
+ handle: {
47
+ type: string;
48
+ };
49
+ did: {
50
+ type: string;
51
+ };
52
+ };
53
+ };
54
+ };
55
+ errors: {
56
+ name: string;
57
+ }[];
58
+ };
59
+ };
60
+ };
61
+ ComAtprotoAccountCreateInviteCode: {
62
+ lexicon: number;
63
+ id: string;
64
+ defs: {
65
+ main: {
66
+ type: string;
67
+ description: string;
68
+ input: {
69
+ encoding: string;
70
+ schema: {
71
+ type: string;
72
+ required: string[];
73
+ properties: {
74
+ useCount: {
75
+ type: string;
76
+ };
77
+ };
78
+ };
79
+ };
80
+ output: {
81
+ encoding: string;
82
+ schema: {
83
+ type: string;
84
+ required: string[];
85
+ properties: {
86
+ code: {
87
+ type: string;
88
+ };
89
+ };
90
+ };
91
+ };
92
+ };
93
+ };
94
+ };
95
+ ComAtprotoAccountDelete: {
96
+ lexicon: number;
97
+ id: string;
98
+ defs: {
99
+ main: {
100
+ type: string;
101
+ description: string;
102
+ };
103
+ };
104
+ };
105
+ ComAtprotoAccountGet: {
106
+ lexicon: number;
107
+ id: string;
108
+ defs: {
109
+ main: {
110
+ type: string;
111
+ description: string;
112
+ };
113
+ };
114
+ };
115
+ ComAtprotoAccountRequestPasswordReset: {
116
+ lexicon: number;
117
+ id: string;
118
+ defs: {
119
+ main: {
120
+ type: string;
121
+ description: string;
122
+ input: {
123
+ encoding: string;
124
+ schema: {
125
+ type: string;
126
+ required: string[];
127
+ properties: {
128
+ email: {
129
+ type: string;
130
+ };
131
+ };
132
+ };
133
+ };
134
+ };
135
+ };
136
+ };
137
+ ComAtprotoAccountResetPassword: {
138
+ lexicon: number;
139
+ id: string;
140
+ defs: {
141
+ main: {
142
+ type: string;
143
+ description: string;
144
+ input: {
145
+ encoding: string;
146
+ schema: {
147
+ type: string;
148
+ required: string[];
149
+ properties: {
150
+ token: {
151
+ type: string;
152
+ };
153
+ password: {
154
+ type: string;
155
+ };
156
+ };
157
+ };
158
+ };
159
+ errors: {
160
+ name: string;
161
+ }[];
162
+ };
163
+ };
164
+ };
165
+ ComAtprotoBlobUpload: {
166
+ lexicon: number;
167
+ id: string;
168
+ defs: {
169
+ main: {
170
+ type: string;
171
+ description: string;
172
+ input: {
173
+ encoding: string;
174
+ };
175
+ output: {
176
+ encoding: string;
177
+ schema: {
178
+ type: string;
179
+ required: string[];
180
+ properties: {
181
+ cid: {
182
+ type: string;
183
+ };
184
+ };
185
+ };
186
+ };
187
+ };
188
+ };
189
+ };
190
+ ComAtprotoHandleResolve: {
191
+ lexicon: number;
192
+ id: string;
193
+ defs: {
194
+ main: {
195
+ type: string;
196
+ description: string;
197
+ parameters: {
198
+ type: string;
199
+ properties: {
200
+ handle: {
201
+ type: string;
202
+ description: string;
203
+ };
204
+ };
205
+ };
206
+ output: {
207
+ encoding: string;
208
+ schema: {
209
+ type: string;
210
+ required: string[];
211
+ properties: {
212
+ did: {
213
+ type: string;
214
+ };
215
+ };
216
+ };
217
+ };
218
+ };
219
+ };
220
+ };
221
+ ComAtprotoRepoBatchWrite: {
222
+ lexicon: number;
223
+ id: string;
224
+ defs: {
225
+ main: {
226
+ type: string;
227
+ description: string;
228
+ input: {
229
+ encoding: string;
230
+ schema: {
231
+ type: string;
232
+ required: string[];
233
+ properties: {
234
+ did: {
235
+ type: string;
236
+ description: string;
237
+ };
238
+ validate: {
239
+ type: string;
240
+ default: boolean;
241
+ description: string;
242
+ };
243
+ writes: {
244
+ type: string;
245
+ items: {
246
+ type: string;
247
+ refs: string[];
248
+ closed: boolean;
249
+ };
250
+ };
251
+ };
252
+ };
253
+ };
254
+ };
255
+ create: {
256
+ type: string;
257
+ required: string[];
258
+ properties: {
259
+ action: {
260
+ type: string;
261
+ const: string;
262
+ };
263
+ collection: {
264
+ type: string;
265
+ };
266
+ rkey: {
267
+ type: string;
268
+ };
269
+ value: {
270
+ type: string;
271
+ };
272
+ };
273
+ };
274
+ update: {
275
+ type: string;
276
+ required: string[];
277
+ properties: {
278
+ action: {
279
+ type: string;
280
+ const: string;
281
+ };
282
+ collection: {
283
+ type: string;
284
+ };
285
+ rkey: {
286
+ type: string;
287
+ };
288
+ value: {
289
+ type: string;
290
+ };
291
+ };
292
+ };
293
+ delete: {
294
+ type: string;
295
+ required: string[];
296
+ properties: {
297
+ action: {
298
+ type: string;
299
+ const: string;
300
+ };
301
+ collection: {
302
+ type: string;
303
+ };
304
+ rkey: {
305
+ type: string;
306
+ };
307
+ };
308
+ };
309
+ };
310
+ };
311
+ ComAtprotoRepoCreateRecord: {
312
+ lexicon: number;
313
+ id: string;
314
+ defs: {
315
+ main: {
316
+ type: string;
317
+ description: string;
318
+ input: {
319
+ encoding: string;
320
+ schema: {
321
+ type: string;
322
+ required: string[];
323
+ properties: {
324
+ did: {
325
+ type: string;
326
+ description: string;
327
+ };
328
+ collection: {
329
+ type: string;
330
+ description: string;
331
+ };
332
+ validate: {
333
+ type: string;
334
+ default: boolean;
335
+ description: string;
336
+ };
337
+ record: {
338
+ type: string;
339
+ description: string;
340
+ };
341
+ };
342
+ };
343
+ };
344
+ output: {
345
+ encoding: string;
346
+ schema: {
347
+ type: string;
348
+ required: string[];
349
+ properties: {
350
+ uri: {
351
+ type: string;
352
+ };
353
+ cid: {
354
+ type: string;
355
+ };
356
+ };
357
+ };
358
+ };
359
+ };
360
+ };
361
+ };
362
+ ComAtprotoRepoDeleteRecord: {
363
+ lexicon: number;
364
+ id: string;
365
+ defs: {
366
+ main: {
367
+ type: string;
368
+ description: string;
369
+ input: {
370
+ encoding: string;
371
+ schema: {
372
+ type: string;
373
+ required: string[];
374
+ properties: {
375
+ did: {
376
+ type: string;
377
+ description: string;
378
+ };
379
+ collection: {
380
+ type: string;
381
+ description: string;
382
+ };
383
+ rkey: {
384
+ type: string;
385
+ description: string;
386
+ };
387
+ };
388
+ };
389
+ };
390
+ };
391
+ };
392
+ };
393
+ ComAtprotoRepoDescribe: {
394
+ lexicon: number;
395
+ id: string;
396
+ defs: {
397
+ main: {
398
+ type: string;
399
+ description: string;
400
+ parameters: {
401
+ type: string;
402
+ required: string[];
403
+ properties: {
404
+ user: {
405
+ type: string;
406
+ description: string;
407
+ };
408
+ };
409
+ };
410
+ output: {
411
+ encoding: string;
412
+ schema: {
413
+ type: string;
414
+ required: string[];
415
+ properties: {
416
+ handle: {
417
+ type: string;
418
+ };
419
+ did: {
420
+ type: string;
421
+ };
422
+ didDoc: {
423
+ type: string;
424
+ };
425
+ collections: {
426
+ type: string;
427
+ items: {
428
+ type: string;
429
+ };
430
+ };
431
+ handleIsCorrect: {
432
+ type: string;
433
+ };
434
+ };
435
+ };
436
+ };
437
+ };
438
+ };
439
+ };
440
+ ComAtprotoRepoGetRecord: {
441
+ lexicon: number;
442
+ id: string;
443
+ defs: {
444
+ main: {
445
+ type: string;
446
+ description: string;
447
+ parameters: {
448
+ type: string;
449
+ required: string[];
450
+ properties: {
451
+ user: {
452
+ type: string;
453
+ description: string;
454
+ };
455
+ collection: {
456
+ type: string;
457
+ description: string;
458
+ };
459
+ rkey: {
460
+ type: string;
461
+ description: string;
462
+ };
463
+ cid: {
464
+ type: string;
465
+ description: string;
466
+ };
467
+ };
468
+ };
469
+ output: {
470
+ encoding: string;
471
+ schema: {
472
+ type: string;
473
+ required: string[];
474
+ properties: {
475
+ uri: {
476
+ type: string;
477
+ };
478
+ cid: {
479
+ type: string;
480
+ };
481
+ value: {
482
+ type: string;
483
+ };
484
+ };
485
+ };
486
+ };
487
+ };
488
+ };
489
+ };
490
+ ComAtprotoRepoListRecords: {
491
+ lexicon: number;
492
+ id: string;
493
+ defs: {
494
+ main: {
495
+ type: string;
496
+ description: string;
497
+ parameters: {
498
+ type: string;
499
+ required: string[];
500
+ properties: {
501
+ user: {
502
+ type: string;
503
+ description: string;
504
+ };
505
+ collection: {
506
+ type: string;
507
+ description: string;
508
+ };
509
+ limit: {
510
+ type: string;
511
+ minimum: number;
512
+ maximum: number;
513
+ default: number;
514
+ description: string;
515
+ };
516
+ before: {
517
+ type: string;
518
+ description: string;
519
+ };
520
+ after: {
521
+ type: string;
522
+ description: string;
523
+ };
524
+ reverse: {
525
+ type: string;
526
+ description: string;
527
+ };
528
+ };
529
+ };
530
+ output: {
531
+ encoding: string;
532
+ schema: {
533
+ type: string;
534
+ required: string[];
535
+ properties: {
536
+ cursor: {
537
+ type: string;
538
+ };
539
+ records: {
540
+ type: string;
541
+ items: {
542
+ type: string;
543
+ ref: string;
544
+ };
545
+ };
546
+ };
547
+ };
548
+ };
549
+ };
550
+ record: {
551
+ type: string;
552
+ required: string[];
553
+ properties: {
554
+ uri: {
555
+ type: string;
556
+ };
557
+ cid: {
558
+ type: string;
559
+ };
560
+ value: {
561
+ type: string;
562
+ };
563
+ };
564
+ };
565
+ };
566
+ };
567
+ ComAtprotoRepoPutRecord: {
568
+ lexicon: number;
569
+ id: string;
570
+ defs: {
571
+ main: {
572
+ type: string;
573
+ description: string;
574
+ input: {
575
+ encoding: string;
576
+ schema: {
577
+ type: string;
578
+ required: string[];
579
+ properties: {
580
+ did: {
581
+ type: string;
582
+ description: string;
583
+ };
584
+ collection: {
585
+ type: string;
586
+ description: string;
587
+ };
588
+ rkey: {
589
+ type: string;
590
+ description: string;
591
+ };
592
+ validate: {
593
+ type: string;
594
+ default: boolean;
595
+ description: string;
596
+ };
597
+ record: {
598
+ type: string;
599
+ description: string;
600
+ };
601
+ };
602
+ };
603
+ };
604
+ output: {
605
+ encoding: string;
606
+ schema: {
607
+ type: string;
608
+ required: string[];
609
+ properties: {
610
+ uri: {
611
+ type: string;
612
+ };
613
+ cid: {
614
+ type: string;
615
+ };
616
+ };
617
+ };
618
+ };
619
+ };
620
+ };
621
+ };
622
+ ComAtprotoRepoStrongRef: {
623
+ lexicon: number;
624
+ id: string;
625
+ description: string;
626
+ defs: {
627
+ main: {
628
+ type: string;
629
+ required: string[];
630
+ properties: {
631
+ uri: {
632
+ type: string;
633
+ };
634
+ cid: {
635
+ type: string;
636
+ };
637
+ };
638
+ };
639
+ };
640
+ };
641
+ ComAtprotoServerGetAccountsConfig: {
642
+ lexicon: number;
643
+ id: string;
644
+ defs: {
645
+ main: {
646
+ type: string;
647
+ description: string;
648
+ output: {
649
+ encoding: string;
650
+ schema: {
651
+ type: string;
652
+ required: string[];
653
+ properties: {
654
+ inviteCodeRequired: {
655
+ type: string;
656
+ };
657
+ availableUserDomains: {
658
+ type: string;
659
+ items: {
660
+ type: string;
661
+ };
662
+ };
663
+ links: {
664
+ type: string;
665
+ ref: string;
666
+ };
667
+ };
668
+ };
669
+ };
670
+ };
671
+ links: {
672
+ type: string;
673
+ properties: {
674
+ privacyPolicy: {
675
+ type: string;
676
+ };
677
+ termsOfService: {
678
+ type: string;
679
+ };
680
+ };
681
+ };
682
+ };
683
+ };
684
+ ComAtprotoSessionCreate: {
685
+ lexicon: number;
686
+ id: string;
687
+ defs: {
688
+ main: {
689
+ type: string;
690
+ description: string;
691
+ input: {
692
+ encoding: string;
693
+ schema: {
694
+ type: string;
695
+ required: string[];
696
+ properties: {
697
+ handle: {
698
+ type: string;
699
+ };
700
+ password: {
701
+ type: string;
702
+ };
703
+ };
704
+ };
705
+ };
706
+ output: {
707
+ encoding: string;
708
+ schema: {
709
+ type: string;
710
+ required: string[];
711
+ properties: {
712
+ accessJwt: {
713
+ type: string;
714
+ };
715
+ refreshJwt: {
716
+ type: string;
717
+ };
718
+ handle: {
719
+ type: string;
720
+ };
721
+ did: {
722
+ type: string;
723
+ };
724
+ };
725
+ };
726
+ };
727
+ };
728
+ };
729
+ };
730
+ ComAtprotoSessionDelete: {
731
+ lexicon: number;
732
+ id: string;
733
+ defs: {
734
+ main: {
735
+ type: string;
736
+ description: string;
737
+ };
738
+ };
739
+ };
740
+ ComAtprotoSessionGet: {
741
+ lexicon: number;
742
+ id: string;
743
+ defs: {
744
+ main: {
745
+ type: string;
746
+ description: string;
747
+ output: {
748
+ encoding: string;
749
+ schema: {
750
+ type: string;
751
+ required: string[];
752
+ properties: {
753
+ handle: {
754
+ type: string;
755
+ };
756
+ did: {
757
+ type: string;
758
+ };
759
+ };
760
+ };
761
+ };
762
+ };
763
+ };
764
+ };
765
+ ComAtprotoSessionRefresh: {
766
+ lexicon: number;
767
+ id: string;
768
+ defs: {
769
+ main: {
770
+ type: string;
771
+ description: string;
772
+ output: {
773
+ encoding: string;
774
+ schema: {
775
+ type: string;
776
+ required: string[];
777
+ properties: {
778
+ accessJwt: {
779
+ type: string;
780
+ };
781
+ refreshJwt: {
782
+ type: string;
783
+ };
784
+ handle: {
785
+ type: string;
786
+ };
787
+ did: {
788
+ type: string;
789
+ };
790
+ };
791
+ };
792
+ };
793
+ };
794
+ };
795
+ };
796
+ ComAtprotoSyncGetRepo: {
797
+ lexicon: number;
798
+ id: string;
799
+ defs: {
800
+ main: {
801
+ type: string;
802
+ description: string;
803
+ parameters: {
804
+ type: string;
805
+ required: string[];
806
+ properties: {
807
+ did: {
808
+ type: string;
809
+ description: string;
810
+ };
811
+ from: {
812
+ type: string;
813
+ description: string;
814
+ };
815
+ };
816
+ };
817
+ output: {
818
+ encoding: string;
819
+ };
820
+ };
821
+ };
822
+ };
823
+ ComAtprotoSyncGetRoot: {
824
+ lexicon: number;
825
+ id: string;
826
+ defs: {
827
+ main: {
828
+ type: string;
829
+ description: string;
830
+ parameters: {
831
+ type: string;
832
+ required: string[];
833
+ properties: {
834
+ did: {
835
+ type: string;
836
+ description: string;
837
+ };
838
+ };
839
+ };
840
+ output: {
841
+ encoding: string;
842
+ schema: {
843
+ type: string;
844
+ required: string[];
845
+ properties: {
846
+ root: {
847
+ type: string;
848
+ };
849
+ };
850
+ };
851
+ };
852
+ };
853
+ };
854
+ };
855
+ ComAtprotoSyncUpdateRepo: {
856
+ lexicon: number;
857
+ id: string;
858
+ defs: {
859
+ main: {
860
+ type: string;
861
+ description: string;
862
+ parameters: {
863
+ type: string;
864
+ required: string[];
865
+ properties: {
866
+ did: {
867
+ type: string;
868
+ description: string;
869
+ };
870
+ };
871
+ };
872
+ input: {
873
+ encoding: string;
874
+ };
875
+ };
876
+ };
877
+ };
878
+ AppBskyActorCreateScene: {
879
+ lexicon: number;
880
+ id: string;
881
+ defs: {
882
+ main: {
883
+ type: string;
884
+ description: string;
885
+ input: {
886
+ encoding: string;
887
+ schema: {
888
+ type: string;
889
+ required: string[];
890
+ properties: {
891
+ handle: {
892
+ type: string;
893
+ };
894
+ recoveryKey: {
895
+ type: string;
896
+ };
897
+ };
898
+ };
899
+ };
900
+ output: {
901
+ encoding: string;
902
+ schema: {
903
+ type: string;
904
+ required: string[];
905
+ properties: {
906
+ handle: {
907
+ type: string;
908
+ };
909
+ did: {
910
+ type: string;
911
+ };
912
+ declaration: {
913
+ type: string;
914
+ ref: string;
915
+ };
916
+ };
917
+ };
918
+ };
919
+ errors: {
920
+ name: string;
921
+ }[];
922
+ };
923
+ };
924
+ };
925
+ AppBskyActorGetProfile: {
926
+ lexicon: number;
927
+ id: string;
928
+ defs: {
929
+ main: {
930
+ type: string;
931
+ parameters: {
932
+ type: string;
933
+ required: string[];
934
+ properties: {
935
+ actor: {
936
+ type: string;
937
+ };
938
+ };
939
+ };
940
+ output: {
941
+ encoding: string;
942
+ schema: {
943
+ type: string;
944
+ required: string[];
945
+ properties: {
946
+ did: {
947
+ type: string;
948
+ };
949
+ declaration: {
950
+ type: string;
951
+ ref: string;
952
+ };
953
+ handle: {
954
+ type: string;
955
+ };
956
+ creator: {
957
+ type: string;
958
+ };
959
+ displayName: {
960
+ type: string;
961
+ maxLength: number;
962
+ };
963
+ description: {
964
+ type: string;
965
+ maxLength: number;
966
+ };
967
+ avatar: {
968
+ type: string;
969
+ };
970
+ banner: {
971
+ type: string;
972
+ };
973
+ followersCount: {
974
+ type: string;
975
+ };
976
+ followsCount: {
977
+ type: string;
978
+ };
979
+ membersCount: {
980
+ type: string;
981
+ };
982
+ postsCount: {
983
+ type: string;
984
+ };
985
+ myState: {
986
+ type: string;
987
+ ref: string;
988
+ };
989
+ };
990
+ };
991
+ };
992
+ };
993
+ myState: {
994
+ type: string;
995
+ properties: {
996
+ follow: {
997
+ type: string;
998
+ };
999
+ member: {
1000
+ type: string;
1001
+ };
1002
+ muted: {
1003
+ type: string;
1004
+ };
1005
+ };
1006
+ };
1007
+ };
1008
+ };
1009
+ AppBskyActorGetSuggestions: {
1010
+ lexicon: number;
1011
+ id: string;
1012
+ defs: {
1013
+ main: {
1014
+ type: string;
1015
+ description: string;
1016
+ parameters: {
1017
+ type: string;
1018
+ properties: {
1019
+ limit: {
1020
+ type: string;
1021
+ minimum: number;
1022
+ maximum: number;
1023
+ default: number;
1024
+ };
1025
+ cursor: {
1026
+ type: string;
1027
+ };
1028
+ };
1029
+ };
1030
+ output: {
1031
+ encoding: string;
1032
+ schema: {
1033
+ type: string;
1034
+ required: string[];
1035
+ properties: {
1036
+ cursor: {
1037
+ type: string;
1038
+ };
1039
+ actors: {
1040
+ type: string;
1041
+ items: {
1042
+ type: string;
1043
+ ref: string;
1044
+ };
1045
+ };
1046
+ };
1047
+ };
1048
+ };
1049
+ };
1050
+ actor: {
1051
+ type: string;
1052
+ required: string[];
1053
+ properties: {
1054
+ did: {
1055
+ type: string;
1056
+ };
1057
+ declaration: {
1058
+ type: string;
1059
+ ref: string;
1060
+ };
1061
+ handle: {
1062
+ type: string;
1063
+ };
1064
+ displayName: {
1065
+ type: string;
1066
+ maxLength: number;
1067
+ };
1068
+ description: {
1069
+ type: string;
1070
+ };
1071
+ avatar: {
1072
+ type: string;
1073
+ };
1074
+ indexedAt: {
1075
+ type: string;
1076
+ };
1077
+ myState: {
1078
+ type: string;
1079
+ ref: string;
1080
+ };
1081
+ };
1082
+ };
1083
+ myState: {
1084
+ type: string;
1085
+ properties: {
1086
+ follow: {
1087
+ type: string;
1088
+ };
1089
+ };
1090
+ };
1091
+ };
1092
+ };
1093
+ AppBskyActorProfile: {
1094
+ lexicon: number;
1095
+ id: string;
1096
+ defs: {
1097
+ main: {
1098
+ type: string;
1099
+ key: string;
1100
+ record: {
1101
+ type: string;
1102
+ required: string[];
1103
+ properties: {
1104
+ displayName: {
1105
+ type: string;
1106
+ maxLength: number;
1107
+ };
1108
+ description: {
1109
+ type: string;
1110
+ maxLength: number;
1111
+ };
1112
+ avatar: {
1113
+ type: string;
1114
+ accept: string[];
1115
+ maxWidth: number;
1116
+ maxHeight: number;
1117
+ maxSize: number;
1118
+ };
1119
+ banner: {
1120
+ type: string;
1121
+ accept: string[];
1122
+ maxWidth: number;
1123
+ maxHeight: number;
1124
+ maxSize: number;
1125
+ };
1126
+ };
1127
+ };
1128
+ };
1129
+ };
1130
+ };
1131
+ AppBskyActorRef: {
1132
+ lexicon: number;
1133
+ id: string;
1134
+ description: string;
1135
+ defs: {
1136
+ main: {
1137
+ type: string;
1138
+ required: string[];
1139
+ properties: {
1140
+ did: {
1141
+ type: string;
1142
+ };
1143
+ declarationCid: {
1144
+ type: string;
1145
+ };
1146
+ };
1147
+ };
1148
+ withInfo: {
1149
+ type: string;
1150
+ required: string[];
1151
+ properties: {
1152
+ did: {
1153
+ type: string;
1154
+ };
1155
+ declaration: {
1156
+ type: string;
1157
+ ref: string;
1158
+ };
1159
+ handle: {
1160
+ type: string;
1161
+ };
1162
+ displayName: {
1163
+ type: string;
1164
+ maxLength: number;
1165
+ };
1166
+ avatar: {
1167
+ type: string;
1168
+ };
1169
+ viewer: {
1170
+ type: string;
1171
+ ref: string;
1172
+ };
1173
+ };
1174
+ };
1175
+ viewerState: {
1176
+ type: string;
1177
+ properties: {
1178
+ muted: {
1179
+ type: string;
1180
+ };
1181
+ };
1182
+ };
1183
+ };
1184
+ };
1185
+ AppBskyActorSearch: {
1186
+ lexicon: number;
1187
+ id: string;
1188
+ defs: {
1189
+ main: {
1190
+ type: string;
1191
+ description: string;
1192
+ parameters: {
1193
+ type: string;
1194
+ required: string[];
1195
+ properties: {
1196
+ term: {
1197
+ type: string;
1198
+ };
1199
+ limit: {
1200
+ type: string;
1201
+ minimum: number;
1202
+ maximum: number;
1203
+ default: number;
1204
+ };
1205
+ before: {
1206
+ type: string;
1207
+ };
1208
+ };
1209
+ };
1210
+ output: {
1211
+ encoding: string;
1212
+ schema: {
1213
+ type: string;
1214
+ required: string[];
1215
+ properties: {
1216
+ cursor: {
1217
+ type: string;
1218
+ };
1219
+ users: {
1220
+ type: string;
1221
+ items: {
1222
+ type: string;
1223
+ ref: string;
1224
+ };
1225
+ };
1226
+ };
1227
+ };
1228
+ };
1229
+ };
1230
+ user: {
1231
+ type: string;
1232
+ required: string[];
1233
+ properties: {
1234
+ did: {
1235
+ type: string;
1236
+ };
1237
+ declaration: {
1238
+ type: string;
1239
+ ref: string;
1240
+ };
1241
+ handle: {
1242
+ type: string;
1243
+ };
1244
+ displayName: {
1245
+ type: string;
1246
+ maxLength: number;
1247
+ };
1248
+ avatar: {
1249
+ type: string;
1250
+ };
1251
+ description: {
1252
+ type: string;
1253
+ };
1254
+ indexedAt: {
1255
+ type: string;
1256
+ };
1257
+ };
1258
+ };
1259
+ };
1260
+ };
1261
+ AppBskyActorSearchTypeahead: {
1262
+ lexicon: number;
1263
+ id: string;
1264
+ defs: {
1265
+ main: {
1266
+ type: string;
1267
+ description: string;
1268
+ parameters: {
1269
+ type: string;
1270
+ required: string[];
1271
+ properties: {
1272
+ term: {
1273
+ type: string;
1274
+ };
1275
+ limit: {
1276
+ type: string;
1277
+ minimum: number;
1278
+ maximum: number;
1279
+ default: number;
1280
+ };
1281
+ };
1282
+ };
1283
+ output: {
1284
+ encoding: string;
1285
+ schema: {
1286
+ type: string;
1287
+ required: string[];
1288
+ properties: {
1289
+ users: {
1290
+ type: string;
1291
+ items: {
1292
+ type: string;
1293
+ ref: string;
1294
+ };
1295
+ };
1296
+ };
1297
+ };
1298
+ };
1299
+ };
1300
+ user: {
1301
+ type: string;
1302
+ required: string[];
1303
+ properties: {
1304
+ did: {
1305
+ type: string;
1306
+ };
1307
+ declaration: {
1308
+ type: string;
1309
+ ref: string;
1310
+ };
1311
+ handle: {
1312
+ type: string;
1313
+ };
1314
+ displayName: {
1315
+ type: string;
1316
+ maxLength: number;
1317
+ };
1318
+ avatar: {
1319
+ type: string;
1320
+ };
1321
+ };
1322
+ };
1323
+ };
1324
+ };
1325
+ AppBskyActorUpdateProfile: {
1326
+ lexicon: number;
1327
+ id: string;
1328
+ defs: {
1329
+ main: {
1330
+ type: string;
1331
+ description: string;
1332
+ input: {
1333
+ encoding: string;
1334
+ schema: {
1335
+ type: string;
1336
+ properties: {
1337
+ did: {
1338
+ type: string;
1339
+ };
1340
+ displayName: {
1341
+ type: string;
1342
+ maxLength: number;
1343
+ };
1344
+ description: {
1345
+ type: string;
1346
+ maxLength: number;
1347
+ };
1348
+ avatar: {
1349
+ type: string;
1350
+ accept: string[];
1351
+ maxWidth: number;
1352
+ maxHeight: number;
1353
+ maxSize: number;
1354
+ };
1355
+ banner: {
1356
+ type: string;
1357
+ accept: string[];
1358
+ maxWidth: number;
1359
+ maxHeight: number;
1360
+ maxSize: number;
1361
+ };
1362
+ };
1363
+ };
1364
+ };
1365
+ output: {
1366
+ encoding: string;
1367
+ schema: {
1368
+ type: string;
1369
+ required: string[];
1370
+ properties: {
1371
+ uri: {
1372
+ type: string;
1373
+ };
1374
+ cid: {
1375
+ type: string;
1376
+ };
1377
+ record: {
1378
+ type: string;
1379
+ };
1380
+ };
1381
+ };
1382
+ };
1383
+ errors: {
1384
+ name: string;
1385
+ }[];
1386
+ };
1387
+ };
1388
+ };
1389
+ AppBskyEmbedExternal: {
1390
+ lexicon: number;
1391
+ id: string;
1392
+ description: string;
1393
+ defs: {
1394
+ main: {
1395
+ type: string;
1396
+ required: string[];
1397
+ properties: {
1398
+ external: {
1399
+ type: string;
1400
+ ref: string;
1401
+ };
1402
+ };
1403
+ };
1404
+ external: {
1405
+ type: string;
1406
+ required: string[];
1407
+ properties: {
1408
+ uri: {
1409
+ type: string;
1410
+ };
1411
+ title: {
1412
+ type: string;
1413
+ };
1414
+ description: {
1415
+ type: string;
1416
+ };
1417
+ thumb: {
1418
+ type: string;
1419
+ accept: string[];
1420
+ maxWidth: number;
1421
+ maxHeight: number;
1422
+ maxSize: number;
1423
+ };
1424
+ };
1425
+ };
1426
+ presented: {
1427
+ type: string;
1428
+ required: string[];
1429
+ properties: {
1430
+ external: {
1431
+ type: string;
1432
+ ref: string;
1433
+ };
1434
+ };
1435
+ };
1436
+ presentedExternal: {
1437
+ type: string;
1438
+ required: string[];
1439
+ properties: {
1440
+ uri: {
1441
+ type: string;
1442
+ };
1443
+ title: {
1444
+ type: string;
1445
+ };
1446
+ description: {
1447
+ type: string;
1448
+ };
1449
+ thumb: {
1450
+ type: string;
1451
+ };
1452
+ };
1453
+ };
1454
+ };
1455
+ };
1456
+ AppBskyEmbedImages: {
1457
+ lexicon: number;
1458
+ id: string;
1459
+ description: string;
1460
+ defs: {
1461
+ main: {
1462
+ type: string;
1463
+ required: string[];
1464
+ properties: {
1465
+ images: {
1466
+ type: string;
1467
+ items: {
1468
+ type: string;
1469
+ ref: string;
1470
+ };
1471
+ maxLength: number;
1472
+ };
1473
+ };
1474
+ };
1475
+ image: {
1476
+ type: string;
1477
+ required: string[];
1478
+ properties: {
1479
+ image: {
1480
+ type: string;
1481
+ accept: string[];
1482
+ maxWidth: number;
1483
+ maxHeight: number;
1484
+ maxSize: number;
1485
+ };
1486
+ alt: {
1487
+ type: string;
1488
+ };
1489
+ };
1490
+ };
1491
+ presented: {
1492
+ type: string;
1493
+ required: string[];
1494
+ properties: {
1495
+ images: {
1496
+ type: string;
1497
+ items: {
1498
+ type: string;
1499
+ ref: string;
1500
+ };
1501
+ maxLength: number;
1502
+ };
1503
+ };
1504
+ };
1505
+ presentedImage: {
1506
+ type: string;
1507
+ required: string[];
1508
+ properties: {
1509
+ thumb: {
1510
+ type: string;
1511
+ };
1512
+ fullsize: {
1513
+ type: string;
1514
+ };
1515
+ alt: {
1516
+ type: string;
1517
+ };
1518
+ };
1519
+ };
1520
+ };
1521
+ };
1522
+ AppBskyFeedFeedViewPost: {
1523
+ lexicon: number;
1524
+ id: string;
1525
+ defs: {
1526
+ main: {
1527
+ type: string;
1528
+ required: string[];
1529
+ properties: {
1530
+ post: {
1531
+ type: string;
1532
+ ref: string;
1533
+ };
1534
+ reply: {
1535
+ type: string;
1536
+ ref: string;
1537
+ };
1538
+ reason: {
1539
+ type: string;
1540
+ refs: string[];
1541
+ };
1542
+ };
1543
+ };
1544
+ replyRef: {
1545
+ type: string;
1546
+ required: string[];
1547
+ properties: {
1548
+ root: {
1549
+ type: string;
1550
+ ref: string;
1551
+ };
1552
+ parent: {
1553
+ type: string;
1554
+ ref: string;
1555
+ };
1556
+ };
1557
+ };
1558
+ reasonTrend: {
1559
+ type: string;
1560
+ required: string[];
1561
+ properties: {
1562
+ by: {
1563
+ type: string;
1564
+ ref: string;
1565
+ };
1566
+ indexedAt: {
1567
+ type: string;
1568
+ };
1569
+ };
1570
+ };
1571
+ reasonRepost: {
1572
+ type: string;
1573
+ required: string[];
1574
+ properties: {
1575
+ by: {
1576
+ type: string;
1577
+ ref: string;
1578
+ };
1579
+ indexedAt: {
1580
+ type: string;
1581
+ };
1582
+ };
1583
+ };
1584
+ };
1585
+ };
1586
+ AppBskyFeedGetAuthorFeed: {
1587
+ lexicon: number;
1588
+ id: string;
1589
+ defs: {
1590
+ main: {
1591
+ type: string;
1592
+ description: string;
1593
+ parameters: {
1594
+ type: string;
1595
+ required: string[];
1596
+ properties: {
1597
+ author: {
1598
+ type: string;
1599
+ };
1600
+ limit: {
1601
+ type: string;
1602
+ minimum: number;
1603
+ maximum: number;
1604
+ default: number;
1605
+ };
1606
+ before: {
1607
+ type: string;
1608
+ };
1609
+ };
1610
+ };
1611
+ output: {
1612
+ encoding: string;
1613
+ schema: {
1614
+ type: string;
1615
+ required: string[];
1616
+ properties: {
1617
+ cursor: {
1618
+ type: string;
1619
+ };
1620
+ feed: {
1621
+ type: string;
1622
+ items: {
1623
+ type: string;
1624
+ ref: string;
1625
+ };
1626
+ };
1627
+ };
1628
+ };
1629
+ };
1630
+ };
1631
+ };
1632
+ };
1633
+ AppBskyFeedGetPostThread: {
1634
+ lexicon: number;
1635
+ id: string;
1636
+ defs: {
1637
+ main: {
1638
+ type: string;
1639
+ parameters: {
1640
+ type: string;
1641
+ required: string[];
1642
+ properties: {
1643
+ uri: {
1644
+ type: string;
1645
+ };
1646
+ depth: {
1647
+ type: string;
1648
+ };
1649
+ };
1650
+ };
1651
+ output: {
1652
+ encoding: string;
1653
+ schema: {
1654
+ type: string;
1655
+ required: string[];
1656
+ properties: {
1657
+ thread: {
1658
+ type: string;
1659
+ refs: string[];
1660
+ };
1661
+ };
1662
+ };
1663
+ };
1664
+ errors: {
1665
+ name: string;
1666
+ }[];
1667
+ };
1668
+ threadViewPost: {
1669
+ type: string;
1670
+ required: string[];
1671
+ properties: {
1672
+ post: {
1673
+ type: string;
1674
+ ref: string;
1675
+ };
1676
+ parent: {
1677
+ type: string;
1678
+ refs: string[];
1679
+ };
1680
+ replies: {
1681
+ type: string;
1682
+ items: {
1683
+ type: string;
1684
+ refs: string[];
1685
+ };
1686
+ };
1687
+ };
1688
+ };
1689
+ notFoundPost: {
1690
+ type: string;
1691
+ required: string[];
1692
+ properties: {
1693
+ uri: {
1694
+ type: string;
1695
+ };
1696
+ notFound: {
1697
+ type: string;
1698
+ const: boolean;
1699
+ };
1700
+ };
1701
+ };
1702
+ };
1703
+ };
1704
+ AppBskyFeedGetRepostedBy: {
1705
+ lexicon: number;
1706
+ id: string;
1707
+ defs: {
1708
+ main: {
1709
+ type: string;
1710
+ parameters: {
1711
+ type: string;
1712
+ required: string[];
1713
+ properties: {
1714
+ uri: {
1715
+ type: string;
1716
+ };
1717
+ cid: {
1718
+ type: string;
1719
+ };
1720
+ limit: {
1721
+ type: string;
1722
+ minimum: number;
1723
+ maximum: number;
1724
+ default: number;
1725
+ };
1726
+ before: {
1727
+ type: string;
1728
+ };
1729
+ };
1730
+ };
1731
+ output: {
1732
+ encoding: string;
1733
+ schema: {
1734
+ type: string;
1735
+ required: string[];
1736
+ properties: {
1737
+ uri: {
1738
+ type: string;
1739
+ };
1740
+ cid: {
1741
+ type: string;
1742
+ };
1743
+ cursor: {
1744
+ type: string;
1745
+ };
1746
+ repostedBy: {
1747
+ type: string;
1748
+ items: {
1749
+ type: string;
1750
+ ref: string;
1751
+ };
1752
+ };
1753
+ };
1754
+ };
1755
+ };
1756
+ };
1757
+ repostedBy: {
1758
+ type: string;
1759
+ required: string[];
1760
+ properties: {
1761
+ did: {
1762
+ type: string;
1763
+ };
1764
+ declaration: {
1765
+ type: string;
1766
+ ref: string;
1767
+ };
1768
+ handle: {
1769
+ type: string;
1770
+ };
1771
+ displayName: {
1772
+ type: string;
1773
+ maxLength: number;
1774
+ };
1775
+ avatar: {
1776
+ type: string;
1777
+ };
1778
+ createdAt: {
1779
+ type: string;
1780
+ };
1781
+ indexedAt: {
1782
+ type: string;
1783
+ };
1784
+ };
1785
+ };
1786
+ };
1787
+ };
1788
+ AppBskyFeedGetTimeline: {
1789
+ lexicon: number;
1790
+ id: string;
1791
+ defs: {
1792
+ main: {
1793
+ type: string;
1794
+ description: string;
1795
+ parameters: {
1796
+ type: string;
1797
+ properties: {
1798
+ algorithm: {
1799
+ type: string;
1800
+ };
1801
+ limit: {
1802
+ type: string;
1803
+ minimum: number;
1804
+ maximum: number;
1805
+ default: number;
1806
+ };
1807
+ before: {
1808
+ type: string;
1809
+ };
1810
+ };
1811
+ };
1812
+ output: {
1813
+ encoding: string;
1814
+ schema: {
1815
+ type: string;
1816
+ required: string[];
1817
+ properties: {
1818
+ cursor: {
1819
+ type: string;
1820
+ };
1821
+ feed: {
1822
+ type: string;
1823
+ items: {
1824
+ type: string;
1825
+ ref: string;
1826
+ };
1827
+ };
1828
+ };
1829
+ };
1830
+ };
1831
+ };
1832
+ };
1833
+ };
1834
+ AppBskyFeedGetVotes: {
1835
+ lexicon: number;
1836
+ id: string;
1837
+ defs: {
1838
+ main: {
1839
+ type: string;
1840
+ parameters: {
1841
+ type: string;
1842
+ required: string[];
1843
+ properties: {
1844
+ uri: {
1845
+ type: string;
1846
+ };
1847
+ cid: {
1848
+ type: string;
1849
+ };
1850
+ direction: {
1851
+ type: string;
1852
+ enum: string[];
1853
+ };
1854
+ limit: {
1855
+ type: string;
1856
+ minimum: number;
1857
+ maximum: number;
1858
+ default: number;
1859
+ };
1860
+ before: {
1861
+ type: string;
1862
+ };
1863
+ };
1864
+ };
1865
+ output: {
1866
+ encoding: string;
1867
+ schema: {
1868
+ type: string;
1869
+ required: string[];
1870
+ properties: {
1871
+ uri: {
1872
+ type: string;
1873
+ };
1874
+ cid: {
1875
+ type: string;
1876
+ };
1877
+ cursor: {
1878
+ type: string;
1879
+ };
1880
+ votes: {
1881
+ type: string;
1882
+ items: {
1883
+ type: string;
1884
+ ref: string;
1885
+ };
1886
+ };
1887
+ };
1888
+ };
1889
+ };
1890
+ };
1891
+ vote: {
1892
+ type: string;
1893
+ required: string[];
1894
+ properties: {
1895
+ direction: {
1896
+ type: string;
1897
+ enum: string[];
1898
+ };
1899
+ indexedAt: {
1900
+ type: string;
1901
+ };
1902
+ createdAt: {
1903
+ type: string;
1904
+ };
1905
+ actor: {
1906
+ type: string;
1907
+ ref: string;
1908
+ };
1909
+ };
1910
+ };
1911
+ };
1912
+ };
1913
+ AppBskyFeedPost: {
1914
+ lexicon: number;
1915
+ id: string;
1916
+ defs: {
1917
+ main: {
1918
+ type: string;
1919
+ key: string;
1920
+ record: {
1921
+ type: string;
1922
+ required: string[];
1923
+ properties: {
1924
+ text: {
1925
+ type: string;
1926
+ maxLength: number;
1927
+ };
1928
+ entities: {
1929
+ type: string;
1930
+ items: {
1931
+ type: string;
1932
+ ref: string;
1933
+ };
1934
+ };
1935
+ reply: {
1936
+ type: string;
1937
+ ref: string;
1938
+ };
1939
+ embed: {
1940
+ type: string;
1941
+ refs: string[];
1942
+ };
1943
+ createdAt: {
1944
+ type: string;
1945
+ };
1946
+ };
1947
+ };
1948
+ };
1949
+ replyRef: {
1950
+ type: string;
1951
+ required: string[];
1952
+ properties: {
1953
+ root: {
1954
+ type: string;
1955
+ ref: string;
1956
+ };
1957
+ parent: {
1958
+ type: string;
1959
+ ref: string;
1960
+ };
1961
+ };
1962
+ };
1963
+ entity: {
1964
+ type: string;
1965
+ required: string[];
1966
+ properties: {
1967
+ index: {
1968
+ type: string;
1969
+ ref: string;
1970
+ };
1971
+ type: {
1972
+ type: string;
1973
+ description: string;
1974
+ };
1975
+ value: {
1976
+ type: string;
1977
+ };
1978
+ };
1979
+ };
1980
+ textSlice: {
1981
+ type: string;
1982
+ description: string;
1983
+ required: string[];
1984
+ properties: {
1985
+ start: {
1986
+ type: string;
1987
+ minimum: number;
1988
+ };
1989
+ end: {
1990
+ type: string;
1991
+ minimum: number;
1992
+ };
1993
+ };
1994
+ };
1995
+ view: {
1996
+ type: string;
1997
+ required: string[];
1998
+ properties: {
1999
+ uri: {
2000
+ type: string;
2001
+ };
2002
+ cid: {
2003
+ type: string;
2004
+ };
2005
+ author: {
2006
+ type: string;
2007
+ ref: string;
2008
+ };
2009
+ record: {
2010
+ type: string;
2011
+ };
2012
+ embed: {
2013
+ type: string;
2014
+ refs: string[];
2015
+ };
2016
+ replyCount: {
2017
+ type: string;
2018
+ };
2019
+ repostCount: {
2020
+ type: string;
2021
+ };
2022
+ upvoteCount: {
2023
+ type: string;
2024
+ };
2025
+ downvoteCount: {
2026
+ type: string;
2027
+ };
2028
+ indexedAt: {
2029
+ type: string;
2030
+ };
2031
+ viewer: {
2032
+ type: string;
2033
+ ref: string;
2034
+ };
2035
+ };
2036
+ };
2037
+ viewerState: {
2038
+ type: string;
2039
+ properties: {
2040
+ repost: {
2041
+ type: string;
2042
+ };
2043
+ upvote: {
2044
+ type: string;
2045
+ };
2046
+ downvote: {
2047
+ type: string;
2048
+ };
2049
+ muted: {
2050
+ type: string;
2051
+ };
2052
+ };
2053
+ };
2054
+ };
2055
+ };
2056
+ AppBskyFeedRepost: {
2057
+ lexicon: number;
2058
+ id: string;
2059
+ defs: {
2060
+ main: {
2061
+ type: string;
2062
+ key: string;
2063
+ record: {
2064
+ type: string;
2065
+ required: string[];
2066
+ properties: {
2067
+ subject: {
2068
+ type: string;
2069
+ ref: string;
2070
+ };
2071
+ createdAt: {
2072
+ type: string;
2073
+ };
2074
+ };
2075
+ };
2076
+ };
2077
+ };
2078
+ };
2079
+ AppBskyFeedSetVote: {
2080
+ lexicon: number;
2081
+ id: string;
2082
+ defs: {
2083
+ main: {
2084
+ type: string;
2085
+ description: string;
2086
+ input: {
2087
+ encoding: string;
2088
+ schema: {
2089
+ type: string;
2090
+ required: string[];
2091
+ properties: {
2092
+ subject: {
2093
+ type: string;
2094
+ ref: string;
2095
+ };
2096
+ direction: {
2097
+ type: string;
2098
+ enum: string[];
2099
+ };
2100
+ };
2101
+ };
2102
+ };
2103
+ output: {
2104
+ encoding: string;
2105
+ schema: {
2106
+ type: string;
2107
+ properties: {
2108
+ upvote: {
2109
+ type: string;
2110
+ };
2111
+ downvote: {
2112
+ type: string;
2113
+ };
2114
+ };
2115
+ };
2116
+ };
2117
+ };
2118
+ };
2119
+ };
2120
+ AppBskyFeedTrend: {
2121
+ lexicon: number;
2122
+ id: string;
2123
+ defs: {
2124
+ main: {
2125
+ type: string;
2126
+ key: string;
2127
+ record: {
2128
+ type: string;
2129
+ required: string[];
2130
+ properties: {
2131
+ subject: {
2132
+ type: string;
2133
+ ref: string;
2134
+ };
2135
+ createdAt: {
2136
+ type: string;
2137
+ };
2138
+ };
2139
+ };
2140
+ };
2141
+ };
2142
+ };
2143
+ AppBskyFeedVote: {
2144
+ lexicon: number;
2145
+ id: string;
2146
+ defs: {
2147
+ main: {
2148
+ type: string;
2149
+ key: string;
2150
+ record: {
2151
+ type: string;
2152
+ required: string[];
2153
+ properties: {
2154
+ subject: {
2155
+ type: string;
2156
+ ref: string;
2157
+ };
2158
+ direction: {
2159
+ type: string;
2160
+ enum: string[];
2161
+ };
2162
+ createdAt: {
2163
+ type: string;
2164
+ };
2165
+ };
2166
+ };
2167
+ };
2168
+ };
2169
+ };
2170
+ AppBskyGraphAssertCreator: {
2171
+ lexicon: number;
2172
+ id: string;
2173
+ defs: {
2174
+ main: {
2175
+ type: string;
2176
+ description: string;
2177
+ };
2178
+ };
2179
+ };
2180
+ AppBskyGraphAssertMember: {
2181
+ lexicon: number;
2182
+ id: string;
2183
+ defs: {
2184
+ main: {
2185
+ type: string;
2186
+ description: string;
2187
+ };
2188
+ };
2189
+ };
2190
+ AppBskyGraphAssertion: {
2191
+ lexicon: number;
2192
+ id: string;
2193
+ defs: {
2194
+ main: {
2195
+ type: string;
2196
+ key: string;
2197
+ record: {
2198
+ type: string;
2199
+ required: string[];
2200
+ properties: {
2201
+ assertion: {
2202
+ type: string;
2203
+ };
2204
+ subject: {
2205
+ type: string;
2206
+ ref: string;
2207
+ };
2208
+ createdAt: {
2209
+ type: string;
2210
+ };
2211
+ };
2212
+ };
2213
+ };
2214
+ };
2215
+ };
2216
+ AppBskyGraphConfirmation: {
2217
+ lexicon: number;
2218
+ id: string;
2219
+ defs: {
2220
+ main: {
2221
+ type: string;
2222
+ key: string;
2223
+ record: {
2224
+ type: string;
2225
+ required: string[];
2226
+ properties: {
2227
+ originator: {
2228
+ type: string;
2229
+ ref: string;
2230
+ };
2231
+ assertion: {
2232
+ type: string;
2233
+ ref: string;
2234
+ };
2235
+ createdAt: {
2236
+ type: string;
2237
+ };
2238
+ };
2239
+ };
2240
+ };
2241
+ };
2242
+ };
2243
+ AppBskyGraphFollow: {
2244
+ lexicon: number;
2245
+ id: string;
2246
+ defs: {
2247
+ main: {
2248
+ type: string;
2249
+ description: string;
2250
+ key: string;
2251
+ record: {
2252
+ type: string;
2253
+ required: string[];
2254
+ properties: {
2255
+ subject: {
2256
+ type: string;
2257
+ ref: string;
2258
+ };
2259
+ createdAt: {
2260
+ type: string;
2261
+ };
2262
+ };
2263
+ };
2264
+ };
2265
+ };
2266
+ };
2267
+ AppBskyGraphGetAssertions: {
2268
+ lexicon: number;
2269
+ id: string;
2270
+ defs: {
2271
+ main: {
2272
+ type: string;
2273
+ description: string;
2274
+ parameters: {
2275
+ type: string;
2276
+ properties: {
2277
+ author: {
2278
+ type: string;
2279
+ };
2280
+ subject: {
2281
+ type: string;
2282
+ };
2283
+ assertion: {
2284
+ type: string;
2285
+ };
2286
+ confirmed: {
2287
+ type: string;
2288
+ };
2289
+ limit: {
2290
+ type: string;
2291
+ minimum: number;
2292
+ maximum: number;
2293
+ default: number;
2294
+ };
2295
+ before: {
2296
+ type: string;
2297
+ };
2298
+ };
2299
+ };
2300
+ output: {
2301
+ encoding: string;
2302
+ schema: {
2303
+ type: string;
2304
+ required: string[];
2305
+ properties: {
2306
+ cursor: {
2307
+ type: string;
2308
+ };
2309
+ assertions: {
2310
+ type: string;
2311
+ items: {
2312
+ type: string;
2313
+ ref: string;
2314
+ };
2315
+ };
2316
+ };
2317
+ };
2318
+ };
2319
+ };
2320
+ assertion: {
2321
+ type: string;
2322
+ required: string[];
2323
+ properties: {
2324
+ uri: {
2325
+ type: string;
2326
+ };
2327
+ cid: {
2328
+ type: string;
2329
+ };
2330
+ assertion: {
2331
+ type: string;
2332
+ };
2333
+ confirmation: {
2334
+ type: string;
2335
+ ref: string;
2336
+ };
2337
+ author: {
2338
+ type: string;
2339
+ ref: string;
2340
+ };
2341
+ subject: {
2342
+ type: string;
2343
+ ref: string;
2344
+ };
2345
+ indexedAt: {
2346
+ type: string;
2347
+ };
2348
+ createdAt: {
2349
+ type: string;
2350
+ };
2351
+ };
2352
+ };
2353
+ confirmation: {
2354
+ type: string;
2355
+ required: string[];
2356
+ properties: {
2357
+ uri: {
2358
+ type: string;
2359
+ };
2360
+ cid: {
2361
+ type: string;
2362
+ };
2363
+ indexedAt: {
2364
+ type: string;
2365
+ };
2366
+ createdAt: {
2367
+ type: string;
2368
+ };
2369
+ };
2370
+ };
2371
+ };
2372
+ };
2373
+ AppBskyGraphGetFollowers: {
2374
+ lexicon: number;
2375
+ id: string;
2376
+ defs: {
2377
+ main: {
2378
+ type: string;
2379
+ description: string;
2380
+ parameters: {
2381
+ type: string;
2382
+ required: string[];
2383
+ properties: {
2384
+ user: {
2385
+ type: string;
2386
+ };
2387
+ limit: {
2388
+ type: string;
2389
+ minimum: number;
2390
+ maximum: number;
2391
+ default: number;
2392
+ };
2393
+ before: {
2394
+ type: string;
2395
+ };
2396
+ };
2397
+ };
2398
+ output: {
2399
+ encoding: string;
2400
+ schema: {
2401
+ type: string;
2402
+ required: string[];
2403
+ properties: {
2404
+ subject: {
2405
+ type: string;
2406
+ ref: string;
2407
+ };
2408
+ cursor: {
2409
+ type: string;
2410
+ };
2411
+ followers: {
2412
+ type: string;
2413
+ items: {
2414
+ type: string;
2415
+ ref: string;
2416
+ };
2417
+ };
2418
+ };
2419
+ };
2420
+ };
2421
+ };
2422
+ follower: {
2423
+ type: string;
2424
+ required: string[];
2425
+ properties: {
2426
+ did: {
2427
+ type: string;
2428
+ };
2429
+ declaration: {
2430
+ type: string;
2431
+ ref: string;
2432
+ };
2433
+ handle: {
2434
+ type: string;
2435
+ };
2436
+ displayName: {
2437
+ type: string;
2438
+ maxLength: number;
2439
+ };
2440
+ avatar: {
2441
+ type: string;
2442
+ };
2443
+ createdAt: {
2444
+ type: string;
2445
+ };
2446
+ indexedAt: {
2447
+ type: string;
2448
+ };
2449
+ };
2450
+ };
2451
+ };
2452
+ };
2453
+ AppBskyGraphGetFollows: {
2454
+ lexicon: number;
2455
+ id: string;
2456
+ defs: {
2457
+ main: {
2458
+ type: string;
2459
+ description: string;
2460
+ parameters: {
2461
+ type: string;
2462
+ required: string[];
2463
+ properties: {
2464
+ user: {
2465
+ type: string;
2466
+ };
2467
+ limit: {
2468
+ type: string;
2469
+ minimum: number;
2470
+ maximum: number;
2471
+ default: number;
2472
+ };
2473
+ before: {
2474
+ type: string;
2475
+ };
2476
+ };
2477
+ };
2478
+ output: {
2479
+ encoding: string;
2480
+ schema: {
2481
+ type: string;
2482
+ required: string[];
2483
+ properties: {
2484
+ subject: {
2485
+ type: string;
2486
+ ref: string;
2487
+ };
2488
+ cursor: {
2489
+ type: string;
2490
+ };
2491
+ follows: {
2492
+ type: string;
2493
+ items: {
2494
+ type: string;
2495
+ ref: string;
2496
+ };
2497
+ };
2498
+ };
2499
+ };
2500
+ };
2501
+ };
2502
+ follow: {
2503
+ type: string;
2504
+ required: string[];
2505
+ properties: {
2506
+ did: {
2507
+ type: string;
2508
+ };
2509
+ declaration: {
2510
+ type: string;
2511
+ ref: string;
2512
+ };
2513
+ handle: {
2514
+ type: string;
2515
+ };
2516
+ displayName: {
2517
+ type: string;
2518
+ maxLength: number;
2519
+ };
2520
+ createdAt: {
2521
+ type: string;
2522
+ };
2523
+ indexedAt: {
2524
+ type: string;
2525
+ };
2526
+ };
2527
+ };
2528
+ };
2529
+ };
2530
+ AppBskyGraphGetMembers: {
2531
+ lexicon: number;
2532
+ id: string;
2533
+ defs: {
2534
+ main: {
2535
+ type: string;
2536
+ description: string;
2537
+ parameters: {
2538
+ type: string;
2539
+ required: string[];
2540
+ properties: {
2541
+ actor: {
2542
+ type: string;
2543
+ };
2544
+ limit: {
2545
+ type: string;
2546
+ minimum: number;
2547
+ maximum: number;
2548
+ default: number;
2549
+ };
2550
+ before: {
2551
+ type: string;
2552
+ };
2553
+ };
2554
+ };
2555
+ output: {
2556
+ encoding: string;
2557
+ schema: {
2558
+ type: string;
2559
+ required: string[];
2560
+ properties: {
2561
+ subject: {
2562
+ type: string;
2563
+ ref: string;
2564
+ };
2565
+ cursor: {
2566
+ type: string;
2567
+ };
2568
+ members: {
2569
+ type: string;
2570
+ items: {
2571
+ type: string;
2572
+ ref: string;
2573
+ };
2574
+ };
2575
+ };
2576
+ };
2577
+ };
2578
+ };
2579
+ member: {
2580
+ type: string;
2581
+ required: string[];
2582
+ properties: {
2583
+ did: {
2584
+ type: string;
2585
+ };
2586
+ declaration: {
2587
+ type: string;
2588
+ ref: string;
2589
+ };
2590
+ handle: {
2591
+ type: string;
2592
+ };
2593
+ displayName: {
2594
+ type: string;
2595
+ maxLength: number;
2596
+ };
2597
+ createdAt: {
2598
+ type: string;
2599
+ };
2600
+ indexedAt: {
2601
+ type: string;
2602
+ };
2603
+ };
2604
+ };
2605
+ };
2606
+ };
2607
+ AppBskyGraphGetMemberships: {
2608
+ lexicon: number;
2609
+ id: string;
2610
+ defs: {
2611
+ main: {
2612
+ type: string;
2613
+ description: string;
2614
+ parameters: {
2615
+ type: string;
2616
+ required: string[];
2617
+ properties: {
2618
+ actor: {
2619
+ type: string;
2620
+ };
2621
+ limit: {
2622
+ type: string;
2623
+ minimum: number;
2624
+ maximum: number;
2625
+ default: number;
2626
+ };
2627
+ before: {
2628
+ type: string;
2629
+ };
2630
+ };
2631
+ };
2632
+ output: {
2633
+ encoding: string;
2634
+ schema: {
2635
+ type: string;
2636
+ required: string[];
2637
+ properties: {
2638
+ subject: {
2639
+ type: string;
2640
+ ref: string;
2641
+ };
2642
+ cursor: {
2643
+ type: string;
2644
+ };
2645
+ memberships: {
2646
+ type: string;
2647
+ items: {
2648
+ type: string;
2649
+ ref: string;
2650
+ };
2651
+ };
2652
+ };
2653
+ };
2654
+ };
2655
+ };
2656
+ membership: {
2657
+ type: string;
2658
+ required: string[];
2659
+ properties: {
2660
+ did: {
2661
+ type: string;
2662
+ };
2663
+ declaration: {
2664
+ type: string;
2665
+ ref: string;
2666
+ };
2667
+ handle: {
2668
+ type: string;
2669
+ };
2670
+ displayName: {
2671
+ type: string;
2672
+ maxLength: number;
2673
+ };
2674
+ createdAt: {
2675
+ type: string;
2676
+ };
2677
+ indexedAt: {
2678
+ type: string;
2679
+ };
2680
+ };
2681
+ };
2682
+ };
2683
+ };
2684
+ AppBskyGraphGetMutes: {
2685
+ lexicon: number;
2686
+ id: string;
2687
+ defs: {
2688
+ main: {
2689
+ type: string;
2690
+ description: string;
2691
+ parameters: {
2692
+ type: string;
2693
+ properties: {
2694
+ limit: {
2695
+ type: string;
2696
+ minimum: number;
2697
+ maximum: number;
2698
+ default: number;
2699
+ };
2700
+ before: {
2701
+ type: string;
2702
+ };
2703
+ };
2704
+ };
2705
+ output: {
2706
+ encoding: string;
2707
+ schema: {
2708
+ type: string;
2709
+ required: string[];
2710
+ properties: {
2711
+ cursor: {
2712
+ type: string;
2713
+ };
2714
+ mutes: {
2715
+ type: string;
2716
+ items: {
2717
+ type: string;
2718
+ ref: string;
2719
+ };
2720
+ };
2721
+ };
2722
+ };
2723
+ };
2724
+ };
2725
+ mute: {
2726
+ type: string;
2727
+ required: string[];
2728
+ properties: {
2729
+ did: {
2730
+ type: string;
2731
+ };
2732
+ declaration: {
2733
+ type: string;
2734
+ ref: string;
2735
+ };
2736
+ handle: {
2737
+ type: string;
2738
+ };
2739
+ displayName: {
2740
+ type: string;
2741
+ maxLength: number;
2742
+ };
2743
+ createdAt: {
2744
+ type: string;
2745
+ };
2746
+ };
2747
+ };
2748
+ };
2749
+ };
2750
+ AppBskyGraphMute: {
2751
+ lexicon: number;
2752
+ id: string;
2753
+ defs: {
2754
+ main: {
2755
+ type: string;
2756
+ description: string;
2757
+ input: {
2758
+ encoding: string;
2759
+ schema: {
2760
+ type: string;
2761
+ required: string[];
2762
+ properties: {
2763
+ user: {
2764
+ type: string;
2765
+ };
2766
+ };
2767
+ };
2768
+ };
2769
+ };
2770
+ };
2771
+ };
2772
+ AppBskyGraphUnmute: {
2773
+ lexicon: number;
2774
+ id: string;
2775
+ defs: {
2776
+ main: {
2777
+ type: string;
2778
+ description: string;
2779
+ input: {
2780
+ encoding: string;
2781
+ schema: {
2782
+ type: string;
2783
+ required: string[];
2784
+ properties: {
2785
+ user: {
2786
+ type: string;
2787
+ };
2788
+ };
2789
+ };
2790
+ };
2791
+ };
2792
+ };
2793
+ };
2794
+ AppBskyNotificationGetCount: {
2795
+ lexicon: number;
2796
+ id: string;
2797
+ defs: {
2798
+ main: {
2799
+ type: string;
2800
+ output: {
2801
+ encoding: string;
2802
+ schema: {
2803
+ type: string;
2804
+ required: string[];
2805
+ properties: {
2806
+ count: {
2807
+ type: string;
2808
+ };
2809
+ };
2810
+ };
2811
+ };
2812
+ };
2813
+ };
2814
+ };
2815
+ AppBskyNotificationList: {
2816
+ lexicon: number;
2817
+ id: string;
2818
+ defs: {
2819
+ main: {
2820
+ type: string;
2821
+ parameters: {
2822
+ type: string;
2823
+ properties: {
2824
+ limit: {
2825
+ type: string;
2826
+ minimum: number;
2827
+ maximum: number;
2828
+ default: number;
2829
+ };
2830
+ before: {
2831
+ type: string;
2832
+ };
2833
+ };
2834
+ };
2835
+ output: {
2836
+ encoding: string;
2837
+ schema: {
2838
+ type: string;
2839
+ required: string[];
2840
+ properties: {
2841
+ cursor: {
2842
+ type: string;
2843
+ };
2844
+ notifications: {
2845
+ type: string;
2846
+ items: {
2847
+ type: string;
2848
+ ref: string;
2849
+ };
2850
+ };
2851
+ };
2852
+ };
2853
+ };
2854
+ };
2855
+ notification: {
2856
+ type: string;
2857
+ required: string[];
2858
+ properties: {
2859
+ uri: {
2860
+ type: string;
2861
+ };
2862
+ cid: {
2863
+ type: string;
2864
+ };
2865
+ author: {
2866
+ type: string;
2867
+ ref: string;
2868
+ };
2869
+ reason: {
2870
+ type: string;
2871
+ description: string;
2872
+ knownValues: string[];
2873
+ };
2874
+ reasonSubject: {
2875
+ type: string;
2876
+ };
2877
+ record: {
2878
+ type: string;
2879
+ };
2880
+ isRead: {
2881
+ type: string;
2882
+ };
2883
+ indexedAt: {
2884
+ type: string;
2885
+ };
2886
+ };
2887
+ };
2888
+ };
2889
+ };
2890
+ AppBskyNotificationUpdateSeen: {
2891
+ lexicon: number;
2892
+ id: string;
2893
+ defs: {
2894
+ main: {
2895
+ type: string;
2896
+ description: string;
2897
+ input: {
2898
+ encoding: string;
2899
+ schema: {
2900
+ type: string;
2901
+ required: string[];
2902
+ properties: {
2903
+ seenAt: {
2904
+ type: string;
2905
+ };
2906
+ };
2907
+ };
2908
+ };
2909
+ };
2910
+ };
2911
+ };
2912
+ AppBskySystemActorScene: {
2913
+ lexicon: number;
2914
+ id: string;
2915
+ defs: {
2916
+ main: {
2917
+ type: string;
2918
+ description: string;
2919
+ };
2920
+ };
2921
+ };
2922
+ AppBskySystemActorUser: {
2923
+ lexicon: number;
2924
+ id: string;
2925
+ defs: {
2926
+ main: {
2927
+ type: string;
2928
+ description: string;
2929
+ };
2930
+ };
2931
+ };
2932
+ AppBskySystemDeclRef: {
2933
+ lexicon: number;
2934
+ id: string;
2935
+ defs: {
2936
+ main: {
2937
+ description: string;
2938
+ type: string;
2939
+ required: string[];
2940
+ properties: {
2941
+ cid: {
2942
+ type: string;
2943
+ };
2944
+ actorType: {
2945
+ type: string;
2946
+ knownValues: string[];
2947
+ };
2948
+ };
2949
+ };
2950
+ };
2951
+ };
2952
+ AppBskySystemDeclaration: {
2953
+ lexicon: number;
2954
+ id: string;
2955
+ defs: {
2956
+ main: {
2957
+ description: string;
2958
+ type: string;
2959
+ key: string;
2960
+ record: {
2961
+ type: string;
2962
+ required: string[];
2963
+ properties: {
2964
+ actorType: {
2965
+ type: string;
2966
+ knownValues: string[];
2967
+ };
2968
+ };
2969
+ };
2970
+ };
2971
+ };
2972
+ };
2973
+ };
2974
+ export declare const schemas: LexiconDoc[];
2975
+ export declare const lexicons: Lexicons;
2976
+ export declare const ids: {
2977
+ ComAtprotoAccountCreate: string;
2978
+ ComAtprotoAccountCreateInviteCode: string;
2979
+ ComAtprotoAccountDelete: string;
2980
+ ComAtprotoAccountGet: string;
2981
+ ComAtprotoAccountRequestPasswordReset: string;
2982
+ ComAtprotoAccountResetPassword: string;
2983
+ ComAtprotoBlobUpload: string;
2984
+ ComAtprotoHandleResolve: string;
2985
+ ComAtprotoRepoBatchWrite: string;
2986
+ ComAtprotoRepoCreateRecord: string;
2987
+ ComAtprotoRepoDeleteRecord: string;
2988
+ ComAtprotoRepoDescribe: string;
2989
+ ComAtprotoRepoGetRecord: string;
2990
+ ComAtprotoRepoListRecords: string;
2991
+ ComAtprotoRepoPutRecord: string;
2992
+ ComAtprotoRepoStrongRef: string;
2993
+ ComAtprotoServerGetAccountsConfig: string;
2994
+ ComAtprotoSessionCreate: string;
2995
+ ComAtprotoSessionDelete: string;
2996
+ ComAtprotoSessionGet: string;
2997
+ ComAtprotoSessionRefresh: string;
2998
+ ComAtprotoSyncGetRepo: string;
2999
+ ComAtprotoSyncGetRoot: string;
3000
+ ComAtprotoSyncUpdateRepo: string;
3001
+ AppBskyActorCreateScene: string;
3002
+ AppBskyActorGetProfile: string;
3003
+ AppBskyActorGetSuggestions: string;
3004
+ AppBskyActorProfile: string;
3005
+ AppBskyActorRef: string;
3006
+ AppBskyActorSearch: string;
3007
+ AppBskyActorSearchTypeahead: string;
3008
+ AppBskyActorUpdateProfile: string;
3009
+ AppBskyEmbedExternal: string;
3010
+ AppBskyEmbedImages: string;
3011
+ AppBskyFeedFeedViewPost: string;
3012
+ AppBskyFeedGetAuthorFeed: string;
3013
+ AppBskyFeedGetPostThread: string;
3014
+ AppBskyFeedGetRepostedBy: string;
3015
+ AppBskyFeedGetTimeline: string;
3016
+ AppBskyFeedGetVotes: string;
3017
+ AppBskyFeedPost: string;
3018
+ AppBskyFeedRepost: string;
3019
+ AppBskyFeedSetVote: string;
3020
+ AppBskyFeedTrend: string;
3021
+ AppBskyFeedVote: string;
3022
+ AppBskyGraphAssertCreator: string;
3023
+ AppBskyGraphAssertMember: string;
3024
+ AppBskyGraphAssertion: string;
3025
+ AppBskyGraphConfirmation: string;
3026
+ AppBskyGraphFollow: string;
3027
+ AppBskyGraphGetAssertions: string;
3028
+ AppBskyGraphGetFollowers: string;
3029
+ AppBskyGraphGetFollows: string;
3030
+ AppBskyGraphGetMembers: string;
3031
+ AppBskyGraphGetMemberships: string;
3032
+ AppBskyGraphGetMutes: string;
3033
+ AppBskyGraphMute: string;
3034
+ AppBskyGraphUnmute: string;
3035
+ AppBskyNotificationGetCount: string;
3036
+ AppBskyNotificationList: string;
3037
+ AppBskyNotificationUpdateSeen: string;
3038
+ AppBskySystemActorScene: string;
3039
+ AppBskySystemActorUser: string;
3040
+ AppBskySystemDeclRef: string;
3041
+ AppBskySystemDeclaration: string;
3042
+ };