Skip to content

Commit

Permalink
chore: typecheck fix
Browse files Browse the repository at this point in the history
  • Loading branch information
stijnvanhulle committed Dec 5, 2024
1 parent 52fb48c commit 2eb2b3b
Show file tree
Hide file tree
Showing 21 changed files with 24 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ describe('clientGenerator operation', async () => {
path: '.',
banner: '/* eslint-disable no-alert, no-console */',
},
group: undefined,
...props.options,
}
const plugin = { options } as Plugin<PluginClient>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ describe('groupedClientsGenerators operations', async () => {
output: {
path: '.',
},
group: undefined,
...props.options,
}
const plugin = { options } as Plugin<PluginClient>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ describe('operationsGenerator operations', async () => {
output: {
path: '.',
},
group: undefined,
...props.options,
}
const plugin = { options } as Plugin<PluginClient>
Expand Down
2 changes: 2 additions & 0 deletions packages/plugin-faker/src/generators/fakerGenerator.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ describe('fakerGenerator schema', async () => {
output: {
path: '.',
},
group: undefined,
...props.options,
}
const plugin = { options } as Plugin<PluginFaker>
Expand Down Expand Up @@ -199,6 +200,7 @@ describe('fakerGenerator operation', async () => {
output: {
path: '.',
},
group: undefined,
...props.options,
}
const plugin = { options } as Plugin<PluginFaker>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ describe('handlersGenerator operations', async () => {
path: '.',
},
parser: 'data',
group: undefined,
...props.options,
}
const plugin = { options } as Plugin<PluginMsw>
Expand Down
1 change: 1 addition & 0 deletions packages/plugin-msw/src/generators/mswGenerator.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ describe('mswGenerator operation', async () => {
path: '.',
},
parser: 'data',
group: undefined,
...props.options,
}
const plugin = { options } as Plugin<PluginMsw>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ describe('infiniteQueryGenerator operation', async () => {
output: {
path: '.',
},
group: undefined,
...props.options,
}
const plugin = { options } as Plugin<PluginReactQuery>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@ describe('mutationGenerator operation', async () => {
output: {
path: '.',
},
group: undefined,
...props.options,
}
const plugin = { options } as Plugin<PluginReactQuery>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,7 @@ describe('queryGenerator operation', async () => {
output: {
path: '.',
},
group: undefined,
...props.options,
}
const plugin = { options } as Plugin<PluginReactQuery>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ describe('suspenseQueryGenerator operation', async () => {
output: {
path: '.',
},
group: undefined,
...props.options,
}
const plugin = { options } as Plugin<PluginReactQuery>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@ describe('queryGenerator operation', async () => {
output: {
path: '.',
},
group: undefined,
...props.options,
}
const plugin = { options } as Plugin<PluginSolidQuery>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@ describe('mutationGenerator operation', async () => {
output: {
path: '.',
},
group: undefined,
...props.options,
}
const plugin = { options } as Plugin<PluginSvelteQuery>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,7 @@ describe('queryGenerator operation', async () => {
output: {
path: '.',
},
group: undefined,
...props.options,
}
const plugin = { options } as Plugin<PluginSvelteQuery>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@ describe('mutationGenerator operation', async () => {
output: {
path: '.',
},
group: undefined,
...props.options,
}
const plugin = { options } as Plugin<PluginSwr>
Expand Down
1 change: 1 addition & 0 deletions packages/plugin-swr/src/generators/queryGenerator.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@ describe('queryGenerator operation', async () => {
output: {
path: '.',
},
group: undefined,
...props.options,
}
const plugin = { options } as Plugin<PluginSwr>
Expand Down
2 changes: 2 additions & 0 deletions packages/plugin-ts/src/generators/typeGenerator.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -351,6 +351,7 @@ describe('typeGenerator schema', async () => {
output: {
path: '.',
},
group: undefined,
...props.options,
}
const plugin = { options } as Plugin<PluginTs>
Expand Down Expand Up @@ -449,6 +450,7 @@ describe('typeGenerator operation', async () => {
output: {
path: '.',
},
group: undefined,
...props.options,
}
const plugin = { options } as Plugin<PluginTs>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ describe('infiniteQueryGenerator operation', async () => {
output: {
path: '.',
},
group: undefined,
...props.options,
}
const plugin = { options } as Plugin<PluginVueQuery>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ describe('mutationGenerator operation', async () => {
output: {
path: '.',
},
group: undefined,
...props.options,
}
const plugin = { options } as Plugin<PluginVueQuery>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,7 @@ describe('queryGenerator operation', async () => {
output: {
path: '.',
},
group: undefined,
...props.options,
}
const plugin = { options } as Plugin<PluginVueQuery>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ describe('operationsGenerator operations', async () => {
output: {
path: '.',
},
group: undefined,
...props.options,
}
const plugin = { options } as Plugin<PluginZod>
Expand Down
2 changes: 2 additions & 0 deletions packages/plugin-zod/src/generators/zodGenerator.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -257,6 +257,7 @@ describe('zodGenerator schema', async () => {
output: {
path: '.',
},
group: undefined,
...props.options,
}
const plugin = { options } as Plugin<PluginZod>
Expand Down Expand Up @@ -355,6 +356,7 @@ describe('zodGenerator operation', async () => {
output: {
path: '.',
},
group: undefined,
...props.options,
}
const plugin = { options } as Plugin<PluginZod>
Expand Down

0 comments on commit 2eb2b3b

Please sign in to comment.