dochub-sdk 0.1.356 → 0.1.358

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.
@@ -0,0 +1,8 @@
1
+ export enum DocHubSystemVariables {
2
+ // Корневой манифест DataLake
3
+ // Например: https://dochub.info/public/dochub,yaml
4
+ rootManifest = 'DOCHUB_ROOT_MANIFEST',
5
+ // Корневой url (главная страница)
6
+ // Например: /main
7
+ rootPage = 'DOCHUB_ROOT_PAGE'
8
+ }
package/index.ts CHANGED
@@ -29,6 +29,8 @@ export * from './schemas/dochub-yaml';
29
29
 
30
30
  export * from './plugins/manifest';
31
31
 
32
+ export * from './environments/variables';
33
+
32
34
  export const DocHub: IDocHubCore = dynamicProxy(() => window['DocHub']);
33
35
  export const Vue2 = () => window['Vue'];
34
36
  export const Vuetify2 = () => window['Vuetify'];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dochub-sdk",
3
- "version": "0.1.356",
3
+ "version": "0.1.358",
4
4
  "description": "The DocHub System Development Kit.",
5
5
  "private": false,
6
6
  "main": "index.ts",