@superinterface/react 2.9.3 → 2.10.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/index.cjs +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +53 -53
- package/dist/index.d.ts +53 -53
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/server.cjs +2 -2
- package/dist/server.cjs.map +1 -1
- package/dist/server.d.cts +3 -3
- package/dist/server.d.ts +3 -3
- package/dist/server.js +2 -2
- package/dist/server.js.map +1 -1
- package/dist/types/index.cjs.map +1 -1
- package/dist/types/index.d.cts +1 -1
- package/dist/types/index.d.ts +1 -1
- package/dist/utils.cjs +1 -1
- package/dist/utils.cjs.map +1 -1
- package/dist/utils.d.cts +1 -1
- package/dist/utils.d.ts +1 -1
- package/dist/utils.js +1 -1
- package/dist/utils.js.map +1 -1
- package/package.json +5 -5
package/dist/index.d.cts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
2
|
import { MessagesPage, SerializedMessage } from './types/index.cjs';
|
|
3
|
+
import * as _tanstack_react_query from '@tanstack/react-query';
|
|
3
4
|
import { UseInfiniteQueryOptions, InfiniteData, UseMutationOptions } from '@tanstack/react-query';
|
|
4
5
|
import * as react from 'react';
|
|
5
6
|
import { Dispatch, SetStateAction } from 'react';
|
|
6
|
-
import * as
|
|
7
|
-
import * as _tanstack_react_query_build_legacy_types from '@tanstack/react-query/build/legacy/types';
|
|
7
|
+
import * as _tanstack_query_core from '@tanstack/query-core';
|
|
8
8
|
import OpenAI from 'openai';
|
|
9
9
|
|
|
10
10
|
declare const options: {
|
|
@@ -97,8 +97,8 @@ declare const useMessages: () => {
|
|
|
97
97
|
isRefetchError: true;
|
|
98
98
|
isSuccess: false;
|
|
99
99
|
status: "error";
|
|
100
|
-
fetchNextPage: (options?:
|
|
101
|
-
fetchPreviousPage: (options?:
|
|
100
|
+
fetchNextPage: (options?: _tanstack_react_query.FetchNextPageOptions | undefined) => Promise<_tanstack_react_query.InfiniteQueryObserverResult<InfiniteData<TQueryFnData, unknown>, Error>>;
|
|
101
|
+
fetchPreviousPage: (options?: _tanstack_react_query.FetchPreviousPageOptions | undefined) => Promise<_tanstack_react_query.InfiniteQueryObserverResult<InfiniteData<TQueryFnData, unknown>, Error>>;
|
|
102
102
|
hasNextPage: boolean;
|
|
103
103
|
hasPreviousPage: boolean;
|
|
104
104
|
isFetchingNextPage: boolean;
|
|
@@ -116,8 +116,8 @@ declare const useMessages: () => {
|
|
|
116
116
|
isPlaceholderData: boolean;
|
|
117
117
|
isRefetching: boolean;
|
|
118
118
|
isStale: boolean;
|
|
119
|
-
refetch: (options?:
|
|
120
|
-
fetchStatus:
|
|
119
|
+
refetch: (options?: _tanstack_react_query.RefetchOptions | undefined) => Promise<_tanstack_react_query.QueryObserverResult<InfiniteData<TQueryFnData, unknown>, Error>>;
|
|
120
|
+
fetchStatus: _tanstack_react_query.FetchStatus;
|
|
121
121
|
} | {
|
|
122
122
|
messages: SerializedMessage[];
|
|
123
123
|
data: InfiniteData<TQueryFnData, unknown>;
|
|
@@ -129,8 +129,8 @@ declare const useMessages: () => {
|
|
|
129
129
|
isRefetchError: false;
|
|
130
130
|
isSuccess: true;
|
|
131
131
|
status: "success";
|
|
132
|
-
fetchNextPage: (options?:
|
|
133
|
-
fetchPreviousPage: (options?:
|
|
132
|
+
fetchNextPage: (options?: _tanstack_react_query.FetchNextPageOptions | undefined) => Promise<_tanstack_react_query.InfiniteQueryObserverResult<InfiniteData<TQueryFnData, unknown>, Error>>;
|
|
133
|
+
fetchPreviousPage: (options?: _tanstack_react_query.FetchPreviousPageOptions | undefined) => Promise<_tanstack_react_query.InfiniteQueryObserverResult<InfiniteData<TQueryFnData, unknown>, Error>>;
|
|
134
134
|
hasNextPage: boolean;
|
|
135
135
|
hasPreviousPage: boolean;
|
|
136
136
|
isFetchingNextPage: boolean;
|
|
@@ -148,8 +148,8 @@ declare const useMessages: () => {
|
|
|
148
148
|
isPlaceholderData: boolean;
|
|
149
149
|
isRefetching: boolean;
|
|
150
150
|
isStale: boolean;
|
|
151
|
-
refetch: (options?:
|
|
152
|
-
fetchStatus:
|
|
151
|
+
refetch: (options?: _tanstack_react_query.RefetchOptions | undefined) => Promise<_tanstack_react_query.QueryObserverResult<InfiniteData<TQueryFnData, unknown>, Error>>;
|
|
152
|
+
fetchStatus: _tanstack_react_query.FetchStatus;
|
|
153
153
|
} | {
|
|
154
154
|
messages: SerializedMessage[];
|
|
155
155
|
data: undefined;
|
|
@@ -161,8 +161,8 @@ declare const useMessages: () => {
|
|
|
161
161
|
isRefetchError: false;
|
|
162
162
|
isSuccess: false;
|
|
163
163
|
status: "error";
|
|
164
|
-
fetchNextPage: (options?:
|
|
165
|
-
fetchPreviousPage: (options?:
|
|
164
|
+
fetchNextPage: (options?: _tanstack_react_query.FetchNextPageOptions | undefined) => Promise<_tanstack_react_query.InfiniteQueryObserverResult<InfiniteData<TQueryFnData, unknown>, Error>>;
|
|
165
|
+
fetchPreviousPage: (options?: _tanstack_react_query.FetchPreviousPageOptions | undefined) => Promise<_tanstack_react_query.InfiniteQueryObserverResult<InfiniteData<TQueryFnData, unknown>, Error>>;
|
|
166
166
|
hasNextPage: boolean;
|
|
167
167
|
hasPreviousPage: boolean;
|
|
168
168
|
isFetchingNextPage: boolean;
|
|
@@ -180,8 +180,8 @@ declare const useMessages: () => {
|
|
|
180
180
|
isPlaceholderData: boolean;
|
|
181
181
|
isRefetching: boolean;
|
|
182
182
|
isStale: boolean;
|
|
183
|
-
refetch: (options?:
|
|
184
|
-
fetchStatus:
|
|
183
|
+
refetch: (options?: _tanstack_react_query.RefetchOptions | undefined) => Promise<_tanstack_react_query.QueryObserverResult<InfiniteData<TQueryFnData, unknown>, Error>>;
|
|
184
|
+
fetchStatus: _tanstack_react_query.FetchStatus;
|
|
185
185
|
} | {
|
|
186
186
|
messages: SerializedMessage[];
|
|
187
187
|
data: undefined;
|
|
@@ -193,8 +193,8 @@ declare const useMessages: () => {
|
|
|
193
193
|
isRefetchError: false;
|
|
194
194
|
isSuccess: false;
|
|
195
195
|
status: "pending";
|
|
196
|
-
fetchNextPage: (options?:
|
|
197
|
-
fetchPreviousPage: (options?:
|
|
196
|
+
fetchNextPage: (options?: _tanstack_react_query.FetchNextPageOptions | undefined) => Promise<_tanstack_react_query.InfiniteQueryObserverResult<InfiniteData<TQueryFnData, unknown>, Error>>;
|
|
197
|
+
fetchPreviousPage: (options?: _tanstack_react_query.FetchPreviousPageOptions | undefined) => Promise<_tanstack_react_query.InfiniteQueryObserverResult<InfiniteData<TQueryFnData, unknown>, Error>>;
|
|
198
198
|
hasNextPage: boolean;
|
|
199
199
|
hasPreviousPage: boolean;
|
|
200
200
|
isFetchingNextPage: boolean;
|
|
@@ -212,8 +212,8 @@ declare const useMessages: () => {
|
|
|
212
212
|
isPlaceholderData: boolean;
|
|
213
213
|
isRefetching: boolean;
|
|
214
214
|
isStale: boolean;
|
|
215
|
-
refetch: (options?:
|
|
216
|
-
fetchStatus:
|
|
215
|
+
refetch: (options?: _tanstack_react_query.RefetchOptions | undefined) => Promise<_tanstack_react_query.QueryObserverResult<InfiniteData<TQueryFnData, unknown>, Error>>;
|
|
216
|
+
fetchStatus: _tanstack_react_query.FetchStatus;
|
|
217
217
|
} | {
|
|
218
218
|
messages: SerializedMessage[];
|
|
219
219
|
data: undefined;
|
|
@@ -224,8 +224,8 @@ declare const useMessages: () => {
|
|
|
224
224
|
isRefetchError: false;
|
|
225
225
|
isSuccess: false;
|
|
226
226
|
status: "pending";
|
|
227
|
-
fetchNextPage: (options?:
|
|
228
|
-
fetchPreviousPage: (options?:
|
|
227
|
+
fetchNextPage: (options?: _tanstack_react_query.FetchNextPageOptions | undefined) => Promise<_tanstack_react_query.InfiniteQueryObserverResult<InfiniteData<TQueryFnData, unknown>, Error>>;
|
|
228
|
+
fetchPreviousPage: (options?: _tanstack_react_query.FetchPreviousPageOptions | undefined) => Promise<_tanstack_react_query.InfiniteQueryObserverResult<InfiniteData<TQueryFnData, unknown>, Error>>;
|
|
229
229
|
hasNextPage: boolean;
|
|
230
230
|
hasPreviousPage: boolean;
|
|
231
231
|
isFetchingNextPage: boolean;
|
|
@@ -244,8 +244,8 @@ declare const useMessages: () => {
|
|
|
244
244
|
isPlaceholderData: boolean;
|
|
245
245
|
isRefetching: boolean;
|
|
246
246
|
isStale: boolean;
|
|
247
|
-
refetch: (options?:
|
|
248
|
-
fetchStatus:
|
|
247
|
+
refetch: (options?: _tanstack_react_query.RefetchOptions | undefined) => Promise<_tanstack_react_query.QueryObserverResult<InfiniteData<TQueryFnData, unknown>, Error>>;
|
|
248
|
+
fetchStatus: _tanstack_react_query.FetchStatus;
|
|
249
249
|
};
|
|
250
250
|
|
|
251
251
|
declare const useMessageContext: () => {
|
|
@@ -255,7 +255,7 @@ declare const useMessageContext: () => {
|
|
|
255
255
|
declare const useLatestMessage: () => {
|
|
256
256
|
latestMessage: SerializedMessage;
|
|
257
257
|
messages: SerializedMessage[];
|
|
258
|
-
data:
|
|
258
|
+
data: _tanstack_query_core.InfiniteData<TQueryFnData, unknown>;
|
|
259
259
|
error: Error;
|
|
260
260
|
isError: true;
|
|
261
261
|
isPending: false;
|
|
@@ -264,8 +264,8 @@ declare const useLatestMessage: () => {
|
|
|
264
264
|
isRefetchError: true;
|
|
265
265
|
isSuccess: false;
|
|
266
266
|
status: "error";
|
|
267
|
-
fetchNextPage: (options?:
|
|
268
|
-
fetchPreviousPage: (options?:
|
|
267
|
+
fetchNextPage: (options?: _tanstack_query_core.FetchNextPageOptions | undefined) => Promise<_tanstack_query_core.InfiniteQueryObserverResult<_tanstack_query_core.InfiniteData<TQueryFnData, unknown>, Error>>;
|
|
268
|
+
fetchPreviousPage: (options?: _tanstack_query_core.FetchPreviousPageOptions | undefined) => Promise<_tanstack_query_core.InfiniteQueryObserverResult<_tanstack_query_core.InfiniteData<TQueryFnData, unknown>, Error>>;
|
|
269
269
|
hasNextPage: boolean;
|
|
270
270
|
hasPreviousPage: boolean;
|
|
271
271
|
isFetchingNextPage: boolean;
|
|
@@ -283,12 +283,12 @@ declare const useLatestMessage: () => {
|
|
|
283
283
|
isPlaceholderData: boolean;
|
|
284
284
|
isRefetching: boolean;
|
|
285
285
|
isStale: boolean;
|
|
286
|
-
refetch: (options?:
|
|
287
|
-
fetchStatus:
|
|
286
|
+
refetch: (options?: _tanstack_query_core.RefetchOptions | undefined) => Promise<_tanstack_query_core.QueryObserverResult<_tanstack_query_core.InfiniteData<TQueryFnData, unknown>, Error>>;
|
|
287
|
+
fetchStatus: _tanstack_query_core.FetchStatus;
|
|
288
288
|
} | {
|
|
289
289
|
latestMessage: SerializedMessage;
|
|
290
290
|
messages: SerializedMessage[];
|
|
291
|
-
data:
|
|
291
|
+
data: _tanstack_query_core.InfiniteData<TQueryFnData, unknown>;
|
|
292
292
|
error: null;
|
|
293
293
|
isError: false;
|
|
294
294
|
isPending: false;
|
|
@@ -297,8 +297,8 @@ declare const useLatestMessage: () => {
|
|
|
297
297
|
isRefetchError: false;
|
|
298
298
|
isSuccess: true;
|
|
299
299
|
status: "success";
|
|
300
|
-
fetchNextPage: (options?:
|
|
301
|
-
fetchPreviousPage: (options?:
|
|
300
|
+
fetchNextPage: (options?: _tanstack_query_core.FetchNextPageOptions | undefined) => Promise<_tanstack_query_core.InfiniteQueryObserverResult<_tanstack_query_core.InfiniteData<TQueryFnData, unknown>, Error>>;
|
|
301
|
+
fetchPreviousPage: (options?: _tanstack_query_core.FetchPreviousPageOptions | undefined) => Promise<_tanstack_query_core.InfiniteQueryObserverResult<_tanstack_query_core.InfiniteData<TQueryFnData, unknown>, Error>>;
|
|
302
302
|
hasNextPage: boolean;
|
|
303
303
|
hasPreviousPage: boolean;
|
|
304
304
|
isFetchingNextPage: boolean;
|
|
@@ -316,8 +316,8 @@ declare const useLatestMessage: () => {
|
|
|
316
316
|
isPlaceholderData: boolean;
|
|
317
317
|
isRefetching: boolean;
|
|
318
318
|
isStale: boolean;
|
|
319
|
-
refetch: (options?:
|
|
320
|
-
fetchStatus:
|
|
319
|
+
refetch: (options?: _tanstack_query_core.RefetchOptions | undefined) => Promise<_tanstack_query_core.QueryObserverResult<_tanstack_query_core.InfiniteData<TQueryFnData, unknown>, Error>>;
|
|
320
|
+
fetchStatus: _tanstack_query_core.FetchStatus;
|
|
321
321
|
} | {
|
|
322
322
|
latestMessage: SerializedMessage;
|
|
323
323
|
messages: SerializedMessage[];
|
|
@@ -330,8 +330,8 @@ declare const useLatestMessage: () => {
|
|
|
330
330
|
isRefetchError: false;
|
|
331
331
|
isSuccess: false;
|
|
332
332
|
status: "error";
|
|
333
|
-
fetchNextPage: (options?:
|
|
334
|
-
fetchPreviousPage: (options?:
|
|
333
|
+
fetchNextPage: (options?: _tanstack_query_core.FetchNextPageOptions | undefined) => Promise<_tanstack_query_core.InfiniteQueryObserverResult<_tanstack_query_core.InfiniteData<TQueryFnData, unknown>, Error>>;
|
|
334
|
+
fetchPreviousPage: (options?: _tanstack_query_core.FetchPreviousPageOptions | undefined) => Promise<_tanstack_query_core.InfiniteQueryObserverResult<_tanstack_query_core.InfiniteData<TQueryFnData, unknown>, Error>>;
|
|
335
335
|
hasNextPage: boolean;
|
|
336
336
|
hasPreviousPage: boolean;
|
|
337
337
|
isFetchingNextPage: boolean;
|
|
@@ -349,8 +349,8 @@ declare const useLatestMessage: () => {
|
|
|
349
349
|
isPlaceholderData: boolean;
|
|
350
350
|
isRefetching: boolean;
|
|
351
351
|
isStale: boolean;
|
|
352
|
-
refetch: (options?:
|
|
353
|
-
fetchStatus:
|
|
352
|
+
refetch: (options?: _tanstack_query_core.RefetchOptions | undefined) => Promise<_tanstack_query_core.QueryObserverResult<_tanstack_query_core.InfiniteData<TQueryFnData, unknown>, Error>>;
|
|
353
|
+
fetchStatus: _tanstack_query_core.FetchStatus;
|
|
354
354
|
} | {
|
|
355
355
|
latestMessage: SerializedMessage;
|
|
356
356
|
messages: SerializedMessage[];
|
|
@@ -363,8 +363,8 @@ declare const useLatestMessage: () => {
|
|
|
363
363
|
isRefetchError: false;
|
|
364
364
|
isSuccess: false;
|
|
365
365
|
status: "pending";
|
|
366
|
-
fetchNextPage: (options?:
|
|
367
|
-
fetchPreviousPage: (options?:
|
|
366
|
+
fetchNextPage: (options?: _tanstack_query_core.FetchNextPageOptions | undefined) => Promise<_tanstack_query_core.InfiniteQueryObserverResult<_tanstack_query_core.InfiniteData<TQueryFnData, unknown>, Error>>;
|
|
367
|
+
fetchPreviousPage: (options?: _tanstack_query_core.FetchPreviousPageOptions | undefined) => Promise<_tanstack_query_core.InfiniteQueryObserverResult<_tanstack_query_core.InfiniteData<TQueryFnData, unknown>, Error>>;
|
|
368
368
|
hasNextPage: boolean;
|
|
369
369
|
hasPreviousPage: boolean;
|
|
370
370
|
isFetchingNextPage: boolean;
|
|
@@ -382,8 +382,8 @@ declare const useLatestMessage: () => {
|
|
|
382
382
|
isPlaceholderData: boolean;
|
|
383
383
|
isRefetching: boolean;
|
|
384
384
|
isStale: boolean;
|
|
385
|
-
refetch: (options?:
|
|
386
|
-
fetchStatus:
|
|
385
|
+
refetch: (options?: _tanstack_query_core.RefetchOptions | undefined) => Promise<_tanstack_query_core.QueryObserverResult<_tanstack_query_core.InfiniteData<TQueryFnData, unknown>, Error>>;
|
|
386
|
+
fetchStatus: _tanstack_query_core.FetchStatus;
|
|
387
387
|
} | {
|
|
388
388
|
latestMessage: SerializedMessage;
|
|
389
389
|
messages: SerializedMessage[];
|
|
@@ -395,8 +395,8 @@ declare const useLatestMessage: () => {
|
|
|
395
395
|
isRefetchError: false;
|
|
396
396
|
isSuccess: false;
|
|
397
397
|
status: "pending";
|
|
398
|
-
fetchNextPage: (options?:
|
|
399
|
-
fetchPreviousPage: (options?:
|
|
398
|
+
fetchNextPage: (options?: _tanstack_query_core.FetchNextPageOptions | undefined) => Promise<_tanstack_query_core.InfiniteQueryObserverResult<_tanstack_query_core.InfiniteData<TQueryFnData, unknown>, Error>>;
|
|
399
|
+
fetchPreviousPage: (options?: _tanstack_query_core.FetchPreviousPageOptions | undefined) => Promise<_tanstack_query_core.InfiniteQueryObserverResult<_tanstack_query_core.InfiniteData<TQueryFnData, unknown>, Error>>;
|
|
400
400
|
hasNextPage: boolean;
|
|
401
401
|
hasPreviousPage: boolean;
|
|
402
402
|
isFetchingNextPage: boolean;
|
|
@@ -415,12 +415,12 @@ declare const useLatestMessage: () => {
|
|
|
415
415
|
isPlaceholderData: boolean;
|
|
416
416
|
isRefetching: boolean;
|
|
417
417
|
isStale: boolean;
|
|
418
|
-
refetch: (options?:
|
|
419
|
-
fetchStatus:
|
|
418
|
+
refetch: (options?: _tanstack_query_core.RefetchOptions | undefined) => Promise<_tanstack_query_core.QueryObserverResult<_tanstack_query_core.InfiniteData<TQueryFnData, unknown>, Error>>;
|
|
419
|
+
fetchStatus: _tanstack_query_core.FetchStatus;
|
|
420
420
|
};
|
|
421
421
|
|
|
422
422
|
declare const useCreateMessage: ({ onError, }?: {
|
|
423
|
-
onError?: (
|
|
423
|
+
onError?: (error: unknown) => void;
|
|
424
424
|
}) => {
|
|
425
425
|
createMessage: (restobj: Omit<any, string>) => Promise<any>;
|
|
426
426
|
data: undefined;
|
|
@@ -431,14 +431,14 @@ declare const useCreateMessage: ({ onError, }?: {
|
|
|
431
431
|
isPending: false;
|
|
432
432
|
isSuccess: false;
|
|
433
433
|
status: "idle";
|
|
434
|
-
mutate:
|
|
434
|
+
mutate: _tanstack_react_query.UseMutateFunction<any, any, any, any>;
|
|
435
435
|
reset: () => void;
|
|
436
436
|
context: any;
|
|
437
437
|
failureCount: number;
|
|
438
438
|
failureReason: any;
|
|
439
439
|
isPaused: boolean;
|
|
440
440
|
submittedAt: number;
|
|
441
|
-
mutateAsync:
|
|
441
|
+
mutateAsync: _tanstack_react_query.UseMutateAsyncFunction<any, any, any, any>;
|
|
442
442
|
} | {
|
|
443
443
|
createMessage: (restobj: Omit<any, string>) => Promise<any>;
|
|
444
444
|
data: undefined;
|
|
@@ -449,14 +449,14 @@ declare const useCreateMessage: ({ onError, }?: {
|
|
|
449
449
|
isPending: true;
|
|
450
450
|
isSuccess: false;
|
|
451
451
|
status: "pending";
|
|
452
|
-
mutate:
|
|
452
|
+
mutate: _tanstack_react_query.UseMutateFunction<any, any, any, any>;
|
|
453
453
|
reset: () => void;
|
|
454
454
|
context: any;
|
|
455
455
|
failureCount: number;
|
|
456
456
|
failureReason: any;
|
|
457
457
|
isPaused: boolean;
|
|
458
458
|
submittedAt: number;
|
|
459
|
-
mutateAsync:
|
|
459
|
+
mutateAsync: _tanstack_react_query.UseMutateAsyncFunction<any, any, any, any>;
|
|
460
460
|
} | {
|
|
461
461
|
createMessage: (restobj: Omit<any, string>) => Promise<any>;
|
|
462
462
|
data: undefined;
|
|
@@ -467,14 +467,14 @@ declare const useCreateMessage: ({ onError, }?: {
|
|
|
467
467
|
isPending: false;
|
|
468
468
|
isSuccess: false;
|
|
469
469
|
status: "error";
|
|
470
|
-
mutate:
|
|
470
|
+
mutate: _tanstack_react_query.UseMutateFunction<any, any, any, any>;
|
|
471
471
|
reset: () => void;
|
|
472
472
|
context: any;
|
|
473
473
|
failureCount: number;
|
|
474
474
|
failureReason: any;
|
|
475
475
|
isPaused: boolean;
|
|
476
476
|
submittedAt: number;
|
|
477
|
-
mutateAsync:
|
|
477
|
+
mutateAsync: _tanstack_react_query.UseMutateAsyncFunction<any, any, any, any>;
|
|
478
478
|
} | {
|
|
479
479
|
createMessage: (restobj: Omit<any, string>) => Promise<any>;
|
|
480
480
|
data: any;
|
|
@@ -485,14 +485,14 @@ declare const useCreateMessage: ({ onError, }?: {
|
|
|
485
485
|
isPending: false;
|
|
486
486
|
isSuccess: true;
|
|
487
487
|
status: "success";
|
|
488
|
-
mutate:
|
|
488
|
+
mutate: _tanstack_react_query.UseMutateFunction<any, any, any, any>;
|
|
489
489
|
reset: () => void;
|
|
490
490
|
context: any;
|
|
491
491
|
failureCount: number;
|
|
492
492
|
failureReason: any;
|
|
493
493
|
isPaused: boolean;
|
|
494
494
|
submittedAt: number;
|
|
495
|
-
mutateAsync:
|
|
495
|
+
mutateAsync: _tanstack_react_query.UseMutateAsyncFunction<any, any, any, any>;
|
|
496
496
|
};
|
|
497
497
|
|
|
498
498
|
declare const ThreadDialog: {
|