@atproto/bsky 0.0.264 → 0.0.266
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 +18 -0
- package/dist/api/age-assurance/const.d.ts.map +1 -1
- package/dist/api/age-assurance/const.js +1 -0
- package/dist/api/age-assurance/const.js.map +1 -1
- package/dist/api/app/bsky/graph/getFollowers.js +1 -0
- package/dist/api/app/bsky/graph/getFollowers.js.map +1 -1
- package/dist/api/app/bsky/graph/getFollows.js +1 -0
- package/dist/api/app/bsky/graph/getFollows.js.map +1 -1
- package/dist/hydration/graph.d.ts +2 -0
- package/dist/hydration/graph.d.ts.map +1 -1
- package/dist/hydration/graph.js +4 -2
- package/dist/hydration/graph.js.map +1 -1
- package/dist/lexicons/app/bsky/ageassurance/defs.defs.d.ts +4 -0
- package/dist/lexicons/app/bsky/ageassurance/defs.defs.d.ts.map +1 -1
- package/dist/lexicons/app/bsky/ageassurance/defs.defs.js +3 -0
- package/dist/lexicons/app/bsky/ageassurance/defs.defs.js.map +1 -1
- package/dist/lexicons/app/bsky/graph/getFollowers.defs.d.ts +6 -0
- package/dist/lexicons/app/bsky/graph/getFollowers.defs.d.ts.map +1 -1
- package/dist/lexicons/app/bsky/graph/getFollowers.defs.js +2 -0
- package/dist/lexicons/app/bsky/graph/getFollowers.defs.js.map +1 -1
- package/dist/lexicons/app/bsky/graph/getFollows.defs.d.ts +6 -0
- package/dist/lexicons/app/bsky/graph/getFollows.defs.d.ts.map +1 -1
- package/dist/lexicons/app/bsky/graph/getFollows.defs.js +2 -0
- package/dist/lexicons/app/bsky/graph/getFollows.defs.js.map +1 -1
- package/dist/proto/bsky_pb.d.ts +8 -0
- package/dist/proto/bsky_pb.d.ts.map +1 -1
- package/dist/proto/bsky_pb.js +10 -0
- package/dist/proto/bsky_pb.js.map +1 -1
- package/package.json +6 -6
package/dist/proto/bsky_pb.js
CHANGED
|
@@ -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);
|