nytimes / openapi2proto

A tool for generating Protobuf v3 schemas and gRPC service definitions from OpenAPI specifications
Apache License 2.0
964 stars 98 forks source link

Wrappers for map values of type list are generated multiple times #95

Closed drmaas closed 5 years ago

drmaas commented 5 years ago

For example:

// automatically generated wrapper for a list of Discount items
message DiscountsList {
    repeated Discount discounts = 1;
}

// automatically generated wrapper for a list of Discount items
message DiscountsList {
    repeated Discount discounts = 1;
}