@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
@@ -3805,6 +3805,10 @@ exports.schemaDict = {
3805
3805
  ref: 'lex:com.atproto.label.defs#label',
3806
3806
  },
3807
3807
  },
3808
+ createdAt: {
3809
+ type: 'string',
3810
+ format: 'datetime',
3811
+ },
3808
3812
  },
3809
3813
  },
3810
3814
  profileView: {
@@ -3841,6 +3845,10 @@ exports.schemaDict = {
3841
3845
  type: 'string',
3842
3846
  format: 'datetime',
3843
3847
  },
3848
+ createdAt: {
3849
+ type: 'string',
3850
+ format: 'datetime',
3851
+ },
3844
3852
  viewer: {
3845
3853
  type: 'ref',
3846
3854
  ref: 'lex:app.bsky.actor.defs#viewerState',
@@ -3897,10 +3905,18 @@ exports.schemaDict = {
3897
3905
  type: 'ref',
3898
3906
  ref: 'lex:app.bsky.actor.defs#profileAssociated',
3899
3907
  },
3908
+ joinedViaStarterPack: {
3909
+ type: 'ref',
3910
+ ref: 'lex:app.bsky.graph.defs#starterPackViewBasic',
3911
+ },
3900
3912
  indexedAt: {
3901
3913
  type: 'string',
3902
3914
  format: 'datetime',
3903
3915
  },
3916
+ createdAt: {
3917
+ type: 'string',
3918
+ format: 'datetime',
3919
+ },
3904
3920
  viewer: {
3905
3921
  type: 'ref',
3906
3922
  ref: 'lex:app.bsky.actor.defs#viewerState',
@@ -3923,6 +3939,9 @@ exports.schemaDict = {
3923
3939
  feedgens: {
3924
3940
  type: 'integer',
3925
3941
  },
3942
+ starterPacks: {
3943
+ type: 'integer',
3944
+ },
3926
3945
  labeler: {
3927
3946
  type: 'boolean',
3928
3947
  },
@@ -4426,6 +4445,14 @@ exports.schemaDict = {
4426
4445
  description: 'Self-label values, specific to the Bluesky application, on the overall account.',
4427
4446
  refs: ['lex:com.atproto.label.defs#selfLabels'],
4428
4447
  },
4448
+ joinedViaStarterPack: {
4449
+ type: 'ref',
4450
+ ref: 'lex:com.atproto.repo.strongRef',
4451
+ },
4452
+ createdAt: {
4453
+ type: 'string',
4454
+ format: 'datetime',
4455
+ },
4429
4456
  },
4430
4457
  },
4431
4458
  },
@@ -6579,6 +6606,10 @@ exports.schemaDict = {
6579
6606
  type: 'string',
6580
6607
  format: 'uri',
6581
6608
  },
6609
+ listItemCount: {
6610
+ type: 'integer',
6611
+ minimum: 0,
6612
+ },
6582
6613
  labels: {
6583
6614
  type: 'array',
6584
6615
  items: {
@@ -6637,6 +6668,10 @@ exports.schemaDict = {
6637
6668
  type: 'string',
6638
6669
  format: 'uri',
6639
6670
  },
6671
+ listItemCount: {
6672
+ type: 'integer',
6673
+ minimum: 0,
6674
+ },
6640
6675
  labels: {
6641
6676
  type: 'array',
6642
6677
  items: {
@@ -6668,11 +6703,116 @@ exports.schemaDict = {
6668
6703
  },
6669
6704
  },
6670
6705
  },
6706
+ starterPackView: {
6707
+ type: 'object',
6708
+ required: ['uri', 'cid', 'record', 'creator', 'indexedAt'],
6709
+ properties: {
6710
+ uri: {
6711
+ type: 'string',
6712
+ format: 'at-uri',
6713
+ },
6714
+ cid: {
6715
+ type: 'string',
6716
+ format: 'cid',
6717
+ },
6718
+ record: {
6719
+ type: 'unknown',
6720
+ },
6721
+ creator: {
6722
+ type: 'ref',
6723
+ ref: 'lex:app.bsky.actor.defs#profileViewBasic',
6724
+ },
6725
+ list: {
6726
+ type: 'ref',
6727
+ ref: 'lex:app.bsky.graph.defs#listViewBasic',
6728
+ },
6729
+ listItemsSample: {
6730
+ type: 'array',
6731
+ maxLength: 12,
6732
+ items: {
6733
+ type: 'ref',
6734
+ ref: 'lex:app.bsky.graph.defs#listItemView',
6735
+ },
6736
+ },
6737
+ feeds: {
6738
+ type: 'array',
6739
+ maxLength: 3,
6740
+ items: {
6741
+ type: 'ref',
6742
+ ref: 'lex:app.bsky.feed.defs#generatorView',
6743
+ },
6744
+ },
6745
+ joinedWeekCount: {
6746
+ type: 'integer',
6747
+ minimum: 0,
6748
+ },
6749
+ joinedAllTimeCount: {
6750
+ type: 'integer',
6751
+ minimum: 0,
6752
+ },
6753
+ labels: {
6754
+ type: 'array',
6755
+ items: {
6756
+ type: 'ref',
6757
+ ref: 'lex:com.atproto.label.defs#label',
6758
+ },
6759
+ },
6760
+ indexedAt: {
6761
+ type: 'string',
6762
+ format: 'datetime',
6763
+ },
6764
+ },
6765
+ },
6766
+ starterPackViewBasic: {
6767
+ type: 'object',
6768
+ required: ['uri', 'cid', 'record', 'creator', 'indexedAt'],
6769
+ properties: {
6770
+ uri: {
6771
+ type: 'string',
6772
+ format: 'at-uri',
6773
+ },
6774
+ cid: {
6775
+ type: 'string',
6776
+ format: 'cid',
6777
+ },
6778
+ record: {
6779
+ type: 'unknown',
6780
+ },
6781
+ creator: {
6782
+ type: 'ref',
6783
+ ref: 'lex:app.bsky.actor.defs#profileViewBasic',
6784
+ },
6785
+ listItemCount: {
6786
+ type: 'integer',
6787
+ minimum: 0,
6788
+ },
6789
+ joinedWeekCount: {
6790
+ type: 'integer',
6791
+ minimum: 0,
6792
+ },
6793
+ joinedAllTimeCount: {
6794
+ type: 'integer',
6795
+ minimum: 0,
6796
+ },
6797
+ labels: {
6798
+ type: 'array',
6799
+ items: {
6800
+ type: 'ref',
6801
+ ref: 'lex:com.atproto.label.defs#label',
6802
+ },
6803
+ },
6804
+ indexedAt: {
6805
+ type: 'string',
6806
+ format: 'datetime',
6807
+ },
6808
+ },
6809
+ },
6671
6810
  listPurpose: {
6672
6811
  type: 'string',
6673
6812
  knownValues: [
6674
6813
  'app.bsky.graph.defs#modlist',
6675
6814
  'app.bsky.graph.defs#curatelist',
6815
+ 'app.bsky.graph.defs#referencelist',
6676
6816
  ],
6677
6817
  },
6678
6818
  modlist: {
@@ -6683,6 +6823,10 @@ exports.schemaDict = {
6683
6823
  type: 'token',
6684
6824
  description: 'A list of actors used for curation purposes such as list feeds or interaction gating.',
6685
6825
  },
6826
+ referencelist: {
6827
+ type: 'token',
6828
+ description: 'A list of actors used for only for reference purposes such as within a starter pack.',
6829
+ },
6686
6830
  listViewerState: {
6687
6831
  type: 'object',
6688
6832
  properties: {
@@ -6758,6 +6902,54 @@ exports.schemaDict = {
6758
6902
  },
6759
6903
  },
6760
6904
  },
6905
+ AppBskyGraphGetActorStarterPacks: {
6906
+ lexicon: 1,
6907
+ id: 'app.bsky.graph.getActorStarterPacks',
6908
+ defs: {
6909
+ main: {
6910
+ type: 'query',
6911
+ description: 'Get a list of starter packs created by the actor.',
6912
+ parameters: {
6913
+ type: 'params',
6914
+ required: ['actor'],
6915
+ properties: {
6916
+ actor: {
6917
+ type: 'string',
6918
+ format: 'at-identifier',
6919
+ },
6920
+ limit: {
6921
+ type: 'integer',
6922
+ minimum: 1,
6923
+ maximum: 100,
6924
+ default: 50,
6925
+ },
6926
+ cursor: {
6927
+ type: 'string',
6928
+ },
6929
+ },
6930
+ },
6931
+ output: {
6932
+ encoding: 'application/json',
6933
+ schema: {
6934
+ type: 'object',
6935
+ required: ['starterPacks'],
6936
+ properties: {
6937
+ cursor: {
6938
+ type: 'string',
6939
+ },
6940
+ starterPacks: {
6941
+ type: 'array',
6942
+ items: {
6943
+ type: 'ref',
6944
+ ref: 'lex:app.bsky.graph.defs#starterPackViewBasic',
6945
+ },
6946
+ },
6947
+ },
6948
+ },
6949
+ },
6950
+ },
6951
+ },
6952
+ },
6761
6953
  AppBskyGraphGetBlocks: {
6762
6954
  lexicon: 1,
6763
6955
  id: 'app.bsky.graph.getBlocks',
@@ -7247,6 +7439,80 @@ exports.schemaDict = {
7247
7439
  },
7248
7440
  },
7249
7441
  },
7442
+ AppBskyGraphGetStarterPack: {
7443
+ lexicon: 1,
7444
+ id: 'app.bsky.graph.getStarterPack',
7445
+ defs: {
7446
+ main: {
7447
+ type: 'query',
7448
+ description: 'Gets a view of a starter pack.',
7449
+ parameters: {
7450
+ type: 'params',
7451
+ required: ['starterPack'],
7452
+ properties: {
7453
+ starterPack: {
7454
+ type: 'string',
7455
+ format: 'at-uri',
7456
+ description: 'Reference (AT-URI) of the starter pack record.',
7457
+ },
7458
+ },
7459
+ },
7460
+ output: {
7461
+ encoding: 'application/json',
7462
+ schema: {
7463
+ type: 'object',
7464
+ required: ['starterPack'],
7465
+ properties: {
7466
+ starterPack: {
7467
+ type: 'ref',
7468
+ ref: 'lex:app.bsky.graph.defs#starterPackView',
7469
+ },
7470
+ },
7471
+ },
7472
+ },
7473
+ },
7474
+ },
7475
+ },
7476
+ AppBskyGraphGetStarterPacks: {
7477
+ lexicon: 1,
7478
+ id: 'app.bsky.graph.getStarterPacks',
7479
+ defs: {
7480
+ main: {
7481
+ type: 'query',
7482
+ description: 'Get views for a list of starter packs.',
7483
+ parameters: {
7484
+ type: 'params',
7485
+ required: ['uris'],
7486
+ properties: {
7487
+ uris: {
7488
+ type: 'array',
7489
+ items: {
7490
+ type: 'string',
7491
+ format: 'at-uri',
7492
+ },
7493
+ maxLength: 25,
7494
+ },
7495
+ },
7496
+ },
7497
+ output: {
7498
+ encoding: 'application/json',
7499
+ schema: {
7500
+ type: 'object',
7501
+ required: ['starterPacks'],
7502
+ properties: {
7503
+ starterPacks: {
7504
+ type: 'array',
7505
+ items: {
7506
+ type: 'ref',
7507
+ ref: 'lex:app.bsky.graph.defs#starterPackViewBasic',
7508
+ },
7509
+ },
7510
+ },
7511
+ },
7512
+ },
7513
+ },
7514
+ },
7515
+ },
7250
7516
  AppBskyGraphGetSuggestedFollowsByActor: {
7251
7517
  lexicon: 1,
7252
7518
  id: 'app.bsky.graph.getSuggestedFollowsByActor',
@@ -7462,6 +7728,69 @@ exports.schemaDict = {
7462
7728
  },
7463
7729
  },
7464
7730
  },
7731
+ AppBskyGraphStarterpack: {
7732
+ lexicon: 1,
7733
+ id: 'app.bsky.graph.starterpack',
7734
+ defs: {
7735
+ main: {
7736
+ type: 'record',
7737
+ description: 'Record defining a starter pack of actors and feeds for new users.',
7738
+ key: 'tid',
7739
+ record: {
7740
+ type: 'object',
7741
+ required: ['name', 'list', 'createdAt'],
7742
+ properties: {
7743
+ name: {
7744
+ type: 'string',
7745
+ maxGraphemes: 50,
7746
+ maxLength: 500,
7747
+ minLength: 1,
7748
+ description: 'Display name for starter pack; can not be empty.',
7749
+ },
7750
+ description: {
7751
+ type: 'string',
7752
+ maxGraphemes: 300,
7753
+ maxLength: 3000,
7754
+ },
7755
+ descriptionFacets: {
7756
+ type: 'array',
7757
+ items: {
7758
+ type: 'ref',
7759
+ ref: 'lex:app.bsky.richtext.facet',
7760
+ },
7761
+ },
7762
+ list: {
7763
+ type: 'string',
7764
+ format: 'at-uri',
7765
+ description: 'Reference (AT-URI) to the list record.',
7766
+ },
7767
+ feeds: {
7768
+ type: 'array',
7769
+ maxLength: 3,
7770
+ items: {
7771
+ type: 'ref',
7772
+ ref: 'lex:app.bsky.graph.starterpack#feedItem',
7773
+ },
7774
+ },
7775
+ createdAt: {
7776
+ type: 'string',
7777
+ format: 'datetime',
7778
+ },
7779
+ },
7780
+ },
7781
+ },
7782
+ feedItem: {
7783
+ type: 'object',
7784
+ required: ['uri'],
7785
+ properties: {
7786
+ uri: {
7787
+ type: 'string',
7788
+ format: 'at-uri',
7789
+ },
7790
+ },
7791
+ },
7792
+ },
7793
+ },
7465
7794
  AppBskyGraphUnmuteActor: {
7466
7795
  lexicon: 1,
7467
7796
  id: 'app.bsky.graph.unmuteActor',
@@ -7827,7 +8156,7 @@ exports.schemaDict = {
7827
8156
  },
7828
8157
  reason: {
7829
8158
  type: 'string',
7830
- description: "Expected values are 'like', 'repost', 'follow', 'mention', 'reply', and 'quote'.",
8159
+ description: "Expected values are 'like', 'repost', 'follow', 'mention', 'reply', 'quote', and 'starterpack-joined'.",
7831
8160
  knownValues: [
7832
8161
  'like',
7833
8162
  'repost',
@@ -7835,6 +8164,7 @@ exports.schemaDict = {
7835
8164
  'mention',
7836
8165
  'reply',
7837
8166
  'quote',
8167
+ 'starterpack-joined',
7838
8168
  ],
7839
8169
  },
7840
8170
  reasonSubject: {
@@ -9364,6 +9694,7 @@ exports.ids = {
9364
9694
  AppBskyGraphBlock: 'app.bsky.graph.block',
9365
9695
  AppBskyGraphDefs: 'app.bsky.graph.defs',
9366
9696
  AppBskyGraphFollow: 'app.bsky.graph.follow',
9697
+ AppBskyGraphGetActorStarterPacks: 'app.bsky.graph.getActorStarterPacks',
9367
9698
  AppBskyGraphGetBlocks: 'app.bsky.graph.getBlocks',
9368
9699
  AppBskyGraphGetFollowers: 'app.bsky.graph.getFollowers',
9369
9700
  AppBskyGraphGetFollows: 'app.bsky.graph.getFollows',
@@ -9374,6 +9705,8 @@ exports.ids = {
9374
9705
  AppBskyGraphGetLists: 'app.bsky.graph.getLists',
9375
9706
  AppBskyGraphGetMutes: 'app.bsky.graph.getMutes',
9376
9707
  AppBskyGraphGetRelationships: 'app.bsky.graph.getRelationships',
9708
+ AppBskyGraphGetStarterPack: 'app.bsky.graph.getStarterPack',
9709
+ AppBskyGraphGetStarterPacks: 'app.bsky.graph.getStarterPacks',
9377
9710
  AppBskyGraphGetSuggestedFollowsByActor: 'app.bsky.graph.getSuggestedFollowsByActor',
9378
9711
  AppBskyGraphList: 'app.bsky.graph.list',
9379
9712
  AppBskyGraphListblock: 'app.bsky.graph.listblock',
@@ -9381,6 +9714,7 @@ exports.ids = {
9381
9714
  AppBskyGraphMuteActor: 'app.bsky.graph.muteActor',
9382
9715
  AppBskyGraphMuteActorList: 'app.bsky.graph.muteActorList',
9383
9716
  AppBskyGraphMuteThread: 'app.bsky.graph.muteThread',
9717
+ AppBskyGraphStarterpack: 'app.bsky.graph.starterpack',
9384
9718
  AppBskyGraphUnmuteActor: 'app.bsky.graph.unmuteActor',
9385
9719
  AppBskyGraphUnmuteActorList: 'app.bsky.graph.unmuteActorList',
9386
9720
  AppBskyGraphUnmuteThread: 'app.bsky.graph.unmuteThread',