File tree Expand file tree Collapse file tree 2 files changed +1
-3
lines changed Expand file tree Collapse file tree 2 files changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,6 @@ class Task {
1919 type : TaskObject [ 'type' ]
2020 uid : TaskObject [ 'uid' ]
2121 canceledBy : TaskObject [ 'canceledBy' ]
22- batchUid : TaskObject [ 'batchUid' ]
2322 details : TaskObject [ 'details' ]
2423 error : TaskObject [ 'error' ]
2524 duration : TaskObject [ 'duration' ]
@@ -32,7 +31,6 @@ class Task {
3231 this . status = task . status
3332 this . type = task . type
3433 this . uid = task . uid
35- this . batchUid = task . batchUid
3634 this . details = task . details
3735 this . canceledBy = task . canceledBy
3836 this . error = task . error
Original file line number Diff line number Diff line change @@ -231,6 +231,7 @@ export const enum TaskTypes {
231231 DOCUMENTS_ADDITION_OR_UPDATE = 'documentAdditionOrUpdate' ,
232232 DOCUMENT_DELETION = 'documentDeletion' ,
233233 SETTINGS_UPDATE = 'settingsUpdate' ,
234+ SNAPSHOT_CREATION = 'snapshotCreation' ,
234235 TASK_CANCELATION = 'taskCancelation' ,
235236}
236237
@@ -262,7 +263,6 @@ export type EnqueuedTaskObject = {
262263
263264export type TaskObject = Omit < EnqueuedTaskObject , 'taskUid' > & {
264265 uid : number
265- batchUid : number
266266 details : {
267267 // Number of documents sent
268268 receivedDocuments ?: number
You can’t perform that action at this time.
0 commit comments