@iblai/data-layer 1.1.2 → 1.1.4
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 +41055 -23773
- package/dist/index.esm.js +5430 -2801
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +5515 -2799
- package/dist/index.js.map +1 -1
- package/dist/package.json +10 -7
- package/dist/src/core/index.d.ts +7 -1
- package/dist/src/features/analytics/constants.d.ts +6 -6
- package/dist/src/features/analytics/types.d.ts +9 -0
- package/dist/src/features/api-keys/api-slice.d.ts +72 -24
- package/dist/src/features/apps/api-slice.d.ts +72 -24
- package/dist/src/features/artifacts/api-slice.d.ts +1798 -0
- package/dist/src/features/artifacts/constants.d.ts +42 -0
- package/dist/src/features/artifacts/index.d.ts +3 -0
- package/dist/src/features/artifacts/types.d.ts +37 -0
- package/dist/src/features/auth/types.d.ts +1 -1
- package/dist/src/features/billing/api-slice.d.ts +15 -5
- package/dist/src/features/billing/constants.d.ts +16 -0
- package/dist/src/features/billing/custom-api-slice.d.ts +634 -0
- package/dist/src/features/billing/types.d.ts +35 -0
- package/dist/src/features/career/api-slice.d.ts +342 -114
- package/dist/src/features/catalog/api-slice.d.ts +1050 -317
- package/dist/src/features/chat/api-slice.d.ts +204 -68
- package/dist/src/features/chat-history/api-slice.d.ts +202 -60
- package/dist/src/features/core/api-slice.d.ts +1143 -134
- package/dist/src/features/core/custom-public-image-asset-api-slice.d.ts +60 -20
- package/dist/src/features/credentials/__tests__/custom-api-slice.test.d.ts +1 -0
- package/dist/src/features/credentials/api-slice.d.ts +3706 -146
- package/dist/src/features/credentials/constants.d.ts +9 -1
- package/dist/src/features/credentials/custom-api-slice.d.ts +535 -2
- package/dist/src/features/credentials/types.d.ts +14 -0
- package/dist/src/features/datasets/api-slice.d.ts +60 -197
- package/dist/src/features/index.d.ts +2 -1
- package/dist/src/features/llms/api-slice.d.ts +60 -20
- package/dist/src/features/mcp/api-slice.d.ts +2613 -0
- package/dist/src/features/mcp/constants.d.ts +57 -0
- package/dist/src/features/mcp/index.d.ts +3 -0
- package/dist/src/features/mcp/types.d.ts +176 -0
- package/dist/src/features/memory/types.d.ts +1 -0
- package/dist/src/features/mentor/api-slice.d.ts +1789 -473
- package/dist/src/features/mentor/constants.d.ts +7 -1
- package/dist/src/features/mentor/custom-api-slice.d.ts +162 -1
- package/dist/src/features/mentor/types.d.ts +7 -1
- package/dist/src/features/mentor-categories/api-slice.d.ts +117 -39
- package/dist/src/features/moderation-logs/api-slice.d.ts +705 -0
- package/dist/src/features/notifications/api-slice.d.ts +214 -86
- package/dist/src/features/per-learner/api-slice.d.ts +174 -58
- package/dist/src/features/platform/api-slice.d.ts +1568 -293
- package/dist/src/features/platform/types.d.ts +13 -0
- package/dist/src/features/prompts/api-slice.d.ts +249 -83
- package/dist/src/features/reports/api-slice.d.ts +145 -41
- package/dist/src/features/search/ai-search-api-slice.d.ts +399 -1
- package/dist/src/features/search/api-slice.d.ts +117 -39
- package/dist/src/features/search/constants.d.ts +10 -0
- package/dist/src/features/search/types.d.ts +72 -0
- package/dist/src/features/sessions/api-slice.d.ts +440 -46
- package/dist/src/features/skills/api-slice.d.ts +231 -77
- package/dist/src/features/tenant/api-slice.d.ts +123 -41
- package/dist/src/features/tools/api-slice.d.ts +60 -20
- package/dist/src/features/training-documents/api-slice.d.ts +141 -47
- package/dist/src/features/user-invitations/api-slice.d.ts +66 -22
- package/dist/src/index.d.ts +6 -0
- package/dist/tests/features/billing/constants.test.d.ts +1 -0
- package/dist/tests/features/billing/custom-api-slice.test.d.ts +1 -0
- package/dist/tests/features/billing/types.test.d.ts +1 -0
- package/package.json +10 -7
- package/dist/tsconfig.tsbuildinfo +0 -1
|
@@ -1,33 +1,47 @@
|
|
|
1
|
-
export declare const trainingDocumentsApiSlice: import("@reduxjs/toolkit/query").Api<import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
1
|
+
export declare const trainingDocumentsApiSlice: import("@reduxjs/toolkit/query").Api<import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2
|
+
attempt?: number;
|
|
3
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, {
|
|
2
4
|
getTrainingDocuments: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3
5
|
org: string;
|
|
4
6
|
pathway: string;
|
|
5
7
|
limit?: number;
|
|
6
8
|
offset?: number;
|
|
7
9
|
search?: string;
|
|
8
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
10
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
11
|
+
attempt?: number;
|
|
12
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "trainingDocuments" | "retrainSchedule", import("@iblai/iblai-api").PaginatedRetrieverDocumentEmbeddingList, "trainingDocumentsApiSlice", any>;
|
|
9
13
|
addTrainingDocument: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
10
14
|
org: string;
|
|
11
15
|
formData: import("@iblai/iblai-api").TrainDocumentViewRequest;
|
|
12
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
16
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
17
|
+
attempt?: number;
|
|
18
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "trainingDocuments" | "retrainSchedule", import("@iblai/iblai-api").TrainDocumentViewResponse, "trainingDocumentsApiSlice", any>;
|
|
13
19
|
editTrainingDocument: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
14
20
|
documentId: string;
|
|
15
21
|
org: string;
|
|
16
22
|
formData: import("@iblai/iblai-api").RetrieverDocumentEmbeddingRequest;
|
|
17
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
23
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
24
|
+
attempt?: number;
|
|
25
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "trainingDocuments" | "retrainSchedule", import("@iblai/iblai-api").RetrieverDocumentEmbedding, "trainingDocumentsApiSlice", any>;
|
|
18
26
|
deleteTrainingDocument: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
19
27
|
documentId: string;
|
|
20
28
|
org: string;
|
|
21
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
29
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
30
|
+
attempt?: number;
|
|
31
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "trainingDocuments" | "retrainSchedule", void, "trainingDocumentsApiSlice", any>;
|
|
22
32
|
getTrainingDocumentRetrainSchedule: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
23
33
|
documentId: string;
|
|
24
34
|
org: string;
|
|
25
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
35
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
36
|
+
attempt?: number;
|
|
37
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "trainingDocuments" | "retrainSchedule", import("@iblai/iblai-api").DocumentSettingsResponse, "trainingDocumentsApiSlice", any>;
|
|
26
38
|
createTrainingDocumentRetrainSchedule: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
27
39
|
documentId: string;
|
|
28
40
|
org: string;
|
|
29
41
|
requestBody?: import("@iblai/iblai-api").DocumentSettingsResponse;
|
|
30
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
42
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
43
|
+
attempt?: number;
|
|
44
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "trainingDocuments" | "retrainSchedule", import("@iblai/iblai-api").DocumentSettingsResponse, "trainingDocumentsApiSlice", any>;
|
|
31
45
|
}, "trainingDocumentsApiSlice", "trainingDocuments" | "retrainSchedule", typeof import("@reduxjs/toolkit/query").coreModuleName | typeof import("@reduxjs/toolkit/dist/query/react").reactHooksModuleName>;
|
|
32
46
|
export declare const useGetTrainingDocumentsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
33
47
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
@@ -53,7 +67,9 @@ export declare const useGetTrainingDocumentsQuery: <R extends Record<string, any
|
|
|
53
67
|
limit?: number;
|
|
54
68
|
offset?: number;
|
|
55
69
|
search?: string;
|
|
56
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
70
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
71
|
+
attempt?: number;
|
|
72
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "trainingDocuments" | "retrainSchedule", import("@iblai/iblai-api").PaginatedRetrieverDocumentEmbeddingList, "trainingDocumentsApiSlice", any>> & {
|
|
57
73
|
currentData?: import("@iblai/iblai-api").PaginatedRetrieverDocumentEmbeddingList | undefined;
|
|
58
74
|
isUninitialized: false;
|
|
59
75
|
isLoading: false;
|
|
@@ -74,7 +90,9 @@ export declare const useGetTrainingDocumentsQuery: <R extends Record<string, any
|
|
|
74
90
|
limit?: number;
|
|
75
91
|
offset?: number;
|
|
76
92
|
search?: string;
|
|
77
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
93
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
94
|
+
attempt?: number;
|
|
95
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "trainingDocuments" | "retrainSchedule", import("@iblai/iblai-api").PaginatedRetrieverDocumentEmbeddingList, "trainingDocumentsApiSlice", any>> & {
|
|
78
96
|
currentData?: import("@iblai/iblai-api").PaginatedRetrieverDocumentEmbeddingList | undefined;
|
|
79
97
|
isUninitialized: false;
|
|
80
98
|
isLoading: false;
|
|
@@ -91,7 +109,9 @@ export declare const useGetTrainingDocumentsQuery: <R extends Record<string, any
|
|
|
91
109
|
limit?: number;
|
|
92
110
|
offset?: number;
|
|
93
111
|
search?: string;
|
|
94
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
112
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
113
|
+
attempt?: number;
|
|
114
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "trainingDocuments" | "retrainSchedule", import("@iblai/iblai-api").PaginatedRetrieverDocumentEmbeddingList, "trainingDocumentsApiSlice", any>> & {
|
|
95
115
|
currentData?: import("@iblai/iblai-api").PaginatedRetrieverDocumentEmbeddingList | undefined;
|
|
96
116
|
isUninitialized: false;
|
|
97
117
|
isLoading: false;
|
|
@@ -106,7 +126,9 @@ export declare const useGetTrainingDocumentsQuery: <R extends Record<string, any
|
|
|
106
126
|
limit?: number;
|
|
107
127
|
offset?: number;
|
|
108
128
|
search?: string;
|
|
109
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
129
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
130
|
+
attempt?: number;
|
|
131
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "trainingDocuments" | "retrainSchedule", import("@iblai/iblai-api").PaginatedRetrieverDocumentEmbeddingList, "trainingDocumentsApiSlice", any>> & {
|
|
110
132
|
currentData?: import("@iblai/iblai-api").PaginatedRetrieverDocumentEmbeddingList | undefined;
|
|
111
133
|
isUninitialized: false;
|
|
112
134
|
isLoading: false;
|
|
@@ -150,7 +172,9 @@ export declare const useGetTrainingDocumentsQuery: <R extends Record<string, any
|
|
|
150
172
|
limit?: number;
|
|
151
173
|
offset?: number;
|
|
152
174
|
search?: string;
|
|
153
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
175
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
176
|
+
attempt?: number;
|
|
177
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "trainingDocuments" | "retrainSchedule", import("@iblai/iblai-api").PaginatedRetrieverDocumentEmbeddingList, "trainingDocumentsApiSlice", any>> & {
|
|
154
178
|
currentData?: import("@iblai/iblai-api").PaginatedRetrieverDocumentEmbeddingList | undefined;
|
|
155
179
|
isUninitialized: false;
|
|
156
180
|
isLoading: false;
|
|
@@ -171,7 +195,9 @@ export declare const useGetTrainingDocumentsQuery: <R extends Record<string, any
|
|
|
171
195
|
limit?: number;
|
|
172
196
|
offset?: number;
|
|
173
197
|
search?: string;
|
|
174
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
198
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
199
|
+
attempt?: number;
|
|
200
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "trainingDocuments" | "retrainSchedule", import("@iblai/iblai-api").PaginatedRetrieverDocumentEmbeddingList, "trainingDocumentsApiSlice", any>> & {
|
|
175
201
|
currentData?: import("@iblai/iblai-api").PaginatedRetrieverDocumentEmbeddingList | undefined;
|
|
176
202
|
isUninitialized: false;
|
|
177
203
|
isLoading: false;
|
|
@@ -188,7 +214,9 @@ export declare const useGetTrainingDocumentsQuery: <R extends Record<string, any
|
|
|
188
214
|
limit?: number;
|
|
189
215
|
offset?: number;
|
|
190
216
|
search?: string;
|
|
191
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
217
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
218
|
+
attempt?: number;
|
|
219
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "trainingDocuments" | "retrainSchedule", import("@iblai/iblai-api").PaginatedRetrieverDocumentEmbeddingList, "trainingDocumentsApiSlice", any>> & {
|
|
192
220
|
currentData?: import("@iblai/iblai-api").PaginatedRetrieverDocumentEmbeddingList | undefined;
|
|
193
221
|
isUninitialized: false;
|
|
194
222
|
isLoading: false;
|
|
@@ -203,7 +231,9 @@ export declare const useGetTrainingDocumentsQuery: <R extends Record<string, any
|
|
|
203
231
|
limit?: number;
|
|
204
232
|
offset?: number;
|
|
205
233
|
search?: string;
|
|
206
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
234
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
235
|
+
attempt?: number;
|
|
236
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "trainingDocuments" | "retrainSchedule", import("@iblai/iblai-api").PaginatedRetrieverDocumentEmbeddingList, "trainingDocumentsApiSlice", any>> & {
|
|
207
237
|
currentData?: import("@iblai/iblai-api").PaginatedRetrieverDocumentEmbeddingList | undefined;
|
|
208
238
|
isUninitialized: false;
|
|
209
239
|
isLoading: false;
|
|
@@ -220,7 +250,9 @@ export declare const useGetTrainingDocumentsQuery: <R extends Record<string, any
|
|
|
220
250
|
limit?: number;
|
|
221
251
|
offset?: number;
|
|
222
252
|
search?: string;
|
|
223
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
253
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
254
|
+
attempt?: number;
|
|
255
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "trainingDocuments" | "retrainSchedule", import("@iblai/iblai-api").PaginatedRetrieverDocumentEmbeddingList, "trainingDocumentsApiSlice", any>>;
|
|
224
256
|
}, useLazyGetTrainingDocumentsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
225
257
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
226
258
|
originalArgs?: undefined | undefined;
|
|
@@ -245,7 +277,9 @@ export declare const useGetTrainingDocumentsQuery: <R extends Record<string, any
|
|
|
245
277
|
limit?: number;
|
|
246
278
|
offset?: number;
|
|
247
279
|
search?: string;
|
|
248
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
280
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
281
|
+
attempt?: number;
|
|
282
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "trainingDocuments" | "retrainSchedule", import("@iblai/iblai-api").PaginatedRetrieverDocumentEmbeddingList, "trainingDocumentsApiSlice", any>> & {
|
|
249
283
|
currentData?: import("@iblai/iblai-api").PaginatedRetrieverDocumentEmbeddingList | undefined;
|
|
250
284
|
isUninitialized: false;
|
|
251
285
|
isLoading: false;
|
|
@@ -266,7 +300,9 @@ export declare const useGetTrainingDocumentsQuery: <R extends Record<string, any
|
|
|
266
300
|
limit?: number;
|
|
267
301
|
offset?: number;
|
|
268
302
|
search?: string;
|
|
269
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
303
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
304
|
+
attempt?: number;
|
|
305
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "trainingDocuments" | "retrainSchedule", import("@iblai/iblai-api").PaginatedRetrieverDocumentEmbeddingList, "trainingDocumentsApiSlice", any>> & {
|
|
270
306
|
currentData?: import("@iblai/iblai-api").PaginatedRetrieverDocumentEmbeddingList | undefined;
|
|
271
307
|
isUninitialized: false;
|
|
272
308
|
isLoading: false;
|
|
@@ -283,7 +319,9 @@ export declare const useGetTrainingDocumentsQuery: <R extends Record<string, any
|
|
|
283
319
|
limit?: number;
|
|
284
320
|
offset?: number;
|
|
285
321
|
search?: string;
|
|
286
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
322
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
323
|
+
attempt?: number;
|
|
324
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "trainingDocuments" | "retrainSchedule", import("@iblai/iblai-api").PaginatedRetrieverDocumentEmbeddingList, "trainingDocumentsApiSlice", any>> & {
|
|
287
325
|
currentData?: import("@iblai/iblai-api").PaginatedRetrieverDocumentEmbeddingList | undefined;
|
|
288
326
|
isUninitialized: false;
|
|
289
327
|
isLoading: false;
|
|
@@ -298,7 +336,9 @@ export declare const useGetTrainingDocumentsQuery: <R extends Record<string, any
|
|
|
298
336
|
limit?: number;
|
|
299
337
|
offset?: number;
|
|
300
338
|
search?: string;
|
|
301
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
339
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
340
|
+
attempt?: number;
|
|
341
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "trainingDocuments" | "retrainSchedule", import("@iblai/iblai-api").PaginatedRetrieverDocumentEmbeddingList, "trainingDocumentsApiSlice", any>> & {
|
|
302
342
|
currentData?: import("@iblai/iblai-api").PaginatedRetrieverDocumentEmbeddingList | undefined;
|
|
303
343
|
isUninitialized: false;
|
|
304
344
|
isLoading: false;
|
|
@@ -333,7 +373,9 @@ export declare const useGetTrainingDocumentsQuery: <R extends Record<string, any
|
|
|
333
373
|
limit?: number;
|
|
334
374
|
offset?: number;
|
|
335
375
|
search?: string;
|
|
336
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
376
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
377
|
+
attempt?: number;
|
|
378
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "trainingDocuments" | "retrainSchedule", import("@iblai/iblai-api").PaginatedRetrieverDocumentEmbeddingList, "trainingDocumentsApiSlice", any>> & {
|
|
337
379
|
currentData?: import("@iblai/iblai-api").PaginatedRetrieverDocumentEmbeddingList | undefined;
|
|
338
380
|
isUninitialized: false;
|
|
339
381
|
isLoading: false;
|
|
@@ -354,7 +396,9 @@ export declare const useGetTrainingDocumentsQuery: <R extends Record<string, any
|
|
|
354
396
|
limit?: number;
|
|
355
397
|
offset?: number;
|
|
356
398
|
search?: string;
|
|
357
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
399
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
400
|
+
attempt?: number;
|
|
401
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "trainingDocuments" | "retrainSchedule", import("@iblai/iblai-api").PaginatedRetrieverDocumentEmbeddingList, "trainingDocumentsApiSlice", any>> & {
|
|
358
402
|
currentData?: import("@iblai/iblai-api").PaginatedRetrieverDocumentEmbeddingList | undefined;
|
|
359
403
|
isUninitialized: false;
|
|
360
404
|
isLoading: false;
|
|
@@ -371,7 +415,9 @@ export declare const useGetTrainingDocumentsQuery: <R extends Record<string, any
|
|
|
371
415
|
limit?: number;
|
|
372
416
|
offset?: number;
|
|
373
417
|
search?: string;
|
|
374
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
418
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
419
|
+
attempt?: number;
|
|
420
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "trainingDocuments" | "retrainSchedule", import("@iblai/iblai-api").PaginatedRetrieverDocumentEmbeddingList, "trainingDocumentsApiSlice", any>> & {
|
|
375
421
|
currentData?: import("@iblai/iblai-api").PaginatedRetrieverDocumentEmbeddingList | undefined;
|
|
376
422
|
isUninitialized: false;
|
|
377
423
|
isLoading: false;
|
|
@@ -386,7 +432,9 @@ export declare const useGetTrainingDocumentsQuery: <R extends Record<string, any
|
|
|
386
432
|
limit?: number;
|
|
387
433
|
offset?: number;
|
|
388
434
|
search?: string;
|
|
389
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
435
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
436
|
+
attempt?: number;
|
|
437
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "trainingDocuments" | "retrainSchedule", import("@iblai/iblai-api").PaginatedRetrieverDocumentEmbeddingList, "trainingDocumentsApiSlice", any>> & {
|
|
390
438
|
currentData?: import("@iblai/iblai-api").PaginatedRetrieverDocumentEmbeddingList | undefined;
|
|
391
439
|
isUninitialized: false;
|
|
392
440
|
isLoading: false;
|
|
@@ -408,7 +456,9 @@ export declare const useGetTrainingDocumentsQuery: <R extends Record<string, any
|
|
|
408
456
|
limit?: number;
|
|
409
457
|
offset?: number;
|
|
410
458
|
search?: string;
|
|
411
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
459
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
460
|
+
attempt?: number;
|
|
461
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "trainingDocuments" | "retrainSchedule", import("@iblai/iblai-api").PaginatedRetrieverDocumentEmbeddingList, "trainingDocumentsApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
412
462
|
reset: () => void;
|
|
413
463
|
}, {
|
|
414
464
|
lastArg: {
|
|
@@ -581,7 +631,9 @@ export declare const useGetTrainingDocumentsQuery: <R extends Record<string, any
|
|
|
581
631
|
}) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
582
632
|
org: string;
|
|
583
633
|
formData: import("@iblai/iblai-api").TrainDocumentViewRequest;
|
|
584
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
634
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
635
|
+
attempt?: number;
|
|
636
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "trainingDocuments" | "retrainSchedule", import("@iblai/iblai-api").TrainDocumentViewResponse, "trainingDocumentsApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
585
637
|
originalArgs?: {
|
|
586
638
|
org: string;
|
|
587
639
|
formData: import("@iblai/iblai-api").TrainDocumentViewRequest;
|
|
@@ -752,7 +804,9 @@ export declare const useGetTrainingDocumentsQuery: <R extends Record<string, any
|
|
|
752
804
|
documentId: string;
|
|
753
805
|
org: string;
|
|
754
806
|
formData: import("@iblai/iblai-api").RetrieverDocumentEmbeddingRequest;
|
|
755
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
807
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
808
|
+
attempt?: number;
|
|
809
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "trainingDocuments" | "retrainSchedule", import("@iblai/iblai-api").RetrieverDocumentEmbedding, "trainingDocumentsApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
756
810
|
originalArgs?: {
|
|
757
811
|
documentId: string;
|
|
758
812
|
org: string;
|
|
@@ -922,7 +976,9 @@ export declare const useGetTrainingDocumentsQuery: <R extends Record<string, any
|
|
|
922
976
|
}) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
923
977
|
documentId: string;
|
|
924
978
|
org: string;
|
|
925
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
979
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
980
|
+
attempt?: number;
|
|
981
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "trainingDocuments" | "retrainSchedule", void, "trainingDocumentsApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
926
982
|
originalArgs?: {
|
|
927
983
|
documentId: string;
|
|
928
984
|
org: string;
|
|
@@ -949,7 +1005,9 @@ export declare const useGetTrainingDocumentsQuery: <R extends Record<string, any
|
|
|
949
1005
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
950
1006
|
documentId: string;
|
|
951
1007
|
org: string;
|
|
952
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
1008
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1009
|
+
attempt?: number;
|
|
1010
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "trainingDocuments" | "retrainSchedule", import("@iblai/iblai-api").DocumentSettingsResponse, "trainingDocumentsApiSlice", any>> & {
|
|
953
1011
|
currentData?: import("@iblai/iblai-api").DocumentSettingsResponse | undefined;
|
|
954
1012
|
isUninitialized: false;
|
|
955
1013
|
isLoading: false;
|
|
@@ -967,7 +1025,9 @@ export declare const useGetTrainingDocumentsQuery: <R extends Record<string, any
|
|
|
967
1025
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
968
1026
|
documentId: string;
|
|
969
1027
|
org: string;
|
|
970
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
1028
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1029
|
+
attempt?: number;
|
|
1030
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "trainingDocuments" | "retrainSchedule", import("@iblai/iblai-api").DocumentSettingsResponse, "trainingDocumentsApiSlice", any>> & {
|
|
971
1031
|
currentData?: import("@iblai/iblai-api").DocumentSettingsResponse | undefined;
|
|
972
1032
|
isUninitialized: false;
|
|
973
1033
|
isLoading: false;
|
|
@@ -981,7 +1041,9 @@ export declare const useGetTrainingDocumentsQuery: <R extends Record<string, any
|
|
|
981
1041
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
982
1042
|
documentId: string;
|
|
983
1043
|
org: string;
|
|
984
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
1044
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1045
|
+
attempt?: number;
|
|
1046
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "trainingDocuments" | "retrainSchedule", import("@iblai/iblai-api").DocumentSettingsResponse, "trainingDocumentsApiSlice", any>> & {
|
|
985
1047
|
currentData?: import("@iblai/iblai-api").DocumentSettingsResponse | undefined;
|
|
986
1048
|
isUninitialized: false;
|
|
987
1049
|
isLoading: false;
|
|
@@ -993,7 +1055,9 @@ export declare const useGetTrainingDocumentsQuery: <R extends Record<string, any
|
|
|
993
1055
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
994
1056
|
documentId: string;
|
|
995
1057
|
org: string;
|
|
996
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
1058
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1059
|
+
attempt?: number;
|
|
1060
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "trainingDocuments" | "retrainSchedule", import("@iblai/iblai-api").DocumentSettingsResponse, "trainingDocumentsApiSlice", any>> & {
|
|
997
1061
|
currentData?: import("@iblai/iblai-api").DocumentSettingsResponse | undefined;
|
|
998
1062
|
isUninitialized: false;
|
|
999
1063
|
isLoading: false;
|
|
@@ -1031,7 +1095,9 @@ export declare const useGetTrainingDocumentsQuery: <R extends Record<string, any
|
|
|
1031
1095
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1032
1096
|
documentId: string;
|
|
1033
1097
|
org: string;
|
|
1034
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
1098
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1099
|
+
attempt?: number;
|
|
1100
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "trainingDocuments" | "retrainSchedule", import("@iblai/iblai-api").DocumentSettingsResponse, "trainingDocumentsApiSlice", any>> & {
|
|
1035
1101
|
currentData?: import("@iblai/iblai-api").DocumentSettingsResponse | undefined;
|
|
1036
1102
|
isUninitialized: false;
|
|
1037
1103
|
isLoading: false;
|
|
@@ -1049,7 +1115,9 @@ export declare const useGetTrainingDocumentsQuery: <R extends Record<string, any
|
|
|
1049
1115
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1050
1116
|
documentId: string;
|
|
1051
1117
|
org: string;
|
|
1052
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
1118
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1119
|
+
attempt?: number;
|
|
1120
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "trainingDocuments" | "retrainSchedule", import("@iblai/iblai-api").DocumentSettingsResponse, "trainingDocumentsApiSlice", any>> & {
|
|
1053
1121
|
currentData?: import("@iblai/iblai-api").DocumentSettingsResponse | undefined;
|
|
1054
1122
|
isUninitialized: false;
|
|
1055
1123
|
isLoading: false;
|
|
@@ -1063,7 +1131,9 @@ export declare const useGetTrainingDocumentsQuery: <R extends Record<string, any
|
|
|
1063
1131
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1064
1132
|
documentId: string;
|
|
1065
1133
|
org: string;
|
|
1066
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
1134
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1135
|
+
attempt?: number;
|
|
1136
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "trainingDocuments" | "retrainSchedule", import("@iblai/iblai-api").DocumentSettingsResponse, "trainingDocumentsApiSlice", any>> & {
|
|
1067
1137
|
currentData?: import("@iblai/iblai-api").DocumentSettingsResponse | undefined;
|
|
1068
1138
|
isUninitialized: false;
|
|
1069
1139
|
isLoading: false;
|
|
@@ -1075,7 +1145,9 @@ export declare const useGetTrainingDocumentsQuery: <R extends Record<string, any
|
|
|
1075
1145
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1076
1146
|
documentId: string;
|
|
1077
1147
|
org: string;
|
|
1078
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
1148
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1149
|
+
attempt?: number;
|
|
1150
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "trainingDocuments" | "retrainSchedule", import("@iblai/iblai-api").DocumentSettingsResponse, "trainingDocumentsApiSlice", any>> & {
|
|
1079
1151
|
currentData?: import("@iblai/iblai-api").DocumentSettingsResponse | undefined;
|
|
1080
1152
|
isUninitialized: false;
|
|
1081
1153
|
isLoading: false;
|
|
@@ -1089,7 +1161,9 @@ export declare const useGetTrainingDocumentsQuery: <R extends Record<string, any
|
|
|
1089
1161
|
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1090
1162
|
documentId: string;
|
|
1091
1163
|
org: string;
|
|
1092
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
1164
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1165
|
+
attempt?: number;
|
|
1166
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "trainingDocuments" | "retrainSchedule", import("@iblai/iblai-api").DocumentSettingsResponse, "trainingDocumentsApiSlice", any>>;
|
|
1093
1167
|
}, useLazyGetTrainingDocumentRetrainScheduleQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
1094
1168
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1095
1169
|
originalArgs?: undefined | undefined;
|
|
@@ -1111,7 +1185,9 @@ export declare const useGetTrainingDocumentsQuery: <R extends Record<string, any
|
|
|
1111
1185
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1112
1186
|
documentId: string;
|
|
1113
1187
|
org: string;
|
|
1114
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
1188
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1189
|
+
attempt?: number;
|
|
1190
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "trainingDocuments" | "retrainSchedule", import("@iblai/iblai-api").DocumentSettingsResponse, "trainingDocumentsApiSlice", any>> & {
|
|
1115
1191
|
currentData?: import("@iblai/iblai-api").DocumentSettingsResponse | undefined;
|
|
1116
1192
|
isUninitialized: false;
|
|
1117
1193
|
isLoading: false;
|
|
@@ -1129,7 +1205,9 @@ export declare const useGetTrainingDocumentsQuery: <R extends Record<string, any
|
|
|
1129
1205
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1130
1206
|
documentId: string;
|
|
1131
1207
|
org: string;
|
|
1132
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
1208
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1209
|
+
attempt?: number;
|
|
1210
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "trainingDocuments" | "retrainSchedule", import("@iblai/iblai-api").DocumentSettingsResponse, "trainingDocumentsApiSlice", any>> & {
|
|
1133
1211
|
currentData?: import("@iblai/iblai-api").DocumentSettingsResponse | undefined;
|
|
1134
1212
|
isUninitialized: false;
|
|
1135
1213
|
isLoading: false;
|
|
@@ -1143,7 +1221,9 @@ export declare const useGetTrainingDocumentsQuery: <R extends Record<string, any
|
|
|
1143
1221
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1144
1222
|
documentId: string;
|
|
1145
1223
|
org: string;
|
|
1146
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
1224
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1225
|
+
attempt?: number;
|
|
1226
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "trainingDocuments" | "retrainSchedule", import("@iblai/iblai-api").DocumentSettingsResponse, "trainingDocumentsApiSlice", any>> & {
|
|
1147
1227
|
currentData?: import("@iblai/iblai-api").DocumentSettingsResponse | undefined;
|
|
1148
1228
|
isUninitialized: false;
|
|
1149
1229
|
isLoading: false;
|
|
@@ -1155,7 +1235,9 @@ export declare const useGetTrainingDocumentsQuery: <R extends Record<string, any
|
|
|
1155
1235
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1156
1236
|
documentId: string;
|
|
1157
1237
|
org: string;
|
|
1158
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
1238
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1239
|
+
attempt?: number;
|
|
1240
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "trainingDocuments" | "retrainSchedule", import("@iblai/iblai-api").DocumentSettingsResponse, "trainingDocumentsApiSlice", any>> & {
|
|
1159
1241
|
currentData?: import("@iblai/iblai-api").DocumentSettingsResponse | undefined;
|
|
1160
1242
|
isUninitialized: false;
|
|
1161
1243
|
isLoading: false;
|
|
@@ -1187,7 +1269,9 @@ export declare const useGetTrainingDocumentsQuery: <R extends Record<string, any
|
|
|
1187
1269
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1188
1270
|
documentId: string;
|
|
1189
1271
|
org: string;
|
|
1190
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
1272
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1273
|
+
attempt?: number;
|
|
1274
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "trainingDocuments" | "retrainSchedule", import("@iblai/iblai-api").DocumentSettingsResponse, "trainingDocumentsApiSlice", any>> & {
|
|
1191
1275
|
currentData?: import("@iblai/iblai-api").DocumentSettingsResponse | undefined;
|
|
1192
1276
|
isUninitialized: false;
|
|
1193
1277
|
isLoading: false;
|
|
@@ -1205,7 +1289,9 @@ export declare const useGetTrainingDocumentsQuery: <R extends Record<string, any
|
|
|
1205
1289
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1206
1290
|
documentId: string;
|
|
1207
1291
|
org: string;
|
|
1208
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
1292
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1293
|
+
attempt?: number;
|
|
1294
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "trainingDocuments" | "retrainSchedule", import("@iblai/iblai-api").DocumentSettingsResponse, "trainingDocumentsApiSlice", any>> & {
|
|
1209
1295
|
currentData?: import("@iblai/iblai-api").DocumentSettingsResponse | undefined;
|
|
1210
1296
|
isUninitialized: false;
|
|
1211
1297
|
isLoading: false;
|
|
@@ -1219,7 +1305,9 @@ export declare const useGetTrainingDocumentsQuery: <R extends Record<string, any
|
|
|
1219
1305
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1220
1306
|
documentId: string;
|
|
1221
1307
|
org: string;
|
|
1222
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
1308
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1309
|
+
attempt?: number;
|
|
1310
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "trainingDocuments" | "retrainSchedule", import("@iblai/iblai-api").DocumentSettingsResponse, "trainingDocumentsApiSlice", any>> & {
|
|
1223
1311
|
currentData?: import("@iblai/iblai-api").DocumentSettingsResponse | undefined;
|
|
1224
1312
|
isUninitialized: false;
|
|
1225
1313
|
isLoading: false;
|
|
@@ -1231,7 +1319,9 @@ export declare const useGetTrainingDocumentsQuery: <R extends Record<string, any
|
|
|
1231
1319
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1232
1320
|
documentId: string;
|
|
1233
1321
|
org: string;
|
|
1234
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
1322
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1323
|
+
attempt?: number;
|
|
1324
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "trainingDocuments" | "retrainSchedule", import("@iblai/iblai-api").DocumentSettingsResponse, "trainingDocumentsApiSlice", any>> & {
|
|
1235
1325
|
currentData?: import("@iblai/iblai-api").DocumentSettingsResponse | undefined;
|
|
1236
1326
|
isUninitialized: false;
|
|
1237
1327
|
isLoading: false;
|
|
@@ -1247,7 +1337,9 @@ export declare const useGetTrainingDocumentsQuery: <R extends Record<string, any
|
|
|
1247
1337
|
}, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1248
1338
|
documentId: string;
|
|
1249
1339
|
org: string;
|
|
1250
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
1340
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1341
|
+
attempt?: number;
|
|
1342
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "trainingDocuments" | "retrainSchedule", import("@iblai/iblai-api").DocumentSettingsResponse, "trainingDocumentsApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
1251
1343
|
reset: () => void;
|
|
1252
1344
|
}, {
|
|
1253
1345
|
lastArg: {
|
|
@@ -1419,7 +1511,9 @@ export declare const useGetTrainingDocumentsQuery: <R extends Record<string, any
|
|
|
1419
1511
|
documentId: string;
|
|
1420
1512
|
org: string;
|
|
1421
1513
|
requestBody?: import("@iblai/iblai-api").DocumentSettingsResponse;
|
|
1422
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
1514
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1515
|
+
attempt?: number;
|
|
1516
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "trainingDocuments" | "retrainSchedule", import("@iblai/iblai-api").DocumentSettingsResponse, "trainingDocumentsApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
1423
1517
|
originalArgs?: {
|
|
1424
1518
|
documentId: string;
|
|
1425
1519
|
org: string;
|