Skip to content

Commit 7eb309b

Browse files
chore: Update lexicons (#43)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent d0da928 commit 7eb309b

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

packages/lexicons/src/lib/lexicons.ts

+12-2
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
* @module
66
* Contains type declarations for Bluesky lexicons
77
* @generated
8-
* Generated on: 2025-01-17T07:29:49.080Z
8+
* Generated on: 2025-01-19T08:09:58.687Z
99
* Version: main
10-
* Source: https://github.com/bluesky-social/atproto/tree/07f11d3e0c46739bea93415fcd1439be35a6a266/lexicons
10+
* Source: https://github.com/bluesky-social/atproto/tree/cbf17066f314fbc7f2e943127ee4a9f589f8bec2/lexicons
1111
*/
1212

1313
/** Base type with optional type field */
@@ -629,6 +629,8 @@ export declare namespace AppBskyFeedDefs {
629629
type ClickthroughEmbed = "app.bsky.feed.defs#clickthroughEmbed";
630630
type ClickthroughItem = "app.bsky.feed.defs#clickthroughItem";
631631
type ClickthroughReposter = "app.bsky.feed.defs#clickthroughReposter";
632+
type ContentModeUnspecified = "app.bsky.feed.defs#contentModeUnspecified";
633+
type ContentModeVideo = "app.bsky.feed.defs#contentModeVideo";
632634
interface FeedViewPost extends TypedBase {
633635
post: PostView;
634636
/**
@@ -648,6 +650,10 @@ export declare namespace AppBskyFeedDefs {
648650
uri: At.Uri;
649651
acceptsInteractions?: boolean;
650652
avatar?: string;
653+
contentMode?:
654+
| "app.bsky.feed.defs#contentModeUnspecified"
655+
| "app.bsky.feed.defs#contentModeVideo"
656+
| (string & {});
651657
/**
652658
* Maximum string length: 3000
653659
* Maximum grapheme length: 300
@@ -795,6 +801,10 @@ export declare namespace AppBskyFeedGenerator {
795801
/** Declaration that a feed accepts feedback interactions from a client through app.bsky.feed.sendInteractions */
796802
acceptsInteractions?: boolean;
797803
avatar?: At.Blob;
804+
contentMode?:
805+
| "app.bsky.feed.defs#contentModeUnspecified"
806+
| "app.bsky.feed.defs#contentModeVideo"
807+
| (string & {});
798808
/**
799809
* Maximum string length: 3000
800810
* Maximum grapheme length: 300

0 commit comments

Comments
 (0)