dochub-sdk 0.1.107 → 0.1.108
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/index.ts +0 -1
- package/interfaces/datalake.ts +1 -1
- package/package.json +1 -1
package/index.ts
CHANGED
@@ -5,7 +5,6 @@ export * from './interfaces/protocols';
|
|
5
5
|
export * from './interfaces/core';
|
6
6
|
export * from './interfaces/documents';
|
7
7
|
export * from './interfaces/protocols';
|
8
|
-
export * from './interfaces/uicomponents';
|
9
8
|
export * from './interfaces/editors';
|
10
9
|
export * from './interfaces/datalake';
|
11
10
|
export * from './interfaces/constructors';
|
package/interfaces/datalake.ts
CHANGED
@@ -153,7 +153,7 @@ export enum DocHubDataLakeInitializedStatus {
|
|
153
153
|
unknown = 'root-manifest-unknown', // Статус не определен, возможно идет загрузка платформы
|
154
154
|
undefRootManifest = 'root-manifest-undef', // Корневой манифест не задан
|
155
155
|
errorRootManifest = 'root-manifest-error', // В корневом манифесте содержатся критические ошибки не позволяющие загрузить DataLake или он отсутствует
|
156
|
-
missingRootManifest = 'root-manifest-missing', //
|
156
|
+
missingRootManifest = 'root-manifest-missing', // Корневой манифест не обнаружен
|
157
157
|
other = 'root-manifest-other-error' // Возникла неопределенная ошибка не позволяющая инициализировать DataLake
|
158
158
|
}
|
159
159
|
|