Magnus Crafoord

Results 8 comments of Magnus Crafoord

Yeah when working in a team where people might use different tools (volta/nvm/fnm etc) it's kind of a must to be able to use the `.node-version` file.

Stealing this thread, kind of the same topic. I am using `PutItemCommand` and using the returned ToolboxItem, however I would like to return an expected `FormattedItem` since ToolboxItem contains `entity`...

Thanks @ThomasAribart this works great: ```ts const transformedItem = MyEntity.build(EntityParser).parse(res.ToolboxItem, { fill: false }).item; const formattedItem = MyEntity.build(EntityFormatter).format(transformedItem); return formattedItem; ``` Regarding ` { transformed: false } ` I think...

This seems to be broken in the latest **STSClient** currently at version (`3.575.0`): https://www.npmjs.com/package/@aws-sdk/client-sts/v/3.575.0 It works in the previous version (`3.574.0`): https://www.npmjs.com/package/@aws-sdk/client-sts/v/3.574.0 Seems like the `3.575.0` release includes som breaking...

Looks like there have been similar issues before: https://github.com/m-radzikowski/aws-sdk-client-mock/issues/197 I wonder if this is a new problem or the same? Although the major change in smithy smells bad 👃

PS: I've also tried switching from .default: `purchaseId: string().key().default(ulid()).savedAs('sk'),` to use .putDefault `purchaseId: string().key().putDefault(ulid()).savedAs('sk'),` Then the problem moves to the `PutItemInput` type instead: ```ts export const addPurchase = async (purchase:...

Thanks so much (again 😂) @ThomasAribart. I obviously have a hard time to wrap my head around the default variants but you provide a good explanation (extending on the docs)....