import { JSONSchemaType } from 'ajv' import { UserId } from '..' export type GetUserTokenPayload = { id: UserId } export type GetUserTokenResult = { id: string email: string tokenKey: string passwordHash: string } export const GetUserTokenPayloadSchema: JSONSchemaType = { type: 'object', properties: { id: { type: 'string' }, }, required: ['id'], additionalProperties: false, }