@iblai/data-layer 0.2.0 → 0.3.1
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 +41476 -15632
- package/dist/index.esm.js +6764 -1863
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +6947 -1859
- package/dist/index.js.map +1 -1
- package/dist/package.json +19 -17
- package/dist/src/__tests__/constants.test.d.ts +1 -0
- package/dist/src/core/index.d.ts +2 -1
- package/dist/src/features/analytics/api-slice.d.ts +1879 -122
- package/dist/src/features/analytics/constants.d.ts +56 -1
- package/dist/src/features/analytics/types.d.ts +327 -1
- package/dist/src/features/api-keys/api-slice.d.ts +25 -36
- package/dist/src/features/apps/api-slice.d.ts +25 -36
- package/dist/src/features/auth/api-slice.d.ts +504 -2
- package/dist/src/features/auth/constants.d.ts +13 -1
- package/dist/src/features/auth/types.d.ts +20 -0
- package/dist/src/features/billing/api-slice.d.ts +5 -5
- package/dist/src/features/career/api-slice.d.ts +2345 -180
- package/dist/src/features/catalog/api-slice.d.ts +2260 -244
- package/dist/src/features/chat/api-slice.d.ts +68 -68
- package/dist/src/features/chat-files/api-slice.d.ts +185 -0
- package/dist/src/features/chat-files/types.d.ts +32 -0
- package/dist/src/features/chat-history/api-slice.d.ts +60 -60
- package/dist/src/features/core/api-slice.d.ts +3793 -26
- package/dist/src/features/core/constants.d.ts +43 -0
- package/dist/src/features/core/custom-api-slice.d.ts +1458 -0
- package/dist/src/features/core/custom-public-image-asset-api-slice.d.ts +333 -0
- package/dist/src/features/core/types.d.ts +60 -0
- package/dist/src/features/credentials/api-slice.d.ts +766 -105
- package/dist/src/features/custom-domain/api-slice.d.ts +602 -0
- package/dist/src/features/custom-domain/constants.d.ts +20 -0
- package/dist/src/features/custom-domain/types.d.ts +46 -0
- package/dist/src/features/datasets/api-slice.d.ts +22 -22
- package/dist/src/features/disclaimers/api-slice.d.ts +912 -0
- package/dist/src/features/disclaimers/constants.d.ts +27 -0
- package/dist/src/features/disclaimers/index.d.ts +3 -0
- package/dist/src/features/disclaimers/types.d.ts +67 -0
- package/dist/src/features/edx-proctoring/api-slice.d.ts +590 -0
- package/dist/src/features/edx-proctoring/constants.d.ts +15 -0
- package/dist/src/features/edx-proctoring/types.d.ts +61 -0
- package/dist/src/features/llms/api-slice.d.ts +20 -20
- package/dist/src/features/memory/api-slice.d.ts +1437 -530
- package/dist/src/features/memory/constants.d.ts +50 -0
- package/dist/src/features/memory/index.d.ts +3 -0
- package/dist/src/features/memory/types.d.ts +122 -0
- package/dist/src/features/mentor/api-slice.d.ts +1738 -240
- package/dist/src/features/mentor/constants.d.ts +8 -0
- package/dist/src/features/mentor/custom-api-slice.d.ts +529 -1
- package/dist/src/features/mentor/types.d.ts +39 -0
- package/dist/src/features/mentor-categories/api-slice.d.ts +416 -20
- package/dist/src/features/notifications/api-slice.d.ts +696 -42
- package/dist/src/features/notifications/constants.d.ts +26 -0
- package/dist/src/features/notifications/custom-api-slice.d.ts +996 -0
- package/dist/src/features/notifications/types.d.ts +69 -0
- package/dist/src/features/per-learner/api-slice.d.ts +58 -58
- package/dist/src/features/platform/api-slice.d.ts +321 -167
- package/dist/src/features/platform/constants.d.ts +17 -0
- package/dist/src/features/platform/custom-api-slice.d.ts +493 -0
- package/dist/src/features/platform/types.d.ts +48 -0
- package/dist/src/features/projects/api-slice.d.ts +2026 -0
- package/dist/src/features/projects/constants.d.ts +51 -0
- package/dist/src/features/projects/types.d.ts +79 -0
- package/dist/src/features/prompts/api-slice.d.ts +105 -83
- package/dist/src/features/reports/api-slice.d.ts +814 -0
- package/dist/src/features/search/ai-search-api-slice.d.ts +1015 -0
- package/dist/src/features/search/api-slice.d.ts +39 -39
- package/dist/src/features/search/constants.d.ts +31 -0
- package/dist/src/features/search/types.d.ts +89 -0
- package/dist/src/features/sessions/api-slice.d.ts +24 -24
- package/dist/src/features/skills/api-slice.d.ts +77 -77
- package/dist/src/features/stripe/api-slice.d.ts +201 -40
- package/dist/src/features/stripe/constants.d.ts +5 -1
- package/dist/src/features/stripe/types.d.ts +10 -0
- package/dist/src/features/tenant/api-slice.d.ts +43 -52
- package/dist/src/features/tenant/types.d.ts +1 -0
- package/dist/src/features/tools/api-slice.d.ts +64 -20
- package/dist/src/features/training-documents/api-slice.d.ts +534 -27
- package/dist/src/features/user/api-slice.d.ts +124 -124
- package/dist/src/features/user/constants.d.ts +3 -1
- package/dist/src/features/user-invitations/api-slice.d.ts +22 -22
- package/dist/src/features/utils.d.ts +8 -5
- package/dist/src/index.d.ts +78 -47
- package/dist/src/reducers/skills.d.ts +2 -1128
- package/dist/src/services/StorageService.d.ts +1 -1
- package/dist/tests/setupTests.d.ts +1 -1
- package/package.json +16 -13
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
export declare const sessionApiSlice: import("@reduxjs/toolkit/query").Api<import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1
|
+
export declare const sessionApiSlice: import("@reduxjs/toolkit/query").Api<import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, {
|
|
2
2
|
createSessionId: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
3
3
|
org: string;
|
|
4
4
|
requestBody: import("@iblai/iblai-api").ChatSessionRequest;
|
|
5
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
5
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "sessionId", import("@iblai/iblai-api").ChatSessionResponse, "sessionApiSlice", any>;
|
|
6
6
|
getSessionId: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
7
7
|
org: string;
|
|
8
8
|
sessionId: string;
|
|
9
9
|
share?: boolean;
|
|
10
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
10
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "sessionId", import("@iblai/iblai-api").MessageView, "sessionApiSlice", any>;
|
|
11
11
|
editSession: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
12
12
|
org: string;
|
|
13
13
|
sessionId: string;
|
|
14
14
|
requestBody?: import("@iblai/iblai-api").MessageViewRequest;
|
|
15
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
15
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "sessionId", import("@iblai/iblai-api").MessageViewUpdatResponse, "sessionApiSlice", any>;
|
|
16
16
|
}, "sessionApiSlice", "sessionId", typeof import("@reduxjs/toolkit/query").coreModuleName | typeof import("@reduxjs/toolkit/dist/query/react").reactHooksModuleName>;
|
|
17
17
|
export declare const useCreateSessionIdMutation: <R extends Record<string, any> = ({
|
|
18
18
|
requestId?: undefined;
|
|
@@ -177,7 +177,7 @@ export declare const useCreateSessionIdMutation: <R extends Record<string, any>
|
|
|
177
177
|
}) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
178
178
|
org: string;
|
|
179
179
|
requestBody: import("@iblai/iblai-api").ChatSessionRequest;
|
|
180
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
180
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "sessionId", import("@iblai/iblai-api").ChatSessionResponse, "sessionApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
181
181
|
originalArgs?: {
|
|
182
182
|
org: string;
|
|
183
183
|
requestBody: import("@iblai/iblai-api").ChatSessionRequest;
|
|
@@ -205,7 +205,7 @@ export declare const useCreateSessionIdMutation: <R extends Record<string, any>
|
|
|
205
205
|
org: string;
|
|
206
206
|
sessionId: string;
|
|
207
207
|
share?: boolean;
|
|
208
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
208
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "sessionId", import("@iblai/iblai-api").MessageView, "sessionApiSlice", any>> & {
|
|
209
209
|
currentData?: import("@iblai/iblai-api").MessageView | undefined;
|
|
210
210
|
isUninitialized: false;
|
|
211
211
|
isLoading: false;
|
|
@@ -224,7 +224,7 @@ export declare const useCreateSessionIdMutation: <R extends Record<string, any>
|
|
|
224
224
|
org: string;
|
|
225
225
|
sessionId: string;
|
|
226
226
|
share?: boolean;
|
|
227
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
227
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "sessionId", import("@iblai/iblai-api").MessageView, "sessionApiSlice", any>> & {
|
|
228
228
|
currentData?: import("@iblai/iblai-api").MessageView | undefined;
|
|
229
229
|
isUninitialized: false;
|
|
230
230
|
isLoading: false;
|
|
@@ -239,7 +239,7 @@ export declare const useCreateSessionIdMutation: <R extends Record<string, any>
|
|
|
239
239
|
org: string;
|
|
240
240
|
sessionId: string;
|
|
241
241
|
share?: boolean;
|
|
242
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
242
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "sessionId", import("@iblai/iblai-api").MessageView, "sessionApiSlice", any>> & {
|
|
243
243
|
currentData?: import("@iblai/iblai-api").MessageView | undefined;
|
|
244
244
|
isUninitialized: false;
|
|
245
245
|
isLoading: false;
|
|
@@ -252,7 +252,7 @@ export declare const useCreateSessionIdMutation: <R extends Record<string, any>
|
|
|
252
252
|
org: string;
|
|
253
253
|
sessionId: string;
|
|
254
254
|
share?: boolean;
|
|
255
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
255
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "sessionId", import("@iblai/iblai-api").MessageView, "sessionApiSlice", any>> & {
|
|
256
256
|
currentData?: import("@iblai/iblai-api").MessageView | undefined;
|
|
257
257
|
isUninitialized: false;
|
|
258
258
|
isLoading: false;
|
|
@@ -292,7 +292,7 @@ export declare const useCreateSessionIdMutation: <R extends Record<string, any>
|
|
|
292
292
|
org: string;
|
|
293
293
|
sessionId: string;
|
|
294
294
|
share?: boolean;
|
|
295
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
295
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "sessionId", import("@iblai/iblai-api").MessageView, "sessionApiSlice", any>> & {
|
|
296
296
|
currentData?: import("@iblai/iblai-api").MessageView | undefined;
|
|
297
297
|
isUninitialized: false;
|
|
298
298
|
isLoading: false;
|
|
@@ -311,7 +311,7 @@ export declare const useCreateSessionIdMutation: <R extends Record<string, any>
|
|
|
311
311
|
org: string;
|
|
312
312
|
sessionId: string;
|
|
313
313
|
share?: boolean;
|
|
314
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
314
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "sessionId", import("@iblai/iblai-api").MessageView, "sessionApiSlice", any>> & {
|
|
315
315
|
currentData?: import("@iblai/iblai-api").MessageView | undefined;
|
|
316
316
|
isUninitialized: false;
|
|
317
317
|
isLoading: false;
|
|
@@ -326,7 +326,7 @@ export declare const useCreateSessionIdMutation: <R extends Record<string, any>
|
|
|
326
326
|
org: string;
|
|
327
327
|
sessionId: string;
|
|
328
328
|
share?: boolean;
|
|
329
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
329
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "sessionId", import("@iblai/iblai-api").MessageView, "sessionApiSlice", any>> & {
|
|
330
330
|
currentData?: import("@iblai/iblai-api").MessageView | undefined;
|
|
331
331
|
isUninitialized: false;
|
|
332
332
|
isLoading: false;
|
|
@@ -339,7 +339,7 @@ export declare const useCreateSessionIdMutation: <R extends Record<string, any>
|
|
|
339
339
|
org: string;
|
|
340
340
|
sessionId: string;
|
|
341
341
|
share?: boolean;
|
|
342
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
342
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "sessionId", import("@iblai/iblai-api").MessageView, "sessionApiSlice", any>> & {
|
|
343
343
|
currentData?: import("@iblai/iblai-api").MessageView | undefined;
|
|
344
344
|
isUninitialized: false;
|
|
345
345
|
isLoading: false;
|
|
@@ -354,7 +354,7 @@ export declare const useCreateSessionIdMutation: <R extends Record<string, any>
|
|
|
354
354
|
org: string;
|
|
355
355
|
sessionId: string;
|
|
356
356
|
share?: boolean;
|
|
357
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
357
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "sessionId", import("@iblai/iblai-api").MessageView, "sessionApiSlice", any>>;
|
|
358
358
|
}, useLazyGetSessionIdQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
359
359
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
360
360
|
originalArgs?: undefined | undefined;
|
|
@@ -377,7 +377,7 @@ export declare const useCreateSessionIdMutation: <R extends Record<string, any>
|
|
|
377
377
|
org: string;
|
|
378
378
|
sessionId: string;
|
|
379
379
|
share?: boolean;
|
|
380
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
380
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "sessionId", import("@iblai/iblai-api").MessageView, "sessionApiSlice", any>> & {
|
|
381
381
|
currentData?: import("@iblai/iblai-api").MessageView | undefined;
|
|
382
382
|
isUninitialized: false;
|
|
383
383
|
isLoading: false;
|
|
@@ -396,7 +396,7 @@ export declare const useCreateSessionIdMutation: <R extends Record<string, any>
|
|
|
396
396
|
org: string;
|
|
397
397
|
sessionId: string;
|
|
398
398
|
share?: boolean;
|
|
399
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
399
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "sessionId", import("@iblai/iblai-api").MessageView, "sessionApiSlice", any>> & {
|
|
400
400
|
currentData?: import("@iblai/iblai-api").MessageView | undefined;
|
|
401
401
|
isUninitialized: false;
|
|
402
402
|
isLoading: false;
|
|
@@ -411,7 +411,7 @@ export declare const useCreateSessionIdMutation: <R extends Record<string, any>
|
|
|
411
411
|
org: string;
|
|
412
412
|
sessionId: string;
|
|
413
413
|
share?: boolean;
|
|
414
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
414
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "sessionId", import("@iblai/iblai-api").MessageView, "sessionApiSlice", any>> & {
|
|
415
415
|
currentData?: import("@iblai/iblai-api").MessageView | undefined;
|
|
416
416
|
isUninitialized: false;
|
|
417
417
|
isLoading: false;
|
|
@@ -424,7 +424,7 @@ export declare const useCreateSessionIdMutation: <R extends Record<string, any>
|
|
|
424
424
|
org: string;
|
|
425
425
|
sessionId: string;
|
|
426
426
|
share?: boolean;
|
|
427
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
427
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "sessionId", import("@iblai/iblai-api").MessageView, "sessionApiSlice", any>> & {
|
|
428
428
|
currentData?: import("@iblai/iblai-api").MessageView | undefined;
|
|
429
429
|
isUninitialized: false;
|
|
430
430
|
isLoading: false;
|
|
@@ -457,7 +457,7 @@ export declare const useCreateSessionIdMutation: <R extends Record<string, any>
|
|
|
457
457
|
org: string;
|
|
458
458
|
sessionId: string;
|
|
459
459
|
share?: boolean;
|
|
460
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
460
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "sessionId", import("@iblai/iblai-api").MessageView, "sessionApiSlice", any>> & {
|
|
461
461
|
currentData?: import("@iblai/iblai-api").MessageView | undefined;
|
|
462
462
|
isUninitialized: false;
|
|
463
463
|
isLoading: false;
|
|
@@ -476,7 +476,7 @@ export declare const useCreateSessionIdMutation: <R extends Record<string, any>
|
|
|
476
476
|
org: string;
|
|
477
477
|
sessionId: string;
|
|
478
478
|
share?: boolean;
|
|
479
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
479
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "sessionId", import("@iblai/iblai-api").MessageView, "sessionApiSlice", any>> & {
|
|
480
480
|
currentData?: import("@iblai/iblai-api").MessageView | undefined;
|
|
481
481
|
isUninitialized: false;
|
|
482
482
|
isLoading: false;
|
|
@@ -491,7 +491,7 @@ export declare const useCreateSessionIdMutation: <R extends Record<string, any>
|
|
|
491
491
|
org: string;
|
|
492
492
|
sessionId: string;
|
|
493
493
|
share?: boolean;
|
|
494
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
494
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "sessionId", import("@iblai/iblai-api").MessageView, "sessionApiSlice", any>> & {
|
|
495
495
|
currentData?: import("@iblai/iblai-api").MessageView | undefined;
|
|
496
496
|
isUninitialized: false;
|
|
497
497
|
isLoading: false;
|
|
@@ -504,7 +504,7 @@ export declare const useCreateSessionIdMutation: <R extends Record<string, any>
|
|
|
504
504
|
org: string;
|
|
505
505
|
sessionId: string;
|
|
506
506
|
share?: boolean;
|
|
507
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
507
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "sessionId", import("@iblai/iblai-api").MessageView, "sessionApiSlice", any>> & {
|
|
508
508
|
currentData?: import("@iblai/iblai-api").MessageView | undefined;
|
|
509
509
|
isUninitialized: false;
|
|
510
510
|
isLoading: false;
|
|
@@ -522,7 +522,7 @@ export declare const useCreateSessionIdMutation: <R extends Record<string, any>
|
|
|
522
522
|
org: string;
|
|
523
523
|
sessionId: string;
|
|
524
524
|
share?: boolean;
|
|
525
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
525
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "sessionId", import("@iblai/iblai-api").MessageView, "sessionApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
526
526
|
reset: () => void;
|
|
527
527
|
}, {
|
|
528
528
|
lastArg: {
|
|
@@ -695,7 +695,7 @@ export declare const useCreateSessionIdMutation: <R extends Record<string, any>
|
|
|
695
695
|
org: string;
|
|
696
696
|
sessionId: string;
|
|
697
697
|
requestBody?: import("@iblai/iblai-api").MessageViewRequest;
|
|
698
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
698
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "sessionId", import("@iblai/iblai-api").MessageViewUpdatResponse, "sessionApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
699
699
|
originalArgs?: {
|
|
700
700
|
org: string;
|
|
701
701
|
sessionId: string;
|