Merged
Conversation
77fe497 to
14f213e
Compare
This comment was marked as outdated.
This comment was marked as outdated.
wolfadex
reviewed
Apr 1, 2026
42f7001 to
46390b3
Compare
diff --ignore-all-space --minimal --new-file --recursive main/cli/generated/AdditionalProperties/Json.elm branch/cli/generated/AdditionalProperties/Json.elm
101,102c101
< Json.Decode.succeed
< (\tags -> { tags = tags })
---
> Json.Decode.succeed (\tags -> { tags = tags })
108,111c107,108
< { category =
< category
< , additionalProperties =
< additionalProperties
---
> { category = category
> , additionalProperties = additionalProperties
120,121c117
< (Json.Decode.keyValuePairs
< Json.Decode.value
---
> (Json.Decode.keyValuePairs Json.Decode.value
129,130c125
< [ "category"
< ]
---
> [ "category" ]
172c167,169
< ((("Field '" ++ key)
---
> ((("Field '"
> ++ key
> )
239,240c236
< (Json.Decode.keyValuePairs
< Json.Decode.value
---
> (Json.Decode.keyValuePairs Json.Decode.value
245,251c241
< if
< List.member
< key
< [ "a"
< , "b"
< ]
< then
---
> if List.member key [ "a", "b" ] then
275c265,267
< ((("Field '" ++ key)
---
> ((("Field '"
> ++ key
> )
289,291c281
< case
< field
< of
---
> case field of
296,297c286
< Just
< error
---
> Just error
301,304c290
< if
< List.isEmpty
< fieldErrors
< then
---
> if List.isEmpty fieldErrors then
diff --ignore-all-space --minimal --new-file --recursive main/cli/generated/AirlineCodeLookupApi/Json/Responses.elm branch/cli/generated/AirlineCodeLookupApi/Json/Responses.elm
102,104c102
< (Json.Decode.list
< AirlineCodeLookupApi.Json.decodeAirline
< )
---
> (Json.Decode.list AirlineCodeLookupApi.Json.decodeAirline)
114,116c112
< (Json.Decode.list
< AirlineCodeLookupApi.Json.decodeWarning
< )
---
> (Json.Decode.list AirlineCodeLookupApi.Json.decodeWarning)
122,123c118
< Json.Decode.succeed
< (\errors -> { errors = errors })
---
> Json.Decode.succeed (\errors -> { errors = errors })
127,129c122
< (Json.Decode.list
< AirlineCodeLookupApi.Json.decodeError
< )
---
> (Json.Decode.list AirlineCodeLookupApi.Json.decodeError)
135,136c128
< Json.Decode.succeed
< (\errors -> { errors = errors })
---
> Json.Decode.succeed (\errors -> { errors = errors })
140,142c132
< (Json.Decode.list
< AirlineCodeLookupApi.Json.decodeError
< )
---
> (Json.Decode.list AirlineCodeLookupApi.Json.decodeError)
diff --ignore-all-space --minimal --new-file --recursive main/cli/generated/AirlineCodeLookupApi/Json.elm branch/cli/generated/AirlineCodeLookupApi/Json.elm
247,250c247
< (OpenApi.Common.decodeOptionalField
< "iataCode"
< Json.Decode.string
< )
---
> (OpenApi.Common.decodeOptionalField "iataCode" Json.Decode.string)
252,255c249
< (OpenApi.Common.decodeOptionalField
< "icaoCode"
< Json.Decode.string
< )
---
> (OpenApi.Common.decodeOptionalField "icaoCode" Json.Decode.string)
257,260c251
< (OpenApi.Common.decodeOptionalField
< "type"
< Json.Decode.string
< )
---
> (OpenApi.Common.decodeOptionalField "type" Json.Decode.string)
277,280c268
< (OpenApi.Common.decodeOptionalField
< "detail"
< Json.Decode.string
< )
---
> (OpenApi.Common.decodeOptionalField "detail" Json.Decode.string)
286,291c274,276
< { example =
< example
< , parameter =
< parameter
< , pointer =
< pointer
---
> { example = example
> , parameter = parameter
> , pointer = pointer
312,315c297
< (OpenApi.Common.decodeOptionalField
< "status"
< Json.Decode.int
< )
---
> (OpenApi.Common.decodeOptionalField "status" Json.Decode.int)
317,320c299
< (OpenApi.Common.decodeOptionalField
< "title"
< Json.Decode.string
< )
---
> (OpenApi.Common.decodeOptionalField "title" Json.Decode.string)
325,326c304
< Json.Decode.succeed
< (\count links -> { count = count, links = links })
---
> Json.Decode.succeed (\count links -> { count = count, links = links })
337,338c315
< , previous =
< previous
---
> , previous = previous
386,389c363
< (OpenApi.Common.decodeOptionalField
< "detail"
< Json.Decode.string
< )
---
> (OpenApi.Common.decodeOptionalField "detail" Json.Decode.string)
395,400c369,371
< { example =
< example
< , parameter =
< parameter
< , pointer =
< pointer
---
> { example = example
> , parameter = parameter
> , pointer = pointer
421,424c392
< (OpenApi.Common.decodeOptionalField
< "title"
< Json.Decode.string
< )
---
> (OpenApi.Common.decodeOptionalField "title" Json.Decode.string)
diff --ignore-all-space --minimal --new-file --recursive main/cli/generated/Bug16104/Json.elm branch/cli/generated/Bug16104/Json.elm
66,67c66
< Json.Decode.succeed
< (\content tag -> { content = content, tag = tag })
---
> Json.Decode.succeed (\content tag -> { content = content, tag = tag })
75,77c74
< case
< andThenUnpack
< of
---
> case andThenUnpack of
79,80c76
< Json.Decode.succeed
< "generic"
---
> Json.Decode.succeed "generic"
95,96c91
< Json.Decode.succeed
< (\images tag -> { images = images, tag = tag })
---
> Json.Decode.succeed (\images tag -> { images = images, tag = tag })
98,101c93
< (Json.Decode.field
< "images"
< (Json.Decode.list Json.Decode.string)
< )
---
> (Json.Decode.field "images" (Json.Decode.list Json.Decode.string))
107,109c99
< case
< andThenUnpack
< of
---
> case andThenUnpack of
111,112c101
< Json.Decode.succeed
< "images"
---
> Json.Decode.succeed "images"
diff --ignore-all-space --minimal --new-file --recursive main/cli/generated/Bug22119/Json.elm branch/cli/generated/Bug22119/Json.elm
42,43c42
< Json.Decode.succeed
< (\body -> { body = body })
---
> Json.Decode.succeed (\body -> { body = body })
50,52c49
< case
< andThenUnpack
< of
---
> case andThenUnpack of
54,55c51
< Json.Decode.succeed
< "ENUM_FIRST"
---
> Json.Decode.succeed "ENUM_FIRST"
58,59c54
< Json.Decode.succeed
< "ENUM_SECOND"
---
> Json.Decode.succeed "ENUM_SECOND"
62,63c57
< Json.Decode.succeed
< "ENUM_THIRD"
---
> Json.Decode.succeed "ENUM_THIRD"
diff --ignore-all-space --minimal --new-file --recursive main/cli/generated/DbFahrplanApi/Json.elm branch/cli/generated/DbFahrplanApi/Json.elm
217,218c217
< Json.Decode.succeed
< (\arrival -> { arrival = arrival })
---
> Json.Decode.succeed (\arrival -> { arrival = arrival })
222,224c221
< (Json.Decode.list
< decodeDepartureOrArrival
< )
---
> (Json.Decode.list decodeDepartureOrArrival)
230,231c227
< Json.Decode.succeed
< (\departureBoard -> { departureBoard = departureBoard })
---
> Json.Decode.succeed (\departureBoard -> { departureBoard = departureBoard })
238,239c234
< Json.Decode.succeed
< (\departure -> { departure = departure })
---
> Json.Decode.succeed (\departure -> { departure = departure })
249,250c244
< Json.Decode.succeed
< (\departureBoard -> { departureBoard = departureBoard })
---
> Json.Decode.succeed (\departureBoard -> { departureBoard = departureBoard })
271,274c265
< (Json.Decode.field
< "JourneyDetailRef"
< decodeJourneyDetailRef
< )
---
> (Json.Decode.field "JourneyDetailRef" decodeJourneyDetailRef)
278,281c269
< (Json.Decode.field
< "direction"
< Json.Decode.string
< )
---
> (Json.Decode.field "direction" Json.Decode.string)
283,286c271
< (Json.Decode.field
< "name"
< Json.Decode.string
< )
---
> (Json.Decode.field "name" Json.Decode.string)
288,291c273
< (Json.Decode.field
< "stop"
< Json.Decode.string
< )
---
> (Json.Decode.field "stop" Json.Decode.string)
293,296c275
< (Json.Decode.field
< "stopid"
< Json.Decode.int
< )
---
> (Json.Decode.field "stopid" Json.Decode.int)
298,301c277
< (Json.Decode.field
< "time"
< decodeLocalTime
< )
---
> (Json.Decode.field "time" decodeLocalTime)
303,306c279
< (Json.Decode.field
< "track"
< Json.Decode.string
< )
---
> (Json.Decode.field "track" Json.Decode.string)
308,311c281
< (Json.Decode.field
< "type"
< Json.Decode.string
< )
---
> (Json.Decode.field "type" Json.Decode.string)
330,333c300
< (Json.Decode.field
< "Operators"
< decodeOperators
< )
---
> (Json.Decode.field "Operators" decodeOperators)
335,338c302
< (Json.Decode.field
< "Stops"
< decodeStops
< )
---
> (Json.Decode.field "Stops" decodeStops)
340,343c304
< (Json.Decode.field
< "Types"
< decodeTypes
< )
---
> (Json.Decode.field "Types" decodeTypes)
348,349c309
< Json.Decode.succeed
< (\ref -> { ref = ref })
---
> Json.Decode.succeed (\ref -> { ref = ref })
351,354c311
< (Json.Decode.field
< "ref"
< Json.Decode.string
< )
---
> (Json.Decode.field "ref" Json.Decode.string)
359,360c316
< Json.Decode.succeed
< (\journeyDetail -> { journeyDetail = journeyDetail })
---
> Json.Decode.succeed (\journeyDetail -> { journeyDetail = journeyDetail })
377,378c333
< Json.Decode.succeed
< (\stopLocation -> { stopLocation = stopLocation })
---
> Json.Decode.succeed (\stopLocation -> { stopLocation = stopLocation })
388,389c343
< Json.Decode.succeed
< (\locationList -> { locationList = locationList })
---
> Json.Decode.succeed (\locationList -> { locationList = locationList })
406,409c360
< (Json.Decode.field
< "routeIdxFrom"
< Json.Decode.int
< )
---
> (Json.Decode.field "routeIdxFrom" Json.Decode.int)
411,414c362
< (Json.Decode.field
< "routeIdxTo"
< Json.Decode.int
< )
---
> (Json.Decode.field "routeIdxTo" Json.Decode.int)
419,420c367
< Json.Decode.succeed
< (\name -> { name = name })
---
> Json.Decode.succeed (\name -> { name = name })
422,427c369
< (Json.Decode.field
< "Name"
< (Json.Decode.list
< decodeName
< )
< )
---
> (Json.Decode.field "Name" (Json.Decode.list decodeName))
446,449c388
< (Json.Decode.field
< "priority"
< Json.Decode.int
< )
---
> (Json.Decode.field "priority" Json.Decode.int)
451,454c390
< (Json.Decode.field
< "routeIdxFrom"
< Json.Decode.int
< )
---
> (Json.Decode.field "routeIdxFrom" Json.Decode.int)
456,459c392
< (Json.Decode.field
< "routeIdxTo"
< Json.Decode.int
< )
---
> (Json.Decode.field "routeIdxTo" Json.Decode.int)
464,465c397
< Json.Decode.succeed
< (\note -> { note = note })
---
> Json.Decode.succeed (\note -> { note = note })
467,472c399
< (Json.Decode.field
< "Note"
< (Json.Decode.list
< decodeNote
< )
< )
---
> (Json.Decode.field "Note" (Json.Decode.list decodeNote))
487,490c414
< (Json.Decode.field
< "routeIdxFrom"
< Json.Decode.int
< )
---
> (Json.Decode.field "routeIdxFrom" Json.Decode.int)
492,495c416
< (Json.Decode.field
< "routeIdxTo"
< Json.Decode.int
< )
---
> (Json.Decode.field "routeIdxTo" Json.Decode.int)
500,501c421
< Json.Decode.succeed
< (\operator -> { operator = operator })
---
> Json.Decode.succeed (\operator -> { operator = operator })
503,506c423
< (Json.Decode.field
< "Operator"
< (Json.Decode.list decodeOperator)
< )
---
> (Json.Decode.field "Operator" (Json.Decode.list decodeOperator))
528,531c445
< (Json.Decode.field
< "id"
< Json.Decode.int
< )
---
> (Json.Decode.field "id" Json.Decode.int)
533,536c447
< (Json.Decode.field
< "lat"
< Json.Decode.float
< )
---
> (Json.Decode.field "lat" Json.Decode.float)
538,541c449
< (Json.Decode.field
< "lon"
< Json.Decode.float
< )
---
> (Json.Decode.field "lon" Json.Decode.float)
543,546c451
< (Json.Decode.field
< "name"
< Json.Decode.string
< )
---
> (Json.Decode.field "name" Json.Decode.string)
548,551c453
< (Json.Decode.field
< "routeIdx"
< Json.Decode.int
< )
---
> (Json.Decode.field "routeIdx" Json.Decode.int)
553,556c455
< (Json.Decode.field
< "track"
< Json.Decode.string
< )
---
> (Json.Decode.field "track" Json.Decode.string)
568,571c467
< (Json.Decode.field
< "lon"
< Json.Decode.float
< )
---
> (Json.Decode.field "lon" Json.Decode.float)
573,576c469
< (Json.Decode.field
< "name"
< Json.Decode.string
< )
---
> (Json.Decode.field "name" Json.Decode.string)
581,582c474
< Json.Decode.succeed
< (\stop -> { stop = stop })
---
> Json.Decode.succeed (\stop -> { stop = stop })
584,589c476
< (Json.Decode.field
< "Stop"
< (Json.Decode.list
< decodeStop
< )
< )
---
> (Json.Decode.field "Stop" (Json.Decode.list decodeStop))
604,607c491
< (Json.Decode.field
< "routeIdxTo"
< Json.Decode.int
< )
---
> (Json.Decode.field "routeIdxTo" Json.Decode.int)
609,612c493
< (Json.Decode.field
< "type"
< Json.Decode.string
< )
---
> (Json.Decode.field "type" Json.Decode.string)
617,618c498
< Json.Decode.succeed
< (\type_ -> { type_ = type_ })
---
> Json.Decode.succeed (\type_ -> { type_ = type_ })
620,625c500
< (Json.Decode.field
< "Type"
< (Json.Decode.list
< decodeType
< )
< )
---
> (Json.Decode.field "Type" (Json.Decode.list decodeType))
diff --ignore-all-space --minimal --new-file --recursive main/cli/generated/GithubV3RestApi/Api.elm branch/cli/generated/GithubV3RestApi/Api.elm
4563,4566c4563
< (Json.Decode.field
< "total_count"
< Json.Decode.int
< )
---
> (Json.Decode.field "total_count" Json.Decode.int)
4631,4634c4628
< (Json.Decode.field
< "total_count"
< Json.Decode.int
< )
---
> (Json.Decode.field "total_count" Json.Decode.int)
6887,6890c6881
< (Json.Decode.field
< "total_count"
< Json.Decode.int
< )
---
> (Json.Decode.field "total_count" Json.Decode.int)
6957,6960c6948
< (Json.Decode.field
< "total_count"
< Json.Decode.int
< )
---
> (Json.Decode.field "total_count" Json.Decode.int)
7027,7030c7015
< (Json.Decode.field
< "total_count"
< Json.Decode.int
< )
---
> (Json.Decode.field "total_count" Json.Decode.int)
7097,7100c7082
< (Json.Decode.field
< "total_count"
< Json.Decode.int
< )
---
> (Json.Decode.field "total_count" Json.Decode.int)
7174,7177c7156
< (Json.Decode.field
< "total_count"
< Json.Decode.int
< )
---
> (Json.Decode.field "total_count" Json.Decode.int)
7255,7258c7234
< (Json.Decode.field
< "total_count"
< Json.Decode.int
< )
---
> (Json.Decode.field "total_count" Json.Decode.int)
7334,7337c7310
< (Json.Decode.field
< "total_count"
< Json.Decode.int
< )
---
> (Json.Decode.field "total_count" Json.Decode.int)
7409,7412c7382
< (Json.Decode.field
< "total_count"
< Json.Decode.int
< )
---
> (Json.Decode.field "total_count" Json.Decode.int)
7633,7636c7603
< (Json.Decode.field
< "total_count"
< Json.Decode.int
< )
---
> (Json.Decode.field "total_count" Json.Decode.int)
7692,7695c7659
< (Json.Decode.field
< "total_count"
< Json.Decode.int
< )
---
> (Json.Decode.field "total_count" Json.Decode.int)
7769,7772c7733
< (Json.Decode.field
< "total_count"
< Json.Decode.float
< )
---
> (Json.Decode.field "total_count" Json.Decode.float)
7846,7849c7807
< (Json.Decode.field
< "total_count"
< Json.Decode.float
< )
---
> (Json.Decode.field "total_count" Json.Decode.float)
7916,7919c7874
< (Json.Decode.field
< "total_count"
< Json.Decode.int
< )
---
> (Json.Decode.field "total_count" Json.Decode.int)
7986,7989c7941
< (Json.Decode.field
< "total_count"
< Json.Decode.int
< )
---
> (Json.Decode.field "total_count" Json.Decode.int)
8048,8051c8000
< (Json.Decode.field
< "total_count"
< Json.Decode.int
< )
---
> (Json.Decode.field "total_count" Json.Decode.int)
8117,8120c8066
< (Json.Decode.field
< "total_count"
< Json.Decode.int
< )
---
> (Json.Decode.field "total_count" Json.Decode.int)
8333,8336c8279
< (Json.Decode.field
< "total_count"
< Json.Decode.int
< )
---
> (Json.Decode.field "total_count" Json.Decode.int)
8406,8409c8349
< (Json.Decode.field
< "total_count"
< Json.Decode.int
< )
---
> (Json.Decode.field "total_count" Json.Decode.int)
8475,8478c8415
< (Json.Decode.field
< "total_count"
< Json.Decode.float
< )
---
> (Json.Decode.field "total_count" Json.Decode.float)
8543,8546c8480
< (Json.Decode.field
< "total_count"
< Json.Decode.float
< )
---
> (Json.Decode.field "total_count" Json.Decode.float)
8617,8620c8551
< (Json.Decode.field
< "total_count"
< Json.Decode.float
< )
---
> (Json.Decode.field "total_count" Json.Decode.float)
8691,8694c8622
< (Json.Decode.field
< "total_count"
< Json.Decode.float
< )
---
> (Json.Decode.field "total_count" Json.Decode.float)
8753,8756c8681
< (Json.Decode.field
< "total_count"
< Json.Decode.int
< )
---
> (Json.Decode.field "total_count" Json.Decode.int)
8814,8817c8739
< (Json.Decode.field
< "total_count"
< Json.Decode.int
< )
---
> (Json.Decode.field "total_count" Json.Decode.int)
8884,8887c8806
< (Json.Decode.field
< "total_count"
< Json.Decode.int
< )
---
> (Json.Decode.field "total_count" Json.Decode.int)
8954,8957c8873
< (Json.Decode.field
< "total_count"
< Json.Decode.int
< )
---
> (Json.Decode.field "total_count" Json.Decode.int)
9029,9032c8945
< (Json.Decode.field
< "total_count"
< Json.Decode.float
< )
---
> (Json.Decode.field "total_count" Json.Decode.float)
9104,9107c9017
< (Json.Decode.field
< "total_count"
< Json.Decode.float
< )
---
> (Json.Decode.field "total_count" Json.Decode.float)
9177,9180c9087
< (Json.Decode.field
< "total_count"
< Json.Decode.int
< )
---
> (Json.Decode.field "total_count" Json.Decode.int)
9250,9253c9157
< (Json.Decode.field
< "total_count"
< Json.Decode.int
< )
---
> (Json.Decode.field "total_count" Json.Decode.int)
9368,9371c9272
< (Json.Decode.field
< "total_count"
< Json.Decode.int
< )
---
> (Json.Decode.field "total_count" Json.Decode.int)
9487,9490c9388
< (Json.Decode.field
< "total_count"
< Json.Decode.int
< )
---
> (Json.Decode.field "total_count" Json.Decode.int)
9604,9607c9502
< (Json.Decode.field
< "total_count"
< Json.Decode.int
< )
---
> (Json.Decode.field "total_count" Json.Decode.int)
9727,9730 |
wolfadex
approved these changes
Apr 2, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.