dochub-sdk 0.1.116 → 0.1.117

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.
@@ -5,7 +5,10 @@
5
5
  "задекларированным",
6
6
  "задекларированных",
7
7
  "Параметризируемый",
8
+ "basetypes",
8
9
  "datalake",
10
+ "eventbus",
11
+ "localstorage",
9
12
  "PROPFIND"
10
13
  ]
11
14
  }
package/index.ts CHANGED
@@ -1,26 +1,28 @@
1
1
  import { IDocHubCore } from './interfaces/core';
2
2
 
3
- export * from './interfaces/contexts';
4
- export * from './interfaces/protocols';
5
3
  export * from './interfaces/core';
4
+ export * from './interfaces/contexts';
5
+ export * from './interfaces/constructors';
6
+ export * from './interfaces/collaborations';
7
+ export * from './interfaces/datalake';
6
8
  export * from './interfaces/documents';
7
- export * from './interfaces/protocols';
8
9
  export * from './interfaces/editors';
9
- export * from './interfaces/datalake';
10
- export * from './interfaces/constructors';
11
- export * from './interfaces/providers';
12
- export * from './interfaces/objects';
13
- export * from './interfaces/ui';
14
- export * from './interfaces/localstorage';
15
10
  export * from './interfaces/eventbus';
11
+ export * from './interfaces/localstorage';
12
+ export * from './interfaces/objects';
13
+ export * from './interfaces/problems';
14
+ export * from './interfaces/presentations';
15
+ export * from './interfaces/protocols';
16
+ export * from './interfaces/providers';
16
17
  export * from './interfaces/router';
17
18
  export * from './interfaces/settings';
18
- export * from './interfaces/problems';
19
- export * from './interfaces/collabarations';
19
+ export * from './interfaces/ui';
20
+
20
21
  export * from './schemas/basetypes';
21
22
  export * from './schemas/dochub-yaml';
22
23
 
23
24
 
25
+
24
26
  export const DocHub: IDocHubCore = window['DocHub'];
25
27
  export const Vue2 = () => window['Vue'];
26
28
  export const Vuetify2 = () => window['Vuetify'];
@@ -0,0 +1,11 @@
1
+ /**
2
+ * Входящие параметры в презентацию
3
+ */
4
+ export interface IDocHubPresentationsParams {
5
+ [key: string]: string;
6
+ }
7
+ /**
8
+ * Интерфейс управления презентациями сущностей
9
+ */
10
+ export interface IDocHubPresentations {
11
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dochub-sdk",
3
- "version": "0.1.116",
3
+ "version": "0.1.117",
4
4
  "description": "The DocHub System Development Kit.",
5
5
  "private": false,
6
6
  "main": "index.ts",