chore: bump all dependencies (#5891)

This commit is contained in:
LongYinan
2024-02-23 09:37:13 +00:00
parent db1d0dcf52
commit ae41c6c544
42 changed files with 3232 additions and 3311 deletions

View File

@@ -23,11 +23,10 @@ export type _QueryVariables<Q extends GraphQLQuery> =
? Extract<Mutations, { name: Q['id'] }>['variables']
: undefined;
export type QueryVariables<Q extends GraphQLQuery> = _QueryVariables<Q> extends
| never
| Record<string, never>
? never
: _QueryVariables<Q>;
export type QueryVariables<Q extends GraphQLQuery> =
_QueryVariables<Q> extends never | Record<string, never>
? never
: _QueryVariables<Q>;
export type QueryResponse<Q extends GraphQLQuery> = Extract<
Queries | Mutations,