@atproto/api 0.20.31 → 0.20.32
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 +6 -0
- package/dist/client/lexicons.d.ts +16 -0
- package/dist/client/lexicons.d.ts.map +1 -1
- package/dist/client/lexicons.js +8 -0
- package/dist/client/lexicons.js.map +1 -1
- package/dist/client/types/app/bsky/graph/getFollowers.d.ts +1 -0
- package/dist/client/types/app/bsky/graph/getFollowers.d.ts.map +1 -1
- package/dist/client/types/app/bsky/graph/getFollowers.js.map +1 -1
- package/dist/client/types/app/bsky/graph/getFollows.d.ts +1 -0
- package/dist/client/types/app/bsky/graph/getFollows.d.ts.map +1 -1
- package/dist/client/types/app/bsky/graph/getFollows.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @atproto/api
|
|
2
2
|
|
|
3
|
+
## 0.20.32
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#5257](https://github.com/bluesky-social/atproto/pull/5257) [`e133a65`](https://github.com/bluesky-social/atproto/commit/e133a65cba992e6429d4526dc3e7cfe8bf87426f) Thanks [@rafaeleyng](https://github.com/rafaeleyng)! - Add sort parameter to getFollows and getFollowers
|
|
8
|
+
|
|
3
9
|
## 0.20.31
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
|
@@ -5702,6 +5702,10 @@ export declare const schemaDict: {
|
|
|
5702
5702
|
readonly cursor: {
|
|
5703
5703
|
readonly type: 'string';
|
|
5704
5704
|
};
|
|
5705
|
+
readonly sort: {
|
|
5706
|
+
readonly type: 'string';
|
|
5707
|
+
readonly knownValues: ["latest", "top"];
|
|
5708
|
+
};
|
|
5705
5709
|
};
|
|
5706
5710
|
};
|
|
5707
5711
|
readonly output: {
|
|
@@ -5754,6 +5758,10 @@ export declare const schemaDict: {
|
|
|
5754
5758
|
readonly cursor: {
|
|
5755
5759
|
readonly type: 'string';
|
|
5756
5760
|
};
|
|
5761
|
+
readonly sort: {
|
|
5762
|
+
readonly type: 'string';
|
|
5763
|
+
readonly knownValues: ["latest", "top"];
|
|
5764
|
+
};
|
|
5757
5765
|
};
|
|
5758
5766
|
};
|
|
5759
5767
|
readonly output: {
|
|
@@ -30059,6 +30067,10 @@ export declare const schemas: ({
|
|
|
30059
30067
|
readonly cursor: {
|
|
30060
30068
|
readonly type: 'string';
|
|
30061
30069
|
};
|
|
30070
|
+
readonly sort: {
|
|
30071
|
+
readonly type: 'string';
|
|
30072
|
+
readonly knownValues: ["latest", "top"];
|
|
30073
|
+
};
|
|
30062
30074
|
};
|
|
30063
30075
|
};
|
|
30064
30076
|
readonly output: {
|
|
@@ -30110,6 +30122,10 @@ export declare const schemas: ({
|
|
|
30110
30122
|
readonly cursor: {
|
|
30111
30123
|
readonly type: 'string';
|
|
30112
30124
|
};
|
|
30125
|
+
readonly sort: {
|
|
30126
|
+
readonly type: 'string';
|
|
30127
|
+
readonly knownValues: ["latest", "top"];
|
|
30128
|
+
};
|
|
30113
30129
|
};
|
|
30114
30130
|
};
|
|
30115
30131
|
readonly output: {
|