@atproto/pds 0.4.163 → 0.4.165

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 (39) hide show
  1. package/CHANGELOG.md +18 -0
  2. package/dist/lexicon/index.d.ts +9 -0
  3. package/dist/lexicon/index.d.ts.map +1 -1
  4. package/dist/lexicon/index.js +15 -0
  5. package/dist/lexicon/index.js.map +1 -1
  6. package/dist/lexicon/lexicons.d.ts +456 -0
  7. package/dist/lexicon/lexicons.d.ts.map +1 -1
  8. package/dist/lexicon/lexicons.js +262 -0
  9. package/dist/lexicon/lexicons.js.map +1 -1
  10. package/dist/lexicon/types/app/bsky/graph/getLists.d.ts +2 -0
  11. package/dist/lexicon/types/app/bsky/graph/getLists.d.ts.map +1 -1
  12. package/dist/lexicon/types/app/bsky/graph/getListsWithMembership.d.ts +40 -0
  13. package/dist/lexicon/types/app/bsky/graph/getListsWithMembership.d.ts.map +1 -0
  14. package/dist/lexicon/types/app/bsky/graph/getListsWithMembership.js +16 -0
  15. package/dist/lexicon/types/app/bsky/graph/getListsWithMembership.js.map +1 -0
  16. package/dist/lexicon/types/app/bsky/graph/getStarterPacksWithMembership.d.ts +38 -0
  17. package/dist/lexicon/types/app/bsky/graph/getStarterPacksWithMembership.d.ts.map +1 -0
  18. package/dist/lexicon/types/app/bsky/graph/getStarterPacksWithMembership.js +16 -0
  19. package/dist/lexicon/types/app/bsky/graph/getStarterPacksWithMembership.js.map +1 -0
  20. package/dist/lexicon/types/tools/ozone/moderation/defs.d.ts +6 -0
  21. package/dist/lexicon/types/tools/ozone/moderation/defs.d.ts.map +1 -1
  22. package/dist/lexicon/types/tools/ozone/moderation/defs.js +7 -1
  23. package/dist/lexicon/types/tools/ozone/moderation/defs.js.map +1 -1
  24. package/dist/lexicon/types/tools/ozone/moderation/getAccountTimeline.d.ts +41 -0
  25. package/dist/lexicon/types/tools/ozone/moderation/getAccountTimeline.d.ts.map +1 -0
  26. package/dist/lexicon/types/tools/ozone/moderation/getAccountTimeline.js +25 -0
  27. package/dist/lexicon/types/tools/ozone/moderation/getAccountTimeline.js.map +1 -0
  28. package/dist/pipethrough.js +1 -0
  29. package/dist/pipethrough.js.map +1 -1
  30. package/package.json +7 -7
  31. package/src/lexicon/index.ts +45 -0
  32. package/src/lexicon/lexicons.ts +274 -0
  33. package/src/lexicon/types/app/bsky/graph/getLists.ts +2 -0
  34. package/src/lexicon/types/app/bsky/graph/getListsWithMembership.ts +63 -0
  35. package/src/lexicon/types/app/bsky/graph/getStarterPacksWithMembership.ts +65 -0
  36. package/src/lexicon/types/tools/ozone/moderation/defs.ts +7 -0
  37. package/src/lexicon/types/tools/ozone/moderation/getAccountTimeline.ts +102 -0
  38. package/src/pipethrough.ts +1 -0
  39. package/tsconfig.build.tsbuildinfo +1 -1
@@ -8279,6 +8279,14 @@ export declare const schemaDict: {
8279
8279
  readonly cursor: {
8280
8280
  readonly type: "string";
8281
8281
  };
8282
+ readonly purposes: {
8283
+ readonly type: "array";
8284
+ readonly description: "Optional filter by list purpose. If not specified, all supported types are returned.";
8285
+ readonly items: {
8286
+ readonly type: "string";
8287
+ readonly knownValues: ["modlist", "curatelist"];
8288
+ };
8289
+ };
8282
8290
  };
8283
8291
  };
8284
8292
  readonly output: {
@@ -8303,6 +8311,78 @@ export declare const schemaDict: {
8303
8311
  };
8304
8312
  };
8305
8313
  };
8314
+ readonly AppBskyGraphGetListsWithMembership: {
8315
+ readonly lexicon: 1;
8316
+ readonly id: "app.bsky.graph.getListsWithMembership";
8317
+ readonly defs: {
8318
+ readonly main: {
8319
+ readonly type: "query";
8320
+ readonly description: "Enumerates the lists created by the session user, and includes membership information about `actor` in those lists. Only supports curation and moderation lists (no reference lists, used in starter packs). Requires auth.";
8321
+ readonly parameters: {
8322
+ readonly type: "params";
8323
+ readonly required: ["actor"];
8324
+ readonly properties: {
8325
+ readonly actor: {
8326
+ readonly type: "string";
8327
+ readonly format: "at-identifier";
8328
+ readonly description: "The account (actor) to check for membership.";
8329
+ };
8330
+ readonly limit: {
8331
+ readonly type: "integer";
8332
+ readonly minimum: 1;
8333
+ readonly maximum: 100;
8334
+ readonly default: 50;
8335
+ };
8336
+ readonly cursor: {
8337
+ readonly type: "string";
8338
+ };
8339
+ readonly purposes: {
8340
+ readonly type: "array";
8341
+ readonly description: "Optional filter by list purpose. If not specified, all supported types are returned.";
8342
+ readonly items: {
8343
+ readonly type: "string";
8344
+ readonly knownValues: ["modlist", "curatelist"];
8345
+ };
8346
+ };
8347
+ };
8348
+ };
8349
+ readonly output: {
8350
+ readonly encoding: "application/json";
8351
+ readonly schema: {
8352
+ readonly type: "object";
8353
+ readonly required: ["listsWithMembership"];
8354
+ readonly properties: {
8355
+ readonly cursor: {
8356
+ readonly type: "string";
8357
+ };
8358
+ readonly listsWithMembership: {
8359
+ readonly type: "array";
8360
+ readonly items: {
8361
+ readonly type: "ref";
8362
+ readonly ref: "lex:app.bsky.graph.getListsWithMembership#listWithMembership";
8363
+ };
8364
+ };
8365
+ };
8366
+ };
8367
+ };
8368
+ };
8369
+ readonly listWithMembership: {
8370
+ readonly description: "A list and an optional list item indicating membership of a target user to that list.";
8371
+ readonly type: "object";
8372
+ readonly required: ["list"];
8373
+ readonly properties: {
8374
+ readonly list: {
8375
+ readonly type: "ref";
8376
+ readonly ref: "lex:app.bsky.graph.defs#listView";
8377
+ };
8378
+ readonly listItem: {
8379
+ readonly type: "ref";
8380
+ readonly ref: "lex:app.bsky.graph.defs#listItemView";
8381
+ };
8382
+ };
8383
+ };
8384
+ };
8385
+ };
8306
8386
  readonly AppBskyGraphGetMutes: {
8307
8387
  readonly lexicon: 1;
8308
8388
  readonly id: "app.bsky.graph.getMutes";
@@ -8474,6 +8554,70 @@ export declare const schemaDict: {
8474
8554
  };
8475
8555
  };
8476
8556
  };
8557
+ readonly AppBskyGraphGetStarterPacksWithMembership: {
8558
+ readonly lexicon: 1;
8559
+ readonly id: "app.bsky.graph.getStarterPacksWithMembership";
8560
+ readonly defs: {
8561
+ readonly main: {
8562
+ readonly type: "query";
8563
+ readonly description: "Enumerates the starter packs created by the session user, and includes membership information about `actor` in those starter packs. Requires auth.";
8564
+ readonly parameters: {
8565
+ readonly type: "params";
8566
+ readonly required: ["actor"];
8567
+ readonly properties: {
8568
+ readonly actor: {
8569
+ readonly type: "string";
8570
+ readonly format: "at-identifier";
8571
+ readonly description: "The account (actor) to check for membership.";
8572
+ };
8573
+ readonly limit: {
8574
+ readonly type: "integer";
8575
+ readonly minimum: 1;
8576
+ readonly maximum: 100;
8577
+ readonly default: 50;
8578
+ };
8579
+ readonly cursor: {
8580
+ readonly type: "string";
8581
+ };
8582
+ };
8583
+ };
8584
+ readonly output: {
8585
+ readonly encoding: "application/json";
8586
+ readonly schema: {
8587
+ readonly type: "object";
8588
+ readonly required: ["starterPacksWithMembership"];
8589
+ readonly properties: {
8590
+ readonly cursor: {
8591
+ readonly type: "string";
8592
+ };
8593
+ readonly starterPacksWithMembership: {
8594
+ readonly type: "array";
8595
+ readonly items: {
8596
+ readonly type: "ref";
8597
+ readonly ref: "lex:app.bsky.graph.getStarterPacksWithMembership#starterPackWithMembership";
8598
+ };
8599
+ };
8600
+ };
8601
+ };
8602
+ };
8603
+ };
8604
+ readonly starterPackWithMembership: {
8605
+ readonly description: "A starter pack and an optional list item indicating membership of a target user to that starter pack.";
8606
+ readonly type: "object";
8607
+ readonly required: ["starterPack"];
8608
+ readonly properties: {
8609
+ readonly starterPack: {
8610
+ readonly type: "ref";
8611
+ readonly ref: "lex:app.bsky.graph.defs#starterPackView";
8612
+ };
8613
+ readonly listItem: {
8614
+ readonly type: "ref";
8615
+ readonly ref: "lex:app.bsky.graph.defs#listItemView";
8616
+ };
8617
+ };
8618
+ };
8619
+ };
8620
+ };
8477
8621
  readonly AppBskyGraphGetSuggestedFollowsByActor: {
8478
8622
  readonly lexicon: 1;
8479
8623
  readonly id: "app.bsky.graph.getSuggestedFollowsByActor";
@@ -13869,6 +14013,18 @@ export declare const schemaDict: {
13869
14013
  };
13870
14014
  };
13871
14015
  };
14016
+ readonly timelineEventPlcCreate: {
14017
+ readonly type: "token";
14018
+ readonly description: "Moderation event timeline event for a PLC create operation";
14019
+ };
14020
+ readonly timelineEventPlcOperation: {
14021
+ readonly type: "token";
14022
+ readonly description: "Moderation event timeline event for generic PLC operation";
14023
+ };
14024
+ readonly timelineEventPlcTombstone: {
14025
+ readonly type: "token";
14026
+ readonly description: "Moderation event timeline event for a PLC tombstone operation";
14027
+ };
13872
14028
  };
13873
14029
  };
13874
14030
  readonly ToolsOzoneModerationEmitEvent: {
@@ -13930,6 +14086,78 @@ export declare const schemaDict: {
13930
14086
  };
13931
14087
  };
13932
14088
  };
14089
+ readonly ToolsOzoneModerationGetAccountTimeline: {
14090
+ readonly lexicon: 1;
14091
+ readonly id: "tools.ozone.moderation.getAccountTimeline";
14092
+ readonly defs: {
14093
+ readonly main: {
14094
+ readonly type: "query";
14095
+ readonly description: "Get timeline of all available events of an account. This includes moderation events, account history and did history.";
14096
+ readonly parameters: {
14097
+ readonly type: "params";
14098
+ readonly required: ["did"];
14099
+ readonly properties: {
14100
+ readonly did: {
14101
+ readonly type: "string";
14102
+ readonly format: "did";
14103
+ };
14104
+ };
14105
+ };
14106
+ readonly output: {
14107
+ readonly encoding: "application/json";
14108
+ readonly schema: {
14109
+ readonly type: "object";
14110
+ readonly required: ["timeline"];
14111
+ readonly properties: {
14112
+ readonly timeline: {
14113
+ readonly type: "array";
14114
+ readonly items: {
14115
+ readonly type: "ref";
14116
+ readonly ref: "lex:tools.ozone.moderation.getAccountTimeline#timelineItem";
14117
+ };
14118
+ };
14119
+ };
14120
+ };
14121
+ };
14122
+ readonly errors: [{
14123
+ readonly name: "RepoNotFound";
14124
+ }];
14125
+ };
14126
+ readonly timelineItem: {
14127
+ readonly type: "object";
14128
+ readonly required: ["day", "summary"];
14129
+ readonly properties: {
14130
+ readonly day: {
14131
+ readonly type: "string";
14132
+ };
14133
+ readonly summary: {
14134
+ readonly type: "array";
14135
+ readonly items: {
14136
+ readonly type: "ref";
14137
+ readonly ref: "lex:tools.ozone.moderation.getAccountTimeline#timelineItemSummary";
14138
+ };
14139
+ };
14140
+ };
14141
+ };
14142
+ readonly timelineItemSummary: {
14143
+ readonly type: "object";
14144
+ readonly required: ["eventSubjectType", "eventType", "count"];
14145
+ readonly properties: {
14146
+ readonly eventSubjectType: {
14147
+ readonly type: "string";
14148
+ readonly knownValues: ["account", "record", "chat"];
14149
+ };
14150
+ readonly eventType: {
14151
+ readonly type: "string";
14152
+ readonly knownValues: ["tools.ozone.moderation.defs#modEventTakedown", "tools.ozone.moderation.defs#modEventReverseTakedown", "tools.ozone.moderation.defs#modEventComment", "tools.ozone.moderation.defs#modEventReport", "tools.ozone.moderation.defs#modEventLabel", "tools.ozone.moderation.defs#modEventAcknowledge", "tools.ozone.moderation.defs#modEventEscalate", "tools.ozone.moderation.defs#modEventMute", "tools.ozone.moderation.defs#modEventUnmute", "tools.ozone.moderation.defs#modEventMuteReporter", "tools.ozone.moderation.defs#modEventUnmuteReporter", "tools.ozone.moderation.defs#modEventEmail", "tools.ozone.moderation.defs#modEventResolveAppeal", "tools.ozone.moderation.defs#modEventDivert", "tools.ozone.moderation.defs#modEventTag", "tools.ozone.moderation.defs#accountEvent", "tools.ozone.moderation.defs#identityEvent", "tools.ozone.moderation.defs#recordEvent", "tools.ozone.moderation.defs#modEventPriorityScore", "tools.ozone.moderation.defs#ageAssuranceEvent", "tools.ozone.moderation.defs#ageAssuranceOverrideEvent", "tools.ozone.moderation.defs#timelineEventPlcCreate", "tools.ozone.moderation.defs#timelineEventPlcOperation", "tools.ozone.moderation.defs#timelineEventPlcTombstone", "tools.ozone.hosting.getAccountHistory#accountCreated", "tools.ozone.hosting.getAccountHistory#emailConfirmed", "tools.ozone.hosting.getAccountHistory#passwordUpdated", "tools.ozone.hosting.getAccountHistory#handleUpdated"];
14153
+ };
14154
+ readonly count: {
14155
+ readonly type: "integer";
14156
+ };
14157
+ };
14158
+ };
14159
+ };
14160
+ };
13933
14161
  readonly ToolsOzoneModerationGetEvent: {
13934
14162
  readonly lexicon: 1;
13935
14163
  readonly id: "tools.ozone.moderation.getEvent";
@@ -24402,6 +24630,14 @@ export declare const schemas: ({
24402
24630
  readonly cursor: {
24403
24631
  readonly type: "string";
24404
24632
  };
24633
+ readonly purposes: {
24634
+ readonly type: "array";
24635
+ readonly description: "Optional filter by list purpose. If not specified, all supported types are returned.";
24636
+ readonly items: {
24637
+ readonly type: "string";
24638
+ readonly knownValues: ["modlist", "curatelist"];
24639
+ };
24640
+ };
24405
24641
  };
24406
24642
  };
24407
24643
  readonly output: {
@@ -24425,6 +24661,77 @@ export declare const schemas: ({
24425
24661
  };
24426
24662
  };
24427
24663
  };
24664
+ } | {
24665
+ readonly lexicon: 1;
24666
+ readonly id: "app.bsky.graph.getListsWithMembership";
24667
+ readonly defs: {
24668
+ readonly main: {
24669
+ readonly type: "query";
24670
+ readonly description: "Enumerates the lists created by the session user, and includes membership information about `actor` in those lists. Only supports curation and moderation lists (no reference lists, used in starter packs). Requires auth.";
24671
+ readonly parameters: {
24672
+ readonly type: "params";
24673
+ readonly required: ["actor"];
24674
+ readonly properties: {
24675
+ readonly actor: {
24676
+ readonly type: "string";
24677
+ readonly format: "at-identifier";
24678
+ readonly description: "The account (actor) to check for membership.";
24679
+ };
24680
+ readonly limit: {
24681
+ readonly type: "integer";
24682
+ readonly minimum: 1;
24683
+ readonly maximum: 100;
24684
+ readonly default: 50;
24685
+ };
24686
+ readonly cursor: {
24687
+ readonly type: "string";
24688
+ };
24689
+ readonly purposes: {
24690
+ readonly type: "array";
24691
+ readonly description: "Optional filter by list purpose. If not specified, all supported types are returned.";
24692
+ readonly items: {
24693
+ readonly type: "string";
24694
+ readonly knownValues: ["modlist", "curatelist"];
24695
+ };
24696
+ };
24697
+ };
24698
+ };
24699
+ readonly output: {
24700
+ readonly encoding: "application/json";
24701
+ readonly schema: {
24702
+ readonly type: "object";
24703
+ readonly required: ["listsWithMembership"];
24704
+ readonly properties: {
24705
+ readonly cursor: {
24706
+ readonly type: "string";
24707
+ };
24708
+ readonly listsWithMembership: {
24709
+ readonly type: "array";
24710
+ readonly items: {
24711
+ readonly type: "ref";
24712
+ readonly ref: "lex:app.bsky.graph.getListsWithMembership#listWithMembership";
24713
+ };
24714
+ };
24715
+ };
24716
+ };
24717
+ };
24718
+ };
24719
+ readonly listWithMembership: {
24720
+ readonly description: "A list and an optional list item indicating membership of a target user to that list.";
24721
+ readonly type: "object";
24722
+ readonly required: ["list"];
24723
+ readonly properties: {
24724
+ readonly list: {
24725
+ readonly type: "ref";
24726
+ readonly ref: "lex:app.bsky.graph.defs#listView";
24727
+ };
24728
+ readonly listItem: {
24729
+ readonly type: "ref";
24730
+ readonly ref: "lex:app.bsky.graph.defs#listItemView";
24731
+ };
24732
+ };
24733
+ };
24734
+ };
24428
24735
  } | {
24429
24736
  readonly lexicon: 1;
24430
24737
  readonly id: "app.bsky.graph.getMutes";
@@ -24592,6 +24899,69 @@ export declare const schemas: ({
24592
24899
  };
24593
24900
  };
24594
24901
  };
24902
+ } | {
24903
+ readonly lexicon: 1;
24904
+ readonly id: "app.bsky.graph.getStarterPacksWithMembership";
24905
+ readonly defs: {
24906
+ readonly main: {
24907
+ readonly type: "query";
24908
+ readonly description: "Enumerates the starter packs created by the session user, and includes membership information about `actor` in those starter packs. Requires auth.";
24909
+ readonly parameters: {
24910
+ readonly type: "params";
24911
+ readonly required: ["actor"];
24912
+ readonly properties: {
24913
+ readonly actor: {
24914
+ readonly type: "string";
24915
+ readonly format: "at-identifier";
24916
+ readonly description: "The account (actor) to check for membership.";
24917
+ };
24918
+ readonly limit: {
24919
+ readonly type: "integer";
24920
+ readonly minimum: 1;
24921
+ readonly maximum: 100;
24922
+ readonly default: 50;
24923
+ };
24924
+ readonly cursor: {
24925
+ readonly type: "string";
24926
+ };
24927
+ };
24928
+ };
24929
+ readonly output: {
24930
+ readonly encoding: "application/json";
24931
+ readonly schema: {
24932
+ readonly type: "object";
24933
+ readonly required: ["starterPacksWithMembership"];
24934
+ readonly properties: {
24935
+ readonly cursor: {
24936
+ readonly type: "string";
24937
+ };
24938
+ readonly starterPacksWithMembership: {
24939
+ readonly type: "array";
24940
+ readonly items: {
24941
+ readonly type: "ref";
24942
+ readonly ref: "lex:app.bsky.graph.getStarterPacksWithMembership#starterPackWithMembership";
24943
+ };
24944
+ };
24945
+ };
24946
+ };
24947
+ };
24948
+ };
24949
+ readonly starterPackWithMembership: {
24950
+ readonly description: "A starter pack and an optional list item indicating membership of a target user to that starter pack.";
24951
+ readonly type: "object";
24952
+ readonly required: ["starterPack"];
24953
+ readonly properties: {
24954
+ readonly starterPack: {
24955
+ readonly type: "ref";
24956
+ readonly ref: "lex:app.bsky.graph.defs#starterPackView";
24957
+ };
24958
+ readonly listItem: {
24959
+ readonly type: "ref";
24960
+ readonly ref: "lex:app.bsky.graph.defs#listItemView";
24961
+ };
24962
+ };
24963
+ };
24964
+ };
24595
24965
  } | {
24596
24966
  readonly lexicon: 1;
24597
24967
  readonly id: "app.bsky.graph.getSuggestedFollowsByActor";
@@ -29902,6 +30272,18 @@ export declare const schemas: ({
29902
30272
  };
29903
30273
  };
29904
30274
  };
30275
+ readonly timelineEventPlcCreate: {
30276
+ readonly type: "token";
30277
+ readonly description: "Moderation event timeline event for a PLC create operation";
30278
+ };
30279
+ readonly timelineEventPlcOperation: {
30280
+ readonly type: "token";
30281
+ readonly description: "Moderation event timeline event for generic PLC operation";
30282
+ };
30283
+ readonly timelineEventPlcTombstone: {
30284
+ readonly type: "token";
30285
+ readonly description: "Moderation event timeline event for a PLC tombstone operation";
30286
+ };
29905
30287
  };
29906
30288
  } | {
29907
30289
  readonly lexicon: 1;
@@ -29961,6 +30343,77 @@ export declare const schemas: ({
29961
30343
  }];
29962
30344
  };
29963
30345
  };
30346
+ } | {
30347
+ readonly lexicon: 1;
30348
+ readonly id: "tools.ozone.moderation.getAccountTimeline";
30349
+ readonly defs: {
30350
+ readonly main: {
30351
+ readonly type: "query";
30352
+ readonly description: "Get timeline of all available events of an account. This includes moderation events, account history and did history.";
30353
+ readonly parameters: {
30354
+ readonly type: "params";
30355
+ readonly required: ["did"];
30356
+ readonly properties: {
30357
+ readonly did: {
30358
+ readonly type: "string";
30359
+ readonly format: "did";
30360
+ };
30361
+ };
30362
+ };
30363
+ readonly output: {
30364
+ readonly encoding: "application/json";
30365
+ readonly schema: {
30366
+ readonly type: "object";
30367
+ readonly required: ["timeline"];
30368
+ readonly properties: {
30369
+ readonly timeline: {
30370
+ readonly type: "array";
30371
+ readonly items: {
30372
+ readonly type: "ref";
30373
+ readonly ref: "lex:tools.ozone.moderation.getAccountTimeline#timelineItem";
30374
+ };
30375
+ };
30376
+ };
30377
+ };
30378
+ };
30379
+ readonly errors: [{
30380
+ readonly name: "RepoNotFound";
30381
+ }];
30382
+ };
30383
+ readonly timelineItem: {
30384
+ readonly type: "object";
30385
+ readonly required: ["day", "summary"];
30386
+ readonly properties: {
30387
+ readonly day: {
30388
+ readonly type: "string";
30389
+ };
30390
+ readonly summary: {
30391
+ readonly type: "array";
30392
+ readonly items: {
30393
+ readonly type: "ref";
30394
+ readonly ref: "lex:tools.ozone.moderation.getAccountTimeline#timelineItemSummary";
30395
+ };
30396
+ };
30397
+ };
30398
+ };
30399
+ readonly timelineItemSummary: {
30400
+ readonly type: "object";
30401
+ readonly required: ["eventSubjectType", "eventType", "count"];
30402
+ readonly properties: {
30403
+ readonly eventSubjectType: {
30404
+ readonly type: "string";
30405
+ readonly knownValues: ["account", "record", "chat"];
30406
+ };
30407
+ readonly eventType: {
30408
+ readonly type: "string";
30409
+ readonly knownValues: ["tools.ozone.moderation.defs#modEventTakedown", "tools.ozone.moderation.defs#modEventReverseTakedown", "tools.ozone.moderation.defs#modEventComment", "tools.ozone.moderation.defs#modEventReport", "tools.ozone.moderation.defs#modEventLabel", "tools.ozone.moderation.defs#modEventAcknowledge", "tools.ozone.moderation.defs#modEventEscalate", "tools.ozone.moderation.defs#modEventMute", "tools.ozone.moderation.defs#modEventUnmute", "tools.ozone.moderation.defs#modEventMuteReporter", "tools.ozone.moderation.defs#modEventUnmuteReporter", "tools.ozone.moderation.defs#modEventEmail", "tools.ozone.moderation.defs#modEventResolveAppeal", "tools.ozone.moderation.defs#modEventDivert", "tools.ozone.moderation.defs#modEventTag", "tools.ozone.moderation.defs#accountEvent", "tools.ozone.moderation.defs#identityEvent", "tools.ozone.moderation.defs#recordEvent", "tools.ozone.moderation.defs#modEventPriorityScore", "tools.ozone.moderation.defs#ageAssuranceEvent", "tools.ozone.moderation.defs#ageAssuranceOverrideEvent", "tools.ozone.moderation.defs#timelineEventPlcCreate", "tools.ozone.moderation.defs#timelineEventPlcOperation", "tools.ozone.moderation.defs#timelineEventPlcTombstone", "tools.ozone.hosting.getAccountHistory#accountCreated", "tools.ozone.hosting.getAccountHistory#emailConfirmed", "tools.ozone.hosting.getAccountHistory#passwordUpdated", "tools.ozone.hosting.getAccountHistory#handleUpdated"];
30410
+ };
30411
+ readonly count: {
30412
+ readonly type: "integer";
30413
+ };
30414
+ };
30415
+ };
30416
+ };
29964
30417
  } | {
29965
30418
  readonly lexicon: 1;
29966
30419
  readonly id: "tools.ozone.moderation.getEvent";
@@ -32413,10 +32866,12 @@ export declare const ids: {
32413
32866
  readonly AppBskyGraphGetListBlocks: "app.bsky.graph.getListBlocks";
32414
32867
  readonly AppBskyGraphGetListMutes: "app.bsky.graph.getListMutes";
32415
32868
  readonly AppBskyGraphGetLists: "app.bsky.graph.getLists";
32869
+ readonly AppBskyGraphGetListsWithMembership: "app.bsky.graph.getListsWithMembership";
32416
32870
  readonly AppBskyGraphGetMutes: "app.bsky.graph.getMutes";
32417
32871
  readonly AppBskyGraphGetRelationships: "app.bsky.graph.getRelationships";
32418
32872
  readonly AppBskyGraphGetStarterPack: "app.bsky.graph.getStarterPack";
32419
32873
  readonly AppBskyGraphGetStarterPacks: "app.bsky.graph.getStarterPacks";
32874
+ readonly AppBskyGraphGetStarterPacksWithMembership: "app.bsky.graph.getStarterPacksWithMembership";
32420
32875
  readonly AppBskyGraphGetSuggestedFollowsByActor: "app.bsky.graph.getSuggestedFollowsByActor";
32421
32876
  readonly AppBskyGraphList: "app.bsky.graph.list";
32422
32877
  readonly AppBskyGraphListblock: "app.bsky.graph.listblock";
@@ -32504,6 +32959,7 @@ export declare const ids: {
32504
32959
  readonly ToolsOzoneHostingGetAccountHistory: "tools.ozone.hosting.getAccountHistory";
32505
32960
  readonly ToolsOzoneModerationDefs: "tools.ozone.moderation.defs";
32506
32961
  readonly ToolsOzoneModerationEmitEvent: "tools.ozone.moderation.emitEvent";
32962
+ readonly ToolsOzoneModerationGetAccountTimeline: "tools.ozone.moderation.getAccountTimeline";
32507
32963
  readonly ToolsOzoneModerationGetEvent: "tools.ozone.moderation.getEvent";
32508
32964
  readonly ToolsOzoneModerationGetRecord: "tools.ozone.moderation.getRecord";
32509
32965
  readonly ToolsOzoneModerationGetRecords: "tools.ozone.moderation.getRecords";