@iblai/data-layer 0.0.5 → 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 +65009 -23
- package/dist/index.esm.js +29131 -16819
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +29475 -16817
- package/dist/index.js.map +1 -1
- package/dist/package.json +84 -0
- package/dist/src/config.d.ts +2 -0
- package/dist/src/constants.d.ts +2 -3
- package/dist/src/core/index.d.ts +2 -1
- package/dist/src/features/analytics/api-slice.d.ts +3357 -0
- package/dist/src/features/analytics/constants.d.ts +121 -0
- package/dist/src/features/analytics/types.d.ts +426 -0
- package/dist/src/features/api-keys/api-slice.d.ts +94 -34
- package/dist/{features/api-keys → src/features/apps}/api-slice.d.ts +156 -78
- package/dist/src/features/auth/api-slice.d.ts +639 -0
- package/dist/src/features/auth/constants.d.ts +20 -0
- package/dist/src/features/auth/types.d.ts +33 -0
- package/dist/src/features/billing/api-slice.d.ts +349 -0
- package/dist/src/features/career/api-slice.d.ts +2852 -0
- package/dist/src/features/catalog/api-slice.d.ts +8618 -1
- package/dist/src/features/chat/api-slice.d.ts +1567 -32
- package/dist/src/features/chat/chat-slice.d.ts +4 -7
- package/dist/{features/core → src/features/chat-files}/api-slice.d.ts +47 -26
- package/dist/src/features/chat-files/types.d.ts +32 -0
- package/dist/src/features/chat-history/api-slice.d.ts +518 -244
- package/dist/src/features/core/api-slice.d.ts +4261 -5
- package/dist/src/features/core/constants.d.ts +47 -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 +2343 -84
- package/dist/src/features/credentials/constants.d.ts +28 -0
- package/dist/src/features/credentials/custom-api-slice.d.ts +1284 -0
- package/dist/src/features/credentials/types.d.ts +16 -0
- 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 +352 -43
- 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 +89 -23
- package/dist/src/features/memory/api-slice.d.ts +2129 -0
- 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 +4126 -146
- package/dist/src/features/mentor/constants.d.ts +39 -0
- package/dist/src/features/mentor/custom-api-slice.d.ts +796 -0
- package/dist/src/features/mentor/types.d.ts +77 -0
- package/dist/src/features/mentor-categories/api-slice.d.ts +463 -23
- package/dist/src/features/notifications/api-slice.d.ts +1600 -0
- 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 +1213 -0
- package/dist/src/features/platform/api-slice.d.ts +944 -70
- 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 +1357 -73
- package/dist/src/features/reports/api-slice.d.ts +814 -0
- package/dist/{features/prompts/api-slice.d.ts → src/features/search/ai-search-api-slice.d.ts} +161 -160
- package/dist/src/features/search/api-slice.d.ts +1939 -0
- 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 +705 -0
- package/dist/src/features/skills/api-slice.d.ts +505 -65
- package/dist/src/features/stripe/api-slice.d.ts +781 -0
- package/dist/src/features/stripe/constants.d.ts +19 -0
- package/dist/src/features/stripe/types.d.ts +19 -0
- package/dist/src/features/tenant/api-slice.d.ts +261 -47
- package/dist/src/features/tenant/constants.d.ts +1 -1
- package/dist/src/features/tenant/types.d.ts +1 -0
- package/dist/src/features/tenant-logo/api-slice.d.ts +349 -0
- package/dist/src/features/tenant-logo/constants.d.ts +24 -0
- package/dist/src/features/tools/api-slice.d.ts +133 -23
- package/dist/src/features/training-documents/api-slice.d.ts +731 -52
- package/dist/src/features/user/api-slice.d.ts +1457 -22
- package/dist/src/features/user/constants.d.ts +32 -1
- package/dist/src/features/user/types.d.ts +65 -2
- package/dist/src/features/user-invitations/api-slice.d.ts +346 -56
- package/dist/src/features/utils.d.ts +31 -8
- package/dist/src/index.d.ts +78 -23
- package/dist/src/reducers/index.d.ts +1 -0
- package/dist/src/reducers/mentor.d.ts +2 -120
- package/dist/src/reducers/skills.d.ts +2 -0
- package/dist/src/services/StorageService.d.ts +1 -1
- package/dist/src/utils/index.d.ts +2 -2
- package/dist/tests/features/analytics/api-slice.test.d.ts +1 -0
- package/dist/tests/features/analytics/constants.test.d.ts +1 -0
- package/dist/tests/features/user/api-slice.test.d.ts +1 -0
- package/dist/tests/features/user/constants.test.d.ts +1 -0
- package/dist/tests/setupTests.d.ts +1 -0
- package/package.json +26 -15
- package/dist/config.d.ts +0 -5
- package/dist/constants.d.ts +0 -31
- package/dist/core/index.d.ts +0 -4
- package/dist/features/chat/api-slice.d.ts +0 -1278
- package/dist/features/chat/chat-slice.d.ts +0 -15
- package/dist/features/chat-history/api-slice.d.ts +0 -956
- package/dist/features/chat-history/constants.d.ts +0 -3
- package/dist/features/credentials/api-slice.d.ts +0 -531
- package/dist/features/datasets/api-slice.d.ts +0 -267
- package/dist/features/index.d.ts +0 -1
- package/dist/features/llms/api-slice.d.ts +0 -267
- package/dist/features/mentor/api-slice.d.ts +0 -1816
- package/dist/features/mentor-categories/api-slice.d.ts +0 -267
- package/dist/features/platform/api-slice.d.ts +0 -735
- package/dist/features/skills/api-slice.d.ts +0 -795
- package/dist/features/tenant/api-slice.d.ts +0 -536
- package/dist/features/tenant/constants.d.ts +0 -11
- package/dist/features/tenant/types.d.ts +0 -18
- package/dist/features/tools/api-slice.d.ts +0 -267
- package/dist/features/training-documents/api-slice.d.ts +0 -750
- package/dist/features/user/api-slice.d.ts +0 -751
- package/dist/features/user/constants.d.ts +0 -19
- package/dist/features/user/types.d.ts +0 -64
- package/dist/features/user-invitations/api-slice.d.ts +0 -428
- package/dist/features/utils.d.ts +0 -46
- package/dist/node_modules/@iblai/iblai-api/src/core/ApiError.d.ts +0 -10
- package/dist/node_modules/@iblai/iblai-api/src/core/ApiRequestOptions.d.ts +0 -13
- package/dist/node_modules/@iblai/iblai-api/src/core/ApiResult.d.ts +0 -7
- package/dist/node_modules/@iblai/iblai-api/src/core/CancelablePromise.d.ts +0 -20
- package/dist/node_modules/@iblai/iblai-api/src/core/OpenAPI.d.ts +0 -16
- package/dist/node_modules/@iblai/iblai-api/src/core/request.d.ts +0 -30
- package/dist/reducers/index.d.ts +0 -1
- package/dist/reducers/mentor.d.ts +0 -135
- package/dist/services/StorageService.d.ts +0 -5
- package/dist/src/features/chat-history/constants.d.ts +0 -8
- package/dist/utils/index.d.ts +0 -2
- /package/dist/{features/catalog/api-slice.d.ts → src/__tests__/constants.test.d.ts} +0 -0
- /package/dist/{features → src/features}/constants.d.ts +0 -0
|
@@ -1,13 +1,31 @@
|
|
|
1
|
-
export declare const chatHistoryApiSlice: import("@reduxjs/toolkit/query").Api<import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2
|
-
getChatHistoryFilter: import("@reduxjs/toolkit/query").QueryDefinition<
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
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
|
+
getChatHistoryFilter: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3
|
+
org: string;
|
|
4
|
+
endDate?: string;
|
|
5
|
+
mentorId?: string;
|
|
6
|
+
monthlyRange?: boolean;
|
|
7
|
+
startDate?: string;
|
|
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
|
+
getChatHistory: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
10
|
+
org: string;
|
|
11
|
+
endDate?: string;
|
|
12
|
+
filterUserId?: string;
|
|
13
|
+
mentor?: string;
|
|
14
|
+
page?: number;
|
|
15
|
+
pageSize?: number;
|
|
16
|
+
sentiment?: string;
|
|
17
|
+
startDate?: string;
|
|
18
|
+
topics?: string;
|
|
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
|
+
exportChatHistory: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
21
|
+
key: string;
|
|
22
|
+
requestBody?: import("@iblai/iblai-api").ReportRequest;
|
|
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
|
+
getChatHistoryExportStatus: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
25
|
+
key: string;
|
|
26
|
+
reportName: string;
|
|
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
|
+
}, "chatHistoryApiSlice", "chatHistory" | "chatHistoryFilter" | "chatHistoryExportStatus", typeof import("@reduxjs/toolkit/query").coreModuleName | typeof import("@reduxjs/toolkit/dist/query/react").reactHooksModuleName>;
|
|
11
29
|
export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
12
30
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
13
31
|
originalArgs?: undefined | undefined;
|
|
@@ -26,7 +44,13 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
26
44
|
isError: false;
|
|
27
45
|
}, "isUninitialized"> & {
|
|
28
46
|
isUninitialized: true;
|
|
29
|
-
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
47
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
48
|
+
org: string;
|
|
49
|
+
endDate?: string;
|
|
50
|
+
mentorId?: string;
|
|
51
|
+
monthlyRange?: boolean;
|
|
52
|
+
startDate?: string;
|
|
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>> & {
|
|
30
54
|
currentData?: import("@iblai/iblai-api").ChatHistoryFilterData | undefined;
|
|
31
55
|
isUninitialized: false;
|
|
32
56
|
isLoading: false;
|
|
@@ -41,7 +65,13 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
41
65
|
isSuccess: true;
|
|
42
66
|
isFetching: true;
|
|
43
67
|
error: undefined;
|
|
44
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
68
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
69
|
+
org: string;
|
|
70
|
+
endDate?: string;
|
|
71
|
+
mentorId?: string;
|
|
72
|
+
monthlyRange?: boolean;
|
|
73
|
+
startDate?: string;
|
|
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>> & {
|
|
45
75
|
currentData?: import("@iblai/iblai-api").ChatHistoryFilterData | undefined;
|
|
46
76
|
isUninitialized: false;
|
|
47
77
|
isLoading: false;
|
|
@@ -52,7 +82,13 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
52
82
|
isSuccess: true;
|
|
53
83
|
isFetching: false;
|
|
54
84
|
error: undefined;
|
|
55
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
85
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
86
|
+
org: string;
|
|
87
|
+
endDate?: string;
|
|
88
|
+
mentorId?: string;
|
|
89
|
+
monthlyRange?: boolean;
|
|
90
|
+
startDate?: string;
|
|
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>> & {
|
|
56
92
|
currentData?: import("@iblai/iblai-api").ChatHistoryFilterData | undefined;
|
|
57
93
|
isUninitialized: false;
|
|
58
94
|
isLoading: false;
|
|
@@ -61,7 +97,13 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
61
97
|
isError: false;
|
|
62
98
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
63
99
|
isError: true;
|
|
64
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
100
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
101
|
+
org: string;
|
|
102
|
+
endDate?: string;
|
|
103
|
+
mentorId?: string;
|
|
104
|
+
monthlyRange?: boolean;
|
|
105
|
+
startDate?: string;
|
|
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>> & {
|
|
65
107
|
currentData?: import("@iblai/iblai-api").ChatHistoryFilterData | undefined;
|
|
66
108
|
isUninitialized: false;
|
|
67
109
|
isLoading: false;
|
|
@@ -70,7 +112,13 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
70
112
|
isError: false;
|
|
71
113
|
}, "error">>)>> & {
|
|
72
114
|
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
73
|
-
}>(arg:
|
|
115
|
+
}>(arg: {
|
|
116
|
+
org: string;
|
|
117
|
+
endDate?: string;
|
|
118
|
+
mentorId?: string;
|
|
119
|
+
monthlyRange?: boolean;
|
|
120
|
+
startDate?: string;
|
|
121
|
+
} | typeof import("@reduxjs/toolkit/query").skipToken, options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & {
|
|
74
122
|
skip?: boolean;
|
|
75
123
|
refetchOnMountOrArgChange?: boolean | number;
|
|
76
124
|
} & {
|
|
@@ -93,7 +141,13 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
93
141
|
isError: false;
|
|
94
142
|
}, "isUninitialized"> & {
|
|
95
143
|
isUninitialized: true;
|
|
96
|
-
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
144
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
145
|
+
org: string;
|
|
146
|
+
endDate?: string;
|
|
147
|
+
mentorId?: string;
|
|
148
|
+
monthlyRange?: boolean;
|
|
149
|
+
startDate?: string;
|
|
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>> & {
|
|
97
151
|
currentData?: import("@iblai/iblai-api").ChatHistoryFilterData | undefined;
|
|
98
152
|
isUninitialized: false;
|
|
99
153
|
isLoading: false;
|
|
@@ -108,7 +162,13 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
108
162
|
isSuccess: true;
|
|
109
163
|
isFetching: true;
|
|
110
164
|
error: undefined;
|
|
111
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
165
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
166
|
+
org: string;
|
|
167
|
+
endDate?: string;
|
|
168
|
+
mentorId?: string;
|
|
169
|
+
monthlyRange?: boolean;
|
|
170
|
+
startDate?: string;
|
|
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>> & {
|
|
112
172
|
currentData?: import("@iblai/iblai-api").ChatHistoryFilterData | undefined;
|
|
113
173
|
isUninitialized: false;
|
|
114
174
|
isLoading: false;
|
|
@@ -119,7 +179,13 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
119
179
|
isSuccess: true;
|
|
120
180
|
isFetching: false;
|
|
121
181
|
error: undefined;
|
|
122
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
182
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
183
|
+
org: string;
|
|
184
|
+
endDate?: string;
|
|
185
|
+
mentorId?: string;
|
|
186
|
+
monthlyRange?: boolean;
|
|
187
|
+
startDate?: string;
|
|
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>> & {
|
|
123
189
|
currentData?: import("@iblai/iblai-api").ChatHistoryFilterData | undefined;
|
|
124
190
|
isUninitialized: false;
|
|
125
191
|
isLoading: false;
|
|
@@ -128,7 +194,13 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
128
194
|
isError: false;
|
|
129
195
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
130
196
|
isError: true;
|
|
131
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
197
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
198
|
+
org: string;
|
|
199
|
+
endDate?: string;
|
|
200
|
+
mentorId?: string;
|
|
201
|
+
monthlyRange?: boolean;
|
|
202
|
+
startDate?: string;
|
|
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>> & {
|
|
132
204
|
currentData?: import("@iblai/iblai-api").ChatHistoryFilterData | undefined;
|
|
133
205
|
isUninitialized: false;
|
|
134
206
|
isLoading: false;
|
|
@@ -139,7 +211,13 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
139
211
|
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
140
212
|
}) => R) | undefined;
|
|
141
213
|
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
142
|
-
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
214
|
+
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
215
|
+
org: string;
|
|
216
|
+
endDate?: string;
|
|
217
|
+
mentorId?: string;
|
|
218
|
+
monthlyRange?: boolean;
|
|
219
|
+
startDate?: string;
|
|
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>>;
|
|
143
221
|
}, useLazyGetChatHistoryFilterQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
144
222
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
145
223
|
originalArgs?: undefined | undefined;
|
|
@@ -158,7 +236,13 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
158
236
|
isError: false;
|
|
159
237
|
}, "isUninitialized"> & {
|
|
160
238
|
isUninitialized: true;
|
|
161
|
-
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
239
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
240
|
+
org: string;
|
|
241
|
+
endDate?: string;
|
|
242
|
+
mentorId?: string;
|
|
243
|
+
monthlyRange?: boolean;
|
|
244
|
+
startDate?: string;
|
|
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>> & {
|
|
162
246
|
currentData?: import("@iblai/iblai-api").ChatHistoryFilterData | undefined;
|
|
163
247
|
isUninitialized: false;
|
|
164
248
|
isLoading: false;
|
|
@@ -173,7 +257,13 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
173
257
|
isSuccess: true;
|
|
174
258
|
isFetching: true;
|
|
175
259
|
error: undefined;
|
|
176
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
260
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
261
|
+
org: string;
|
|
262
|
+
endDate?: string;
|
|
263
|
+
mentorId?: string;
|
|
264
|
+
monthlyRange?: boolean;
|
|
265
|
+
startDate?: string;
|
|
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>> & {
|
|
177
267
|
currentData?: import("@iblai/iblai-api").ChatHistoryFilterData | undefined;
|
|
178
268
|
isUninitialized: false;
|
|
179
269
|
isLoading: false;
|
|
@@ -184,7 +274,13 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
184
274
|
isSuccess: true;
|
|
185
275
|
isFetching: false;
|
|
186
276
|
error: undefined;
|
|
187
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
277
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
278
|
+
org: string;
|
|
279
|
+
endDate?: string;
|
|
280
|
+
mentorId?: string;
|
|
281
|
+
monthlyRange?: boolean;
|
|
282
|
+
startDate?: string;
|
|
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>> & {
|
|
188
284
|
currentData?: import("@iblai/iblai-api").ChatHistoryFilterData | undefined;
|
|
189
285
|
isUninitialized: false;
|
|
190
286
|
isLoading: false;
|
|
@@ -193,7 +289,13 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
193
289
|
isError: false;
|
|
194
290
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
195
291
|
isError: true;
|
|
196
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
292
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
293
|
+
org: string;
|
|
294
|
+
endDate?: string;
|
|
295
|
+
mentorId?: string;
|
|
296
|
+
monthlyRange?: boolean;
|
|
297
|
+
startDate?: string;
|
|
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>> & {
|
|
197
299
|
currentData?: import("@iblai/iblai-api").ChatHistoryFilterData | undefined;
|
|
198
300
|
isUninitialized: false;
|
|
199
301
|
isLoading: false;
|
|
@@ -222,7 +324,13 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
222
324
|
isError: false;
|
|
223
325
|
}, "isUninitialized"> & {
|
|
224
326
|
isUninitialized: true;
|
|
225
|
-
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
327
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
328
|
+
org: string;
|
|
329
|
+
endDate?: string;
|
|
330
|
+
mentorId?: string;
|
|
331
|
+
monthlyRange?: boolean;
|
|
332
|
+
startDate?: string;
|
|
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>> & {
|
|
226
334
|
currentData?: import("@iblai/iblai-api").ChatHistoryFilterData | undefined;
|
|
227
335
|
isUninitialized: false;
|
|
228
336
|
isLoading: false;
|
|
@@ -237,7 +345,13 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
237
345
|
isSuccess: true;
|
|
238
346
|
isFetching: true;
|
|
239
347
|
error: undefined;
|
|
240
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
348
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
349
|
+
org: string;
|
|
350
|
+
endDate?: string;
|
|
351
|
+
mentorId?: string;
|
|
352
|
+
monthlyRange?: boolean;
|
|
353
|
+
startDate?: string;
|
|
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>> & {
|
|
241
355
|
currentData?: import("@iblai/iblai-api").ChatHistoryFilterData | undefined;
|
|
242
356
|
isUninitialized: false;
|
|
243
357
|
isLoading: false;
|
|
@@ -248,7 +362,13 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
248
362
|
isSuccess: true;
|
|
249
363
|
isFetching: false;
|
|
250
364
|
error: undefined;
|
|
251
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
365
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
366
|
+
org: string;
|
|
367
|
+
endDate?: string;
|
|
368
|
+
mentorId?: string;
|
|
369
|
+
monthlyRange?: boolean;
|
|
370
|
+
startDate?: string;
|
|
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>> & {
|
|
252
372
|
currentData?: import("@iblai/iblai-api").ChatHistoryFilterData | undefined;
|
|
253
373
|
isUninitialized: false;
|
|
254
374
|
isLoading: false;
|
|
@@ -257,7 +377,13 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
257
377
|
isError: false;
|
|
258
378
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
259
379
|
isError: true;
|
|
260
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
380
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
381
|
+
org: string;
|
|
382
|
+
endDate?: string;
|
|
383
|
+
mentorId?: string;
|
|
384
|
+
monthlyRange?: boolean;
|
|
385
|
+
startDate?: string;
|
|
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>> & {
|
|
261
387
|
currentData?: import("@iblai/iblai-api").ChatHistoryFilterData | undefined;
|
|
262
388
|
isUninitialized: false;
|
|
263
389
|
isLoading: false;
|
|
@@ -267,10 +393,28 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
267
393
|
}, "error">>)>> & {
|
|
268
394
|
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
269
395
|
}) => R) | undefined;
|
|
270
|
-
}, "skip">) | undefined) => [(arg:
|
|
396
|
+
}, "skip">) | undefined) => [(arg: {
|
|
397
|
+
org: string;
|
|
398
|
+
endDate?: string;
|
|
399
|
+
mentorId?: string;
|
|
400
|
+
monthlyRange?: boolean;
|
|
401
|
+
startDate?: string;
|
|
402
|
+
}, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
403
|
+
org: string;
|
|
404
|
+
endDate?: string;
|
|
405
|
+
mentorId?: string;
|
|
406
|
+
monthlyRange?: boolean;
|
|
407
|
+
startDate?: string;
|
|
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] & {
|
|
271
409
|
reset: () => void;
|
|
272
410
|
}, {
|
|
273
|
-
lastArg:
|
|
411
|
+
lastArg: {
|
|
412
|
+
org: string;
|
|
413
|
+
endDate?: string;
|
|
414
|
+
mentorId?: string;
|
|
415
|
+
monthlyRange?: boolean;
|
|
416
|
+
startDate?: string;
|
|
417
|
+
};
|
|
274
418
|
}], useGetChatHistoryQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
275
419
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
276
420
|
originalArgs?: undefined | undefined;
|
|
@@ -289,7 +433,17 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
289
433
|
isError: false;
|
|
290
434
|
}, "isUninitialized"> & {
|
|
291
435
|
isUninitialized: true;
|
|
292
|
-
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
436
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
437
|
+
org: string;
|
|
438
|
+
endDate?: string;
|
|
439
|
+
filterUserId?: string;
|
|
440
|
+
mentor?: string;
|
|
441
|
+
page?: number;
|
|
442
|
+
pageSize?: number;
|
|
443
|
+
sentiment?: string;
|
|
444
|
+
startDate?: string;
|
|
445
|
+
topics?: string;
|
|
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>> & {
|
|
293
447
|
currentData?: import("@iblai/iblai-api").PaginatedConversationsList | undefined;
|
|
294
448
|
isUninitialized: false;
|
|
295
449
|
isLoading: false;
|
|
@@ -304,7 +458,17 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
304
458
|
isSuccess: true;
|
|
305
459
|
isFetching: true;
|
|
306
460
|
error: undefined;
|
|
307
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
461
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
462
|
+
org: string;
|
|
463
|
+
endDate?: string;
|
|
464
|
+
filterUserId?: string;
|
|
465
|
+
mentor?: string;
|
|
466
|
+
page?: number;
|
|
467
|
+
pageSize?: number;
|
|
468
|
+
sentiment?: string;
|
|
469
|
+
startDate?: string;
|
|
470
|
+
topics?: string;
|
|
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>> & {
|
|
308
472
|
currentData?: import("@iblai/iblai-api").PaginatedConversationsList | undefined;
|
|
309
473
|
isUninitialized: false;
|
|
310
474
|
isLoading: false;
|
|
@@ -315,7 +479,17 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
315
479
|
isSuccess: true;
|
|
316
480
|
isFetching: false;
|
|
317
481
|
error: undefined;
|
|
318
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
482
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
483
|
+
org: string;
|
|
484
|
+
endDate?: string;
|
|
485
|
+
filterUserId?: string;
|
|
486
|
+
mentor?: string;
|
|
487
|
+
page?: number;
|
|
488
|
+
pageSize?: number;
|
|
489
|
+
sentiment?: string;
|
|
490
|
+
startDate?: string;
|
|
491
|
+
topics?: string;
|
|
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>> & {
|
|
319
493
|
currentData?: import("@iblai/iblai-api").PaginatedConversationsList | undefined;
|
|
320
494
|
isUninitialized: false;
|
|
321
495
|
isLoading: false;
|
|
@@ -324,7 +498,17 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
324
498
|
isError: false;
|
|
325
499
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
326
500
|
isError: true;
|
|
327
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
501
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
502
|
+
org: string;
|
|
503
|
+
endDate?: string;
|
|
504
|
+
filterUserId?: string;
|
|
505
|
+
mentor?: string;
|
|
506
|
+
page?: number;
|
|
507
|
+
pageSize?: number;
|
|
508
|
+
sentiment?: string;
|
|
509
|
+
startDate?: string;
|
|
510
|
+
topics?: string;
|
|
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>> & {
|
|
328
512
|
currentData?: import("@iblai/iblai-api").PaginatedConversationsList | undefined;
|
|
329
513
|
isUninitialized: false;
|
|
330
514
|
isLoading: false;
|
|
@@ -333,7 +517,17 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
333
517
|
isError: false;
|
|
334
518
|
}, "error">>)>> & {
|
|
335
519
|
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
336
|
-
}>(arg:
|
|
520
|
+
}>(arg: {
|
|
521
|
+
org: string;
|
|
522
|
+
endDate?: string;
|
|
523
|
+
filterUserId?: string;
|
|
524
|
+
mentor?: string;
|
|
525
|
+
page?: number;
|
|
526
|
+
pageSize?: number;
|
|
527
|
+
sentiment?: string;
|
|
528
|
+
startDate?: string;
|
|
529
|
+
topics?: string;
|
|
530
|
+
} | typeof import("@reduxjs/toolkit/query").skipToken, options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & {
|
|
337
531
|
skip?: boolean;
|
|
338
532
|
refetchOnMountOrArgChange?: boolean | number;
|
|
339
533
|
} & {
|
|
@@ -356,7 +550,17 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
356
550
|
isError: false;
|
|
357
551
|
}, "isUninitialized"> & {
|
|
358
552
|
isUninitialized: true;
|
|
359
|
-
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
553
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
554
|
+
org: string;
|
|
555
|
+
endDate?: string;
|
|
556
|
+
filterUserId?: string;
|
|
557
|
+
mentor?: string;
|
|
558
|
+
page?: number;
|
|
559
|
+
pageSize?: number;
|
|
560
|
+
sentiment?: string;
|
|
561
|
+
startDate?: string;
|
|
562
|
+
topics?: string;
|
|
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>> & {
|
|
360
564
|
currentData?: import("@iblai/iblai-api").PaginatedConversationsList | undefined;
|
|
361
565
|
isUninitialized: false;
|
|
362
566
|
isLoading: false;
|
|
@@ -371,7 +575,17 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
371
575
|
isSuccess: true;
|
|
372
576
|
isFetching: true;
|
|
373
577
|
error: undefined;
|
|
374
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
578
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
579
|
+
org: string;
|
|
580
|
+
endDate?: string;
|
|
581
|
+
filterUserId?: string;
|
|
582
|
+
mentor?: string;
|
|
583
|
+
page?: number;
|
|
584
|
+
pageSize?: number;
|
|
585
|
+
sentiment?: string;
|
|
586
|
+
startDate?: string;
|
|
587
|
+
topics?: string;
|
|
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>> & {
|
|
375
589
|
currentData?: import("@iblai/iblai-api").PaginatedConversationsList | undefined;
|
|
376
590
|
isUninitialized: false;
|
|
377
591
|
isLoading: false;
|
|
@@ -382,7 +596,17 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
382
596
|
isSuccess: true;
|
|
383
597
|
isFetching: false;
|
|
384
598
|
error: undefined;
|
|
385
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
599
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
600
|
+
org: string;
|
|
601
|
+
endDate?: string;
|
|
602
|
+
filterUserId?: string;
|
|
603
|
+
mentor?: string;
|
|
604
|
+
page?: number;
|
|
605
|
+
pageSize?: number;
|
|
606
|
+
sentiment?: string;
|
|
607
|
+
startDate?: string;
|
|
608
|
+
topics?: string;
|
|
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>> & {
|
|
386
610
|
currentData?: import("@iblai/iblai-api").PaginatedConversationsList | undefined;
|
|
387
611
|
isUninitialized: false;
|
|
388
612
|
isLoading: false;
|
|
@@ -391,7 +615,17 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
391
615
|
isError: false;
|
|
392
616
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
393
617
|
isError: true;
|
|
394
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
618
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
619
|
+
org: string;
|
|
620
|
+
endDate?: string;
|
|
621
|
+
filterUserId?: string;
|
|
622
|
+
mentor?: string;
|
|
623
|
+
page?: number;
|
|
624
|
+
pageSize?: number;
|
|
625
|
+
sentiment?: string;
|
|
626
|
+
startDate?: string;
|
|
627
|
+
topics?: string;
|
|
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>> & {
|
|
395
629
|
currentData?: import("@iblai/iblai-api").PaginatedConversationsList | undefined;
|
|
396
630
|
isUninitialized: false;
|
|
397
631
|
isLoading: false;
|
|
@@ -402,7 +636,17 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
402
636
|
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
403
637
|
}) => R) | undefined;
|
|
404
638
|
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
405
|
-
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
639
|
+
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
640
|
+
org: string;
|
|
641
|
+
endDate?: string;
|
|
642
|
+
filterUserId?: string;
|
|
643
|
+
mentor?: string;
|
|
644
|
+
page?: number;
|
|
645
|
+
pageSize?: number;
|
|
646
|
+
sentiment?: string;
|
|
647
|
+
startDate?: string;
|
|
648
|
+
topics?: string;
|
|
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>>;
|
|
406
650
|
}, useLazyGetChatHistoryQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
407
651
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
408
652
|
originalArgs?: undefined | undefined;
|
|
@@ -421,7 +665,17 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
421
665
|
isError: false;
|
|
422
666
|
}, "isUninitialized"> & {
|
|
423
667
|
isUninitialized: true;
|
|
424
|
-
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
668
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
669
|
+
org: string;
|
|
670
|
+
endDate?: string;
|
|
671
|
+
filterUserId?: string;
|
|
672
|
+
mentor?: string;
|
|
673
|
+
page?: number;
|
|
674
|
+
pageSize?: number;
|
|
675
|
+
sentiment?: string;
|
|
676
|
+
startDate?: string;
|
|
677
|
+
topics?: string;
|
|
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>> & {
|
|
425
679
|
currentData?: import("@iblai/iblai-api").PaginatedConversationsList | undefined;
|
|
426
680
|
isUninitialized: false;
|
|
427
681
|
isLoading: false;
|
|
@@ -436,7 +690,17 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
436
690
|
isSuccess: true;
|
|
437
691
|
isFetching: true;
|
|
438
692
|
error: undefined;
|
|
439
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
693
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
694
|
+
org: string;
|
|
695
|
+
endDate?: string;
|
|
696
|
+
filterUserId?: string;
|
|
697
|
+
mentor?: string;
|
|
698
|
+
page?: number;
|
|
699
|
+
pageSize?: number;
|
|
700
|
+
sentiment?: string;
|
|
701
|
+
startDate?: string;
|
|
702
|
+
topics?: string;
|
|
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>> & {
|
|
440
704
|
currentData?: import("@iblai/iblai-api").PaginatedConversationsList | undefined;
|
|
441
705
|
isUninitialized: false;
|
|
442
706
|
isLoading: false;
|
|
@@ -447,7 +711,17 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
447
711
|
isSuccess: true;
|
|
448
712
|
isFetching: false;
|
|
449
713
|
error: undefined;
|
|
450
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
714
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
715
|
+
org: string;
|
|
716
|
+
endDate?: string;
|
|
717
|
+
filterUserId?: string;
|
|
718
|
+
mentor?: string;
|
|
719
|
+
page?: number;
|
|
720
|
+
pageSize?: number;
|
|
721
|
+
sentiment?: string;
|
|
722
|
+
startDate?: string;
|
|
723
|
+
topics?: string;
|
|
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>> & {
|
|
451
725
|
currentData?: import("@iblai/iblai-api").PaginatedConversationsList | undefined;
|
|
452
726
|
isUninitialized: false;
|
|
453
727
|
isLoading: false;
|
|
@@ -456,7 +730,17 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
456
730
|
isError: false;
|
|
457
731
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
458
732
|
isError: true;
|
|
459
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
733
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
734
|
+
org: string;
|
|
735
|
+
endDate?: string;
|
|
736
|
+
filterUserId?: string;
|
|
737
|
+
mentor?: string;
|
|
738
|
+
page?: number;
|
|
739
|
+
pageSize?: number;
|
|
740
|
+
sentiment?: string;
|
|
741
|
+
startDate?: string;
|
|
742
|
+
topics?: string;
|
|
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>> & {
|
|
460
744
|
currentData?: import("@iblai/iblai-api").PaginatedConversationsList | undefined;
|
|
461
745
|
isUninitialized: false;
|
|
462
746
|
isLoading: false;
|
|
@@ -485,7 +769,17 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
485
769
|
isError: false;
|
|
486
770
|
}, "isUninitialized"> & {
|
|
487
771
|
isUninitialized: true;
|
|
488
|
-
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
772
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
773
|
+
org: string;
|
|
774
|
+
endDate?: string;
|
|
775
|
+
filterUserId?: string;
|
|
776
|
+
mentor?: string;
|
|
777
|
+
page?: number;
|
|
778
|
+
pageSize?: number;
|
|
779
|
+
sentiment?: string;
|
|
780
|
+
startDate?: string;
|
|
781
|
+
topics?: string;
|
|
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>> & {
|
|
489
783
|
currentData?: import("@iblai/iblai-api").PaginatedConversationsList | undefined;
|
|
490
784
|
isUninitialized: false;
|
|
491
785
|
isLoading: false;
|
|
@@ -500,7 +794,17 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
500
794
|
isSuccess: true;
|
|
501
795
|
isFetching: true;
|
|
502
796
|
error: undefined;
|
|
503
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
797
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
798
|
+
org: string;
|
|
799
|
+
endDate?: string;
|
|
800
|
+
filterUserId?: string;
|
|
801
|
+
mentor?: string;
|
|
802
|
+
page?: number;
|
|
803
|
+
pageSize?: number;
|
|
804
|
+
sentiment?: string;
|
|
805
|
+
startDate?: string;
|
|
806
|
+
topics?: string;
|
|
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>> & {
|
|
504
808
|
currentData?: import("@iblai/iblai-api").PaginatedConversationsList | undefined;
|
|
505
809
|
isUninitialized: false;
|
|
506
810
|
isLoading: false;
|
|
@@ -511,7 +815,17 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
511
815
|
isSuccess: true;
|
|
512
816
|
isFetching: false;
|
|
513
817
|
error: undefined;
|
|
514
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
818
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
819
|
+
org: string;
|
|
820
|
+
endDate?: string;
|
|
821
|
+
filterUserId?: string;
|
|
822
|
+
mentor?: string;
|
|
823
|
+
page?: number;
|
|
824
|
+
pageSize?: number;
|
|
825
|
+
sentiment?: string;
|
|
826
|
+
startDate?: string;
|
|
827
|
+
topics?: string;
|
|
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>> & {
|
|
515
829
|
currentData?: import("@iblai/iblai-api").PaginatedConversationsList | undefined;
|
|
516
830
|
isUninitialized: false;
|
|
517
831
|
isLoading: false;
|
|
@@ -520,7 +834,17 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
520
834
|
isError: false;
|
|
521
835
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
522
836
|
isError: true;
|
|
523
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
837
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
838
|
+
org: string;
|
|
839
|
+
endDate?: string;
|
|
840
|
+
filterUserId?: string;
|
|
841
|
+
mentor?: string;
|
|
842
|
+
page?: number;
|
|
843
|
+
pageSize?: number;
|
|
844
|
+
sentiment?: string;
|
|
845
|
+
startDate?: string;
|
|
846
|
+
topics?: string;
|
|
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>> & {
|
|
524
848
|
currentData?: import("@iblai/iblai-api").PaginatedConversationsList | undefined;
|
|
525
849
|
isUninitialized: false;
|
|
526
850
|
isLoading: false;
|
|
@@ -530,10 +854,40 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
530
854
|
}, "error">>)>> & {
|
|
531
855
|
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
532
856
|
}) => R) | undefined;
|
|
533
|
-
}, "skip">) | undefined) => [(arg:
|
|
857
|
+
}, "skip">) | undefined) => [(arg: {
|
|
858
|
+
org: string;
|
|
859
|
+
endDate?: string;
|
|
860
|
+
filterUserId?: string;
|
|
861
|
+
mentor?: string;
|
|
862
|
+
page?: number;
|
|
863
|
+
pageSize?: number;
|
|
864
|
+
sentiment?: string;
|
|
865
|
+
startDate?: string;
|
|
866
|
+
topics?: string;
|
|
867
|
+
}, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
868
|
+
org: string;
|
|
869
|
+
endDate?: string;
|
|
870
|
+
filterUserId?: string;
|
|
871
|
+
mentor?: string;
|
|
872
|
+
page?: number;
|
|
873
|
+
pageSize?: number;
|
|
874
|
+
sentiment?: string;
|
|
875
|
+
startDate?: string;
|
|
876
|
+
topics?: string;
|
|
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] & {
|
|
534
878
|
reset: () => void;
|
|
535
879
|
}, {
|
|
536
|
-
lastArg:
|
|
880
|
+
lastArg: {
|
|
881
|
+
org: string;
|
|
882
|
+
endDate?: string;
|
|
883
|
+
filterUserId?: string;
|
|
884
|
+
mentor?: string;
|
|
885
|
+
page?: number;
|
|
886
|
+
pageSize?: number;
|
|
887
|
+
sentiment?: string;
|
|
888
|
+
startDate?: string;
|
|
889
|
+
topics?: string;
|
|
890
|
+
};
|
|
537
891
|
}], useExportChatHistoryMutation: <R extends Record<string, any> = ({
|
|
538
892
|
requestId?: undefined;
|
|
539
893
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
@@ -691,8 +1045,17 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
691
1045
|
isError: true;
|
|
692
1046
|
})) => R) | undefined;
|
|
693
1047
|
fixedCacheKey?: string;
|
|
694
|
-
} | undefined) => readonly [(arg:
|
|
695
|
-
|
|
1048
|
+
} | undefined) => readonly [(arg: {
|
|
1049
|
+
key: string;
|
|
1050
|
+
requestBody?: import("@iblai/iblai-api").ReportRequest;
|
|
1051
|
+
}) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
1052
|
+
key: string;
|
|
1053
|
+
requestBody?: import("@iblai/iblai-api").ReportRequest;
|
|
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
|
+
originalArgs?: {
|
|
1056
|
+
key: string;
|
|
1057
|
+
requestBody?: import("@iblai/iblai-api").ReportRequest;
|
|
1058
|
+
} | undefined;
|
|
696
1059
|
reset: () => void;
|
|
697
1060
|
}], useGetChatHistoryExportStatusQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
698
1061
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
@@ -704,11 +1067,7 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
704
1067
|
startedTimeStamp?: undefined | undefined;
|
|
705
1068
|
fulfilledTimeStamp?: undefined | undefined;
|
|
706
1069
|
} & {
|
|
707
|
-
currentData?:
|
|
708
|
-
data: {
|
|
709
|
-
state: string;
|
|
710
|
-
};
|
|
711
|
-
} | undefined;
|
|
1070
|
+
currentData?: import("@iblai/iblai-api").ReportDetail | undefined;
|
|
712
1071
|
isUninitialized: false;
|
|
713
1072
|
isLoading: false;
|
|
714
1073
|
isFetching: false;
|
|
@@ -716,16 +1075,11 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
716
1075
|
isError: false;
|
|
717
1076
|
}, "isUninitialized"> & {
|
|
718
1077
|
isUninitialized: true;
|
|
719
|
-
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
currentData?: {
|
|
725
|
-
data: {
|
|
726
|
-
state: string;
|
|
727
|
-
};
|
|
728
|
-
} | undefined;
|
|
1078
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1079
|
+
key: string;
|
|
1080
|
+
reportName: string;
|
|
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
|
+
currentData?: import("@iblai/iblai-api").ReportDetail | undefined;
|
|
729
1083
|
isUninitialized: false;
|
|
730
1084
|
isLoading: false;
|
|
731
1085
|
isFetching: false;
|
|
@@ -739,16 +1093,11 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
739
1093
|
isSuccess: true;
|
|
740
1094
|
isFetching: true;
|
|
741
1095
|
error: undefined;
|
|
742
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
currentData?: {
|
|
748
|
-
data: {
|
|
749
|
-
state: string;
|
|
750
|
-
};
|
|
751
|
-
} | undefined;
|
|
1096
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1097
|
+
key: string;
|
|
1098
|
+
reportName: string;
|
|
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
|
+
currentData?: import("@iblai/iblai-api").ReportDetail | undefined;
|
|
752
1101
|
isUninitialized: false;
|
|
753
1102
|
isLoading: false;
|
|
754
1103
|
isFetching: false;
|
|
@@ -758,16 +1107,11 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
758
1107
|
isSuccess: true;
|
|
759
1108
|
isFetching: false;
|
|
760
1109
|
error: undefined;
|
|
761
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
currentData?: {
|
|
767
|
-
data: {
|
|
768
|
-
state: string;
|
|
769
|
-
};
|
|
770
|
-
} | undefined;
|
|
1110
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1111
|
+
key: string;
|
|
1112
|
+
reportName: string;
|
|
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
|
+
currentData?: import("@iblai/iblai-api").ReportDetail | undefined;
|
|
771
1115
|
isUninitialized: false;
|
|
772
1116
|
isLoading: false;
|
|
773
1117
|
isFetching: false;
|
|
@@ -775,16 +1119,11 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
775
1119
|
isError: false;
|
|
776
1120
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
777
1121
|
isError: true;
|
|
778
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
currentData?: {
|
|
784
|
-
data: {
|
|
785
|
-
state: string;
|
|
786
|
-
};
|
|
787
|
-
} | undefined;
|
|
1122
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1123
|
+
key: string;
|
|
1124
|
+
reportName: string;
|
|
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
|
+
currentData?: import("@iblai/iblai-api").ReportDetail | undefined;
|
|
788
1127
|
isUninitialized: false;
|
|
789
1128
|
isLoading: false;
|
|
790
1129
|
isFetching: false;
|
|
@@ -792,7 +1131,10 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
792
1131
|
isError: false;
|
|
793
1132
|
}, "error">>)>> & {
|
|
794
1133
|
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
795
|
-
}>(arg:
|
|
1134
|
+
}>(arg: {
|
|
1135
|
+
key: string;
|
|
1136
|
+
reportName: string;
|
|
1137
|
+
} | typeof import("@reduxjs/toolkit/query").skipToken, options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & {
|
|
796
1138
|
skip?: boolean;
|
|
797
1139
|
refetchOnMountOrArgChange?: boolean | number;
|
|
798
1140
|
} & {
|
|
@@ -807,11 +1149,7 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
807
1149
|
startedTimeStamp?: undefined | undefined;
|
|
808
1150
|
fulfilledTimeStamp?: undefined | undefined;
|
|
809
1151
|
} & {
|
|
810
|
-
currentData?:
|
|
811
|
-
data: {
|
|
812
|
-
state: string;
|
|
813
|
-
};
|
|
814
|
-
} | undefined;
|
|
1152
|
+
currentData?: import("@iblai/iblai-api").ReportDetail | undefined;
|
|
815
1153
|
isUninitialized: false;
|
|
816
1154
|
isLoading: false;
|
|
817
1155
|
isFetching: false;
|
|
@@ -819,16 +1157,11 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
819
1157
|
isError: false;
|
|
820
1158
|
}, "isUninitialized"> & {
|
|
821
1159
|
isUninitialized: true;
|
|
822
|
-
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
currentData?: {
|
|
828
|
-
data: {
|
|
829
|
-
state: string;
|
|
830
|
-
};
|
|
831
|
-
} | undefined;
|
|
1160
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1161
|
+
key: string;
|
|
1162
|
+
reportName: string;
|
|
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
|
+
currentData?: import("@iblai/iblai-api").ReportDetail | undefined;
|
|
832
1165
|
isUninitialized: false;
|
|
833
1166
|
isLoading: false;
|
|
834
1167
|
isFetching: false;
|
|
@@ -842,16 +1175,11 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
842
1175
|
isSuccess: true;
|
|
843
1176
|
isFetching: true;
|
|
844
1177
|
error: undefined;
|
|
845
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
currentData?: {
|
|
851
|
-
data: {
|
|
852
|
-
state: string;
|
|
853
|
-
};
|
|
854
|
-
} | undefined;
|
|
1178
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1179
|
+
key: string;
|
|
1180
|
+
reportName: string;
|
|
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
|
+
currentData?: import("@iblai/iblai-api").ReportDetail | undefined;
|
|
855
1183
|
isUninitialized: false;
|
|
856
1184
|
isLoading: false;
|
|
857
1185
|
isFetching: false;
|
|
@@ -861,16 +1189,11 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
861
1189
|
isSuccess: true;
|
|
862
1190
|
isFetching: false;
|
|
863
1191
|
error: undefined;
|
|
864
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
currentData?: {
|
|
870
|
-
data: {
|
|
871
|
-
state: string;
|
|
872
|
-
};
|
|
873
|
-
} | undefined;
|
|
1192
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1193
|
+
key: string;
|
|
1194
|
+
reportName: string;
|
|
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
|
+
currentData?: import("@iblai/iblai-api").ReportDetail | undefined;
|
|
874
1197
|
isUninitialized: false;
|
|
875
1198
|
isLoading: false;
|
|
876
1199
|
isFetching: false;
|
|
@@ -878,16 +1201,11 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
878
1201
|
isError: false;
|
|
879
1202
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
880
1203
|
isError: true;
|
|
881
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
currentData?: {
|
|
887
|
-
data: {
|
|
888
|
-
state: string;
|
|
889
|
-
};
|
|
890
|
-
} | undefined;
|
|
1204
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1205
|
+
key: string;
|
|
1206
|
+
reportName: string;
|
|
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
|
+
currentData?: import("@iblai/iblai-api").ReportDetail | undefined;
|
|
891
1209
|
isUninitialized: false;
|
|
892
1210
|
isLoading: false;
|
|
893
1211
|
isFetching: false;
|
|
@@ -897,11 +1215,10 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
897
1215
|
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
898
1216
|
}) => R) | undefined;
|
|
899
1217
|
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
900
|
-
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
}, "chatHistoryApiSlice", any>>;
|
|
1218
|
+
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1219
|
+
key: string;
|
|
1220
|
+
reportName: string;
|
|
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>>;
|
|
905
1222
|
}, useLazyGetChatHistoryExportStatusQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
906
1223
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
907
1224
|
originalArgs?: undefined | undefined;
|
|
@@ -912,11 +1229,7 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
912
1229
|
startedTimeStamp?: undefined | undefined;
|
|
913
1230
|
fulfilledTimeStamp?: undefined | undefined;
|
|
914
1231
|
} & {
|
|
915
|
-
currentData?:
|
|
916
|
-
data: {
|
|
917
|
-
state: string;
|
|
918
|
-
};
|
|
919
|
-
} | undefined;
|
|
1232
|
+
currentData?: import("@iblai/iblai-api").ReportDetail | undefined;
|
|
920
1233
|
isUninitialized: false;
|
|
921
1234
|
isLoading: false;
|
|
922
1235
|
isFetching: false;
|
|
@@ -924,16 +1237,11 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
924
1237
|
isError: false;
|
|
925
1238
|
}, "isUninitialized"> & {
|
|
926
1239
|
isUninitialized: true;
|
|
927
|
-
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
currentData?: {
|
|
933
|
-
data: {
|
|
934
|
-
state: string;
|
|
935
|
-
};
|
|
936
|
-
} | undefined;
|
|
1240
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1241
|
+
key: string;
|
|
1242
|
+
reportName: string;
|
|
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
|
+
currentData?: import("@iblai/iblai-api").ReportDetail | undefined;
|
|
937
1245
|
isUninitialized: false;
|
|
938
1246
|
isLoading: false;
|
|
939
1247
|
isFetching: false;
|
|
@@ -947,16 +1255,11 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
947
1255
|
isSuccess: true;
|
|
948
1256
|
isFetching: true;
|
|
949
1257
|
error: undefined;
|
|
950
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
currentData?: {
|
|
956
|
-
data: {
|
|
957
|
-
state: string;
|
|
958
|
-
};
|
|
959
|
-
} | undefined;
|
|
1258
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1259
|
+
key: string;
|
|
1260
|
+
reportName: string;
|
|
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
|
+
currentData?: import("@iblai/iblai-api").ReportDetail | undefined;
|
|
960
1263
|
isUninitialized: false;
|
|
961
1264
|
isLoading: false;
|
|
962
1265
|
isFetching: false;
|
|
@@ -966,16 +1269,11 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
966
1269
|
isSuccess: true;
|
|
967
1270
|
isFetching: false;
|
|
968
1271
|
error: undefined;
|
|
969
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
970
|
-
|
|
971
|
-
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
currentData?: {
|
|
975
|
-
data: {
|
|
976
|
-
state: string;
|
|
977
|
-
};
|
|
978
|
-
} | undefined;
|
|
1272
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1273
|
+
key: string;
|
|
1274
|
+
reportName: string;
|
|
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
|
+
currentData?: import("@iblai/iblai-api").ReportDetail | undefined;
|
|
979
1277
|
isUninitialized: false;
|
|
980
1278
|
isLoading: false;
|
|
981
1279
|
isFetching: false;
|
|
@@ -983,16 +1281,11 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
983
1281
|
isError: false;
|
|
984
1282
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
985
1283
|
isError: true;
|
|
986
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
currentData?: {
|
|
992
|
-
data: {
|
|
993
|
-
state: string;
|
|
994
|
-
};
|
|
995
|
-
} | undefined;
|
|
1284
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1285
|
+
key: string;
|
|
1286
|
+
reportName: string;
|
|
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
|
+
currentData?: import("@iblai/iblai-api").ReportDetail | undefined;
|
|
996
1289
|
isUninitialized: false;
|
|
997
1290
|
isLoading: false;
|
|
998
1291
|
isFetching: false;
|
|
@@ -1012,11 +1305,7 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
1012
1305
|
startedTimeStamp?: undefined | undefined;
|
|
1013
1306
|
fulfilledTimeStamp?: undefined | undefined;
|
|
1014
1307
|
} & {
|
|
1015
|
-
currentData?:
|
|
1016
|
-
data: {
|
|
1017
|
-
state: string;
|
|
1018
|
-
};
|
|
1019
|
-
} | undefined;
|
|
1308
|
+
currentData?: import("@iblai/iblai-api").ReportDetail | undefined;
|
|
1020
1309
|
isUninitialized: false;
|
|
1021
1310
|
isLoading: false;
|
|
1022
1311
|
isFetching: false;
|
|
@@ -1024,16 +1313,11 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
1024
1313
|
isError: false;
|
|
1025
1314
|
}, "isUninitialized"> & {
|
|
1026
1315
|
isUninitialized: true;
|
|
1027
|
-
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
1028
|
-
|
|
1029
|
-
|
|
1030
|
-
|
|
1031
|
-
|
|
1032
|
-
currentData?: {
|
|
1033
|
-
data: {
|
|
1034
|
-
state: string;
|
|
1035
|
-
};
|
|
1036
|
-
} | undefined;
|
|
1316
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1317
|
+
key: string;
|
|
1318
|
+
reportName: string;
|
|
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
|
+
currentData?: import("@iblai/iblai-api").ReportDetail | undefined;
|
|
1037
1321
|
isUninitialized: false;
|
|
1038
1322
|
isLoading: false;
|
|
1039
1323
|
isFetching: false;
|
|
@@ -1047,16 +1331,11 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
1047
1331
|
isSuccess: true;
|
|
1048
1332
|
isFetching: true;
|
|
1049
1333
|
error: undefined;
|
|
1050
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
1051
|
-
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
|
-
|
|
1055
|
-
currentData?: {
|
|
1056
|
-
data: {
|
|
1057
|
-
state: string;
|
|
1058
|
-
};
|
|
1059
|
-
} | undefined;
|
|
1334
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1335
|
+
key: string;
|
|
1336
|
+
reportName: string;
|
|
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
|
+
currentData?: import("@iblai/iblai-api").ReportDetail | undefined;
|
|
1060
1339
|
isUninitialized: false;
|
|
1061
1340
|
isLoading: false;
|
|
1062
1341
|
isFetching: false;
|
|
@@ -1066,16 +1345,11 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
1066
1345
|
isSuccess: true;
|
|
1067
1346
|
isFetching: false;
|
|
1068
1347
|
error: undefined;
|
|
1069
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
1070
|
-
|
|
1071
|
-
|
|
1072
|
-
|
|
1073
|
-
|
|
1074
|
-
currentData?: {
|
|
1075
|
-
data: {
|
|
1076
|
-
state: string;
|
|
1077
|
-
};
|
|
1078
|
-
} | undefined;
|
|
1348
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1349
|
+
key: string;
|
|
1350
|
+
reportName: string;
|
|
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
|
+
currentData?: import("@iblai/iblai-api").ReportDetail | undefined;
|
|
1079
1353
|
isUninitialized: false;
|
|
1080
1354
|
isLoading: false;
|
|
1081
1355
|
isFetching: false;
|
|
@@ -1083,16 +1357,11 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
1083
1357
|
isError: false;
|
|
1084
1358
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
1085
1359
|
isError: true;
|
|
1086
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
1087
|
-
|
|
1088
|
-
|
|
1089
|
-
|
|
1090
|
-
|
|
1091
|
-
currentData?: {
|
|
1092
|
-
data: {
|
|
1093
|
-
state: string;
|
|
1094
|
-
};
|
|
1095
|
-
} | undefined;
|
|
1360
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1361
|
+
key: string;
|
|
1362
|
+
reportName: string;
|
|
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
|
+
currentData?: import("@iblai/iblai-api").ReportDetail | undefined;
|
|
1096
1365
|
isUninitialized: false;
|
|
1097
1366
|
isLoading: false;
|
|
1098
1367
|
isFetching: false;
|
|
@@ -1101,12 +1370,17 @@ export declare const useGetChatHistoryFilterQuery: <R extends Record<string, any
|
|
|
1101
1370
|
}, "error">>)>> & {
|
|
1102
1371
|
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
1103
1372
|
}) => R) | undefined;
|
|
1104
|
-
}, "skip">) | undefined) => [(arg:
|
|
1105
|
-
|
|
1106
|
-
|
|
1107
|
-
|
|
1108
|
-
|
|
1373
|
+
}, "skip">) | undefined) => [(arg: {
|
|
1374
|
+
key: string;
|
|
1375
|
+
reportName: string;
|
|
1376
|
+
}, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1377
|
+
key: string;
|
|
1378
|
+
reportName: string;
|
|
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] & {
|
|
1109
1380
|
reset: () => void;
|
|
1110
1381
|
}, {
|
|
1111
|
-
lastArg:
|
|
1382
|
+
lastArg: {
|
|
1383
|
+
key: string;
|
|
1384
|
+
reportName: string;
|
|
1385
|
+
};
|
|
1112
1386
|
}];
|