5
5
* @module
6
6
* Contains type declarations for Bluesky lexicons
7
7
* @generated
8
- * Generated on: 2025-01-17T07:29:49.080Z
8
+ * Generated on: 2025-01-19T08:09:58.687Z
9
9
* Version: main
10
- * Source: https://github.com/bluesky-social/atproto/tree/07f11d3e0c46739bea93415fcd1439be35a6a266 /lexicons
10
+ * Source: https://github.com/bluesky-social/atproto/tree/cbf17066f314fbc7f2e943127ee4a9f589f8bec2 /lexicons
11
11
*/
12
12
13
13
/** Base type with optional type field */
@@ -629,6 +629,8 @@ export declare namespace AppBskyFeedDefs {
629
629
type ClickthroughEmbed = "app.bsky.feed.defs#clickthroughEmbed" ;
630
630
type ClickthroughItem = "app.bsky.feed.defs#clickthroughItem" ;
631
631
type ClickthroughReposter = "app.bsky.feed.defs#clickthroughReposter" ;
632
+ type ContentModeUnspecified = "app.bsky.feed.defs#contentModeUnspecified" ;
633
+ type ContentModeVideo = "app.bsky.feed.defs#contentModeVideo" ;
632
634
interface FeedViewPost extends TypedBase {
633
635
post : PostView ;
634
636
/**
@@ -648,6 +650,10 @@ export declare namespace AppBskyFeedDefs {
648
650
uri : At . Uri ;
649
651
acceptsInteractions ?: boolean ;
650
652
avatar ?: string ;
653
+ contentMode ?:
654
+ | "app.bsky.feed.defs#contentModeUnspecified"
655
+ | "app.bsky.feed.defs#contentModeVideo"
656
+ | ( string & { } ) ;
651
657
/**
652
658
* Maximum string length: 3000
653
659
* Maximum grapheme length: 300
@@ -795,6 +801,10 @@ export declare namespace AppBskyFeedGenerator {
795
801
/** Declaration that a feed accepts feedback interactions from a client through app.bsky.feed.sendInteractions */
796
802
acceptsInteractions ?: boolean ;
797
803
avatar ?: At . Blob ;
804
+ contentMode ?:
805
+ | "app.bsky.feed.defs#contentModeUnspecified"
806
+ | "app.bsky.feed.defs#contentModeVideo"
807
+ | ( string & { } ) ;
798
808
/**
799
809
* Maximum string length: 3000
800
810
* Maximum grapheme length: 300
0 commit comments