@atproto/bsky 0.0.44 → 0.0.46
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +14 -0
- package/dist/api/app/bsky/actor/getSuggestions.d.ts.map +1 -1
- package/dist/api/app/bsky/actor/getSuggestions.js +26 -13
- package/dist/api/app/bsky/actor/getSuggestions.js.map +1 -1
- package/dist/api/app/bsky/actor/searchActors.js +1 -0
- package/dist/api/app/bsky/actor/searchActors.js.map +1 -1
- package/dist/api/app/bsky/actor/searchActorsTypeahead.js +1 -0
- package/dist/api/app/bsky/actor/searchActorsTypeahead.js.map +1 -1
- package/dist/api/app/bsky/feed/searchPosts.js +10 -0
- package/dist/api/app/bsky/feed/searchPosts.js.map +1 -1
- package/dist/auth-verifier.d.ts.map +1 -1
- package/dist/config.d.ts +4 -0
- package/dist/config.d.ts.map +1 -1
- package/dist/config.js +10 -0
- package/dist/config.js.map +1 -1
- package/dist/context.d.ts +2 -0
- package/dist/context.d.ts.map +1 -1
- package/dist/context.js +3 -0
- package/dist/context.js.map +1 -1
- package/dist/data-plane/server/db/pagination.d.ts +5 -5
- package/dist/data-plane/server/db/pagination.d.ts.map +1 -1
- package/dist/data-plane/server/routes/records.d.ts.map +1 -1
- package/dist/data-plane/server/util.d.ts.map +1 -1
- package/dist/hydration/hydrator.d.ts.map +1 -1
- package/dist/hydration/hydrator.js +8 -1
- package/dist/hydration/hydrator.js.map +1 -1
- package/dist/hydration/util.d.ts.map +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +7 -0
- package/dist/index.js.map +1 -1
- package/dist/lexicon/index.d.ts +18 -0
- package/dist/lexicon/index.d.ts.map +1 -1
- package/dist/lexicon/index.js +23 -1
- package/dist/lexicon/index.js.map +1 -1
- package/dist/lexicon/lexicons.d.ts +291 -0
- package/dist/lexicon/lexicons.d.ts.map +1 -1
- package/dist/lexicon/lexicons.js +307 -0
- package/dist/lexicon/lexicons.js.map +1 -1
- package/dist/lexicon/types/app/bsky/embed/record.d.ts +3 -0
- package/dist/lexicon/types/app/bsky/embed/record.d.ts.map +1 -1
- package/dist/lexicon/types/app/bsky/embed/record.js.map +1 -1
- package/dist/lexicon/types/app/bsky/feed/defs.d.ts +38 -0
- package/dist/lexicon/types/app/bsky/feed/defs.d.ts.map +1 -1
- package/dist/lexicon/types/app/bsky/feed/defs.js +35 -1
- package/dist/lexicon/types/app/bsky/feed/defs.js.map +1 -1
- package/dist/lexicon/types/app/bsky/feed/generator.d.ts +2 -0
- package/dist/lexicon/types/app/bsky/feed/generator.d.ts.map +1 -1
- package/dist/lexicon/types/app/bsky/feed/generator.js.map +1 -1
- package/dist/lexicon/types/app/bsky/feed/searchPosts.d.ts +18 -0
- package/dist/lexicon/types/app/bsky/feed/searchPosts.d.ts.map +1 -1
- package/dist/lexicon/types/app/bsky/feed/sendInteractions.d.ts +40 -0
- package/dist/lexicon/types/app/bsky/feed/sendInteractions.d.ts.map +1 -0
- package/dist/lexicon/types/app/bsky/feed/sendInteractions.js +3 -0
- package/dist/lexicon/types/app/bsky/feed/sendInteractions.js.map +1 -0
- package/dist/lexicon/types/app/bsky/unspecced/getSuggestionsSkeleton.d.ts +40 -0
- package/dist/lexicon/types/app/bsky/unspecced/getSuggestionsSkeleton.d.ts.map +1 -0
- package/dist/lexicon/types/app/bsky/unspecced/getSuggestionsSkeleton.js +3 -0
- package/dist/lexicon/types/app/bsky/unspecced/getSuggestionsSkeleton.js.map +1 -0
- package/dist/lexicon/types/app/bsky/unspecced/searchActorsSkeleton.d.ts +2 -0
- package/dist/lexicon/types/app/bsky/unspecced/searchActorsSkeleton.d.ts.map +1 -1
- package/dist/lexicon/types/app/bsky/unspecced/searchPostsSkeleton.d.ts +20 -0
- package/dist/lexicon/types/app/bsky/unspecced/searchPostsSkeleton.d.ts.map +1 -1
- package/dist/lexicon/types/com/atproto/server/createSession.d.ts +3 -1
- package/dist/lexicon/types/com/atproto/server/createSession.d.ts.map +1 -1
- package/dist/lexicon/types/com/atproto/server/getSession.d.ts +1 -0
- package/dist/lexicon/types/com/atproto/server/getSession.d.ts.map +1 -1
- package/dist/lexicon/types/com/atproto/server/updateEmail.d.ts +1 -0
- package/dist/lexicon/types/com/atproto/server/updateEmail.d.ts.map +1 -1
- package/dist/util/debug.d.ts.map +1 -1
- package/dist/views/index.d.ts +2 -2
- package/dist/views/index.d.ts.map +1 -1
- package/dist/views/index.js +29 -22
- package/dist/views/index.js.map +1 -1
- package/package.json +4 -4
- package/src/api/app/bsky/actor/getSuggestions.ts +28 -13
- package/src/api/app/bsky/actor/searchActors.ts +1 -0
- package/src/api/app/bsky/actor/searchActorsTypeahead.ts +1 -0
- package/src/api/app/bsky/feed/searchPosts.ts +10 -0
- package/src/config.ts +14 -0
- package/src/context.ts +5 -0
- package/src/hydration/hydrator.ts +9 -1
- package/src/index.ts +12 -0
- package/src/lexicon/index.ts +38 -0
- package/src/lexicon/lexicons.ts +336 -0
- package/src/lexicon/types/app/bsky/embed/record.ts +3 -0
- package/src/lexicon/types/app/bsky/feed/defs.ts +63 -0
- package/src/lexicon/types/app/bsky/feed/generator.ts +2 -0
- package/src/lexicon/types/app/bsky/feed/searchPosts.ts +18 -0
- package/src/lexicon/types/app/bsky/feed/sendInteractions.ts +49 -0
- package/src/lexicon/types/app/bsky/unspecced/getSuggestionsSkeleton.ts +50 -0
- package/src/lexicon/types/app/bsky/unspecced/searchActorsSkeleton.ts +2 -0
- package/src/lexicon/types/app/bsky/unspecced/searchPostsSkeleton.ts +20 -0
- package/src/lexicon/types/com/atproto/server/createSession.ts +3 -1
- package/src/lexicon/types/com/atproto/server/getSession.ts +1 -0
- package/src/lexicon/types/com/atproto/server/updateEmail.ts +1 -0
- package/src/views/index.ts +27 -30
- package/tests/__snapshots__/feed-generation.test.ts.snap +15 -0
- package/tests/data-plane/__snapshots__/indexing.test.ts.snap +6 -0
- package/tests/views/__snapshots__/actor-search.test.ts.snap +2 -2
- package/tests/views/__snapshots__/author-feed.test.ts.snap +27 -0
- package/tests/views/__snapshots__/block-lists.test.ts.snap +3 -0
- package/tests/views/__snapshots__/blocks.test.ts.snap +3 -0
- package/tests/views/__snapshots__/list-feed.test.ts.snap +6 -0
- package/tests/views/__snapshots__/posts.test.ts.snap +9 -0
- package/tests/views/__snapshots__/timeline.test.ts.snap +259 -0
- package/tests/views/actor-search.test.ts +3 -3
- package/tests/views/blocks.test.ts +11 -2
|
@@ -2020,6 +2020,9 @@ export declare const schemaDict: {
|
|
|
2020
2020
|
password: {
|
|
2021
2021
|
type: string;
|
|
2022
2022
|
};
|
|
2023
|
+
authFactorToken: {
|
|
2024
|
+
type: string;
|
|
2025
|
+
};
|
|
2023
2026
|
};
|
|
2024
2027
|
};
|
|
2025
2028
|
};
|
|
@@ -2052,6 +2055,9 @@ export declare const schemaDict: {
|
|
|
2052
2055
|
emailConfirmed: {
|
|
2053
2056
|
type: string;
|
|
2054
2057
|
};
|
|
2058
|
+
emailAuthFactor: {
|
|
2059
|
+
type: string;
|
|
2060
|
+
};
|
|
2055
2061
|
};
|
|
2056
2062
|
};
|
|
2057
2063
|
};
|
|
@@ -2350,6 +2356,9 @@ export declare const schemaDict: {
|
|
|
2350
2356
|
emailConfirmed: {
|
|
2351
2357
|
type: string;
|
|
2352
2358
|
};
|
|
2359
|
+
emailAuthFactor: {
|
|
2360
|
+
type: string;
|
|
2361
|
+
};
|
|
2353
2362
|
didDoc: {
|
|
2354
2363
|
type: string;
|
|
2355
2364
|
};
|
|
@@ -2606,6 +2615,9 @@ export declare const schemaDict: {
|
|
|
2606
2615
|
email: {
|
|
2607
2616
|
type: string;
|
|
2608
2617
|
};
|
|
2618
|
+
emailAuthFactor: {
|
|
2619
|
+
type: string;
|
|
2620
|
+
};
|
|
2609
2621
|
token: {
|
|
2610
2622
|
type: string;
|
|
2611
2623
|
description: string;
|
|
@@ -4224,6 +4236,15 @@ export declare const schemaDict: {
|
|
|
4224
4236
|
ref: string;
|
|
4225
4237
|
};
|
|
4226
4238
|
};
|
|
4239
|
+
replyCount: {
|
|
4240
|
+
type: string;
|
|
4241
|
+
};
|
|
4242
|
+
repostCount: {
|
|
4243
|
+
type: string;
|
|
4244
|
+
};
|
|
4245
|
+
likeCount: {
|
|
4246
|
+
type: string;
|
|
4247
|
+
};
|
|
4227
4248
|
embeds: {
|
|
4228
4249
|
type: string;
|
|
4229
4250
|
items: {
|
|
@@ -4396,6 +4417,11 @@ export declare const schemaDict: {
|
|
|
4396
4417
|
type: string;
|
|
4397
4418
|
refs: string[];
|
|
4398
4419
|
};
|
|
4420
|
+
feedContext: {
|
|
4421
|
+
type: string;
|
|
4422
|
+
description: string;
|
|
4423
|
+
maxLength: number;
|
|
4424
|
+
};
|
|
4399
4425
|
};
|
|
4400
4426
|
};
|
|
4401
4427
|
replyRef: {
|
|
@@ -4536,6 +4562,9 @@ export declare const schemaDict: {
|
|
|
4536
4562
|
type: string;
|
|
4537
4563
|
minimum: number;
|
|
4538
4564
|
};
|
|
4565
|
+
acceptsInteractions: {
|
|
4566
|
+
type: string;
|
|
4567
|
+
};
|
|
4539
4568
|
labels: {
|
|
4540
4569
|
type: string;
|
|
4541
4570
|
items: {
|
|
@@ -4574,6 +4603,11 @@ export declare const schemaDict: {
|
|
|
4574
4603
|
type: string;
|
|
4575
4604
|
refs: string[];
|
|
4576
4605
|
};
|
|
4606
|
+
feedContext: {
|
|
4607
|
+
type: string;
|
|
4608
|
+
description: string;
|
|
4609
|
+
maxLength: number;
|
|
4610
|
+
};
|
|
4577
4611
|
};
|
|
4578
4612
|
};
|
|
4579
4613
|
skeletonReasonRepost: {
|
|
@@ -4609,6 +4643,72 @@ export declare const schemaDict: {
|
|
|
4609
4643
|
};
|
|
4610
4644
|
};
|
|
4611
4645
|
};
|
|
4646
|
+
interaction: {
|
|
4647
|
+
type: string;
|
|
4648
|
+
properties: {
|
|
4649
|
+
item: {
|
|
4650
|
+
type: string;
|
|
4651
|
+
format: string;
|
|
4652
|
+
};
|
|
4653
|
+
event: {
|
|
4654
|
+
type: string;
|
|
4655
|
+
knownValues: string[];
|
|
4656
|
+
};
|
|
4657
|
+
feedContext: {
|
|
4658
|
+
type: string;
|
|
4659
|
+
description: string;
|
|
4660
|
+
maxLength: number;
|
|
4661
|
+
};
|
|
4662
|
+
};
|
|
4663
|
+
};
|
|
4664
|
+
requestLess: {
|
|
4665
|
+
type: string;
|
|
4666
|
+
description: string;
|
|
4667
|
+
};
|
|
4668
|
+
requestMore: {
|
|
4669
|
+
type: string;
|
|
4670
|
+
description: string;
|
|
4671
|
+
};
|
|
4672
|
+
clickthroughItem: {
|
|
4673
|
+
type: string;
|
|
4674
|
+
description: string;
|
|
4675
|
+
};
|
|
4676
|
+
clickthroughAuthor: {
|
|
4677
|
+
type: string;
|
|
4678
|
+
description: string;
|
|
4679
|
+
};
|
|
4680
|
+
clickthroughReposter: {
|
|
4681
|
+
type: string;
|
|
4682
|
+
description: string;
|
|
4683
|
+
};
|
|
4684
|
+
clickthroughEmbed: {
|
|
4685
|
+
type: string;
|
|
4686
|
+
description: string;
|
|
4687
|
+
};
|
|
4688
|
+
interactionSeen: {
|
|
4689
|
+
type: string;
|
|
4690
|
+
description: string;
|
|
4691
|
+
};
|
|
4692
|
+
interactionLike: {
|
|
4693
|
+
type: string;
|
|
4694
|
+
description: string;
|
|
4695
|
+
};
|
|
4696
|
+
interactionRepost: {
|
|
4697
|
+
type: string;
|
|
4698
|
+
description: string;
|
|
4699
|
+
};
|
|
4700
|
+
interactionReply: {
|
|
4701
|
+
type: string;
|
|
4702
|
+
description: string;
|
|
4703
|
+
};
|
|
4704
|
+
interactionQuote: {
|
|
4705
|
+
type: string;
|
|
4706
|
+
description: string;
|
|
4707
|
+
};
|
|
4708
|
+
interactionShare: {
|
|
4709
|
+
type: string;
|
|
4710
|
+
description: string;
|
|
4711
|
+
};
|
|
4612
4712
|
};
|
|
4613
4713
|
};
|
|
4614
4714
|
AppBskyFeedDescribeFeedGenerator: {
|
|
@@ -4704,6 +4804,10 @@ export declare const schemaDict: {
|
|
|
4704
4804
|
accept: string[];
|
|
4705
4805
|
maxSize: number;
|
|
4706
4806
|
};
|
|
4807
|
+
acceptsInteractions: {
|
|
4808
|
+
type: string;
|
|
4809
|
+
description: string;
|
|
4810
|
+
};
|
|
4707
4811
|
labels: {
|
|
4708
4812
|
type: string;
|
|
4709
4813
|
description: string;
|
|
@@ -5622,6 +5726,53 @@ export declare const schemaDict: {
|
|
|
5622
5726
|
type: string;
|
|
5623
5727
|
description: string;
|
|
5624
5728
|
};
|
|
5729
|
+
sort: {
|
|
5730
|
+
type: string;
|
|
5731
|
+
knownValues: string[];
|
|
5732
|
+
default: string;
|
|
5733
|
+
description: string;
|
|
5734
|
+
};
|
|
5735
|
+
since: {
|
|
5736
|
+
type: string;
|
|
5737
|
+
description: string;
|
|
5738
|
+
};
|
|
5739
|
+
until: {
|
|
5740
|
+
type: string;
|
|
5741
|
+
description: string;
|
|
5742
|
+
};
|
|
5743
|
+
mentions: {
|
|
5744
|
+
type: string;
|
|
5745
|
+
format: string;
|
|
5746
|
+
description: string;
|
|
5747
|
+
};
|
|
5748
|
+
author: {
|
|
5749
|
+
type: string;
|
|
5750
|
+
format: string;
|
|
5751
|
+
description: string;
|
|
5752
|
+
};
|
|
5753
|
+
lang: {
|
|
5754
|
+
type: string;
|
|
5755
|
+
format: string;
|
|
5756
|
+
description: string;
|
|
5757
|
+
};
|
|
5758
|
+
domain: {
|
|
5759
|
+
type: string;
|
|
5760
|
+
description: string;
|
|
5761
|
+
};
|
|
5762
|
+
url: {
|
|
5763
|
+
type: string;
|
|
5764
|
+
format: string;
|
|
5765
|
+
description: string;
|
|
5766
|
+
};
|
|
5767
|
+
tag: {
|
|
5768
|
+
type: string;
|
|
5769
|
+
items: {
|
|
5770
|
+
type: string;
|
|
5771
|
+
maxLength: number;
|
|
5772
|
+
maxGraphemes: number;
|
|
5773
|
+
};
|
|
5774
|
+
description: string;
|
|
5775
|
+
};
|
|
5625
5776
|
limit: {
|
|
5626
5777
|
type: string;
|
|
5627
5778
|
minimum: number;
|
|
@@ -5663,6 +5814,39 @@ export declare const schemaDict: {
|
|
|
5663
5814
|
};
|
|
5664
5815
|
};
|
|
5665
5816
|
};
|
|
5817
|
+
AppBskyFeedSendInteractions: {
|
|
5818
|
+
lexicon: number;
|
|
5819
|
+
id: string;
|
|
5820
|
+
defs: {
|
|
5821
|
+
main: {
|
|
5822
|
+
type: string;
|
|
5823
|
+
description: string;
|
|
5824
|
+
input: {
|
|
5825
|
+
encoding: string;
|
|
5826
|
+
schema: {
|
|
5827
|
+
type: string;
|
|
5828
|
+
required: string[];
|
|
5829
|
+
properties: {
|
|
5830
|
+
interactions: {
|
|
5831
|
+
type: string;
|
|
5832
|
+
items: {
|
|
5833
|
+
type: string;
|
|
5834
|
+
ref: string;
|
|
5835
|
+
};
|
|
5836
|
+
};
|
|
5837
|
+
};
|
|
5838
|
+
};
|
|
5839
|
+
};
|
|
5840
|
+
output: {
|
|
5841
|
+
encoding: string;
|
|
5842
|
+
schema: {
|
|
5843
|
+
type: string;
|
|
5844
|
+
properties: {};
|
|
5845
|
+
};
|
|
5846
|
+
};
|
|
5847
|
+
};
|
|
5848
|
+
};
|
|
5849
|
+
};
|
|
5666
5850
|
AppBskyFeedThreadgate: {
|
|
5667
5851
|
lexicon: number;
|
|
5668
5852
|
id: string;
|
|
@@ -7133,6 +7317,54 @@ export declare const schemaDict: {
|
|
|
7133
7317
|
};
|
|
7134
7318
|
};
|
|
7135
7319
|
};
|
|
7320
|
+
AppBskyUnspeccedGetSuggestionsSkeleton: {
|
|
7321
|
+
lexicon: number;
|
|
7322
|
+
id: string;
|
|
7323
|
+
defs: {
|
|
7324
|
+
main: {
|
|
7325
|
+
type: string;
|
|
7326
|
+
description: string;
|
|
7327
|
+
parameters: {
|
|
7328
|
+
type: string;
|
|
7329
|
+
properties: {
|
|
7330
|
+
viewer: {
|
|
7331
|
+
type: string;
|
|
7332
|
+
format: string;
|
|
7333
|
+
description: string;
|
|
7334
|
+
};
|
|
7335
|
+
limit: {
|
|
7336
|
+
type: string;
|
|
7337
|
+
minimum: number;
|
|
7338
|
+
maximum: number;
|
|
7339
|
+
default: number;
|
|
7340
|
+
};
|
|
7341
|
+
cursor: {
|
|
7342
|
+
type: string;
|
|
7343
|
+
};
|
|
7344
|
+
};
|
|
7345
|
+
};
|
|
7346
|
+
output: {
|
|
7347
|
+
encoding: string;
|
|
7348
|
+
schema: {
|
|
7349
|
+
type: string;
|
|
7350
|
+
required: string[];
|
|
7351
|
+
properties: {
|
|
7352
|
+
cursor: {
|
|
7353
|
+
type: string;
|
|
7354
|
+
};
|
|
7355
|
+
actors: {
|
|
7356
|
+
type: string;
|
|
7357
|
+
items: {
|
|
7358
|
+
type: string;
|
|
7359
|
+
ref: string;
|
|
7360
|
+
};
|
|
7361
|
+
};
|
|
7362
|
+
};
|
|
7363
|
+
};
|
|
7364
|
+
};
|
|
7365
|
+
};
|
|
7366
|
+
};
|
|
7367
|
+
};
|
|
7136
7368
|
AppBskyUnspeccedGetTaggedSuggestions: {
|
|
7137
7369
|
lexicon: number;
|
|
7138
7370
|
id: string;
|
|
@@ -7195,6 +7427,11 @@ export declare const schemaDict: {
|
|
|
7195
7427
|
type: string;
|
|
7196
7428
|
description: string;
|
|
7197
7429
|
};
|
|
7430
|
+
viewer: {
|
|
7431
|
+
type: string;
|
|
7432
|
+
format: string;
|
|
7433
|
+
description: string;
|
|
7434
|
+
};
|
|
7198
7435
|
typeahead: {
|
|
7199
7436
|
type: string;
|
|
7200
7437
|
description: string;
|
|
@@ -7255,6 +7492,58 @@ export declare const schemaDict: {
|
|
|
7255
7492
|
type: string;
|
|
7256
7493
|
description: string;
|
|
7257
7494
|
};
|
|
7495
|
+
sort: {
|
|
7496
|
+
type: string;
|
|
7497
|
+
knownValues: string[];
|
|
7498
|
+
default: string;
|
|
7499
|
+
description: string;
|
|
7500
|
+
};
|
|
7501
|
+
since: {
|
|
7502
|
+
type: string;
|
|
7503
|
+
description: string;
|
|
7504
|
+
};
|
|
7505
|
+
until: {
|
|
7506
|
+
type: string;
|
|
7507
|
+
description: string;
|
|
7508
|
+
};
|
|
7509
|
+
mentions: {
|
|
7510
|
+
type: string;
|
|
7511
|
+
format: string;
|
|
7512
|
+
description: string;
|
|
7513
|
+
};
|
|
7514
|
+
author: {
|
|
7515
|
+
type: string;
|
|
7516
|
+
format: string;
|
|
7517
|
+
description: string;
|
|
7518
|
+
};
|
|
7519
|
+
lang: {
|
|
7520
|
+
type: string;
|
|
7521
|
+
format: string;
|
|
7522
|
+
description: string;
|
|
7523
|
+
};
|
|
7524
|
+
domain: {
|
|
7525
|
+
type: string;
|
|
7526
|
+
description: string;
|
|
7527
|
+
};
|
|
7528
|
+
url: {
|
|
7529
|
+
type: string;
|
|
7530
|
+
format: string;
|
|
7531
|
+
description: string;
|
|
7532
|
+
};
|
|
7533
|
+
tag: {
|
|
7534
|
+
type: string;
|
|
7535
|
+
items: {
|
|
7536
|
+
type: string;
|
|
7537
|
+
maxLength: number;
|
|
7538
|
+
maxGraphemes: number;
|
|
7539
|
+
};
|
|
7540
|
+
description: string;
|
|
7541
|
+
};
|
|
7542
|
+
viewer: {
|
|
7543
|
+
type: string;
|
|
7544
|
+
format: string;
|
|
7545
|
+
description: string;
|
|
7546
|
+
};
|
|
7258
7547
|
limit: {
|
|
7259
7548
|
type: string;
|
|
7260
7549
|
minimum: number;
|
|
@@ -7411,6 +7700,7 @@ export declare const ids: {
|
|
|
7411
7700
|
AppBskyFeedPost: string;
|
|
7412
7701
|
AppBskyFeedRepost: string;
|
|
7413
7702
|
AppBskyFeedSearchPosts: string;
|
|
7703
|
+
AppBskyFeedSendInteractions: string;
|
|
7414
7704
|
AppBskyFeedThreadgate: string;
|
|
7415
7705
|
AppBskyGraphBlock: string;
|
|
7416
7706
|
AppBskyGraphDefs: string;
|
|
@@ -7442,6 +7732,7 @@ export declare const ids: {
|
|
|
7442
7732
|
AppBskyRichtextFacet: string;
|
|
7443
7733
|
AppBskyUnspeccedDefs: string;
|
|
7444
7734
|
AppBskyUnspeccedGetPopularFeedGenerators: string;
|
|
7735
|
+
AppBskyUnspeccedGetSuggestionsSkeleton: string;
|
|
7445
7736
|
AppBskyUnspeccedGetTaggedSuggestions: string;
|
|
7446
7737
|
AppBskyUnspeccedSearchActorsSkeleton: string;
|
|
7447
7738
|
AppBskyUnspeccedSearchPostsSkeleton: 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
|
|
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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAk9PtB,CAAA;AACD,eAAO,MAAM,OAAO,EAAE,UAAU,EAA8C,CAAA;AAC9E,eAAO,MAAM,QAAQ,EAAE,QAAgC,CAAA;AACvD,eAAO,MAAM,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAoKf,CAAA"}
|