mirror of
https://github.com/standardnotes/server
synced 2026-08-02 03:16:09 -04:00
16 lines
373 B
TypeScript
16 lines
373 B
TypeScript
import { Uuid } from '@standardnotes/common'
|
|
import { ItemHash } from '../Item/ItemHash'
|
|
|
|
export type SyncItemsDTO = {
|
|
userUuid: string
|
|
itemHashes: Array<ItemHash>
|
|
computeIntegrityHash: boolean
|
|
limit: number
|
|
syncToken?: string | null
|
|
cursorToken?: string | null
|
|
contentType?: string
|
|
apiVersion: string
|
|
readOnlyAccess: boolean
|
|
sessionUuid: Uuid | null
|
|
}
|