Skip to content

Commit

Permalink
Add string array to EndpointParameters (#1358)
Browse files Browse the repository at this point in the history
  • Loading branch information
trivikr authored Aug 28, 2024
1 parent 165e04a commit 2dad138
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/lazy-grapes-drive.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@smithy/types": minor
---

Add string array to EndpointParameters
2 changes: 1 addition & 1 deletion packages/types/src/endpoint.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,4 +85,4 @@ export interface EndpointV2 {
/**
* @public
*/
export type EndpointParameters = { [name: string]: undefined | string | boolean };
export type EndpointParameters = { [name: string]: undefined | boolean | string | string[] };

0 comments on commit 2dad138

Please sign in to comment.