2
0

Rename unknown quote policy value to unsupported_policy (#35955)

This commit is contained in:
Claire
2025-08-29 15:50:37 +02:00
committed by GitHub
parent 8b7685d956
commit 4fa203e69e
4 changed files with 10 additions and 6 deletions

View File

@@ -1,7 +1,11 @@
import type { ApiStatusJSON } from './statuses';
export type ApiQuoteState = 'accepted' | 'pending' | 'revoked' | 'unauthorized';
export type ApiQuotePolicy = 'public' | 'followers' | 'nobody' | 'unknown';
export type ApiQuotePolicy =
| 'public'
| 'followers'
| 'nobody'
| 'unsupported_policy';
export type ApiUserQuotePolicy = 'automatic' | 'manual' | 'denied' | 'unknown';
interface ApiQuoteEmptyJSON {