@iblai/web-utils 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/data-layer/src/core/index.d.ts +2 -1
- package/dist/data-layer/src/features/analytics/api-slice.d.ts +1879 -122
- package/dist/data-layer/src/features/analytics/constants.d.ts +56 -1
- package/dist/data-layer/src/features/analytics/types.d.ts +327 -1
- package/dist/data-layer/src/features/api-keys/api-slice.d.ts +59 -70
- package/dist/data-layer/src/features/apps/api-slice.d.ts +73 -84
- package/dist/data-layer/src/features/auth/api-slice.d.ts +504 -2
- package/dist/data-layer/src/features/auth/constants.d.ts +13 -1
- package/dist/data-layer/src/features/auth/types.d.ts +20 -0
- package/dist/data-layer/src/features/billing/api-slice.d.ts +33 -33
- package/dist/data-layer/src/features/career/api-slice.d.ts +2345 -180
- package/dist/data-layer/src/features/catalog/api-slice.d.ts +2578 -562
- package/dist/data-layer/src/features/chat/api-slice.d.ts +150 -150
- package/dist/data-layer/src/features/chat-history/api-slice.d.ts +134 -134
- package/dist/data-layer/src/features/core/api-slice.d.ts +3484 -75
- package/dist/data-layer/src/features/core/constants.d.ts +40 -0
- package/dist/data-layer/src/features/core/custom-api-slice.d.ts +1458 -0
- package/dist/data-layer/src/features/core/types.d.ts +27 -0
- package/dist/data-layer/src/features/credentials/api-slice.d.ts +859 -221
- package/dist/data-layer/src/features/custom-domain/api-slice.d.ts +602 -0
- package/dist/data-layer/src/features/custom-domain/constants.d.ts +20 -0
- package/dist/data-layer/src/features/custom-domain/types.d.ts +46 -0
- package/dist/data-layer/src/features/datasets/api-slice.d.ts +56 -56
- package/dist/data-layer/src/features/disclaimers/api-slice.d.ts +912 -0
- package/dist/data-layer/src/features/disclaimers/constants.d.ts +27 -0
- package/dist/data-layer/src/features/disclaimers/types.d.ts +67 -0
- package/dist/data-layer/src/features/edx-proctoring/api-slice.d.ts +590 -0
- package/dist/data-layer/src/features/edx-proctoring/constants.d.ts +15 -0
- package/dist/data-layer/src/features/edx-proctoring/types.d.ts +61 -0
- package/dist/data-layer/src/features/llms/api-slice.d.ts +40 -40
- package/dist/data-layer/src/features/memory/api-slice.d.ts +2129 -0
- package/dist/data-layer/src/features/memory/constants.d.ts +50 -0
- package/dist/data-layer/src/features/memory/types.d.ts +122 -0
- package/dist/data-layer/src/features/mentor/api-slice.d.ts +1176 -470
- package/dist/data-layer/src/features/mentor/constants.d.ts +8 -0
- package/dist/data-layer/src/features/mentor/custom-api-slice.d.ts +529 -1
- package/dist/data-layer/src/features/mentor/types.d.ts +39 -0
- package/dist/data-layer/src/features/mentor-categories/api-slice.d.ts +436 -40
- package/dist/data-layer/src/features/notifications/api-slice.d.ts +750 -96
- package/dist/data-layer/src/features/notifications/constants.d.ts +20 -0
- package/dist/data-layer/src/features/notifications/custom-api-slice.d.ts +996 -0
- package/dist/data-layer/src/features/notifications/types.d.ts +46 -0
- package/dist/data-layer/src/features/per-learner/api-slice.d.ts +118 -118
- package/dist/data-layer/src/features/platform/api-slice.d.ts +345 -191
- package/dist/data-layer/src/features/platform/constants.d.ts +17 -0
- package/dist/data-layer/src/features/platform/custom-api-slice.d.ts +493 -0
- package/dist/data-layer/src/features/platform/types.d.ts +48 -0
- package/dist/data-layer/src/features/projects/api-slice.d.ts +2026 -0
- package/dist/data-layer/src/features/projects/constants.d.ts +51 -0
- package/dist/data-layer/src/features/projects/types.d.ts +79 -0
- package/dist/data-layer/src/features/prompts/api-slice.d.ts +193 -171
- package/dist/data-layer/src/features/reports/api-slice.d.ts +814 -0
- package/dist/data-layer/src/features/search/ai-search-api-slice.d.ts +1015 -0
- package/dist/data-layer/src/features/search/api-slice.d.ts +59 -59
- package/dist/data-layer/src/features/search/constants.d.ts +31 -0
- package/dist/data-layer/src/features/search/types.d.ts +89 -0
- package/dist/data-layer/src/features/sessions/api-slice.d.ts +72 -72
- package/dist/data-layer/src/features/skills/api-slice.d.ts +157 -157
- package/dist/data-layer/src/features/stripe/api-slice.d.ts +201 -40
- package/dist/data-layer/src/features/stripe/constants.d.ts +5 -1
- package/dist/data-layer/src/features/stripe/types.d.ts +10 -0
- package/dist/data-layer/src/features/tenant/api-slice.d.ts +77 -86
- package/dist/data-layer/src/features/tenant/types.d.ts +1 -0
- package/dist/data-layer/src/features/tools/api-slice.d.ts +84 -40
- package/dist/data-layer/src/features/training-documents/api-slice.d.ts +582 -75
- package/dist/data-layer/src/features/user/api-slice.d.ts +124 -124
- package/dist/data-layer/src/features/user/constants.d.ts +3 -1
- package/dist/data-layer/src/features/user-invitations/api-slice.d.ts +56 -56
- package/dist/data-layer/src/features/utils.d.ts +8 -5
- package/dist/data-layer/src/index.d.ts +75 -47
- package/dist/data-layer/src/reducers/skills.d.ts +2 -1148
- package/dist/data-layer/src/services/StorageService.d.ts +1 -1
- package/dist/index.d.ts +1021 -5
- package/dist/index.esm.js +3299 -453
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +3305 -448
- package/dist/index.js.map +1 -1
- package/dist/package.json +34 -18
- package/dist/web-utils/src/features/chat/slice.d.ts +12 -0
- package/dist/web-utils/src/features/index.d.ts +1 -0
- package/dist/web-utils/src/features/tracking/__tests__/time-tracker.test.d.ts +1 -0
- package/dist/web-utils/src/features/tracking/examples.d.ts +4 -0
- package/dist/web-utils/src/features/tracking/index.d.ts +6 -0
- package/dist/web-utils/src/features/tracking/time-tracker.d.ts +29 -0
- package/dist/web-utils/src/features/tracking/use-time-tracker-native.d.ts +14 -0
- package/dist/web-utils/src/features/tracking/use-time-tracker.d.ts +14 -0
- package/dist/web-utils/src/hooks/chat/use-advanced-chat.d.ts +2 -2
- package/dist/web-utils/src/hooks/chat/use-chat-v2.d.ts +9 -1
- package/dist/web-utils/src/hooks/chat/use-get-chat-details.d.ts +2 -1
- package/dist/web-utils/src/hooks/chat/use-mentor-tools.d.ts +3 -0
- package/dist/web-utils/src/hooks/index.d.ts +1 -0
- package/dist/web-utils/src/hooks/subscription/class-subscription-flow.d.ts +6 -6
- package/dist/web-utils/src/hooks/subscription-v2/class-subscription-flow.d.ts +9 -8
- package/dist/web-utils/src/hooks/subscription-v2/use-external-pricing-plan.d.ts +1 -1
- package/dist/web-utils/src/hooks/tenant-metadata/use-tenant-metadata.d.ts +2 -1
- package/dist/web-utils/src/hooks/use-mentor-settings.d.ts +1 -0
- package/dist/web-utils/src/index.mobile.d.ts +10 -0
- package/dist/web-utils/src/index.web.d.ts +12 -0
- package/dist/web-utils/src/providers/auth-provider.d.ts +55 -1
- package/dist/web-utils/src/providers/mentor-provider.d.ts +3 -1
- package/dist/web-utils/src/providers/tenant-provider.d.ts +10 -5
- package/dist/web-utils/src/types/index.d.ts +9 -0
- package/dist/web-utils/src/utils/constants.d.ts +4 -0
- package/dist/web-utils/src/utils/helpers.d.ts +1 -0
- package/dist/web-utils/src/utils/platform.d.ts +7 -0
- package/dist/web-utils/tests/hooks/subscription/class-subscription-flow.test.d.ts +1 -0
- package/dist/web-utils/tests/hooks/subscription/constants.test.d.ts +1 -0
- package/dist/web-utils/tests/hooks/subscription/use-subscription-handler.test.d.ts +1 -0
- package/dist/web-utils/tests/hooks/use-day-js.test.d.ts +1 -0
- package/dist/web-utils/tests/setupTests.d.ts +5 -0
- package/dist/web-utils/tsconfig.tsbuildinfo +1 -0
- package/package.json +37 -22
- package/dist/features/chat/slice.d.ts +0 -59
- package/dist/features/index.d.ts +0 -1
- package/dist/hooks/chat/use-advanced-chat.d.ts +0 -41
- package/dist/hooks/chat/use-chat-v2.d.ts +0 -53
- package/dist/hooks/chat/use-chat.d.ts +0 -52
- package/dist/hooks/chat/use-get-chat-details.d.ts +0 -13
- package/dist/hooks/index.d.ts +0 -10
- package/dist/hooks/subscription/class-subscription-flow.d.ts +0 -70
- package/dist/hooks/subscription/constants.d.ts +0 -4
- package/dist/hooks/subscription/use-subscription-handler.d.ts +0 -11
- package/dist/hooks/subscription-v2/class-subscription-flow.d.ts +0 -62
- package/dist/hooks/subscription-v2/constants.d.ts +0 -5
- package/dist/hooks/subscription-v2/use-external-pricing-plan.d.ts +0 -7
- package/dist/hooks/subscription-v2/use-subscription-handler.d.ts +0 -12
- package/dist/hooks/use-day-js.d.ts +0 -7
- package/dist/providers/auth-provider.d.ts +0 -63
- package/dist/providers/index.d.ts +0 -3
- package/dist/providers/mentor-provider.d.ts +0 -40
- package/dist/providers/tenant-provider.d.ts +0 -60
- package/dist/types/chat.d.ts +0 -1
- package/dist/types/index.d.ts +0 -55
- package/dist/types/subscription.d.ts +0 -18
- package/dist/utils/constants.d.ts +0 -13
- package/dist/utils/data/advanced-tab.d.ts +0 -62
- package/dist/utils/helpers.d.ts +0 -1
- package/dist/utils/index.d.ts +0 -3
|
@@ -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("node_modules/@iblai/iblai-api/dist/types").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("node_modules/@iblai/iblai-api/dist/types").PaginatedConversationsList, "chatHistoryApiSlice", any>;
|
|
20
20
|
exportChatHistory: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
21
21
|
key: string;
|
|
22
|
-
requestBody?: import("
|
|
23
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
22
|
+
requestBody?: import("node_modules/@iblai/iblai-api/dist/types").ReportRequest;
|
|
23
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("node_modules/@iblai/iblai-api/dist/types").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("node_modules/@iblai/iblai-api/dist/types").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;
|
|
@@ -36,7 +36,7 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
36
36
|
startedTimeStamp?: undefined | undefined;
|
|
37
37
|
fulfilledTimeStamp?: undefined | undefined;
|
|
38
38
|
} & {
|
|
39
|
-
currentData?: import("
|
|
39
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ChatHistoryFilterData | undefined;
|
|
40
40
|
isUninitialized: false;
|
|
41
41
|
isLoading: false;
|
|
42
42
|
isFetching: false;
|
|
@@ -50,8 +50,8 @@ 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<
|
|
54
|
-
currentData?: import("
|
|
53
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("node_modules/@iblai/iblai-api/dist/types").ChatHistoryFilterData, "chatHistoryApiSlice", any>> & {
|
|
54
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ChatHistoryFilterData | undefined;
|
|
55
55
|
isUninitialized: false;
|
|
56
56
|
isLoading: false;
|
|
57
57
|
isFetching: false;
|
|
@@ -71,8 +71,8 @@ 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<
|
|
75
|
-
currentData?: import("
|
|
74
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("node_modules/@iblai/iblai-api/dist/types").ChatHistoryFilterData, "chatHistoryApiSlice", any>> & {
|
|
75
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ChatHistoryFilterData | undefined;
|
|
76
76
|
isUninitialized: false;
|
|
77
77
|
isLoading: false;
|
|
78
78
|
isFetching: false;
|
|
@@ -88,8 +88,8 @@ 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<
|
|
92
|
-
currentData?: import("
|
|
91
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("node_modules/@iblai/iblai-api/dist/types").ChatHistoryFilterData, "chatHistoryApiSlice", any>> & {
|
|
92
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ChatHistoryFilterData | undefined;
|
|
93
93
|
isUninitialized: false;
|
|
94
94
|
isLoading: false;
|
|
95
95
|
isFetching: false;
|
|
@@ -103,8 +103,8 @@ 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<
|
|
107
|
-
currentData?: import("
|
|
106
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("node_modules/@iblai/iblai-api/dist/types").ChatHistoryFilterData, "chatHistoryApiSlice", any>> & {
|
|
107
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ChatHistoryFilterData | undefined;
|
|
108
108
|
isUninitialized: false;
|
|
109
109
|
isLoading: false;
|
|
110
110
|
isFetching: false;
|
|
@@ -133,7 +133,7 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
133
133
|
startedTimeStamp?: undefined | undefined;
|
|
134
134
|
fulfilledTimeStamp?: undefined | undefined;
|
|
135
135
|
} & {
|
|
136
|
-
currentData?: import("
|
|
136
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ChatHistoryFilterData | undefined;
|
|
137
137
|
isUninitialized: false;
|
|
138
138
|
isLoading: false;
|
|
139
139
|
isFetching: false;
|
|
@@ -147,8 +147,8 @@ 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<
|
|
151
|
-
currentData?: import("
|
|
150
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("node_modules/@iblai/iblai-api/dist/types").ChatHistoryFilterData, "chatHistoryApiSlice", any>> & {
|
|
151
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ChatHistoryFilterData | undefined;
|
|
152
152
|
isUninitialized: false;
|
|
153
153
|
isLoading: false;
|
|
154
154
|
isFetching: false;
|
|
@@ -168,8 +168,8 @@ 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<
|
|
172
|
-
currentData?: import("
|
|
171
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("node_modules/@iblai/iblai-api/dist/types").ChatHistoryFilterData, "chatHistoryApiSlice", any>> & {
|
|
172
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ChatHistoryFilterData | undefined;
|
|
173
173
|
isUninitialized: false;
|
|
174
174
|
isLoading: false;
|
|
175
175
|
isFetching: false;
|
|
@@ -185,8 +185,8 @@ 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<
|
|
189
|
-
currentData?: import("
|
|
188
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("node_modules/@iblai/iblai-api/dist/types").ChatHistoryFilterData, "chatHistoryApiSlice", any>> & {
|
|
189
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ChatHistoryFilterData | undefined;
|
|
190
190
|
isUninitialized: false;
|
|
191
191
|
isLoading: false;
|
|
192
192
|
isFetching: false;
|
|
@@ -200,8 +200,8 @@ 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<
|
|
204
|
-
currentData?: import("
|
|
203
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("node_modules/@iblai/iblai-api/dist/types").ChatHistoryFilterData, "chatHistoryApiSlice", any>> & {
|
|
204
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ChatHistoryFilterData | undefined;
|
|
205
205
|
isUninitialized: false;
|
|
206
206
|
isLoading: false;
|
|
207
207
|
isFetching: 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("node_modules/@iblai/iblai-api/dist/types").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;
|
|
@@ -228,7 +228,7 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
228
228
|
startedTimeStamp?: undefined | undefined;
|
|
229
229
|
fulfilledTimeStamp?: undefined | undefined;
|
|
230
230
|
} & {
|
|
231
|
-
currentData?: import("
|
|
231
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ChatHistoryFilterData | undefined;
|
|
232
232
|
isUninitialized: false;
|
|
233
233
|
isLoading: false;
|
|
234
234
|
isFetching: false;
|
|
@@ -242,8 +242,8 @@ 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<
|
|
246
|
-
currentData?: import("
|
|
245
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("node_modules/@iblai/iblai-api/dist/types").ChatHistoryFilterData, "chatHistoryApiSlice", any>> & {
|
|
246
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ChatHistoryFilterData | undefined;
|
|
247
247
|
isUninitialized: false;
|
|
248
248
|
isLoading: false;
|
|
249
249
|
isFetching: false;
|
|
@@ -263,8 +263,8 @@ 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<
|
|
267
|
-
currentData?: import("
|
|
266
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("node_modules/@iblai/iblai-api/dist/types").ChatHistoryFilterData, "chatHistoryApiSlice", any>> & {
|
|
267
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ChatHistoryFilterData | undefined;
|
|
268
268
|
isUninitialized: false;
|
|
269
269
|
isLoading: false;
|
|
270
270
|
isFetching: false;
|
|
@@ -280,8 +280,8 @@ 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<
|
|
284
|
-
currentData?: import("
|
|
283
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("node_modules/@iblai/iblai-api/dist/types").ChatHistoryFilterData, "chatHistoryApiSlice", any>> & {
|
|
284
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ChatHistoryFilterData | undefined;
|
|
285
285
|
isUninitialized: false;
|
|
286
286
|
isLoading: false;
|
|
287
287
|
isFetching: false;
|
|
@@ -295,8 +295,8 @@ 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<
|
|
299
|
-
currentData?: import("
|
|
298
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("node_modules/@iblai/iblai-api/dist/types").ChatHistoryFilterData, "chatHistoryApiSlice", any>> & {
|
|
299
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ChatHistoryFilterData | undefined;
|
|
300
300
|
isUninitialized: false;
|
|
301
301
|
isLoading: false;
|
|
302
302
|
isFetching: false;
|
|
@@ -316,7 +316,7 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
316
316
|
startedTimeStamp?: undefined | undefined;
|
|
317
317
|
fulfilledTimeStamp?: undefined | undefined;
|
|
318
318
|
} & {
|
|
319
|
-
currentData?: import("
|
|
319
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ChatHistoryFilterData | undefined;
|
|
320
320
|
isUninitialized: false;
|
|
321
321
|
isLoading: false;
|
|
322
322
|
isFetching: false;
|
|
@@ -330,8 +330,8 @@ 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<
|
|
334
|
-
currentData?: import("
|
|
333
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("node_modules/@iblai/iblai-api/dist/types").ChatHistoryFilterData, "chatHistoryApiSlice", any>> & {
|
|
334
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ChatHistoryFilterData | undefined;
|
|
335
335
|
isUninitialized: false;
|
|
336
336
|
isLoading: false;
|
|
337
337
|
isFetching: false;
|
|
@@ -351,8 +351,8 @@ 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<
|
|
355
|
-
currentData?: import("
|
|
354
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("node_modules/@iblai/iblai-api/dist/types").ChatHistoryFilterData, "chatHistoryApiSlice", any>> & {
|
|
355
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ChatHistoryFilterData | undefined;
|
|
356
356
|
isUninitialized: false;
|
|
357
357
|
isLoading: false;
|
|
358
358
|
isFetching: false;
|
|
@@ -368,8 +368,8 @@ 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<
|
|
372
|
-
currentData?: import("
|
|
371
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("node_modules/@iblai/iblai-api/dist/types").ChatHistoryFilterData, "chatHistoryApiSlice", any>> & {
|
|
372
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ChatHistoryFilterData | undefined;
|
|
373
373
|
isUninitialized: false;
|
|
374
374
|
isLoading: false;
|
|
375
375
|
isFetching: false;
|
|
@@ -383,8 +383,8 @@ 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<
|
|
387
|
-
currentData?: import("
|
|
386
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("node_modules/@iblai/iblai-api/dist/types").ChatHistoryFilterData, "chatHistoryApiSlice", any>> & {
|
|
387
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ChatHistoryFilterData | undefined;
|
|
388
388
|
isUninitialized: false;
|
|
389
389
|
isLoading: false;
|
|
390
390
|
isFetching: 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("node_modules/@iblai/iblai-api/dist/types").ChatHistoryFilterData, "chatHistoryApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
409
409
|
reset: () => void;
|
|
410
410
|
}, {
|
|
411
411
|
lastArg: {
|
|
@@ -425,7 +425,7 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
425
425
|
startedTimeStamp?: undefined | undefined;
|
|
426
426
|
fulfilledTimeStamp?: undefined | undefined;
|
|
427
427
|
} & {
|
|
428
|
-
currentData?: import("
|
|
428
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedConversationsList | undefined;
|
|
429
429
|
isUninitialized: false;
|
|
430
430
|
isLoading: false;
|
|
431
431
|
isFetching: false;
|
|
@@ -443,8 +443,8 @@ 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<
|
|
447
|
-
currentData?: import("
|
|
446
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("node_modules/@iblai/iblai-api/dist/types").PaginatedConversationsList, "chatHistoryApiSlice", any>> & {
|
|
447
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedConversationsList | undefined;
|
|
448
448
|
isUninitialized: false;
|
|
449
449
|
isLoading: false;
|
|
450
450
|
isFetching: false;
|
|
@@ -468,8 +468,8 @@ 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<
|
|
472
|
-
currentData?: import("
|
|
471
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("node_modules/@iblai/iblai-api/dist/types").PaginatedConversationsList, "chatHistoryApiSlice", any>> & {
|
|
472
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedConversationsList | undefined;
|
|
473
473
|
isUninitialized: false;
|
|
474
474
|
isLoading: false;
|
|
475
475
|
isFetching: false;
|
|
@@ -489,8 +489,8 @@ 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<
|
|
493
|
-
currentData?: import("
|
|
492
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("node_modules/@iblai/iblai-api/dist/types").PaginatedConversationsList, "chatHistoryApiSlice", any>> & {
|
|
493
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedConversationsList | undefined;
|
|
494
494
|
isUninitialized: false;
|
|
495
495
|
isLoading: false;
|
|
496
496
|
isFetching: false;
|
|
@@ -508,8 +508,8 @@ 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<
|
|
512
|
-
currentData?: import("
|
|
511
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("node_modules/@iblai/iblai-api/dist/types").PaginatedConversationsList, "chatHistoryApiSlice", any>> & {
|
|
512
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedConversationsList | undefined;
|
|
513
513
|
isUninitialized: false;
|
|
514
514
|
isLoading: false;
|
|
515
515
|
isFetching: false;
|
|
@@ -542,7 +542,7 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
542
542
|
startedTimeStamp?: undefined | undefined;
|
|
543
543
|
fulfilledTimeStamp?: undefined | undefined;
|
|
544
544
|
} & {
|
|
545
|
-
currentData?: import("
|
|
545
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedConversationsList | undefined;
|
|
546
546
|
isUninitialized: false;
|
|
547
547
|
isLoading: false;
|
|
548
548
|
isFetching: false;
|
|
@@ -560,8 +560,8 @@ 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<
|
|
564
|
-
currentData?: import("
|
|
563
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("node_modules/@iblai/iblai-api/dist/types").PaginatedConversationsList, "chatHistoryApiSlice", any>> & {
|
|
564
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedConversationsList | undefined;
|
|
565
565
|
isUninitialized: false;
|
|
566
566
|
isLoading: false;
|
|
567
567
|
isFetching: false;
|
|
@@ -585,8 +585,8 @@ 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<
|
|
589
|
-
currentData?: import("
|
|
588
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("node_modules/@iblai/iblai-api/dist/types").PaginatedConversationsList, "chatHistoryApiSlice", any>> & {
|
|
589
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedConversationsList | undefined;
|
|
590
590
|
isUninitialized: false;
|
|
591
591
|
isLoading: false;
|
|
592
592
|
isFetching: false;
|
|
@@ -606,8 +606,8 @@ 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<
|
|
610
|
-
currentData?: import("
|
|
609
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("node_modules/@iblai/iblai-api/dist/types").PaginatedConversationsList, "chatHistoryApiSlice", any>> & {
|
|
610
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedConversationsList | undefined;
|
|
611
611
|
isUninitialized: false;
|
|
612
612
|
isLoading: false;
|
|
613
613
|
isFetching: false;
|
|
@@ -625,8 +625,8 @@ 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<
|
|
629
|
-
currentData?: import("
|
|
628
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("node_modules/@iblai/iblai-api/dist/types").PaginatedConversationsList, "chatHistoryApiSlice", any>> & {
|
|
629
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedConversationsList | undefined;
|
|
630
630
|
isUninitialized: false;
|
|
631
631
|
isLoading: false;
|
|
632
632
|
isFetching: 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("node_modules/@iblai/iblai-api/dist/types").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;
|
|
@@ -657,7 +657,7 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
657
657
|
startedTimeStamp?: undefined | undefined;
|
|
658
658
|
fulfilledTimeStamp?: undefined | undefined;
|
|
659
659
|
} & {
|
|
660
|
-
currentData?: import("
|
|
660
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedConversationsList | undefined;
|
|
661
661
|
isUninitialized: false;
|
|
662
662
|
isLoading: false;
|
|
663
663
|
isFetching: false;
|
|
@@ -675,8 +675,8 @@ 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<
|
|
679
|
-
currentData?: import("
|
|
678
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("node_modules/@iblai/iblai-api/dist/types").PaginatedConversationsList, "chatHistoryApiSlice", any>> & {
|
|
679
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedConversationsList | undefined;
|
|
680
680
|
isUninitialized: false;
|
|
681
681
|
isLoading: false;
|
|
682
682
|
isFetching: false;
|
|
@@ -700,8 +700,8 @@ 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<
|
|
704
|
-
currentData?: import("
|
|
703
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("node_modules/@iblai/iblai-api/dist/types").PaginatedConversationsList, "chatHistoryApiSlice", any>> & {
|
|
704
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedConversationsList | undefined;
|
|
705
705
|
isUninitialized: false;
|
|
706
706
|
isLoading: false;
|
|
707
707
|
isFetching: false;
|
|
@@ -721,8 +721,8 @@ 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<
|
|
725
|
-
currentData?: import("
|
|
724
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("node_modules/@iblai/iblai-api/dist/types").PaginatedConversationsList, "chatHistoryApiSlice", any>> & {
|
|
725
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedConversationsList | undefined;
|
|
726
726
|
isUninitialized: false;
|
|
727
727
|
isLoading: false;
|
|
728
728
|
isFetching: false;
|
|
@@ -740,8 +740,8 @@ 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<
|
|
744
|
-
currentData?: import("
|
|
743
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("node_modules/@iblai/iblai-api/dist/types").PaginatedConversationsList, "chatHistoryApiSlice", any>> & {
|
|
744
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedConversationsList | undefined;
|
|
745
745
|
isUninitialized: false;
|
|
746
746
|
isLoading: false;
|
|
747
747
|
isFetching: false;
|
|
@@ -761,7 +761,7 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
761
761
|
startedTimeStamp?: undefined | undefined;
|
|
762
762
|
fulfilledTimeStamp?: undefined | undefined;
|
|
763
763
|
} & {
|
|
764
|
-
currentData?: import("
|
|
764
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedConversationsList | undefined;
|
|
765
765
|
isUninitialized: false;
|
|
766
766
|
isLoading: false;
|
|
767
767
|
isFetching: false;
|
|
@@ -779,8 +779,8 @@ 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<
|
|
783
|
-
currentData?: import("
|
|
782
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("node_modules/@iblai/iblai-api/dist/types").PaginatedConversationsList, "chatHistoryApiSlice", any>> & {
|
|
783
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedConversationsList | undefined;
|
|
784
784
|
isUninitialized: false;
|
|
785
785
|
isLoading: false;
|
|
786
786
|
isFetching: false;
|
|
@@ -804,8 +804,8 @@ 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<
|
|
808
|
-
currentData?: import("
|
|
807
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("node_modules/@iblai/iblai-api/dist/types").PaginatedConversationsList, "chatHistoryApiSlice", any>> & {
|
|
808
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedConversationsList | undefined;
|
|
809
809
|
isUninitialized: false;
|
|
810
810
|
isLoading: false;
|
|
811
811
|
isFetching: false;
|
|
@@ -825,8 +825,8 @@ 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<
|
|
829
|
-
currentData?: import("
|
|
828
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("node_modules/@iblai/iblai-api/dist/types").PaginatedConversationsList, "chatHistoryApiSlice", any>> & {
|
|
829
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedConversationsList | undefined;
|
|
830
830
|
isUninitialized: false;
|
|
831
831
|
isLoading: false;
|
|
832
832
|
isFetching: false;
|
|
@@ -844,8 +844,8 @@ 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<
|
|
848
|
-
currentData?: import("
|
|
847
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("node_modules/@iblai/iblai-api/dist/types").PaginatedConversationsList, "chatHistoryApiSlice", any>> & {
|
|
848
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedConversationsList | undefined;
|
|
849
849
|
isUninitialized: false;
|
|
850
850
|
isLoading: false;
|
|
851
851
|
isFetching: 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("node_modules/@iblai/iblai-api/dist/types").PaginatedConversationsList, "chatHistoryApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
878
878
|
reset: () => void;
|
|
879
879
|
}, {
|
|
880
880
|
lastArg: {
|
|
@@ -906,14 +906,14 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
906
906
|
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
907
907
|
} & Omit<{
|
|
908
908
|
requestId: string;
|
|
909
|
-
data?: import("
|
|
909
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").ReportCreate | undefined;
|
|
910
910
|
error?: unknown;
|
|
911
911
|
endpointName: string;
|
|
912
912
|
startedTimeStamp: number;
|
|
913
913
|
fulfilledTimeStamp?: number;
|
|
914
914
|
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
915
915
|
requestId: string;
|
|
916
|
-
data?: import("
|
|
916
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").ReportCreate | undefined;
|
|
917
917
|
error?: unknown;
|
|
918
918
|
endpointName: string;
|
|
919
919
|
startedTimeStamp: number;
|
|
@@ -930,7 +930,7 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
930
930
|
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
931
931
|
} & {
|
|
932
932
|
requestId: string;
|
|
933
|
-
data?: import("
|
|
933
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").ReportCreate | undefined;
|
|
934
934
|
error?: unknown;
|
|
935
935
|
endpointName: string;
|
|
936
936
|
startedTimeStamp: number;
|
|
@@ -947,14 +947,14 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
947
947
|
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
948
948
|
} & Omit<{
|
|
949
949
|
requestId: string;
|
|
950
|
-
data?: import("
|
|
950
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").ReportCreate | undefined;
|
|
951
951
|
error?: unknown;
|
|
952
952
|
endpointName: string;
|
|
953
953
|
startedTimeStamp: number;
|
|
954
954
|
fulfilledTimeStamp?: number;
|
|
955
955
|
}, "error"> & Required<Pick<{
|
|
956
956
|
requestId: string;
|
|
957
|
-
data?: import("
|
|
957
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").ReportCreate | undefined;
|
|
958
958
|
error?: unknown;
|
|
959
959
|
endpointName: string;
|
|
960
960
|
startedTimeStamp: number;
|
|
@@ -984,14 +984,14 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
984
984
|
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
985
985
|
} & Omit<{
|
|
986
986
|
requestId: string;
|
|
987
|
-
data?: import("
|
|
987
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").ReportCreate | undefined;
|
|
988
988
|
error?: unknown;
|
|
989
989
|
endpointName: string;
|
|
990
990
|
startedTimeStamp: number;
|
|
991
991
|
fulfilledTimeStamp?: number;
|
|
992
992
|
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
993
993
|
requestId: string;
|
|
994
|
-
data?: import("
|
|
994
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").ReportCreate | undefined;
|
|
995
995
|
error?: unknown;
|
|
996
996
|
endpointName: string;
|
|
997
997
|
startedTimeStamp: number;
|
|
@@ -1008,7 +1008,7 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
1008
1008
|
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
1009
1009
|
} & {
|
|
1010
1010
|
requestId: string;
|
|
1011
|
-
data?: import("
|
|
1011
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").ReportCreate | undefined;
|
|
1012
1012
|
error?: unknown;
|
|
1013
1013
|
endpointName: string;
|
|
1014
1014
|
startedTimeStamp: number;
|
|
@@ -1025,14 +1025,14 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
1025
1025
|
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
1026
1026
|
} & Omit<{
|
|
1027
1027
|
requestId: string;
|
|
1028
|
-
data?: import("
|
|
1028
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").ReportCreate | undefined;
|
|
1029
1029
|
error?: unknown;
|
|
1030
1030
|
endpointName: string;
|
|
1031
1031
|
startedTimeStamp: number;
|
|
1032
1032
|
fulfilledTimeStamp?: number;
|
|
1033
1033
|
}, "error"> & Required<Pick<{
|
|
1034
1034
|
requestId: string;
|
|
1035
|
-
data?: import("
|
|
1035
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").ReportCreate | undefined;
|
|
1036
1036
|
error?: unknown;
|
|
1037
1037
|
endpointName: string;
|
|
1038
1038
|
startedTimeStamp: number;
|
|
@@ -1047,14 +1047,14 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
1047
1047
|
fixedCacheKey?: string;
|
|
1048
1048
|
} | undefined) => readonly [(arg: {
|
|
1049
1049
|
key: string;
|
|
1050
|
-
requestBody?: import("
|
|
1050
|
+
requestBody?: import("node_modules/@iblai/iblai-api/dist/types").ReportRequest;
|
|
1051
1051
|
}) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
1052
1052
|
key: string;
|
|
1053
|
-
requestBody?: import("
|
|
1054
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1053
|
+
requestBody?: import("node_modules/@iblai/iblai-api/dist/types").ReportRequest;
|
|
1054
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("node_modules/@iblai/iblai-api/dist/types").ReportCreate, "chatHistoryApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
1055
1055
|
originalArgs?: {
|
|
1056
1056
|
key: string;
|
|
1057
|
-
requestBody?: import("
|
|
1057
|
+
requestBody?: import("node_modules/@iblai/iblai-api/dist/types").ReportRequest;
|
|
1058
1058
|
} | undefined;
|
|
1059
1059
|
reset: () => void;
|
|
1060
1060
|
}], useGetChatHistoryExportStatusQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
@@ -1067,7 +1067,7 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
1067
1067
|
startedTimeStamp?: undefined | undefined;
|
|
1068
1068
|
fulfilledTimeStamp?: undefined | undefined;
|
|
1069
1069
|
} & {
|
|
1070
|
-
currentData?: import("
|
|
1070
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ReportDetail | undefined;
|
|
1071
1071
|
isUninitialized: false;
|
|
1072
1072
|
isLoading: false;
|
|
1073
1073
|
isFetching: false;
|
|
@@ -1078,8 +1078,8 @@ 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<
|
|
1082
|
-
currentData?: import("
|
|
1081
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("node_modules/@iblai/iblai-api/dist/types").ReportDetail, "chatHistoryApiSlice", any>> & {
|
|
1082
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ReportDetail | undefined;
|
|
1083
1083
|
isUninitialized: false;
|
|
1084
1084
|
isLoading: false;
|
|
1085
1085
|
isFetching: false;
|
|
@@ -1096,8 +1096,8 @@ 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<
|
|
1100
|
-
currentData?: import("
|
|
1099
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("node_modules/@iblai/iblai-api/dist/types").ReportDetail, "chatHistoryApiSlice", any>> & {
|
|
1100
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ReportDetail | undefined;
|
|
1101
1101
|
isUninitialized: false;
|
|
1102
1102
|
isLoading: false;
|
|
1103
1103
|
isFetching: false;
|
|
@@ -1110,8 +1110,8 @@ 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<
|
|
1114
|
-
currentData?: import("
|
|
1113
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("node_modules/@iblai/iblai-api/dist/types").ReportDetail, "chatHistoryApiSlice", any>> & {
|
|
1114
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ReportDetail | undefined;
|
|
1115
1115
|
isUninitialized: false;
|
|
1116
1116
|
isLoading: false;
|
|
1117
1117
|
isFetching: false;
|
|
@@ -1122,8 +1122,8 @@ 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<
|
|
1126
|
-
currentData?: import("
|
|
1125
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("node_modules/@iblai/iblai-api/dist/types").ReportDetail, "chatHistoryApiSlice", any>> & {
|
|
1126
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ReportDetail | undefined;
|
|
1127
1127
|
isUninitialized: false;
|
|
1128
1128
|
isLoading: false;
|
|
1129
1129
|
isFetching: false;
|
|
@@ -1149,7 +1149,7 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
1149
1149
|
startedTimeStamp?: undefined | undefined;
|
|
1150
1150
|
fulfilledTimeStamp?: undefined | undefined;
|
|
1151
1151
|
} & {
|
|
1152
|
-
currentData?: import("
|
|
1152
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ReportDetail | undefined;
|
|
1153
1153
|
isUninitialized: false;
|
|
1154
1154
|
isLoading: false;
|
|
1155
1155
|
isFetching: false;
|
|
@@ -1160,8 +1160,8 @@ 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<
|
|
1164
|
-
currentData?: import("
|
|
1163
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("node_modules/@iblai/iblai-api/dist/types").ReportDetail, "chatHistoryApiSlice", any>> & {
|
|
1164
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ReportDetail | undefined;
|
|
1165
1165
|
isUninitialized: false;
|
|
1166
1166
|
isLoading: false;
|
|
1167
1167
|
isFetching: false;
|
|
@@ -1178,8 +1178,8 @@ 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<
|
|
1182
|
-
currentData?: import("
|
|
1181
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("node_modules/@iblai/iblai-api/dist/types").ReportDetail, "chatHistoryApiSlice", any>> & {
|
|
1182
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ReportDetail | undefined;
|
|
1183
1183
|
isUninitialized: false;
|
|
1184
1184
|
isLoading: false;
|
|
1185
1185
|
isFetching: false;
|
|
@@ -1192,8 +1192,8 @@ 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<
|
|
1196
|
-
currentData?: import("
|
|
1195
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("node_modules/@iblai/iblai-api/dist/types").ReportDetail, "chatHistoryApiSlice", any>> & {
|
|
1196
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ReportDetail | undefined;
|
|
1197
1197
|
isUninitialized: false;
|
|
1198
1198
|
isLoading: false;
|
|
1199
1199
|
isFetching: false;
|
|
@@ -1204,8 +1204,8 @@ 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<
|
|
1208
|
-
currentData?: import("
|
|
1207
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("node_modules/@iblai/iblai-api/dist/types").ReportDetail, "chatHistoryApiSlice", any>> & {
|
|
1208
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ReportDetail | undefined;
|
|
1209
1209
|
isUninitialized: false;
|
|
1210
1210
|
isLoading: false;
|
|
1211
1211
|
isFetching: 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("node_modules/@iblai/iblai-api/dist/types").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;
|
|
@@ -1229,7 +1229,7 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
1229
1229
|
startedTimeStamp?: undefined | undefined;
|
|
1230
1230
|
fulfilledTimeStamp?: undefined | undefined;
|
|
1231
1231
|
} & {
|
|
1232
|
-
currentData?: import("
|
|
1232
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ReportDetail | undefined;
|
|
1233
1233
|
isUninitialized: false;
|
|
1234
1234
|
isLoading: false;
|
|
1235
1235
|
isFetching: false;
|
|
@@ -1240,8 +1240,8 @@ 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<
|
|
1244
|
-
currentData?: import("
|
|
1243
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("node_modules/@iblai/iblai-api/dist/types").ReportDetail, "chatHistoryApiSlice", any>> & {
|
|
1244
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ReportDetail | undefined;
|
|
1245
1245
|
isUninitialized: false;
|
|
1246
1246
|
isLoading: false;
|
|
1247
1247
|
isFetching: false;
|
|
@@ -1258,8 +1258,8 @@ 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<
|
|
1262
|
-
currentData?: import("
|
|
1261
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("node_modules/@iblai/iblai-api/dist/types").ReportDetail, "chatHistoryApiSlice", any>> & {
|
|
1262
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ReportDetail | undefined;
|
|
1263
1263
|
isUninitialized: false;
|
|
1264
1264
|
isLoading: false;
|
|
1265
1265
|
isFetching: false;
|
|
@@ -1272,8 +1272,8 @@ 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<
|
|
1276
|
-
currentData?: import("
|
|
1275
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("node_modules/@iblai/iblai-api/dist/types").ReportDetail, "chatHistoryApiSlice", any>> & {
|
|
1276
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ReportDetail | undefined;
|
|
1277
1277
|
isUninitialized: false;
|
|
1278
1278
|
isLoading: false;
|
|
1279
1279
|
isFetching: false;
|
|
@@ -1284,8 +1284,8 @@ 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<
|
|
1288
|
-
currentData?: import("
|
|
1287
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("node_modules/@iblai/iblai-api/dist/types").ReportDetail, "chatHistoryApiSlice", any>> & {
|
|
1288
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ReportDetail | undefined;
|
|
1289
1289
|
isUninitialized: false;
|
|
1290
1290
|
isLoading: false;
|
|
1291
1291
|
isFetching: false;
|
|
@@ -1305,7 +1305,7 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
1305
1305
|
startedTimeStamp?: undefined | undefined;
|
|
1306
1306
|
fulfilledTimeStamp?: undefined | undefined;
|
|
1307
1307
|
} & {
|
|
1308
|
-
currentData?: import("
|
|
1308
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ReportDetail | undefined;
|
|
1309
1309
|
isUninitialized: false;
|
|
1310
1310
|
isLoading: false;
|
|
1311
1311
|
isFetching: false;
|
|
@@ -1316,8 +1316,8 @@ 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<
|
|
1320
|
-
currentData?: import("
|
|
1319
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("node_modules/@iblai/iblai-api/dist/types").ReportDetail, "chatHistoryApiSlice", any>> & {
|
|
1320
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ReportDetail | undefined;
|
|
1321
1321
|
isUninitialized: false;
|
|
1322
1322
|
isLoading: false;
|
|
1323
1323
|
isFetching: false;
|
|
@@ -1334,8 +1334,8 @@ 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<
|
|
1338
|
-
currentData?: import("
|
|
1337
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("node_modules/@iblai/iblai-api/dist/types").ReportDetail, "chatHistoryApiSlice", any>> & {
|
|
1338
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ReportDetail | undefined;
|
|
1339
1339
|
isUninitialized: false;
|
|
1340
1340
|
isLoading: false;
|
|
1341
1341
|
isFetching: false;
|
|
@@ -1348,8 +1348,8 @@ 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<
|
|
1352
|
-
currentData?: import("
|
|
1351
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("node_modules/@iblai/iblai-api/dist/types").ReportDetail, "chatHistoryApiSlice", any>> & {
|
|
1352
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ReportDetail | undefined;
|
|
1353
1353
|
isUninitialized: false;
|
|
1354
1354
|
isLoading: false;
|
|
1355
1355
|
isFetching: false;
|
|
@@ -1360,8 +1360,8 @@ 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<
|
|
1364
|
-
currentData?: import("
|
|
1363
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", import("node_modules/@iblai/iblai-api/dist/types").ReportDetail, "chatHistoryApiSlice", any>> & {
|
|
1364
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ReportDetail | undefined;
|
|
1365
1365
|
isUninitialized: false;
|
|
1366
1366
|
isLoading: false;
|
|
1367
1367
|
isFetching: 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("node_modules/@iblai/iblai-api/dist/types").ReportDetail, "chatHistoryApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
1380
1380
|
reset: () => void;
|
|
1381
1381
|
}, {
|
|
1382
1382
|
lastArg: {
|