Skip to content

Commit

Permalink
Merge pull request #1118 from zachary-povey/correct_acls_key_in_type
Browse files Browse the repository at this point in the history
Rename acl -> acls in DescribeAclResource
  • Loading branch information
Nevon committed Jun 9, 2021
2 parents a988776 + d167dff commit f8366f3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,7 @@ export interface AclResource {
export type AclEntry = Acl & AclResource

export type DescribeAclResource = AclResource & {
acl: Acl[]
acls: Acl[]
}

export interface DescribeAclResponse {
Expand Down
2 changes: 1 addition & 1 deletion types/tests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ const runAdmin = async () => {
resourceType: r.resourceType,
resourceName: r.resourceName,
resourcePatternType: r.resourcePatternType,
acls: r.acl,
acls: r.acls,
})),
})

Expand Down

0 comments on commit f8366f3

Please sign in to comment.