UpdateExistingItemDTO.ts 296 B

1234567891011
  1. import { Item } from '../../../Item/Item'
  2. import { ItemHash } from '../../../Item/ItemHash'
  3. export interface UpdateExistingItemDTO {
  4. existingItem: Item
  5. itemHash: ItemHash
  6. sessionUuid: string | null
  7. performingUserUuid: string
  8. roleNames: string[]
  9. onGoingRevisionsTransition: boolean
  10. }