Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
smithyVersion=1.50.0
smithyVersion=1.51.0
smithyGradleVersion=0.10.1
12 changes: 9 additions & 3 deletions smithy-typescript-codegen-test/model/weather/main.smithy
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,9 @@ operation OnlyFakeAuthOptional {}
operation SameAsService {}

resource City {
identifiers: { cityId: CityId }
identifiers: {
cityId: CityId
}
create: CreateCity
read: GetCity
list: ListCities
Expand All @@ -122,12 +124,16 @@ resource City {
}

resource Forecast {
identifiers: { cityId: CityId }
identifiers: {
cityId: CityId
}
read: GetForecast
}

resource CityImage {
identifiers: { cityId: CityId }
identifiers: {
cityId: CityId
}
read: GetCityImage
}

Expand Down
Loading