mirror of
https://github.com/standardnotes/server
synced 2026-07-14 00:01:54 -04:00
* feat(revisions): add procedure for transitioning data from primary to secondary database * fix: transition status updating for both items and revisions * fix: dependabot
6 lines
150 B
TypeScript
6 lines
150 B
TypeScript
export interface UpdateTransitionStatusDTO {
|
|
userUuid: string
|
|
transitionType: 'items' | 'revisions'
|
|
status: 'STARTED' | 'FINISHED' | 'FAILED'
|
|
}
|