@snabcentr/client-core 2.66.12 → 2.66.13
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/auth/services/sc-token.service.d.ts +3 -3
- package/esm2022/auth/services/sc-token.service.mjs +9 -3
- package/esm2022/seo/services/sc-seo.service.mjs +9 -6
- package/esm2022/tokens/sc-default-page-meta.mjs +7 -3
- package/fesm2022/snabcentr-client-core.mjs +22 -9
- package/fesm2022/snabcentr-client-core.mjs.map +1 -1
- package/package.json +1 -1
- package/seo/services/sc-seo.service.d.ts +1 -1
- package/tokens/sc-default-page-meta.d.ts +6 -2
package/package.json
CHANGED
|
@@ -5,6 +5,10 @@ import { ScIDefaultPageMeta } from '../seo/interfaces/sc-i-default-page-meta';
|
|
|
5
5
|
*/
|
|
6
6
|
export declare const SC_DEFAULT_PAGE_META: InjectionToken<ScIDefaultPageMeta>;
|
|
7
7
|
/**
|
|
8
|
-
* Токен внедрения мета-данных страницы каталога.
|
|
8
|
+
* Токен внедрения мета-данных страницы корневого каталога.
|
|
9
9
|
*/
|
|
10
|
-
export declare const
|
|
10
|
+
export declare const SC_CATALOG_ROOT_PAGE_META: InjectionToken<ScIDefaultPageMeta>;
|
|
11
|
+
/**
|
|
12
|
+
* Токен внедрения мета-данных страницы элемента каталога.
|
|
13
|
+
*/
|
|
14
|
+
export declare const SC_CATALOG_ITEM_PAGE_META: InjectionToken<ScIDefaultPageMeta>;
|