@@ -412,30 +412,21 @@ jsonDecodeProto__Google__Protobuf__Value__Kind__Kind =
412
412
Json . Decode . oneOf
413
413
[ Json . Decode . map
414
414
( Proto . Google . Protobuf . Value . Kind . NullValue >> Just )
415
- ( Json . Decode . field " nullValue" Proto . Google . Protobuf . NullValue . jsonDecodeNullValue)
416
- , Json . Decode . map
417
- ( Proto . Google . Protobuf . Value . Kind . NumberValue >> Just )
418
- ( Json . Decode . field " numberValue" Json . Decode . float)
419
- , Json . Decode . map
420
- ( Proto . Google . Protobuf . Value . Kind . StringValue >> Just )
421
- ( Json . Decode . field " stringValue" Json . Decode . string)
422
- , Json . Decode . map
423
- ( Proto . Google . Protobuf . Value . Kind . BoolValue >> Just )
424
- ( Json . Decode . field " boolValue" Json . Decode . bool)
415
+ Proto . Google . Protobuf . NullValue . jsonDecodeNullValue
416
+ , Json . Decode . map ( Proto . Google . Protobuf . Value . Kind . NumberValue >> Just ) Json . Decode . float
417
+ , Json . Decode . map ( Proto . Google . Protobuf . Value . Kind . StringValue >> Just ) Json . Decode . string
418
+ , Json . Decode . map ( Proto . Google . Protobuf . Value . Kind . BoolValue >> Just ) Json . Decode . bool
425
419
, Json . Decode . lazy <|
426
420
\ _ ->
427
421
Json . Decode . map
428
422
( Proto . Google . Protobuf . Value . Kind . StructValue >> Just )
429
- ( Json . Decode . field " structValue " jsonDecodeProto__Google__Protobuf__Struct)
423
+ jsonDecodeProto__Google__Protobuf__Struct
430
424
, Json . Decode . lazy <|
431
425
\ _ ->
432
426
Json . Decode . map
433
427
( Proto . Google . Protobuf . Value . Kind . ListValue >> Just )
434
- ( Json . Decode . field
435
- " listValue"
436
- ( Json . Decode . map Proto__Google__Protobuf__ListValue_ <|
437
- Json . Decode . lazy <| \ _ -> jsonDecodeProto__Google__Protobuf__ListValue
438
- )
428
+ ( Json . Decode . map Proto__Google__Protobuf__ListValue_ <|
429
+ Json . Decode . lazy <| \ _ -> jsonDecodeProto__Google__Protobuf__ListValue
439
430
)
440
431
, Json . Decode . succeed Nothing
441
432
]
0 commit comments