dochub-sdk 0.1.283 → 0.1.284
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
@@ -349,12 +349,12 @@ export interface IDocHubDataLake {
|
|
349
349
|
* Отправляет транзакцию в DataLake
|
350
350
|
* @param comment - Комментарий к фиксируемой транзакции
|
351
351
|
*/
|
352
|
-
commitTransaction(comment?: string): Promise<
|
352
|
+
commitTransaction(comment?: string): Promise<void>;
|
353
353
|
|
354
354
|
/**
|
355
355
|
* Отменяет транзакцию
|
356
356
|
*/
|
357
|
-
rollbackTransaction(): Promise<
|
357
|
+
rollbackTransaction(): Promise<void>;
|
358
358
|
|
359
359
|
/**
|
360
360
|
* Возвращает актуальную транзакцию
|