sass-template-common 0.10.28 → 0.10.30
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 +18 -11
- package/dist/sass-template-common.js +2273 -2168
- package/dist/sass-template-common.umd.cjs +27 -27
- package/package.json +1 -1
|
@@ -394,6 +394,13 @@ export declare function clearConfigOriginCache(cacheKey?: string): void;
|
|
|
394
394
|
|
|
395
395
|
export declare function clearConfigOriginComparisonCache(): void;
|
|
396
396
|
|
|
397
|
+
/**
|
|
398
|
+
* Timeout para listados CMS usados en SSR paralelo (`news-list-section`,
|
|
399
|
+
* `news-list-author`, etc.). Más corto que el axios global (10s): acota el
|
|
400
|
+
* peor caso sin cortar de más respuestas lentas pero válidas (~5–7s en frío).
|
|
401
|
+
*/
|
|
402
|
+
export declare const CMS_LIST_FETCH_TIMEOUT_MS = 8000;
|
|
403
|
+
|
|
397
404
|
export declare const coloringByStrokeSVGs: string[];
|
|
398
405
|
|
|
399
406
|
/** Textos del popup anónimo (AnonimusPopUp.tsx) */
|
|
@@ -597,16 +604,16 @@ export declare class CommonServices {
|
|
|
597
604
|
data: Array<MenuResponse>;
|
|
598
605
|
};
|
|
599
606
|
}>;
|
|
600
|
-
getNewsListZone: (params: Params) => Promise<AxiosResponse<NewListResponse, any, {}
|
|
601
|
-
getNewsListZoneSection: (params: Params) => Promise<AxiosResponse<NewListResponse, any, {}
|
|
602
|
-
getNewsList: (params: Params) => Promise<AxiosResponse<NewListResponse, any, {}
|
|
603
|
-
getNewsListTag: (params: Params) => Promise<AxiosResponse<NewListResponse, any, {}
|
|
604
|
-
getNewsListSection: (params: Params) => Promise<AxiosResponse<NewListResponse, any, {}
|
|
605
|
-
getNewsListAvanced: (params: Params) => Promise<AxiosResponse<NewListResponse, any, {}
|
|
606
|
-
getNewsListTags: (params: Params) => Promise<AxiosResponse<NewListResponse, any, {}
|
|
607
|
-
getNewsListTagEntity: (params: Params) => Promise<AxiosResponse<NewListResponse, any, {}
|
|
608
|
-
getNewsListTagLite: (params: Params) => Promise<AxiosResponse<NewListResponse, any, {}
|
|
609
|
-
getNewsListAutor: (params: Params) => Promise<AxiosResponse<NewListResponse, any, {}
|
|
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, {}>>;
|
|
610
617
|
getNewsSearch: (params: Params) => Promise<AxiosResponse<NewListResponse, any, {}>> | undefined;
|
|
611
618
|
getAutorInfo: (params: Params) => Promise<AxiosResponse<{
|
|
612
619
|
data: Array<AutorInfo>;
|
|
@@ -663,7 +670,7 @@ export declare class CommonServices {
|
|
|
663
670
|
search: AxiosResponse<NewListResponse, any, {}>;
|
|
664
671
|
lastNews?: undefined;
|
|
665
672
|
} | {
|
|
666
|
-
lastNews: AxiosResponse<NewListResponse, any, {}
|
|
673
|
+
lastNews: AxiosResponse<NewListResponse, any, {}>;
|
|
667
674
|
search?: undefined;
|
|
668
675
|
}>;
|
|
669
676
|
commonNewsServices: (path: string, imgSizes?: {
|