dochub-sdk 0.1.246 → 0.1.248
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.
@@ -31,8 +31,8 @@ export enum DocHubDocumentType {
|
|
31
31
|
@Component
|
32
32
|
export class DocHubDocumentProto extends DocHubComponentProto implements IDocHubEditableComponent {
|
33
33
|
onRefresher: any = null; // Таймер отложенного выполнения обновления
|
34
|
-
followFiles: string[] | undefined;
|
35
|
-
baseURI: string | undefined;
|
34
|
+
followFiles: string[] | undefined = undefined; // Список файлов за изменениями которых нужно следить
|
35
|
+
baseURI: string | undefined = undefined; // URI документа от которого должны разрешаться все относительные ссылки
|
36
36
|
error: string | null = null; // Ошибка
|
37
37
|
isPending = true; // Признак внутренней работы. Например загрузка данных.
|
38
38
|
/**
|
package/interfaces/datalake.ts
CHANGED
@@ -136,9 +136,9 @@ export interface IDocHubTransaction {
|
|
136
136
|
|
137
137
|
/**
|
138
138
|
* Возвращает указанную версию файла
|
139
|
-
* @param uid - Идентификатор версии в
|
139
|
+
* @param uid - Идентификатор версии в транзакции
|
140
140
|
*/
|
141
|
-
getFileVersion(uid
|
141
|
+
getFileVersion(uid: string): Promise<IDocHubTransactionFile | null>;
|
142
142
|
|
143
143
|
/**
|
144
144
|
* Удаляет запись об изменении из транзакции
|