@iblai/data-layer 0.0.5 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +65009 -23
- package/dist/index.esm.js +29131 -16819
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +29475 -16817
- package/dist/index.js.map +1 -1
- package/dist/package.json +84 -0
- package/dist/src/config.d.ts +2 -0
- package/dist/src/constants.d.ts +2 -3
- package/dist/src/core/index.d.ts +2 -1
- package/dist/src/features/analytics/api-slice.d.ts +3357 -0
- package/dist/src/features/analytics/constants.d.ts +121 -0
- package/dist/src/features/analytics/types.d.ts +426 -0
- package/dist/src/features/api-keys/api-slice.d.ts +94 -34
- package/dist/{features/api-keys → src/features/apps}/api-slice.d.ts +156 -78
- package/dist/src/features/auth/api-slice.d.ts +639 -0
- package/dist/src/features/auth/constants.d.ts +20 -0
- package/dist/src/features/auth/types.d.ts +33 -0
- package/dist/src/features/billing/api-slice.d.ts +349 -0
- package/dist/src/features/career/api-slice.d.ts +2852 -0
- package/dist/src/features/catalog/api-slice.d.ts +8618 -1
- package/dist/src/features/chat/api-slice.d.ts +1567 -32
- package/dist/src/features/chat/chat-slice.d.ts +4 -7
- package/dist/{features/core → src/features/chat-files}/api-slice.d.ts +47 -26
- package/dist/src/features/chat-files/types.d.ts +32 -0
- package/dist/src/features/chat-history/api-slice.d.ts +518 -244
- package/dist/src/features/core/api-slice.d.ts +4261 -5
- package/dist/src/features/core/constants.d.ts +47 -0
- package/dist/src/features/core/custom-api-slice.d.ts +1458 -0
- package/dist/src/features/core/custom-public-image-asset-api-slice.d.ts +333 -0
- package/dist/src/features/core/types.d.ts +60 -0
- package/dist/src/features/credentials/api-slice.d.ts +2343 -84
- package/dist/src/features/credentials/constants.d.ts +28 -0
- package/dist/src/features/credentials/custom-api-slice.d.ts +1284 -0
- package/dist/src/features/credentials/types.d.ts +16 -0
- package/dist/src/features/custom-domain/api-slice.d.ts +602 -0
- package/dist/src/features/custom-domain/constants.d.ts +20 -0
- package/dist/src/features/custom-domain/types.d.ts +46 -0
- package/dist/src/features/datasets/api-slice.d.ts +352 -43
- package/dist/src/features/disclaimers/api-slice.d.ts +912 -0
- package/dist/src/features/disclaimers/constants.d.ts +27 -0
- package/dist/src/features/disclaimers/index.d.ts +3 -0
- package/dist/src/features/disclaimers/types.d.ts +67 -0
- package/dist/src/features/edx-proctoring/api-slice.d.ts +590 -0
- package/dist/src/features/edx-proctoring/constants.d.ts +15 -0
- package/dist/src/features/edx-proctoring/types.d.ts +61 -0
- package/dist/src/features/llms/api-slice.d.ts +89 -23
- package/dist/src/features/memory/api-slice.d.ts +2129 -0
- package/dist/src/features/memory/constants.d.ts +50 -0
- package/dist/src/features/memory/index.d.ts +3 -0
- package/dist/src/features/memory/types.d.ts +122 -0
- package/dist/src/features/mentor/api-slice.d.ts +4126 -146
- package/dist/src/features/mentor/constants.d.ts +39 -0
- package/dist/src/features/mentor/custom-api-slice.d.ts +796 -0
- package/dist/src/features/mentor/types.d.ts +77 -0
- package/dist/src/features/mentor-categories/api-slice.d.ts +463 -23
- package/dist/src/features/notifications/api-slice.d.ts +1600 -0
- package/dist/src/features/notifications/constants.d.ts +26 -0
- package/dist/src/features/notifications/custom-api-slice.d.ts +996 -0
- package/dist/src/features/notifications/types.d.ts +69 -0
- package/dist/src/features/per-learner/api-slice.d.ts +1213 -0
- package/dist/src/features/platform/api-slice.d.ts +944 -70
- package/dist/src/features/platform/constants.d.ts +17 -0
- package/dist/src/features/platform/custom-api-slice.d.ts +493 -0
- package/dist/src/features/platform/types.d.ts +48 -0
- package/dist/src/features/projects/api-slice.d.ts +2026 -0
- package/dist/src/features/projects/constants.d.ts +51 -0
- package/dist/src/features/projects/types.d.ts +79 -0
- package/dist/src/features/prompts/api-slice.d.ts +1357 -73
- package/dist/src/features/reports/api-slice.d.ts +814 -0
- package/dist/{features/prompts/api-slice.d.ts → src/features/search/ai-search-api-slice.d.ts} +161 -160
- package/dist/src/features/search/api-slice.d.ts +1939 -0
- package/dist/src/features/search/constants.d.ts +31 -0
- package/dist/src/features/search/types.d.ts +89 -0
- package/dist/src/features/sessions/api-slice.d.ts +705 -0
- package/dist/src/features/skills/api-slice.d.ts +505 -65
- package/dist/src/features/stripe/api-slice.d.ts +781 -0
- package/dist/src/features/stripe/constants.d.ts +19 -0
- package/dist/src/features/stripe/types.d.ts +19 -0
- package/dist/src/features/tenant/api-slice.d.ts +261 -47
- package/dist/src/features/tenant/constants.d.ts +1 -1
- package/dist/src/features/tenant/types.d.ts +1 -0
- package/dist/src/features/tenant-logo/api-slice.d.ts +349 -0
- package/dist/src/features/tenant-logo/constants.d.ts +24 -0
- package/dist/src/features/tools/api-slice.d.ts +133 -23
- package/dist/src/features/training-documents/api-slice.d.ts +731 -52
- package/dist/src/features/user/api-slice.d.ts +1457 -22
- package/dist/src/features/user/constants.d.ts +32 -1
- package/dist/src/features/user/types.d.ts +65 -2
- package/dist/src/features/user-invitations/api-slice.d.ts +346 -56
- package/dist/src/features/utils.d.ts +31 -8
- package/dist/src/index.d.ts +78 -23
- package/dist/src/reducers/index.d.ts +1 -0
- package/dist/src/reducers/mentor.d.ts +2 -120
- package/dist/src/reducers/skills.d.ts +2 -0
- package/dist/src/services/StorageService.d.ts +1 -1
- package/dist/src/utils/index.d.ts +2 -2
- package/dist/tests/features/analytics/api-slice.test.d.ts +1 -0
- package/dist/tests/features/analytics/constants.test.d.ts +1 -0
- package/dist/tests/features/user/api-slice.test.d.ts +1 -0
- package/dist/tests/features/user/constants.test.d.ts +1 -0
- package/dist/tests/setupTests.d.ts +1 -0
- package/package.json +26 -15
- package/dist/config.d.ts +0 -5
- package/dist/constants.d.ts +0 -31
- package/dist/core/index.d.ts +0 -4
- package/dist/features/chat/api-slice.d.ts +0 -1278
- package/dist/features/chat/chat-slice.d.ts +0 -15
- package/dist/features/chat-history/api-slice.d.ts +0 -956
- package/dist/features/chat-history/constants.d.ts +0 -3
- package/dist/features/credentials/api-slice.d.ts +0 -531
- package/dist/features/datasets/api-slice.d.ts +0 -267
- package/dist/features/index.d.ts +0 -1
- package/dist/features/llms/api-slice.d.ts +0 -267
- package/dist/features/mentor/api-slice.d.ts +0 -1816
- package/dist/features/mentor-categories/api-slice.d.ts +0 -267
- package/dist/features/platform/api-slice.d.ts +0 -735
- package/dist/features/skills/api-slice.d.ts +0 -795
- package/dist/features/tenant/api-slice.d.ts +0 -536
- package/dist/features/tenant/constants.d.ts +0 -11
- package/dist/features/tenant/types.d.ts +0 -18
- package/dist/features/tools/api-slice.d.ts +0 -267
- package/dist/features/training-documents/api-slice.d.ts +0 -750
- package/dist/features/user/api-slice.d.ts +0 -751
- package/dist/features/user/constants.d.ts +0 -19
- package/dist/features/user/types.d.ts +0 -64
- package/dist/features/user-invitations/api-slice.d.ts +0 -428
- package/dist/features/utils.d.ts +0 -46
- package/dist/node_modules/@iblai/iblai-api/src/core/ApiError.d.ts +0 -10
- package/dist/node_modules/@iblai/iblai-api/src/core/ApiRequestOptions.d.ts +0 -13
- package/dist/node_modules/@iblai/iblai-api/src/core/ApiResult.d.ts +0 -7
- package/dist/node_modules/@iblai/iblai-api/src/core/CancelablePromise.d.ts +0 -20
- package/dist/node_modules/@iblai/iblai-api/src/core/OpenAPI.d.ts +0 -16
- package/dist/node_modules/@iblai/iblai-api/src/core/request.d.ts +0 -30
- package/dist/reducers/index.d.ts +0 -1
- package/dist/reducers/mentor.d.ts +0 -135
- package/dist/services/StorageService.d.ts +0 -5
- package/dist/src/features/chat-history/constants.d.ts +0 -8
- package/dist/utils/index.d.ts +0 -2
- /package/dist/{features/catalog/api-slice.d.ts → src/__tests__/constants.test.d.ts} +0 -0
- /package/dist/{features → src/features}/constants.d.ts +0 -0
|
@@ -1,9 +1,34 @@
|
|
|
1
|
-
export declare const trainingDocumentsApiSlice: import("@reduxjs/toolkit/query").Api<import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2
|
-
getTrainingDocuments: import("@reduxjs/toolkit/query").QueryDefinition<
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
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
|
+
getTrainingDocuments: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3
|
+
org: string;
|
|
4
|
+
pathway: string;
|
|
5
|
+
limit?: number;
|
|
6
|
+
offset?: number;
|
|
7
|
+
search?: string;
|
|
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
|
+
addTrainingDocument: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
10
|
+
org: string;
|
|
11
|
+
formData: import("@iblai/iblai-api").TrainDocumentViewRequest;
|
|
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
|
+
editTrainingDocument: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
14
|
+
documentId: string;
|
|
15
|
+
org: string;
|
|
16
|
+
formData: import("@iblai/iblai-api").RetrieverDocumentEmbeddingRequest;
|
|
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
|
+
deleteTrainingDocument: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
19
|
+
documentId: string;
|
|
20
|
+
org: string;
|
|
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>;
|
|
7
32
|
export declare const useGetTrainingDocumentsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
8
33
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
9
34
|
originalArgs?: undefined | undefined;
|
|
@@ -14,7 +39,7 @@ export declare const useGetTrainingDocumentsQuery: <R extends Record<string, any
|
|
|
14
39
|
startedTimeStamp?: undefined | undefined;
|
|
15
40
|
fulfilledTimeStamp?: undefined | undefined;
|
|
16
41
|
} & {
|
|
17
|
-
currentData?: import("@iblai/iblai-api").
|
|
42
|
+
currentData?: import("@iblai/iblai-api").PaginatedRetrieverDocumentEmbeddingList | undefined;
|
|
18
43
|
isUninitialized: false;
|
|
19
44
|
isLoading: false;
|
|
20
45
|
isFetching: false;
|
|
@@ -22,8 +47,14 @@ export declare const useGetTrainingDocumentsQuery: <R extends Record<string, any
|
|
|
22
47
|
isError: false;
|
|
23
48
|
}, "isUninitialized"> & {
|
|
24
49
|
isUninitialized: true;
|
|
25
|
-
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
26
|
-
|
|
50
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
51
|
+
org: string;
|
|
52
|
+
pathway: string;
|
|
53
|
+
limit?: number;
|
|
54
|
+
offset?: number;
|
|
55
|
+
search?: string;
|
|
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>> & {
|
|
57
|
+
currentData?: import("@iblai/iblai-api").PaginatedRetrieverDocumentEmbeddingList | undefined;
|
|
27
58
|
isUninitialized: false;
|
|
28
59
|
isLoading: false;
|
|
29
60
|
isFetching: false;
|
|
@@ -37,8 +68,14 @@ export declare const useGetTrainingDocumentsQuery: <R extends Record<string, any
|
|
|
37
68
|
isSuccess: true;
|
|
38
69
|
isFetching: true;
|
|
39
70
|
error: undefined;
|
|
40
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
41
|
-
|
|
71
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
72
|
+
org: string;
|
|
73
|
+
pathway: string;
|
|
74
|
+
limit?: number;
|
|
75
|
+
offset?: number;
|
|
76
|
+
search?: string;
|
|
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>> & {
|
|
78
|
+
currentData?: import("@iblai/iblai-api").PaginatedRetrieverDocumentEmbeddingList | undefined;
|
|
42
79
|
isUninitialized: false;
|
|
43
80
|
isLoading: false;
|
|
44
81
|
isFetching: false;
|
|
@@ -48,8 +85,14 @@ export declare const useGetTrainingDocumentsQuery: <R extends Record<string, any
|
|
|
48
85
|
isSuccess: true;
|
|
49
86
|
isFetching: false;
|
|
50
87
|
error: undefined;
|
|
51
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
52
|
-
|
|
88
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
89
|
+
org: string;
|
|
90
|
+
pathway: string;
|
|
91
|
+
limit?: number;
|
|
92
|
+
offset?: number;
|
|
93
|
+
search?: string;
|
|
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>> & {
|
|
95
|
+
currentData?: import("@iblai/iblai-api").PaginatedRetrieverDocumentEmbeddingList | undefined;
|
|
53
96
|
isUninitialized: false;
|
|
54
97
|
isLoading: false;
|
|
55
98
|
isFetching: false;
|
|
@@ -57,8 +100,14 @@ export declare const useGetTrainingDocumentsQuery: <R extends Record<string, any
|
|
|
57
100
|
isError: false;
|
|
58
101
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
59
102
|
isError: true;
|
|
60
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
61
|
-
|
|
103
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
104
|
+
org: string;
|
|
105
|
+
pathway: string;
|
|
106
|
+
limit?: number;
|
|
107
|
+
offset?: number;
|
|
108
|
+
search?: string;
|
|
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>> & {
|
|
110
|
+
currentData?: import("@iblai/iblai-api").PaginatedRetrieverDocumentEmbeddingList | undefined;
|
|
62
111
|
isUninitialized: false;
|
|
63
112
|
isLoading: false;
|
|
64
113
|
isFetching: false;
|
|
@@ -66,7 +115,13 @@ export declare const useGetTrainingDocumentsQuery: <R extends Record<string, any
|
|
|
66
115
|
isError: false;
|
|
67
116
|
}, "error">>)>> & {
|
|
68
117
|
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
69
|
-
}>(arg:
|
|
118
|
+
}>(arg: {
|
|
119
|
+
org: string;
|
|
120
|
+
pathway: string;
|
|
121
|
+
limit?: number;
|
|
122
|
+
offset?: number;
|
|
123
|
+
search?: string;
|
|
124
|
+
} | typeof import("@reduxjs/toolkit/query").skipToken, options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & {
|
|
70
125
|
skip?: boolean;
|
|
71
126
|
refetchOnMountOrArgChange?: boolean | number;
|
|
72
127
|
} & {
|
|
@@ -81,7 +136,7 @@ export declare const useGetTrainingDocumentsQuery: <R extends Record<string, any
|
|
|
81
136
|
startedTimeStamp?: undefined | undefined;
|
|
82
137
|
fulfilledTimeStamp?: undefined | undefined;
|
|
83
138
|
} & {
|
|
84
|
-
currentData?: import("@iblai/iblai-api").
|
|
139
|
+
currentData?: import("@iblai/iblai-api").PaginatedRetrieverDocumentEmbeddingList | undefined;
|
|
85
140
|
isUninitialized: false;
|
|
86
141
|
isLoading: false;
|
|
87
142
|
isFetching: false;
|
|
@@ -89,8 +144,14 @@ export declare const useGetTrainingDocumentsQuery: <R extends Record<string, any
|
|
|
89
144
|
isError: false;
|
|
90
145
|
}, "isUninitialized"> & {
|
|
91
146
|
isUninitialized: true;
|
|
92
|
-
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
93
|
-
|
|
147
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
148
|
+
org: string;
|
|
149
|
+
pathway: string;
|
|
150
|
+
limit?: number;
|
|
151
|
+
offset?: number;
|
|
152
|
+
search?: string;
|
|
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>> & {
|
|
154
|
+
currentData?: import("@iblai/iblai-api").PaginatedRetrieverDocumentEmbeddingList | undefined;
|
|
94
155
|
isUninitialized: false;
|
|
95
156
|
isLoading: false;
|
|
96
157
|
isFetching: false;
|
|
@@ -104,8 +165,14 @@ export declare const useGetTrainingDocumentsQuery: <R extends Record<string, any
|
|
|
104
165
|
isSuccess: true;
|
|
105
166
|
isFetching: true;
|
|
106
167
|
error: undefined;
|
|
107
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
108
|
-
|
|
168
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
169
|
+
org: string;
|
|
170
|
+
pathway: string;
|
|
171
|
+
limit?: number;
|
|
172
|
+
offset?: number;
|
|
173
|
+
search?: string;
|
|
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>> & {
|
|
175
|
+
currentData?: import("@iblai/iblai-api").PaginatedRetrieverDocumentEmbeddingList | undefined;
|
|
109
176
|
isUninitialized: false;
|
|
110
177
|
isLoading: false;
|
|
111
178
|
isFetching: false;
|
|
@@ -115,8 +182,14 @@ export declare const useGetTrainingDocumentsQuery: <R extends Record<string, any
|
|
|
115
182
|
isSuccess: true;
|
|
116
183
|
isFetching: false;
|
|
117
184
|
error: undefined;
|
|
118
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
119
|
-
|
|
185
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
186
|
+
org: string;
|
|
187
|
+
pathway: string;
|
|
188
|
+
limit?: number;
|
|
189
|
+
offset?: number;
|
|
190
|
+
search?: string;
|
|
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>> & {
|
|
192
|
+
currentData?: import("@iblai/iblai-api").PaginatedRetrieverDocumentEmbeddingList | undefined;
|
|
120
193
|
isUninitialized: false;
|
|
121
194
|
isLoading: false;
|
|
122
195
|
isFetching: false;
|
|
@@ -124,8 +197,14 @@ export declare const useGetTrainingDocumentsQuery: <R extends Record<string, any
|
|
|
124
197
|
isError: false;
|
|
125
198
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
126
199
|
isError: true;
|
|
127
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
128
|
-
|
|
200
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
201
|
+
org: string;
|
|
202
|
+
pathway: string;
|
|
203
|
+
limit?: number;
|
|
204
|
+
offset?: number;
|
|
205
|
+
search?: string;
|
|
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>> & {
|
|
207
|
+
currentData?: import("@iblai/iblai-api").PaginatedRetrieverDocumentEmbeddingList | undefined;
|
|
129
208
|
isUninitialized: false;
|
|
130
209
|
isLoading: false;
|
|
131
210
|
isFetching: false;
|
|
@@ -135,7 +214,13 @@ export declare const useGetTrainingDocumentsQuery: <R extends Record<string, any
|
|
|
135
214
|
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
136
215
|
}) => R) | undefined;
|
|
137
216
|
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
138
|
-
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
217
|
+
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
218
|
+
org: string;
|
|
219
|
+
pathway: string;
|
|
220
|
+
limit?: number;
|
|
221
|
+
offset?: number;
|
|
222
|
+
search?: string;
|
|
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>>;
|
|
139
224
|
}, useLazyGetTrainingDocumentsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
140
225
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
141
226
|
originalArgs?: undefined | undefined;
|
|
@@ -146,7 +231,7 @@ export declare const useGetTrainingDocumentsQuery: <R extends Record<string, any
|
|
|
146
231
|
startedTimeStamp?: undefined | undefined;
|
|
147
232
|
fulfilledTimeStamp?: undefined | undefined;
|
|
148
233
|
} & {
|
|
149
|
-
currentData?: import("@iblai/iblai-api").
|
|
234
|
+
currentData?: import("@iblai/iblai-api").PaginatedRetrieverDocumentEmbeddingList | undefined;
|
|
150
235
|
isUninitialized: false;
|
|
151
236
|
isLoading: false;
|
|
152
237
|
isFetching: false;
|
|
@@ -154,8 +239,14 @@ export declare const useGetTrainingDocumentsQuery: <R extends Record<string, any
|
|
|
154
239
|
isError: false;
|
|
155
240
|
}, "isUninitialized"> & {
|
|
156
241
|
isUninitialized: true;
|
|
157
|
-
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
158
|
-
|
|
242
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
243
|
+
org: string;
|
|
244
|
+
pathway: string;
|
|
245
|
+
limit?: number;
|
|
246
|
+
offset?: number;
|
|
247
|
+
search?: string;
|
|
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>> & {
|
|
249
|
+
currentData?: import("@iblai/iblai-api").PaginatedRetrieverDocumentEmbeddingList | undefined;
|
|
159
250
|
isUninitialized: false;
|
|
160
251
|
isLoading: false;
|
|
161
252
|
isFetching: false;
|
|
@@ -169,8 +260,14 @@ export declare const useGetTrainingDocumentsQuery: <R extends Record<string, any
|
|
|
169
260
|
isSuccess: true;
|
|
170
261
|
isFetching: true;
|
|
171
262
|
error: undefined;
|
|
172
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
173
|
-
|
|
263
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
264
|
+
org: string;
|
|
265
|
+
pathway: string;
|
|
266
|
+
limit?: number;
|
|
267
|
+
offset?: number;
|
|
268
|
+
search?: string;
|
|
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>> & {
|
|
270
|
+
currentData?: import("@iblai/iblai-api").PaginatedRetrieverDocumentEmbeddingList | undefined;
|
|
174
271
|
isUninitialized: false;
|
|
175
272
|
isLoading: false;
|
|
176
273
|
isFetching: false;
|
|
@@ -180,8 +277,14 @@ export declare const useGetTrainingDocumentsQuery: <R extends Record<string, any
|
|
|
180
277
|
isSuccess: true;
|
|
181
278
|
isFetching: false;
|
|
182
279
|
error: undefined;
|
|
183
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
184
|
-
|
|
280
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
281
|
+
org: string;
|
|
282
|
+
pathway: string;
|
|
283
|
+
limit?: number;
|
|
284
|
+
offset?: number;
|
|
285
|
+
search?: string;
|
|
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>> & {
|
|
287
|
+
currentData?: import("@iblai/iblai-api").PaginatedRetrieverDocumentEmbeddingList | undefined;
|
|
185
288
|
isUninitialized: false;
|
|
186
289
|
isLoading: false;
|
|
187
290
|
isFetching: false;
|
|
@@ -189,8 +292,14 @@ export declare const useGetTrainingDocumentsQuery: <R extends Record<string, any
|
|
|
189
292
|
isError: false;
|
|
190
293
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
191
294
|
isError: true;
|
|
192
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
193
|
-
|
|
295
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
296
|
+
org: string;
|
|
297
|
+
pathway: string;
|
|
298
|
+
limit?: number;
|
|
299
|
+
offset?: number;
|
|
300
|
+
search?: string;
|
|
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>> & {
|
|
302
|
+
currentData?: import("@iblai/iblai-api").PaginatedRetrieverDocumentEmbeddingList | undefined;
|
|
194
303
|
isUninitialized: false;
|
|
195
304
|
isLoading: false;
|
|
196
305
|
isFetching: false;
|
|
@@ -210,7 +319,7 @@ export declare const useGetTrainingDocumentsQuery: <R extends Record<string, any
|
|
|
210
319
|
startedTimeStamp?: undefined | undefined;
|
|
211
320
|
fulfilledTimeStamp?: undefined | undefined;
|
|
212
321
|
} & {
|
|
213
|
-
currentData?: import("@iblai/iblai-api").
|
|
322
|
+
currentData?: import("@iblai/iblai-api").PaginatedRetrieverDocumentEmbeddingList | undefined;
|
|
214
323
|
isUninitialized: false;
|
|
215
324
|
isLoading: false;
|
|
216
325
|
isFetching: false;
|
|
@@ -218,8 +327,14 @@ export declare const useGetTrainingDocumentsQuery: <R extends Record<string, any
|
|
|
218
327
|
isError: false;
|
|
219
328
|
}, "isUninitialized"> & {
|
|
220
329
|
isUninitialized: true;
|
|
221
|
-
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
222
|
-
|
|
330
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
331
|
+
org: string;
|
|
332
|
+
pathway: string;
|
|
333
|
+
limit?: number;
|
|
334
|
+
offset?: number;
|
|
335
|
+
search?: string;
|
|
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>> & {
|
|
337
|
+
currentData?: import("@iblai/iblai-api").PaginatedRetrieverDocumentEmbeddingList | undefined;
|
|
223
338
|
isUninitialized: false;
|
|
224
339
|
isLoading: false;
|
|
225
340
|
isFetching: false;
|
|
@@ -233,8 +348,14 @@ export declare const useGetTrainingDocumentsQuery: <R extends Record<string, any
|
|
|
233
348
|
isSuccess: true;
|
|
234
349
|
isFetching: true;
|
|
235
350
|
error: undefined;
|
|
236
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
237
|
-
|
|
351
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
352
|
+
org: string;
|
|
353
|
+
pathway: string;
|
|
354
|
+
limit?: number;
|
|
355
|
+
offset?: number;
|
|
356
|
+
search?: string;
|
|
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>> & {
|
|
358
|
+
currentData?: import("@iblai/iblai-api").PaginatedRetrieverDocumentEmbeddingList | undefined;
|
|
238
359
|
isUninitialized: false;
|
|
239
360
|
isLoading: false;
|
|
240
361
|
isFetching: false;
|
|
@@ -244,8 +365,14 @@ export declare const useGetTrainingDocumentsQuery: <R extends Record<string, any
|
|
|
244
365
|
isSuccess: true;
|
|
245
366
|
isFetching: false;
|
|
246
367
|
error: undefined;
|
|
247
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
248
|
-
|
|
368
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
369
|
+
org: string;
|
|
370
|
+
pathway: string;
|
|
371
|
+
limit?: number;
|
|
372
|
+
offset?: number;
|
|
373
|
+
search?: string;
|
|
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>> & {
|
|
375
|
+
currentData?: import("@iblai/iblai-api").PaginatedRetrieverDocumentEmbeddingList | undefined;
|
|
249
376
|
isUninitialized: false;
|
|
250
377
|
isLoading: false;
|
|
251
378
|
isFetching: false;
|
|
@@ -253,8 +380,14 @@ export declare const useGetTrainingDocumentsQuery: <R extends Record<string, any
|
|
|
253
380
|
isError: false;
|
|
254
381
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
255
382
|
isError: true;
|
|
256
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
257
|
-
|
|
383
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
384
|
+
org: string;
|
|
385
|
+
pathway: string;
|
|
386
|
+
limit?: number;
|
|
387
|
+
offset?: number;
|
|
388
|
+
search?: string;
|
|
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>> & {
|
|
390
|
+
currentData?: import("@iblai/iblai-api").PaginatedRetrieverDocumentEmbeddingList | undefined;
|
|
258
391
|
isUninitialized: false;
|
|
259
392
|
isLoading: false;
|
|
260
393
|
isFetching: false;
|
|
@@ -263,10 +396,28 @@ export declare const useGetTrainingDocumentsQuery: <R extends Record<string, any
|
|
|
263
396
|
}, "error">>)>> & {
|
|
264
397
|
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
265
398
|
}) => R) | undefined;
|
|
266
|
-
}, "skip">) | undefined) => [(arg:
|
|
399
|
+
}, "skip">) | undefined) => [(arg: {
|
|
400
|
+
org: string;
|
|
401
|
+
pathway: string;
|
|
402
|
+
limit?: number;
|
|
403
|
+
offset?: number;
|
|
404
|
+
search?: string;
|
|
405
|
+
}, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
406
|
+
org: string;
|
|
407
|
+
pathway: string;
|
|
408
|
+
limit?: number;
|
|
409
|
+
offset?: number;
|
|
410
|
+
search?: string;
|
|
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] & {
|
|
267
412
|
reset: () => void;
|
|
268
413
|
}, {
|
|
269
|
-
lastArg:
|
|
414
|
+
lastArg: {
|
|
415
|
+
org: string;
|
|
416
|
+
pathway: string;
|
|
417
|
+
limit?: number;
|
|
418
|
+
offset?: number;
|
|
419
|
+
search?: string;
|
|
420
|
+
};
|
|
270
421
|
}], useAddTrainingDocumentMutation: <R extends Record<string, any> = ({
|
|
271
422
|
requestId?: undefined;
|
|
272
423
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
@@ -424,8 +575,17 @@ export declare const useGetTrainingDocumentsQuery: <R extends Record<string, any
|
|
|
424
575
|
isError: true;
|
|
425
576
|
})) => R) | undefined;
|
|
426
577
|
fixedCacheKey?: string;
|
|
427
|
-
} | undefined) => readonly [(arg:
|
|
428
|
-
|
|
578
|
+
} | undefined) => readonly [(arg: {
|
|
579
|
+
org: string;
|
|
580
|
+
formData: import("@iblai/iblai-api").TrainDocumentViewRequest;
|
|
581
|
+
}) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
582
|
+
org: string;
|
|
583
|
+
formData: import("@iblai/iblai-api").TrainDocumentViewRequest;
|
|
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> & {
|
|
585
|
+
originalArgs?: {
|
|
586
|
+
org: string;
|
|
587
|
+
formData: import("@iblai/iblai-api").TrainDocumentViewRequest;
|
|
588
|
+
} | undefined;
|
|
429
589
|
reset: () => void;
|
|
430
590
|
}], useEditTrainingDocumentMutation: <R extends Record<string, any> = ({
|
|
431
591
|
requestId?: undefined;
|
|
@@ -584,8 +744,20 @@ export declare const useGetTrainingDocumentsQuery: <R extends Record<string, any
|
|
|
584
744
|
isError: true;
|
|
585
745
|
})) => R) | undefined;
|
|
586
746
|
fixedCacheKey?: string;
|
|
587
|
-
} | undefined) => readonly [(arg:
|
|
588
|
-
|
|
747
|
+
} | undefined) => readonly [(arg: {
|
|
748
|
+
documentId: string;
|
|
749
|
+
org: string;
|
|
750
|
+
formData: import("@iblai/iblai-api").RetrieverDocumentEmbeddingRequest;
|
|
751
|
+
}) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
752
|
+
documentId: string;
|
|
753
|
+
org: string;
|
|
754
|
+
formData: import("@iblai/iblai-api").RetrieverDocumentEmbeddingRequest;
|
|
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> & {
|
|
756
|
+
originalArgs?: {
|
|
757
|
+
documentId: string;
|
|
758
|
+
org: string;
|
|
759
|
+
formData: import("@iblai/iblai-api").RetrieverDocumentEmbeddingRequest;
|
|
760
|
+
} | undefined;
|
|
589
761
|
reset: () => void;
|
|
590
762
|
}], useDeleteTrainingDocumentMutation: <R extends Record<string, any> = ({
|
|
591
763
|
requestId?: undefined;
|
|
@@ -744,7 +916,514 @@ export declare const useGetTrainingDocumentsQuery: <R extends Record<string, any
|
|
|
744
916
|
isError: true;
|
|
745
917
|
})) => R) | undefined;
|
|
746
918
|
fixedCacheKey?: string;
|
|
747
|
-
} | undefined) => readonly [(arg:
|
|
748
|
-
|
|
919
|
+
} | undefined) => readonly [(arg: {
|
|
920
|
+
documentId: string;
|
|
921
|
+
org: string;
|
|
922
|
+
}) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
923
|
+
documentId: string;
|
|
924
|
+
org: string;
|
|
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> & {
|
|
1423
|
+
originalArgs?: {
|
|
1424
|
+
documentId: string;
|
|
1425
|
+
org: string;
|
|
1426
|
+
requestBody?: import("@iblai/iblai-api").DocumentSettingsResponse;
|
|
1427
|
+
} | undefined;
|
|
749
1428
|
reset: () => void;
|
|
750
1429
|
}];
|