@atproto/bsky 0.0.64 → 0.0.65

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 (194) hide show
  1. package/CHANGELOG.md +10 -0
  2. package/dist/api/app/bsky/actor/searchActors.js +1 -1
  3. package/dist/api/app/bsky/actor/searchActors.js.map +1 -1
  4. package/dist/api/app/bsky/feed/getPostThread.js +1 -10
  5. package/dist/api/app/bsky/feed/getPostThread.js.map +1 -1
  6. package/dist/api/app/bsky/feed/searchPosts.js +1 -1
  7. package/dist/api/app/bsky/feed/searchPosts.js.map +1 -1
  8. package/dist/api/app/bsky/graph/getActorStarterPacks.d.ts +4 -0
  9. package/dist/api/app/bsky/graph/getActorStarterPacks.d.ts.map +1 -0
  10. package/dist/api/app/bsky/graph/getActorStarterPacks.js +58 -0
  11. package/dist/api/app/bsky/graph/getActorStarterPacks.js.map +1 -0
  12. package/dist/api/app/bsky/graph/getStarterPack.d.ts +4 -0
  13. package/dist/api/app/bsky/graph/getStarterPack.d.ts.map +1 -0
  14. package/dist/api/app/bsky/graph/getStarterPack.js +45 -0
  15. package/dist/api/app/bsky/graph/getStarterPack.js.map +1 -0
  16. package/dist/api/app/bsky/graph/getStarterPacks.d.ts +4 -0
  17. package/dist/api/app/bsky/graph/getStarterPacks.d.ts.map +1 -0
  18. package/dist/api/app/bsky/graph/getStarterPacks.js +40 -0
  19. package/dist/api/app/bsky/graph/getStarterPacks.js.map +1 -0
  20. package/dist/api/index.d.ts.map +1 -1
  21. package/dist/api/index.js +6 -0
  22. package/dist/api/index.js.map +1 -1
  23. package/dist/data-plane/server/db/database-schema.d.ts +2 -1
  24. package/dist/data-plane/server/db/database-schema.d.ts.map +1 -1
  25. package/dist/data-plane/server/db/migrations/20240606T222548219Z-starter-packs.d.ts +4 -0
  26. package/dist/data-plane/server/db/migrations/20240606T222548219Z-starter-packs.d.ts.map +1 -0
  27. package/dist/data-plane/server/db/migrations/20240606T222548219Z-starter-packs.js +47 -0
  28. package/dist/data-plane/server/db/migrations/20240606T222548219Z-starter-packs.js.map +1 -0
  29. package/dist/data-plane/server/db/migrations/index.d.ts +1 -0
  30. package/dist/data-plane/server/db/migrations/index.d.ts.map +1 -1
  31. package/dist/data-plane/server/db/migrations/index.js +2 -1
  32. package/dist/data-plane/server/db/migrations/index.js.map +1 -1
  33. package/dist/data-plane/server/db/tables/profile.d.ts +2 -0
  34. package/dist/data-plane/server/db/tables/profile.d.ts.map +1 -1
  35. package/dist/data-plane/server/db/tables/starter-pack.d.ts +14 -0
  36. package/dist/data-plane/server/db/tables/starter-pack.d.ts.map +1 -0
  37. package/dist/data-plane/server/db/tables/starter-pack.js +5 -0
  38. package/dist/data-plane/server/db/tables/starter-pack.js.map +1 -0
  39. package/dist/data-plane/server/indexing/index.d.ts +2 -0
  40. package/dist/data-plane/server/indexing/index.d.ts.map +1 -1
  41. package/dist/data-plane/server/indexing/index.js +2 -0
  42. package/dist/data-plane/server/indexing/index.js.map +1 -1
  43. package/dist/data-plane/server/indexing/plugins/profile.d.ts.map +1 -1
  44. package/dist/data-plane/server/indexing/plugins/profile.js +18 -2
  45. package/dist/data-plane/server/indexing/plugins/profile.js.map +1 -1
  46. package/dist/data-plane/server/indexing/plugins/starter-pack.d.ts +11 -0
  47. package/dist/data-plane/server/indexing/plugins/starter-pack.d.ts.map +1 -0
  48. package/dist/data-plane/server/indexing/plugins/starter-pack.js +78 -0
  49. package/dist/data-plane/server/indexing/plugins/starter-pack.js.map +1 -0
  50. package/dist/data-plane/server/routes/index.d.ts.map +1 -1
  51. package/dist/data-plane/server/routes/index.js +2 -0
  52. package/dist/data-plane/server/routes/index.js.map +1 -1
  53. package/dist/data-plane/server/routes/interactions.d.ts.map +1 -1
  54. package/dist/data-plane/server/routes/interactions.js +57 -1
  55. package/dist/data-plane/server/routes/interactions.js.map +1 -1
  56. package/dist/data-plane/server/routes/profile.d.ts.map +1 -1
  57. package/dist/data-plane/server/routes/profile.js +1 -0
  58. package/dist/data-plane/server/routes/profile.js.map +1 -1
  59. package/dist/data-plane/server/routes/records.d.ts.map +1 -1
  60. package/dist/data-plane/server/routes/records.js +1 -0
  61. package/dist/data-plane/server/routes/records.js.map +1 -1
  62. package/dist/data-plane/server/routes/starter-packs.d.ts +6 -0
  63. package/dist/data-plane/server/routes/starter-packs.d.ts.map +1 -0
  64. package/dist/data-plane/server/routes/starter-packs.js +25 -0
  65. package/dist/data-plane/server/routes/starter-packs.js.map +1 -0
  66. package/dist/data-plane/server/util.d.ts +6 -6
  67. package/dist/hydration/actor.d.ts +2 -0
  68. package/dist/hydration/actor.d.ts.map +1 -1
  69. package/dist/hydration/actor.js +2 -0
  70. package/dist/hydration/actor.js.map +1 -1
  71. package/dist/hydration/feed.d.ts +1 -5
  72. package/dist/hydration/feed.d.ts.map +1 -1
  73. package/dist/hydration/feed.js +0 -1
  74. package/dist/hydration/feed.js.map +1 -1
  75. package/dist/hydration/graph.d.ts +17 -1
  76. package/dist/hydration/graph.d.ts.map +1 -1
  77. package/dist/hydration/graph.js +30 -1
  78. package/dist/hydration/graph.js.map +1 -1
  79. package/dist/hydration/hydrator.d.ts +9 -3
  80. package/dist/hydration/hydrator.d.ts.map +1 -1
  81. package/dist/hydration/hydrator.js +114 -5
  82. package/dist/hydration/hydrator.js.map +1 -1
  83. package/dist/hydration/util.d.ts +4 -0
  84. package/dist/hydration/util.d.ts.map +1 -1
  85. package/dist/hydration/util.js.map +1 -1
  86. package/dist/lexicon/index.d.ts +7 -0
  87. package/dist/lexicon/index.d.ts.map +1 -1
  88. package/dist/lexicon/index.js +13 -0
  89. package/dist/lexicon/index.js.map +1 -1
  90. package/dist/lexicon/lexicons.d.ts +332 -0
  91. package/dist/lexicon/lexicons.d.ts.map +1 -1
  92. package/dist/lexicon/lexicons.js +335 -1
  93. package/dist/lexicon/lexicons.js.map +1 -1
  94. package/dist/lexicon/types/app/bsky/actor/defs.d.ts +5 -0
  95. package/dist/lexicon/types/app/bsky/actor/defs.d.ts.map +1 -1
  96. package/dist/lexicon/types/app/bsky/actor/defs.js.map +1 -1
  97. package/dist/lexicon/types/app/bsky/actor/profile.d.ts +3 -0
  98. package/dist/lexicon/types/app/bsky/actor/profile.d.ts.map +1 -1
  99. package/dist/lexicon/types/app/bsky/actor/profile.js.map +1 -1
  100. package/dist/lexicon/types/app/bsky/graph/defs.d.ts +36 -1
  101. package/dist/lexicon/types/app/bsky/graph/defs.d.ts.map +1 -1
  102. package/dist/lexicon/types/app/bsky/graph/defs.js +23 -1
  103. package/dist/lexicon/types/app/bsky/graph/defs.js.map +1 -1
  104. package/dist/lexicon/types/app/bsky/graph/getActorStarterPacks.d.ts +39 -0
  105. package/dist/lexicon/types/app/bsky/graph/getActorStarterPacks.d.ts.map +1 -0
  106. package/dist/lexicon/types/app/bsky/graph/getActorStarterPacks.js +3 -0
  107. package/dist/lexicon/types/app/bsky/graph/getActorStarterPacks.js.map +1 -0
  108. package/dist/lexicon/types/app/bsky/graph/getStarterPack.d.ts +37 -0
  109. package/dist/lexicon/types/app/bsky/graph/getStarterPack.d.ts.map +1 -0
  110. package/dist/lexicon/types/app/bsky/graph/getStarterPack.js +3 -0
  111. package/dist/lexicon/types/app/bsky/graph/getStarterPack.js.map +1 -0
  112. package/dist/lexicon/types/app/bsky/graph/getStarterPacks.d.ts +36 -0
  113. package/dist/lexicon/types/app/bsky/graph/getStarterPacks.d.ts.map +1 -0
  114. package/dist/lexicon/types/app/bsky/graph/getStarterPacks.js +3 -0
  115. package/dist/lexicon/types/app/bsky/graph/getStarterPacks.js.map +1 -0
  116. package/dist/lexicon/types/app/bsky/graph/starterpack.d.ts +25 -0
  117. package/dist/lexicon/types/app/bsky/graph/starterpack.d.ts.map +1 -0
  118. package/dist/lexicon/types/app/bsky/graph/starterpack.js +27 -0
  119. package/dist/lexicon/types/app/bsky/graph/starterpack.js.map +1 -0
  120. package/dist/lexicon/types/app/bsky/notification/listNotifications.d.ts +2 -2
  121. package/dist/lexicon/types/app/bsky/notification/listNotifications.d.ts.map +1 -1
  122. package/dist/lexicon/types/app/bsky/notification/listNotifications.js.map +1 -1
  123. package/dist/proto/bsky_connect.d.ts +39 -1
  124. package/dist/proto/bsky_connect.d.ts.map +1 -1
  125. package/dist/proto/bsky_connect.js +38 -0
  126. package/dist/proto/bsky_connect.js.map +1 -1
  127. package/dist/proto/bsky_pb.d.ts +160 -0
  128. package/dist/proto/bsky_pb.d.ts.map +1 -1
  129. package/dist/proto/bsky_pb.js +508 -4
  130. package/dist/proto/bsky_pb.js.map +1 -1
  131. package/dist/views/index.d.ts +3 -1
  132. package/dist/views/index.d.ts.map +1 -1
  133. package/dist/views/index.js +64 -0
  134. package/dist/views/index.js.map +1 -1
  135. package/package.json +5 -5
  136. package/proto/bsky.proto +47 -0
  137. package/src/api/app/bsky/actor/searchActors.ts +1 -1
  138. package/src/api/app/bsky/feed/getPostThread.ts +1 -9
  139. package/src/api/app/bsky/feed/searchPosts.ts +1 -1
  140. package/src/api/app/bsky/graph/getActorStarterPacks.ts +99 -0
  141. package/src/api/app/bsky/graph/getStarterPack.ts +80 -0
  142. package/src/api/app/bsky/graph/getStarterPacks.ts +81 -0
  143. package/src/api/index.ts +6 -0
  144. package/src/data-plane/server/db/database-schema.ts +2 -0
  145. package/src/data-plane/server/db/migrations/20240606T222548219Z-starter-packs.ts +45 -0
  146. package/src/data-plane/server/db/migrations/index.ts +1 -0
  147. package/src/data-plane/server/db/tables/profile.ts +2 -0
  148. package/src/data-plane/server/db/tables/starter-pack.ts +16 -0
  149. package/src/data-plane/server/indexing/index.ts +3 -0
  150. package/src/data-plane/server/indexing/plugins/profile.ts +16 -2
  151. package/src/data-plane/server/indexing/plugins/starter-pack.ts +76 -0
  152. package/src/data-plane/server/routes/index.ts +2 -0
  153. package/src/data-plane/server/routes/interactions.ts +56 -2
  154. package/src/data-plane/server/routes/profile.ts +1 -0
  155. package/src/data-plane/server/routes/records.ts +1 -0
  156. package/src/data-plane/server/routes/starter-packs.ts +32 -0
  157. package/src/hydration/actor.ts +5 -0
  158. package/src/hydration/feed.ts +1 -2
  159. package/src/hydration/graph.ts +55 -2
  160. package/src/hydration/hydrator.ts +143 -6
  161. package/src/hydration/util.ts +2 -0
  162. package/src/lexicon/index.ts +37 -0
  163. package/src/lexicon/lexicons.ts +337 -1
  164. package/src/lexicon/types/app/bsky/actor/defs.ts +5 -0
  165. package/src/lexicon/types/app/bsky/actor/profile.ts +3 -0
  166. package/src/lexicon/types/app/bsky/graph/defs.ts +58 -0
  167. package/src/lexicon/types/app/bsky/graph/getActorStarterPacks.ts +49 -0
  168. package/src/lexicon/types/app/bsky/graph/getStarterPack.ts +47 -0
  169. package/src/lexicon/types/app/bsky/graph/getStarterPacks.ts +46 -0
  170. package/src/lexicon/types/app/bsky/graph/starterpack.ts +50 -0
  171. package/src/lexicon/types/app/bsky/notification/listNotifications.ts +2 -1
  172. package/src/proto/bsky_connect.ts +46 -0
  173. package/src/proto/bsky_pb.ts +512 -0
  174. package/src/views/index.ts +71 -1
  175. package/tests/__snapshots__/feed-generation.test.ts.snap +28 -0
  176. package/tests/data-plane/__snapshots__/indexing.test.ts.snap +9 -0
  177. package/tests/views/__snapshots__/author-feed.test.ts.snap +29 -0
  178. package/tests/views/__snapshots__/block-lists.test.ts.snap +16 -0
  179. package/tests/views/__snapshots__/blocks.test.ts.snap +4 -0
  180. package/tests/views/__snapshots__/follows.test.ts.snap +34 -0
  181. package/tests/views/__snapshots__/labeler-service.test.ts.snap +4 -0
  182. package/tests/views/__snapshots__/likes.test.ts.snap +1 -0
  183. package/tests/views/__snapshots__/list-feed.test.ts.snap +12 -0
  184. package/tests/views/__snapshots__/mute-lists.test.ts.snap +20 -0
  185. package/tests/views/__snapshots__/mutes.test.ts.snap +8 -0
  186. package/tests/views/__snapshots__/notifications.test.ts.snap +10 -0
  187. package/tests/views/__snapshots__/posts.test.ts.snap +6 -0
  188. package/tests/views/__snapshots__/profile.test.ts.snap +18 -0
  189. package/tests/views/__snapshots__/reposts.test.ts.snap +1 -0
  190. package/tests/views/__snapshots__/starter-packs.test.ts.snap +482 -0
  191. package/tests/views/__snapshots__/thread.test.ts.snap +22 -0
  192. package/tests/views/__snapshots__/threadgating.test.ts.snap +2 -0
  193. package/tests/views/__snapshots__/timeline.test.ts.snap +81 -0
  194. package/tests/views/starter-packs.test.ts +121 -0
@@ -3554,6 +3554,10 @@ export declare const schemaDict: {
3554
3554
  ref: string;
3555
3555
  };
3556
3556
  };
3557
+ createdAt: {
3558
+ type: string;
3559
+ format: string;
3560
+ };
3557
3561
  };
3558
3562
  };
3559
3563
  profileView: {
@@ -3590,6 +3594,10 @@ export declare const schemaDict: {
3590
3594
  type: string;
3591
3595
  format: string;
3592
3596
  };
3597
+ createdAt: {
3598
+ type: string;
3599
+ format: string;
3600
+ };
3593
3601
  viewer: {
3594
3602
  type: string;
3595
3603
  ref: string;
@@ -3646,10 +3654,18 @@ export declare const schemaDict: {
3646
3654
  type: string;
3647
3655
  ref: string;
3648
3656
  };
3657
+ joinedViaStarterPack: {
3658
+ type: string;
3659
+ ref: string;
3660
+ };
3649
3661
  indexedAt: {
3650
3662
  type: string;
3651
3663
  format: string;
3652
3664
  };
3665
+ createdAt: {
3666
+ type: string;
3667
+ format: string;
3668
+ };
3653
3669
  viewer: {
3654
3670
  type: string;
3655
3671
  ref: string;
@@ -3672,6 +3688,9 @@ export declare const schemaDict: {
3672
3688
  feedgens: {
3673
3689
  type: string;
3674
3690
  };
3691
+ starterPacks: {
3692
+ type: string;
3693
+ };
3675
3694
  labeler: {
3676
3695
  type: string;
3677
3696
  };
@@ -4164,6 +4183,14 @@ export declare const schemaDict: {
4164
4183
  description: string;
4165
4184
  refs: string[];
4166
4185
  };
4186
+ joinedViaStarterPack: {
4187
+ type: string;
4188
+ ref: string;
4189
+ };
4190
+ createdAt: {
4191
+ type: string;
4192
+ format: string;
4193
+ };
4167
4194
  };
4168
4195
  };
4169
4196
  };
@@ -6230,6 +6257,10 @@ export declare const schemaDict: {
6230
6257
  type: string;
6231
6258
  format: string;
6232
6259
  };
6260
+ listItemCount: {
6261
+ type: string;
6262
+ minimum: number;
6263
+ };
6233
6264
  labels: {
6234
6265
  type: string;
6235
6266
  items: {
@@ -6288,6 +6319,10 @@ export declare const schemaDict: {
6288
6319
  type: string;
6289
6320
  format: string;
6290
6321
  };
6322
+ listItemCount: {
6323
+ type: string;
6324
+ minimum: number;
6325
+ };
6291
6326
  labels: {
6292
6327
  type: string;
6293
6328
  items: {
@@ -6319,6 +6354,110 @@ export declare const schemaDict: {
6319
6354
  };
6320
6355
  };
6321
6356
  };
6357
+ starterPackView: {
6358
+ type: string;
6359
+ required: string[];
6360
+ properties: {
6361
+ uri: {
6362
+ type: string;
6363
+ format: string;
6364
+ };
6365
+ cid: {
6366
+ type: string;
6367
+ format: string;
6368
+ };
6369
+ record: {
6370
+ type: string;
6371
+ };
6372
+ creator: {
6373
+ type: string;
6374
+ ref: string;
6375
+ };
6376
+ list: {
6377
+ type: string;
6378
+ ref: string;
6379
+ };
6380
+ listItemsSample: {
6381
+ type: string;
6382
+ maxLength: number;
6383
+ items: {
6384
+ type: string;
6385
+ ref: string;
6386
+ };
6387
+ };
6388
+ feeds: {
6389
+ type: string;
6390
+ maxLength: number;
6391
+ items: {
6392
+ type: string;
6393
+ ref: string;
6394
+ };
6395
+ };
6396
+ joinedWeekCount: {
6397
+ type: string;
6398
+ minimum: number;
6399
+ };
6400
+ joinedAllTimeCount: {
6401
+ type: string;
6402
+ minimum: number;
6403
+ };
6404
+ labels: {
6405
+ type: string;
6406
+ items: {
6407
+ type: string;
6408
+ ref: string;
6409
+ };
6410
+ };
6411
+ indexedAt: {
6412
+ type: string;
6413
+ format: string;
6414
+ };
6415
+ };
6416
+ };
6417
+ starterPackViewBasic: {
6418
+ type: string;
6419
+ required: string[];
6420
+ properties: {
6421
+ uri: {
6422
+ type: string;
6423
+ format: string;
6424
+ };
6425
+ cid: {
6426
+ type: string;
6427
+ format: string;
6428
+ };
6429
+ record: {
6430
+ type: string;
6431
+ };
6432
+ creator: {
6433
+ type: string;
6434
+ ref: string;
6435
+ };
6436
+ listItemCount: {
6437
+ type: string;
6438
+ minimum: number;
6439
+ };
6440
+ joinedWeekCount: {
6441
+ type: string;
6442
+ minimum: number;
6443
+ };
6444
+ joinedAllTimeCount: {
6445
+ type: string;
6446
+ minimum: number;
6447
+ };
6448
+ labels: {
6449
+ type: string;
6450
+ items: {
6451
+ type: string;
6452
+ ref: string;
6453
+ };
6454
+ };
6455
+ indexedAt: {
6456
+ type: string;
6457
+ format: string;
6458
+ };
6459
+ };
6460
+ };
6322
6461
  listPurpose: {
6323
6462
  type: string;
6324
6463
  knownValues: string[];
@@ -6331,6 +6470,10 @@ export declare const schemaDict: {
6331
6470
  type: string;
6332
6471
  description: string;
6333
6472
  };
6473
+ referencelist: {
6474
+ type: string;
6475
+ description: string;
6476
+ };
6334
6477
  listViewerState: {
6335
6478
  type: string;
6336
6479
  properties: {
@@ -6406,6 +6549,54 @@ export declare const schemaDict: {
6406
6549
  };
6407
6550
  };
6408
6551
  };
6552
+ AppBskyGraphGetActorStarterPacks: {
6553
+ lexicon: number;
6554
+ id: string;
6555
+ defs: {
6556
+ main: {
6557
+ type: string;
6558
+ description: string;
6559
+ parameters: {
6560
+ type: string;
6561
+ required: string[];
6562
+ properties: {
6563
+ actor: {
6564
+ type: string;
6565
+ format: string;
6566
+ };
6567
+ limit: {
6568
+ type: string;
6569
+ minimum: number;
6570
+ maximum: number;
6571
+ default: number;
6572
+ };
6573
+ cursor: {
6574
+ type: string;
6575
+ };
6576
+ };
6577
+ };
6578
+ output: {
6579
+ encoding: string;
6580
+ schema: {
6581
+ type: string;
6582
+ required: string[];
6583
+ properties: {
6584
+ cursor: {
6585
+ type: string;
6586
+ };
6587
+ starterPacks: {
6588
+ type: string;
6589
+ items: {
6590
+ type: string;
6591
+ ref: string;
6592
+ };
6593
+ };
6594
+ };
6595
+ };
6596
+ };
6597
+ };
6598
+ };
6599
+ };
6409
6600
  AppBskyGraphGetBlocks: {
6410
6601
  lexicon: number;
6411
6602
  id: string;
@@ -6890,6 +7081,80 @@ export declare const schemaDict: {
6890
7081
  };
6891
7082
  };
6892
7083
  };
7084
+ AppBskyGraphGetStarterPack: {
7085
+ lexicon: number;
7086
+ id: string;
7087
+ defs: {
7088
+ main: {
7089
+ type: string;
7090
+ description: string;
7091
+ parameters: {
7092
+ type: string;
7093
+ required: string[];
7094
+ properties: {
7095
+ starterPack: {
7096
+ type: string;
7097
+ format: string;
7098
+ description: string;
7099
+ };
7100
+ };
7101
+ };
7102
+ output: {
7103
+ encoding: string;
7104
+ schema: {
7105
+ type: string;
7106
+ required: string[];
7107
+ properties: {
7108
+ starterPack: {
7109
+ type: string;
7110
+ ref: string;
7111
+ };
7112
+ };
7113
+ };
7114
+ };
7115
+ };
7116
+ };
7117
+ };
7118
+ AppBskyGraphGetStarterPacks: {
7119
+ lexicon: number;
7120
+ id: string;
7121
+ defs: {
7122
+ main: {
7123
+ type: string;
7124
+ description: string;
7125
+ parameters: {
7126
+ type: string;
7127
+ required: string[];
7128
+ properties: {
7129
+ uris: {
7130
+ type: string;
7131
+ items: {
7132
+ type: string;
7133
+ format: string;
7134
+ };
7135
+ maxLength: number;
7136
+ };
7137
+ };
7138
+ };
7139
+ output: {
7140
+ encoding: string;
7141
+ schema: {
7142
+ type: string;
7143
+ required: string[];
7144
+ properties: {
7145
+ starterPacks: {
7146
+ type: string;
7147
+ items: {
7148
+ type: string;
7149
+ ref: string;
7150
+ };
7151
+ };
7152
+ };
7153
+ };
7154
+ };
7155
+ };
7156
+ };
7157
+ };
6893
7158
  AppBskyGraphGetSuggestedFollowsByActor: {
6894
7159
  lexicon: number;
6895
7160
  id: string;
@@ -7105,6 +7370,69 @@ export declare const schemaDict: {
7105
7370
  };
7106
7371
  };
7107
7372
  };
7373
+ AppBskyGraphStarterpack: {
7374
+ lexicon: number;
7375
+ id: string;
7376
+ defs: {
7377
+ main: {
7378
+ type: string;
7379
+ description: string;
7380
+ key: string;
7381
+ record: {
7382
+ type: string;
7383
+ required: string[];
7384
+ properties: {
7385
+ name: {
7386
+ type: string;
7387
+ maxGraphemes: number;
7388
+ maxLength: number;
7389
+ minLength: number;
7390
+ description: string;
7391
+ };
7392
+ description: {
7393
+ type: string;
7394
+ maxGraphemes: number;
7395
+ maxLength: number;
7396
+ };
7397
+ descriptionFacets: {
7398
+ type: string;
7399
+ items: {
7400
+ type: string;
7401
+ ref: string;
7402
+ };
7403
+ };
7404
+ list: {
7405
+ type: string;
7406
+ format: string;
7407
+ description: string;
7408
+ };
7409
+ feeds: {
7410
+ type: string;
7411
+ maxLength: number;
7412
+ items: {
7413
+ type: string;
7414
+ ref: string;
7415
+ };
7416
+ };
7417
+ createdAt: {
7418
+ type: string;
7419
+ format: string;
7420
+ };
7421
+ };
7422
+ };
7423
+ };
7424
+ feedItem: {
7425
+ type: string;
7426
+ required: string[];
7427
+ properties: {
7428
+ uri: {
7429
+ type: string;
7430
+ format: string;
7431
+ };
7432
+ };
7433
+ };
7434
+ };
7435
+ };
7108
7436
  AppBskyGraphUnmuteActor: {
7109
7437
  lexicon: number;
7110
7438
  id: string;
@@ -8956,6 +9284,7 @@ export declare const ids: {
8956
9284
  AppBskyGraphBlock: string;
8957
9285
  AppBskyGraphDefs: string;
8958
9286
  AppBskyGraphFollow: string;
9287
+ AppBskyGraphGetActorStarterPacks: string;
8959
9288
  AppBskyGraphGetBlocks: string;
8960
9289
  AppBskyGraphGetFollowers: string;
8961
9290
  AppBskyGraphGetFollows: string;
@@ -8966,6 +9295,8 @@ export declare const ids: {
8966
9295
  AppBskyGraphGetLists: string;
8967
9296
  AppBskyGraphGetMutes: string;
8968
9297
  AppBskyGraphGetRelationships: string;
9298
+ AppBskyGraphGetStarterPack: string;
9299
+ AppBskyGraphGetStarterPacks: string;
8969
9300
  AppBskyGraphGetSuggestedFollowsByActor: string;
8970
9301
  AppBskyGraphList: string;
8971
9302
  AppBskyGraphListblock: string;
@@ -8973,6 +9304,7 @@ export declare const ids: {
8973
9304
  AppBskyGraphMuteActor: string;
8974
9305
  AppBskyGraphMuteActorList: string;
8975
9306
  AppBskyGraphMuteThread: string;
9307
+ AppBskyGraphStarterpack: string;
8976
9308
  AppBskyGraphUnmuteActor: string;
8977
9309
  AppBskyGraphUnmuteActorList: string;
8978
9310
  AppBskyGraphUnmuteThread: 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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAuyStB,CAAA;AACD,eAAO,MAAM,OAAO,EAAE,UAAU,EAA8C,CAAA;AAC9E,eAAO,MAAM,QAAQ,EAAE,QAAgC,CAAA;AACvD,eAAO,MAAM,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA6Lf,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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAmnTtB,CAAA;AACD,eAAO,MAAM,OAAO,EAAE,UAAU,EAA8C,CAAA;AAC9E,eAAO,MAAM,QAAQ,EAAE,QAAgC,CAAA;AACvD,eAAO,MAAM,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAiMf,CAAA"}