sass-template-common 0.10.29 → 0.10.31
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.
- package/dist/sass-template-common.d.ts +11 -33
- package/dist/sass-template-common.js +2099 -2021
- package/dist/sass-template-common.umd.cjs +26 -26
- package/package.json +1 -1
|
@@ -604,36 +604,16 @@ export declare class CommonServices {
|
|
|
604
604
|
data: Array<MenuResponse>;
|
|
605
605
|
};
|
|
606
606
|
}>;
|
|
607
|
-
getNewsListZone: (params: Params) => Promise<AxiosResponse<NewListResponse, any, {}
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
data: NewListResponse;
|
|
618
|
-
}> | undefined;
|
|
619
|
-
getNewsListSection: (params: Params) => Promise<AxiosResponse<NewListResponse, any, {}> | {
|
|
620
|
-
data: NewListResponse;
|
|
621
|
-
}> | undefined;
|
|
622
|
-
getNewsListAvanced: (params: Params) => Promise<AxiosResponse<NewListResponse, any, {}> | {
|
|
623
|
-
data: NewListResponse;
|
|
624
|
-
}> | undefined;
|
|
625
|
-
getNewsListTags: (params: Params) => Promise<AxiosResponse<NewListResponse, any, {}> | {
|
|
626
|
-
data: NewListResponse;
|
|
627
|
-
}> | undefined;
|
|
628
|
-
getNewsListTagEntity: (params: Params) => Promise<AxiosResponse<NewListResponse, any, {}> | {
|
|
629
|
-
data: NewListResponse;
|
|
630
|
-
}> | undefined;
|
|
631
|
-
getNewsListTagLite: (params: Params) => Promise<AxiosResponse<NewListResponse, any, {}> | {
|
|
632
|
-
data: NewListResponse;
|
|
633
|
-
}> | undefined;
|
|
634
|
-
getNewsListAutor: (params: Params) => Promise<AxiosResponse<NewListResponse, any, {}> | {
|
|
635
|
-
data: NewListResponse;
|
|
636
|
-
}> | undefined;
|
|
607
|
+
getNewsListZone: (params: Params) => Promise<AxiosResponse<NewListResponse, any, {}>>;
|
|
608
|
+
getNewsListZoneSection: (params: Params) => Promise<AxiosResponse<NewListResponse, any, {}>>;
|
|
609
|
+
getNewsList: (params: Params) => Promise<AxiosResponse<NewListResponse, any, {}>>;
|
|
610
|
+
getNewsListTag: (params: Params) => Promise<AxiosResponse<NewListResponse, any, {}>>;
|
|
611
|
+
getNewsListSection: (params: Params) => Promise<AxiosResponse<NewListResponse, any, {}>>;
|
|
612
|
+
getNewsListAvanced: (params: Params) => Promise<AxiosResponse<NewListResponse, any, {}>>;
|
|
613
|
+
getNewsListTags: (params: Params) => Promise<AxiosResponse<NewListResponse, any, {}>>;
|
|
614
|
+
getNewsListTagEntity: (params: Params) => Promise<AxiosResponse<NewListResponse, any, {}>>;
|
|
615
|
+
getNewsListTagLite: (params: Params) => Promise<AxiosResponse<NewListResponse, any, {}>>;
|
|
616
|
+
getNewsListAutor: (params: Params) => Promise<AxiosResponse<NewListResponse, any, {}>>;
|
|
637
617
|
getNewsSearch: (params: Params) => Promise<AxiosResponse<NewListResponse, any, {}>> | undefined;
|
|
638
618
|
getAutorInfo: (params: Params) => Promise<AxiosResponse<{
|
|
639
619
|
data: Array<AutorInfo>;
|
|
@@ -690,9 +670,7 @@ export declare class CommonServices {
|
|
|
690
670
|
search: AxiosResponse<NewListResponse, any, {}>;
|
|
691
671
|
lastNews?: undefined;
|
|
692
672
|
} | {
|
|
693
|
-
lastNews: AxiosResponse<NewListResponse, any, {}
|
|
694
|
-
data: NewListResponse;
|
|
695
|
-
} | undefined;
|
|
673
|
+
lastNews: AxiosResponse<NewListResponse, any, {}>;
|
|
696
674
|
search?: undefined;
|
|
697
675
|
}>;
|
|
698
676
|
commonNewsServices: (path: string, imgSizes?: {
|