@@ -82,7 +82,7 @@ describe("generator", () => {
82
82
/** type-only property if you need easy access to the endpoint params */
83
83
"~endpoint": {} as TEndpoint,
84
84
queryKey,
85
- options : queryOptions({
85
+ queryOptions : queryOptions({
86
86
queryFn: async ({ queryKey, signal }) => {
87
87
const res = await this.client.put(path, {
88
88
...params,
@@ -120,7 +120,7 @@ describe("generator", () => {
120
120
/** type-only property if you need easy access to the endpoint params */
121
121
"~endpoint": {} as TEndpoint,
122
122
queryKey,
123
- options : queryOptions({
123
+ queryOptions : queryOptions({
124
124
queryFn: async ({ queryKey, signal }) => {
125
125
const res = await this.client.post(path, {
126
126
...params,
@@ -158,7 +158,7 @@ describe("generator", () => {
158
158
/** type-only property if you need easy access to the endpoint params */
159
159
"~endpoint": {} as TEndpoint,
160
160
queryKey,
161
- options : queryOptions({
161
+ queryOptions : queryOptions({
162
162
queryFn: async ({ queryKey, signal }) => {
163
163
const res = await this.client.get(path, {
164
164
...params,
@@ -196,7 +196,7 @@ describe("generator", () => {
196
196
/** type-only property if you need easy access to the endpoint params */
197
197
"~endpoint": {} as TEndpoint,
198
198
queryKey,
199
- options : queryOptions({
199
+ queryOptions : queryOptions({
200
200
queryFn: async ({ queryKey, signal }) => {
201
201
const res = await this.client.delete(path, {
202
202
...params,
0 commit comments