mirror of
https://github.com/standardnotes/server
synced 2026-07-31 05:16:40 -04:00
10 lines
240 B
TypeScript
10 lines
240 B
TypeScript
import { Uuid } from '@standardnotes/common'
|
|
import { IntegrityPayload } from '@standardnotes/payloads'
|
|
|
|
export type CheckIntegrityDTO = {
|
|
userUuid: Uuid
|
|
integrityPayloads: IntegrityPayload[]
|
|
freeUser: boolean
|
|
analyticsId: number
|
|
}
|