@@ -82,7 +82,7 @@ describe("generator", () => {
8282 /** type-only property if you need easy access to the endpoint params */
8383 "~endpoint": {} as TEndpoint,
8484 queryKey,
85- options : queryOptions({
85+ queryOptions : queryOptions({
8686 queryFn: async ({ queryKey, signal }) => {
8787 const res = await this.client.put(path, {
8888 ...params,
@@ -120,7 +120,7 @@ describe("generator", () => {
120120 /** type-only property if you need easy access to the endpoint params */
121121 "~endpoint": {} as TEndpoint,
122122 queryKey,
123- options : queryOptions({
123+ queryOptions : queryOptions({
124124 queryFn: async ({ queryKey, signal }) => {
125125 const res = await this.client.post(path, {
126126 ...params,
@@ -158,7 +158,7 @@ describe("generator", () => {
158158 /** type-only property if you need easy access to the endpoint params */
159159 "~endpoint": {} as TEndpoint,
160160 queryKey,
161- options : queryOptions({
161+ queryOptions : queryOptions({
162162 queryFn: async ({ queryKey, signal }) => {
163163 const res = await this.client.get(path, {
164164 ...params,
@@ -196,7 +196,7 @@ describe("generator", () => {
196196 /** type-only property if you need easy access to the endpoint params */
197197 "~endpoint": {} as TEndpoint,
198198 queryKey,
199- options : queryOptions({
199+ queryOptions : queryOptions({
200200 queryFn: async ({ queryKey, signal }) => {
201201 const res = await this.client.delete(path, {
202202 ...params,
0 commit comments