@iblai/data-layer 1.1.2 → 1.1.4
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.d.ts +41055 -23773
- package/dist/index.esm.js +5430 -2801
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +5515 -2799
- package/dist/index.js.map +1 -1
- package/dist/package.json +10 -7
- package/dist/src/core/index.d.ts +7 -1
- package/dist/src/features/analytics/constants.d.ts +6 -6
- package/dist/src/features/analytics/types.d.ts +9 -0
- package/dist/src/features/api-keys/api-slice.d.ts +72 -24
- package/dist/src/features/apps/api-slice.d.ts +72 -24
- package/dist/src/features/artifacts/api-slice.d.ts +1798 -0
- package/dist/src/features/artifacts/constants.d.ts +42 -0
- package/dist/src/features/artifacts/index.d.ts +3 -0
- package/dist/src/features/artifacts/types.d.ts +37 -0
- package/dist/src/features/auth/types.d.ts +1 -1
- package/dist/src/features/billing/api-slice.d.ts +15 -5
- package/dist/src/features/billing/constants.d.ts +16 -0
- package/dist/src/features/billing/custom-api-slice.d.ts +634 -0
- package/dist/src/features/billing/types.d.ts +35 -0
- package/dist/src/features/career/api-slice.d.ts +342 -114
- package/dist/src/features/catalog/api-slice.d.ts +1050 -317
- package/dist/src/features/chat/api-slice.d.ts +204 -68
- package/dist/src/features/chat-history/api-slice.d.ts +202 -60
- package/dist/src/features/core/api-slice.d.ts +1143 -134
- package/dist/src/features/core/custom-public-image-asset-api-slice.d.ts +60 -20
- package/dist/src/features/credentials/__tests__/custom-api-slice.test.d.ts +1 -0
- package/dist/src/features/credentials/api-slice.d.ts +3706 -146
- package/dist/src/features/credentials/constants.d.ts +9 -1
- package/dist/src/features/credentials/custom-api-slice.d.ts +535 -2
- package/dist/src/features/credentials/types.d.ts +14 -0
- package/dist/src/features/datasets/api-slice.d.ts +60 -197
- package/dist/src/features/index.d.ts +2 -1
- package/dist/src/features/llms/api-slice.d.ts +60 -20
- package/dist/src/features/mcp/api-slice.d.ts +2613 -0
- package/dist/src/features/mcp/constants.d.ts +57 -0
- package/dist/src/features/mcp/index.d.ts +3 -0
- package/dist/src/features/mcp/types.d.ts +176 -0
- package/dist/src/features/memory/types.d.ts +1 -0
- package/dist/src/features/mentor/api-slice.d.ts +1789 -473
- package/dist/src/features/mentor/constants.d.ts +7 -1
- package/dist/src/features/mentor/custom-api-slice.d.ts +162 -1
- package/dist/src/features/mentor/types.d.ts +7 -1
- package/dist/src/features/mentor-categories/api-slice.d.ts +117 -39
- package/dist/src/features/moderation-logs/api-slice.d.ts +705 -0
- package/dist/src/features/notifications/api-slice.d.ts +214 -86
- package/dist/src/features/per-learner/api-slice.d.ts +174 -58
- package/dist/src/features/platform/api-slice.d.ts +1568 -293
- package/dist/src/features/platform/types.d.ts +13 -0
- package/dist/src/features/prompts/api-slice.d.ts +249 -83
- package/dist/src/features/reports/api-slice.d.ts +145 -41
- package/dist/src/features/search/ai-search-api-slice.d.ts +399 -1
- package/dist/src/features/search/api-slice.d.ts +117 -39
- package/dist/src/features/search/constants.d.ts +10 -0
- package/dist/src/features/search/types.d.ts +72 -0
- package/dist/src/features/sessions/api-slice.d.ts +440 -46
- package/dist/src/features/skills/api-slice.d.ts +231 -77
- package/dist/src/features/tenant/api-slice.d.ts +123 -41
- package/dist/src/features/tools/api-slice.d.ts +60 -20
- package/dist/src/features/training-documents/api-slice.d.ts +141 -47
- package/dist/src/features/user-invitations/api-slice.d.ts +66 -22
- package/dist/src/index.d.ts +6 -0
- package/dist/tests/features/billing/constants.test.d.ts +1 -0
- package/dist/tests/features/billing/custom-api-slice.test.d.ts +1 -0
- package/dist/tests/features/billing/types.test.d.ts +1 -0
- package/package.json +10 -7
- package/dist/tsconfig.tsbuildinfo +0 -1
|
@@ -1,18 +1,31 @@
|
|
|
1
|
-
export declare const sessionApiSlice: import("@reduxjs/toolkit/query").Api<import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
1
|
+
export declare const sessionApiSlice: import("@reduxjs/toolkit/query").Api<import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2
|
+
attempt?: number;
|
|
3
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, {
|
|
2
4
|
createSessionId: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
3
5
|
org: string;
|
|
4
6
|
requestBody: import("@iblai/iblai-api").ChatSessionRequest;
|
|
5
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
7
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
8
|
+
attempt?: number;
|
|
9
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "sessionId", import("@iblai/iblai-api").ChatSessionResponse, "sessionApiSlice", any>;
|
|
6
10
|
getSessionId: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
7
11
|
org: string;
|
|
8
12
|
sessionId: string;
|
|
9
|
-
|
|
10
|
-
|
|
13
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
14
|
+
attempt?: number;
|
|
15
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "sessionId", import("@iblai/iblai-api").MessageView, "sessionApiSlice", any>;
|
|
16
|
+
getSharedSessionId: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
17
|
+
org: string;
|
|
18
|
+
sessionId: string;
|
|
19
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
20
|
+
attempt?: number;
|
|
21
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "sessionId", import("@iblai/iblai-api").MessageView, "sessionApiSlice", any>;
|
|
11
22
|
editSession: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
12
23
|
org: string;
|
|
13
24
|
sessionId: string;
|
|
14
25
|
requestBody?: import("@iblai/iblai-api").MessageViewRequest;
|
|
15
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
26
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
27
|
+
attempt?: number;
|
|
28
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "sessionId", import("@iblai/iblai-api").MessageViewUpdatResponse, "sessionApiSlice", any>;
|
|
16
29
|
}, "sessionApiSlice", "sessionId", typeof import("@reduxjs/toolkit/query").coreModuleName | typeof import("@reduxjs/toolkit/dist/query/react").reactHooksModuleName>;
|
|
17
30
|
export declare const useCreateSessionIdMutation: <R extends Record<string, any> = ({
|
|
18
31
|
requestId?: undefined;
|
|
@@ -177,7 +190,9 @@ export declare const useCreateSessionIdMutation: <R extends Record<string, any>
|
|
|
177
190
|
}) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
178
191
|
org: string;
|
|
179
192
|
requestBody: import("@iblai/iblai-api").ChatSessionRequest;
|
|
180
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
193
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
194
|
+
attempt?: number;
|
|
195
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "sessionId", import("@iblai/iblai-api").ChatSessionResponse, "sessionApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
181
196
|
originalArgs?: {
|
|
182
197
|
org: string;
|
|
183
198
|
requestBody: import("@iblai/iblai-api").ChatSessionRequest;
|
|
@@ -204,8 +219,9 @@ export declare const useCreateSessionIdMutation: <R extends Record<string, any>
|
|
|
204
219
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
205
220
|
org: string;
|
|
206
221
|
sessionId: string;
|
|
207
|
-
|
|
208
|
-
|
|
222
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
223
|
+
attempt?: number;
|
|
224
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "sessionId", import("@iblai/iblai-api").MessageView, "sessionApiSlice", any>> & {
|
|
209
225
|
currentData?: import("@iblai/iblai-api").MessageView | undefined;
|
|
210
226
|
isUninitialized: false;
|
|
211
227
|
isLoading: false;
|
|
@@ -223,8 +239,9 @@ export declare const useCreateSessionIdMutation: <R extends Record<string, any>
|
|
|
223
239
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
224
240
|
org: string;
|
|
225
241
|
sessionId: string;
|
|
226
|
-
|
|
227
|
-
|
|
242
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
243
|
+
attempt?: number;
|
|
244
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "sessionId", import("@iblai/iblai-api").MessageView, "sessionApiSlice", any>> & {
|
|
228
245
|
currentData?: import("@iblai/iblai-api").MessageView | undefined;
|
|
229
246
|
isUninitialized: false;
|
|
230
247
|
isLoading: false;
|
|
@@ -238,8 +255,9 @@ export declare const useCreateSessionIdMutation: <R extends Record<string, any>
|
|
|
238
255
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
239
256
|
org: string;
|
|
240
257
|
sessionId: string;
|
|
241
|
-
|
|
242
|
-
|
|
258
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
259
|
+
attempt?: number;
|
|
260
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "sessionId", import("@iblai/iblai-api").MessageView, "sessionApiSlice", any>> & {
|
|
243
261
|
currentData?: import("@iblai/iblai-api").MessageView | undefined;
|
|
244
262
|
isUninitialized: false;
|
|
245
263
|
isLoading: false;
|
|
@@ -251,8 +269,9 @@ export declare const useCreateSessionIdMutation: <R extends Record<string, any>
|
|
|
251
269
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
252
270
|
org: string;
|
|
253
271
|
sessionId: string;
|
|
254
|
-
|
|
255
|
-
|
|
272
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
273
|
+
attempt?: number;
|
|
274
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "sessionId", import("@iblai/iblai-api").MessageView, "sessionApiSlice", any>> & {
|
|
256
275
|
currentData?: import("@iblai/iblai-api").MessageView | undefined;
|
|
257
276
|
isUninitialized: false;
|
|
258
277
|
isLoading: false;
|
|
@@ -264,7 +283,6 @@ export declare const useCreateSessionIdMutation: <R extends Record<string, any>
|
|
|
264
283
|
}>(arg: {
|
|
265
284
|
org: string;
|
|
266
285
|
sessionId: string;
|
|
267
|
-
share?: boolean;
|
|
268
286
|
} | typeof import("@reduxjs/toolkit/query").skipToken, options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & {
|
|
269
287
|
skip?: boolean;
|
|
270
288
|
refetchOnMountOrArgChange?: boolean | number;
|
|
@@ -291,8 +309,9 @@ export declare const useCreateSessionIdMutation: <R extends Record<string, any>
|
|
|
291
309
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
292
310
|
org: string;
|
|
293
311
|
sessionId: string;
|
|
294
|
-
|
|
295
|
-
|
|
312
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
313
|
+
attempt?: number;
|
|
314
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "sessionId", import("@iblai/iblai-api").MessageView, "sessionApiSlice", any>> & {
|
|
296
315
|
currentData?: import("@iblai/iblai-api").MessageView | undefined;
|
|
297
316
|
isUninitialized: false;
|
|
298
317
|
isLoading: false;
|
|
@@ -310,8 +329,9 @@ export declare const useCreateSessionIdMutation: <R extends Record<string, any>
|
|
|
310
329
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
311
330
|
org: string;
|
|
312
331
|
sessionId: string;
|
|
313
|
-
|
|
314
|
-
|
|
332
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
333
|
+
attempt?: number;
|
|
334
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "sessionId", import("@iblai/iblai-api").MessageView, "sessionApiSlice", any>> & {
|
|
315
335
|
currentData?: import("@iblai/iblai-api").MessageView | undefined;
|
|
316
336
|
isUninitialized: false;
|
|
317
337
|
isLoading: false;
|
|
@@ -325,8 +345,9 @@ export declare const useCreateSessionIdMutation: <R extends Record<string, any>
|
|
|
325
345
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
326
346
|
org: string;
|
|
327
347
|
sessionId: string;
|
|
328
|
-
|
|
329
|
-
|
|
348
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
349
|
+
attempt?: number;
|
|
350
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "sessionId", import("@iblai/iblai-api").MessageView, "sessionApiSlice", any>> & {
|
|
330
351
|
currentData?: import("@iblai/iblai-api").MessageView | undefined;
|
|
331
352
|
isUninitialized: false;
|
|
332
353
|
isLoading: false;
|
|
@@ -338,8 +359,9 @@ export declare const useCreateSessionIdMutation: <R extends Record<string, any>
|
|
|
338
359
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
339
360
|
org: string;
|
|
340
361
|
sessionId: string;
|
|
341
|
-
|
|
342
|
-
|
|
362
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
363
|
+
attempt?: number;
|
|
364
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "sessionId", import("@iblai/iblai-api").MessageView, "sessionApiSlice", any>> & {
|
|
343
365
|
currentData?: import("@iblai/iblai-api").MessageView | undefined;
|
|
344
366
|
isUninitialized: false;
|
|
345
367
|
isLoading: false;
|
|
@@ -353,8 +375,9 @@ export declare const useCreateSessionIdMutation: <R extends Record<string, any>
|
|
|
353
375
|
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
354
376
|
org: string;
|
|
355
377
|
sessionId: string;
|
|
356
|
-
|
|
357
|
-
|
|
378
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
379
|
+
attempt?: number;
|
|
380
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "sessionId", import("@iblai/iblai-api").MessageView, "sessionApiSlice", any>>;
|
|
358
381
|
}, useLazyGetSessionIdQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
359
382
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
360
383
|
originalArgs?: undefined | undefined;
|
|
@@ -376,8 +399,371 @@ export declare const useCreateSessionIdMutation: <R extends Record<string, any>
|
|
|
376
399
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
377
400
|
org: string;
|
|
378
401
|
sessionId: string;
|
|
379
|
-
|
|
380
|
-
|
|
402
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
403
|
+
attempt?: number;
|
|
404
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "sessionId", import("@iblai/iblai-api").MessageView, "sessionApiSlice", any>> & {
|
|
405
|
+
currentData?: import("@iblai/iblai-api").MessageView | undefined;
|
|
406
|
+
isUninitialized: false;
|
|
407
|
+
isLoading: false;
|
|
408
|
+
isFetching: false;
|
|
409
|
+
isSuccess: false;
|
|
410
|
+
isError: false;
|
|
411
|
+
}, {
|
|
412
|
+
isLoading: true;
|
|
413
|
+
isFetching: boolean;
|
|
414
|
+
data: undefined;
|
|
415
|
+
} | ({
|
|
416
|
+
isSuccess: true;
|
|
417
|
+
isFetching: true;
|
|
418
|
+
error: undefined;
|
|
419
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
420
|
+
org: string;
|
|
421
|
+
sessionId: string;
|
|
422
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
423
|
+
attempt?: number;
|
|
424
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "sessionId", import("@iblai/iblai-api").MessageView, "sessionApiSlice", any>> & {
|
|
425
|
+
currentData?: import("@iblai/iblai-api").MessageView | undefined;
|
|
426
|
+
isUninitialized: false;
|
|
427
|
+
isLoading: false;
|
|
428
|
+
isFetching: false;
|
|
429
|
+
isSuccess: false;
|
|
430
|
+
isError: false;
|
|
431
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
432
|
+
isSuccess: true;
|
|
433
|
+
isFetching: false;
|
|
434
|
+
error: undefined;
|
|
435
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
436
|
+
org: string;
|
|
437
|
+
sessionId: string;
|
|
438
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
439
|
+
attempt?: number;
|
|
440
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "sessionId", import("@iblai/iblai-api").MessageView, "sessionApiSlice", any>> & {
|
|
441
|
+
currentData?: import("@iblai/iblai-api").MessageView | undefined;
|
|
442
|
+
isUninitialized: false;
|
|
443
|
+
isLoading: false;
|
|
444
|
+
isFetching: false;
|
|
445
|
+
isSuccess: false;
|
|
446
|
+
isError: false;
|
|
447
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
448
|
+
isError: true;
|
|
449
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
450
|
+
org: string;
|
|
451
|
+
sessionId: string;
|
|
452
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
453
|
+
attempt?: number;
|
|
454
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "sessionId", import("@iblai/iblai-api").MessageView, "sessionApiSlice", any>> & {
|
|
455
|
+
currentData?: import("@iblai/iblai-api").MessageView | undefined;
|
|
456
|
+
isUninitialized: false;
|
|
457
|
+
isLoading: false;
|
|
458
|
+
isFetching: false;
|
|
459
|
+
isSuccess: false;
|
|
460
|
+
isError: false;
|
|
461
|
+
}, "error">>)>> & {
|
|
462
|
+
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
463
|
+
}>(options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & Omit<{
|
|
464
|
+
skip?: boolean;
|
|
465
|
+
selectFromResult?: ((state: import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
466
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
467
|
+
originalArgs?: undefined | undefined;
|
|
468
|
+
data?: undefined | undefined;
|
|
469
|
+
error?: undefined | undefined;
|
|
470
|
+
requestId?: undefined | undefined;
|
|
471
|
+
endpointName?: string | undefined;
|
|
472
|
+
startedTimeStamp?: undefined | undefined;
|
|
473
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
474
|
+
} & {
|
|
475
|
+
currentData?: import("@iblai/iblai-api").MessageView | undefined;
|
|
476
|
+
isUninitialized: false;
|
|
477
|
+
isLoading: false;
|
|
478
|
+
isFetching: false;
|
|
479
|
+
isSuccess: false;
|
|
480
|
+
isError: false;
|
|
481
|
+
}, "isUninitialized"> & {
|
|
482
|
+
isUninitialized: true;
|
|
483
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
484
|
+
org: string;
|
|
485
|
+
sessionId: string;
|
|
486
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
487
|
+
attempt?: number;
|
|
488
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "sessionId", import("@iblai/iblai-api").MessageView, "sessionApiSlice", any>> & {
|
|
489
|
+
currentData?: import("@iblai/iblai-api").MessageView | undefined;
|
|
490
|
+
isUninitialized: false;
|
|
491
|
+
isLoading: false;
|
|
492
|
+
isFetching: false;
|
|
493
|
+
isSuccess: false;
|
|
494
|
+
isError: false;
|
|
495
|
+
}, {
|
|
496
|
+
isLoading: true;
|
|
497
|
+
isFetching: boolean;
|
|
498
|
+
data: undefined;
|
|
499
|
+
} | ({
|
|
500
|
+
isSuccess: true;
|
|
501
|
+
isFetching: true;
|
|
502
|
+
error: undefined;
|
|
503
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
504
|
+
org: string;
|
|
505
|
+
sessionId: string;
|
|
506
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
507
|
+
attempt?: number;
|
|
508
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "sessionId", import("@iblai/iblai-api").MessageView, "sessionApiSlice", any>> & {
|
|
509
|
+
currentData?: import("@iblai/iblai-api").MessageView | undefined;
|
|
510
|
+
isUninitialized: false;
|
|
511
|
+
isLoading: false;
|
|
512
|
+
isFetching: false;
|
|
513
|
+
isSuccess: false;
|
|
514
|
+
isError: false;
|
|
515
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
516
|
+
isSuccess: true;
|
|
517
|
+
isFetching: false;
|
|
518
|
+
error: undefined;
|
|
519
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
520
|
+
org: string;
|
|
521
|
+
sessionId: string;
|
|
522
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
523
|
+
attempt?: number;
|
|
524
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "sessionId", import("@iblai/iblai-api").MessageView, "sessionApiSlice", any>> & {
|
|
525
|
+
currentData?: import("@iblai/iblai-api").MessageView | undefined;
|
|
526
|
+
isUninitialized: false;
|
|
527
|
+
isLoading: false;
|
|
528
|
+
isFetching: false;
|
|
529
|
+
isSuccess: false;
|
|
530
|
+
isError: false;
|
|
531
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
532
|
+
isError: true;
|
|
533
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
534
|
+
org: string;
|
|
535
|
+
sessionId: string;
|
|
536
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
537
|
+
attempt?: number;
|
|
538
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "sessionId", import("@iblai/iblai-api").MessageView, "sessionApiSlice", any>> & {
|
|
539
|
+
currentData?: import("@iblai/iblai-api").MessageView | undefined;
|
|
540
|
+
isUninitialized: false;
|
|
541
|
+
isLoading: false;
|
|
542
|
+
isFetching: false;
|
|
543
|
+
isSuccess: false;
|
|
544
|
+
isError: false;
|
|
545
|
+
}, "error">>)>> & {
|
|
546
|
+
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
547
|
+
}) => R) | undefined;
|
|
548
|
+
}, "skip">) | undefined) => [(arg: {
|
|
549
|
+
org: string;
|
|
550
|
+
sessionId: string;
|
|
551
|
+
}, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
552
|
+
org: string;
|
|
553
|
+
sessionId: string;
|
|
554
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
555
|
+
attempt?: number;
|
|
556
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "sessionId", import("@iblai/iblai-api").MessageView, "sessionApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
557
|
+
reset: () => void;
|
|
558
|
+
}, {
|
|
559
|
+
lastArg: {
|
|
560
|
+
org: string;
|
|
561
|
+
sessionId: string;
|
|
562
|
+
};
|
|
563
|
+
}], useGetSharedSessionIdQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
564
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
565
|
+
originalArgs?: undefined | undefined;
|
|
566
|
+
data?: undefined | undefined;
|
|
567
|
+
error?: undefined | undefined;
|
|
568
|
+
requestId?: undefined | undefined;
|
|
569
|
+
endpointName?: string | undefined;
|
|
570
|
+
startedTimeStamp?: undefined | undefined;
|
|
571
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
572
|
+
} & {
|
|
573
|
+
currentData?: import("@iblai/iblai-api").MessageView | undefined;
|
|
574
|
+
isUninitialized: false;
|
|
575
|
+
isLoading: false;
|
|
576
|
+
isFetching: false;
|
|
577
|
+
isSuccess: false;
|
|
578
|
+
isError: false;
|
|
579
|
+
}, "isUninitialized"> & {
|
|
580
|
+
isUninitialized: true;
|
|
581
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
582
|
+
org: string;
|
|
583
|
+
sessionId: string;
|
|
584
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
585
|
+
attempt?: number;
|
|
586
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "sessionId", import("@iblai/iblai-api").MessageView, "sessionApiSlice", any>> & {
|
|
587
|
+
currentData?: import("@iblai/iblai-api").MessageView | undefined;
|
|
588
|
+
isUninitialized: false;
|
|
589
|
+
isLoading: false;
|
|
590
|
+
isFetching: false;
|
|
591
|
+
isSuccess: false;
|
|
592
|
+
isError: false;
|
|
593
|
+
}, {
|
|
594
|
+
isLoading: true;
|
|
595
|
+
isFetching: boolean;
|
|
596
|
+
data: undefined;
|
|
597
|
+
} | ({
|
|
598
|
+
isSuccess: true;
|
|
599
|
+
isFetching: true;
|
|
600
|
+
error: undefined;
|
|
601
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
602
|
+
org: string;
|
|
603
|
+
sessionId: string;
|
|
604
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
605
|
+
attempt?: number;
|
|
606
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "sessionId", import("@iblai/iblai-api").MessageView, "sessionApiSlice", any>> & {
|
|
607
|
+
currentData?: import("@iblai/iblai-api").MessageView | undefined;
|
|
608
|
+
isUninitialized: false;
|
|
609
|
+
isLoading: false;
|
|
610
|
+
isFetching: false;
|
|
611
|
+
isSuccess: false;
|
|
612
|
+
isError: false;
|
|
613
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
614
|
+
isSuccess: true;
|
|
615
|
+
isFetching: false;
|
|
616
|
+
error: undefined;
|
|
617
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
618
|
+
org: string;
|
|
619
|
+
sessionId: string;
|
|
620
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
621
|
+
attempt?: number;
|
|
622
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "sessionId", import("@iblai/iblai-api").MessageView, "sessionApiSlice", any>> & {
|
|
623
|
+
currentData?: import("@iblai/iblai-api").MessageView | undefined;
|
|
624
|
+
isUninitialized: false;
|
|
625
|
+
isLoading: false;
|
|
626
|
+
isFetching: false;
|
|
627
|
+
isSuccess: false;
|
|
628
|
+
isError: false;
|
|
629
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
630
|
+
isError: true;
|
|
631
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
632
|
+
org: string;
|
|
633
|
+
sessionId: string;
|
|
634
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
635
|
+
attempt?: number;
|
|
636
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "sessionId", import("@iblai/iblai-api").MessageView, "sessionApiSlice", any>> & {
|
|
637
|
+
currentData?: import("@iblai/iblai-api").MessageView | undefined;
|
|
638
|
+
isUninitialized: false;
|
|
639
|
+
isLoading: false;
|
|
640
|
+
isFetching: false;
|
|
641
|
+
isSuccess: false;
|
|
642
|
+
isError: false;
|
|
643
|
+
}, "error">>)>> & {
|
|
644
|
+
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
645
|
+
}>(arg: {
|
|
646
|
+
org: string;
|
|
647
|
+
sessionId: string;
|
|
648
|
+
} | typeof import("@reduxjs/toolkit/query").skipToken, options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & {
|
|
649
|
+
skip?: boolean;
|
|
650
|
+
refetchOnMountOrArgChange?: boolean | number;
|
|
651
|
+
} & {
|
|
652
|
+
skip?: boolean;
|
|
653
|
+
selectFromResult?: ((state: import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
654
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
655
|
+
originalArgs?: undefined | undefined;
|
|
656
|
+
data?: undefined | undefined;
|
|
657
|
+
error?: undefined | undefined;
|
|
658
|
+
requestId?: undefined | undefined;
|
|
659
|
+
endpointName?: string | undefined;
|
|
660
|
+
startedTimeStamp?: undefined | undefined;
|
|
661
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
662
|
+
} & {
|
|
663
|
+
currentData?: import("@iblai/iblai-api").MessageView | undefined;
|
|
664
|
+
isUninitialized: false;
|
|
665
|
+
isLoading: false;
|
|
666
|
+
isFetching: false;
|
|
667
|
+
isSuccess: false;
|
|
668
|
+
isError: false;
|
|
669
|
+
}, "isUninitialized"> & {
|
|
670
|
+
isUninitialized: true;
|
|
671
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
672
|
+
org: string;
|
|
673
|
+
sessionId: string;
|
|
674
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
675
|
+
attempt?: number;
|
|
676
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "sessionId", import("@iblai/iblai-api").MessageView, "sessionApiSlice", any>> & {
|
|
677
|
+
currentData?: import("@iblai/iblai-api").MessageView | undefined;
|
|
678
|
+
isUninitialized: false;
|
|
679
|
+
isLoading: false;
|
|
680
|
+
isFetching: false;
|
|
681
|
+
isSuccess: false;
|
|
682
|
+
isError: false;
|
|
683
|
+
}, {
|
|
684
|
+
isLoading: true;
|
|
685
|
+
isFetching: boolean;
|
|
686
|
+
data: undefined;
|
|
687
|
+
} | ({
|
|
688
|
+
isSuccess: true;
|
|
689
|
+
isFetching: true;
|
|
690
|
+
error: undefined;
|
|
691
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
692
|
+
org: string;
|
|
693
|
+
sessionId: string;
|
|
694
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
695
|
+
attempt?: number;
|
|
696
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "sessionId", import("@iblai/iblai-api").MessageView, "sessionApiSlice", any>> & {
|
|
697
|
+
currentData?: import("@iblai/iblai-api").MessageView | undefined;
|
|
698
|
+
isUninitialized: false;
|
|
699
|
+
isLoading: false;
|
|
700
|
+
isFetching: false;
|
|
701
|
+
isSuccess: false;
|
|
702
|
+
isError: false;
|
|
703
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
704
|
+
isSuccess: true;
|
|
705
|
+
isFetching: false;
|
|
706
|
+
error: undefined;
|
|
707
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
708
|
+
org: string;
|
|
709
|
+
sessionId: string;
|
|
710
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
711
|
+
attempt?: number;
|
|
712
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "sessionId", import("@iblai/iblai-api").MessageView, "sessionApiSlice", any>> & {
|
|
713
|
+
currentData?: import("@iblai/iblai-api").MessageView | undefined;
|
|
714
|
+
isUninitialized: false;
|
|
715
|
+
isLoading: false;
|
|
716
|
+
isFetching: false;
|
|
717
|
+
isSuccess: false;
|
|
718
|
+
isError: false;
|
|
719
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
720
|
+
isError: true;
|
|
721
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
722
|
+
org: string;
|
|
723
|
+
sessionId: string;
|
|
724
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
725
|
+
attempt?: number;
|
|
726
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "sessionId", import("@iblai/iblai-api").MessageView, "sessionApiSlice", any>> & {
|
|
727
|
+
currentData?: import("@iblai/iblai-api").MessageView | undefined;
|
|
728
|
+
isUninitialized: false;
|
|
729
|
+
isLoading: false;
|
|
730
|
+
isFetching: false;
|
|
731
|
+
isSuccess: false;
|
|
732
|
+
isError: false;
|
|
733
|
+
}, "error">>)>> & {
|
|
734
|
+
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
735
|
+
}) => R) | undefined;
|
|
736
|
+
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
737
|
+
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
738
|
+
org: string;
|
|
739
|
+
sessionId: string;
|
|
740
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
741
|
+
attempt?: number;
|
|
742
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "sessionId", import("@iblai/iblai-api").MessageView, "sessionApiSlice", any>>;
|
|
743
|
+
}, useLazyGetSharedSessionIdQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
744
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
745
|
+
originalArgs?: undefined | undefined;
|
|
746
|
+
data?: undefined | undefined;
|
|
747
|
+
error?: undefined | undefined;
|
|
748
|
+
requestId?: undefined | undefined;
|
|
749
|
+
endpointName?: string | undefined;
|
|
750
|
+
startedTimeStamp?: undefined | undefined;
|
|
751
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
752
|
+
} & {
|
|
753
|
+
currentData?: import("@iblai/iblai-api").MessageView | undefined;
|
|
754
|
+
isUninitialized: false;
|
|
755
|
+
isLoading: false;
|
|
756
|
+
isFetching: false;
|
|
757
|
+
isSuccess: false;
|
|
758
|
+
isError: false;
|
|
759
|
+
}, "isUninitialized"> & {
|
|
760
|
+
isUninitialized: true;
|
|
761
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
762
|
+
org: string;
|
|
763
|
+
sessionId: string;
|
|
764
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
765
|
+
attempt?: number;
|
|
766
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "sessionId", import("@iblai/iblai-api").MessageView, "sessionApiSlice", any>> & {
|
|
381
767
|
currentData?: import("@iblai/iblai-api").MessageView | undefined;
|
|
382
768
|
isUninitialized: false;
|
|
383
769
|
isLoading: false;
|
|
@@ -395,8 +781,9 @@ export declare const useCreateSessionIdMutation: <R extends Record<string, any>
|
|
|
395
781
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
396
782
|
org: string;
|
|
397
783
|
sessionId: string;
|
|
398
|
-
|
|
399
|
-
|
|
784
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
785
|
+
attempt?: number;
|
|
786
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "sessionId", import("@iblai/iblai-api").MessageView, "sessionApiSlice", any>> & {
|
|
400
787
|
currentData?: import("@iblai/iblai-api").MessageView | undefined;
|
|
401
788
|
isUninitialized: false;
|
|
402
789
|
isLoading: false;
|
|
@@ -410,8 +797,9 @@ export declare const useCreateSessionIdMutation: <R extends Record<string, any>
|
|
|
410
797
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
411
798
|
org: string;
|
|
412
799
|
sessionId: string;
|
|
413
|
-
|
|
414
|
-
|
|
800
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
801
|
+
attempt?: number;
|
|
802
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "sessionId", import("@iblai/iblai-api").MessageView, "sessionApiSlice", any>> & {
|
|
415
803
|
currentData?: import("@iblai/iblai-api").MessageView | undefined;
|
|
416
804
|
isUninitialized: false;
|
|
417
805
|
isLoading: false;
|
|
@@ -423,8 +811,9 @@ export declare const useCreateSessionIdMutation: <R extends Record<string, any>
|
|
|
423
811
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
424
812
|
org: string;
|
|
425
813
|
sessionId: string;
|
|
426
|
-
|
|
427
|
-
|
|
814
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
815
|
+
attempt?: number;
|
|
816
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "sessionId", import("@iblai/iblai-api").MessageView, "sessionApiSlice", any>> & {
|
|
428
817
|
currentData?: import("@iblai/iblai-api").MessageView | undefined;
|
|
429
818
|
isUninitialized: false;
|
|
430
819
|
isLoading: false;
|
|
@@ -456,8 +845,9 @@ export declare const useCreateSessionIdMutation: <R extends Record<string, any>
|
|
|
456
845
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
457
846
|
org: string;
|
|
458
847
|
sessionId: string;
|
|
459
|
-
|
|
460
|
-
|
|
848
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
849
|
+
attempt?: number;
|
|
850
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "sessionId", import("@iblai/iblai-api").MessageView, "sessionApiSlice", any>> & {
|
|
461
851
|
currentData?: import("@iblai/iblai-api").MessageView | undefined;
|
|
462
852
|
isUninitialized: false;
|
|
463
853
|
isLoading: false;
|
|
@@ -475,8 +865,9 @@ export declare const useCreateSessionIdMutation: <R extends Record<string, any>
|
|
|
475
865
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
476
866
|
org: string;
|
|
477
867
|
sessionId: string;
|
|
478
|
-
|
|
479
|
-
|
|
868
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
869
|
+
attempt?: number;
|
|
870
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "sessionId", import("@iblai/iblai-api").MessageView, "sessionApiSlice", any>> & {
|
|
480
871
|
currentData?: import("@iblai/iblai-api").MessageView | undefined;
|
|
481
872
|
isUninitialized: false;
|
|
482
873
|
isLoading: false;
|
|
@@ -490,8 +881,9 @@ export declare const useCreateSessionIdMutation: <R extends Record<string, any>
|
|
|
490
881
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
491
882
|
org: string;
|
|
492
883
|
sessionId: string;
|
|
493
|
-
|
|
494
|
-
|
|
884
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
885
|
+
attempt?: number;
|
|
886
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "sessionId", import("@iblai/iblai-api").MessageView, "sessionApiSlice", any>> & {
|
|
495
887
|
currentData?: import("@iblai/iblai-api").MessageView | undefined;
|
|
496
888
|
isUninitialized: false;
|
|
497
889
|
isLoading: false;
|
|
@@ -503,8 +895,9 @@ export declare const useCreateSessionIdMutation: <R extends Record<string, any>
|
|
|
503
895
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
504
896
|
org: string;
|
|
505
897
|
sessionId: string;
|
|
506
|
-
|
|
507
|
-
|
|
898
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
899
|
+
attempt?: number;
|
|
900
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "sessionId", import("@iblai/iblai-api").MessageView, "sessionApiSlice", any>> & {
|
|
508
901
|
currentData?: import("@iblai/iblai-api").MessageView | undefined;
|
|
509
902
|
isUninitialized: false;
|
|
510
903
|
isLoading: false;
|
|
@@ -517,18 +910,17 @@ export declare const useCreateSessionIdMutation: <R extends Record<string, any>
|
|
|
517
910
|
}, "skip">) | undefined) => [(arg: {
|
|
518
911
|
org: string;
|
|
519
912
|
sessionId: string;
|
|
520
|
-
share?: boolean;
|
|
521
913
|
}, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
522
914
|
org: string;
|
|
523
915
|
sessionId: string;
|
|
524
|
-
|
|
525
|
-
|
|
916
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
917
|
+
attempt?: number;
|
|
918
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "sessionId", import("@iblai/iblai-api").MessageView, "sessionApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
526
919
|
reset: () => void;
|
|
527
920
|
}, {
|
|
528
921
|
lastArg: {
|
|
529
922
|
org: string;
|
|
530
923
|
sessionId: string;
|
|
531
|
-
share?: boolean;
|
|
532
924
|
};
|
|
533
925
|
}], useEditSessionMutation: <R extends Record<string, any> = ({
|
|
534
926
|
requestId?: undefined;
|
|
@@ -695,7 +1087,9 @@ export declare const useCreateSessionIdMutation: <R extends Record<string, any>
|
|
|
695
1087
|
org: string;
|
|
696
1088
|
sessionId: string;
|
|
697
1089
|
requestBody?: import("@iblai/iblai-api").MessageViewRequest;
|
|
698
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
1090
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1091
|
+
attempt?: number;
|
|
1092
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "sessionId", import("@iblai/iblai-api").MessageViewUpdatResponse, "sessionApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
699
1093
|
originalArgs?: {
|
|
700
1094
|
org: string;
|
|
701
1095
|
sessionId: string;
|