dochub-sdk 0.1.116 → 0.1.118

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'];
@@ -10,7 +10,7 @@ import { IDocHubEventBus } from './eventbus';
10
10
  import { IDocHubRouter } from './router';
11
11
  import { IDocHubSettings } from './settings';
12
12
  import { IDocHubProblems } from './problems';
13
- import { IDocHubCollaboration } from './collabarations';
13
+ import { IDocHubCollaboration } from './collaborations';
14
14
  import { DocHubEditMode, IDocHubEditors } from './editors';
15
15
 
16
16
  /**
@@ -0,0 +1,36 @@
1
+ import { DocHubDataLakeRequest, DataLakePath } from './datalake';
2
+ import { IDocHubSchema } from './../schemas/basetypes';
3
+
4
+ /**
5
+ * Входящие параметры в презентацию
6
+ */
7
+ export interface IDocHubPresentationsParams {
8
+ [key: string]: string;
9
+ }
10
+
11
+ /**
12
+ * Профиль презентации
13
+ */
14
+ export interface IDocHubPresentationProfile {
15
+ // Идентификатор типа презентации
16
+ type?: string;
17
+ // Название презентации
18
+ title?: string;
19
+ // Источник данных для представления
20
+ source?: string | DocHubDataLakeRequest;
21
+ // Шаблон представления
22
+ template?: string;
23
+ // Схема требуемых параметров для презентации
24
+ params?: IDocHubSchema;
25
+ // Пользовательский конструктор профиля презентации
26
+ $constructor?: DocHubDataLakeRequest;
27
+ // Базовый путь к объекту от которого будут разрешаться все относительные пути
28
+ $base: DataLakePath
29
+ }
30
+
31
+
32
+ /**
33
+ * Интерфейс управления презентациями сущностей
34
+ */
35
+ export interface IDocHubPresentations {
36
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dochub-sdk",
3
- "version": "0.1.116",
3
+ "version": "0.1.118",
4
4
  "description": "The DocHub System Development Kit.",
5
5
  "private": false,
6
6
  "main": "index.ts",