narrow down type of idempotency_level

This commit is contained in:
Christopher Fenn 2024-04-05 16:00:28 +02:00
parent 260966c070
commit 5bd37a9de1
1 changed files with 1 additions and 1 deletions

View File

@ -138,7 +138,7 @@ export interface UninterpretedOption {
export interface MethodOptions {
deprecated: boolean;
idempotency_level: IdempotencyLevel|keyof typeof IdempotencyLevel;
idempotency_level: IdempotencyLevel;
uninterpreted_option: UninterpretedOption;
[k: string]: unknown;
}