import type { User } from '../users/types' export type Sticker = { id: string type: string originFileChecksum: string | null originFilehash: string | null originMessageId: string | null userId: string accountId: string createdAt: string updatedAt: string deletedAt: string | null // relationships user?: User } export type StickerRelationships = 'user' export type CreateStickerPayload = { type: string originMessageId?: string originFileChecksum?: string originFilehash?: string } export type UpdateStickerPayload = { type?: string }