@parra/parra-js-sdk 0.3.243 → 0.3.244
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/ParraAPI.d.ts +4 -1
- package/package.json +1 -1
package/dist/ParraAPI.d.ts
CHANGED
|
@@ -793,6 +793,9 @@ export interface FeedItemYoutubeVideoData {
|
|
|
793
793
|
published_at: string;
|
|
794
794
|
live_broadcast_content: string;
|
|
795
795
|
}
|
|
796
|
+
export interface ContentCardBackground {
|
|
797
|
+
image: ImageAssetStub | null;
|
|
798
|
+
}
|
|
796
799
|
export interface ContentCardAction {
|
|
797
800
|
url: string;
|
|
798
801
|
}
|
|
@@ -801,7 +804,7 @@ export interface ContentCard {
|
|
|
801
804
|
created_at: string;
|
|
802
805
|
updated_at: string;
|
|
803
806
|
deleted_at?: string | null;
|
|
804
|
-
|
|
807
|
+
background?: ContentCardBackground | null;
|
|
805
808
|
title?: string | null;
|
|
806
809
|
description?: string | null;
|
|
807
810
|
action?: ContentCardAction | null;
|