From 283930add103b2450f4a9898cb2bc4fbc362e8ac Mon Sep 17 00:00:00 2001 From: Christoph Gysin Date: Wed, 27 Nov 2024 11:05:20 +0200 Subject: [PATCH] Fix types: make validateOnly optional also in alterConfigs() --- types/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/index.d.ts b/types/index.d.ts index 26bcbfea3..b24030da2 100644 --- a/types/index.d.ts +++ b/types/index.d.ts @@ -533,7 +533,7 @@ export type Admin = { resources: ResourceConfigQuery[] includeSynonyms: boolean }): Promise - alterConfigs(configs: { validateOnly: boolean; resources: IResourceConfig[] }): Promise + alterConfigs(configs: { validateOnly?: boolean; resources: IResourceConfig[] }): Promise listGroups(): Promise<{ groups: GroupOverview[] }> deleteGroups(groupIds: string[]): Promise describeGroups(groupIds: string[]): Promise