Lee Staples

Results 7 issues of Lee Staples

Not looking for any smart formatting based on relationships, but defaulting to everything just being centred and on top of each other makes me sad 🥲 Love the app though,...

enhancement

**Breaking change introduced** I have a breaking change trying to upgrade [1.41.0 -> 1.42.1](https://renovatebot.com/diffs/npm/@segment%2fanalytics-next/1.41.0/1.42.1) # Expected I should be able to pass any `Record` as traits into the `identify` call....

At the moment, in order to limit the length of strings, I need to do: ```ts const User = createModel((User) => { User .string("id", { id: true }) .string("setupId", {...

enhancement

Given an enum ```ts const PlanType = createEnum((PlanType) => { PlanType .addValue("FREE") .addValue("PREMIUM") }) ``` and a model ```ts const Plan = createModel((Plan) => { Plan .string("name", { id: true...

enhancement

At the moment, if I want to define FPP, I need to do: ```ts const Probability = createModel((Probability) => { Probability .string("id", { id: true }) .decimal("probability", { raw: "@database.Decimal(3,...

At the moment, if I want to store just a date, I need to do: ```ts const Report = createModel((Report) => { model .string("id", { id: true }) .dateTime("reportDate", {...

enhancement

Node version: `18.17.0` Schemix version: `1.14.0` Getting this error on a fresh install ``` node_modules/schemix/dist/modules/PrismaModel.js:204 var paddings = Array(mostTokens).fill(0); ^ RangeError: Invalid array length at PrismaModel.parseFields (node_modules/schemix/dist/modules/PrismaModel.js:204:24) at Immediate. (node_modules/schemix/dist/modules/PrismaModel.js:163:27)...