Skip to content

Commit

Permalink
Fix ResultWriter.Transformation enum value
Browse files Browse the repository at this point in the history
  • Loading branch information
Silvia Chen committed Feb 25, 2025
1 parent bb30b07 commit a7d194f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"url": "https://github.com/aws/amazon-states-language-service"
},
"license": "MIT",
"version": "1.16.0",
"version": "1.16.1",
"publisher": "aws",
"categories": [
"Programming Languages"
Expand Down
2 changes: 1 addition & 1 deletion src/json-schema/bundled.json
Original file line number Diff line number Diff line change
Expand Up @@ -2255,7 +2255,7 @@
"type": "string",
"description": "A string that specifies how the Map state results transformed before returning.",
"minLength": 1,
"enum": ["NONE", "FLATTENED", "COMPACT"]
"enum": ["NONE", "FLATTEN", "COMPACT"]
}
},
"required": ["OutputType"]
Expand Down
2 changes: 1 addition & 1 deletion src/json-schema/partial/map_state.json
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@
"type": "string",
"description": "A string that specifies how the Map state results transformed before returning.",
"minLength": 1,
"enum": ["NONE", "FLATTENED", "COMPACT"]
"enum": ["NONE", "FLATTEN", "COMPACT"]
}
},
"required": ["OutputType"]
Expand Down

0 comments on commit a7d194f

Please sign in to comment.