sass-template-common 0.1.84 → 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< {
@@ -1243,6 +1244,10 @@ export declare interface NewListResponse {
1243
1244
  }
1244
1245
 
1245
1246
  export declare type NewListResponseData = {
1247
+ external?: {
1248
+ iframe?: string;
1249
+ httpstream?: boolean;
1250
+ };
1246
1251
  info: Info;
1247
1252
  config?: any;
1248
1253
  social?: {
@@ -2307,6 +2312,17 @@ export declare const VideoEmbeddedHeader: ({ newsformated, internal, }: {
2307
2312
  internal?: string;
2308
2313
  }) => Promise<JSX.Element | undefined>;
2309
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
+
2310
2326
  export declare interface VideoResponseData {
2311
2327
  config: {
2312
2328
  autoplay: boolean;