1
0
Fork 0
peertube/shared/models/server/peertube-problem-document.m...

33 lines
605 B
TypeScript
Raw Normal View History

2021-07-16 08:42:24 +00:00
import { HttpStatusCode } from '../../models'
2021-06-02 16:15:41 +00:00
import { OAuth2ErrorCode, ServerErrorCode } from './server-error-code.enum'
export interface PeerTubeProblemDocumentData {
2023-02-16 10:56:58 +00:00
'invalid-params'?: Record<string, object>
2021-06-02 16:15:41 +00:00
originUrl?: string
keyId?: string
targetUrl?: string
actorUrl?: string
// Feeds
format?: string
url?: string
}
export interface PeerTubeProblemDocument extends PeerTubeProblemDocumentData {
type: string
title: string
detail: string
// Compat PeerTube <= 3.2
error: string
status: HttpStatusCode
docs?: string
code?: ServerErrorCode | OAuth2ErrorCode
}