Here I have updated my data schema with the latest version, however a lot of my functions now have type errors which I can't figure why is there.
Error message:
util.d.ts(15, 130): The expected type comes from property 'jobCredit' which is declared here on type '{ [x: string]: string[]; id: string; }'```
Model schema:
```Installer: a
.model({
id: a.id().required(),
firstName: a.string(),
lastName: a.string(),
jobCredit: a.integer().default(5000),
})
.authorization((allow) => [allow.guest(), allow.authenticated()]),```