@iblai/data-layer 0.0.4 → 0.2.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 +39165 -23
- package/dist/index.esm.js +23977 -16560
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +24138 -16560
- package/dist/index.js.map +1 -1
- package/dist/package.json +82 -0
- package/dist/src/config.d.ts +2 -0
- package/dist/src/constants.d.ts +2 -3
- package/dist/src/features/analytics/api-slice.d.ts +1600 -0
- package/dist/src/features/analytics/constants.d.ts +66 -0
- package/dist/src/features/analytics/types.d.ts +100 -0
- package/dist/src/features/api-keys/api-slice.d.ts +104 -33
- package/dist/src/features/apps/api-slice.d.ts +683 -0
- package/dist/src/features/auth/api-slice.d.ts +137 -0
- package/dist/src/features/auth/constants.d.ts +8 -0
- package/dist/src/features/auth/types.d.ts +13 -0
- package/dist/src/features/billing/api-slice.d.ts +349 -0
- package/dist/{features/api-keys → src/features/career}/api-slice.d.ts +392 -299
- package/dist/src/features/catalog/api-slice.d.ts +6602 -1
- package/dist/src/features/chat/api-slice.d.ts +1566 -31
- package/dist/src/features/chat/chat-slice.d.ts +4 -7
- package/dist/src/features/chat-history/api-slice.d.ts +517 -243
- package/dist/src/features/core/api-slice.d.ts +493 -4
- package/dist/src/features/core/constants.d.ts +4 -0
- package/dist/src/features/credentials/api-slice.d.ts +1661 -63
- 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/datasets/api-slice.d.ts +351 -42
- package/dist/src/features/llms/api-slice.d.ts +88 -22
- package/dist/src/features/memory/api-slice.d.ts +1222 -0
- package/dist/src/features/mentor/api-slice.d.ts +2628 -146
- package/dist/src/features/mentor/constants.d.ts +31 -0
- package/dist/src/features/mentor/custom-api-slice.d.ts +268 -0
- package/dist/src/features/mentor/types.d.ts +38 -0
- package/dist/src/features/mentor-categories/api-slice.d.ts +66 -22
- package/dist/src/features/notifications/api-slice.d.ts +946 -0
- package/dist/src/features/per-learner/api-slice.d.ts +1213 -0
- package/dist/src/features/platform/api-slice.d.ts +769 -49
- package/dist/src/features/prompts/api-slice.d.ts +1334 -72
- package/dist/src/features/search/api-slice.d.ts +1939 -0
- package/dist/src/features/sessions/api-slice.d.ts +705 -0
- package/dist/src/features/skills/api-slice.d.ts +504 -64
- package/dist/src/features/stripe/api-slice.d.ts +620 -0
- package/dist/src/features/stripe/constants.d.ts +15 -0
- package/dist/src/features/stripe/types.d.ts +9 -0
- package/dist/src/features/tenant/api-slice.d.ts +268 -45
- package/dist/src/features/tenant/constants.d.ts +1 -1
- 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 +88 -22
- package/dist/src/features/training-documents/api-slice.d.ts +223 -51
- package/dist/src/features/user/api-slice.d.ts +1457 -22
- package/dist/src/features/user/constants.d.ts +30 -1
- package/dist/src/features/user/types.d.ts +65 -2
- package/dist/src/features/user-invitations/api-slice.d.ts +345 -55
- package/dist/src/features/utils.d.ts +25 -5
- package/dist/src/index.d.ts +24 -0
- 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 +1128 -0
- package/dist/src/utils/index.d.ts +2 -2
- 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 +31 -25
- 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 -956
- 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/core/api-slice.d.ts +0 -164
- 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/prompts/api-slice.d.ts +0 -1014
- 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 → src/features}/constants.d.ts +0 -0
- /package/dist/{features/catalog/api-slice.d.ts → tests/features/analytics/api-slice.test.d.ts} +0 -0
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
export declare const llmsApiSlice: import("@reduxjs/toolkit/query").Api<import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, {
|
|
2
|
-
getLlms: import("@reduxjs/toolkit/query").QueryDefinition<
|
|
3
|
-
|
|
2
|
+
getLlms: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3
|
+
org: string;
|
|
4
|
+
mentorId?: string;
|
|
5
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, never, import("@iblai/iblai-api").LLMResponse[], "llmsApiSlice", any>;
|
|
6
|
+
}, "llmsApiSlice", never, typeof import("@reduxjs/toolkit/query").coreModuleName | typeof import("@reduxjs/toolkit/dist/query/react").reactHooksModuleName>;
|
|
4
7
|
export declare const useGetLlmsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
5
8
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
6
9
|
originalArgs?: undefined | undefined;
|
|
@@ -19,7 +22,10 @@ export declare const useGetLlmsQuery: <R extends Record<string, any> = import("@
|
|
|
19
22
|
isError: false;
|
|
20
23
|
}, "isUninitialized"> & {
|
|
21
24
|
isUninitialized: true;
|
|
22
|
-
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
25
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
26
|
+
org: string;
|
|
27
|
+
mentorId?: string;
|
|
28
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, never, import("@iblai/iblai-api").LLMResponse[], "llmsApiSlice", any>> & {
|
|
23
29
|
currentData?: import("@iblai/iblai-api").LLMResponse[] | undefined;
|
|
24
30
|
isUninitialized: false;
|
|
25
31
|
isLoading: false;
|
|
@@ -34,7 +40,10 @@ export declare const useGetLlmsQuery: <R extends Record<string, any> = import("@
|
|
|
34
40
|
isSuccess: true;
|
|
35
41
|
isFetching: true;
|
|
36
42
|
error: undefined;
|
|
37
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
43
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
44
|
+
org: string;
|
|
45
|
+
mentorId?: string;
|
|
46
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, never, import("@iblai/iblai-api").LLMResponse[], "llmsApiSlice", any>> & {
|
|
38
47
|
currentData?: import("@iblai/iblai-api").LLMResponse[] | undefined;
|
|
39
48
|
isUninitialized: false;
|
|
40
49
|
isLoading: false;
|
|
@@ -45,7 +54,10 @@ export declare const useGetLlmsQuery: <R extends Record<string, any> = import("@
|
|
|
45
54
|
isSuccess: true;
|
|
46
55
|
isFetching: false;
|
|
47
56
|
error: undefined;
|
|
48
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
57
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
58
|
+
org: string;
|
|
59
|
+
mentorId?: string;
|
|
60
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, never, import("@iblai/iblai-api").LLMResponse[], "llmsApiSlice", any>> & {
|
|
49
61
|
currentData?: import("@iblai/iblai-api").LLMResponse[] | undefined;
|
|
50
62
|
isUninitialized: false;
|
|
51
63
|
isLoading: false;
|
|
@@ -54,7 +66,10 @@ export declare const useGetLlmsQuery: <R extends Record<string, any> = import("@
|
|
|
54
66
|
isError: false;
|
|
55
67
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
56
68
|
isError: true;
|
|
57
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
69
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
70
|
+
org: string;
|
|
71
|
+
mentorId?: string;
|
|
72
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, never, import("@iblai/iblai-api").LLMResponse[], "llmsApiSlice", any>> & {
|
|
58
73
|
currentData?: import("@iblai/iblai-api").LLMResponse[] | undefined;
|
|
59
74
|
isUninitialized: false;
|
|
60
75
|
isLoading: false;
|
|
@@ -63,7 +78,10 @@ export declare const useGetLlmsQuery: <R extends Record<string, any> = import("@
|
|
|
63
78
|
isError: false;
|
|
64
79
|
}, "error">>)>> & {
|
|
65
80
|
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
66
|
-
}>(arg:
|
|
81
|
+
}>(arg: {
|
|
82
|
+
org: string;
|
|
83
|
+
mentorId?: string;
|
|
84
|
+
} | typeof import("@reduxjs/toolkit/query").skipToken, options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & {
|
|
67
85
|
skip?: boolean;
|
|
68
86
|
refetchOnMountOrArgChange?: boolean | number;
|
|
69
87
|
} & {
|
|
@@ -86,7 +104,10 @@ export declare const useGetLlmsQuery: <R extends Record<string, any> = import("@
|
|
|
86
104
|
isError: false;
|
|
87
105
|
}, "isUninitialized"> & {
|
|
88
106
|
isUninitialized: true;
|
|
89
|
-
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
107
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
108
|
+
org: string;
|
|
109
|
+
mentorId?: string;
|
|
110
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, never, import("@iblai/iblai-api").LLMResponse[], "llmsApiSlice", any>> & {
|
|
90
111
|
currentData?: import("@iblai/iblai-api").LLMResponse[] | undefined;
|
|
91
112
|
isUninitialized: false;
|
|
92
113
|
isLoading: false;
|
|
@@ -101,7 +122,10 @@ export declare const useGetLlmsQuery: <R extends Record<string, any> = import("@
|
|
|
101
122
|
isSuccess: true;
|
|
102
123
|
isFetching: true;
|
|
103
124
|
error: undefined;
|
|
104
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
125
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
126
|
+
org: string;
|
|
127
|
+
mentorId?: string;
|
|
128
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, never, import("@iblai/iblai-api").LLMResponse[], "llmsApiSlice", any>> & {
|
|
105
129
|
currentData?: import("@iblai/iblai-api").LLMResponse[] | undefined;
|
|
106
130
|
isUninitialized: false;
|
|
107
131
|
isLoading: false;
|
|
@@ -112,7 +136,10 @@ export declare const useGetLlmsQuery: <R extends Record<string, any> = import("@
|
|
|
112
136
|
isSuccess: true;
|
|
113
137
|
isFetching: false;
|
|
114
138
|
error: undefined;
|
|
115
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
139
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
140
|
+
org: string;
|
|
141
|
+
mentorId?: string;
|
|
142
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, never, import("@iblai/iblai-api").LLMResponse[], "llmsApiSlice", any>> & {
|
|
116
143
|
currentData?: import("@iblai/iblai-api").LLMResponse[] | undefined;
|
|
117
144
|
isUninitialized: false;
|
|
118
145
|
isLoading: false;
|
|
@@ -121,7 +148,10 @@ export declare const useGetLlmsQuery: <R extends Record<string, any> = import("@
|
|
|
121
148
|
isError: false;
|
|
122
149
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
123
150
|
isError: true;
|
|
124
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
151
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
152
|
+
org: string;
|
|
153
|
+
mentorId?: string;
|
|
154
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, never, import("@iblai/iblai-api").LLMResponse[], "llmsApiSlice", any>> & {
|
|
125
155
|
currentData?: import("@iblai/iblai-api").LLMResponse[] | undefined;
|
|
126
156
|
isUninitialized: false;
|
|
127
157
|
isLoading: false;
|
|
@@ -132,7 +162,10 @@ export declare const useGetLlmsQuery: <R extends Record<string, any> = import("@
|
|
|
132
162
|
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
133
163
|
}) => R) | undefined;
|
|
134
164
|
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
135
|
-
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
165
|
+
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
166
|
+
org: string;
|
|
167
|
+
mentorId?: string;
|
|
168
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, never, import("@iblai/iblai-api").LLMResponse[], "llmsApiSlice", any>>;
|
|
136
169
|
}, useLazyGetLlmsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
137
170
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
138
171
|
originalArgs?: undefined | undefined;
|
|
@@ -151,7 +184,10 @@ export declare const useGetLlmsQuery: <R extends Record<string, any> = import("@
|
|
|
151
184
|
isError: false;
|
|
152
185
|
}, "isUninitialized"> & {
|
|
153
186
|
isUninitialized: true;
|
|
154
|
-
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
187
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
188
|
+
org: string;
|
|
189
|
+
mentorId?: string;
|
|
190
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, never, import("@iblai/iblai-api").LLMResponse[], "llmsApiSlice", any>> & {
|
|
155
191
|
currentData?: import("@iblai/iblai-api").LLMResponse[] | undefined;
|
|
156
192
|
isUninitialized: false;
|
|
157
193
|
isLoading: false;
|
|
@@ -166,7 +202,10 @@ export declare const useGetLlmsQuery: <R extends Record<string, any> = import("@
|
|
|
166
202
|
isSuccess: true;
|
|
167
203
|
isFetching: true;
|
|
168
204
|
error: undefined;
|
|
169
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
205
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
206
|
+
org: string;
|
|
207
|
+
mentorId?: string;
|
|
208
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, never, import("@iblai/iblai-api").LLMResponse[], "llmsApiSlice", any>> & {
|
|
170
209
|
currentData?: import("@iblai/iblai-api").LLMResponse[] | undefined;
|
|
171
210
|
isUninitialized: false;
|
|
172
211
|
isLoading: false;
|
|
@@ -177,7 +216,10 @@ export declare const useGetLlmsQuery: <R extends Record<string, any> = import("@
|
|
|
177
216
|
isSuccess: true;
|
|
178
217
|
isFetching: false;
|
|
179
218
|
error: undefined;
|
|
180
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
219
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
220
|
+
org: string;
|
|
221
|
+
mentorId?: string;
|
|
222
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, never, import("@iblai/iblai-api").LLMResponse[], "llmsApiSlice", any>> & {
|
|
181
223
|
currentData?: import("@iblai/iblai-api").LLMResponse[] | undefined;
|
|
182
224
|
isUninitialized: false;
|
|
183
225
|
isLoading: false;
|
|
@@ -186,7 +228,10 @@ export declare const useGetLlmsQuery: <R extends Record<string, any> = import("@
|
|
|
186
228
|
isError: false;
|
|
187
229
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
188
230
|
isError: true;
|
|
189
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
231
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
232
|
+
org: string;
|
|
233
|
+
mentorId?: string;
|
|
234
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, never, import("@iblai/iblai-api").LLMResponse[], "llmsApiSlice", any>> & {
|
|
190
235
|
currentData?: import("@iblai/iblai-api").LLMResponse[] | undefined;
|
|
191
236
|
isUninitialized: false;
|
|
192
237
|
isLoading: false;
|
|
@@ -215,7 +260,10 @@ export declare const useGetLlmsQuery: <R extends Record<string, any> = import("@
|
|
|
215
260
|
isError: false;
|
|
216
261
|
}, "isUninitialized"> & {
|
|
217
262
|
isUninitialized: true;
|
|
218
|
-
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
263
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
264
|
+
org: string;
|
|
265
|
+
mentorId?: string;
|
|
266
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, never, import("@iblai/iblai-api").LLMResponse[], "llmsApiSlice", any>> & {
|
|
219
267
|
currentData?: import("@iblai/iblai-api").LLMResponse[] | undefined;
|
|
220
268
|
isUninitialized: false;
|
|
221
269
|
isLoading: false;
|
|
@@ -230,7 +278,10 @@ export declare const useGetLlmsQuery: <R extends Record<string, any> = import("@
|
|
|
230
278
|
isSuccess: true;
|
|
231
279
|
isFetching: true;
|
|
232
280
|
error: undefined;
|
|
233
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
281
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
282
|
+
org: string;
|
|
283
|
+
mentorId?: string;
|
|
284
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, never, import("@iblai/iblai-api").LLMResponse[], "llmsApiSlice", any>> & {
|
|
234
285
|
currentData?: import("@iblai/iblai-api").LLMResponse[] | undefined;
|
|
235
286
|
isUninitialized: false;
|
|
236
287
|
isLoading: false;
|
|
@@ -241,7 +292,10 @@ export declare const useGetLlmsQuery: <R extends Record<string, any> = import("@
|
|
|
241
292
|
isSuccess: true;
|
|
242
293
|
isFetching: false;
|
|
243
294
|
error: undefined;
|
|
244
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
295
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
296
|
+
org: string;
|
|
297
|
+
mentorId?: string;
|
|
298
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, never, import("@iblai/iblai-api").LLMResponse[], "llmsApiSlice", any>> & {
|
|
245
299
|
currentData?: import("@iblai/iblai-api").LLMResponse[] | undefined;
|
|
246
300
|
isUninitialized: false;
|
|
247
301
|
isLoading: false;
|
|
@@ -250,7 +304,10 @@ export declare const useGetLlmsQuery: <R extends Record<string, any> = import("@
|
|
|
250
304
|
isError: false;
|
|
251
305
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
252
306
|
isError: true;
|
|
253
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
307
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
308
|
+
org: string;
|
|
309
|
+
mentorId?: string;
|
|
310
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, never, import("@iblai/iblai-api").LLMResponse[], "llmsApiSlice", any>> & {
|
|
254
311
|
currentData?: import("@iblai/iblai-api").LLMResponse[] | undefined;
|
|
255
312
|
isUninitialized: false;
|
|
256
313
|
isLoading: false;
|
|
@@ -260,8 +317,17 @@ export declare const useGetLlmsQuery: <R extends Record<string, any> = import("@
|
|
|
260
317
|
}, "error">>)>> & {
|
|
261
318
|
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
262
319
|
}) => R) | undefined;
|
|
263
|
-
}, "skip">) | undefined) => [(arg:
|
|
320
|
+
}, "skip">) | undefined) => [(arg: {
|
|
321
|
+
org: string;
|
|
322
|
+
mentorId?: string;
|
|
323
|
+
}, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
324
|
+
org: string;
|
|
325
|
+
mentorId?: string;
|
|
326
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, never, import("@iblai/iblai-api").LLMResponse[], "llmsApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
264
327
|
reset: () => void;
|
|
265
328
|
}, {
|
|
266
|
-
lastArg:
|
|
329
|
+
lastArg: {
|
|
330
|
+
org: string;
|
|
331
|
+
mentorId?: string;
|
|
332
|
+
};
|
|
267
333
|
}];
|