Alexander Schueren
Alexander Schueren
**Is your feature request related to a problem? Please describe.** We use carbon of our open source project to generate images for documentation, GitHub releases or presentations. We support multiple...
### Summary When using our built-in schema with zod, developers can infer the types with `type SqsEvent = z.infer` and use it in their Lambda handler. Another popular option is...
### What were you searching in the docs? We have updated the versioning and release processes and this needs to be reflected in the documentation. We have a release process...
### Summary There are many different validation libraries available and we decided to use zod because of the combination of popularity, adoption, open source health and security. This is ideal...
## Description of your changes This PR adds type exports for the built in schemas. I have slightly changed the names by adding `Event` suffix. This is similar to the...
## Description of your changes This PR adds documentation section for the parser utility. The main structure is aligned with the current python documentation, except "Advanced use cases", since we...
### Use case When using zod schema we can extract type from the schema: ```typescript import { z } from 'zod'; const orderSchema = z.object({ id: z.number().positive(), description: z.string(), items:...
### What were you searching in the docs? The documentation should include a section dedicated to the upcoming parser utility. ### Is this related to an existing documentation section? _No...
### Use case When parsing custom schema in the envelope we currently propagate any error from zod back to the user. When there is an error, the mental process is...
**Describe the bug** When I try to generate image with a long code line, the output image is fixed to 1024p for `1x` and 2048p for `2x` output size. **To...