Skip to content

Commit a44ba04

Browse files
committed
Fix unit tests
1 parent 289dfac commit a44ba04

File tree

1 file changed

+10
-8
lines changed

1 file changed

+10
-8
lines changed

packages/presets/client/tests/client-preset.spec.ts

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1654,20 +1654,22 @@ export * from "./gql.js";`);
16541654
export type Exact<T extends { [key: string]: unknown }> = { [K in keyof T]: T[K] };
16551655
export type MakeOptional<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]?: Maybe<T[SubKey]> };
16561656
export type MakeMaybe<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]: Maybe<T[SubKey]> };
1657+
export type MakeEmpty<T extends { [key: string]: unknown }, K extends keyof T> = { [_ in K]?: never };
1658+
export type Incremental<T> = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never };
16571659
/** All built-in and custom scalars, mapped to their actual values */
16581660
export type Scalars = {
1659-
ID: string;
1660-
String: string;
1661-
Boolean: boolean;
1662-
Int: number;
1663-
Float: number;
1661+
ID: { input: string | number; output: string; }
1662+
String: { input: string; output: string; }
1663+
Boolean: { input: boolean; output: boolean; }
1664+
Int: { input: number; output: number; }
1665+
Float: { input: number; output: number; }
16641666
};
16651667
16661668
export type Query = {
16671669
__typename?: 'Query';
1668-
a?: Maybe<Scalars['String']>;
1669-
b?: Maybe<Scalars['String']>;
1670-
c?: Maybe<Scalars['String']>;
1670+
a?: Maybe<Scalars['String']['output']>;
1671+
b?: Maybe<Scalars['String']['output']>;
1672+
c?: Maybe<Scalars['String']['output']>;
16711673
};
16721674
16731675
export type AQueryVariables = Exact<{ [key: string]: never; }>;

0 commit comments

Comments
 (0)