zarebin-player-library 1.1.6 → 1.1.7

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.
@@ -445,8 +445,8 @@ export type Ad = {
445
445
  mandatory_play_time: number;
446
446
  channel: number;
447
447
  banner?: string;
448
- video_id?: number;
449
- user_id?: number;
448
+ video_id?: string;
449
+ user_id?: number | null;
450
450
  content_id?: number;
451
451
  content_type?: number;
452
452
  };
@@ -69230,8 +69230,8 @@ var VideoArea = () => {
69230
69230
  dispatch(setAdData({
69231
69231
  ...getRandomAd(ads),
69232
69232
  banner: details.banner,
69233
- video_id: details.id,
69234
- user_id: +params.user_id,
69233
+ video_id: params.id,
69234
+ user_id: details.user_id,
69235
69235
  content_id: details.content_id,
69236
69236
  content_type: +details.content_type
69237
69237
  }));