@tanstack/query-core 4.0.11-beta.0 → 4.1.3

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.
Files changed (97) hide show
  1. package/build/cjs/focusManager.js +101 -0
  2. package/build/cjs/focusManager.js.map +1 -0
  3. package/build/cjs/hydration.js +112 -0
  4. package/build/cjs/hydration.js.map +1 -0
  5. package/build/cjs/index.js +51 -0
  6. package/build/cjs/index.js.map +1 -0
  7. package/build/cjs/infiniteQueryBehavior.js +160 -0
  8. package/build/cjs/infiniteQueryBehavior.js.map +1 -0
  9. package/build/cjs/infiniteQueryObserver.js +92 -0
  10. package/build/cjs/infiniteQueryObserver.js.map +1 -0
  11. package/build/cjs/logger.js +18 -0
  12. package/build/cjs/logger.js.map +1 -0
  13. package/build/cjs/mutation.js +258 -0
  14. package/build/cjs/mutation.js.map +1 -0
  15. package/build/cjs/mutationCache.js +99 -0
  16. package/build/cjs/mutationCache.js.map +1 -0
  17. package/build/cjs/mutationObserver.js +140 -0
  18. package/build/cjs/mutationObserver.js.map +1 -0
  19. package/build/cjs/notifyManager.js +114 -0
  20. package/build/cjs/notifyManager.js.map +1 -0
  21. package/build/cjs/onlineManager.js +100 -0
  22. package/build/cjs/onlineManager.js.map +1 -0
  23. package/build/cjs/queriesObserver.js +170 -0
  24. package/build/cjs/queriesObserver.js.map +1 -0
  25. package/build/cjs/query.js +474 -0
  26. package/build/cjs/query.js.map +1 -0
  27. package/build/cjs/queryCache.js +140 -0
  28. package/build/cjs/queryCache.js.map +1 -0
  29. package/build/cjs/queryClient.js +353 -0
  30. package/build/cjs/queryClient.js.map +1 -0
  31. package/build/cjs/queryObserver.js +529 -0
  32. package/build/cjs/queryObserver.js.map +1 -0
  33. package/build/cjs/removable.js +47 -0
  34. package/build/cjs/removable.js.map +1 -0
  35. package/build/cjs/retryer.js +177 -0
  36. package/build/cjs/retryer.js.map +1 -0
  37. package/build/cjs/subscribable.js +43 -0
  38. package/build/cjs/subscribable.js.map +1 -0
  39. package/build/cjs/utils.js +356 -0
  40. package/build/cjs/utils.js.map +1 -0
  41. package/build/{lib/index.mjs → esm/index.js} +18 -1
  42. package/build/esm/index.js.map +1 -0
  43. package/build/stats-html.html +2689 -0
  44. package/build/stats.json +811 -0
  45. package/build/{lib → types/packages/query-core/src}/focusManager.d.ts +0 -0
  46. package/build/{lib → types/packages/query-core/src}/hydration.d.ts +0 -0
  47. package/build/{lib → types/packages/query-core/src}/index.d.ts +2 -2
  48. package/build/{lib → types/packages/query-core/src}/infiniteQueryBehavior.d.ts +0 -0
  49. package/build/{lib → types/packages/query-core/src}/infiniteQueryObserver.d.ts +0 -0
  50. package/build/{lib → types/packages/query-core/src}/logger.d.ts +0 -0
  51. package/build/{lib → types/packages/query-core/src}/logger.native.d.ts +0 -0
  52. package/build/{lib → types/packages/query-core/src}/mutation.d.ts +0 -0
  53. package/build/{lib → types/packages/query-core/src}/mutationCache.d.ts +6 -1
  54. package/build/{lib → types/packages/query-core/src}/mutationObserver.d.ts +0 -0
  55. package/build/{lib → types/packages/query-core/src}/notifyManager.d.ts +0 -0
  56. package/build/{lib → types/packages/query-core/src}/onlineManager.d.ts +0 -0
  57. package/build/{lib → types/packages/query-core/src}/queriesObserver.d.ts +0 -0
  58. package/build/{lib → types/packages/query-core/src}/query.d.ts +0 -0
  59. package/build/{lib → types/packages/query-core/src}/queryCache.d.ts +6 -1
  60. package/build/{lib → types/packages/query-core/src}/queryClient.d.ts +0 -0
  61. package/build/{lib → types/packages/query-core/src}/queryObserver.d.ts +0 -0
  62. package/build/{lib → types/packages/query-core/src}/removable.d.ts +0 -0
  63. package/build/{lib → types/packages/query-core/src}/retryer.d.ts +0 -0
  64. package/build/{lib → types/packages/query-core/src}/subscribable.d.ts +0 -0
  65. package/build/types/packages/query-core/src/tests/focusManager.test.d.ts +1 -0
  66. package/build/types/packages/query-core/src/tests/hydration.test.d.ts +1 -0
  67. package/build/types/packages/query-core/src/tests/infiniteQueryBehavior.test.d.ts +1 -0
  68. package/build/types/packages/query-core/src/tests/infiniteQueryObserver.test.d.ts +1 -0
  69. package/build/types/packages/query-core/src/tests/mutationCache.test.d.ts +1 -0
  70. package/build/types/packages/query-core/src/tests/mutationObserver.test.d.ts +1 -0
  71. package/build/types/packages/query-core/src/tests/mutations.test.d.ts +1 -0
  72. package/build/types/packages/query-core/src/tests/notifyManager.test.d.ts +1 -0
  73. package/build/types/packages/query-core/src/tests/onlineManager.test.d.ts +1 -0
  74. package/build/types/packages/query-core/src/tests/queriesObserver.test.d.ts +1 -0
  75. package/build/types/packages/query-core/src/tests/query.test.d.ts +1 -0
  76. package/build/types/packages/query-core/src/tests/queryCache.test.d.ts +1 -0
  77. package/build/types/packages/query-core/src/tests/queryClient.test.d.ts +1 -0
  78. package/build/types/packages/query-core/src/tests/queryObserver.test.d.ts +1 -0
  79. package/build/types/packages/query-core/src/tests/utils.test.d.ts +1 -0
  80. package/build/{lib → types/packages/query-core/src}/types.d.ts +8 -7
  81. package/build/{lib → types/packages/query-core/src}/utils.d.ts +0 -0
  82. package/build/types/tests/utils.d.ts +24 -0
  83. package/build/umd/index.development.js +17 -0
  84. package/build/umd/index.development.js.map +1 -1
  85. package/build/umd/index.production.js +1 -1
  86. package/build/umd/index.production.js.map +1 -1
  87. package/package.json +7 -16
  88. package/src/index.ts +2 -2
  89. package/src/mutationCache.ts +7 -0
  90. package/src/mutationObserver.ts +9 -0
  91. package/src/queryCache.ts +7 -0
  92. package/src/queryObserver.ts +8 -0
  93. package/src/tests/queryObserver.test.tsx +19 -0
  94. package/src/types.ts +11 -8
  95. package/build/lib/index.js +0 -3096
  96. package/build/lib/index.js.map +0 -1
  97. package/build/lib/index.mjs.map +0 -1
@@ -0,0 +1,811 @@
1
+ {
2
+ "version": 2,
3
+ "tree": {
4
+ "name": "root",
5
+ "children": [
6
+ {
7
+ "name": "index.production.js",
8
+ "children": [
9
+ {
10
+ "name": "packages/query-core/src",
11
+ "children": [
12
+ {
13
+ "uid": "e85a-42",
14
+ "name": "subscribable.ts"
15
+ },
16
+ {
17
+ "uid": "e85a-44",
18
+ "name": "utils.ts"
19
+ },
20
+ {
21
+ "uid": "e85a-46",
22
+ "name": "focusManager.ts"
23
+ },
24
+ {
25
+ "uid": "e85a-48",
26
+ "name": "onlineManager.ts"
27
+ },
28
+ {
29
+ "uid": "e85a-50",
30
+ "name": "retryer.ts"
31
+ },
32
+ {
33
+ "uid": "e85a-52",
34
+ "name": "logger.ts"
35
+ },
36
+ {
37
+ "uid": "e85a-54",
38
+ "name": "notifyManager.ts"
39
+ },
40
+ {
41
+ "uid": "e85a-56",
42
+ "name": "removable.ts"
43
+ },
44
+ {
45
+ "uid": "e85a-58",
46
+ "name": "query.ts"
47
+ },
48
+ {
49
+ "uid": "e85a-60",
50
+ "name": "queryCache.ts"
51
+ },
52
+ {
53
+ "uid": "e85a-62",
54
+ "name": "mutation.ts"
55
+ },
56
+ {
57
+ "uid": "e85a-64",
58
+ "name": "mutationCache.ts"
59
+ },
60
+ {
61
+ "uid": "e85a-66",
62
+ "name": "infiniteQueryBehavior.ts"
63
+ },
64
+ {
65
+ "uid": "e85a-68",
66
+ "name": "queryClient.ts"
67
+ },
68
+ {
69
+ "uid": "e85a-70",
70
+ "name": "queryObserver.ts"
71
+ },
72
+ {
73
+ "uid": "e85a-72",
74
+ "name": "queriesObserver.ts"
75
+ },
76
+ {
77
+ "uid": "e85a-74",
78
+ "name": "infiniteQueryObserver.ts"
79
+ },
80
+ {
81
+ "uid": "e85a-76",
82
+ "name": "mutationObserver.ts"
83
+ },
84
+ {
85
+ "uid": "e85a-78",
86
+ "name": "hydration.ts"
87
+ },
88
+ {
89
+ "uid": "e85a-80",
90
+ "name": "index.ts"
91
+ }
92
+ ]
93
+ }
94
+ ]
95
+ }
96
+ ],
97
+ "isRoot": true
98
+ },
99
+ "nodeParts": {
100
+ "e85a-42": {
101
+ "renderedLength": 505,
102
+ "gzipLength": 212,
103
+ "brotliLength": 0,
104
+ "mainUid": "e85a-41"
105
+ },
106
+ "e85a-44": {
107
+ "renderedLength": 7458,
108
+ "gzipLength": 2159,
109
+ "brotliLength": 0,
110
+ "mainUid": "e85a-43"
111
+ },
112
+ "e85a-46": {
113
+ "renderedLength": 2058,
114
+ "gzipLength": 703,
115
+ "brotliLength": 0,
116
+ "mainUid": "e85a-45"
117
+ },
118
+ "e85a-48": {
119
+ "renderedLength": 1952,
120
+ "gzipLength": 627,
121
+ "brotliLength": 0,
122
+ "mainUid": "e85a-47"
123
+ },
124
+ "e85a-50": {
125
+ "renderedLength": 4232,
126
+ "gzipLength": 1198,
127
+ "brotliLength": 0,
128
+ "mainUid": "e85a-49"
129
+ },
130
+ "e85a-52": {
131
+ "renderedLength": 32,
132
+ "gzipLength": 49,
133
+ "brotliLength": 0,
134
+ "mainUid": "e85a-51"
135
+ },
136
+ "e85a-54": {
137
+ "renderedLength": 1910,
138
+ "gzipLength": 628,
139
+ "brotliLength": 0,
140
+ "mainUid": "e85a-53"
141
+ },
142
+ "e85a-56": {
143
+ "renderedLength": 681,
144
+ "gzipLength": 312,
145
+ "brotliLength": 0,
146
+ "mainUid": "e85a-55"
147
+ },
148
+ "e85a-58": {
149
+ "renderedLength": 12983,
150
+ "gzipLength": 3114,
151
+ "brotliLength": 0,
152
+ "mainUid": "e85a-57"
153
+ },
154
+ "e85a-60": {
155
+ "renderedLength": 2645,
156
+ "gzipLength": 753,
157
+ "brotliLength": 0,
158
+ "mainUid": "e85a-59"
159
+ },
160
+ "e85a-62": {
161
+ "renderedLength": 7266,
162
+ "gzipLength": 1603,
163
+ "brotliLength": 0,
164
+ "mainUid": "e85a-61"
165
+ },
166
+ "e85a-64": {
167
+ "renderedLength": 1889,
168
+ "gzipLength": 613,
169
+ "brotliLength": 0,
170
+ "mainUid": "e85a-63"
171
+ },
172
+ "e85a-66": {
173
+ "renderedLength": 6170,
174
+ "gzipLength": 1403,
175
+ "brotliLength": 0,
176
+ "mainUid": "e85a-65"
177
+ },
178
+ "e85a-68": {
179
+ "renderedLength": 9592,
180
+ "gzipLength": 1962,
181
+ "brotliLength": 0,
182
+ "mainUid": "e85a-67"
183
+ },
184
+ "e85a-70": {
185
+ "renderedLength": 16600,
186
+ "gzipLength": 3623,
187
+ "brotliLength": 0,
188
+ "mainUid": "e85a-69"
189
+ },
190
+ "e85a-72": {
191
+ "renderedLength": 4906,
192
+ "gzipLength": 1181,
193
+ "brotliLength": 0,
194
+ "mainUid": "e85a-71"
195
+ },
196
+ "e85a-74": {
197
+ "renderedLength": 2330,
198
+ "gzipLength": 624,
199
+ "brotliLength": 0,
200
+ "mainUid": "e85a-73"
201
+ },
202
+ "e85a-76": {
203
+ "renderedLength": 4060,
204
+ "gzipLength": 1017,
205
+ "brotliLength": 0,
206
+ "mainUid": "e85a-75"
207
+ },
208
+ "e85a-78": {
209
+ "renderedLength": 3177,
210
+ "gzipLength": 941,
211
+ "brotliLength": 0,
212
+ "mainUid": "e85a-77"
213
+ },
214
+ "e85a-80": {
215
+ "renderedLength": 0,
216
+ "gzipLength": 0,
217
+ "brotliLength": 0,
218
+ "mainUid": "e85a-79"
219
+ }
220
+ },
221
+ "nodeMetas": {
222
+ "e85a-41": {
223
+ "id": "/packages/query-core/src/subscribable.ts",
224
+ "moduleParts": {
225
+ "index.production.js": "e85a-42"
226
+ },
227
+ "imported": [],
228
+ "importedBy": [
229
+ {
230
+ "uid": "e85a-59"
231
+ },
232
+ {
233
+ "uid": "e85a-69"
234
+ },
235
+ {
236
+ "uid": "e85a-71"
237
+ },
238
+ {
239
+ "uid": "e85a-63"
240
+ },
241
+ {
242
+ "uid": "e85a-75"
243
+ },
244
+ {
245
+ "uid": "e85a-45"
246
+ },
247
+ {
248
+ "uid": "e85a-47"
249
+ }
250
+ ]
251
+ },
252
+ "e85a-43": {
253
+ "id": "/packages/query-core/src/utils.ts",
254
+ "moduleParts": {
255
+ "index.production.js": "e85a-44"
256
+ },
257
+ "imported": [],
258
+ "importedBy": [
259
+ {
260
+ "uid": "e85a-79"
261
+ },
262
+ {
263
+ "uid": "e85a-49"
264
+ },
265
+ {
266
+ "uid": "e85a-59"
267
+ },
268
+ {
269
+ "uid": "e85a-67"
270
+ },
271
+ {
272
+ "uid": "e85a-69"
273
+ },
274
+ {
275
+ "uid": "e85a-71"
276
+ },
277
+ {
278
+ "uid": "e85a-63"
279
+ },
280
+ {
281
+ "uid": "e85a-75"
282
+ },
283
+ {
284
+ "uid": "e85a-53"
285
+ },
286
+ {
287
+ "uid": "e85a-45"
288
+ },
289
+ {
290
+ "uid": "e85a-47"
291
+ },
292
+ {
293
+ "uid": "e85a-57"
294
+ },
295
+ {
296
+ "uid": "e85a-55"
297
+ }
298
+ ]
299
+ },
300
+ "e85a-45": {
301
+ "id": "/packages/query-core/src/focusManager.ts",
302
+ "moduleParts": {
303
+ "index.production.js": "e85a-46"
304
+ },
305
+ "imported": [
306
+ {
307
+ "uid": "e85a-41"
308
+ },
309
+ {
310
+ "uid": "e85a-43"
311
+ }
312
+ ],
313
+ "importedBy": [
314
+ {
315
+ "uid": "e85a-79"
316
+ },
317
+ {
318
+ "uid": "e85a-49"
319
+ },
320
+ {
321
+ "uid": "e85a-67"
322
+ },
323
+ {
324
+ "uid": "e85a-69"
325
+ }
326
+ ]
327
+ },
328
+ "e85a-47": {
329
+ "id": "/packages/query-core/src/onlineManager.ts",
330
+ "moduleParts": {
331
+ "index.production.js": "e85a-48"
332
+ },
333
+ "imported": [
334
+ {
335
+ "uid": "e85a-41"
336
+ },
337
+ {
338
+ "uid": "e85a-43"
339
+ }
340
+ ],
341
+ "importedBy": [
342
+ {
343
+ "uid": "e85a-79"
344
+ },
345
+ {
346
+ "uid": "e85a-49"
347
+ },
348
+ {
349
+ "uid": "e85a-67"
350
+ }
351
+ ]
352
+ },
353
+ "e85a-49": {
354
+ "id": "/packages/query-core/src/retryer.ts",
355
+ "moduleParts": {
356
+ "index.production.js": "e85a-50"
357
+ },
358
+ "imported": [
359
+ {
360
+ "uid": "e85a-45"
361
+ },
362
+ {
363
+ "uid": "e85a-47"
364
+ },
365
+ {
366
+ "uid": "e85a-43"
367
+ }
368
+ ],
369
+ "importedBy": [
370
+ {
371
+ "uid": "e85a-79"
372
+ },
373
+ {
374
+ "uid": "e85a-69"
375
+ },
376
+ {
377
+ "uid": "e85a-57"
378
+ },
379
+ {
380
+ "uid": "e85a-61"
381
+ }
382
+ ]
383
+ },
384
+ "e85a-51": {
385
+ "id": "/packages/query-core/src/logger.ts",
386
+ "moduleParts": {
387
+ "index.production.js": "e85a-52"
388
+ },
389
+ "imported": [],
390
+ "importedBy": [
391
+ {
392
+ "uid": "e85a-67"
393
+ },
394
+ {
395
+ "uid": "e85a-57"
396
+ },
397
+ {
398
+ "uid": "e85a-61"
399
+ }
400
+ ]
401
+ },
402
+ "e85a-53": {
403
+ "id": "/packages/query-core/src/notifyManager.ts",
404
+ "moduleParts": {
405
+ "index.production.js": "e85a-54"
406
+ },
407
+ "imported": [
408
+ {
409
+ "uid": "e85a-43"
410
+ }
411
+ ],
412
+ "importedBy": [
413
+ {
414
+ "uid": "e85a-79"
415
+ },
416
+ {
417
+ "uid": "e85a-59"
418
+ },
419
+ {
420
+ "uid": "e85a-67"
421
+ },
422
+ {
423
+ "uid": "e85a-69"
424
+ },
425
+ {
426
+ "uid": "e85a-71"
427
+ },
428
+ {
429
+ "uid": "e85a-63"
430
+ },
431
+ {
432
+ "uid": "e85a-75"
433
+ },
434
+ {
435
+ "uid": "e85a-57"
436
+ },
437
+ {
438
+ "uid": "e85a-61"
439
+ }
440
+ ]
441
+ },
442
+ "e85a-55": {
443
+ "id": "/packages/query-core/src/removable.ts",
444
+ "moduleParts": {
445
+ "index.production.js": "e85a-56"
446
+ },
447
+ "imported": [
448
+ {
449
+ "uid": "e85a-43"
450
+ }
451
+ ],
452
+ "importedBy": [
453
+ {
454
+ "uid": "e85a-57"
455
+ },
456
+ {
457
+ "uid": "e85a-61"
458
+ }
459
+ ]
460
+ },
461
+ "e85a-57": {
462
+ "id": "/packages/query-core/src/query.ts",
463
+ "moduleParts": {
464
+ "index.production.js": "e85a-58"
465
+ },
466
+ "imported": [
467
+ {
468
+ "uid": "e85a-43"
469
+ },
470
+ {
471
+ "uid": "e85a-51"
472
+ },
473
+ {
474
+ "uid": "e85a-53"
475
+ },
476
+ {
477
+ "uid": "e85a-49"
478
+ },
479
+ {
480
+ "uid": "e85a-55"
481
+ }
482
+ ],
483
+ "importedBy": [
484
+ {
485
+ "uid": "e85a-59"
486
+ }
487
+ ]
488
+ },
489
+ "e85a-59": {
490
+ "id": "/packages/query-core/src/queryCache.ts",
491
+ "moduleParts": {
492
+ "index.production.js": "e85a-60"
493
+ },
494
+ "imported": [
495
+ {
496
+ "uid": "e85a-43"
497
+ },
498
+ {
499
+ "uid": "e85a-57"
500
+ },
501
+ {
502
+ "uid": "e85a-53"
503
+ },
504
+ {
505
+ "uid": "e85a-41"
506
+ }
507
+ ],
508
+ "importedBy": [
509
+ {
510
+ "uid": "e85a-79"
511
+ },
512
+ {
513
+ "uid": "e85a-67"
514
+ }
515
+ ]
516
+ },
517
+ "e85a-61": {
518
+ "id": "/packages/query-core/src/mutation.ts",
519
+ "moduleParts": {
520
+ "index.production.js": "e85a-62"
521
+ },
522
+ "imported": [
523
+ {
524
+ "uid": "e85a-51"
525
+ },
526
+ {
527
+ "uid": "e85a-53"
528
+ },
529
+ {
530
+ "uid": "e85a-55"
531
+ },
532
+ {
533
+ "uid": "e85a-49"
534
+ }
535
+ ],
536
+ "importedBy": [
537
+ {
538
+ "uid": "e85a-63"
539
+ },
540
+ {
541
+ "uid": "e85a-75"
542
+ }
543
+ ]
544
+ },
545
+ "e85a-63": {
546
+ "id": "/packages/query-core/src/mutationCache.ts",
547
+ "moduleParts": {
548
+ "index.production.js": "e85a-64"
549
+ },
550
+ "imported": [
551
+ {
552
+ "uid": "e85a-53"
553
+ },
554
+ {
555
+ "uid": "e85a-61"
556
+ },
557
+ {
558
+ "uid": "e85a-43"
559
+ },
560
+ {
561
+ "uid": "e85a-41"
562
+ }
563
+ ],
564
+ "importedBy": [
565
+ {
566
+ "uid": "e85a-79"
567
+ },
568
+ {
569
+ "uid": "e85a-67"
570
+ }
571
+ ]
572
+ },
573
+ "e85a-65": {
574
+ "id": "/packages/query-core/src/infiniteQueryBehavior.ts",
575
+ "moduleParts": {
576
+ "index.production.js": "e85a-66"
577
+ },
578
+ "imported": [],
579
+ "importedBy": [
580
+ {
581
+ "uid": "e85a-67"
582
+ },
583
+ {
584
+ "uid": "e85a-73"
585
+ }
586
+ ]
587
+ },
588
+ "e85a-67": {
589
+ "id": "/packages/query-core/src/queryClient.ts",
590
+ "moduleParts": {
591
+ "index.production.js": "e85a-68"
592
+ },
593
+ "imported": [
594
+ {
595
+ "uid": "e85a-43"
596
+ },
597
+ {
598
+ "uid": "e85a-59"
599
+ },
600
+ {
601
+ "uid": "e85a-63"
602
+ },
603
+ {
604
+ "uid": "e85a-45"
605
+ },
606
+ {
607
+ "uid": "e85a-47"
608
+ },
609
+ {
610
+ "uid": "e85a-53"
611
+ },
612
+ {
613
+ "uid": "e85a-65"
614
+ },
615
+ {
616
+ "uid": "e85a-51"
617
+ }
618
+ ],
619
+ "importedBy": [
620
+ {
621
+ "uid": "e85a-79"
622
+ }
623
+ ]
624
+ },
625
+ "e85a-69": {
626
+ "id": "/packages/query-core/src/queryObserver.ts",
627
+ "moduleParts": {
628
+ "index.production.js": "e85a-70"
629
+ },
630
+ "imported": [
631
+ {
632
+ "uid": "e85a-43"
633
+ },
634
+ {
635
+ "uid": "e85a-53"
636
+ },
637
+ {
638
+ "uid": "e85a-45"
639
+ },
640
+ {
641
+ "uid": "e85a-41"
642
+ },
643
+ {
644
+ "uid": "e85a-49"
645
+ }
646
+ ],
647
+ "importedBy": [
648
+ {
649
+ "uid": "e85a-79"
650
+ },
651
+ {
652
+ "uid": "e85a-71"
653
+ },
654
+ {
655
+ "uid": "e85a-73"
656
+ }
657
+ ]
658
+ },
659
+ "e85a-71": {
660
+ "id": "/packages/query-core/src/queriesObserver.ts",
661
+ "moduleParts": {
662
+ "index.production.js": "e85a-72"
663
+ },
664
+ "imported": [
665
+ {
666
+ "uid": "e85a-43"
667
+ },
668
+ {
669
+ "uid": "e85a-53"
670
+ },
671
+ {
672
+ "uid": "e85a-69"
673
+ },
674
+ {
675
+ "uid": "e85a-41"
676
+ }
677
+ ],
678
+ "importedBy": [
679
+ {
680
+ "uid": "e85a-79"
681
+ }
682
+ ]
683
+ },
684
+ "e85a-73": {
685
+ "id": "/packages/query-core/src/infiniteQueryObserver.ts",
686
+ "moduleParts": {
687
+ "index.production.js": "e85a-74"
688
+ },
689
+ "imported": [
690
+ {
691
+ "uid": "e85a-69"
692
+ },
693
+ {
694
+ "uid": "e85a-65"
695
+ }
696
+ ],
697
+ "importedBy": [
698
+ {
699
+ "uid": "e85a-79"
700
+ }
701
+ ]
702
+ },
703
+ "e85a-75": {
704
+ "id": "/packages/query-core/src/mutationObserver.ts",
705
+ "moduleParts": {
706
+ "index.production.js": "e85a-76"
707
+ },
708
+ "imported": [
709
+ {
710
+ "uid": "e85a-61"
711
+ },
712
+ {
713
+ "uid": "e85a-53"
714
+ },
715
+ {
716
+ "uid": "e85a-41"
717
+ },
718
+ {
719
+ "uid": "e85a-43"
720
+ }
721
+ ],
722
+ "importedBy": [
723
+ {
724
+ "uid": "e85a-79"
725
+ }
726
+ ]
727
+ },
728
+ "e85a-77": {
729
+ "id": "/packages/query-core/src/hydration.ts",
730
+ "moduleParts": {
731
+ "index.production.js": "e85a-78"
732
+ },
733
+ "imported": [],
734
+ "importedBy": [
735
+ {
736
+ "uid": "e85a-79"
737
+ }
738
+ ]
739
+ },
740
+ "e85a-79": {
741
+ "id": "/packages/query-core/src/index.ts",
742
+ "moduleParts": {
743
+ "index.production.js": "e85a-80"
744
+ },
745
+ "imported": [
746
+ {
747
+ "uid": "e85a-49"
748
+ },
749
+ {
750
+ "uid": "e85a-59"
751
+ },
752
+ {
753
+ "uid": "e85a-67"
754
+ },
755
+ {
756
+ "uid": "e85a-69"
757
+ },
758
+ {
759
+ "uid": "e85a-71"
760
+ },
761
+ {
762
+ "uid": "e85a-73"
763
+ },
764
+ {
765
+ "uid": "e85a-63"
766
+ },
767
+ {
768
+ "uid": "e85a-75"
769
+ },
770
+ {
771
+ "uid": "e85a-53"
772
+ },
773
+ {
774
+ "uid": "e85a-45"
775
+ },
776
+ {
777
+ "uid": "e85a-47"
778
+ },
779
+ {
780
+ "uid": "e85a-43"
781
+ },
782
+ {
783
+ "uid": "e85a-77"
784
+ },
785
+ {
786
+ "uid": "e85a-81"
787
+ }
788
+ ],
789
+ "importedBy": [],
790
+ "isEntry": true
791
+ },
792
+ "e85a-81": {
793
+ "id": "/packages/query-core/src/types.ts",
794
+ "moduleParts": {},
795
+ "imported": [],
796
+ "importedBy": [
797
+ {
798
+ "uid": "e85a-79"
799
+ }
800
+ ]
801
+ }
802
+ },
803
+ "env": {
804
+ "rollup": "2.76.0"
805
+ },
806
+ "options": {
807
+ "gzip": true,
808
+ "brotli": false,
809
+ "sourcemap": false
810
+ }
811
+ }