@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,14 +1,20 @@
|
|
|
1
|
-
export declare const mentorCategoriesApiSlice: import("@reduxjs/toolkit/query").Api<import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
1
|
+
export declare const mentorCategoriesApiSlice: import("@reduxjs/toolkit/query").Api<import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2
|
+
attempt?: number;
|
|
3
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, {
|
|
2
4
|
getMentorCategories: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3
5
|
org: string;
|
|
4
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
6
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
7
|
+
attempt?: number;
|
|
8
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("@iblai/iblai-api").MentorCategory[], "mentorCategoriesApiSlice", any>;
|
|
5
9
|
getMentorCategoryGroups: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
6
10
|
org: string;
|
|
7
11
|
audience?: number;
|
|
8
12
|
audienceName?: string;
|
|
9
13
|
ordering?: string;
|
|
10
14
|
search?: string;
|
|
11
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
15
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
16
|
+
attempt?: number;
|
|
17
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("@iblai/iblai-api").MentorCategoryGroup[], "mentorCategoriesApiSlice", any>;
|
|
12
18
|
}, "mentorCategoriesApiSlice", never, typeof import("@reduxjs/toolkit/query").coreModuleName | typeof import("@reduxjs/toolkit/dist/query/react").reactHooksModuleName>;
|
|
13
19
|
export declare const useGetMentorCategoriesQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
14
20
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
@@ -30,7 +36,9 @@ export declare const useGetMentorCategoriesQuery: <R extends Record<string, any>
|
|
|
30
36
|
isUninitialized: true;
|
|
31
37
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
32
38
|
org: string;
|
|
33
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
39
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
40
|
+
attempt?: number;
|
|
41
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("@iblai/iblai-api").MentorCategory[], "mentorCategoriesApiSlice", any>> & {
|
|
34
42
|
currentData?: import("@iblai/iblai-api").MentorCategory[] | undefined;
|
|
35
43
|
isUninitialized: false;
|
|
36
44
|
isLoading: false;
|
|
@@ -47,7 +55,9 @@ export declare const useGetMentorCategoriesQuery: <R extends Record<string, any>
|
|
|
47
55
|
error: undefined;
|
|
48
56
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
49
57
|
org: string;
|
|
50
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
58
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
59
|
+
attempt?: number;
|
|
60
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("@iblai/iblai-api").MentorCategory[], "mentorCategoriesApiSlice", any>> & {
|
|
51
61
|
currentData?: import("@iblai/iblai-api").MentorCategory[] | undefined;
|
|
52
62
|
isUninitialized: false;
|
|
53
63
|
isLoading: false;
|
|
@@ -60,7 +70,9 @@ export declare const useGetMentorCategoriesQuery: <R extends Record<string, any>
|
|
|
60
70
|
error: undefined;
|
|
61
71
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
62
72
|
org: string;
|
|
63
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
73
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
74
|
+
attempt?: number;
|
|
75
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("@iblai/iblai-api").MentorCategory[], "mentorCategoriesApiSlice", any>> & {
|
|
64
76
|
currentData?: import("@iblai/iblai-api").MentorCategory[] | undefined;
|
|
65
77
|
isUninitialized: false;
|
|
66
78
|
isLoading: false;
|
|
@@ -71,7 +83,9 @@ export declare const useGetMentorCategoriesQuery: <R extends Record<string, any>
|
|
|
71
83
|
isError: true;
|
|
72
84
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
73
85
|
org: string;
|
|
74
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
86
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
87
|
+
attempt?: number;
|
|
88
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("@iblai/iblai-api").MentorCategory[], "mentorCategoriesApiSlice", any>> & {
|
|
75
89
|
currentData?: import("@iblai/iblai-api").MentorCategory[] | undefined;
|
|
76
90
|
isUninitialized: false;
|
|
77
91
|
isLoading: false;
|
|
@@ -107,7 +121,9 @@ export declare const useGetMentorCategoriesQuery: <R extends Record<string, any>
|
|
|
107
121
|
isUninitialized: true;
|
|
108
122
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
109
123
|
org: string;
|
|
110
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
124
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
125
|
+
attempt?: number;
|
|
126
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("@iblai/iblai-api").MentorCategory[], "mentorCategoriesApiSlice", any>> & {
|
|
111
127
|
currentData?: import("@iblai/iblai-api").MentorCategory[] | undefined;
|
|
112
128
|
isUninitialized: false;
|
|
113
129
|
isLoading: false;
|
|
@@ -124,7 +140,9 @@ export declare const useGetMentorCategoriesQuery: <R extends Record<string, any>
|
|
|
124
140
|
error: undefined;
|
|
125
141
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
126
142
|
org: string;
|
|
127
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
143
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
144
|
+
attempt?: number;
|
|
145
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("@iblai/iblai-api").MentorCategory[], "mentorCategoriesApiSlice", any>> & {
|
|
128
146
|
currentData?: import("@iblai/iblai-api").MentorCategory[] | undefined;
|
|
129
147
|
isUninitialized: false;
|
|
130
148
|
isLoading: false;
|
|
@@ -137,7 +155,9 @@ export declare const useGetMentorCategoriesQuery: <R extends Record<string, any>
|
|
|
137
155
|
error: undefined;
|
|
138
156
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
139
157
|
org: string;
|
|
140
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
158
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
159
|
+
attempt?: number;
|
|
160
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("@iblai/iblai-api").MentorCategory[], "mentorCategoriesApiSlice", any>> & {
|
|
141
161
|
currentData?: import("@iblai/iblai-api").MentorCategory[] | undefined;
|
|
142
162
|
isUninitialized: false;
|
|
143
163
|
isLoading: false;
|
|
@@ -148,7 +168,9 @@ export declare const useGetMentorCategoriesQuery: <R extends Record<string, any>
|
|
|
148
168
|
isError: true;
|
|
149
169
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
150
170
|
org: string;
|
|
151
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
171
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
172
|
+
attempt?: number;
|
|
173
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("@iblai/iblai-api").MentorCategory[], "mentorCategoriesApiSlice", any>> & {
|
|
152
174
|
currentData?: import("@iblai/iblai-api").MentorCategory[] | undefined;
|
|
153
175
|
isUninitialized: false;
|
|
154
176
|
isLoading: false;
|
|
@@ -161,7 +183,9 @@ export declare const useGetMentorCategoriesQuery: <R extends Record<string, any>
|
|
|
161
183
|
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
162
184
|
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
163
185
|
org: string;
|
|
164
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
186
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
187
|
+
attempt?: number;
|
|
188
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("@iblai/iblai-api").MentorCategory[], "mentorCategoriesApiSlice", any>>;
|
|
165
189
|
}, useLazyGetMentorCategoriesQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
166
190
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
167
191
|
originalArgs?: undefined | undefined;
|
|
@@ -182,7 +206,9 @@ export declare const useGetMentorCategoriesQuery: <R extends Record<string, any>
|
|
|
182
206
|
isUninitialized: true;
|
|
183
207
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
184
208
|
org: string;
|
|
185
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
209
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
210
|
+
attempt?: number;
|
|
211
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("@iblai/iblai-api").MentorCategory[], "mentorCategoriesApiSlice", any>> & {
|
|
186
212
|
currentData?: import("@iblai/iblai-api").MentorCategory[] | undefined;
|
|
187
213
|
isUninitialized: false;
|
|
188
214
|
isLoading: false;
|
|
@@ -199,7 +225,9 @@ export declare const useGetMentorCategoriesQuery: <R extends Record<string, any>
|
|
|
199
225
|
error: undefined;
|
|
200
226
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
201
227
|
org: string;
|
|
202
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
228
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
229
|
+
attempt?: number;
|
|
230
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("@iblai/iblai-api").MentorCategory[], "mentorCategoriesApiSlice", any>> & {
|
|
203
231
|
currentData?: import("@iblai/iblai-api").MentorCategory[] | undefined;
|
|
204
232
|
isUninitialized: false;
|
|
205
233
|
isLoading: false;
|
|
@@ -212,7 +240,9 @@ export declare const useGetMentorCategoriesQuery: <R extends Record<string, any>
|
|
|
212
240
|
error: undefined;
|
|
213
241
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
214
242
|
org: string;
|
|
215
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
243
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
244
|
+
attempt?: number;
|
|
245
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("@iblai/iblai-api").MentorCategory[], "mentorCategoriesApiSlice", any>> & {
|
|
216
246
|
currentData?: import("@iblai/iblai-api").MentorCategory[] | undefined;
|
|
217
247
|
isUninitialized: false;
|
|
218
248
|
isLoading: false;
|
|
@@ -223,7 +253,9 @@ export declare const useGetMentorCategoriesQuery: <R extends Record<string, any>
|
|
|
223
253
|
isError: true;
|
|
224
254
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
225
255
|
org: string;
|
|
226
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
256
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
257
|
+
attempt?: number;
|
|
258
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("@iblai/iblai-api").MentorCategory[], "mentorCategoriesApiSlice", any>> & {
|
|
227
259
|
currentData?: import("@iblai/iblai-api").MentorCategory[] | undefined;
|
|
228
260
|
isUninitialized: false;
|
|
229
261
|
isLoading: false;
|
|
@@ -254,7 +286,9 @@ export declare const useGetMentorCategoriesQuery: <R extends Record<string, any>
|
|
|
254
286
|
isUninitialized: true;
|
|
255
287
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
256
288
|
org: string;
|
|
257
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
289
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
290
|
+
attempt?: number;
|
|
291
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("@iblai/iblai-api").MentorCategory[], "mentorCategoriesApiSlice", any>> & {
|
|
258
292
|
currentData?: import("@iblai/iblai-api").MentorCategory[] | undefined;
|
|
259
293
|
isUninitialized: false;
|
|
260
294
|
isLoading: false;
|
|
@@ -271,7 +305,9 @@ export declare const useGetMentorCategoriesQuery: <R extends Record<string, any>
|
|
|
271
305
|
error: undefined;
|
|
272
306
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
273
307
|
org: string;
|
|
274
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
308
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
309
|
+
attempt?: number;
|
|
310
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("@iblai/iblai-api").MentorCategory[], "mentorCategoriesApiSlice", any>> & {
|
|
275
311
|
currentData?: import("@iblai/iblai-api").MentorCategory[] | undefined;
|
|
276
312
|
isUninitialized: false;
|
|
277
313
|
isLoading: false;
|
|
@@ -284,7 +320,9 @@ export declare const useGetMentorCategoriesQuery: <R extends Record<string, any>
|
|
|
284
320
|
error: undefined;
|
|
285
321
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
286
322
|
org: string;
|
|
287
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
323
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
324
|
+
attempt?: number;
|
|
325
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("@iblai/iblai-api").MentorCategory[], "mentorCategoriesApiSlice", any>> & {
|
|
288
326
|
currentData?: import("@iblai/iblai-api").MentorCategory[] | undefined;
|
|
289
327
|
isUninitialized: false;
|
|
290
328
|
isLoading: false;
|
|
@@ -295,7 +333,9 @@ export declare const useGetMentorCategoriesQuery: <R extends Record<string, any>
|
|
|
295
333
|
isError: true;
|
|
296
334
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
297
335
|
org: string;
|
|
298
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
336
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
337
|
+
attempt?: number;
|
|
338
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("@iblai/iblai-api").MentorCategory[], "mentorCategoriesApiSlice", any>> & {
|
|
299
339
|
currentData?: import("@iblai/iblai-api").MentorCategory[] | undefined;
|
|
300
340
|
isUninitialized: false;
|
|
301
341
|
isLoading: false;
|
|
@@ -309,7 +349,9 @@ export declare const useGetMentorCategoriesQuery: <R extends Record<string, any>
|
|
|
309
349
|
org: string;
|
|
310
350
|
}, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
311
351
|
org: string;
|
|
312
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
352
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
353
|
+
attempt?: number;
|
|
354
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("@iblai/iblai-api").MentorCategory[], "mentorCategoriesApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
313
355
|
reset: () => void;
|
|
314
356
|
}, {
|
|
315
357
|
lastArg: {
|
|
@@ -339,7 +381,9 @@ export declare const useGetMentorCategoriesQuery: <R extends Record<string, any>
|
|
|
339
381
|
audienceName?: string;
|
|
340
382
|
ordering?: string;
|
|
341
383
|
search?: string;
|
|
342
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
384
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
385
|
+
attempt?: number;
|
|
386
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("@iblai/iblai-api").MentorCategoryGroup[], "mentorCategoriesApiSlice", any>> & {
|
|
343
387
|
currentData?: import("@iblai/iblai-api").MentorCategoryGroup[] | undefined;
|
|
344
388
|
isUninitialized: false;
|
|
345
389
|
isLoading: false;
|
|
@@ -360,7 +404,9 @@ export declare const useGetMentorCategoriesQuery: <R extends Record<string, any>
|
|
|
360
404
|
audienceName?: string;
|
|
361
405
|
ordering?: string;
|
|
362
406
|
search?: string;
|
|
363
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
407
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
408
|
+
attempt?: number;
|
|
409
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("@iblai/iblai-api").MentorCategoryGroup[], "mentorCategoriesApiSlice", any>> & {
|
|
364
410
|
currentData?: import("@iblai/iblai-api").MentorCategoryGroup[] | undefined;
|
|
365
411
|
isUninitialized: false;
|
|
366
412
|
isLoading: false;
|
|
@@ -377,7 +423,9 @@ export declare const useGetMentorCategoriesQuery: <R extends Record<string, any>
|
|
|
377
423
|
audienceName?: string;
|
|
378
424
|
ordering?: string;
|
|
379
425
|
search?: string;
|
|
380
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
426
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
427
|
+
attempt?: number;
|
|
428
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("@iblai/iblai-api").MentorCategoryGroup[], "mentorCategoriesApiSlice", any>> & {
|
|
381
429
|
currentData?: import("@iblai/iblai-api").MentorCategoryGroup[] | undefined;
|
|
382
430
|
isUninitialized: false;
|
|
383
431
|
isLoading: false;
|
|
@@ -392,7 +440,9 @@ export declare const useGetMentorCategoriesQuery: <R extends Record<string, any>
|
|
|
392
440
|
audienceName?: string;
|
|
393
441
|
ordering?: string;
|
|
394
442
|
search?: string;
|
|
395
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
443
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
444
|
+
attempt?: number;
|
|
445
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("@iblai/iblai-api").MentorCategoryGroup[], "mentorCategoriesApiSlice", any>> & {
|
|
396
446
|
currentData?: import("@iblai/iblai-api").MentorCategoryGroup[] | undefined;
|
|
397
447
|
isUninitialized: false;
|
|
398
448
|
isLoading: false;
|
|
@@ -436,7 +486,9 @@ export declare const useGetMentorCategoriesQuery: <R extends Record<string, any>
|
|
|
436
486
|
audienceName?: string;
|
|
437
487
|
ordering?: string;
|
|
438
488
|
search?: string;
|
|
439
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
489
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
490
|
+
attempt?: number;
|
|
491
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("@iblai/iblai-api").MentorCategoryGroup[], "mentorCategoriesApiSlice", any>> & {
|
|
440
492
|
currentData?: import("@iblai/iblai-api").MentorCategoryGroup[] | undefined;
|
|
441
493
|
isUninitialized: false;
|
|
442
494
|
isLoading: false;
|
|
@@ -457,7 +509,9 @@ export declare const useGetMentorCategoriesQuery: <R extends Record<string, any>
|
|
|
457
509
|
audienceName?: string;
|
|
458
510
|
ordering?: string;
|
|
459
511
|
search?: string;
|
|
460
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
512
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
513
|
+
attempt?: number;
|
|
514
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("@iblai/iblai-api").MentorCategoryGroup[], "mentorCategoriesApiSlice", any>> & {
|
|
461
515
|
currentData?: import("@iblai/iblai-api").MentorCategoryGroup[] | undefined;
|
|
462
516
|
isUninitialized: false;
|
|
463
517
|
isLoading: false;
|
|
@@ -474,7 +528,9 @@ export declare const useGetMentorCategoriesQuery: <R extends Record<string, any>
|
|
|
474
528
|
audienceName?: string;
|
|
475
529
|
ordering?: string;
|
|
476
530
|
search?: string;
|
|
477
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
531
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
532
|
+
attempt?: number;
|
|
533
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("@iblai/iblai-api").MentorCategoryGroup[], "mentorCategoriesApiSlice", any>> & {
|
|
478
534
|
currentData?: import("@iblai/iblai-api").MentorCategoryGroup[] | undefined;
|
|
479
535
|
isUninitialized: false;
|
|
480
536
|
isLoading: false;
|
|
@@ -489,7 +545,9 @@ export declare const useGetMentorCategoriesQuery: <R extends Record<string, any>
|
|
|
489
545
|
audienceName?: string;
|
|
490
546
|
ordering?: string;
|
|
491
547
|
search?: string;
|
|
492
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
548
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
549
|
+
attempt?: number;
|
|
550
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("@iblai/iblai-api").MentorCategoryGroup[], "mentorCategoriesApiSlice", any>> & {
|
|
493
551
|
currentData?: import("@iblai/iblai-api").MentorCategoryGroup[] | undefined;
|
|
494
552
|
isUninitialized: false;
|
|
495
553
|
isLoading: false;
|
|
@@ -506,7 +564,9 @@ export declare const useGetMentorCategoriesQuery: <R extends Record<string, any>
|
|
|
506
564
|
audienceName?: string;
|
|
507
565
|
ordering?: string;
|
|
508
566
|
search?: string;
|
|
509
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
567
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
568
|
+
attempt?: number;
|
|
569
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("@iblai/iblai-api").MentorCategoryGroup[], "mentorCategoriesApiSlice", any>>;
|
|
510
570
|
}, useLazyGetMentorCategoryGroupsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
511
571
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
512
572
|
originalArgs?: undefined | undefined;
|
|
@@ -531,7 +591,9 @@ export declare const useGetMentorCategoriesQuery: <R extends Record<string, any>
|
|
|
531
591
|
audienceName?: string;
|
|
532
592
|
ordering?: string;
|
|
533
593
|
search?: string;
|
|
534
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
594
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
595
|
+
attempt?: number;
|
|
596
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("@iblai/iblai-api").MentorCategoryGroup[], "mentorCategoriesApiSlice", any>> & {
|
|
535
597
|
currentData?: import("@iblai/iblai-api").MentorCategoryGroup[] | undefined;
|
|
536
598
|
isUninitialized: false;
|
|
537
599
|
isLoading: false;
|
|
@@ -552,7 +614,9 @@ export declare const useGetMentorCategoriesQuery: <R extends Record<string, any>
|
|
|
552
614
|
audienceName?: string;
|
|
553
615
|
ordering?: string;
|
|
554
616
|
search?: string;
|
|
555
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
617
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
618
|
+
attempt?: number;
|
|
619
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("@iblai/iblai-api").MentorCategoryGroup[], "mentorCategoriesApiSlice", any>> & {
|
|
556
620
|
currentData?: import("@iblai/iblai-api").MentorCategoryGroup[] | undefined;
|
|
557
621
|
isUninitialized: false;
|
|
558
622
|
isLoading: false;
|
|
@@ -569,7 +633,9 @@ export declare const useGetMentorCategoriesQuery: <R extends Record<string, any>
|
|
|
569
633
|
audienceName?: string;
|
|
570
634
|
ordering?: string;
|
|
571
635
|
search?: string;
|
|
572
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
636
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
637
|
+
attempt?: number;
|
|
638
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("@iblai/iblai-api").MentorCategoryGroup[], "mentorCategoriesApiSlice", any>> & {
|
|
573
639
|
currentData?: import("@iblai/iblai-api").MentorCategoryGroup[] | undefined;
|
|
574
640
|
isUninitialized: false;
|
|
575
641
|
isLoading: false;
|
|
@@ -584,7 +650,9 @@ export declare const useGetMentorCategoriesQuery: <R extends Record<string, any>
|
|
|
584
650
|
audienceName?: string;
|
|
585
651
|
ordering?: string;
|
|
586
652
|
search?: string;
|
|
587
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
653
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
654
|
+
attempt?: number;
|
|
655
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("@iblai/iblai-api").MentorCategoryGroup[], "mentorCategoriesApiSlice", any>> & {
|
|
588
656
|
currentData?: import("@iblai/iblai-api").MentorCategoryGroup[] | undefined;
|
|
589
657
|
isUninitialized: false;
|
|
590
658
|
isLoading: false;
|
|
@@ -619,7 +687,9 @@ export declare const useGetMentorCategoriesQuery: <R extends Record<string, any>
|
|
|
619
687
|
audienceName?: string;
|
|
620
688
|
ordering?: string;
|
|
621
689
|
search?: string;
|
|
622
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
690
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
691
|
+
attempt?: number;
|
|
692
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("@iblai/iblai-api").MentorCategoryGroup[], "mentorCategoriesApiSlice", any>> & {
|
|
623
693
|
currentData?: import("@iblai/iblai-api").MentorCategoryGroup[] | undefined;
|
|
624
694
|
isUninitialized: false;
|
|
625
695
|
isLoading: false;
|
|
@@ -640,7 +710,9 @@ export declare const useGetMentorCategoriesQuery: <R extends Record<string, any>
|
|
|
640
710
|
audienceName?: string;
|
|
641
711
|
ordering?: string;
|
|
642
712
|
search?: string;
|
|
643
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
713
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
714
|
+
attempt?: number;
|
|
715
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("@iblai/iblai-api").MentorCategoryGroup[], "mentorCategoriesApiSlice", any>> & {
|
|
644
716
|
currentData?: import("@iblai/iblai-api").MentorCategoryGroup[] | undefined;
|
|
645
717
|
isUninitialized: false;
|
|
646
718
|
isLoading: false;
|
|
@@ -657,7 +729,9 @@ export declare const useGetMentorCategoriesQuery: <R extends Record<string, any>
|
|
|
657
729
|
audienceName?: string;
|
|
658
730
|
ordering?: string;
|
|
659
731
|
search?: string;
|
|
660
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
732
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
733
|
+
attempt?: number;
|
|
734
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("@iblai/iblai-api").MentorCategoryGroup[], "mentorCategoriesApiSlice", any>> & {
|
|
661
735
|
currentData?: import("@iblai/iblai-api").MentorCategoryGroup[] | undefined;
|
|
662
736
|
isUninitialized: false;
|
|
663
737
|
isLoading: false;
|
|
@@ -672,7 +746,9 @@ export declare const useGetMentorCategoriesQuery: <R extends Record<string, any>
|
|
|
672
746
|
audienceName?: string;
|
|
673
747
|
ordering?: string;
|
|
674
748
|
search?: string;
|
|
675
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
749
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
750
|
+
attempt?: number;
|
|
751
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("@iblai/iblai-api").MentorCategoryGroup[], "mentorCategoriesApiSlice", any>> & {
|
|
676
752
|
currentData?: import("@iblai/iblai-api").MentorCategoryGroup[] | undefined;
|
|
677
753
|
isUninitialized: false;
|
|
678
754
|
isLoading: false;
|
|
@@ -694,7 +770,9 @@ export declare const useGetMentorCategoriesQuery: <R extends Record<string, any>
|
|
|
694
770
|
audienceName?: string;
|
|
695
771
|
ordering?: string;
|
|
696
772
|
search?: string;
|
|
697
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<void,
|
|
773
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
774
|
+
attempt?: number;
|
|
775
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("@iblai/iblai-api").MentorCategoryGroup[], "mentorCategoriesApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
698
776
|
reset: () => void;
|
|
699
777
|
}, {
|
|
700
778
|
lastArg: {
|