dochub-sdk 0.1.282 → 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 -4
- package/package.json +1 -1
package/interfaces/datalake.ts
CHANGED
@@ -347,16 +347,14 @@ export interface IDocHubDataLake {
|
|
347
347
|
|
348
348
|
/**
|
349
349
|
* Отправляет транзакцию в DataLake
|
350
|
-
* @param transaction - Объект транзакции
|
351
350
|
* @param comment - Комментарий к фиксируемой транзакции
|
352
351
|
*/
|
353
|
-
commitTransaction(
|
352
|
+
commitTransaction(comment?: string): Promise<void>;
|
354
353
|
|
355
354
|
/**
|
356
355
|
* Отменяет транзакцию
|
357
|
-
* @param transaction - Объект транзакции
|
358
356
|
*/
|
359
|
-
rollbackTransaction(
|
357
|
+
rollbackTransaction(): Promise<void>;
|
360
358
|
|
361
359
|
/**
|
362
360
|
* Возвращает актуальную транзакцию
|