@geekmidas/client 9.0.1 → 10.0.0-alpha.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/auth-fetcher-CBYuL6rx.d.cts +158 -0
- package/dist/auth-fetcher-CBYuL6rx.d.cts.map +1 -0
- package/dist/auth-fetcher-DOj0iz21.mjs +77 -0
- package/dist/auth-fetcher-DOj0iz21.mjs.map +1 -0
- package/dist/auth-fetcher-DxS8zOLc.d.mts +158 -0
- package/dist/auth-fetcher-DxS8zOLc.d.mts.map +1 -0
- package/dist/auth-fetcher-HILABmws.cjs +82 -0
- package/dist/auth-fetcher-HILABmws.cjs.map +1 -0
- package/dist/auth-fetcher.cjs +3 -76
- package/dist/auth-fetcher.d.cts +3 -158
- package/dist/auth-fetcher.d.mts +3 -158
- package/dist/auth-fetcher.mjs +3 -76
- package/dist/endpoint-hooks.d.mts +1 -1
- package/dist/fetcher-C1xtCKpT.d.mts +25 -0
- package/dist/fetcher-C1xtCKpT.d.mts.map +1 -0
- package/dist/fetcher-cDrfwN-Y.d.cts +25 -0
- package/dist/fetcher-cDrfwN-Y.d.cts.map +1 -0
- package/dist/fetcher.d.cts +3 -25
- package/dist/fetcher.d.mts +3 -25
- package/dist/index.cjs +8 -0
- package/dist/index.d.cts +5 -0
- package/dist/index.d.mts +5 -0
- package/dist/index.mjs +6 -0
- package/dist/infer-6KKCgmg1.cjs +0 -0
- package/{src/infer.ts → dist/infer-DfRq5kIb.d.cts} +54 -83
- package/dist/infer-DfRq5kIb.d.cts.map +1 -0
- package/dist/infer-bTirNeNW.d.mts +133 -0
- package/dist/infer-bTirNeNW.d.mts.map +1 -0
- package/dist/infer-uCUq1whM.mjs +0 -0
- package/dist/infer.cjs +1 -0
- package/dist/infer.d.cts +2 -133
- package/dist/infer.d.mts +2 -133
- package/dist/infer.mjs +1 -0
- package/dist/openapi-hooks.cjs.map +1 -1
- package/dist/openapi-hooks.d.cts +3 -3
- package/dist/openapi-hooks.d.cts.map +1 -1
- package/dist/openapi-hooks.d.mts +1 -1
- package/dist/openapi-hooks.d.mts.map +1 -1
- package/dist/openapi-hooks.mjs.map +1 -1
- package/dist/react-query.d.cts +7 -7
- package/dist/react-query.d.mts +1 -1
- package/dist/types-BH8WgGrm.mjs +0 -0
- package/dist/{types-D8Jrl4o3.d.mts → types-BMGM6sZc.d.mts} +1 -1
- package/dist/{types-D8Jrl4o3.d.mts.map → types-BMGM6sZc.d.mts.map} +1 -1
- package/dist/types-a8gm_IaQ.cjs +0 -0
- package/dist/types.cjs +1 -0
- package/dist/types.d.mts +1 -1
- package/dist/types.mjs +1 -0
- package/package.json +8 -5
- package/CHANGELOG.md +0 -124
- package/dist/auth-fetcher.cjs.map +0 -1
- package/dist/auth-fetcher.d.cts.map +0 -1
- package/dist/auth-fetcher.d.mts.map +0 -1
- package/dist/auth-fetcher.mjs.map +0 -1
- package/dist/fetcher.d.cts.map +0 -1
- package/dist/fetcher.d.mts.map +0 -1
- package/dist/infer.d.cts.map +0 -1
- package/dist/infer.d.mts.map +0 -1
- package/src/__tests__/auth-fetcher.spec.ts +0 -505
- package/src/__tests__/endpoint-hooks.spec.tsx +0 -374
- package/src/__tests__/fetcher.spec.ts +0 -580
- package/src/__tests__/infer.integration.spec.ts +0 -188
- package/src/__tests__/infer.spec.ts +0 -189
- package/src/__tests__/method-restrictions.spec.tsx +0 -227
- package/src/__tests__/mutation-inference.spec.tsx +0 -343
- package/src/__tests__/openapi-hooks.spec.tsx +0 -557
- package/src/__tests__/react-query-infinite.spec.tsx +0 -1003
- package/src/__tests__/react-query-invalidation.spec.tsx +0 -239
- package/src/__tests__/react-query.spec.tsx +0 -582
- package/src/__tests__/setup.ts +0 -281
- package/src/__tests__/types.spec.ts +0 -134
- package/src/__tests__/url-parsing.spec.ts +0 -196
- package/src/auth-fetcher.ts +0 -288
- package/src/endpoint-hooks.ts +0 -346
- package/src/fetcher.ts +0 -171
- package/src/openapi-hooks.ts +0 -193
- package/src/openapi-types.d.ts +0 -440
- package/src/openapi.json +0 -595
- package/src/react-query.ts +0 -341
- package/src/types.ts +0 -226
- package/tsconfig.json +0 -12
|
@@ -1,374 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @vitest-environment jsdom
|
|
3
|
-
*/
|
|
4
|
-
import { QueryClient, QueryClientProvider } from '@tanstack/react-query';
|
|
5
|
-
import { renderHook, waitFor } from '@testing-library/react';
|
|
6
|
-
import { HttpResponse, http } from 'msw';
|
|
7
|
-
// biome-ignore lint/style/useImportType: needed for JSX
|
|
8
|
-
import React, { createElement } from 'react';
|
|
9
|
-
import { beforeEach, describe, expect, it } from 'vitest';
|
|
10
|
-
import { createEndpointHooks } from '../endpoint-hooks';
|
|
11
|
-
import type { TypedApiFunction } from '../types';
|
|
12
|
-
import { server } from './setup';
|
|
13
|
-
|
|
14
|
-
// Test API paths type
|
|
15
|
-
interface TestPaths {
|
|
16
|
-
'/health': {
|
|
17
|
-
get: {
|
|
18
|
-
responses: {
|
|
19
|
-
200: {
|
|
20
|
-
content: {
|
|
21
|
-
'application/json': { status: string };
|
|
22
|
-
};
|
|
23
|
-
};
|
|
24
|
-
};
|
|
25
|
-
};
|
|
26
|
-
};
|
|
27
|
-
'/users/{id}': {
|
|
28
|
-
parameters: {
|
|
29
|
-
path: { id: string };
|
|
30
|
-
};
|
|
31
|
-
get: {
|
|
32
|
-
responses: {
|
|
33
|
-
200: {
|
|
34
|
-
content: {
|
|
35
|
-
'application/json': { id: string; name: string };
|
|
36
|
-
};
|
|
37
|
-
};
|
|
38
|
-
};
|
|
39
|
-
};
|
|
40
|
-
};
|
|
41
|
-
'/users': {
|
|
42
|
-
get: {
|
|
43
|
-
parameters: {
|
|
44
|
-
query: { limit?: number; offset?: number };
|
|
45
|
-
};
|
|
46
|
-
responses: {
|
|
47
|
-
200: {
|
|
48
|
-
content: {
|
|
49
|
-
'application/json': Array<{ id: string; name: string }>;
|
|
50
|
-
};
|
|
51
|
-
};
|
|
52
|
-
};
|
|
53
|
-
};
|
|
54
|
-
post: {
|
|
55
|
-
requestBody: {
|
|
56
|
-
content: {
|
|
57
|
-
'application/json': { name: string; email: string };
|
|
58
|
-
};
|
|
59
|
-
};
|
|
60
|
-
responses: {
|
|
61
|
-
201: {
|
|
62
|
-
content: {
|
|
63
|
-
'application/json': { id: string; name: string; email: string };
|
|
64
|
-
};
|
|
65
|
-
};
|
|
66
|
-
};
|
|
67
|
-
};
|
|
68
|
-
};
|
|
69
|
-
'/posts/{postId}/comments': {
|
|
70
|
-
parameters: {
|
|
71
|
-
path: { postId: string };
|
|
72
|
-
};
|
|
73
|
-
post: {
|
|
74
|
-
requestBody: {
|
|
75
|
-
content: {
|
|
76
|
-
'application/json': { content: string };
|
|
77
|
-
};
|
|
78
|
-
};
|
|
79
|
-
responses: {
|
|
80
|
-
201: {
|
|
81
|
-
content: {
|
|
82
|
-
'application/json': { id: string; postId: string; content: string };
|
|
83
|
-
};
|
|
84
|
-
};
|
|
85
|
-
};
|
|
86
|
-
};
|
|
87
|
-
};
|
|
88
|
-
}
|
|
89
|
-
|
|
90
|
-
// Create a mock fetcher
|
|
91
|
-
function createMockFetcher(): TypedApiFunction<TestPaths> {
|
|
92
|
-
return async (endpoint: string, config?: any) => {
|
|
93
|
-
const [method, path] = endpoint.split(' ');
|
|
94
|
-
let url = `https://api.example.com${path}`;
|
|
95
|
-
|
|
96
|
-
// Replace path params
|
|
97
|
-
if (config?.params) {
|
|
98
|
-
for (const [key, value] of Object.entries(config.params)) {
|
|
99
|
-
url = url.replace(`{${key}}`, value as string);
|
|
100
|
-
}
|
|
101
|
-
}
|
|
102
|
-
|
|
103
|
-
// Add query params
|
|
104
|
-
if (config?.query) {
|
|
105
|
-
const searchParams = new URLSearchParams();
|
|
106
|
-
for (const [key, value] of Object.entries(config.query)) {
|
|
107
|
-
if (value !== undefined) {
|
|
108
|
-
searchParams.set(key, String(value));
|
|
109
|
-
}
|
|
110
|
-
}
|
|
111
|
-
if (searchParams.toString()) {
|
|
112
|
-
url += `?${searchParams.toString()}`;
|
|
113
|
-
}
|
|
114
|
-
}
|
|
115
|
-
|
|
116
|
-
const response = await fetch(url, {
|
|
117
|
-
method,
|
|
118
|
-
headers: {
|
|
119
|
-
'Content-Type': 'application/json',
|
|
120
|
-
...config?.headers,
|
|
121
|
-
},
|
|
122
|
-
body: config?.body ? JSON.stringify(config.body) : undefined,
|
|
123
|
-
});
|
|
124
|
-
|
|
125
|
-
return response.json();
|
|
126
|
-
};
|
|
127
|
-
}
|
|
128
|
-
|
|
129
|
-
// Test wrapper with QueryClient
|
|
130
|
-
function createWrapper() {
|
|
131
|
-
const queryClient = new QueryClient({
|
|
132
|
-
defaultOptions: {
|
|
133
|
-
queries: {
|
|
134
|
-
retry: false,
|
|
135
|
-
},
|
|
136
|
-
},
|
|
137
|
-
});
|
|
138
|
-
|
|
139
|
-
return ({ children }: { children: React.ReactNode }) =>
|
|
140
|
-
createElement(QueryClientProvider, { client: queryClient }, children);
|
|
141
|
-
}
|
|
142
|
-
|
|
143
|
-
describe('createEndpointHooks', () => {
|
|
144
|
-
beforeEach(() => {
|
|
145
|
-
// Add test-specific handlers
|
|
146
|
-
server.use(
|
|
147
|
-
http.get('https://api.example.com/health', () => {
|
|
148
|
-
return HttpResponse.json({ status: 'ok' });
|
|
149
|
-
}),
|
|
150
|
-
http.get('https://api.example.com/posts/:postId/comments', () => {
|
|
151
|
-
return HttpResponse.json([{ id: 'c1', content: 'Test comment' }]);
|
|
152
|
-
}),
|
|
153
|
-
http.post(
|
|
154
|
-
'https://api.example.com/posts/:postId/comments',
|
|
155
|
-
async ({ params, request }) => {
|
|
156
|
-
const body = (await request.json()) as { content: string };
|
|
157
|
-
return HttpResponse.json(
|
|
158
|
-
{
|
|
159
|
-
id: 'comment-1',
|
|
160
|
-
postId: params.postId as string,
|
|
161
|
-
content: body.content,
|
|
162
|
-
},
|
|
163
|
-
{ status: 201 },
|
|
164
|
-
);
|
|
165
|
-
},
|
|
166
|
-
),
|
|
167
|
-
);
|
|
168
|
-
});
|
|
169
|
-
|
|
170
|
-
describe('useQuery', () => {
|
|
171
|
-
it('should fetch data for endpoint without params', async () => {
|
|
172
|
-
const fetcher = createMockFetcher();
|
|
173
|
-
const hooks = createEndpointHooks<TestPaths>(fetcher);
|
|
174
|
-
|
|
175
|
-
const { result } = renderHook(() => hooks.useQuery('GET /health'), {
|
|
176
|
-
wrapper: createWrapper(),
|
|
177
|
-
});
|
|
178
|
-
|
|
179
|
-
await waitFor(() => expect(result.current.isSuccess).toBe(true));
|
|
180
|
-
|
|
181
|
-
expect(result.current.data).toEqual({ status: 'ok' });
|
|
182
|
-
});
|
|
183
|
-
|
|
184
|
-
it('should fetch data for endpoint with path params', async () => {
|
|
185
|
-
const fetcher = createMockFetcher();
|
|
186
|
-
const hooks = createEndpointHooks<TestPaths>(fetcher);
|
|
187
|
-
|
|
188
|
-
const { result } = renderHook(
|
|
189
|
-
() => hooks.useQuery('GET /users/{id}', { params: { id: '123' } }),
|
|
190
|
-
{ wrapper: createWrapper() },
|
|
191
|
-
);
|
|
192
|
-
|
|
193
|
-
await waitFor(() => expect(result.current.isSuccess).toBe(true));
|
|
194
|
-
|
|
195
|
-
// Uses mock from setup.ts which returns { id, name: 'John Doe', email: ... }
|
|
196
|
-
expect(result.current.data).toMatchObject({
|
|
197
|
-
id: '123',
|
|
198
|
-
name: 'John Doe',
|
|
199
|
-
});
|
|
200
|
-
});
|
|
201
|
-
|
|
202
|
-
it('should pass query options to useQuery', async () => {
|
|
203
|
-
const fetcher = createMockFetcher();
|
|
204
|
-
const hooks = createEndpointHooks<TestPaths>(fetcher);
|
|
205
|
-
|
|
206
|
-
const { result } = renderHook(
|
|
207
|
-
() => hooks.useQuery('GET /health', undefined, { enabled: false }),
|
|
208
|
-
{ wrapper: createWrapper() },
|
|
209
|
-
);
|
|
210
|
-
|
|
211
|
-
// Should not fetch because enabled: false
|
|
212
|
-
expect(result.current.isLoading).toBe(false);
|
|
213
|
-
expect(result.current.isFetching).toBe(false);
|
|
214
|
-
expect(result.current.data).toBeUndefined();
|
|
215
|
-
});
|
|
216
|
-
});
|
|
217
|
-
|
|
218
|
-
describe('useMutation', () => {
|
|
219
|
-
it('should mutate data for POST endpoint', async () => {
|
|
220
|
-
const fetcher = createMockFetcher();
|
|
221
|
-
const hooks = createEndpointHooks<TestPaths>(fetcher);
|
|
222
|
-
|
|
223
|
-
const { result } = renderHook(() => hooks.useMutation('POST /users'), {
|
|
224
|
-
wrapper: createWrapper(),
|
|
225
|
-
});
|
|
226
|
-
|
|
227
|
-
result.current.mutate({ body: { name: 'John', email: 'john@test.com' } });
|
|
228
|
-
|
|
229
|
-
await waitFor(() => expect(result.current.isSuccess).toBe(true));
|
|
230
|
-
|
|
231
|
-
// Uses mock from setup.ts
|
|
232
|
-
expect(result.current.data).toMatchObject({
|
|
233
|
-
id: '123',
|
|
234
|
-
name: 'John',
|
|
235
|
-
email: 'john@test.com',
|
|
236
|
-
});
|
|
237
|
-
});
|
|
238
|
-
|
|
239
|
-
it('should mutate data for endpoint with params and body', async () => {
|
|
240
|
-
const fetcher = createMockFetcher();
|
|
241
|
-
const hooks = createEndpointHooks<TestPaths>(fetcher);
|
|
242
|
-
|
|
243
|
-
const { result } = renderHook(
|
|
244
|
-
() => hooks.useMutation('POST /posts/{postId}/comments'),
|
|
245
|
-
{ wrapper: createWrapper() },
|
|
246
|
-
);
|
|
247
|
-
|
|
248
|
-
result.current.mutate({
|
|
249
|
-
params: { postId: 'post-123' },
|
|
250
|
-
body: { content: 'Great post!' },
|
|
251
|
-
});
|
|
252
|
-
|
|
253
|
-
await waitFor(() => expect(result.current.isSuccess).toBe(true));
|
|
254
|
-
|
|
255
|
-
expect(result.current.data).toEqual({
|
|
256
|
-
id: 'comment-1',
|
|
257
|
-
postId: 'post-123',
|
|
258
|
-
content: 'Great post!',
|
|
259
|
-
});
|
|
260
|
-
});
|
|
261
|
-
|
|
262
|
-
it('should pass mutation options', async () => {
|
|
263
|
-
const fetcher = createMockFetcher();
|
|
264
|
-
const hooks = createEndpointHooks<TestPaths>(fetcher);
|
|
265
|
-
|
|
266
|
-
let onSuccessCalled = false;
|
|
267
|
-
|
|
268
|
-
const { result } = renderHook(
|
|
269
|
-
() =>
|
|
270
|
-
hooks.useMutation('POST /users', {
|
|
271
|
-
onSuccess: () => {
|
|
272
|
-
onSuccessCalled = true;
|
|
273
|
-
},
|
|
274
|
-
}),
|
|
275
|
-
{ wrapper: createWrapper() },
|
|
276
|
-
);
|
|
277
|
-
|
|
278
|
-
result.current.mutate({ body: { name: 'Jane', email: 'jane@test.com' } });
|
|
279
|
-
|
|
280
|
-
await waitFor(() => expect(result.current.isSuccess).toBe(true));
|
|
281
|
-
|
|
282
|
-
expect(onSuccessCalled).toBe(true);
|
|
283
|
-
});
|
|
284
|
-
});
|
|
285
|
-
|
|
286
|
-
describe('buildQueryKey', () => {
|
|
287
|
-
it('should build key with just endpoint', () => {
|
|
288
|
-
const fetcher = createMockFetcher();
|
|
289
|
-
const hooks = createEndpointHooks<TestPaths>(fetcher);
|
|
290
|
-
|
|
291
|
-
const key = hooks.buildQueryKey('GET /health');
|
|
292
|
-
|
|
293
|
-
expect(key).toEqual(['GET /health']);
|
|
294
|
-
});
|
|
295
|
-
|
|
296
|
-
it('should build key with params', () => {
|
|
297
|
-
const fetcher = createMockFetcher();
|
|
298
|
-
const hooks = createEndpointHooks<TestPaths>(fetcher);
|
|
299
|
-
|
|
300
|
-
const key = hooks.buildQueryKey('GET /users/{id}', {
|
|
301
|
-
params: { id: '123' },
|
|
302
|
-
});
|
|
303
|
-
|
|
304
|
-
expect(key).toEqual(['GET /users/{id}', { params: { id: '123' } }]);
|
|
305
|
-
});
|
|
306
|
-
|
|
307
|
-
it('should build key with both params and query', () => {
|
|
308
|
-
const fetcher = createMockFetcher();
|
|
309
|
-
const hooks = createEndpointHooks<TestPaths>(fetcher);
|
|
310
|
-
|
|
311
|
-
// Using a hypothetical endpoint that has both
|
|
312
|
-
const key = hooks.buildQueryKey(
|
|
313
|
-
'GET /users/{id}' as any,
|
|
314
|
-
{
|
|
315
|
-
params: { id: '123' },
|
|
316
|
-
query: { include: 'posts' },
|
|
317
|
-
} as any,
|
|
318
|
-
);
|
|
319
|
-
|
|
320
|
-
expect(key).toEqual([
|
|
321
|
-
'GET /users/{id}',
|
|
322
|
-
{ params: { id: '123' } },
|
|
323
|
-
{ query: { include: 'posts' } },
|
|
324
|
-
]);
|
|
325
|
-
});
|
|
326
|
-
});
|
|
327
|
-
|
|
328
|
-
describe('type enforcement', () => {
|
|
329
|
-
it('should allow optional config for endpoints without required fields', () => {
|
|
330
|
-
const fetcher = createMockFetcher();
|
|
331
|
-
const hooks = createEndpointHooks<TestPaths>(fetcher);
|
|
332
|
-
|
|
333
|
-
// This should compile - config is optional for GET /health
|
|
334
|
-
renderHook(() => hooks.useQuery('GET /health'), {
|
|
335
|
-
wrapper: createWrapper(),
|
|
336
|
-
});
|
|
337
|
-
|
|
338
|
-
// This should also compile - providing optional config
|
|
339
|
-
renderHook(() => hooks.useQuery('GET /health', {}), {
|
|
340
|
-
wrapper: createWrapper(),
|
|
341
|
-
});
|
|
342
|
-
});
|
|
343
|
-
|
|
344
|
-
it('should require config for endpoints with path params', async () => {
|
|
345
|
-
const fetcher = createMockFetcher();
|
|
346
|
-
const hooks = createEndpointHooks<TestPaths>(fetcher);
|
|
347
|
-
|
|
348
|
-
// Config with params is required for GET /users/{id}
|
|
349
|
-
const { result } = renderHook(
|
|
350
|
-
() => hooks.useQuery('GET /users/{id}', { params: { id: '456' } }),
|
|
351
|
-
{ wrapper: createWrapper() },
|
|
352
|
-
);
|
|
353
|
-
|
|
354
|
-
await waitFor(() => expect(result.current.isSuccess).toBe(true));
|
|
355
|
-
expect(result.current.data?.id).toBe('456');
|
|
356
|
-
});
|
|
357
|
-
|
|
358
|
-
it('should require body in mutation config for POST endpoints', async () => {
|
|
359
|
-
const fetcher = createMockFetcher();
|
|
360
|
-
const hooks = createEndpointHooks<TestPaths>(fetcher);
|
|
361
|
-
|
|
362
|
-
const { result } = renderHook(() => hooks.useMutation('POST /users'), {
|
|
363
|
-
wrapper: createWrapper(),
|
|
364
|
-
});
|
|
365
|
-
|
|
366
|
-
// Body is required in mutate() for POST /users
|
|
367
|
-
result.current.mutate({
|
|
368
|
-
body: { name: 'Test', email: 'test@test.com' },
|
|
369
|
-
});
|
|
370
|
-
|
|
371
|
-
await waitFor(() => expect(result.current.isSuccess).toBe(true));
|
|
372
|
-
});
|
|
373
|
-
});
|
|
374
|
-
});
|