@llun/activities.schema 0.2.23 → 0.2.25
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/dist/cjs/mastodon/account.js +0 -3
- package/dist/cjs/mastodon/mediaAttachment/base.js +1 -1
- package/dist/esm/mastodon/account.js +0 -3
- package/dist/esm/mastodon/mediaAttachment/base.js +1 -1
- package/dist/types/mastodon/account.d.ts +0 -8
- package/dist/types/mastodon/mediaAttachment/audio.d.ts +3 -3
- package/dist/types/mastodon/mediaAttachment/base.d.ts +3 -3
- package/dist/types/mastodon/mediaAttachment/gifv.d.ts +3 -3
- package/dist/types/mastodon/mediaAttachment/image.d.ts +3 -3
- package/dist/types/mastodon/mediaAttachment/index.d.ts +30 -30
- package/dist/types/mastodon/mediaAttachment/unknown.d.ts +3 -3
- package/dist/types/mastodon/mediaAttachment/video.d.ts +3 -3
- package/dist/types/mastodon/status/base.d.ts +27 -39
- package/dist/types/mastodon/status/index.d.ts +66 -94
- package/package.json +1 -1
- package/src/mastodon/account.ts +0 -3
- package/src/mastodon/mediaAttachment/base.ts +1 -1
package/package.json
CHANGED
package/src/mastodon/account.ts
CHANGED
|
@@ -19,9 +19,6 @@ const BaseAccount = z.object({
|
|
|
19
19
|
url: z.string({
|
|
20
20
|
description: "The location of the user's profile page",
|
|
21
21
|
}),
|
|
22
|
-
uri: z.string({
|
|
23
|
-
description: "The location of the actor's profile page",
|
|
24
|
-
}),
|
|
25
22
|
display_name: z.string({
|
|
26
23
|
description: "The profile's display name",
|
|
27
24
|
}),
|
|
@@ -28,7 +28,7 @@ export const BaseMediaAttachment = z.object({
|
|
|
28
28
|
})
|
|
29
29
|
.nullable(),
|
|
30
30
|
|
|
31
|
-
|
|
31
|
+
blurhash: z
|
|
32
32
|
.string({
|
|
33
33
|
description:
|
|
34
34
|
"hash computed by the [BlurHash algorithm](https://github.com/woltapp/blurhash), for generating colorful preview thumbnails when media has not been downloaded yet.",
|