File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed
packages/core/src/submodules/schema/schemas Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ " @smithy/core " : patch
3
+ ---
4
+
5
+ fix detection of member idempotencyToken trait
Original file line number Diff line number Diff line change @@ -37,10 +37,7 @@ export class NormalizedSchema implements INormalizedSchema {
37
37
* @param ref - a polymorphic SchemaRef to be dereferenced/normalized.
38
38
* @param memberName - optional memberName if this NormalizedSchema should be considered a member schema.
39
39
*/
40
- private constructor (
41
- readonly ref : SchemaRef ,
42
- private memberName ?: string
43
- ) {
40
+ private constructor ( readonly ref : SchemaRef , private memberName ?: string ) {
44
41
const traitStack = [ ] as SchemaTraits [ ] ;
45
42
let _ref = ref ;
46
43
let schema = ref ;
You can’t perform that action at this time.
0 commit comments