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