@atproto/api 0.20.30 → 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 +12 -0
- package/dist/client/lexicons.d.ts +44 -0
- package/dist/client/lexicons.d.ts.map +1 -1
- package/dist/client/lexicons.js +22 -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/dist/client/types/app/bsky/unspecced/defs.d.ts +2 -0
- package/dist/client/types/app/bsky/unspecced/defs.d.ts.map +1 -1
- package/dist/client/types/app/bsky/unspecced/defs.js.map +1 -1
- package/dist/client/types/app/bsky/unspecced/getTrends.d.ts +2 -0
- package/dist/client/types/app/bsky/unspecced/getTrends.d.ts.map +1 -1
- package/dist/client/types/app/bsky/unspecced/getTrends.js.map +1 -1
- package/dist/client/types/app/bsky/unspecced/getTrendsSkeleton.d.ts +2 -0
- package/dist/client/types/app/bsky/unspecced/getTrendsSkeleton.d.ts.map +1 -1
- package/dist/client/types/app/bsky/unspecced/getTrendsSkeleton.js.map +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
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
|
+
|
|
9
|
+
## 0.20.31
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [#5254](https://github.com/bluesky-social/atproto/pull/5254) [`7fab73c`](https://github.com/bluesky-social/atproto/commit/7fab73c931d608730bbad6275184ec60259042aa) Thanks [@ds-boyce](https://github.com/ds-boyce)! - Add description to trending topics
|
|
14
|
+
|
|
3
15
|
## 0.20.30
|
|
4
16
|
|
|
5
17
|
### 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: {
|
|
@@ -7819,6 +7827,9 @@ export declare const schemaDict: {
|
|
|
7819
7827
|
readonly displayName: {
|
|
7820
7828
|
readonly type: 'string';
|
|
7821
7829
|
};
|
|
7830
|
+
readonly description: {
|
|
7831
|
+
readonly type: 'string';
|
|
7832
|
+
};
|
|
7822
7833
|
readonly link: {
|
|
7823
7834
|
readonly type: 'string';
|
|
7824
7835
|
};
|
|
@@ -7855,6 +7866,9 @@ export declare const schemaDict: {
|
|
|
7855
7866
|
readonly displayName: {
|
|
7856
7867
|
readonly type: 'string';
|
|
7857
7868
|
};
|
|
7869
|
+
readonly description: {
|
|
7870
|
+
readonly type: 'string';
|
|
7871
|
+
};
|
|
7858
7872
|
readonly link: {
|
|
7859
7873
|
readonly type: 'string';
|
|
7860
7874
|
};
|
|
@@ -9155,6 +9169,10 @@ export declare const schemaDict: {
|
|
|
9155
9169
|
readonly ref: 'lex:app.bsky.unspecced.defs#trendView';
|
|
9156
9170
|
};
|
|
9157
9171
|
};
|
|
9172
|
+
readonly recIdStr: {
|
|
9173
|
+
readonly type: 'string';
|
|
9174
|
+
readonly description: 'Snowflake for this recommendation, use when submitting recommendation events.';
|
|
9175
|
+
};
|
|
9158
9176
|
};
|
|
9159
9177
|
};
|
|
9160
9178
|
};
|
|
@@ -9197,6 +9215,10 @@ export declare const schemaDict: {
|
|
|
9197
9215
|
readonly ref: 'lex:app.bsky.unspecced.defs#skeletonTrend';
|
|
9198
9216
|
};
|
|
9199
9217
|
};
|
|
9218
|
+
readonly recIdStr: {
|
|
9219
|
+
readonly type: 'string';
|
|
9220
|
+
readonly description: 'Snowflake for this recommendation, use when submitting recommendation events.';
|
|
9221
|
+
};
|
|
9200
9222
|
};
|
|
9201
9223
|
};
|
|
9202
9224
|
};
|
|
@@ -30045,6 +30067,10 @@ export declare const schemas: ({
|
|
|
30045
30067
|
readonly cursor: {
|
|
30046
30068
|
readonly type: 'string';
|
|
30047
30069
|
};
|
|
30070
|
+
readonly sort: {
|
|
30071
|
+
readonly type: 'string';
|
|
30072
|
+
readonly knownValues: ["latest", "top"];
|
|
30073
|
+
};
|
|
30048
30074
|
};
|
|
30049
30075
|
};
|
|
30050
30076
|
readonly output: {
|
|
@@ -30096,6 +30122,10 @@ export declare const schemas: ({
|
|
|
30096
30122
|
readonly cursor: {
|
|
30097
30123
|
readonly type: 'string';
|
|
30098
30124
|
};
|
|
30125
|
+
readonly sort: {
|
|
30126
|
+
readonly type: 'string';
|
|
30127
|
+
readonly knownValues: ["latest", "top"];
|
|
30128
|
+
};
|
|
30099
30129
|
};
|
|
30100
30130
|
};
|
|
30101
30131
|
readonly output: {
|
|
@@ -32119,6 +32149,9 @@ export declare const schemas: ({
|
|
|
32119
32149
|
readonly displayName: {
|
|
32120
32150
|
readonly type: 'string';
|
|
32121
32151
|
};
|
|
32152
|
+
readonly description: {
|
|
32153
|
+
readonly type: 'string';
|
|
32154
|
+
};
|
|
32122
32155
|
readonly link: {
|
|
32123
32156
|
readonly type: 'string';
|
|
32124
32157
|
};
|
|
@@ -32155,6 +32188,9 @@ export declare const schemas: ({
|
|
|
32155
32188
|
readonly displayName: {
|
|
32156
32189
|
readonly type: 'string';
|
|
32157
32190
|
};
|
|
32191
|
+
readonly description: {
|
|
32192
|
+
readonly type: 'string';
|
|
32193
|
+
};
|
|
32158
32194
|
readonly link: {
|
|
32159
32195
|
readonly type: 'string';
|
|
32160
32196
|
};
|
|
@@ -33430,6 +33466,10 @@ export declare const schemas: ({
|
|
|
33430
33466
|
readonly ref: 'lex:app.bsky.unspecced.defs#trendView';
|
|
33431
33467
|
};
|
|
33432
33468
|
};
|
|
33469
|
+
readonly recIdStr: {
|
|
33470
|
+
readonly type: 'string';
|
|
33471
|
+
readonly description: 'Snowflake for this recommendation, use when submitting recommendation events.';
|
|
33472
|
+
};
|
|
33433
33473
|
};
|
|
33434
33474
|
};
|
|
33435
33475
|
};
|
|
@@ -33471,6 +33511,10 @@ export declare const schemas: ({
|
|
|
33471
33511
|
readonly ref: 'lex:app.bsky.unspecced.defs#skeletonTrend';
|
|
33472
33512
|
};
|
|
33473
33513
|
};
|
|
33514
|
+
readonly recIdStr: {
|
|
33515
|
+
readonly type: 'string';
|
|
33516
|
+
readonly description: 'Snowflake for this recommendation, use when submitting recommendation events.';
|
|
33517
|
+
};
|
|
33474
33518
|
};
|
|
33475
33519
|
};
|
|
33476
33520
|
};
|