Eric Allam

Results 149 comments of Eric Allam

To start I think we need to extend the [`createFromUrlOrRawJson`](https://github.com/apihero-run/jsonhero-web/blob/478f41f45ec7ee468442880135b6ca40e098fb30/app/jsonDoc.server.ts#L40) function to actually parse the raw JSON, that way we can catch the parsing error either in that function or...

Can you link me to your repo/branch and I'll take a look

@lechasseurVincent2112 yea exactly. We have a separate library [here](https://github.com/apihero-run/json-infer-types) that powers the type inference. You can see here we already have the ability to "infer" object formats [here](https://github.com/apihero-run/json-infer-types/blob/main/src/formats/index.ts#L107). So you'll...

This sounds like a great idea, would love to see an Initial PoC 👍

We also need this for running tests in a pnpm monorepo (https://github.com/triggerdotdev/trigger.dev)

Ah nice, that looks like it could work! Is there a documented way to go from the `Uint8Array` to a rendered canvas, like the other layers?

Nevermind, I see that you can actually just read the data as a PSD file like described [here](https://github.com/Agamnentzar/ag-psd/issues/102#issuecomment-1103938208)

After reading the `linkedFile.data` as a PSD I can't seem to get a canvas with the image data. This is how I'm reading the data from the linked file and...