@atproto/bsky 0.0.263 → 0.0.265

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 (28) hide show
  1. package/CHANGELOG.md +21 -0
  2. package/dist/api/app/bsky/graph/getFollowers.js +1 -0
  3. package/dist/api/app/bsky/graph/getFollowers.js.map +1 -1
  4. package/dist/api/app/bsky/graph/getFollows.js +1 -0
  5. package/dist/api/app/bsky/graph/getFollows.js.map +1 -1
  6. package/dist/api/app/bsky/unspecced/getTrends.js +1 -0
  7. package/dist/api/app/bsky/unspecced/getTrends.js.map +1 -1
  8. package/dist/hydration/graph.d.ts +2 -0
  9. package/dist/hydration/graph.d.ts.map +1 -1
  10. package/dist/hydration/graph.js +4 -2
  11. package/dist/hydration/graph.js.map +1 -1
  12. package/dist/lexicons/app/bsky/graph/getFollowers.defs.d.ts +6 -0
  13. package/dist/lexicons/app/bsky/graph/getFollowers.defs.d.ts.map +1 -1
  14. package/dist/lexicons/app/bsky/graph/getFollowers.defs.js +2 -0
  15. package/dist/lexicons/app/bsky/graph/getFollowers.defs.js.map +1 -1
  16. package/dist/lexicons/app/bsky/graph/getFollows.defs.d.ts +6 -0
  17. package/dist/lexicons/app/bsky/graph/getFollows.defs.d.ts.map +1 -1
  18. package/dist/lexicons/app/bsky/graph/getFollows.defs.js +2 -0
  19. package/dist/lexicons/app/bsky/graph/getFollows.defs.js.map +1 -1
  20. package/dist/lexicons/app/bsky/unspecced/defs.defs.d.ts +2 -0
  21. package/dist/lexicons/app/bsky/unspecced/defs.defs.d.ts.map +1 -1
  22. package/dist/lexicons/app/bsky/unspecced/defs.defs.js +2 -0
  23. package/dist/lexicons/app/bsky/unspecced/defs.defs.js.map +1 -1
  24. package/dist/proto/bsky_pb.d.ts +8 -0
  25. package/dist/proto/bsky_pb.d.ts.map +1 -1
  26. package/dist/proto/bsky_pb.js +10 -0
  27. package/dist/proto/bsky_pb.js.map +1 -1
  28. package/package.json +8 -8
@@ -1501,6 +1501,10 @@ export class GetFollowersRequest extends Message {
1501
1501
  * @generated from field: string cursor = 3;
1502
1502
  */
1503
1503
  this.cursor = "";
1504
+ /**
1505
+ * @generated from field: string sort = 4;
1506
+ */
1507
+ this.sort = "";
1504
1508
  proto3.util.initPartial(data, this);
1505
1509
  }
1506
1510
  static { this.runtime = proto3; }
@@ -1509,6 +1513,7 @@ export class GetFollowersRequest extends Message {
1509
1513
  { no: 1, name: "actor_did", kind: "scalar", T: 9 /* ScalarType.STRING */ },
1510
1514
  { no: 2, name: "limit", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
1511
1515
  { no: 3, name: "cursor", kind: "scalar", T: 9 /* ScalarType.STRING */ },
1516
+ { no: 4, name: "sort", kind: "scalar", T: 9 /* ScalarType.STRING */ },
1512
1517
  ]); }
1513
1518
  static fromBinary(bytes, options) {
1514
1519
  return new GetFollowersRequest().fromBinary(bytes, options);
@@ -1619,6 +1624,10 @@ export class GetFollowsRequest extends Message {
1619
1624
  * @generated from field: string cursor = 3;
1620
1625
  */
1621
1626
  this.cursor = "";
1627
+ /**
1628
+ * @generated from field: string sort = 4;
1629
+ */
1630
+ this.sort = "";
1622
1631
  proto3.util.initPartial(data, this);
1623
1632
  }
1624
1633
  static { this.runtime = proto3; }
@@ -1627,6 +1636,7 @@ export class GetFollowsRequest extends Message {
1627
1636
  { no: 1, name: "actor_did", kind: "scalar", T: 9 /* ScalarType.STRING */ },
1628
1637
  { no: 2, name: "limit", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
1629
1638
  { no: 3, name: "cursor", kind: "scalar", T: 9 /* ScalarType.STRING */ },
1639
+ { no: 4, name: "sort", kind: "scalar", T: 9 /* ScalarType.STRING */ },
1630
1640
  ]); }
1631
1641
  static fromBinary(bytes, options) {
1632
1642
  return new GetFollowsRequest().fromBinary(bytes, options);