dochub-sdk 0.1.272 → 0.1.273
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 +1 -1
- package/package.json +1 -1
package/interfaces/datalake.ts
CHANGED
@@ -122,7 +122,7 @@ export type IDocHubTransactionFile = {
|
|
122
122
|
export enum DocHubTransactionStatus {
|
123
123
|
open = 'open', // Открыта и готова к изменениям
|
124
124
|
committing = 'committing', // В процессе применения. Не готова к изменениям.
|
125
|
-
canceling = '
|
125
|
+
canceling = 'canceling', // В процессе отмены. Не готова к изменениям.
|
126
126
|
close = 'close' // Завершена. Не готова изменениям.
|
127
127
|
}
|
128
128
|
|