@iblai/data-layer 0.2.0 → 0.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +41476 -15632
- package/dist/index.esm.js +6764 -1863
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +6947 -1859
- package/dist/index.js.map +1 -1
- package/dist/package.json +19 -17
- package/dist/src/__tests__/constants.test.d.ts +1 -0
- package/dist/src/core/index.d.ts +2 -1
- package/dist/src/features/analytics/api-slice.d.ts +1879 -122
- package/dist/src/features/analytics/constants.d.ts +56 -1
- package/dist/src/features/analytics/types.d.ts +327 -1
- package/dist/src/features/api-keys/api-slice.d.ts +25 -36
- package/dist/src/features/apps/api-slice.d.ts +25 -36
- package/dist/src/features/auth/api-slice.d.ts +504 -2
- package/dist/src/features/auth/constants.d.ts +13 -1
- package/dist/src/features/auth/types.d.ts +20 -0
- package/dist/src/features/billing/api-slice.d.ts +5 -5
- package/dist/src/features/career/api-slice.d.ts +2345 -180
- package/dist/src/features/catalog/api-slice.d.ts +2260 -244
- package/dist/src/features/chat/api-slice.d.ts +68 -68
- package/dist/src/features/chat-files/api-slice.d.ts +185 -0
- package/dist/src/features/chat-files/types.d.ts +32 -0
- package/dist/src/features/chat-history/api-slice.d.ts +60 -60
- package/dist/src/features/core/api-slice.d.ts +3793 -26
- package/dist/src/features/core/constants.d.ts +43 -0
- package/dist/src/features/core/custom-api-slice.d.ts +1458 -0
- package/dist/src/features/core/custom-public-image-asset-api-slice.d.ts +333 -0
- package/dist/src/features/core/types.d.ts +60 -0
- package/dist/src/features/credentials/api-slice.d.ts +766 -105
- package/dist/src/features/custom-domain/api-slice.d.ts +602 -0
- package/dist/src/features/custom-domain/constants.d.ts +20 -0
- package/dist/src/features/custom-domain/types.d.ts +46 -0
- package/dist/src/features/datasets/api-slice.d.ts +22 -22
- package/dist/src/features/disclaimers/api-slice.d.ts +912 -0
- package/dist/src/features/disclaimers/constants.d.ts +27 -0
- package/dist/src/features/disclaimers/index.d.ts +3 -0
- package/dist/src/features/disclaimers/types.d.ts +67 -0
- package/dist/src/features/edx-proctoring/api-slice.d.ts +590 -0
- package/dist/src/features/edx-proctoring/constants.d.ts +15 -0
- package/dist/src/features/edx-proctoring/types.d.ts +61 -0
- package/dist/src/features/llms/api-slice.d.ts +20 -20
- package/dist/src/features/memory/api-slice.d.ts +1437 -530
- package/dist/src/features/memory/constants.d.ts +50 -0
- package/dist/src/features/memory/index.d.ts +3 -0
- package/dist/src/features/memory/types.d.ts +122 -0
- package/dist/src/features/mentor/api-slice.d.ts +1738 -240
- package/dist/src/features/mentor/constants.d.ts +8 -0
- package/dist/src/features/mentor/custom-api-slice.d.ts +529 -1
- package/dist/src/features/mentor/types.d.ts +39 -0
- package/dist/src/features/mentor-categories/api-slice.d.ts +416 -20
- package/dist/src/features/notifications/api-slice.d.ts +696 -42
- package/dist/src/features/notifications/constants.d.ts +26 -0
- package/dist/src/features/notifications/custom-api-slice.d.ts +996 -0
- package/dist/src/features/notifications/types.d.ts +69 -0
- package/dist/src/features/per-learner/api-slice.d.ts +58 -58
- package/dist/src/features/platform/api-slice.d.ts +321 -167
- package/dist/src/features/platform/constants.d.ts +17 -0
- package/dist/src/features/platform/custom-api-slice.d.ts +493 -0
- package/dist/src/features/platform/types.d.ts +48 -0
- package/dist/src/features/projects/api-slice.d.ts +2026 -0
- package/dist/src/features/projects/constants.d.ts +51 -0
- package/dist/src/features/projects/types.d.ts +79 -0
- package/dist/src/features/prompts/api-slice.d.ts +105 -83
- package/dist/src/features/reports/api-slice.d.ts +814 -0
- package/dist/src/features/search/ai-search-api-slice.d.ts +1015 -0
- package/dist/src/features/search/api-slice.d.ts +39 -39
- package/dist/src/features/search/constants.d.ts +31 -0
- package/dist/src/features/search/types.d.ts +89 -0
- package/dist/src/features/sessions/api-slice.d.ts +24 -24
- package/dist/src/features/skills/api-slice.d.ts +77 -77
- package/dist/src/features/stripe/api-slice.d.ts +201 -40
- package/dist/src/features/stripe/constants.d.ts +5 -1
- package/dist/src/features/stripe/types.d.ts +10 -0
- package/dist/src/features/tenant/api-slice.d.ts +43 -52
- package/dist/src/features/tenant/types.d.ts +1 -0
- package/dist/src/features/tools/api-slice.d.ts +64 -20
- package/dist/src/features/training-documents/api-slice.d.ts +534 -27
- package/dist/src/features/user/api-slice.d.ts +124 -124
- package/dist/src/features/user/constants.d.ts +3 -1
- package/dist/src/features/user-invitations/api-slice.d.ts +22 -22
- package/dist/src/features/utils.d.ts +8 -5
- package/dist/src/index.d.ts +78 -47
- package/dist/src/reducers/skills.d.ts +2 -1128
- package/dist/src/services/StorageService.d.ts +1 -1
- package/dist/tests/setupTests.d.ts +1 -1
- package/package.json +16 -13
|
@@ -1,25 +1,34 @@
|
|
|
1
|
-
export declare const trainingDocumentsApiSlice: import("@reduxjs/toolkit/query").Api<import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1
|
+
export declare const trainingDocumentsApiSlice: 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
|
getTrainingDocuments: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3
3
|
org: string;
|
|
4
4
|
pathway: string;
|
|
5
5
|
limit?: number;
|
|
6
6
|
offset?: number;
|
|
7
7
|
search?: 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, {}>, "trainingDocuments" | "retrainSchedule", import("@iblai/iblai-api").PaginatedRetrieverDocumentEmbeddingList, "trainingDocumentsApiSlice", any>;
|
|
9
9
|
addTrainingDocument: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
10
10
|
org: string;
|
|
11
11
|
formData: import("@iblai/iblai-api").TrainDocumentViewRequest;
|
|
12
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
12
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "trainingDocuments" | "retrainSchedule", import("@iblai/iblai-api").TrainDocumentViewResponse, "trainingDocumentsApiSlice", any>;
|
|
13
13
|
editTrainingDocument: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
14
14
|
documentId: string;
|
|
15
15
|
org: string;
|
|
16
16
|
formData: import("@iblai/iblai-api").RetrieverDocumentEmbeddingRequest;
|
|
17
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
17
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "trainingDocuments" | "retrainSchedule", import("@iblai/iblai-api").RetrieverDocumentEmbedding, "trainingDocumentsApiSlice", any>;
|
|
18
18
|
deleteTrainingDocument: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
19
19
|
documentId: string;
|
|
20
20
|
org: string;
|
|
21
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
22
|
-
|
|
21
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "trainingDocuments" | "retrainSchedule", void, "trainingDocumentsApiSlice", any>;
|
|
22
|
+
getTrainingDocumentRetrainSchedule: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
23
|
+
documentId: string;
|
|
24
|
+
org: string;
|
|
25
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "trainingDocuments" | "retrainSchedule", import("@iblai/iblai-api").DocumentSettingsResponse, "trainingDocumentsApiSlice", any>;
|
|
26
|
+
createTrainingDocumentRetrainSchedule: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
27
|
+
documentId: string;
|
|
28
|
+
org: string;
|
|
29
|
+
requestBody?: import("@iblai/iblai-api").DocumentSettingsResponse;
|
|
30
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "trainingDocuments" | "retrainSchedule", import("@iblai/iblai-api").DocumentSettingsResponse, "trainingDocumentsApiSlice", any>;
|
|
31
|
+
}, "trainingDocumentsApiSlice", "trainingDocuments" | "retrainSchedule", typeof import("@reduxjs/toolkit/query").coreModuleName | typeof import("@reduxjs/toolkit/dist/query/react").reactHooksModuleName>;
|
|
23
32
|
export declare const useGetTrainingDocumentsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
24
33
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
25
34
|
originalArgs?: undefined | undefined;
|
|
@@ -44,7 +53,7 @@ export declare const useGetTrainingDocumentsQuery: <R extends Record<string, any
|
|
|
44
53
|
limit?: number;
|
|
45
54
|
offset?: number;
|
|
46
55
|
search?: string;
|
|
47
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
56
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "trainingDocuments" | "retrainSchedule", import("@iblai/iblai-api").PaginatedRetrieverDocumentEmbeddingList, "trainingDocumentsApiSlice", any>> & {
|
|
48
57
|
currentData?: import("@iblai/iblai-api").PaginatedRetrieverDocumentEmbeddingList | undefined;
|
|
49
58
|
isUninitialized: false;
|
|
50
59
|
isLoading: false;
|
|
@@ -65,7 +74,7 @@ export declare const useGetTrainingDocumentsQuery: <R extends Record<string, any
|
|
|
65
74
|
limit?: number;
|
|
66
75
|
offset?: number;
|
|
67
76
|
search?: string;
|
|
68
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
77
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "trainingDocuments" | "retrainSchedule", import("@iblai/iblai-api").PaginatedRetrieverDocumentEmbeddingList, "trainingDocumentsApiSlice", any>> & {
|
|
69
78
|
currentData?: import("@iblai/iblai-api").PaginatedRetrieverDocumentEmbeddingList | undefined;
|
|
70
79
|
isUninitialized: false;
|
|
71
80
|
isLoading: false;
|
|
@@ -82,7 +91,7 @@ export declare const useGetTrainingDocumentsQuery: <R extends Record<string, any
|
|
|
82
91
|
limit?: number;
|
|
83
92
|
offset?: number;
|
|
84
93
|
search?: string;
|
|
85
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
94
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "trainingDocuments" | "retrainSchedule", import("@iblai/iblai-api").PaginatedRetrieverDocumentEmbeddingList, "trainingDocumentsApiSlice", any>> & {
|
|
86
95
|
currentData?: import("@iblai/iblai-api").PaginatedRetrieverDocumentEmbeddingList | undefined;
|
|
87
96
|
isUninitialized: false;
|
|
88
97
|
isLoading: false;
|
|
@@ -97,7 +106,7 @@ export declare const useGetTrainingDocumentsQuery: <R extends Record<string, any
|
|
|
97
106
|
limit?: number;
|
|
98
107
|
offset?: number;
|
|
99
108
|
search?: string;
|
|
100
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
109
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "trainingDocuments" | "retrainSchedule", import("@iblai/iblai-api").PaginatedRetrieverDocumentEmbeddingList, "trainingDocumentsApiSlice", any>> & {
|
|
101
110
|
currentData?: import("@iblai/iblai-api").PaginatedRetrieverDocumentEmbeddingList | undefined;
|
|
102
111
|
isUninitialized: false;
|
|
103
112
|
isLoading: false;
|
|
@@ -141,7 +150,7 @@ export declare const useGetTrainingDocumentsQuery: <R extends Record<string, any
|
|
|
141
150
|
limit?: number;
|
|
142
151
|
offset?: number;
|
|
143
152
|
search?: string;
|
|
144
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
153
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "trainingDocuments" | "retrainSchedule", import("@iblai/iblai-api").PaginatedRetrieverDocumentEmbeddingList, "trainingDocumentsApiSlice", any>> & {
|
|
145
154
|
currentData?: import("@iblai/iblai-api").PaginatedRetrieverDocumentEmbeddingList | undefined;
|
|
146
155
|
isUninitialized: false;
|
|
147
156
|
isLoading: false;
|
|
@@ -162,7 +171,7 @@ export declare const useGetTrainingDocumentsQuery: <R extends Record<string, any
|
|
|
162
171
|
limit?: number;
|
|
163
172
|
offset?: number;
|
|
164
173
|
search?: string;
|
|
165
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
174
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "trainingDocuments" | "retrainSchedule", import("@iblai/iblai-api").PaginatedRetrieverDocumentEmbeddingList, "trainingDocumentsApiSlice", any>> & {
|
|
166
175
|
currentData?: import("@iblai/iblai-api").PaginatedRetrieverDocumentEmbeddingList | undefined;
|
|
167
176
|
isUninitialized: false;
|
|
168
177
|
isLoading: false;
|
|
@@ -179,7 +188,7 @@ export declare const useGetTrainingDocumentsQuery: <R extends Record<string, any
|
|
|
179
188
|
limit?: number;
|
|
180
189
|
offset?: number;
|
|
181
190
|
search?: string;
|
|
182
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
191
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "trainingDocuments" | "retrainSchedule", import("@iblai/iblai-api").PaginatedRetrieverDocumentEmbeddingList, "trainingDocumentsApiSlice", any>> & {
|
|
183
192
|
currentData?: import("@iblai/iblai-api").PaginatedRetrieverDocumentEmbeddingList | undefined;
|
|
184
193
|
isUninitialized: false;
|
|
185
194
|
isLoading: false;
|
|
@@ -194,7 +203,7 @@ export declare const useGetTrainingDocumentsQuery: <R extends Record<string, any
|
|
|
194
203
|
limit?: number;
|
|
195
204
|
offset?: number;
|
|
196
205
|
search?: string;
|
|
197
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
206
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "trainingDocuments" | "retrainSchedule", import("@iblai/iblai-api").PaginatedRetrieverDocumentEmbeddingList, "trainingDocumentsApiSlice", any>> & {
|
|
198
207
|
currentData?: import("@iblai/iblai-api").PaginatedRetrieverDocumentEmbeddingList | undefined;
|
|
199
208
|
isUninitialized: false;
|
|
200
209
|
isLoading: false;
|
|
@@ -211,7 +220,7 @@ export declare const useGetTrainingDocumentsQuery: <R extends Record<string, any
|
|
|
211
220
|
limit?: number;
|
|
212
221
|
offset?: number;
|
|
213
222
|
search?: string;
|
|
214
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
223
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "trainingDocuments" | "retrainSchedule", import("@iblai/iblai-api").PaginatedRetrieverDocumentEmbeddingList, "trainingDocumentsApiSlice", any>>;
|
|
215
224
|
}, useLazyGetTrainingDocumentsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
216
225
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
217
226
|
originalArgs?: undefined | undefined;
|
|
@@ -236,7 +245,7 @@ export declare const useGetTrainingDocumentsQuery: <R extends Record<string, any
|
|
|
236
245
|
limit?: number;
|
|
237
246
|
offset?: number;
|
|
238
247
|
search?: string;
|
|
239
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
248
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "trainingDocuments" | "retrainSchedule", import("@iblai/iblai-api").PaginatedRetrieverDocumentEmbeddingList, "trainingDocumentsApiSlice", any>> & {
|
|
240
249
|
currentData?: import("@iblai/iblai-api").PaginatedRetrieverDocumentEmbeddingList | undefined;
|
|
241
250
|
isUninitialized: false;
|
|
242
251
|
isLoading: false;
|
|
@@ -257,7 +266,7 @@ export declare const useGetTrainingDocumentsQuery: <R extends Record<string, any
|
|
|
257
266
|
limit?: number;
|
|
258
267
|
offset?: number;
|
|
259
268
|
search?: string;
|
|
260
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
269
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "trainingDocuments" | "retrainSchedule", import("@iblai/iblai-api").PaginatedRetrieverDocumentEmbeddingList, "trainingDocumentsApiSlice", any>> & {
|
|
261
270
|
currentData?: import("@iblai/iblai-api").PaginatedRetrieverDocumentEmbeddingList | undefined;
|
|
262
271
|
isUninitialized: false;
|
|
263
272
|
isLoading: false;
|
|
@@ -274,7 +283,7 @@ export declare const useGetTrainingDocumentsQuery: <R extends Record<string, any
|
|
|
274
283
|
limit?: number;
|
|
275
284
|
offset?: number;
|
|
276
285
|
search?: string;
|
|
277
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
286
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "trainingDocuments" | "retrainSchedule", import("@iblai/iblai-api").PaginatedRetrieverDocumentEmbeddingList, "trainingDocumentsApiSlice", any>> & {
|
|
278
287
|
currentData?: import("@iblai/iblai-api").PaginatedRetrieverDocumentEmbeddingList | undefined;
|
|
279
288
|
isUninitialized: false;
|
|
280
289
|
isLoading: false;
|
|
@@ -289,7 +298,7 @@ export declare const useGetTrainingDocumentsQuery: <R extends Record<string, any
|
|
|
289
298
|
limit?: number;
|
|
290
299
|
offset?: number;
|
|
291
300
|
search?: string;
|
|
292
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
301
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "trainingDocuments" | "retrainSchedule", import("@iblai/iblai-api").PaginatedRetrieverDocumentEmbeddingList, "trainingDocumentsApiSlice", any>> & {
|
|
293
302
|
currentData?: import("@iblai/iblai-api").PaginatedRetrieverDocumentEmbeddingList | undefined;
|
|
294
303
|
isUninitialized: false;
|
|
295
304
|
isLoading: false;
|
|
@@ -324,7 +333,7 @@ export declare const useGetTrainingDocumentsQuery: <R extends Record<string, any
|
|
|
324
333
|
limit?: number;
|
|
325
334
|
offset?: number;
|
|
326
335
|
search?: string;
|
|
327
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
336
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "trainingDocuments" | "retrainSchedule", import("@iblai/iblai-api").PaginatedRetrieverDocumentEmbeddingList, "trainingDocumentsApiSlice", any>> & {
|
|
328
337
|
currentData?: import("@iblai/iblai-api").PaginatedRetrieverDocumentEmbeddingList | undefined;
|
|
329
338
|
isUninitialized: false;
|
|
330
339
|
isLoading: false;
|
|
@@ -345,7 +354,7 @@ export declare const useGetTrainingDocumentsQuery: <R extends Record<string, any
|
|
|
345
354
|
limit?: number;
|
|
346
355
|
offset?: number;
|
|
347
356
|
search?: string;
|
|
348
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
357
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "trainingDocuments" | "retrainSchedule", import("@iblai/iblai-api").PaginatedRetrieverDocumentEmbeddingList, "trainingDocumentsApiSlice", any>> & {
|
|
349
358
|
currentData?: import("@iblai/iblai-api").PaginatedRetrieverDocumentEmbeddingList | undefined;
|
|
350
359
|
isUninitialized: false;
|
|
351
360
|
isLoading: false;
|
|
@@ -362,7 +371,7 @@ export declare const useGetTrainingDocumentsQuery: <R extends Record<string, any
|
|
|
362
371
|
limit?: number;
|
|
363
372
|
offset?: number;
|
|
364
373
|
search?: string;
|
|
365
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
374
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "trainingDocuments" | "retrainSchedule", import("@iblai/iblai-api").PaginatedRetrieverDocumentEmbeddingList, "trainingDocumentsApiSlice", any>> & {
|
|
366
375
|
currentData?: import("@iblai/iblai-api").PaginatedRetrieverDocumentEmbeddingList | undefined;
|
|
367
376
|
isUninitialized: false;
|
|
368
377
|
isLoading: false;
|
|
@@ -377,7 +386,7 @@ export declare const useGetTrainingDocumentsQuery: <R extends Record<string, any
|
|
|
377
386
|
limit?: number;
|
|
378
387
|
offset?: number;
|
|
379
388
|
search?: string;
|
|
380
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
389
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "trainingDocuments" | "retrainSchedule", import("@iblai/iblai-api").PaginatedRetrieverDocumentEmbeddingList, "trainingDocumentsApiSlice", any>> & {
|
|
381
390
|
currentData?: import("@iblai/iblai-api").PaginatedRetrieverDocumentEmbeddingList | undefined;
|
|
382
391
|
isUninitialized: false;
|
|
383
392
|
isLoading: false;
|
|
@@ -399,7 +408,7 @@ export declare const useGetTrainingDocumentsQuery: <R extends Record<string, any
|
|
|
399
408
|
limit?: number;
|
|
400
409
|
offset?: number;
|
|
401
410
|
search?: string;
|
|
402
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
411
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "trainingDocuments" | "retrainSchedule", import("@iblai/iblai-api").PaginatedRetrieverDocumentEmbeddingList, "trainingDocumentsApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
403
412
|
reset: () => void;
|
|
404
413
|
}, {
|
|
405
414
|
lastArg: {
|
|
@@ -572,7 +581,7 @@ export declare const useGetTrainingDocumentsQuery: <R extends Record<string, any
|
|
|
572
581
|
}) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
573
582
|
org: string;
|
|
574
583
|
formData: import("@iblai/iblai-api").TrainDocumentViewRequest;
|
|
575
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
584
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "trainingDocuments" | "retrainSchedule", import("@iblai/iblai-api").TrainDocumentViewResponse, "trainingDocumentsApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
576
585
|
originalArgs?: {
|
|
577
586
|
org: string;
|
|
578
587
|
formData: import("@iblai/iblai-api").TrainDocumentViewRequest;
|
|
@@ -743,7 +752,7 @@ export declare const useGetTrainingDocumentsQuery: <R extends Record<string, any
|
|
|
743
752
|
documentId: string;
|
|
744
753
|
org: string;
|
|
745
754
|
formData: import("@iblai/iblai-api").RetrieverDocumentEmbeddingRequest;
|
|
746
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
755
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "trainingDocuments" | "retrainSchedule", import("@iblai/iblai-api").RetrieverDocumentEmbedding, "trainingDocumentsApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
747
756
|
originalArgs?: {
|
|
748
757
|
documentId: string;
|
|
749
758
|
org: string;
|
|
@@ -913,10 +922,508 @@ export declare const useGetTrainingDocumentsQuery: <R extends Record<string, any
|
|
|
913
922
|
}) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
914
923
|
documentId: string;
|
|
915
924
|
org: string;
|
|
916
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
925
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "trainingDocuments" | "retrainSchedule", void, "trainingDocumentsApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
926
|
+
originalArgs?: {
|
|
927
|
+
documentId: string;
|
|
928
|
+
org: string;
|
|
929
|
+
} | undefined;
|
|
930
|
+
reset: () => void;
|
|
931
|
+
}], useGetTrainingDocumentRetrainScheduleQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
932
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
933
|
+
originalArgs?: undefined | undefined;
|
|
934
|
+
data?: undefined | undefined;
|
|
935
|
+
error?: undefined | undefined;
|
|
936
|
+
requestId?: undefined | undefined;
|
|
937
|
+
endpointName?: string | undefined;
|
|
938
|
+
startedTimeStamp?: undefined | undefined;
|
|
939
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
940
|
+
} & {
|
|
941
|
+
currentData?: import("@iblai/iblai-api").DocumentSettingsResponse | undefined;
|
|
942
|
+
isUninitialized: false;
|
|
943
|
+
isLoading: false;
|
|
944
|
+
isFetching: false;
|
|
945
|
+
isSuccess: false;
|
|
946
|
+
isError: false;
|
|
947
|
+
}, "isUninitialized"> & {
|
|
948
|
+
isUninitialized: true;
|
|
949
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
950
|
+
documentId: string;
|
|
951
|
+
org: string;
|
|
952
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "trainingDocuments" | "retrainSchedule", import("@iblai/iblai-api").DocumentSettingsResponse, "trainingDocumentsApiSlice", any>> & {
|
|
953
|
+
currentData?: import("@iblai/iblai-api").DocumentSettingsResponse | undefined;
|
|
954
|
+
isUninitialized: false;
|
|
955
|
+
isLoading: false;
|
|
956
|
+
isFetching: false;
|
|
957
|
+
isSuccess: false;
|
|
958
|
+
isError: false;
|
|
959
|
+
}, {
|
|
960
|
+
isLoading: true;
|
|
961
|
+
isFetching: boolean;
|
|
962
|
+
data: undefined;
|
|
963
|
+
} | ({
|
|
964
|
+
isSuccess: true;
|
|
965
|
+
isFetching: true;
|
|
966
|
+
error: undefined;
|
|
967
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
968
|
+
documentId: string;
|
|
969
|
+
org: string;
|
|
970
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "trainingDocuments" | "retrainSchedule", import("@iblai/iblai-api").DocumentSettingsResponse, "trainingDocumentsApiSlice", any>> & {
|
|
971
|
+
currentData?: import("@iblai/iblai-api").DocumentSettingsResponse | undefined;
|
|
972
|
+
isUninitialized: false;
|
|
973
|
+
isLoading: false;
|
|
974
|
+
isFetching: false;
|
|
975
|
+
isSuccess: false;
|
|
976
|
+
isError: false;
|
|
977
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
978
|
+
isSuccess: true;
|
|
979
|
+
isFetching: false;
|
|
980
|
+
error: undefined;
|
|
981
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
982
|
+
documentId: string;
|
|
983
|
+
org: string;
|
|
984
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "trainingDocuments" | "retrainSchedule", import("@iblai/iblai-api").DocumentSettingsResponse, "trainingDocumentsApiSlice", any>> & {
|
|
985
|
+
currentData?: import("@iblai/iblai-api").DocumentSettingsResponse | undefined;
|
|
986
|
+
isUninitialized: false;
|
|
987
|
+
isLoading: false;
|
|
988
|
+
isFetching: false;
|
|
989
|
+
isSuccess: false;
|
|
990
|
+
isError: false;
|
|
991
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
992
|
+
isError: true;
|
|
993
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
994
|
+
documentId: string;
|
|
995
|
+
org: string;
|
|
996
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "trainingDocuments" | "retrainSchedule", import("@iblai/iblai-api").DocumentSettingsResponse, "trainingDocumentsApiSlice", any>> & {
|
|
997
|
+
currentData?: import("@iblai/iblai-api").DocumentSettingsResponse | undefined;
|
|
998
|
+
isUninitialized: false;
|
|
999
|
+
isLoading: false;
|
|
1000
|
+
isFetching: false;
|
|
1001
|
+
isSuccess: false;
|
|
1002
|
+
isError: false;
|
|
1003
|
+
}, "error">>)>> & {
|
|
1004
|
+
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
1005
|
+
}>(arg: {
|
|
1006
|
+
documentId: string;
|
|
1007
|
+
org: string;
|
|
1008
|
+
} | typeof import("@reduxjs/toolkit/query").skipToken, options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & {
|
|
1009
|
+
skip?: boolean;
|
|
1010
|
+
refetchOnMountOrArgChange?: boolean | number;
|
|
1011
|
+
} & {
|
|
1012
|
+
skip?: boolean;
|
|
1013
|
+
selectFromResult?: ((state: import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
1014
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1015
|
+
originalArgs?: undefined | undefined;
|
|
1016
|
+
data?: undefined | undefined;
|
|
1017
|
+
error?: undefined | undefined;
|
|
1018
|
+
requestId?: undefined | undefined;
|
|
1019
|
+
endpointName?: string | undefined;
|
|
1020
|
+
startedTimeStamp?: undefined | undefined;
|
|
1021
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
1022
|
+
} & {
|
|
1023
|
+
currentData?: import("@iblai/iblai-api").DocumentSettingsResponse | undefined;
|
|
1024
|
+
isUninitialized: false;
|
|
1025
|
+
isLoading: false;
|
|
1026
|
+
isFetching: false;
|
|
1027
|
+
isSuccess: false;
|
|
1028
|
+
isError: false;
|
|
1029
|
+
}, "isUninitialized"> & {
|
|
1030
|
+
isUninitialized: true;
|
|
1031
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1032
|
+
documentId: string;
|
|
1033
|
+
org: string;
|
|
1034
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "trainingDocuments" | "retrainSchedule", import("@iblai/iblai-api").DocumentSettingsResponse, "trainingDocumentsApiSlice", any>> & {
|
|
1035
|
+
currentData?: import("@iblai/iblai-api").DocumentSettingsResponse | undefined;
|
|
1036
|
+
isUninitialized: false;
|
|
1037
|
+
isLoading: false;
|
|
1038
|
+
isFetching: false;
|
|
1039
|
+
isSuccess: false;
|
|
1040
|
+
isError: false;
|
|
1041
|
+
}, {
|
|
1042
|
+
isLoading: true;
|
|
1043
|
+
isFetching: boolean;
|
|
1044
|
+
data: undefined;
|
|
1045
|
+
} | ({
|
|
1046
|
+
isSuccess: true;
|
|
1047
|
+
isFetching: true;
|
|
1048
|
+
error: undefined;
|
|
1049
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1050
|
+
documentId: string;
|
|
1051
|
+
org: string;
|
|
1052
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "trainingDocuments" | "retrainSchedule", import("@iblai/iblai-api").DocumentSettingsResponse, "trainingDocumentsApiSlice", any>> & {
|
|
1053
|
+
currentData?: import("@iblai/iblai-api").DocumentSettingsResponse | undefined;
|
|
1054
|
+
isUninitialized: false;
|
|
1055
|
+
isLoading: false;
|
|
1056
|
+
isFetching: false;
|
|
1057
|
+
isSuccess: false;
|
|
1058
|
+
isError: false;
|
|
1059
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
1060
|
+
isSuccess: true;
|
|
1061
|
+
isFetching: false;
|
|
1062
|
+
error: undefined;
|
|
1063
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1064
|
+
documentId: string;
|
|
1065
|
+
org: string;
|
|
1066
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "trainingDocuments" | "retrainSchedule", import("@iblai/iblai-api").DocumentSettingsResponse, "trainingDocumentsApiSlice", any>> & {
|
|
1067
|
+
currentData?: import("@iblai/iblai-api").DocumentSettingsResponse | undefined;
|
|
1068
|
+
isUninitialized: false;
|
|
1069
|
+
isLoading: false;
|
|
1070
|
+
isFetching: false;
|
|
1071
|
+
isSuccess: false;
|
|
1072
|
+
isError: false;
|
|
1073
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
1074
|
+
isError: true;
|
|
1075
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1076
|
+
documentId: string;
|
|
1077
|
+
org: string;
|
|
1078
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "trainingDocuments" | "retrainSchedule", import("@iblai/iblai-api").DocumentSettingsResponse, "trainingDocumentsApiSlice", any>> & {
|
|
1079
|
+
currentData?: import("@iblai/iblai-api").DocumentSettingsResponse | undefined;
|
|
1080
|
+
isUninitialized: false;
|
|
1081
|
+
isLoading: false;
|
|
1082
|
+
isFetching: false;
|
|
1083
|
+
isSuccess: false;
|
|
1084
|
+
isError: false;
|
|
1085
|
+
}, "error">>)>> & {
|
|
1086
|
+
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
1087
|
+
}) => R) | undefined;
|
|
1088
|
+
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
1089
|
+
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1090
|
+
documentId: string;
|
|
1091
|
+
org: string;
|
|
1092
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "trainingDocuments" | "retrainSchedule", import("@iblai/iblai-api").DocumentSettingsResponse, "trainingDocumentsApiSlice", any>>;
|
|
1093
|
+
}, useLazyGetTrainingDocumentRetrainScheduleQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
1094
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1095
|
+
originalArgs?: undefined | undefined;
|
|
1096
|
+
data?: undefined | undefined;
|
|
1097
|
+
error?: undefined | undefined;
|
|
1098
|
+
requestId?: undefined | undefined;
|
|
1099
|
+
endpointName?: string | undefined;
|
|
1100
|
+
startedTimeStamp?: undefined | undefined;
|
|
1101
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
1102
|
+
} & {
|
|
1103
|
+
currentData?: import("@iblai/iblai-api").DocumentSettingsResponse | undefined;
|
|
1104
|
+
isUninitialized: false;
|
|
1105
|
+
isLoading: false;
|
|
1106
|
+
isFetching: false;
|
|
1107
|
+
isSuccess: false;
|
|
1108
|
+
isError: false;
|
|
1109
|
+
}, "isUninitialized"> & {
|
|
1110
|
+
isUninitialized: true;
|
|
1111
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1112
|
+
documentId: string;
|
|
1113
|
+
org: string;
|
|
1114
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "trainingDocuments" | "retrainSchedule", import("@iblai/iblai-api").DocumentSettingsResponse, "trainingDocumentsApiSlice", any>> & {
|
|
1115
|
+
currentData?: import("@iblai/iblai-api").DocumentSettingsResponse | undefined;
|
|
1116
|
+
isUninitialized: false;
|
|
1117
|
+
isLoading: false;
|
|
1118
|
+
isFetching: false;
|
|
1119
|
+
isSuccess: false;
|
|
1120
|
+
isError: false;
|
|
1121
|
+
}, {
|
|
1122
|
+
isLoading: true;
|
|
1123
|
+
isFetching: boolean;
|
|
1124
|
+
data: undefined;
|
|
1125
|
+
} | ({
|
|
1126
|
+
isSuccess: true;
|
|
1127
|
+
isFetching: true;
|
|
1128
|
+
error: undefined;
|
|
1129
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1130
|
+
documentId: string;
|
|
1131
|
+
org: string;
|
|
1132
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "trainingDocuments" | "retrainSchedule", import("@iblai/iblai-api").DocumentSettingsResponse, "trainingDocumentsApiSlice", any>> & {
|
|
1133
|
+
currentData?: import("@iblai/iblai-api").DocumentSettingsResponse | undefined;
|
|
1134
|
+
isUninitialized: false;
|
|
1135
|
+
isLoading: false;
|
|
1136
|
+
isFetching: false;
|
|
1137
|
+
isSuccess: false;
|
|
1138
|
+
isError: false;
|
|
1139
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
1140
|
+
isSuccess: true;
|
|
1141
|
+
isFetching: false;
|
|
1142
|
+
error: undefined;
|
|
1143
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1144
|
+
documentId: string;
|
|
1145
|
+
org: string;
|
|
1146
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "trainingDocuments" | "retrainSchedule", import("@iblai/iblai-api").DocumentSettingsResponse, "trainingDocumentsApiSlice", any>> & {
|
|
1147
|
+
currentData?: import("@iblai/iblai-api").DocumentSettingsResponse | undefined;
|
|
1148
|
+
isUninitialized: false;
|
|
1149
|
+
isLoading: false;
|
|
1150
|
+
isFetching: false;
|
|
1151
|
+
isSuccess: false;
|
|
1152
|
+
isError: false;
|
|
1153
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
1154
|
+
isError: true;
|
|
1155
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1156
|
+
documentId: string;
|
|
1157
|
+
org: string;
|
|
1158
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "trainingDocuments" | "retrainSchedule", import("@iblai/iblai-api").DocumentSettingsResponse, "trainingDocumentsApiSlice", any>> & {
|
|
1159
|
+
currentData?: import("@iblai/iblai-api").DocumentSettingsResponse | undefined;
|
|
1160
|
+
isUninitialized: false;
|
|
1161
|
+
isLoading: false;
|
|
1162
|
+
isFetching: false;
|
|
1163
|
+
isSuccess: false;
|
|
1164
|
+
isError: false;
|
|
1165
|
+
}, "error">>)>> & {
|
|
1166
|
+
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
1167
|
+
}>(options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & Omit<{
|
|
1168
|
+
skip?: boolean;
|
|
1169
|
+
selectFromResult?: ((state: import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
1170
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1171
|
+
originalArgs?: undefined | undefined;
|
|
1172
|
+
data?: undefined | undefined;
|
|
1173
|
+
error?: undefined | undefined;
|
|
1174
|
+
requestId?: undefined | undefined;
|
|
1175
|
+
endpointName?: string | undefined;
|
|
1176
|
+
startedTimeStamp?: undefined | undefined;
|
|
1177
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
1178
|
+
} & {
|
|
1179
|
+
currentData?: import("@iblai/iblai-api").DocumentSettingsResponse | undefined;
|
|
1180
|
+
isUninitialized: false;
|
|
1181
|
+
isLoading: false;
|
|
1182
|
+
isFetching: false;
|
|
1183
|
+
isSuccess: false;
|
|
1184
|
+
isError: false;
|
|
1185
|
+
}, "isUninitialized"> & {
|
|
1186
|
+
isUninitialized: true;
|
|
1187
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1188
|
+
documentId: string;
|
|
1189
|
+
org: string;
|
|
1190
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "trainingDocuments" | "retrainSchedule", import("@iblai/iblai-api").DocumentSettingsResponse, "trainingDocumentsApiSlice", any>> & {
|
|
1191
|
+
currentData?: import("@iblai/iblai-api").DocumentSettingsResponse | undefined;
|
|
1192
|
+
isUninitialized: false;
|
|
1193
|
+
isLoading: false;
|
|
1194
|
+
isFetching: false;
|
|
1195
|
+
isSuccess: false;
|
|
1196
|
+
isError: false;
|
|
1197
|
+
}, {
|
|
1198
|
+
isLoading: true;
|
|
1199
|
+
isFetching: boolean;
|
|
1200
|
+
data: undefined;
|
|
1201
|
+
} | ({
|
|
1202
|
+
isSuccess: true;
|
|
1203
|
+
isFetching: true;
|
|
1204
|
+
error: undefined;
|
|
1205
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1206
|
+
documentId: string;
|
|
1207
|
+
org: string;
|
|
1208
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "trainingDocuments" | "retrainSchedule", import("@iblai/iblai-api").DocumentSettingsResponse, "trainingDocumentsApiSlice", any>> & {
|
|
1209
|
+
currentData?: import("@iblai/iblai-api").DocumentSettingsResponse | undefined;
|
|
1210
|
+
isUninitialized: false;
|
|
1211
|
+
isLoading: false;
|
|
1212
|
+
isFetching: false;
|
|
1213
|
+
isSuccess: false;
|
|
1214
|
+
isError: false;
|
|
1215
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
1216
|
+
isSuccess: true;
|
|
1217
|
+
isFetching: false;
|
|
1218
|
+
error: undefined;
|
|
1219
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1220
|
+
documentId: string;
|
|
1221
|
+
org: string;
|
|
1222
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "trainingDocuments" | "retrainSchedule", import("@iblai/iblai-api").DocumentSettingsResponse, "trainingDocumentsApiSlice", any>> & {
|
|
1223
|
+
currentData?: import("@iblai/iblai-api").DocumentSettingsResponse | undefined;
|
|
1224
|
+
isUninitialized: false;
|
|
1225
|
+
isLoading: false;
|
|
1226
|
+
isFetching: false;
|
|
1227
|
+
isSuccess: false;
|
|
1228
|
+
isError: false;
|
|
1229
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
1230
|
+
isError: true;
|
|
1231
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1232
|
+
documentId: string;
|
|
1233
|
+
org: string;
|
|
1234
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "trainingDocuments" | "retrainSchedule", import("@iblai/iblai-api").DocumentSettingsResponse, "trainingDocumentsApiSlice", any>> & {
|
|
1235
|
+
currentData?: import("@iblai/iblai-api").DocumentSettingsResponse | undefined;
|
|
1236
|
+
isUninitialized: false;
|
|
1237
|
+
isLoading: false;
|
|
1238
|
+
isFetching: false;
|
|
1239
|
+
isSuccess: false;
|
|
1240
|
+
isError: false;
|
|
1241
|
+
}, "error">>)>> & {
|
|
1242
|
+
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
1243
|
+
}) => R) | undefined;
|
|
1244
|
+
}, "skip">) | undefined) => [(arg: {
|
|
1245
|
+
documentId: string;
|
|
1246
|
+
org: string;
|
|
1247
|
+
}, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1248
|
+
documentId: string;
|
|
1249
|
+
org: string;
|
|
1250
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "trainingDocuments" | "retrainSchedule", import("@iblai/iblai-api").DocumentSettingsResponse, "trainingDocumentsApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
1251
|
+
reset: () => void;
|
|
1252
|
+
}, {
|
|
1253
|
+
lastArg: {
|
|
1254
|
+
documentId: string;
|
|
1255
|
+
org: string;
|
|
1256
|
+
};
|
|
1257
|
+
}], useCreateTrainingDocumentRetrainScheduleMutation: <R extends Record<string, any> = ({
|
|
1258
|
+
requestId?: undefined;
|
|
1259
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1260
|
+
data?: undefined;
|
|
1261
|
+
error?: undefined;
|
|
1262
|
+
endpointName?: string;
|
|
1263
|
+
startedTimeStamp?: undefined;
|
|
1264
|
+
fulfilledTimeStamp?: undefined;
|
|
1265
|
+
} & {
|
|
1266
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1267
|
+
isUninitialized: true;
|
|
1268
|
+
isLoading: false;
|
|
1269
|
+
isSuccess: false;
|
|
1270
|
+
isError: false;
|
|
1271
|
+
}) | ({
|
|
1272
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
1273
|
+
} & Omit<{
|
|
1274
|
+
requestId: string;
|
|
1275
|
+
data?: import("@iblai/iblai-api").DocumentSettingsResponse | undefined;
|
|
1276
|
+
error?: unknown;
|
|
1277
|
+
endpointName: string;
|
|
1278
|
+
startedTimeStamp: number;
|
|
1279
|
+
fulfilledTimeStamp?: number;
|
|
1280
|
+
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
1281
|
+
requestId: string;
|
|
1282
|
+
data?: import("@iblai/iblai-api").DocumentSettingsResponse | undefined;
|
|
1283
|
+
error?: unknown;
|
|
1284
|
+
endpointName: string;
|
|
1285
|
+
startedTimeStamp: number;
|
|
1286
|
+
fulfilledTimeStamp?: number;
|
|
1287
|
+
}, "data" | "fulfilledTimeStamp">> & {
|
|
1288
|
+
error: undefined;
|
|
1289
|
+
} & {
|
|
1290
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
1291
|
+
isUninitialized: false;
|
|
1292
|
+
isLoading: false;
|
|
1293
|
+
isSuccess: true;
|
|
1294
|
+
isError: false;
|
|
1295
|
+
}) | ({
|
|
1296
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
1297
|
+
} & {
|
|
1298
|
+
requestId: string;
|
|
1299
|
+
data?: import("@iblai/iblai-api").DocumentSettingsResponse | undefined;
|
|
1300
|
+
error?: unknown;
|
|
1301
|
+
endpointName: string;
|
|
1302
|
+
startedTimeStamp: number;
|
|
1303
|
+
fulfilledTimeStamp?: number;
|
|
1304
|
+
} & {
|
|
1305
|
+
data?: undefined;
|
|
1306
|
+
} & {
|
|
1307
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
1308
|
+
isUninitialized: false;
|
|
1309
|
+
isLoading: true;
|
|
1310
|
+
isSuccess: false;
|
|
1311
|
+
isError: false;
|
|
1312
|
+
}) | ({
|
|
1313
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
1314
|
+
} & Omit<{
|
|
1315
|
+
requestId: string;
|
|
1316
|
+
data?: import("@iblai/iblai-api").DocumentSettingsResponse | undefined;
|
|
1317
|
+
error?: unknown;
|
|
1318
|
+
endpointName: string;
|
|
1319
|
+
startedTimeStamp: number;
|
|
1320
|
+
fulfilledTimeStamp?: number;
|
|
1321
|
+
}, "error"> & Required<Pick<{
|
|
1322
|
+
requestId: string;
|
|
1323
|
+
data?: import("@iblai/iblai-api").DocumentSettingsResponse | undefined;
|
|
1324
|
+
error?: unknown;
|
|
1325
|
+
endpointName: string;
|
|
1326
|
+
startedTimeStamp: number;
|
|
1327
|
+
fulfilledTimeStamp?: number;
|
|
1328
|
+
}, "error">> & {
|
|
1329
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
1330
|
+
isUninitialized: false;
|
|
1331
|
+
isLoading: false;
|
|
1332
|
+
isSuccess: false;
|
|
1333
|
+
isError: true;
|
|
1334
|
+
})>(options?: {
|
|
1335
|
+
selectFromResult?: ((state: ({
|
|
1336
|
+
requestId?: undefined;
|
|
1337
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1338
|
+
data?: undefined;
|
|
1339
|
+
error?: undefined;
|
|
1340
|
+
endpointName?: string;
|
|
1341
|
+
startedTimeStamp?: undefined;
|
|
1342
|
+
fulfilledTimeStamp?: undefined;
|
|
1343
|
+
} & {
|
|
1344
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1345
|
+
isUninitialized: true;
|
|
1346
|
+
isLoading: false;
|
|
1347
|
+
isSuccess: false;
|
|
1348
|
+
isError: false;
|
|
1349
|
+
}) | ({
|
|
1350
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
1351
|
+
} & Omit<{
|
|
1352
|
+
requestId: string;
|
|
1353
|
+
data?: import("@iblai/iblai-api").DocumentSettingsResponse | undefined;
|
|
1354
|
+
error?: unknown;
|
|
1355
|
+
endpointName: string;
|
|
1356
|
+
startedTimeStamp: number;
|
|
1357
|
+
fulfilledTimeStamp?: number;
|
|
1358
|
+
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
1359
|
+
requestId: string;
|
|
1360
|
+
data?: import("@iblai/iblai-api").DocumentSettingsResponse | undefined;
|
|
1361
|
+
error?: unknown;
|
|
1362
|
+
endpointName: string;
|
|
1363
|
+
startedTimeStamp: number;
|
|
1364
|
+
fulfilledTimeStamp?: number;
|
|
1365
|
+
}, "data" | "fulfilledTimeStamp">> & {
|
|
1366
|
+
error: undefined;
|
|
1367
|
+
} & {
|
|
1368
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
1369
|
+
isUninitialized: false;
|
|
1370
|
+
isLoading: false;
|
|
1371
|
+
isSuccess: true;
|
|
1372
|
+
isError: false;
|
|
1373
|
+
}) | ({
|
|
1374
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
1375
|
+
} & {
|
|
1376
|
+
requestId: string;
|
|
1377
|
+
data?: import("@iblai/iblai-api").DocumentSettingsResponse | undefined;
|
|
1378
|
+
error?: unknown;
|
|
1379
|
+
endpointName: string;
|
|
1380
|
+
startedTimeStamp: number;
|
|
1381
|
+
fulfilledTimeStamp?: number;
|
|
1382
|
+
} & {
|
|
1383
|
+
data?: undefined;
|
|
1384
|
+
} & {
|
|
1385
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
1386
|
+
isUninitialized: false;
|
|
1387
|
+
isLoading: true;
|
|
1388
|
+
isSuccess: false;
|
|
1389
|
+
isError: false;
|
|
1390
|
+
}) | ({
|
|
1391
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
1392
|
+
} & Omit<{
|
|
1393
|
+
requestId: string;
|
|
1394
|
+
data?: import("@iblai/iblai-api").DocumentSettingsResponse | undefined;
|
|
1395
|
+
error?: unknown;
|
|
1396
|
+
endpointName: string;
|
|
1397
|
+
startedTimeStamp: number;
|
|
1398
|
+
fulfilledTimeStamp?: number;
|
|
1399
|
+
}, "error"> & Required<Pick<{
|
|
1400
|
+
requestId: string;
|
|
1401
|
+
data?: import("@iblai/iblai-api").DocumentSettingsResponse | undefined;
|
|
1402
|
+
error?: unknown;
|
|
1403
|
+
endpointName: string;
|
|
1404
|
+
startedTimeStamp: number;
|
|
1405
|
+
fulfilledTimeStamp?: number;
|
|
1406
|
+
}, "error">> & {
|
|
1407
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
1408
|
+
isUninitialized: false;
|
|
1409
|
+
isLoading: false;
|
|
1410
|
+
isSuccess: false;
|
|
1411
|
+
isError: true;
|
|
1412
|
+
})) => R) | undefined;
|
|
1413
|
+
fixedCacheKey?: string;
|
|
1414
|
+
} | undefined) => readonly [(arg: {
|
|
1415
|
+
documentId: string;
|
|
1416
|
+
org: string;
|
|
1417
|
+
requestBody?: import("@iblai/iblai-api").DocumentSettingsResponse;
|
|
1418
|
+
}) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
1419
|
+
documentId: string;
|
|
1420
|
+
org: string;
|
|
1421
|
+
requestBody?: import("@iblai/iblai-api").DocumentSettingsResponse;
|
|
1422
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "trainingDocuments" | "retrainSchedule", import("@iblai/iblai-api").DocumentSettingsResponse, "trainingDocumentsApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
917
1423
|
originalArgs?: {
|
|
918
1424
|
documentId: string;
|
|
919
1425
|
org: string;
|
|
1426
|
+
requestBody?: import("@iblai/iblai-api").DocumentSettingsResponse;
|
|
920
1427
|
} | undefined;
|
|
921
1428
|
reset: () => void;
|
|
922
1429
|
}];
|