@parra/parra-js-sdk 0.3.619 → 0.3.620
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 -0
- package/package.json +1 -1
package/dist/ParraAPI.d.ts
CHANGED
@@ -3874,6 +3874,8 @@ export interface VideoStub {
|
|
3874
3874
|
live_broadcast_content?: string | null;
|
3875
3875
|
statistics?: YoutubeStatistics | null;
|
3876
3876
|
type: VideoType;
|
3877
|
+
comments_disabled: boolean;
|
3878
|
+
reactions_disabled: boolean;
|
3877
3879
|
disabled: boolean;
|
3878
3880
|
slug?: string | null;
|
3879
3881
|
paywall?: AppPaywallConfiguration | null;
|
@@ -3894,6 +3896,8 @@ export interface Video {
|
|
3894
3896
|
live_broadcast_content?: string | null;
|
3895
3897
|
statistics?: YoutubeStatistics | null;
|
3896
3898
|
type: VideoType;
|
3899
|
+
comments_disabled: boolean;
|
3900
|
+
reactions_disabled: boolean;
|
3897
3901
|
disabled: boolean;
|
3898
3902
|
slug?: string | null;
|
3899
3903
|
paywall?: AppPaywallConfiguration | null;
|