@atproto/pds 0.4.13 → 0.4.14

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 (61) hide show
  1. package/CHANGELOG.md +7 -0
  2. package/dist/actor-store/migrate.d.ts.map +1 -1
  3. package/dist/api/proxy.d.ts.map +1 -1
  4. package/dist/auth-verifier.d.ts.map +1 -1
  5. package/dist/db/pagination.d.ts +4 -4
  6. package/dist/db/pagination.d.ts.map +1 -1
  7. package/dist/db/util.d.ts.map +1 -1
  8. package/dist/handle/index.js +1 -1
  9. package/dist/handle/index.js.map +1 -1
  10. package/dist/lexicon/index.d.ts +16 -0
  11. package/dist/lexicon/index.d.ts.map +1 -1
  12. package/dist/lexicon/index.js +19 -1
  13. package/dist/lexicon/index.js.map +1 -1
  14. package/dist/lexicon/lexicons.d.ts +230 -0
  15. package/dist/lexicon/lexicons.d.ts.map +1 -1
  16. package/dist/lexicon/lexicons.js +243 -0
  17. package/dist/lexicon/lexicons.js.map +1 -1
  18. package/dist/lexicon/types/app/bsky/embed/record.d.ts +3 -0
  19. package/dist/lexicon/types/app/bsky/embed/record.d.ts.map +1 -1
  20. package/dist/lexicon/types/app/bsky/embed/record.js.map +1 -1
  21. package/dist/lexicon/types/app/bsky/feed/defs.d.ts +38 -0
  22. package/dist/lexicon/types/app/bsky/feed/defs.d.ts.map +1 -1
  23. package/dist/lexicon/types/app/bsky/feed/defs.js +35 -1
  24. package/dist/lexicon/types/app/bsky/feed/defs.js.map +1 -1
  25. package/dist/lexicon/types/app/bsky/feed/generator.d.ts +2 -0
  26. package/dist/lexicon/types/app/bsky/feed/generator.d.ts.map +1 -1
  27. package/dist/lexicon/types/app/bsky/feed/generator.js.map +1 -1
  28. package/dist/lexicon/types/app/bsky/feed/searchPosts.d.ts +18 -0
  29. package/dist/lexicon/types/app/bsky/feed/searchPosts.d.ts.map +1 -1
  30. package/dist/lexicon/types/app/bsky/feed/sendInteractions.d.ts +40 -0
  31. package/dist/lexicon/types/app/bsky/feed/sendInteractions.d.ts.map +1 -0
  32. package/dist/lexicon/types/app/bsky/feed/sendInteractions.js +3 -0
  33. package/dist/lexicon/types/app/bsky/feed/sendInteractions.js.map +1 -0
  34. package/dist/lexicon/types/app/bsky/unspecced/searchActorsSkeleton.d.ts +2 -0
  35. package/dist/lexicon/types/app/bsky/unspecced/searchActorsSkeleton.d.ts.map +1 -1
  36. package/dist/lexicon/types/app/bsky/unspecced/searchPostsSkeleton.d.ts +20 -0
  37. package/dist/lexicon/types/app/bsky/unspecced/searchPostsSkeleton.d.ts.map +1 -1
  38. package/dist/pipethrough.d.ts.map +1 -1
  39. package/dist/read-after-write/util.d.ts +2 -10
  40. package/dist/read-after-write/util.d.ts.map +1 -1
  41. package/dist/read-after-write/viewer.d.ts.map +1 -1
  42. package/dist/read-after-write/viewer.js +8 -11
  43. package/dist/read-after-write/viewer.js.map +1 -1
  44. package/dist/redis.d.ts.map +1 -1
  45. package/dist/util/debug.d.ts.map +1 -1
  46. package/package.json +4 -4
  47. package/src/handle/index.ts +1 -1
  48. package/src/lexicon/index.ts +26 -0
  49. package/src/lexicon/lexicons.ts +269 -0
  50. package/src/lexicon/types/app/bsky/embed/record.ts +3 -0
  51. package/src/lexicon/types/app/bsky/feed/defs.ts +63 -0
  52. package/src/lexicon/types/app/bsky/feed/generator.ts +2 -0
  53. package/src/lexicon/types/app/bsky/feed/searchPosts.ts +18 -0
  54. package/src/lexicon/types/app/bsky/feed/sendInteractions.ts +49 -0
  55. package/src/lexicon/types/app/bsky/unspecced/searchActorsSkeleton.ts +2 -0
  56. package/src/lexicon/types/app/bsky/unspecced/searchPostsSkeleton.ts +20 -0
  57. package/src/read-after-write/viewer.ts +8 -11
  58. package/tests/handle-validation.test.ts +28 -0
  59. package/tests/proxied/__snapshots__/feedgen.test.ts.snap +3 -0
  60. package/tests/proxied/__snapshots__/views.test.ts.snap +30 -0
  61. package/tests/seeds/users-bulk.ts +5 -5
@@ -4224,6 +4224,15 @@ export declare const schemaDict: {
4224
4224
  ref: string;
4225
4225
  };
4226
4226
  };
4227
+ replyCount: {
4228
+ type: string;
4229
+ };
4230
+ repostCount: {
4231
+ type: string;
4232
+ };
4233
+ likeCount: {
4234
+ type: string;
4235
+ };
4227
4236
  embeds: {
4228
4237
  type: string;
4229
4238
  items: {
@@ -4396,6 +4405,11 @@ export declare const schemaDict: {
4396
4405
  type: string;
4397
4406
  refs: string[];
4398
4407
  };
4408
+ feedContext: {
4409
+ type: string;
4410
+ description: string;
4411
+ maxLength: number;
4412
+ };
4399
4413
  };
4400
4414
  };
4401
4415
  replyRef: {
@@ -4536,6 +4550,9 @@ export declare const schemaDict: {
4536
4550
  type: string;
4537
4551
  minimum: number;
4538
4552
  };
4553
+ acceptsInteractions: {
4554
+ type: string;
4555
+ };
4539
4556
  labels: {
4540
4557
  type: string;
4541
4558
  items: {
@@ -4574,6 +4591,11 @@ export declare const schemaDict: {
4574
4591
  type: string;
4575
4592
  refs: string[];
4576
4593
  };
4594
+ feedContext: {
4595
+ type: string;
4596
+ description: string;
4597
+ maxLength: number;
4598
+ };
4577
4599
  };
4578
4600
  };
4579
4601
  skeletonReasonRepost: {
@@ -4609,6 +4631,72 @@ export declare const schemaDict: {
4609
4631
  };
4610
4632
  };
4611
4633
  };
4634
+ interaction: {
4635
+ type: string;
4636
+ properties: {
4637
+ item: {
4638
+ type: string;
4639
+ format: string;
4640
+ };
4641
+ event: {
4642
+ type: string;
4643
+ knownValues: string[];
4644
+ };
4645
+ feedContext: {
4646
+ type: string;
4647
+ description: string;
4648
+ maxLength: number;
4649
+ };
4650
+ };
4651
+ };
4652
+ requestLess: {
4653
+ type: string;
4654
+ description: string;
4655
+ };
4656
+ requestMore: {
4657
+ type: string;
4658
+ description: string;
4659
+ };
4660
+ clickthroughItem: {
4661
+ type: string;
4662
+ description: string;
4663
+ };
4664
+ clickthroughAuthor: {
4665
+ type: string;
4666
+ description: string;
4667
+ };
4668
+ clickthroughReposter: {
4669
+ type: string;
4670
+ description: string;
4671
+ };
4672
+ clickthroughEmbed: {
4673
+ type: string;
4674
+ description: string;
4675
+ };
4676
+ interactionSeen: {
4677
+ type: string;
4678
+ description: string;
4679
+ };
4680
+ interactionLike: {
4681
+ type: string;
4682
+ description: string;
4683
+ };
4684
+ interactionRepost: {
4685
+ type: string;
4686
+ description: string;
4687
+ };
4688
+ interactionReply: {
4689
+ type: string;
4690
+ description: string;
4691
+ };
4692
+ interactionQuote: {
4693
+ type: string;
4694
+ description: string;
4695
+ };
4696
+ interactionShare: {
4697
+ type: string;
4698
+ description: string;
4699
+ };
4612
4700
  };
4613
4701
  };
4614
4702
  AppBskyFeedDescribeFeedGenerator: {
@@ -4704,6 +4792,10 @@ export declare const schemaDict: {
4704
4792
  accept: string[];
4705
4793
  maxSize: number;
4706
4794
  };
4795
+ acceptsInteractions: {
4796
+ type: string;
4797
+ description: string;
4798
+ };
4707
4799
  labels: {
4708
4800
  type: string;
4709
4801
  description: string;
@@ -5622,6 +5714,53 @@ export declare const schemaDict: {
5622
5714
  type: string;
5623
5715
  description: string;
5624
5716
  };
5717
+ sort: {
5718
+ type: string;
5719
+ knownValues: string[];
5720
+ default: string;
5721
+ description: string;
5722
+ };
5723
+ since: {
5724
+ type: string;
5725
+ description: string;
5726
+ };
5727
+ until: {
5728
+ type: string;
5729
+ description: string;
5730
+ };
5731
+ mentions: {
5732
+ type: string;
5733
+ format: string;
5734
+ description: string;
5735
+ };
5736
+ author: {
5737
+ type: string;
5738
+ format: string;
5739
+ description: string;
5740
+ };
5741
+ lang: {
5742
+ type: string;
5743
+ format: string;
5744
+ description: string;
5745
+ };
5746
+ domain: {
5747
+ type: string;
5748
+ description: string;
5749
+ };
5750
+ url: {
5751
+ type: string;
5752
+ format: string;
5753
+ description: string;
5754
+ };
5755
+ tag: {
5756
+ type: string;
5757
+ items: {
5758
+ type: string;
5759
+ maxLength: number;
5760
+ maxGraphemes: number;
5761
+ };
5762
+ description: string;
5763
+ };
5625
5764
  limit: {
5626
5765
  type: string;
5627
5766
  minimum: number;
@@ -5663,6 +5802,39 @@ export declare const schemaDict: {
5663
5802
  };
5664
5803
  };
5665
5804
  };
5805
+ AppBskyFeedSendInteractions: {
5806
+ lexicon: number;
5807
+ id: string;
5808
+ defs: {
5809
+ main: {
5810
+ type: string;
5811
+ description: string;
5812
+ input: {
5813
+ encoding: string;
5814
+ schema: {
5815
+ type: string;
5816
+ required: string[];
5817
+ properties: {
5818
+ interactions: {
5819
+ type: string;
5820
+ items: {
5821
+ type: string;
5822
+ ref: string;
5823
+ };
5824
+ };
5825
+ };
5826
+ };
5827
+ };
5828
+ output: {
5829
+ encoding: string;
5830
+ schema: {
5831
+ type: string;
5832
+ properties: {};
5833
+ };
5834
+ };
5835
+ };
5836
+ };
5837
+ };
5666
5838
  AppBskyFeedThreadgate: {
5667
5839
  lexicon: number;
5668
5840
  id: string;
@@ -7195,6 +7367,11 @@ export declare const schemaDict: {
7195
7367
  type: string;
7196
7368
  description: string;
7197
7369
  };
7370
+ viewer: {
7371
+ type: string;
7372
+ format: string;
7373
+ description: string;
7374
+ };
7198
7375
  typeahead: {
7199
7376
  type: string;
7200
7377
  description: string;
@@ -7255,6 +7432,58 @@ export declare const schemaDict: {
7255
7432
  type: string;
7256
7433
  description: string;
7257
7434
  };
7435
+ sort: {
7436
+ type: string;
7437
+ knownValues: string[];
7438
+ default: string;
7439
+ description: string;
7440
+ };
7441
+ since: {
7442
+ type: string;
7443
+ description: string;
7444
+ };
7445
+ until: {
7446
+ type: string;
7447
+ description: string;
7448
+ };
7449
+ mentions: {
7450
+ type: string;
7451
+ format: string;
7452
+ description: string;
7453
+ };
7454
+ author: {
7455
+ type: string;
7456
+ format: string;
7457
+ description: string;
7458
+ };
7459
+ lang: {
7460
+ type: string;
7461
+ format: string;
7462
+ description: string;
7463
+ };
7464
+ domain: {
7465
+ type: string;
7466
+ description: string;
7467
+ };
7468
+ url: {
7469
+ type: string;
7470
+ format: string;
7471
+ description: string;
7472
+ };
7473
+ tag: {
7474
+ type: string;
7475
+ items: {
7476
+ type: string;
7477
+ maxLength: number;
7478
+ maxGraphemes: number;
7479
+ };
7480
+ description: string;
7481
+ };
7482
+ viewer: {
7483
+ type: string;
7484
+ format: string;
7485
+ description: string;
7486
+ };
7258
7487
  limit: {
7259
7488
  type: string;
7260
7489
  minimum: number;
@@ -8647,6 +8876,7 @@ export declare const ids: {
8647
8876
  AppBskyFeedPost: string;
8648
8877
  AppBskyFeedRepost: string;
8649
8878
  AppBskyFeedSearchPosts: string;
8879
+ AppBskyFeedSendInteractions: string;
8650
8880
  AppBskyFeedThreadgate: string;
8651
8881
  AppBskyGraphBlock: string;
8652
8882
  AppBskyGraphDefs: string;
@@ -1 +1 @@
1
- {"version":3,"file":"lexicons.d.ts","sourceRoot":"","sources":["../../src/lexicon/lexicons.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,EAAE,UAAU,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAA;AAEvD,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAs+RtB,CAAA;AACD,eAAO,MAAM,OAAO,EAAE,UAAU,EAA8C,CAAA;AAC9E,eAAO,MAAM,QAAQ,EAAE,QAAgC,CAAA;AACvD,eAAO,MAAM,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAkLf,CAAA"}
1
+ {"version":3,"file":"lexicons.d.ts","sourceRoot":"","sources":["../../src/lexicon/lexicons.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,EAAE,UAAU,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAA;AAEvD,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAkvStB,CAAA;AACD,eAAO,MAAM,OAAO,EAAE,UAAU,EAA8C,CAAA;AAC9E,eAAO,MAAM,QAAQ,EAAE,QAAgC,CAAA;AACvD,eAAO,MAAM,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAmLf,CAAA"}
@@ -4413,6 +4413,15 @@ exports.schemaDict = {
4413
4413
  ref: 'lex:com.atproto.label.defs#label',
4414
4414
  },
4415
4415
  },
4416
+ replyCount: {
4417
+ type: 'integer',
4418
+ },
4419
+ repostCount: {
4420
+ type: 'integer',
4421
+ },
4422
+ likeCount: {
4423
+ type: 'integer',
4424
+ },
4416
4425
  embeds: {
4417
4426
  type: 'array',
4418
4427
  items: {
@@ -4598,6 +4607,11 @@ exports.schemaDict = {
4598
4607
  type: 'union',
4599
4608
  refs: ['lex:app.bsky.feed.defs#reasonRepost'],
4600
4609
  },
4610
+ feedContext: {
4611
+ type: 'string',
4612
+ description: 'Context provided by feed generator that may be passed back alongside interactions.',
4613
+ maxLength: 2000,
4614
+ },
4601
4615
  },
4602
4616
  },
4603
4617
  replyRef: {
@@ -4754,6 +4768,9 @@ exports.schemaDict = {
4754
4768
  type: 'integer',
4755
4769
  minimum: 0,
4756
4770
  },
4771
+ acceptsInteractions: {
4772
+ type: 'boolean',
4773
+ },
4757
4774
  labels: {
4758
4775
  type: 'array',
4759
4776
  items: {
@@ -4792,6 +4809,11 @@ exports.schemaDict = {
4792
4809
  type: 'union',
4793
4810
  refs: ['lex:app.bsky.feed.defs#skeletonReasonRepost'],
4794
4811
  },
4812
+ feedContext: {
4813
+ type: 'string',
4814
+ description: 'Context that will be passed through to client and may be passed to feed generator back alongside interactions.',
4815
+ maxLength: 2000,
4816
+ },
4795
4817
  },
4796
4818
  },
4797
4819
  skeletonReasonRepost: {
@@ -4827,6 +4849,85 @@ exports.schemaDict = {
4827
4849
  },
4828
4850
  },
4829
4851
  },
4852
+ interaction: {
4853
+ type: 'object',
4854
+ properties: {
4855
+ item: {
4856
+ type: 'string',
4857
+ format: 'at-uri',
4858
+ },
4859
+ event: {
4860
+ type: 'string',
4861
+ knownValues: [
4862
+ 'app.bsky.feed.defs#requestLess',
4863
+ 'app.bsky.feed.defs#requestMore',
4864
+ 'app.bsky.feed.defs#clickthroughItem',
4865
+ 'app.bsky.feed.defs#clickthroughAuthor',
4866
+ 'app.bsky.feed.defs#clickthroughReposter',
4867
+ 'app.bsky.feed.defs#clickthroughEmbed',
4868
+ 'app.bsky.feed.defs#interactionSeen',
4869
+ 'app.bsky.feed.defs#interactionLike',
4870
+ 'app.bsky.feed.defs#interactionRepost',
4871
+ 'app.bsky.feed.defs#interactionReply',
4872
+ 'app.bsky.feed.defs#interactionQuote',
4873
+ 'app.bsky.feed.defs#interactionShare',
4874
+ ],
4875
+ },
4876
+ feedContext: {
4877
+ type: 'string',
4878
+ description: 'Context on a feed item that was orginally supplied by the feed generator on getFeedSkeleton.',
4879
+ maxLength: 2000,
4880
+ },
4881
+ },
4882
+ },
4883
+ requestLess: {
4884
+ type: 'token',
4885
+ description: 'Request that less content like the given feed item be shown in the feed',
4886
+ },
4887
+ requestMore: {
4888
+ type: 'token',
4889
+ description: 'Request that more content like the given feed item be shown in the feed',
4890
+ },
4891
+ clickthroughItem: {
4892
+ type: 'token',
4893
+ description: 'User clicked through to the feed item',
4894
+ },
4895
+ clickthroughAuthor: {
4896
+ type: 'token',
4897
+ description: 'User clicked through to the author of the feed item',
4898
+ },
4899
+ clickthroughReposter: {
4900
+ type: 'token',
4901
+ description: 'User clicked through to the reposter of the feed item',
4902
+ },
4903
+ clickthroughEmbed: {
4904
+ type: 'token',
4905
+ description: 'User clicked through to the embedded content of the feed item',
4906
+ },
4907
+ interactionSeen: {
4908
+ type: 'token',
4909
+ description: 'Feed item was seen by user',
4910
+ },
4911
+ interactionLike: {
4912
+ type: 'token',
4913
+ description: 'User liked the feed item',
4914
+ },
4915
+ interactionRepost: {
4916
+ type: 'token',
4917
+ description: 'User reposted the feed item',
4918
+ },
4919
+ interactionReply: {
4920
+ type: 'token',
4921
+ description: 'User replied to the feed item',
4922
+ },
4923
+ interactionQuote: {
4924
+ type: 'token',
4925
+ description: 'User quoted the feed item',
4926
+ },
4927
+ interactionShare: {
4928
+ type: 'token',
4929
+ description: 'User shared the feed item',
4930
+ },
4830
4931
  },
4831
4932
  },
4832
4933
  AppBskyFeedDescribeFeedGenerator: {
@@ -4922,6 +5023,10 @@ exports.schemaDict = {
4922
5023
  accept: ['image/png', 'image/jpeg'],
4923
5024
  maxSize: 1000000,
4924
5025
  },
5026
+ acceptsInteractions: {
5027
+ type: 'boolean',
5028
+ description: 'Declaration that a feed accepts feedback interactions from a client through app.bsky.feed.sendInteractions',
5029
+ },
4925
5030
  labels: {
4926
5031
  type: 'union',
4927
5032
  description: 'Self-label values',
@@ -5872,6 +5977,53 @@ exports.schemaDict = {
5872
5977
  type: 'string',
5873
5978
  description: 'Search query string; syntax, phrase, boolean, and faceting is unspecified, but Lucene query syntax is recommended.',
5874
5979
  },
5980
+ sort: {
5981
+ type: 'string',
5982
+ knownValues: ['top', 'latest'],
5983
+ default: 'latest',
5984
+ description: 'Specifies the ranking order of results.',
5985
+ },
5986
+ since: {
5987
+ type: 'string',
5988
+ description: "Filter results for posts after the indicated datetime (inclusive). Expected to use 'sortAt' timestamp, which may not match 'createdAt'. Can be a datetime, or just an ISO date (YYYY-MM-DD).",
5989
+ },
5990
+ until: {
5991
+ type: 'string',
5992
+ description: "Filter results for posts before the indicated datetime (not inclusive). Expected to use 'sortAt' timestamp, which may not match 'createdAt'. Can be a datetime, or just an ISO date (YYY-MM-DD).",
5993
+ },
5994
+ mentions: {
5995
+ type: 'string',
5996
+ format: 'at-identifier',
5997
+ description: 'Filter to posts which mention the given account. Handles are resolved to DID before query-time. Only matches rich-text facet mentions.',
5998
+ },
5999
+ author: {
6000
+ type: 'string',
6001
+ format: 'at-identifier',
6002
+ description: 'Filter to posts by the given account. Handles are resolved to DID before query-time.',
6003
+ },
6004
+ lang: {
6005
+ type: 'string',
6006
+ format: 'language',
6007
+ description: 'Filter to posts in the given language. Expected to be based on post language field, though server may override language detection.',
6008
+ },
6009
+ domain: {
6010
+ type: 'string',
6011
+ description: 'Filter to posts with URLs (facet links or embeds) linking to the given domain (hostname). Server may apply hostname normalization.',
6012
+ },
6013
+ url: {
6014
+ type: 'string',
6015
+ format: 'uri',
6016
+ description: 'Filter to posts with links (facet links or embeds) pointing to this URL. Server may apply URL normalization or fuzzy matching.',
6017
+ },
6018
+ tag: {
6019
+ type: 'array',
6020
+ items: {
6021
+ type: 'string',
6022
+ maxLength: 640,
6023
+ maxGraphemes: 64,
6024
+ },
6025
+ description: "Filter to posts with the given tag (hashtag), based on rich-text facet or tag field. Do not include the hash (#) prefix. Multiple tags can be specified, with 'AND' matching.",
6026
+ },
5875
6027
  limit: {
5876
6028
  type: 'integer',
5877
6029
  minimum: 1,
@@ -5915,6 +6067,39 @@ exports.schemaDict = {
5915
6067
  },
5916
6068
  },
5917
6069
  },
6070
+ AppBskyFeedSendInteractions: {
6071
+ lexicon: 1,
6072
+ id: 'app.bsky.feed.sendInteractions',
6073
+ defs: {
6074
+ main: {
6075
+ type: 'procedure',
6076
+ description: 'Send information about interactions with feed items back to the feed generator that served them.',
6077
+ input: {
6078
+ encoding: 'application/json',
6079
+ schema: {
6080
+ type: 'object',
6081
+ required: ['interactions'],
6082
+ properties: {
6083
+ interactions: {
6084
+ type: 'array',
6085
+ items: {
6086
+ type: 'ref',
6087
+ ref: 'lex:app.bsky.feed.defs#interaction',
6088
+ },
6089
+ },
6090
+ },
6091
+ },
6092
+ },
6093
+ output: {
6094
+ encoding: 'application/json',
6095
+ schema: {
6096
+ type: 'object',
6097
+ properties: {},
6098
+ },
6099
+ },
6100
+ },
6101
+ },
6102
+ },
5918
6103
  AppBskyFeedThreadgate: {
5919
6104
  lexicon: 1,
5920
6105
  id: 'app.bsky.feed.threadgate',
@@ -7481,6 +7666,11 @@ exports.schemaDict = {
7481
7666
  type: 'string',
7482
7667
  description: 'Search query string; syntax, phrase, boolean, and faceting is unspecified, but Lucene query syntax is recommended. For typeahead search, only simple term match is supported, not full syntax.',
7483
7668
  },
7669
+ viewer: {
7670
+ type: 'string',
7671
+ format: 'did',
7672
+ description: 'DID of the account making the request (not included for public/unauthenticated queries). Used to boost followed accounts in ranking.',
7673
+ },
7484
7674
  typeahead: {
7485
7675
  type: 'boolean',
7486
7676
  description: "If true, acts as fast/simple 'typeahead' query.",
@@ -7543,6 +7733,58 @@ exports.schemaDict = {
7543
7733
  type: 'string',
7544
7734
  description: 'Search query string; syntax, phrase, boolean, and faceting is unspecified, but Lucene query syntax is recommended.',
7545
7735
  },
7736
+ sort: {
7737
+ type: 'string',
7738
+ knownValues: ['top', 'latest'],
7739
+ default: 'latest',
7740
+ description: 'Specifies the ranking order of results.',
7741
+ },
7742
+ since: {
7743
+ type: 'string',
7744
+ description: "Filter results for posts after the indicated datetime (inclusive). Expected to use 'sortAt' timestamp, which may not match 'createdAt'. Can be a datetime, or just an ISO date (YYYY-MM-DD).",
7745
+ },
7746
+ until: {
7747
+ type: 'string',
7748
+ description: "Filter results for posts before the indicated datetime (not inclusive). Expected to use 'sortAt' timestamp, which may not match 'createdAt'. Can be a datetime, or just an ISO date (YYY-MM-DD).",
7749
+ },
7750
+ mentions: {
7751
+ type: 'string',
7752
+ format: 'at-identifier',
7753
+ description: 'Filter to posts which mention the given account. Handles are resolved to DID before query-time. Only matches rich-text facet mentions.',
7754
+ },
7755
+ author: {
7756
+ type: 'string',
7757
+ format: 'at-identifier',
7758
+ description: 'Filter to posts by the given account. Handles are resolved to DID before query-time.',
7759
+ },
7760
+ lang: {
7761
+ type: 'string',
7762
+ format: 'language',
7763
+ description: 'Filter to posts in the given language. Expected to be based on post language field, though server may override language detection.',
7764
+ },
7765
+ domain: {
7766
+ type: 'string',
7767
+ description: 'Filter to posts with URLs (facet links or embeds) linking to the given domain (hostname). Server may apply hostname normalization.',
7768
+ },
7769
+ url: {
7770
+ type: 'string',
7771
+ format: 'uri',
7772
+ description: 'Filter to posts with links (facet links or embeds) pointing to this URL. Server may apply URL normalization or fuzzy matching.',
7773
+ },
7774
+ tag: {
7775
+ type: 'array',
7776
+ items: {
7777
+ type: 'string',
7778
+ maxLength: 640,
7779
+ maxGraphemes: 64,
7780
+ },
7781
+ description: "Filter to posts with the given tag (hashtag), based on rich-text facet or tag field. Do not include the hash (#) prefix. Multiple tags can be specified, with 'AND' matching.",
7782
+ },
7783
+ viewer: {
7784
+ type: 'string',
7785
+ format: 'did',
7786
+ description: "DID of the account making the request (not included for public/unauthenticated queries). Used for 'from:me' queries.",
7787
+ },
7546
7788
  limit: {
7547
7789
  type: 'integer',
7548
7790
  minimum: 1,
@@ -9051,6 +9293,7 @@ exports.ids = {
9051
9293
  AppBskyFeedPost: 'app.bsky.feed.post',
9052
9294
  AppBskyFeedRepost: 'app.bsky.feed.repost',
9053
9295
  AppBskyFeedSearchPosts: 'app.bsky.feed.searchPosts',
9296
+ AppBskyFeedSendInteractions: 'app.bsky.feed.sendInteractions',
9054
9297
  AppBskyFeedThreadgate: 'app.bsky.feed.threadgate',
9055
9298
  AppBskyGraphBlock: 'app.bsky.graph.block',
9056
9299
  AppBskyGraphDefs: 'app.bsky.graph.defs',