@parra/parra-js-sdk 0.3.316 → 0.3.318
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 +2 -1
- package/package.json +1 -1
package/dist/ParraAPI.d.ts
CHANGED
|
@@ -783,6 +783,7 @@ export interface CreateCreatorAttachmentAttachmentRequestBody {
|
|
|
783
783
|
url: string;
|
|
784
784
|
}
|
|
785
785
|
export interface CreateCreatorUpdateRequestBody {
|
|
786
|
+
publish?: boolean | null;
|
|
786
787
|
title: string;
|
|
787
788
|
description?: string;
|
|
788
789
|
attachments?: Array<CreateCreatorAttachmentAttachmentRequestBody>;
|
|
@@ -862,7 +863,7 @@ export interface YoutubeVideo {
|
|
|
862
863
|
description?: string;
|
|
863
864
|
thumbnails: YoutubeThumbnails;
|
|
864
865
|
published_at: string;
|
|
865
|
-
live_broadcast_content
|
|
866
|
+
live_broadcast_content?: string | null;
|
|
866
867
|
statistics?: YoutubeStatistics | null;
|
|
867
868
|
}
|
|
868
869
|
export interface ContentCardBackground {
|