dochub-sdk 0.1.342 → 0.1.343
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 +2 -2
- package/package.json +1 -1
package/interfaces/datalake.ts
CHANGED
@@ -69,9 +69,9 @@ export interface IDataLakeChange {
|
|
69
69
|
// Путь в DataLake куда вносятся изменения
|
70
70
|
path: DataLakePath;
|
71
71
|
// Данные, которые вносятся в DataLake
|
72
|
-
data
|
72
|
+
data?: object | string | number | boolean;
|
73
73
|
// Комментарии в манифест, где изменения будут зафиксированы
|
74
|
-
comment
|
74
|
+
comment?: string;
|
75
75
|
// URI целевого файла для изменения
|
76
76
|
targetFile?: string;
|
77
77
|
}
|