sass-template-common 0.3.120 → 0.3.122

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.
@@ -270,6 +270,9 @@ export declare class CommonServices {
270
270
  getNewsListPath: (params?: Params) => Promise<AxiosResponse<{
271
271
  data: Array<NewListResponseData>;
272
272
  }, any, {}>> | undefined;
273
+ getNewsSchemasImages: (params?: Params) => Promise<AxiosResponse<{
274
+ data: Array<NewListResponseData>;
275
+ }, any, {}>> | undefined;
273
276
  getNewsItemsRelated: (path: string, params?: Params) => Promise<AxiosResponse<NewListResponse, any, {}> | {
274
277
  data: {
275
278
  data: never[];
@@ -299,6 +302,7 @@ export declare class CommonServices {
299
302
  newsRelatedResponses: any[];
300
303
  itemList: any;
301
304
  newsRelatedListResponses: (NewListResponseData[] | undefined)[];
305
+ schemasImages: NewListResponseData[];
302
306
  }>;
303
307
  }
304
308