sass-template-common 0.1.82 → 0.1.85

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.
@@ -254,6 +254,7 @@ export declare class CommonServices {
254
254
  getNewsMultimedia: (params: Params) => Promise<AxiosResponse< {
255
255
  data: {
256
256
  gallery: Array<Preview>;
257
+ videos: Array<VideoItem>;
257
258
  }[];
258
259
  }, any, {}>> | undefined;
259
260
  getNewsItemsList: (params: Params) => Promise<AxiosResponse< {
@@ -1021,6 +1022,8 @@ export declare type LibraryConfig = {
1021
1022
  COMMENTS_CAPTCHA_API_KEY?: string;
1022
1023
  CAPTCHA_KEY_V2?: string;
1023
1024
  SHOW_TAG_BY_SECTION?: boolean;
1025
+ SHOW_NEWS_MORE_NEWS?: boolean;
1026
+ SHOW_NEWS_RELATED_NEWS?: boolean;
1024
1027
  };
1025
1028
 
1026
1029
  export declare interface Link {
@@ -1241,6 +1244,10 @@ export declare interface NewListResponse {
1241
1244
  }
1242
1245
 
1243
1246
  export declare type NewListResponseData = {
1247
+ external?: {
1248
+ iframe?: string;
1249
+ httpstream?: boolean;
1250
+ };
1244
1251
  info: Info;
1245
1252
  config?: any;
1246
1253
  social?: {
@@ -2305,6 +2312,17 @@ export declare const VideoEmbeddedHeader: ({ newsformated, internal, }: {
2305
2312
  internal?: string;
2306
2313
  }) => Promise<JSX.Element | undefined>;
2307
2314
 
2315
+ export declare interface VideoItem {
2316
+ type: string;
2317
+ path: string;
2318
+ title: string;
2319
+ description: string;
2320
+ duration: string;
2321
+ size?: string;
2322
+ image: Preview;
2323
+ code: string;
2324
+ }
2325
+
2308
2326
  export declare interface VideoResponseData {
2309
2327
  config: {
2310
2328
  autoplay: boolean;