@iblai/data-layer 0.2.0 → 0.3.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.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 +26 -21
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
export declare const chatHistoryApiSlice: import("@reduxjs/toolkit/query").Api<import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1
|
+
export declare const chatHistoryApiSlice: 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
|
getChatHistoryFilter: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3
3
|
org: string;
|
|
4
4
|
endDate?: string;
|
|
5
5
|
mentorId?: string;
|
|
6
6
|
monthlyRange?: boolean;
|
|
7
7
|
startDate?: string;
|
|
8
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
8
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("@iblai/iblai-api").ChatHistoryFilterData, "chatHistoryApiSlice", any>;
|
|
9
9
|
getChatHistory: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
10
10
|
org: string;
|
|
11
11
|
endDate?: string;
|
|
@@ -16,15 +16,15 @@ export declare const chatHistoryApiSlice: import("@reduxjs/toolkit/query").Api<i
|
|
|
16
16
|
sentiment?: string;
|
|
17
17
|
startDate?: string;
|
|
18
18
|
topics?: string;
|
|
19
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
19
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("@iblai/iblai-api").PaginatedConversationsList, "chatHistoryApiSlice", any>;
|
|
20
20
|
exportChatHistory: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
21
21
|
key: string;
|
|
22
22
|
requestBody?: import("@iblai/iblai-api").ReportRequest;
|
|
23
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
23
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("@iblai/iblai-api").ReportCreate, "chatHistoryApiSlice", any>;
|
|
24
24
|
getChatHistoryExportStatus: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
25
25
|
key: string;
|
|
26
26
|
reportName: string;
|
|
27
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
27
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("@iblai/iblai-api").ReportDetail, "chatHistoryApiSlice", any>;
|
|
28
28
|
}, "chatHistoryApiSlice", "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", typeof import("@reduxjs/toolkit/query").coreModuleName | typeof import("@reduxjs/toolkit/dist/query/react").reactHooksModuleName>;
|
|
29
29
|
export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
30
30
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
@@ -50,7 +50,7 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
50
50
|
mentorId?: string;
|
|
51
51
|
monthlyRange?: boolean;
|
|
52
52
|
startDate?: string;
|
|
53
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
53
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("@iblai/iblai-api").ChatHistoryFilterData, "chatHistoryApiSlice", any>> & {
|
|
54
54
|
currentData?: import("@iblai/iblai-api").ChatHistoryFilterData | undefined;
|
|
55
55
|
isUninitialized: false;
|
|
56
56
|
isLoading: false;
|
|
@@ -71,7 +71,7 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
71
71
|
mentorId?: string;
|
|
72
72
|
monthlyRange?: boolean;
|
|
73
73
|
startDate?: string;
|
|
74
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
74
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("@iblai/iblai-api").ChatHistoryFilterData, "chatHistoryApiSlice", any>> & {
|
|
75
75
|
currentData?: import("@iblai/iblai-api").ChatHistoryFilterData | undefined;
|
|
76
76
|
isUninitialized: false;
|
|
77
77
|
isLoading: false;
|
|
@@ -88,7 +88,7 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
88
88
|
mentorId?: string;
|
|
89
89
|
monthlyRange?: boolean;
|
|
90
90
|
startDate?: string;
|
|
91
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
91
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("@iblai/iblai-api").ChatHistoryFilterData, "chatHistoryApiSlice", any>> & {
|
|
92
92
|
currentData?: import("@iblai/iblai-api").ChatHistoryFilterData | undefined;
|
|
93
93
|
isUninitialized: false;
|
|
94
94
|
isLoading: false;
|
|
@@ -103,7 +103,7 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
103
103
|
mentorId?: string;
|
|
104
104
|
monthlyRange?: boolean;
|
|
105
105
|
startDate?: string;
|
|
106
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
106
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("@iblai/iblai-api").ChatHistoryFilterData, "chatHistoryApiSlice", any>> & {
|
|
107
107
|
currentData?: import("@iblai/iblai-api").ChatHistoryFilterData | undefined;
|
|
108
108
|
isUninitialized: false;
|
|
109
109
|
isLoading: false;
|
|
@@ -147,7 +147,7 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
147
147
|
mentorId?: string;
|
|
148
148
|
monthlyRange?: boolean;
|
|
149
149
|
startDate?: string;
|
|
150
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
150
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("@iblai/iblai-api").ChatHistoryFilterData, "chatHistoryApiSlice", any>> & {
|
|
151
151
|
currentData?: import("@iblai/iblai-api").ChatHistoryFilterData | undefined;
|
|
152
152
|
isUninitialized: false;
|
|
153
153
|
isLoading: false;
|
|
@@ -168,7 +168,7 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
168
168
|
mentorId?: string;
|
|
169
169
|
monthlyRange?: boolean;
|
|
170
170
|
startDate?: string;
|
|
171
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
171
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("@iblai/iblai-api").ChatHistoryFilterData, "chatHistoryApiSlice", any>> & {
|
|
172
172
|
currentData?: import("@iblai/iblai-api").ChatHistoryFilterData | undefined;
|
|
173
173
|
isUninitialized: false;
|
|
174
174
|
isLoading: false;
|
|
@@ -185,7 +185,7 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
185
185
|
mentorId?: string;
|
|
186
186
|
monthlyRange?: boolean;
|
|
187
187
|
startDate?: string;
|
|
188
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
188
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("@iblai/iblai-api").ChatHistoryFilterData, "chatHistoryApiSlice", any>> & {
|
|
189
189
|
currentData?: import("@iblai/iblai-api").ChatHistoryFilterData | undefined;
|
|
190
190
|
isUninitialized: false;
|
|
191
191
|
isLoading: false;
|
|
@@ -200,7 +200,7 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
200
200
|
mentorId?: string;
|
|
201
201
|
monthlyRange?: boolean;
|
|
202
202
|
startDate?: string;
|
|
203
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
203
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("@iblai/iblai-api").ChatHistoryFilterData, "chatHistoryApiSlice", any>> & {
|
|
204
204
|
currentData?: import("@iblai/iblai-api").ChatHistoryFilterData | undefined;
|
|
205
205
|
isUninitialized: false;
|
|
206
206
|
isLoading: false;
|
|
@@ -217,7 +217,7 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
217
217
|
mentorId?: string;
|
|
218
218
|
monthlyRange?: boolean;
|
|
219
219
|
startDate?: string;
|
|
220
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
220
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("@iblai/iblai-api").ChatHistoryFilterData, "chatHistoryApiSlice", any>>;
|
|
221
221
|
}, useLazyGetChatHistoryFilterQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
222
222
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
223
223
|
originalArgs?: undefined | undefined;
|
|
@@ -242,7 +242,7 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
242
242
|
mentorId?: string;
|
|
243
243
|
monthlyRange?: boolean;
|
|
244
244
|
startDate?: string;
|
|
245
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
245
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("@iblai/iblai-api").ChatHistoryFilterData, "chatHistoryApiSlice", any>> & {
|
|
246
246
|
currentData?: import("@iblai/iblai-api").ChatHistoryFilterData | undefined;
|
|
247
247
|
isUninitialized: false;
|
|
248
248
|
isLoading: false;
|
|
@@ -263,7 +263,7 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
263
263
|
mentorId?: string;
|
|
264
264
|
monthlyRange?: boolean;
|
|
265
265
|
startDate?: string;
|
|
266
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
266
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("@iblai/iblai-api").ChatHistoryFilterData, "chatHistoryApiSlice", any>> & {
|
|
267
267
|
currentData?: import("@iblai/iblai-api").ChatHistoryFilterData | undefined;
|
|
268
268
|
isUninitialized: false;
|
|
269
269
|
isLoading: false;
|
|
@@ -280,7 +280,7 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
280
280
|
mentorId?: string;
|
|
281
281
|
monthlyRange?: boolean;
|
|
282
282
|
startDate?: string;
|
|
283
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
283
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("@iblai/iblai-api").ChatHistoryFilterData, "chatHistoryApiSlice", any>> & {
|
|
284
284
|
currentData?: import("@iblai/iblai-api").ChatHistoryFilterData | undefined;
|
|
285
285
|
isUninitialized: false;
|
|
286
286
|
isLoading: false;
|
|
@@ -295,7 +295,7 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
295
295
|
mentorId?: string;
|
|
296
296
|
monthlyRange?: boolean;
|
|
297
297
|
startDate?: string;
|
|
298
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
298
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("@iblai/iblai-api").ChatHistoryFilterData, "chatHistoryApiSlice", any>> & {
|
|
299
299
|
currentData?: import("@iblai/iblai-api").ChatHistoryFilterData | undefined;
|
|
300
300
|
isUninitialized: false;
|
|
301
301
|
isLoading: false;
|
|
@@ -330,7 +330,7 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
330
330
|
mentorId?: string;
|
|
331
331
|
monthlyRange?: boolean;
|
|
332
332
|
startDate?: string;
|
|
333
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
333
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("@iblai/iblai-api").ChatHistoryFilterData, "chatHistoryApiSlice", any>> & {
|
|
334
334
|
currentData?: import("@iblai/iblai-api").ChatHistoryFilterData | undefined;
|
|
335
335
|
isUninitialized: false;
|
|
336
336
|
isLoading: false;
|
|
@@ -351,7 +351,7 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
351
351
|
mentorId?: string;
|
|
352
352
|
monthlyRange?: boolean;
|
|
353
353
|
startDate?: string;
|
|
354
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
354
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("@iblai/iblai-api").ChatHistoryFilterData, "chatHistoryApiSlice", any>> & {
|
|
355
355
|
currentData?: import("@iblai/iblai-api").ChatHistoryFilterData | undefined;
|
|
356
356
|
isUninitialized: false;
|
|
357
357
|
isLoading: false;
|
|
@@ -368,7 +368,7 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
368
368
|
mentorId?: string;
|
|
369
369
|
monthlyRange?: boolean;
|
|
370
370
|
startDate?: string;
|
|
371
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
371
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("@iblai/iblai-api").ChatHistoryFilterData, "chatHistoryApiSlice", any>> & {
|
|
372
372
|
currentData?: import("@iblai/iblai-api").ChatHistoryFilterData | undefined;
|
|
373
373
|
isUninitialized: false;
|
|
374
374
|
isLoading: false;
|
|
@@ -383,7 +383,7 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
383
383
|
mentorId?: string;
|
|
384
384
|
monthlyRange?: boolean;
|
|
385
385
|
startDate?: string;
|
|
386
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
386
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("@iblai/iblai-api").ChatHistoryFilterData, "chatHistoryApiSlice", any>> & {
|
|
387
387
|
currentData?: import("@iblai/iblai-api").ChatHistoryFilterData | undefined;
|
|
388
388
|
isUninitialized: false;
|
|
389
389
|
isLoading: false;
|
|
@@ -405,7 +405,7 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
405
405
|
mentorId?: string;
|
|
406
406
|
monthlyRange?: boolean;
|
|
407
407
|
startDate?: string;
|
|
408
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
408
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("@iblai/iblai-api").ChatHistoryFilterData, "chatHistoryApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
409
409
|
reset: () => void;
|
|
410
410
|
}, {
|
|
411
411
|
lastArg: {
|
|
@@ -443,7 +443,7 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
443
443
|
sentiment?: string;
|
|
444
444
|
startDate?: string;
|
|
445
445
|
topics?: string;
|
|
446
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
446
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("@iblai/iblai-api").PaginatedConversationsList, "chatHistoryApiSlice", any>> & {
|
|
447
447
|
currentData?: import("@iblai/iblai-api").PaginatedConversationsList | undefined;
|
|
448
448
|
isUninitialized: false;
|
|
449
449
|
isLoading: false;
|
|
@@ -468,7 +468,7 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
468
468
|
sentiment?: string;
|
|
469
469
|
startDate?: string;
|
|
470
470
|
topics?: string;
|
|
471
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
471
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("@iblai/iblai-api").PaginatedConversationsList, "chatHistoryApiSlice", any>> & {
|
|
472
472
|
currentData?: import("@iblai/iblai-api").PaginatedConversationsList | undefined;
|
|
473
473
|
isUninitialized: false;
|
|
474
474
|
isLoading: false;
|
|
@@ -489,7 +489,7 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
489
489
|
sentiment?: string;
|
|
490
490
|
startDate?: string;
|
|
491
491
|
topics?: string;
|
|
492
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
492
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("@iblai/iblai-api").PaginatedConversationsList, "chatHistoryApiSlice", any>> & {
|
|
493
493
|
currentData?: import("@iblai/iblai-api").PaginatedConversationsList | undefined;
|
|
494
494
|
isUninitialized: false;
|
|
495
495
|
isLoading: false;
|
|
@@ -508,7 +508,7 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
508
508
|
sentiment?: string;
|
|
509
509
|
startDate?: string;
|
|
510
510
|
topics?: string;
|
|
511
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
511
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("@iblai/iblai-api").PaginatedConversationsList, "chatHistoryApiSlice", any>> & {
|
|
512
512
|
currentData?: import("@iblai/iblai-api").PaginatedConversationsList | undefined;
|
|
513
513
|
isUninitialized: false;
|
|
514
514
|
isLoading: false;
|
|
@@ -560,7 +560,7 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
560
560
|
sentiment?: string;
|
|
561
561
|
startDate?: string;
|
|
562
562
|
topics?: string;
|
|
563
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
563
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("@iblai/iblai-api").PaginatedConversationsList, "chatHistoryApiSlice", any>> & {
|
|
564
564
|
currentData?: import("@iblai/iblai-api").PaginatedConversationsList | undefined;
|
|
565
565
|
isUninitialized: false;
|
|
566
566
|
isLoading: false;
|
|
@@ -585,7 +585,7 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
585
585
|
sentiment?: string;
|
|
586
586
|
startDate?: string;
|
|
587
587
|
topics?: string;
|
|
588
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
588
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("@iblai/iblai-api").PaginatedConversationsList, "chatHistoryApiSlice", any>> & {
|
|
589
589
|
currentData?: import("@iblai/iblai-api").PaginatedConversationsList | undefined;
|
|
590
590
|
isUninitialized: false;
|
|
591
591
|
isLoading: false;
|
|
@@ -606,7 +606,7 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
606
606
|
sentiment?: string;
|
|
607
607
|
startDate?: string;
|
|
608
608
|
topics?: string;
|
|
609
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
609
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("@iblai/iblai-api").PaginatedConversationsList, "chatHistoryApiSlice", any>> & {
|
|
610
610
|
currentData?: import("@iblai/iblai-api").PaginatedConversationsList | undefined;
|
|
611
611
|
isUninitialized: false;
|
|
612
612
|
isLoading: false;
|
|
@@ -625,7 +625,7 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
625
625
|
sentiment?: string;
|
|
626
626
|
startDate?: string;
|
|
627
627
|
topics?: string;
|
|
628
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
628
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("@iblai/iblai-api").PaginatedConversationsList, "chatHistoryApiSlice", any>> & {
|
|
629
629
|
currentData?: import("@iblai/iblai-api").PaginatedConversationsList | undefined;
|
|
630
630
|
isUninitialized: false;
|
|
631
631
|
isLoading: false;
|
|
@@ -646,7 +646,7 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
646
646
|
sentiment?: string;
|
|
647
647
|
startDate?: string;
|
|
648
648
|
topics?: string;
|
|
649
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
649
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("@iblai/iblai-api").PaginatedConversationsList, "chatHistoryApiSlice", any>>;
|
|
650
650
|
}, useLazyGetChatHistoryQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
651
651
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
652
652
|
originalArgs?: undefined | undefined;
|
|
@@ -675,7 +675,7 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
675
675
|
sentiment?: string;
|
|
676
676
|
startDate?: string;
|
|
677
677
|
topics?: string;
|
|
678
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
678
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("@iblai/iblai-api").PaginatedConversationsList, "chatHistoryApiSlice", any>> & {
|
|
679
679
|
currentData?: import("@iblai/iblai-api").PaginatedConversationsList | undefined;
|
|
680
680
|
isUninitialized: false;
|
|
681
681
|
isLoading: false;
|
|
@@ -700,7 +700,7 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
700
700
|
sentiment?: string;
|
|
701
701
|
startDate?: string;
|
|
702
702
|
topics?: string;
|
|
703
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
703
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("@iblai/iblai-api").PaginatedConversationsList, "chatHistoryApiSlice", any>> & {
|
|
704
704
|
currentData?: import("@iblai/iblai-api").PaginatedConversationsList | undefined;
|
|
705
705
|
isUninitialized: false;
|
|
706
706
|
isLoading: false;
|
|
@@ -721,7 +721,7 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
721
721
|
sentiment?: string;
|
|
722
722
|
startDate?: string;
|
|
723
723
|
topics?: string;
|
|
724
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
724
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("@iblai/iblai-api").PaginatedConversationsList, "chatHistoryApiSlice", any>> & {
|
|
725
725
|
currentData?: import("@iblai/iblai-api").PaginatedConversationsList | undefined;
|
|
726
726
|
isUninitialized: false;
|
|
727
727
|
isLoading: false;
|
|
@@ -740,7 +740,7 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
740
740
|
sentiment?: string;
|
|
741
741
|
startDate?: string;
|
|
742
742
|
topics?: string;
|
|
743
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
743
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("@iblai/iblai-api").PaginatedConversationsList, "chatHistoryApiSlice", any>> & {
|
|
744
744
|
currentData?: import("@iblai/iblai-api").PaginatedConversationsList | undefined;
|
|
745
745
|
isUninitialized: false;
|
|
746
746
|
isLoading: false;
|
|
@@ -779,7 +779,7 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
779
779
|
sentiment?: string;
|
|
780
780
|
startDate?: string;
|
|
781
781
|
topics?: string;
|
|
782
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
782
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("@iblai/iblai-api").PaginatedConversationsList, "chatHistoryApiSlice", any>> & {
|
|
783
783
|
currentData?: import("@iblai/iblai-api").PaginatedConversationsList | undefined;
|
|
784
784
|
isUninitialized: false;
|
|
785
785
|
isLoading: false;
|
|
@@ -804,7 +804,7 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
804
804
|
sentiment?: string;
|
|
805
805
|
startDate?: string;
|
|
806
806
|
topics?: string;
|
|
807
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
807
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("@iblai/iblai-api").PaginatedConversationsList, "chatHistoryApiSlice", any>> & {
|
|
808
808
|
currentData?: import("@iblai/iblai-api").PaginatedConversationsList | undefined;
|
|
809
809
|
isUninitialized: false;
|
|
810
810
|
isLoading: false;
|
|
@@ -825,7 +825,7 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
825
825
|
sentiment?: string;
|
|
826
826
|
startDate?: string;
|
|
827
827
|
topics?: string;
|
|
828
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
828
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("@iblai/iblai-api").PaginatedConversationsList, "chatHistoryApiSlice", any>> & {
|
|
829
829
|
currentData?: import("@iblai/iblai-api").PaginatedConversationsList | undefined;
|
|
830
830
|
isUninitialized: false;
|
|
831
831
|
isLoading: false;
|
|
@@ -844,7 +844,7 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
844
844
|
sentiment?: string;
|
|
845
845
|
startDate?: string;
|
|
846
846
|
topics?: string;
|
|
847
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
847
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("@iblai/iblai-api").PaginatedConversationsList, "chatHistoryApiSlice", any>> & {
|
|
848
848
|
currentData?: import("@iblai/iblai-api").PaginatedConversationsList | undefined;
|
|
849
849
|
isUninitialized: false;
|
|
850
850
|
isLoading: false;
|
|
@@ -874,7 +874,7 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
874
874
|
sentiment?: string;
|
|
875
875
|
startDate?: string;
|
|
876
876
|
topics?: string;
|
|
877
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
877
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("@iblai/iblai-api").PaginatedConversationsList, "chatHistoryApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
878
878
|
reset: () => void;
|
|
879
879
|
}, {
|
|
880
880
|
lastArg: {
|
|
@@ -1051,7 +1051,7 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
1051
1051
|
}) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
1052
1052
|
key: string;
|
|
1053
1053
|
requestBody?: import("@iblai/iblai-api").ReportRequest;
|
|
1054
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1054
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("@iblai/iblai-api").ReportCreate, "chatHistoryApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
1055
1055
|
originalArgs?: {
|
|
1056
1056
|
key: string;
|
|
1057
1057
|
requestBody?: import("@iblai/iblai-api").ReportRequest;
|
|
@@ -1078,7 +1078,7 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
1078
1078
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1079
1079
|
key: string;
|
|
1080
1080
|
reportName: string;
|
|
1081
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1081
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("@iblai/iblai-api").ReportDetail, "chatHistoryApiSlice", any>> & {
|
|
1082
1082
|
currentData?: import("@iblai/iblai-api").ReportDetail | undefined;
|
|
1083
1083
|
isUninitialized: false;
|
|
1084
1084
|
isLoading: false;
|
|
@@ -1096,7 +1096,7 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
1096
1096
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1097
1097
|
key: string;
|
|
1098
1098
|
reportName: string;
|
|
1099
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1099
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("@iblai/iblai-api").ReportDetail, "chatHistoryApiSlice", any>> & {
|
|
1100
1100
|
currentData?: import("@iblai/iblai-api").ReportDetail | undefined;
|
|
1101
1101
|
isUninitialized: false;
|
|
1102
1102
|
isLoading: false;
|
|
@@ -1110,7 +1110,7 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
1110
1110
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1111
1111
|
key: string;
|
|
1112
1112
|
reportName: string;
|
|
1113
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1113
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("@iblai/iblai-api").ReportDetail, "chatHistoryApiSlice", any>> & {
|
|
1114
1114
|
currentData?: import("@iblai/iblai-api").ReportDetail | undefined;
|
|
1115
1115
|
isUninitialized: false;
|
|
1116
1116
|
isLoading: false;
|
|
@@ -1122,7 +1122,7 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
1122
1122
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1123
1123
|
key: string;
|
|
1124
1124
|
reportName: string;
|
|
1125
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1125
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("@iblai/iblai-api").ReportDetail, "chatHistoryApiSlice", any>> & {
|
|
1126
1126
|
currentData?: import("@iblai/iblai-api").ReportDetail | undefined;
|
|
1127
1127
|
isUninitialized: false;
|
|
1128
1128
|
isLoading: false;
|
|
@@ -1160,7 +1160,7 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
1160
1160
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1161
1161
|
key: string;
|
|
1162
1162
|
reportName: string;
|
|
1163
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1163
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("@iblai/iblai-api").ReportDetail, "chatHistoryApiSlice", any>> & {
|
|
1164
1164
|
currentData?: import("@iblai/iblai-api").ReportDetail | undefined;
|
|
1165
1165
|
isUninitialized: false;
|
|
1166
1166
|
isLoading: false;
|
|
@@ -1178,7 +1178,7 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
1178
1178
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1179
1179
|
key: string;
|
|
1180
1180
|
reportName: string;
|
|
1181
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1181
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("@iblai/iblai-api").ReportDetail, "chatHistoryApiSlice", any>> & {
|
|
1182
1182
|
currentData?: import("@iblai/iblai-api").ReportDetail | undefined;
|
|
1183
1183
|
isUninitialized: false;
|
|
1184
1184
|
isLoading: false;
|
|
@@ -1192,7 +1192,7 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
1192
1192
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1193
1193
|
key: string;
|
|
1194
1194
|
reportName: string;
|
|
1195
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1195
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("@iblai/iblai-api").ReportDetail, "chatHistoryApiSlice", any>> & {
|
|
1196
1196
|
currentData?: import("@iblai/iblai-api").ReportDetail | undefined;
|
|
1197
1197
|
isUninitialized: false;
|
|
1198
1198
|
isLoading: false;
|
|
@@ -1204,7 +1204,7 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
1204
1204
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1205
1205
|
key: string;
|
|
1206
1206
|
reportName: string;
|
|
1207
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1207
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("@iblai/iblai-api").ReportDetail, "chatHistoryApiSlice", any>> & {
|
|
1208
1208
|
currentData?: import("@iblai/iblai-api").ReportDetail | undefined;
|
|
1209
1209
|
isUninitialized: false;
|
|
1210
1210
|
isLoading: false;
|
|
@@ -1218,7 +1218,7 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
1218
1218
|
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1219
1219
|
key: string;
|
|
1220
1220
|
reportName: string;
|
|
1221
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1221
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("@iblai/iblai-api").ReportDetail, "chatHistoryApiSlice", any>>;
|
|
1222
1222
|
}, useLazyGetChatHistoryExportStatusQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
1223
1223
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1224
1224
|
originalArgs?: undefined | undefined;
|
|
@@ -1240,7 +1240,7 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
1240
1240
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1241
1241
|
key: string;
|
|
1242
1242
|
reportName: string;
|
|
1243
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1243
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("@iblai/iblai-api").ReportDetail, "chatHistoryApiSlice", any>> & {
|
|
1244
1244
|
currentData?: import("@iblai/iblai-api").ReportDetail | undefined;
|
|
1245
1245
|
isUninitialized: false;
|
|
1246
1246
|
isLoading: false;
|
|
@@ -1258,7 +1258,7 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
1258
1258
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1259
1259
|
key: string;
|
|
1260
1260
|
reportName: string;
|
|
1261
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1261
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("@iblai/iblai-api").ReportDetail, "chatHistoryApiSlice", any>> & {
|
|
1262
1262
|
currentData?: import("@iblai/iblai-api").ReportDetail | undefined;
|
|
1263
1263
|
isUninitialized: false;
|
|
1264
1264
|
isLoading: false;
|
|
@@ -1272,7 +1272,7 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
1272
1272
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1273
1273
|
key: string;
|
|
1274
1274
|
reportName: string;
|
|
1275
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1275
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("@iblai/iblai-api").ReportDetail, "chatHistoryApiSlice", any>> & {
|
|
1276
1276
|
currentData?: import("@iblai/iblai-api").ReportDetail | undefined;
|
|
1277
1277
|
isUninitialized: false;
|
|
1278
1278
|
isLoading: false;
|
|
@@ -1284,7 +1284,7 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
1284
1284
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1285
1285
|
key: string;
|
|
1286
1286
|
reportName: string;
|
|
1287
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1287
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("@iblai/iblai-api").ReportDetail, "chatHistoryApiSlice", any>> & {
|
|
1288
1288
|
currentData?: import("@iblai/iblai-api").ReportDetail | undefined;
|
|
1289
1289
|
isUninitialized: false;
|
|
1290
1290
|
isLoading: false;
|
|
@@ -1316,7 +1316,7 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
1316
1316
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1317
1317
|
key: string;
|
|
1318
1318
|
reportName: string;
|
|
1319
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1319
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("@iblai/iblai-api").ReportDetail, "chatHistoryApiSlice", any>> & {
|
|
1320
1320
|
currentData?: import("@iblai/iblai-api").ReportDetail | undefined;
|
|
1321
1321
|
isUninitialized: false;
|
|
1322
1322
|
isLoading: false;
|
|
@@ -1334,7 +1334,7 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
1334
1334
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1335
1335
|
key: string;
|
|
1336
1336
|
reportName: string;
|
|
1337
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1337
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("@iblai/iblai-api").ReportDetail, "chatHistoryApiSlice", any>> & {
|
|
1338
1338
|
currentData?: import("@iblai/iblai-api").ReportDetail | undefined;
|
|
1339
1339
|
isUninitialized: false;
|
|
1340
1340
|
isLoading: false;
|
|
@@ -1348,7 +1348,7 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
1348
1348
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1349
1349
|
key: string;
|
|
1350
1350
|
reportName: string;
|
|
1351
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1351
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("@iblai/iblai-api").ReportDetail, "chatHistoryApiSlice", any>> & {
|
|
1352
1352
|
currentData?: import("@iblai/iblai-api").ReportDetail | undefined;
|
|
1353
1353
|
isUninitialized: false;
|
|
1354
1354
|
isLoading: false;
|
|
@@ -1360,7 +1360,7 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
1360
1360
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1361
1361
|
key: string;
|
|
1362
1362
|
reportName: string;
|
|
1363
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1363
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("@iblai/iblai-api").ReportDetail, "chatHistoryApiSlice", any>> & {
|
|
1364
1364
|
currentData?: import("@iblai/iblai-api").ReportDetail | undefined;
|
|
1365
1365
|
isUninitialized: false;
|
|
1366
1366
|
isLoading: false;
|
|
@@ -1376,7 +1376,7 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
1376
1376
|
}, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1377
1377
|
key: string;
|
|
1378
1378
|
reportName: string;
|
|
1379
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1379
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("@iblai/iblai-api").ReportDetail, "chatHistoryApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
1380
1380
|
reset: () => void;
|
|
1381
1381
|
}, {
|
|
1382
1382
|
lastArg: {
|