mirror of
https://github.com/standardnotes/server
synced 2026-07-30 20:16:37 -04:00
17 lines
396 B
TypeScript
17 lines
396 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
|
|
analyticsId?: number
|
|
apiVersion: string
|
|
readOnlyAccess: boolean
|
|
sessionUuid: Uuid | null
|
|
}
|