@atproto/api 0.20.38 → 0.20.39
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 +4 -4
- package/dist/client/lexicons.d.ts.map +1 -1
- package/dist/client/lexicons.js +2 -2
- package/dist/client/lexicons.js.map +1 -1
- package/dist/client/types/app/bsky/embed/video.d.ts +1 -1
- package/dist/client/types/app/bsky/embed/video.d.ts.map +1 -1
- package/dist/client/types/app/bsky/embed/video.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.39
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#5373](https://github.com/bluesky-social/atproto/pull/5373) [`b2de0ee`](https://github.com/bluesky-social/atproto/commit/b2de0ee1ccb70fac69be90037751ea30daa37e3f) Thanks [@blackmichael](https://github.com/blackmichael)! - Increase video embed size limits from 100MB to 300MB
|
|
8
|
+
|
|
3
9
|
## 0.20.38
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
|
@@ -3112,9 +3112,9 @@ export declare const schemaDict: {
|
|
|
3112
3112
|
readonly properties: {
|
|
3113
3113
|
readonly video: {
|
|
3114
3114
|
readonly type: 'blob';
|
|
3115
|
-
readonly description: 'The mp4 video file. May be up to
|
|
3115
|
+
readonly description: 'The mp4 video file. May be up to 300mb, formerly limited to 100mb.';
|
|
3116
3116
|
readonly accept: ["video/mp4"];
|
|
3117
|
-
readonly maxSize:
|
|
3117
|
+
readonly maxSize: 300000000;
|
|
3118
3118
|
};
|
|
3119
3119
|
readonly captions: {
|
|
3120
3120
|
readonly type: 'array';
|
|
@@ -27650,9 +27650,9 @@ export declare const schemas: ({
|
|
|
27650
27650
|
readonly properties: {
|
|
27651
27651
|
readonly video: {
|
|
27652
27652
|
readonly type: 'blob';
|
|
27653
|
-
readonly description: 'The mp4 video file. May be up to
|
|
27653
|
+
readonly description: 'The mp4 video file. May be up to 300mb, formerly limited to 100mb.';
|
|
27654
27654
|
readonly accept: ["video/mp4"];
|
|
27655
|
-
readonly maxSize:
|
|
27655
|
+
readonly maxSize: 300000000;
|
|
27656
27656
|
};
|
|
27657
27657
|
readonly captions: {
|
|
27658
27658
|
readonly type: 'array';
|