Skip to content

Commit 0645ac2

Browse files
committed
fix: add dumpCreation in type TaskTypes
1 parent 67974f9 commit 0645ac2

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

src/types/types.ts

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -351,16 +351,17 @@ export const enum TaskStatus {
351351
}
352352

353353
export const enum TaskTypes {
354-
INDEX_CREATION = 'indexCreation',
355-
INDEX_UPDATE = 'indexUpdate',
356-
INDEX_DELETION = 'indexDeletion',
357354
DOCUMENTS_ADDITION_OR_UPDATE = 'documentAdditionOrUpdate',
358355
DOCUMENT_DELETION = 'documentDeletion',
359-
SETTINGS_UPDATE = 'settingsUpdate',
356+
DUMP_CREATION = 'dumpCreation',
357+
INDEX_CREATION = 'indexCreation',
358+
INDEX_DELETION = 'indexDeletion',
360359
INDEXES_SWAP = 'indexSwap',
361-
TASK_DELETION = 'taskDeletion',
360+
INDEX_UPDATE = 'indexUpdate',
361+
SETTINGS_UPDATE = 'settingsUpdate',
362362
SNAPSHOT_CREATION = 'snapshotCreation',
363363
TASK_CANCELATION = 'taskCancelation',
364+
TASK_DELETION = 'taskDeletion',
364365
}
365366

366367
export type TasksQuery = {

0 commit comments

Comments
 (0)