zarebin-player-library 1.0.37 → 1.0.39

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.
@@ -1143,8 +1143,8 @@ export type Ad = {
1143
1143
  mandatory_play_time: number;
1144
1144
  channel: number;
1145
1145
  banner?: string;
1146
- video_id?: number;
1147
- user_id?: number;
1146
+ video_id?: string;
1147
+ user_id?: number | null;
1148
1148
  content_id?: number;
1149
1149
  content_type?: number;
1150
1150
  };
@@ -69247,8 +69247,8 @@ var VideoArea = () => {
69247
69247
  dispatch(setAdData({
69248
69248
  ...getRandomAd(ads),
69249
69249
  banner: details.banner,
69250
- video_id: details.id,
69251
- user_id: +params.user_id,
69250
+ video_id: params.id,
69251
+ user_id: details.user_id,
69252
69252
  content_id: details.content_id,
69253
69253
  content_type: +details.content_type
69254
69254
  }));