Skip to content

Commit

Permalink
Fix types: make validateOnly optional also in alterConfigs()
Browse files Browse the repository at this point in the history
  • Loading branch information
cj-christoph-gysin committed Nov 27, 2024
1 parent 55b0b41 commit 283930a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -533,7 +533,7 @@ export type Admin = {
resources: ResourceConfigQuery[]
includeSynonyms: boolean
}): Promise<DescribeConfigResponse>
alterConfigs(configs: { validateOnly: boolean; resources: IResourceConfig[] }): Promise<any>
alterConfigs(configs: { validateOnly?: boolean; resources: IResourceConfig[] }): Promise<any>
listGroups(): Promise<{ groups: GroupOverview[] }>
deleteGroups(groupIds: string[]): Promise<DeleteGroupsResult[]>
describeGroups(groupIds: string[]): Promise<GroupDescriptions>
Expand Down

0 comments on commit 283930a

Please sign in to comment.