sass-template-common 0.9.239 → 0.9.241

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.
@@ -497,7 +497,13 @@ export declare class CommonServices {
497
497
  }, any, {}>> | undefined;
498
498
  getMainMenu: (params: Params) => Promise<AxiosResponse<{
499
499
  data: Array<MenuResponse>;
500
- }, any, {}>> | undefined;
500
+ }, any, {}> | AxiosResponse<{
501
+ data: Array<MenuResponse>;
502
+ }, any, {}> | {
503
+ data: {
504
+ data: Array<MenuResponse>;
505
+ };
506
+ } | undefined> | undefined;
501
507
  getNewsListZone: (params: Params) => Promise<AxiosResponse<NewListResponse, any, {}>> | undefined;
502
508
  getNewsListZoneSection: (params: Params) => Promise<AxiosResponse<NewListResponse, any, {}>> | undefined;
503
509
  getNewsList: (params: Params) => Promise<AxiosResponse<NewListResponse, any, {}>> | undefined;
@@ -521,9 +527,11 @@ export declare class CommonServices {
521
527
  getVideosList: (params: Params) => Promise<AxiosResponse<{
522
528
  data: Array<VideoResponseData>;
523
529
  }, any, {}>> | undefined;
524
- getBanners: (params: Params) => Promise<AxiosResponse<{
525
- data: Array<BannerResponse>;
526
- }, any, {}> | undefined>;
530
+ getBanners: (params: Params) => Promise<{
531
+ data: {
532
+ data: Array<BannerResponse>;
533
+ };
534
+ } | undefined>;
527
535
  getPages: (params: Params) => Promise<AxiosResponse<{
528
536
  data: Array<FreeZoneResponse>;
529
537
  }, any, {}>> | undefined;