export const SPRK_USER_AGENT = "SprkAppView"; export const ATPROTO_CONTENT_LABELERS = "Atproto-Content-Labelers"; export const ATPROTO_REPO_REV = "Atproto-Repo-Rev"; type ResHeaderOpts = { repoRev: string | null; }; export const resHeaders = ( opts: Partial, ): Record => { const headers: Record = {}; if (opts.repoRev) { headers[ATPROTO_REPO_REV] = opts.repoRev; } return headers; }; export const clearlyBadCursor = (cursor?: string) => { return !!cursor?.includes("::"); };