Mario DeSousa

Results 21 issues of Mario DeSousa

* Expected behaviour: I am using npm 7 workspaces. When I run claudia pack with a module that depends on workspaces, I expect those workspaces to be included in the...

**Describe the Bug** While executing an `updateOne` mutation that updates a json column we are getting the error `Cannot read property 'name' of undefined` **To Reproduce** ``` mutation { updateOneMyTable(data:{...

question

**Is your feature request related to a problem? Please describe.** Version 0.21.0 changes the name of generated mutations from createXYZ to createOneXYZ (similar for update / delete). This introduces a...

enhancement
priority:high
community

You cannot set a nullable json value to null **To Reproduce** define a json column in the prisma schema like this: ```prisma model MyTable { id String @id @db.Uuid myColumn...

enhancement
help wanted

Hi, one additional issue... when you have a type definition in json-schema like this: ``` "DateTimeIso8601": { "type": "string", "description": "A datetime in ISO-8601 format (YYYY-MM-DDTHH:MM:SS.MMMZ)", "format": "date-time" } ```...

Today (v1.0.0) a union type like the following: ``` export type Fish = { animal_type: 'fish'; found_in: 'ocean' | 'river'; }; export type Bird = { animal_type: 'bird'; can_fly: boolean;...

enhancement

Hi, thanks for all the hard work on this awesome library! I wanted to report an issue that I noticed with the code below. The issue can be avoided by...

enhancement

Define two types as follows: ``` export type MyType = { prop1?: string prop2?: string } export type MyRequiredType = Required ``` Expected to see the json schema generated to...

Hi, thanks for this great library! I was wondering if you had plans to add support for aws-sdk v3? https://www.npmjs.com/package/@aws-sdk/client-athena Thanks

## Environment Please provide as many details as you can: - Hosting type - [x] Form.io - [ ] Local deployment - Version: - Formio.js version: 5.1.1 - Frontend framework:...

bug