dochub-sdk 0.1.112 → 0.1.113
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/interfaces/objects.ts +3 -2
- package/package.json +1 -1
package/interfaces/objects.ts
CHANGED
@@ -11,7 +11,8 @@ export interface IDocHubObjectMeta {
|
|
11
11
|
symbol?: string; // Символ объекта для визуализации на диаграммах
|
12
12
|
title?: string; // Название объекта
|
13
13
|
description?: string; // Описание объекта
|
14
|
-
constructor?: string; //
|
14
|
+
constructor?: string; // Идентификатор конструктора объектов
|
15
|
+
editor?: string; // Идентификатор редактора объектов
|
15
16
|
}
|
16
17
|
|
17
18
|
/**
|
@@ -32,7 +33,7 @@ export interface IDocHubObjectEditorItem {
|
|
32
33
|
/**
|
33
34
|
* Описывает контекст редактируемого объекта
|
34
35
|
*/
|
35
|
-
export interface IDocHubObjectEditorContext {
|
36
|
+
export interface IDocHubObjectEditorContext extends IDocHubObjectMeta {
|
36
37
|
path?: DataLakePath; // Путь к объекту в Data Lake
|
37
38
|
// Если не определено берется из параметра openObjectEditor
|
38
39
|
[key: string]: any; // Произвольные ключи и значения
|