mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-06-02 01:20:07 +00:00
* fix: add types to authentication context for keystone v6.0
* fix: add other fields from authentication context data packet
some fields were undefined. I have added these as optional with any for now.
* fix: pass default values with the optional options for executeQuery()
This permits
```
executeQuery(
`query {
_allUsersMeta {
count
}
}`
```
as well as
```
executeQuery(
`query {
_allUsersMeta {
count
}
}`,
{
variables: {
password,
email,
},
}
```
* fix: remove initializer from interface property
* fix: ci error
`A parameter initializer is only allowed in a function or constructor implementation.`
* fix: i am done with semicolons