dochub-sdk 0.1.302 → 0.1.303
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/datalake.ts +0 -2
- package/interfaces/editors.ts +2 -0
- package/package.json +1 -1
package/interfaces/datalake.ts
CHANGED
@@ -196,8 +196,6 @@ export interface IDocHubFileEditorContext {
|
|
196
196
|
contentType?: string; // Тип контента файла.
|
197
197
|
// Если не определено берется из данных полученных о файле в процессе открытия.
|
198
198
|
targetWindow?: DocHubUITargetWindow; // Где открывать указанный URI для редактирования
|
199
|
-
location?: string; // Указатель точного расположения цели редактирования. Например: entities/components/schema
|
200
|
-
// Формат зависит от редактора
|
201
199
|
[key: string]: any; // Произвольные ключи и значения
|
202
200
|
}
|
203
201
|
|
package/interfaces/editors.ts
CHANGED
@@ -87,6 +87,8 @@ export type DocHubEditorFileContext = {
|
|
87
87
|
uid: DocHubContextUID;
|
88
88
|
type: DocHubEditorType.file,
|
89
89
|
title?: string;
|
90
|
+
location?: string; // Указатель точного расположения цели редактирования. Например: entities/components/schema
|
91
|
+
// Формат зависит от редактора
|
90
92
|
meta: IDocHubFileEditorContext
|
91
93
|
}
|
92
94
|
/**
|