Brendan McKee
Brendan McKee
To repro: ``` const table = new Table( new aws_dynamodb.Table(stack, "table", { partitionKey: { name: "id", type: aws_dynamodb.AttributeType.NUMBER, }, }) ); const item = table.getItem({ id: "123" }); // item...
This is the first of what I'm sure will be many, many commits to implement the openapi crate. I'm opening this as a draft PR so I can develop it...
In the git example you have ``` final case class Remote(verbose: Boolean) extends Subcommand object Remote { sealed trait RemoteSubcommand extends Subcommand final case class Add(name: String, url: String) extends...