@iblai/web-utils 0.3.0 → 1.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +504 -0
- package/dist/data-layer/src/features/chat-files/api-slice.d.ts +185 -0
- package/dist/data-layer/src/features/chat-files/types.d.ts +32 -0
- package/dist/data-layer/src/features/core/api-slice.d.ts +419 -61
- package/dist/data-layer/src/features/core/constants.d.ts +3 -0
- package/dist/data-layer/src/features/core/custom-api-slice.d.ts +50 -50
- package/dist/data-layer/src/features/core/custom-public-image-asset-api-slice.d.ts +333 -0
- package/dist/data-layer/src/features/core/types.d.ts +33 -0
- package/dist/data-layer/src/features/credentials/api-slice.d.ts +62 -39
- package/dist/data-layer/src/features/mentor/api-slice.d.ts +1028 -188
- package/dist/data-layer/src/features/notifications/constants.d.ts +6 -0
- package/dist/data-layer/src/features/notifications/custom-api-slice.d.ts +43 -43
- package/dist/data-layer/src/features/notifications/types.d.ts +25 -2
- package/dist/data-layer/src/features/stripe/api-slice.d.ts +22 -0
- package/dist/data-layer/src/index.d.ts +3 -0
- package/dist/index.d.ts +447 -83
- package/dist/index.esm.js +1137 -196
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +1167 -193
- package/dist/index.js.map +1 -1
- package/dist/package.json +4 -2
- package/dist/web-utils/src/constants/chat.d.ts +8 -0
- package/dist/web-utils/src/features/files/filesSlice.d.ts +20 -0
- package/dist/web-utils/src/features/index.d.ts +1 -0
- package/dist/web-utils/src/hooks/chat/use-advanced-chat.d.ts +6 -4
- package/dist/web-utils/src/hooks/chat/use-chat-v2.d.ts +11 -1
- package/dist/web-utils/src/hooks/use-mentor-settings.d.ts +18 -15
- package/dist/web-utils/src/index.d.ts +2 -0
- package/dist/web-utils/src/index.web.d.ts +14 -12
- package/dist/web-utils/src/providers/auth-provider.d.ts +9 -1
- package/dist/web-utils/src/providers/mentor-provider.d.ts +2 -1
- package/dist/web-utils/src/providers/tenant-provider.d.ts +3 -1
- package/dist/web-utils/src/services/__tests__/file-upload.test.d.ts +1 -0
- package/dist/web-utils/src/services/file-upload.d.ts +60 -0
- package/dist/web-utils/src/services/index.d.ts +1 -0
- package/dist/web-utils/src/types/file-upload.d.ts +62 -0
- package/dist/web-utils/src/types/index.d.ts +1 -0
- package/dist/web-utils/src/utils/auth.d.ts +180 -0
- package/dist/web-utils/src/utils/index.d.ts +1 -0
- package/package.json +12 -13
- package/dist/web-utils/tsconfig.tsbuildinfo +0 -1
|
@@ -2,7 +2,7 @@ export declare const mentorApiSlice: import("@reduxjs/toolkit/query").Api<import
|
|
|
2
2
|
createMentor: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
3
3
|
org: string;
|
|
4
4
|
formData: import("node_modules/@iblai/iblai-api/dist/types").MentorFromTemplateWithSettingRequest;
|
|
5
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").Mentor, "mentorApiSlice", any>;
|
|
5
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").Mentor, "mentorApiSlice", any>;
|
|
6
6
|
getMentors: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
7
7
|
org: string;
|
|
8
8
|
username: string;
|
|
@@ -21,7 +21,7 @@ export declare const mentorApiSlice: import("@reduxjs/toolkit/query").Api<import
|
|
|
21
21
|
tags?: Array<string>;
|
|
22
22
|
tenant?: string;
|
|
23
23
|
uniqueId?: string;
|
|
24
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>;
|
|
24
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>;
|
|
25
25
|
getPublicMentors: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
26
26
|
audience?: Array<string>;
|
|
27
27
|
category?: Array<string>;
|
|
@@ -38,76 +38,93 @@ export declare const mentorApiSlice: import("@reduxjs/toolkit/query").Api<import
|
|
|
38
38
|
tags?: Array<string>;
|
|
39
39
|
tenant?: string;
|
|
40
40
|
uniqueId?: string;
|
|
41
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>;
|
|
41
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>;
|
|
42
42
|
editMentor: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
43
43
|
mentor: string;
|
|
44
44
|
org: string;
|
|
45
45
|
departmentId?: number;
|
|
46
46
|
formData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsRequest;
|
|
47
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettings, "mentorApiSlice", any>;
|
|
47
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").MentorSettings, "mentorApiSlice", any>;
|
|
48
48
|
seedMentors: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
49
49
|
org: string;
|
|
50
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView, "mentorApiSlice", any>;
|
|
50
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView, "mentorApiSlice", any>;
|
|
51
51
|
getMentorDetails: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
52
52
|
mentor: string;
|
|
53
53
|
org: string;
|
|
54
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").Mentor, "mentorApiSlice", any>;
|
|
54
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").Mentor, "mentorApiSlice", any>;
|
|
55
55
|
getMentorSettings: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
56
56
|
mentor: string;
|
|
57
57
|
org: string;
|
|
58
58
|
departmentId?: number;
|
|
59
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>;
|
|
59
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>;
|
|
60
60
|
getMentorPublicSettings: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
61
61
|
mentor: string;
|
|
62
62
|
org: string;
|
|
63
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>;
|
|
63
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>;
|
|
64
64
|
updateMentorVisibilityStatus: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
65
65
|
mentor: string;
|
|
66
66
|
org: string;
|
|
67
67
|
departmentId?: number;
|
|
68
68
|
formData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsRequest;
|
|
69
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettings, "mentorApiSlice", any>;
|
|
69
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").MentorSettings, "mentorApiSlice", any>;
|
|
70
70
|
getFreeUsageCount: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
71
71
|
org: string;
|
|
72
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount, "mentorApiSlice", any>;
|
|
72
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount, "mentorApiSlice", any>;
|
|
73
73
|
createShareableLink: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
74
74
|
mentor: string;
|
|
75
75
|
org: string;
|
|
76
76
|
requestBody?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink;
|
|
77
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>;
|
|
77
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>;
|
|
78
78
|
getShareableLink: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
79
79
|
mentor: string;
|
|
80
80
|
org: string;
|
|
81
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>;
|
|
81
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>;
|
|
82
82
|
getShareableLinkPublic: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
83
83
|
mentor: string;
|
|
84
84
|
org: string;
|
|
85
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>;
|
|
85
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>;
|
|
86
86
|
revokeShareableLink: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
87
87
|
mentor: string;
|
|
88
88
|
org: string;
|
|
89
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", void, "mentorApiSlice", any>;
|
|
89
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", void, "mentorApiSlice", any>;
|
|
90
90
|
updateShareableLink: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
91
91
|
mentor: string;
|
|
92
92
|
org: string;
|
|
93
93
|
requestBody?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink;
|
|
94
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>;
|
|
94
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>;
|
|
95
95
|
deleteMentor: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
96
96
|
name: string;
|
|
97
97
|
org: string;
|
|
98
98
|
departmentId?: number;
|
|
99
99
|
filterBy?: string;
|
|
100
|
+
isFeatured?: boolean;
|
|
100
101
|
metadataKey?: string;
|
|
101
102
|
metadataValue?: string;
|
|
102
103
|
returnSessionInformation?: boolean;
|
|
103
104
|
visibility?: string;
|
|
104
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", void, "mentorApiSlice", any>;
|
|
105
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", void, "mentorApiSlice", any>;
|
|
105
106
|
forkMentor: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
106
107
|
mentor: string;
|
|
107
108
|
org: string;
|
|
108
109
|
requestBody: import("node_modules/@iblai/iblai-api/dist/types").MentorFork;
|
|
109
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").Mentor, "mentorApiSlice", any>;
|
|
110
|
-
|
|
110
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").Mentor, "mentorApiSlice", any>;
|
|
111
|
+
getRecentlyAccessedMentors: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
112
|
+
org: string;
|
|
113
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").RecentlyAccessedMentor[], "mentorApiSlice", any>;
|
|
114
|
+
getModerationLogs: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
115
|
+
org: string;
|
|
116
|
+
endTime?: string;
|
|
117
|
+
mentor?: string;
|
|
118
|
+
ordering?: string;
|
|
119
|
+
page?: number;
|
|
120
|
+
pageSize?: number;
|
|
121
|
+
platformKey?: string;
|
|
122
|
+
search?: string;
|
|
123
|
+
startTime?: string;
|
|
124
|
+
targetSystem?: "Moderation System" | "Safety System";
|
|
125
|
+
username?: string;
|
|
126
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").PaginatedModerationLogList, "mentorApiSlice", any>;
|
|
127
|
+
}, "mentorApiSlice", "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", typeof import("@reduxjs/toolkit/query").coreModuleName | typeof import("@reduxjs/toolkit/dist/query/react").reactHooksModuleName>;
|
|
111
128
|
export declare const mentorApiReducer: typeof mentorApiSlice.reducer;
|
|
112
129
|
export declare const useCreateMentorMutation: <R extends Record<string, any> = ({
|
|
113
130
|
requestId?: undefined;
|
|
@@ -272,7 +289,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
272
289
|
}) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
273
290
|
org: string;
|
|
274
291
|
formData: import("node_modules/@iblai/iblai-api/dist/types").MentorFromTemplateWithSettingRequest;
|
|
275
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").Mentor, "mentorApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
292
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").Mentor, "mentorApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
276
293
|
originalArgs?: {
|
|
277
294
|
org: string;
|
|
278
295
|
formData: import("node_modules/@iblai/iblai-api/dist/types").MentorFromTemplateWithSettingRequest;
|
|
@@ -314,7 +331,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
314
331
|
tags?: Array<string>;
|
|
315
332
|
tenant?: string;
|
|
316
333
|
uniqueId?: string;
|
|
317
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
334
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
318
335
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
|
|
319
336
|
isUninitialized: false;
|
|
320
337
|
isLoading: false;
|
|
@@ -347,7 +364,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
347
364
|
tags?: Array<string>;
|
|
348
365
|
tenant?: string;
|
|
349
366
|
uniqueId?: string;
|
|
350
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
367
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
351
368
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
|
|
352
369
|
isUninitialized: false;
|
|
353
370
|
isLoading: false;
|
|
@@ -376,7 +393,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
376
393
|
tags?: Array<string>;
|
|
377
394
|
tenant?: string;
|
|
378
395
|
uniqueId?: string;
|
|
379
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
396
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
380
397
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
|
|
381
398
|
isUninitialized: false;
|
|
382
399
|
isLoading: false;
|
|
@@ -403,7 +420,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
403
420
|
tags?: Array<string>;
|
|
404
421
|
tenant?: string;
|
|
405
422
|
uniqueId?: string;
|
|
406
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
423
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
407
424
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
|
|
408
425
|
isUninitialized: false;
|
|
409
426
|
isLoading: false;
|
|
@@ -471,7 +488,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
471
488
|
tags?: Array<string>;
|
|
472
489
|
tenant?: string;
|
|
473
490
|
uniqueId?: string;
|
|
474
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
491
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
475
492
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
|
|
476
493
|
isUninitialized: false;
|
|
477
494
|
isLoading: false;
|
|
@@ -504,7 +521,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
504
521
|
tags?: Array<string>;
|
|
505
522
|
tenant?: string;
|
|
506
523
|
uniqueId?: string;
|
|
507
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
524
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
508
525
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
|
|
509
526
|
isUninitialized: false;
|
|
510
527
|
isLoading: false;
|
|
@@ -533,7 +550,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
533
550
|
tags?: Array<string>;
|
|
534
551
|
tenant?: string;
|
|
535
552
|
uniqueId?: string;
|
|
536
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
553
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
537
554
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
|
|
538
555
|
isUninitialized: false;
|
|
539
556
|
isLoading: false;
|
|
@@ -560,7 +577,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
560
577
|
tags?: Array<string>;
|
|
561
578
|
tenant?: string;
|
|
562
579
|
uniqueId?: string;
|
|
563
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
580
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
564
581
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
|
|
565
582
|
isUninitialized: false;
|
|
566
583
|
isLoading: false;
|
|
@@ -589,7 +606,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
589
606
|
tags?: Array<string>;
|
|
590
607
|
tenant?: string;
|
|
591
608
|
uniqueId?: string;
|
|
592
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>>;
|
|
609
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>>;
|
|
593
610
|
}, useLazyGetMentorsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
594
611
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
595
612
|
originalArgs?: undefined | undefined;
|
|
@@ -626,7 +643,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
626
643
|
tags?: Array<string>;
|
|
627
644
|
tenant?: string;
|
|
628
645
|
uniqueId?: string;
|
|
629
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
646
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
630
647
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
|
|
631
648
|
isUninitialized: false;
|
|
632
649
|
isLoading: false;
|
|
@@ -659,7 +676,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
659
676
|
tags?: Array<string>;
|
|
660
677
|
tenant?: string;
|
|
661
678
|
uniqueId?: string;
|
|
662
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
679
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
663
680
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
|
|
664
681
|
isUninitialized: false;
|
|
665
682
|
isLoading: false;
|
|
@@ -688,7 +705,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
688
705
|
tags?: Array<string>;
|
|
689
706
|
tenant?: string;
|
|
690
707
|
uniqueId?: string;
|
|
691
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
708
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
692
709
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
|
|
693
710
|
isUninitialized: false;
|
|
694
711
|
isLoading: false;
|
|
@@ -715,7 +732,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
715
732
|
tags?: Array<string>;
|
|
716
733
|
tenant?: string;
|
|
717
734
|
uniqueId?: string;
|
|
718
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
735
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
719
736
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
|
|
720
737
|
isUninitialized: false;
|
|
721
738
|
isLoading: false;
|
|
@@ -762,7 +779,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
762
779
|
tags?: Array<string>;
|
|
763
780
|
tenant?: string;
|
|
764
781
|
uniqueId?: string;
|
|
765
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
782
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
766
783
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
|
|
767
784
|
isUninitialized: false;
|
|
768
785
|
isLoading: false;
|
|
@@ -795,7 +812,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
795
812
|
tags?: Array<string>;
|
|
796
813
|
tenant?: string;
|
|
797
814
|
uniqueId?: string;
|
|
798
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
815
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
799
816
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
|
|
800
817
|
isUninitialized: false;
|
|
801
818
|
isLoading: false;
|
|
@@ -824,7 +841,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
824
841
|
tags?: Array<string>;
|
|
825
842
|
tenant?: string;
|
|
826
843
|
uniqueId?: string;
|
|
827
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
844
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
828
845
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
|
|
829
846
|
isUninitialized: false;
|
|
830
847
|
isLoading: false;
|
|
@@ -851,7 +868,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
851
868
|
tags?: Array<string>;
|
|
852
869
|
tenant?: string;
|
|
853
870
|
uniqueId?: string;
|
|
854
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
871
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
855
872
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
|
|
856
873
|
isUninitialized: false;
|
|
857
874
|
isLoading: false;
|
|
@@ -897,7 +914,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
897
914
|
tags?: Array<string>;
|
|
898
915
|
tenant?: string;
|
|
899
916
|
uniqueId?: string;
|
|
900
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
917
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
901
918
|
reset: () => void;
|
|
902
919
|
}, {
|
|
903
920
|
lastArg: {
|
|
@@ -1086,7 +1103,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1086
1103
|
org: string;
|
|
1087
1104
|
departmentId?: number;
|
|
1088
1105
|
formData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsRequest;
|
|
1089
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettings, "mentorApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
1106
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").MentorSettings, "mentorApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
1090
1107
|
originalArgs?: {
|
|
1091
1108
|
mentor: string;
|
|
1092
1109
|
org: string;
|
|
@@ -1114,7 +1131,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1114
1131
|
isUninitialized: true;
|
|
1115
1132
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1116
1133
|
org: string;
|
|
1117
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView, "mentorApiSlice", any>> & {
|
|
1134
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView, "mentorApiSlice", any>> & {
|
|
1118
1135
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView | undefined;
|
|
1119
1136
|
isUninitialized: false;
|
|
1120
1137
|
isLoading: false;
|
|
@@ -1131,7 +1148,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1131
1148
|
error: undefined;
|
|
1132
1149
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1133
1150
|
org: string;
|
|
1134
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView, "mentorApiSlice", any>> & {
|
|
1151
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView, "mentorApiSlice", any>> & {
|
|
1135
1152
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView | undefined;
|
|
1136
1153
|
isUninitialized: false;
|
|
1137
1154
|
isLoading: false;
|
|
@@ -1144,7 +1161,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1144
1161
|
error: undefined;
|
|
1145
1162
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1146
1163
|
org: string;
|
|
1147
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView, "mentorApiSlice", any>> & {
|
|
1164
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView, "mentorApiSlice", any>> & {
|
|
1148
1165
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView | undefined;
|
|
1149
1166
|
isUninitialized: false;
|
|
1150
1167
|
isLoading: false;
|
|
@@ -1155,7 +1172,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1155
1172
|
isError: true;
|
|
1156
1173
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1157
1174
|
org: string;
|
|
1158
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView, "mentorApiSlice", any>> & {
|
|
1175
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView, "mentorApiSlice", any>> & {
|
|
1159
1176
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView | undefined;
|
|
1160
1177
|
isUninitialized: false;
|
|
1161
1178
|
isLoading: false;
|
|
@@ -1191,7 +1208,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1191
1208
|
isUninitialized: true;
|
|
1192
1209
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1193
1210
|
org: string;
|
|
1194
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView, "mentorApiSlice", any>> & {
|
|
1211
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView, "mentorApiSlice", any>> & {
|
|
1195
1212
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView | undefined;
|
|
1196
1213
|
isUninitialized: false;
|
|
1197
1214
|
isLoading: false;
|
|
@@ -1208,7 +1225,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1208
1225
|
error: undefined;
|
|
1209
1226
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1210
1227
|
org: string;
|
|
1211
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView, "mentorApiSlice", any>> & {
|
|
1228
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView, "mentorApiSlice", any>> & {
|
|
1212
1229
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView | undefined;
|
|
1213
1230
|
isUninitialized: false;
|
|
1214
1231
|
isLoading: false;
|
|
@@ -1221,7 +1238,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1221
1238
|
error: undefined;
|
|
1222
1239
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1223
1240
|
org: string;
|
|
1224
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView, "mentorApiSlice", any>> & {
|
|
1241
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView, "mentorApiSlice", any>> & {
|
|
1225
1242
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView | undefined;
|
|
1226
1243
|
isUninitialized: false;
|
|
1227
1244
|
isLoading: false;
|
|
@@ -1232,7 +1249,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1232
1249
|
isError: true;
|
|
1233
1250
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1234
1251
|
org: string;
|
|
1235
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView, "mentorApiSlice", any>> & {
|
|
1252
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView, "mentorApiSlice", any>> & {
|
|
1236
1253
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView | undefined;
|
|
1237
1254
|
isUninitialized: false;
|
|
1238
1255
|
isLoading: false;
|
|
@@ -1245,7 +1262,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1245
1262
|
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
1246
1263
|
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1247
1264
|
org: string;
|
|
1248
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView, "mentorApiSlice", any>>;
|
|
1265
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView, "mentorApiSlice", any>>;
|
|
1249
1266
|
}, useLazySeedMentorsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
1250
1267
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1251
1268
|
originalArgs?: undefined | undefined;
|
|
@@ -1266,7 +1283,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1266
1283
|
isUninitialized: true;
|
|
1267
1284
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1268
1285
|
org: string;
|
|
1269
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView, "mentorApiSlice", any>> & {
|
|
1286
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView, "mentorApiSlice", any>> & {
|
|
1270
1287
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView | undefined;
|
|
1271
1288
|
isUninitialized: false;
|
|
1272
1289
|
isLoading: false;
|
|
@@ -1283,7 +1300,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1283
1300
|
error: undefined;
|
|
1284
1301
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1285
1302
|
org: string;
|
|
1286
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView, "mentorApiSlice", any>> & {
|
|
1303
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView, "mentorApiSlice", any>> & {
|
|
1287
1304
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView | undefined;
|
|
1288
1305
|
isUninitialized: false;
|
|
1289
1306
|
isLoading: false;
|
|
@@ -1296,7 +1313,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1296
1313
|
error: undefined;
|
|
1297
1314
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1298
1315
|
org: string;
|
|
1299
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView, "mentorApiSlice", any>> & {
|
|
1316
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView, "mentorApiSlice", any>> & {
|
|
1300
1317
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView | undefined;
|
|
1301
1318
|
isUninitialized: false;
|
|
1302
1319
|
isLoading: false;
|
|
@@ -1307,7 +1324,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1307
1324
|
isError: true;
|
|
1308
1325
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1309
1326
|
org: string;
|
|
1310
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView, "mentorApiSlice", any>> & {
|
|
1327
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView, "mentorApiSlice", any>> & {
|
|
1311
1328
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView | undefined;
|
|
1312
1329
|
isUninitialized: false;
|
|
1313
1330
|
isLoading: false;
|
|
@@ -1338,7 +1355,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1338
1355
|
isUninitialized: true;
|
|
1339
1356
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1340
1357
|
org: string;
|
|
1341
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView, "mentorApiSlice", any>> & {
|
|
1358
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView, "mentorApiSlice", any>> & {
|
|
1342
1359
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView | undefined;
|
|
1343
1360
|
isUninitialized: false;
|
|
1344
1361
|
isLoading: false;
|
|
@@ -1355,7 +1372,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1355
1372
|
error: undefined;
|
|
1356
1373
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1357
1374
|
org: string;
|
|
1358
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView, "mentorApiSlice", any>> & {
|
|
1375
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView, "mentorApiSlice", any>> & {
|
|
1359
1376
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView | undefined;
|
|
1360
1377
|
isUninitialized: false;
|
|
1361
1378
|
isLoading: false;
|
|
@@ -1368,7 +1385,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1368
1385
|
error: undefined;
|
|
1369
1386
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1370
1387
|
org: string;
|
|
1371
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView, "mentorApiSlice", any>> & {
|
|
1388
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView, "mentorApiSlice", any>> & {
|
|
1372
1389
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView | undefined;
|
|
1373
1390
|
isUninitialized: false;
|
|
1374
1391
|
isLoading: false;
|
|
@@ -1379,7 +1396,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1379
1396
|
isError: true;
|
|
1380
1397
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1381
1398
|
org: string;
|
|
1382
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView, "mentorApiSlice", any>> & {
|
|
1399
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView, "mentorApiSlice", any>> & {
|
|
1383
1400
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView | undefined;
|
|
1384
1401
|
isUninitialized: false;
|
|
1385
1402
|
isLoading: false;
|
|
@@ -1393,7 +1410,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1393
1410
|
org: string;
|
|
1394
1411
|
}, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1395
1412
|
org: string;
|
|
1396
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView, "mentorApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
1413
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView, "mentorApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
1397
1414
|
reset: () => void;
|
|
1398
1415
|
}, {
|
|
1399
1416
|
lastArg: {
|
|
@@ -1420,7 +1437,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1420
1437
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1421
1438
|
mentor: string;
|
|
1422
1439
|
org: string;
|
|
1423
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").Mentor, "mentorApiSlice", any>> & {
|
|
1440
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").Mentor, "mentorApiSlice", any>> & {
|
|
1424
1441
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").Mentor | undefined;
|
|
1425
1442
|
isUninitialized: false;
|
|
1426
1443
|
isLoading: false;
|
|
@@ -1438,7 +1455,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1438
1455
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1439
1456
|
mentor: string;
|
|
1440
1457
|
org: string;
|
|
1441
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").Mentor, "mentorApiSlice", any>> & {
|
|
1458
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").Mentor, "mentorApiSlice", any>> & {
|
|
1442
1459
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").Mentor | undefined;
|
|
1443
1460
|
isUninitialized: false;
|
|
1444
1461
|
isLoading: false;
|
|
@@ -1452,7 +1469,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1452
1469
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1453
1470
|
mentor: string;
|
|
1454
1471
|
org: string;
|
|
1455
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").Mentor, "mentorApiSlice", any>> & {
|
|
1472
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").Mentor, "mentorApiSlice", any>> & {
|
|
1456
1473
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").Mentor | undefined;
|
|
1457
1474
|
isUninitialized: false;
|
|
1458
1475
|
isLoading: false;
|
|
@@ -1464,7 +1481,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1464
1481
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1465
1482
|
mentor: string;
|
|
1466
1483
|
org: string;
|
|
1467
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").Mentor, "mentorApiSlice", any>> & {
|
|
1484
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").Mentor, "mentorApiSlice", any>> & {
|
|
1468
1485
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").Mentor | undefined;
|
|
1469
1486
|
isUninitialized: false;
|
|
1470
1487
|
isLoading: false;
|
|
@@ -1502,7 +1519,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1502
1519
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1503
1520
|
mentor: string;
|
|
1504
1521
|
org: string;
|
|
1505
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").Mentor, "mentorApiSlice", any>> & {
|
|
1522
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").Mentor, "mentorApiSlice", any>> & {
|
|
1506
1523
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").Mentor | undefined;
|
|
1507
1524
|
isUninitialized: false;
|
|
1508
1525
|
isLoading: false;
|
|
@@ -1520,7 +1537,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1520
1537
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1521
1538
|
mentor: string;
|
|
1522
1539
|
org: string;
|
|
1523
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").Mentor, "mentorApiSlice", any>> & {
|
|
1540
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").Mentor, "mentorApiSlice", any>> & {
|
|
1524
1541
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").Mentor | undefined;
|
|
1525
1542
|
isUninitialized: false;
|
|
1526
1543
|
isLoading: false;
|
|
@@ -1534,7 +1551,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1534
1551
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1535
1552
|
mentor: string;
|
|
1536
1553
|
org: string;
|
|
1537
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").Mentor, "mentorApiSlice", any>> & {
|
|
1554
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").Mentor, "mentorApiSlice", any>> & {
|
|
1538
1555
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").Mentor | undefined;
|
|
1539
1556
|
isUninitialized: false;
|
|
1540
1557
|
isLoading: false;
|
|
@@ -1546,7 +1563,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1546
1563
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1547
1564
|
mentor: string;
|
|
1548
1565
|
org: string;
|
|
1549
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").Mentor, "mentorApiSlice", any>> & {
|
|
1566
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").Mentor, "mentorApiSlice", any>> & {
|
|
1550
1567
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").Mentor | undefined;
|
|
1551
1568
|
isUninitialized: false;
|
|
1552
1569
|
isLoading: false;
|
|
@@ -1560,7 +1577,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1560
1577
|
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1561
1578
|
mentor: string;
|
|
1562
1579
|
org: string;
|
|
1563
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").Mentor, "mentorApiSlice", any>>;
|
|
1580
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").Mentor, "mentorApiSlice", any>>;
|
|
1564
1581
|
}, useLazyGetMentorDetailsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
1565
1582
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1566
1583
|
originalArgs?: undefined | undefined;
|
|
@@ -1582,7 +1599,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1582
1599
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1583
1600
|
mentor: string;
|
|
1584
1601
|
org: string;
|
|
1585
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").Mentor, "mentorApiSlice", any>> & {
|
|
1602
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").Mentor, "mentorApiSlice", any>> & {
|
|
1586
1603
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").Mentor | undefined;
|
|
1587
1604
|
isUninitialized: false;
|
|
1588
1605
|
isLoading: false;
|
|
@@ -1600,7 +1617,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1600
1617
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1601
1618
|
mentor: string;
|
|
1602
1619
|
org: string;
|
|
1603
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").Mentor, "mentorApiSlice", any>> & {
|
|
1620
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").Mentor, "mentorApiSlice", any>> & {
|
|
1604
1621
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").Mentor | undefined;
|
|
1605
1622
|
isUninitialized: false;
|
|
1606
1623
|
isLoading: false;
|
|
@@ -1614,7 +1631,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1614
1631
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1615
1632
|
mentor: string;
|
|
1616
1633
|
org: string;
|
|
1617
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").Mentor, "mentorApiSlice", any>> & {
|
|
1634
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").Mentor, "mentorApiSlice", any>> & {
|
|
1618
1635
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").Mentor | undefined;
|
|
1619
1636
|
isUninitialized: false;
|
|
1620
1637
|
isLoading: false;
|
|
@@ -1626,7 +1643,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1626
1643
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1627
1644
|
mentor: string;
|
|
1628
1645
|
org: string;
|
|
1629
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").Mentor, "mentorApiSlice", any>> & {
|
|
1646
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").Mentor, "mentorApiSlice", any>> & {
|
|
1630
1647
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").Mentor | undefined;
|
|
1631
1648
|
isUninitialized: false;
|
|
1632
1649
|
isLoading: false;
|
|
@@ -1658,7 +1675,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1658
1675
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1659
1676
|
mentor: string;
|
|
1660
1677
|
org: string;
|
|
1661
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").Mentor, "mentorApiSlice", any>> & {
|
|
1678
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").Mentor, "mentorApiSlice", any>> & {
|
|
1662
1679
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").Mentor | undefined;
|
|
1663
1680
|
isUninitialized: false;
|
|
1664
1681
|
isLoading: false;
|
|
@@ -1676,7 +1693,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1676
1693
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1677
1694
|
mentor: string;
|
|
1678
1695
|
org: string;
|
|
1679
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").Mentor, "mentorApiSlice", any>> & {
|
|
1696
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").Mentor, "mentorApiSlice", any>> & {
|
|
1680
1697
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").Mentor | undefined;
|
|
1681
1698
|
isUninitialized: false;
|
|
1682
1699
|
isLoading: false;
|
|
@@ -1690,7 +1707,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1690
1707
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1691
1708
|
mentor: string;
|
|
1692
1709
|
org: string;
|
|
1693
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").Mentor, "mentorApiSlice", any>> & {
|
|
1710
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").Mentor, "mentorApiSlice", any>> & {
|
|
1694
1711
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").Mentor | undefined;
|
|
1695
1712
|
isUninitialized: false;
|
|
1696
1713
|
isLoading: false;
|
|
@@ -1702,7 +1719,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1702
1719
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1703
1720
|
mentor: string;
|
|
1704
1721
|
org: string;
|
|
1705
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").Mentor, "mentorApiSlice", any>> & {
|
|
1722
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").Mentor, "mentorApiSlice", any>> & {
|
|
1706
1723
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").Mentor | undefined;
|
|
1707
1724
|
isUninitialized: false;
|
|
1708
1725
|
isLoading: false;
|
|
@@ -1718,7 +1735,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1718
1735
|
}, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1719
1736
|
mentor: string;
|
|
1720
1737
|
org: string;
|
|
1721
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").Mentor, "mentorApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
1738
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").Mentor, "mentorApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
1722
1739
|
reset: () => void;
|
|
1723
1740
|
}, {
|
|
1724
1741
|
lastArg: {
|
|
@@ -1747,7 +1764,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1747
1764
|
mentor: string;
|
|
1748
1765
|
org: string;
|
|
1749
1766
|
departmentId?: number;
|
|
1750
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
1767
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
1751
1768
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
|
|
1752
1769
|
isUninitialized: false;
|
|
1753
1770
|
isLoading: false;
|
|
@@ -1766,7 +1783,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1766
1783
|
mentor: string;
|
|
1767
1784
|
org: string;
|
|
1768
1785
|
departmentId?: number;
|
|
1769
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
1786
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
1770
1787
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
|
|
1771
1788
|
isUninitialized: false;
|
|
1772
1789
|
isLoading: false;
|
|
@@ -1781,7 +1798,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1781
1798
|
mentor: string;
|
|
1782
1799
|
org: string;
|
|
1783
1800
|
departmentId?: number;
|
|
1784
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
1801
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
1785
1802
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
|
|
1786
1803
|
isUninitialized: false;
|
|
1787
1804
|
isLoading: false;
|
|
@@ -1794,7 +1811,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1794
1811
|
mentor: string;
|
|
1795
1812
|
org: string;
|
|
1796
1813
|
departmentId?: number;
|
|
1797
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
1814
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
1798
1815
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
|
|
1799
1816
|
isUninitialized: false;
|
|
1800
1817
|
isLoading: false;
|
|
@@ -1834,7 +1851,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1834
1851
|
mentor: string;
|
|
1835
1852
|
org: string;
|
|
1836
1853
|
departmentId?: number;
|
|
1837
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
1854
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
1838
1855
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
|
|
1839
1856
|
isUninitialized: false;
|
|
1840
1857
|
isLoading: false;
|
|
@@ -1853,7 +1870,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1853
1870
|
mentor: string;
|
|
1854
1871
|
org: string;
|
|
1855
1872
|
departmentId?: number;
|
|
1856
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
1873
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
1857
1874
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
|
|
1858
1875
|
isUninitialized: false;
|
|
1859
1876
|
isLoading: false;
|
|
@@ -1868,7 +1885,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1868
1885
|
mentor: string;
|
|
1869
1886
|
org: string;
|
|
1870
1887
|
departmentId?: number;
|
|
1871
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
1888
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
1872
1889
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
|
|
1873
1890
|
isUninitialized: false;
|
|
1874
1891
|
isLoading: false;
|
|
@@ -1881,7 +1898,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1881
1898
|
mentor: string;
|
|
1882
1899
|
org: string;
|
|
1883
1900
|
departmentId?: number;
|
|
1884
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
1901
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
1885
1902
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
|
|
1886
1903
|
isUninitialized: false;
|
|
1887
1904
|
isLoading: false;
|
|
@@ -1896,7 +1913,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1896
1913
|
mentor: string;
|
|
1897
1914
|
org: string;
|
|
1898
1915
|
departmentId?: number;
|
|
1899
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>>;
|
|
1916
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>>;
|
|
1900
1917
|
}, useLazyGetMentorSettingsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
1901
1918
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1902
1919
|
originalArgs?: undefined | undefined;
|
|
@@ -1919,7 +1936,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1919
1936
|
mentor: string;
|
|
1920
1937
|
org: string;
|
|
1921
1938
|
departmentId?: number;
|
|
1922
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
1939
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
1923
1940
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
|
|
1924
1941
|
isUninitialized: false;
|
|
1925
1942
|
isLoading: false;
|
|
@@ -1938,7 +1955,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1938
1955
|
mentor: string;
|
|
1939
1956
|
org: string;
|
|
1940
1957
|
departmentId?: number;
|
|
1941
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
1958
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
1942
1959
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
|
|
1943
1960
|
isUninitialized: false;
|
|
1944
1961
|
isLoading: false;
|
|
@@ -1953,7 +1970,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1953
1970
|
mentor: string;
|
|
1954
1971
|
org: string;
|
|
1955
1972
|
departmentId?: number;
|
|
1956
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
1973
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
1957
1974
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
|
|
1958
1975
|
isUninitialized: false;
|
|
1959
1976
|
isLoading: false;
|
|
@@ -1966,7 +1983,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1966
1983
|
mentor: string;
|
|
1967
1984
|
org: string;
|
|
1968
1985
|
departmentId?: number;
|
|
1969
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
1986
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
1970
1987
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
|
|
1971
1988
|
isUninitialized: false;
|
|
1972
1989
|
isLoading: false;
|
|
@@ -1999,7 +2016,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1999
2016
|
mentor: string;
|
|
2000
2017
|
org: string;
|
|
2001
2018
|
departmentId?: number;
|
|
2002
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
2019
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
2003
2020
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
|
|
2004
2021
|
isUninitialized: false;
|
|
2005
2022
|
isLoading: false;
|
|
@@ -2018,7 +2035,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2018
2035
|
mentor: string;
|
|
2019
2036
|
org: string;
|
|
2020
2037
|
departmentId?: number;
|
|
2021
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
2038
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
2022
2039
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
|
|
2023
2040
|
isUninitialized: false;
|
|
2024
2041
|
isLoading: false;
|
|
@@ -2033,7 +2050,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2033
2050
|
mentor: string;
|
|
2034
2051
|
org: string;
|
|
2035
2052
|
departmentId?: number;
|
|
2036
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
2053
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
2037
2054
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
|
|
2038
2055
|
isUninitialized: false;
|
|
2039
2056
|
isLoading: false;
|
|
@@ -2046,7 +2063,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2046
2063
|
mentor: string;
|
|
2047
2064
|
org: string;
|
|
2048
2065
|
departmentId?: number;
|
|
2049
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
2066
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
2050
2067
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
|
|
2051
2068
|
isUninitialized: false;
|
|
2052
2069
|
isLoading: false;
|
|
@@ -2064,7 +2081,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2064
2081
|
mentor: string;
|
|
2065
2082
|
org: string;
|
|
2066
2083
|
departmentId?: number;
|
|
2067
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
2084
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
2068
2085
|
reset: () => void;
|
|
2069
2086
|
}, {
|
|
2070
2087
|
lastArg: {
|
|
@@ -2093,7 +2110,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2093
2110
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2094
2111
|
mentor: string;
|
|
2095
2112
|
org: string;
|
|
2096
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
2113
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
2097
2114
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
|
|
2098
2115
|
isUninitialized: false;
|
|
2099
2116
|
isLoading: false;
|
|
@@ -2111,7 +2128,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2111
2128
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2112
2129
|
mentor: string;
|
|
2113
2130
|
org: string;
|
|
2114
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
2131
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
2115
2132
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
|
|
2116
2133
|
isUninitialized: false;
|
|
2117
2134
|
isLoading: false;
|
|
@@ -2125,7 +2142,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2125
2142
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2126
2143
|
mentor: string;
|
|
2127
2144
|
org: string;
|
|
2128
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
2145
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
2129
2146
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
|
|
2130
2147
|
isUninitialized: false;
|
|
2131
2148
|
isLoading: false;
|
|
@@ -2137,7 +2154,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2137
2154
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2138
2155
|
mentor: string;
|
|
2139
2156
|
org: string;
|
|
2140
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
2157
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
2141
2158
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
|
|
2142
2159
|
isUninitialized: false;
|
|
2143
2160
|
isLoading: false;
|
|
@@ -2175,7 +2192,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2175
2192
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2176
2193
|
mentor: string;
|
|
2177
2194
|
org: string;
|
|
2178
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
2195
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
2179
2196
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
|
|
2180
2197
|
isUninitialized: false;
|
|
2181
2198
|
isLoading: false;
|
|
@@ -2193,7 +2210,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2193
2210
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2194
2211
|
mentor: string;
|
|
2195
2212
|
org: string;
|
|
2196
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
2213
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
2197
2214
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
|
|
2198
2215
|
isUninitialized: false;
|
|
2199
2216
|
isLoading: false;
|
|
@@ -2207,7 +2224,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2207
2224
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2208
2225
|
mentor: string;
|
|
2209
2226
|
org: string;
|
|
2210
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
2227
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
2211
2228
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
|
|
2212
2229
|
isUninitialized: false;
|
|
2213
2230
|
isLoading: false;
|
|
@@ -2219,7 +2236,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2219
2236
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2220
2237
|
mentor: string;
|
|
2221
2238
|
org: string;
|
|
2222
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
2239
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
2223
2240
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
|
|
2224
2241
|
isUninitialized: false;
|
|
2225
2242
|
isLoading: false;
|
|
@@ -2233,7 +2250,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2233
2250
|
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2234
2251
|
mentor: string;
|
|
2235
2252
|
org: string;
|
|
2236
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>>;
|
|
2253
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>>;
|
|
2237
2254
|
}, useLazyGetMentorPublicSettingsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
2238
2255
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
2239
2256
|
originalArgs?: undefined | undefined;
|
|
@@ -2255,7 +2272,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2255
2272
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2256
2273
|
mentor: string;
|
|
2257
2274
|
org: string;
|
|
2258
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
2275
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
2259
2276
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
|
|
2260
2277
|
isUninitialized: false;
|
|
2261
2278
|
isLoading: false;
|
|
@@ -2273,7 +2290,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2273
2290
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2274
2291
|
mentor: string;
|
|
2275
2292
|
org: string;
|
|
2276
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
2293
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
2277
2294
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
|
|
2278
2295
|
isUninitialized: false;
|
|
2279
2296
|
isLoading: false;
|
|
@@ -2287,7 +2304,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2287
2304
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2288
2305
|
mentor: string;
|
|
2289
2306
|
org: string;
|
|
2290
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
2307
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
2291
2308
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
|
|
2292
2309
|
isUninitialized: false;
|
|
2293
2310
|
isLoading: false;
|
|
@@ -2299,7 +2316,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2299
2316
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2300
2317
|
mentor: string;
|
|
2301
2318
|
org: string;
|
|
2302
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
2319
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
2303
2320
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
|
|
2304
2321
|
isUninitialized: false;
|
|
2305
2322
|
isLoading: false;
|
|
@@ -2331,7 +2348,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2331
2348
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2332
2349
|
mentor: string;
|
|
2333
2350
|
org: string;
|
|
2334
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
2351
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
2335
2352
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
|
|
2336
2353
|
isUninitialized: false;
|
|
2337
2354
|
isLoading: false;
|
|
@@ -2349,7 +2366,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2349
2366
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2350
2367
|
mentor: string;
|
|
2351
2368
|
org: string;
|
|
2352
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
2369
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
2353
2370
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
|
|
2354
2371
|
isUninitialized: false;
|
|
2355
2372
|
isLoading: false;
|
|
@@ -2363,7 +2380,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2363
2380
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2364
2381
|
mentor: string;
|
|
2365
2382
|
org: string;
|
|
2366
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
2383
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
2367
2384
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
|
|
2368
2385
|
isUninitialized: false;
|
|
2369
2386
|
isLoading: false;
|
|
@@ -2375,7 +2392,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2375
2392
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2376
2393
|
mentor: string;
|
|
2377
2394
|
org: string;
|
|
2378
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
2395
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
2379
2396
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
|
|
2380
2397
|
isUninitialized: false;
|
|
2381
2398
|
isLoading: false;
|
|
@@ -2391,7 +2408,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2391
2408
|
}, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2392
2409
|
mentor: string;
|
|
2393
2410
|
org: string;
|
|
2394
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
2411
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
2395
2412
|
reset: () => void;
|
|
2396
2413
|
}, {
|
|
2397
2414
|
lastArg: {
|
|
@@ -2565,7 +2582,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2565
2582
|
org: string;
|
|
2566
2583
|
departmentId?: number;
|
|
2567
2584
|
formData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsRequest;
|
|
2568
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettings, "mentorApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
2585
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").MentorSettings, "mentorApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
2569
2586
|
originalArgs?: {
|
|
2570
2587
|
mentor: string;
|
|
2571
2588
|
org: string;
|
|
@@ -2593,7 +2610,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2593
2610
|
isUninitialized: true;
|
|
2594
2611
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2595
2612
|
org: string;
|
|
2596
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount, "mentorApiSlice", any>> & {
|
|
2613
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount, "mentorApiSlice", any>> & {
|
|
2597
2614
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount | undefined;
|
|
2598
2615
|
isUninitialized: false;
|
|
2599
2616
|
isLoading: false;
|
|
@@ -2610,7 +2627,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2610
2627
|
error: undefined;
|
|
2611
2628
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2612
2629
|
org: string;
|
|
2613
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount, "mentorApiSlice", any>> & {
|
|
2630
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount, "mentorApiSlice", any>> & {
|
|
2614
2631
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount | undefined;
|
|
2615
2632
|
isUninitialized: false;
|
|
2616
2633
|
isLoading: false;
|
|
@@ -2623,7 +2640,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2623
2640
|
error: undefined;
|
|
2624
2641
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2625
2642
|
org: string;
|
|
2626
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount, "mentorApiSlice", any>> & {
|
|
2643
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount, "mentorApiSlice", any>> & {
|
|
2627
2644
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount | undefined;
|
|
2628
2645
|
isUninitialized: false;
|
|
2629
2646
|
isLoading: false;
|
|
@@ -2634,7 +2651,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2634
2651
|
isError: true;
|
|
2635
2652
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2636
2653
|
org: string;
|
|
2637
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount, "mentorApiSlice", any>> & {
|
|
2654
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount, "mentorApiSlice", any>> & {
|
|
2638
2655
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount | undefined;
|
|
2639
2656
|
isUninitialized: false;
|
|
2640
2657
|
isLoading: false;
|
|
@@ -2670,7 +2687,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2670
2687
|
isUninitialized: true;
|
|
2671
2688
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2672
2689
|
org: string;
|
|
2673
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount, "mentorApiSlice", any>> & {
|
|
2690
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount, "mentorApiSlice", any>> & {
|
|
2674
2691
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount | undefined;
|
|
2675
2692
|
isUninitialized: false;
|
|
2676
2693
|
isLoading: false;
|
|
@@ -2687,7 +2704,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2687
2704
|
error: undefined;
|
|
2688
2705
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2689
2706
|
org: string;
|
|
2690
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount, "mentorApiSlice", any>> & {
|
|
2707
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount, "mentorApiSlice", any>> & {
|
|
2691
2708
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount | undefined;
|
|
2692
2709
|
isUninitialized: false;
|
|
2693
2710
|
isLoading: false;
|
|
@@ -2700,7 +2717,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2700
2717
|
error: undefined;
|
|
2701
2718
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2702
2719
|
org: string;
|
|
2703
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount, "mentorApiSlice", any>> & {
|
|
2720
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount, "mentorApiSlice", any>> & {
|
|
2704
2721
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount | undefined;
|
|
2705
2722
|
isUninitialized: false;
|
|
2706
2723
|
isLoading: false;
|
|
@@ -2711,7 +2728,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2711
2728
|
isError: true;
|
|
2712
2729
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2713
2730
|
org: string;
|
|
2714
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount, "mentorApiSlice", any>> & {
|
|
2731
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount, "mentorApiSlice", any>> & {
|
|
2715
2732
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount | undefined;
|
|
2716
2733
|
isUninitialized: false;
|
|
2717
2734
|
isLoading: false;
|
|
@@ -2724,7 +2741,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2724
2741
|
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
2725
2742
|
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2726
2743
|
org: string;
|
|
2727
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount, "mentorApiSlice", any>>;
|
|
2744
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount, "mentorApiSlice", any>>;
|
|
2728
2745
|
}, useLazyGetFreeUsageCountQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
2729
2746
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
2730
2747
|
originalArgs?: undefined | undefined;
|
|
@@ -2745,7 +2762,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2745
2762
|
isUninitialized: true;
|
|
2746
2763
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2747
2764
|
org: string;
|
|
2748
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount, "mentorApiSlice", any>> & {
|
|
2765
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount, "mentorApiSlice", any>> & {
|
|
2749
2766
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount | undefined;
|
|
2750
2767
|
isUninitialized: false;
|
|
2751
2768
|
isLoading: false;
|
|
@@ -2762,7 +2779,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2762
2779
|
error: undefined;
|
|
2763
2780
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2764
2781
|
org: string;
|
|
2765
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount, "mentorApiSlice", any>> & {
|
|
2782
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount, "mentorApiSlice", any>> & {
|
|
2766
2783
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount | undefined;
|
|
2767
2784
|
isUninitialized: false;
|
|
2768
2785
|
isLoading: false;
|
|
@@ -2775,7 +2792,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2775
2792
|
error: undefined;
|
|
2776
2793
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2777
2794
|
org: string;
|
|
2778
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount, "mentorApiSlice", any>> & {
|
|
2795
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount, "mentorApiSlice", any>> & {
|
|
2779
2796
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount | undefined;
|
|
2780
2797
|
isUninitialized: false;
|
|
2781
2798
|
isLoading: false;
|
|
@@ -2786,7 +2803,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2786
2803
|
isError: true;
|
|
2787
2804
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2788
2805
|
org: string;
|
|
2789
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount, "mentorApiSlice", any>> & {
|
|
2806
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount, "mentorApiSlice", any>> & {
|
|
2790
2807
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount | undefined;
|
|
2791
2808
|
isUninitialized: false;
|
|
2792
2809
|
isLoading: false;
|
|
@@ -2817,7 +2834,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2817
2834
|
isUninitialized: true;
|
|
2818
2835
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2819
2836
|
org: string;
|
|
2820
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount, "mentorApiSlice", any>> & {
|
|
2837
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount, "mentorApiSlice", any>> & {
|
|
2821
2838
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount | undefined;
|
|
2822
2839
|
isUninitialized: false;
|
|
2823
2840
|
isLoading: false;
|
|
@@ -2834,7 +2851,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2834
2851
|
error: undefined;
|
|
2835
2852
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2836
2853
|
org: string;
|
|
2837
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount, "mentorApiSlice", any>> & {
|
|
2854
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount, "mentorApiSlice", any>> & {
|
|
2838
2855
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount | undefined;
|
|
2839
2856
|
isUninitialized: false;
|
|
2840
2857
|
isLoading: false;
|
|
@@ -2847,7 +2864,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2847
2864
|
error: undefined;
|
|
2848
2865
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2849
2866
|
org: string;
|
|
2850
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount, "mentorApiSlice", any>> & {
|
|
2867
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount, "mentorApiSlice", any>> & {
|
|
2851
2868
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount | undefined;
|
|
2852
2869
|
isUninitialized: false;
|
|
2853
2870
|
isLoading: false;
|
|
@@ -2858,7 +2875,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2858
2875
|
isError: true;
|
|
2859
2876
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2860
2877
|
org: string;
|
|
2861
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount, "mentorApiSlice", any>> & {
|
|
2878
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount, "mentorApiSlice", any>> & {
|
|
2862
2879
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount | undefined;
|
|
2863
2880
|
isUninitialized: false;
|
|
2864
2881
|
isLoading: false;
|
|
@@ -2872,7 +2889,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2872
2889
|
org: string;
|
|
2873
2890
|
}, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2874
2891
|
org: string;
|
|
2875
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount, "mentorApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
2892
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount, "mentorApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
2876
2893
|
reset: () => void;
|
|
2877
2894
|
}, {
|
|
2878
2895
|
lastArg: {
|
|
@@ -3043,7 +3060,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3043
3060
|
mentor: string;
|
|
3044
3061
|
org: string;
|
|
3045
3062
|
requestBody?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink;
|
|
3046
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
3063
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
3047
3064
|
originalArgs?: {
|
|
3048
3065
|
mentor: string;
|
|
3049
3066
|
org: string;
|
|
@@ -3071,7 +3088,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3071
3088
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3072
3089
|
mentor: string;
|
|
3073
3090
|
org: string;
|
|
3074
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3091
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3075
3092
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
|
|
3076
3093
|
isUninitialized: false;
|
|
3077
3094
|
isLoading: false;
|
|
@@ -3089,7 +3106,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3089
3106
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3090
3107
|
mentor: string;
|
|
3091
3108
|
org: string;
|
|
3092
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3109
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3093
3110
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
|
|
3094
3111
|
isUninitialized: false;
|
|
3095
3112
|
isLoading: false;
|
|
@@ -3103,7 +3120,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3103
3120
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3104
3121
|
mentor: string;
|
|
3105
3122
|
org: string;
|
|
3106
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3123
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3107
3124
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
|
|
3108
3125
|
isUninitialized: false;
|
|
3109
3126
|
isLoading: false;
|
|
@@ -3115,7 +3132,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3115
3132
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3116
3133
|
mentor: string;
|
|
3117
3134
|
org: string;
|
|
3118
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3135
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3119
3136
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
|
|
3120
3137
|
isUninitialized: false;
|
|
3121
3138
|
isLoading: false;
|
|
@@ -3153,7 +3170,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3153
3170
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3154
3171
|
mentor: string;
|
|
3155
3172
|
org: string;
|
|
3156
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3173
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3157
3174
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
|
|
3158
3175
|
isUninitialized: false;
|
|
3159
3176
|
isLoading: false;
|
|
@@ -3171,7 +3188,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3171
3188
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3172
3189
|
mentor: string;
|
|
3173
3190
|
org: string;
|
|
3174
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3191
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3175
3192
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
|
|
3176
3193
|
isUninitialized: false;
|
|
3177
3194
|
isLoading: false;
|
|
@@ -3185,7 +3202,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3185
3202
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3186
3203
|
mentor: string;
|
|
3187
3204
|
org: string;
|
|
3188
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3205
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3189
3206
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
|
|
3190
3207
|
isUninitialized: false;
|
|
3191
3208
|
isLoading: false;
|
|
@@ -3197,7 +3214,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3197
3214
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3198
3215
|
mentor: string;
|
|
3199
3216
|
org: string;
|
|
3200
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3217
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3201
3218
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
|
|
3202
3219
|
isUninitialized: false;
|
|
3203
3220
|
isLoading: false;
|
|
@@ -3211,7 +3228,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3211
3228
|
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3212
3229
|
mentor: string;
|
|
3213
3230
|
org: string;
|
|
3214
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>>;
|
|
3231
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>>;
|
|
3215
3232
|
}, useLazyGetShareableLinkQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
3216
3233
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
3217
3234
|
originalArgs?: undefined | undefined;
|
|
@@ -3233,7 +3250,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3233
3250
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3234
3251
|
mentor: string;
|
|
3235
3252
|
org: string;
|
|
3236
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3253
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3237
3254
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
|
|
3238
3255
|
isUninitialized: false;
|
|
3239
3256
|
isLoading: false;
|
|
@@ -3251,7 +3268,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3251
3268
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3252
3269
|
mentor: string;
|
|
3253
3270
|
org: string;
|
|
3254
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3271
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3255
3272
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
|
|
3256
3273
|
isUninitialized: false;
|
|
3257
3274
|
isLoading: false;
|
|
@@ -3265,7 +3282,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3265
3282
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3266
3283
|
mentor: string;
|
|
3267
3284
|
org: string;
|
|
3268
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3285
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3269
3286
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
|
|
3270
3287
|
isUninitialized: false;
|
|
3271
3288
|
isLoading: false;
|
|
@@ -3277,7 +3294,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3277
3294
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3278
3295
|
mentor: string;
|
|
3279
3296
|
org: string;
|
|
3280
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3297
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3281
3298
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
|
|
3282
3299
|
isUninitialized: false;
|
|
3283
3300
|
isLoading: false;
|
|
@@ -3309,7 +3326,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3309
3326
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3310
3327
|
mentor: string;
|
|
3311
3328
|
org: string;
|
|
3312
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3329
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3313
3330
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
|
|
3314
3331
|
isUninitialized: false;
|
|
3315
3332
|
isLoading: false;
|
|
@@ -3327,7 +3344,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3327
3344
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3328
3345
|
mentor: string;
|
|
3329
3346
|
org: string;
|
|
3330
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3347
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3331
3348
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
|
|
3332
3349
|
isUninitialized: false;
|
|
3333
3350
|
isLoading: false;
|
|
@@ -3341,7 +3358,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3341
3358
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3342
3359
|
mentor: string;
|
|
3343
3360
|
org: string;
|
|
3344
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3361
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3345
3362
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
|
|
3346
3363
|
isUninitialized: false;
|
|
3347
3364
|
isLoading: false;
|
|
@@ -3353,7 +3370,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3353
3370
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3354
3371
|
mentor: string;
|
|
3355
3372
|
org: string;
|
|
3356
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3373
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3357
3374
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
|
|
3358
3375
|
isUninitialized: false;
|
|
3359
3376
|
isLoading: false;
|
|
@@ -3369,7 +3386,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3369
3386
|
}, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3370
3387
|
mentor: string;
|
|
3371
3388
|
org: string;
|
|
3372
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
3389
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
3373
3390
|
reset: () => void;
|
|
3374
3391
|
}, {
|
|
3375
3392
|
lastArg: {
|
|
@@ -3397,7 +3414,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3397
3414
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3398
3415
|
mentor: string;
|
|
3399
3416
|
org: string;
|
|
3400
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3417
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3401
3418
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
|
|
3402
3419
|
isUninitialized: false;
|
|
3403
3420
|
isLoading: false;
|
|
@@ -3415,7 +3432,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3415
3432
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3416
3433
|
mentor: string;
|
|
3417
3434
|
org: string;
|
|
3418
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3435
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3419
3436
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
|
|
3420
3437
|
isUninitialized: false;
|
|
3421
3438
|
isLoading: false;
|
|
@@ -3429,7 +3446,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3429
3446
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3430
3447
|
mentor: string;
|
|
3431
3448
|
org: string;
|
|
3432
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3449
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3433
3450
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
|
|
3434
3451
|
isUninitialized: false;
|
|
3435
3452
|
isLoading: false;
|
|
@@ -3441,7 +3458,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3441
3458
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3442
3459
|
mentor: string;
|
|
3443
3460
|
org: string;
|
|
3444
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3461
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3445
3462
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
|
|
3446
3463
|
isUninitialized: false;
|
|
3447
3464
|
isLoading: false;
|
|
@@ -3479,7 +3496,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3479
3496
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3480
3497
|
mentor: string;
|
|
3481
3498
|
org: string;
|
|
3482
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3499
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3483
3500
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
|
|
3484
3501
|
isUninitialized: false;
|
|
3485
3502
|
isLoading: false;
|
|
@@ -3497,7 +3514,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3497
3514
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3498
3515
|
mentor: string;
|
|
3499
3516
|
org: string;
|
|
3500
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3517
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3501
3518
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
|
|
3502
3519
|
isUninitialized: false;
|
|
3503
3520
|
isLoading: false;
|
|
@@ -3511,7 +3528,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3511
3528
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3512
3529
|
mentor: string;
|
|
3513
3530
|
org: string;
|
|
3514
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3531
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3515
3532
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
|
|
3516
3533
|
isUninitialized: false;
|
|
3517
3534
|
isLoading: false;
|
|
@@ -3523,7 +3540,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3523
3540
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3524
3541
|
mentor: string;
|
|
3525
3542
|
org: string;
|
|
3526
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3543
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3527
3544
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
|
|
3528
3545
|
isUninitialized: false;
|
|
3529
3546
|
isLoading: false;
|
|
@@ -3537,7 +3554,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3537
3554
|
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3538
3555
|
mentor: string;
|
|
3539
3556
|
org: string;
|
|
3540
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>>;
|
|
3557
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>>;
|
|
3541
3558
|
}, useLazyGetShareableLinkPublicQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
3542
3559
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
3543
3560
|
originalArgs?: undefined | undefined;
|
|
@@ -3559,7 +3576,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3559
3576
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3560
3577
|
mentor: string;
|
|
3561
3578
|
org: string;
|
|
3562
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3579
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3563
3580
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
|
|
3564
3581
|
isUninitialized: false;
|
|
3565
3582
|
isLoading: false;
|
|
@@ -3577,7 +3594,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3577
3594
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3578
3595
|
mentor: string;
|
|
3579
3596
|
org: string;
|
|
3580
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3597
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3581
3598
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
|
|
3582
3599
|
isUninitialized: false;
|
|
3583
3600
|
isLoading: false;
|
|
@@ -3591,7 +3608,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3591
3608
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3592
3609
|
mentor: string;
|
|
3593
3610
|
org: string;
|
|
3594
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3611
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3595
3612
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
|
|
3596
3613
|
isUninitialized: false;
|
|
3597
3614
|
isLoading: false;
|
|
@@ -3603,7 +3620,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3603
3620
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3604
3621
|
mentor: string;
|
|
3605
3622
|
org: string;
|
|
3606
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3623
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3607
3624
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
|
|
3608
3625
|
isUninitialized: false;
|
|
3609
3626
|
isLoading: false;
|
|
@@ -3635,7 +3652,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3635
3652
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3636
3653
|
mentor: string;
|
|
3637
3654
|
org: string;
|
|
3638
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3655
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3639
3656
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
|
|
3640
3657
|
isUninitialized: false;
|
|
3641
3658
|
isLoading: false;
|
|
@@ -3653,7 +3670,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3653
3670
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3654
3671
|
mentor: string;
|
|
3655
3672
|
org: string;
|
|
3656
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3673
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3657
3674
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
|
|
3658
3675
|
isUninitialized: false;
|
|
3659
3676
|
isLoading: false;
|
|
@@ -3667,7 +3684,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3667
3684
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3668
3685
|
mentor: string;
|
|
3669
3686
|
org: string;
|
|
3670
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3687
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3671
3688
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
|
|
3672
3689
|
isUninitialized: false;
|
|
3673
3690
|
isLoading: false;
|
|
@@ -3679,7 +3696,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3679
3696
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3680
3697
|
mentor: string;
|
|
3681
3698
|
org: string;
|
|
3682
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3699
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3683
3700
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
|
|
3684
3701
|
isUninitialized: false;
|
|
3685
3702
|
isLoading: false;
|
|
@@ -3695,7 +3712,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3695
3712
|
}, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3696
3713
|
mentor: string;
|
|
3697
3714
|
org: string;
|
|
3698
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
3715
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
3699
3716
|
reset: () => void;
|
|
3700
3717
|
}, {
|
|
3701
3718
|
lastArg: {
|
|
@@ -3865,7 +3882,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3865
3882
|
}) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
3866
3883
|
mentor: string;
|
|
3867
3884
|
org: string;
|
|
3868
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", void, "mentorApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
3885
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", void, "mentorApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
3869
3886
|
originalArgs?: {
|
|
3870
3887
|
mentor: string;
|
|
3871
3888
|
org: string;
|
|
@@ -4036,7 +4053,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
4036
4053
|
mentor: string;
|
|
4037
4054
|
org: string;
|
|
4038
4055
|
requestBody?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink;
|
|
4039
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
4056
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
4040
4057
|
originalArgs?: {
|
|
4041
4058
|
mentor: string;
|
|
4042
4059
|
org: string;
|
|
@@ -4205,6 +4222,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
4205
4222
|
org: string;
|
|
4206
4223
|
departmentId?: number;
|
|
4207
4224
|
filterBy?: string;
|
|
4225
|
+
isFeatured?: boolean;
|
|
4208
4226
|
metadataKey?: string;
|
|
4209
4227
|
metadataValue?: string;
|
|
4210
4228
|
returnSessionInformation?: boolean;
|
|
@@ -4214,16 +4232,18 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
4214
4232
|
org: string;
|
|
4215
4233
|
departmentId?: number;
|
|
4216
4234
|
filterBy?: string;
|
|
4235
|
+
isFeatured?: boolean;
|
|
4217
4236
|
metadataKey?: string;
|
|
4218
4237
|
metadataValue?: string;
|
|
4219
4238
|
returnSessionInformation?: boolean;
|
|
4220
4239
|
visibility?: string;
|
|
4221
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", void, "mentorApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
4240
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", void, "mentorApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
4222
4241
|
originalArgs?: {
|
|
4223
4242
|
name: string;
|
|
4224
4243
|
org: string;
|
|
4225
4244
|
departmentId?: number;
|
|
4226
4245
|
filterBy?: string;
|
|
4246
|
+
isFeatured?: boolean;
|
|
4227
4247
|
metadataKey?: string;
|
|
4228
4248
|
metadataValue?: string;
|
|
4229
4249
|
returnSessionInformation?: boolean;
|
|
@@ -4395,7 +4415,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
4395
4415
|
mentor: string;
|
|
4396
4416
|
org: string;
|
|
4397
4417
|
requestBody: import("node_modules/@iblai/iblai-api/dist/types").MentorFork;
|
|
4398
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").Mentor, "mentorApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
4418
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").Mentor, "mentorApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
4399
4419
|
originalArgs?: {
|
|
4400
4420
|
mentor: string;
|
|
4401
4421
|
org: string;
|
|
@@ -4436,7 +4456,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
4436
4456
|
tags?: Array<string>;
|
|
4437
4457
|
tenant?: string;
|
|
4438
4458
|
uniqueId?: string;
|
|
4439
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
4459
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
4440
4460
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
|
|
4441
4461
|
isUninitialized: false;
|
|
4442
4462
|
isLoading: false;
|
|
@@ -4467,7 +4487,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
4467
4487
|
tags?: Array<string>;
|
|
4468
4488
|
tenant?: string;
|
|
4469
4489
|
uniqueId?: string;
|
|
4470
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
4490
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
4471
4491
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
|
|
4472
4492
|
isUninitialized: false;
|
|
4473
4493
|
isLoading: false;
|
|
@@ -4494,7 +4514,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
4494
4514
|
tags?: Array<string>;
|
|
4495
4515
|
tenant?: string;
|
|
4496
4516
|
uniqueId?: string;
|
|
4497
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
4517
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
4498
4518
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
|
|
4499
4519
|
isUninitialized: false;
|
|
4500
4520
|
isLoading: false;
|
|
@@ -4519,7 +4539,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
4519
4539
|
tags?: Array<string>;
|
|
4520
4540
|
tenant?: string;
|
|
4521
4541
|
uniqueId?: string;
|
|
4522
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
4542
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
4523
4543
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
|
|
4524
4544
|
isUninitialized: false;
|
|
4525
4545
|
isLoading: false;
|
|
@@ -4583,7 +4603,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
4583
4603
|
tags?: Array<string>;
|
|
4584
4604
|
tenant?: string;
|
|
4585
4605
|
uniqueId?: string;
|
|
4586
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
4606
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
4587
4607
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
|
|
4588
4608
|
isUninitialized: false;
|
|
4589
4609
|
isLoading: false;
|
|
@@ -4614,7 +4634,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
4614
4634
|
tags?: Array<string>;
|
|
4615
4635
|
tenant?: string;
|
|
4616
4636
|
uniqueId?: string;
|
|
4617
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
4637
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
4618
4638
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
|
|
4619
4639
|
isUninitialized: false;
|
|
4620
4640
|
isLoading: false;
|
|
@@ -4641,7 +4661,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
4641
4661
|
tags?: Array<string>;
|
|
4642
4662
|
tenant?: string;
|
|
4643
4663
|
uniqueId?: string;
|
|
4644
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
4664
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
4645
4665
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
|
|
4646
4666
|
isUninitialized: false;
|
|
4647
4667
|
isLoading: false;
|
|
@@ -4666,7 +4686,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
4666
4686
|
tags?: Array<string>;
|
|
4667
4687
|
tenant?: string;
|
|
4668
4688
|
uniqueId?: string;
|
|
4669
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
4689
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
4670
4690
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
|
|
4671
4691
|
isUninitialized: false;
|
|
4672
4692
|
isLoading: false;
|
|
@@ -4693,7 +4713,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
4693
4713
|
tags?: Array<string>;
|
|
4694
4714
|
tenant?: string;
|
|
4695
4715
|
uniqueId?: string;
|
|
4696
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>>;
|
|
4716
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>>;
|
|
4697
4717
|
}, useLazyGetPublicMentorsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
4698
4718
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
4699
4719
|
originalArgs?: undefined | undefined;
|
|
@@ -4728,7 +4748,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
4728
4748
|
tags?: Array<string>;
|
|
4729
4749
|
tenant?: string;
|
|
4730
4750
|
uniqueId?: string;
|
|
4731
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
4751
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
4732
4752
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
|
|
4733
4753
|
isUninitialized: false;
|
|
4734
4754
|
isLoading: false;
|
|
@@ -4759,7 +4779,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
4759
4779
|
tags?: Array<string>;
|
|
4760
4780
|
tenant?: string;
|
|
4761
4781
|
uniqueId?: string;
|
|
4762
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
4782
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
4763
4783
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
|
|
4764
4784
|
isUninitialized: false;
|
|
4765
4785
|
isLoading: false;
|
|
@@ -4786,7 +4806,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
4786
4806
|
tags?: Array<string>;
|
|
4787
4807
|
tenant?: string;
|
|
4788
4808
|
uniqueId?: string;
|
|
4789
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
4809
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
4790
4810
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
|
|
4791
4811
|
isUninitialized: false;
|
|
4792
4812
|
isLoading: false;
|
|
@@ -4811,7 +4831,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
4811
4831
|
tags?: Array<string>;
|
|
4812
4832
|
tenant?: string;
|
|
4813
4833
|
uniqueId?: string;
|
|
4814
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
4834
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
4815
4835
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
|
|
4816
4836
|
isUninitialized: false;
|
|
4817
4837
|
isLoading: false;
|
|
@@ -4856,7 +4876,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
4856
4876
|
tags?: Array<string>;
|
|
4857
4877
|
tenant?: string;
|
|
4858
4878
|
uniqueId?: string;
|
|
4859
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
4879
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
4860
4880
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
|
|
4861
4881
|
isUninitialized: false;
|
|
4862
4882
|
isLoading: false;
|
|
@@ -4887,7 +4907,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
4887
4907
|
tags?: Array<string>;
|
|
4888
4908
|
tenant?: string;
|
|
4889
4909
|
uniqueId?: string;
|
|
4890
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
4910
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
4891
4911
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
|
|
4892
4912
|
isUninitialized: false;
|
|
4893
4913
|
isLoading: false;
|
|
@@ -4914,7 +4934,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
4914
4934
|
tags?: Array<string>;
|
|
4915
4935
|
tenant?: string;
|
|
4916
4936
|
uniqueId?: string;
|
|
4917
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
4937
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
4918
4938
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
|
|
4919
4939
|
isUninitialized: false;
|
|
4920
4940
|
isLoading: false;
|
|
@@ -4939,7 +4959,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
4939
4959
|
tags?: Array<string>;
|
|
4940
4960
|
tenant?: string;
|
|
4941
4961
|
uniqueId?: string;
|
|
4942
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
4962
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
4943
4963
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
|
|
4944
4964
|
isUninitialized: false;
|
|
4945
4965
|
isLoading: false;
|
|
@@ -4981,7 +5001,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
4981
5001
|
tags?: Array<string>;
|
|
4982
5002
|
tenant?: string;
|
|
4983
5003
|
uniqueId?: string;
|
|
4984
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
5004
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
4985
5005
|
reset: () => void;
|
|
4986
5006
|
}, {
|
|
4987
5007
|
lastArg: {
|
|
@@ -5001,4 +5021,824 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
5001
5021
|
tenant?: string;
|
|
5002
5022
|
uniqueId?: string;
|
|
5003
5023
|
};
|
|
5024
|
+
}], useGetRecentlyAccessedMentorsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
5025
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
5026
|
+
originalArgs?: undefined | undefined;
|
|
5027
|
+
data?: undefined | undefined;
|
|
5028
|
+
error?: undefined | undefined;
|
|
5029
|
+
requestId?: undefined | undefined;
|
|
5030
|
+
endpointName?: string | undefined;
|
|
5031
|
+
startedTimeStamp?: undefined | undefined;
|
|
5032
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
5033
|
+
} & {
|
|
5034
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").RecentlyAccessedMentor[] | undefined;
|
|
5035
|
+
isUninitialized: false;
|
|
5036
|
+
isLoading: false;
|
|
5037
|
+
isFetching: false;
|
|
5038
|
+
isSuccess: false;
|
|
5039
|
+
isError: false;
|
|
5040
|
+
}, "isUninitialized"> & {
|
|
5041
|
+
isUninitialized: true;
|
|
5042
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5043
|
+
org: string;
|
|
5044
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").RecentlyAccessedMentor[], "mentorApiSlice", any>> & {
|
|
5045
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").RecentlyAccessedMentor[] | undefined;
|
|
5046
|
+
isUninitialized: false;
|
|
5047
|
+
isLoading: false;
|
|
5048
|
+
isFetching: false;
|
|
5049
|
+
isSuccess: false;
|
|
5050
|
+
isError: false;
|
|
5051
|
+
}, {
|
|
5052
|
+
isLoading: true;
|
|
5053
|
+
isFetching: boolean;
|
|
5054
|
+
data: undefined;
|
|
5055
|
+
} | ({
|
|
5056
|
+
isSuccess: true;
|
|
5057
|
+
isFetching: true;
|
|
5058
|
+
error: undefined;
|
|
5059
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5060
|
+
org: string;
|
|
5061
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").RecentlyAccessedMentor[], "mentorApiSlice", any>> & {
|
|
5062
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").RecentlyAccessedMentor[] | undefined;
|
|
5063
|
+
isUninitialized: false;
|
|
5064
|
+
isLoading: false;
|
|
5065
|
+
isFetching: false;
|
|
5066
|
+
isSuccess: false;
|
|
5067
|
+
isError: false;
|
|
5068
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
5069
|
+
isSuccess: true;
|
|
5070
|
+
isFetching: false;
|
|
5071
|
+
error: undefined;
|
|
5072
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5073
|
+
org: string;
|
|
5074
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").RecentlyAccessedMentor[], "mentorApiSlice", any>> & {
|
|
5075
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").RecentlyAccessedMentor[] | undefined;
|
|
5076
|
+
isUninitialized: false;
|
|
5077
|
+
isLoading: false;
|
|
5078
|
+
isFetching: false;
|
|
5079
|
+
isSuccess: false;
|
|
5080
|
+
isError: false;
|
|
5081
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
5082
|
+
isError: true;
|
|
5083
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5084
|
+
org: string;
|
|
5085
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").RecentlyAccessedMentor[], "mentorApiSlice", any>> & {
|
|
5086
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").RecentlyAccessedMentor[] | undefined;
|
|
5087
|
+
isUninitialized: false;
|
|
5088
|
+
isLoading: false;
|
|
5089
|
+
isFetching: false;
|
|
5090
|
+
isSuccess: false;
|
|
5091
|
+
isError: false;
|
|
5092
|
+
}, "error">>)>> & {
|
|
5093
|
+
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
5094
|
+
}>(arg: {
|
|
5095
|
+
org: string;
|
|
5096
|
+
} | typeof import("@reduxjs/toolkit/query").skipToken, options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & {
|
|
5097
|
+
skip?: boolean;
|
|
5098
|
+
refetchOnMountOrArgChange?: boolean | number;
|
|
5099
|
+
} & {
|
|
5100
|
+
skip?: boolean;
|
|
5101
|
+
selectFromResult?: ((state: import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
5102
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
5103
|
+
originalArgs?: undefined | undefined;
|
|
5104
|
+
data?: undefined | undefined;
|
|
5105
|
+
error?: undefined | undefined;
|
|
5106
|
+
requestId?: undefined | undefined;
|
|
5107
|
+
endpointName?: string | undefined;
|
|
5108
|
+
startedTimeStamp?: undefined | undefined;
|
|
5109
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
5110
|
+
} & {
|
|
5111
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").RecentlyAccessedMentor[] | undefined;
|
|
5112
|
+
isUninitialized: false;
|
|
5113
|
+
isLoading: false;
|
|
5114
|
+
isFetching: false;
|
|
5115
|
+
isSuccess: false;
|
|
5116
|
+
isError: false;
|
|
5117
|
+
}, "isUninitialized"> & {
|
|
5118
|
+
isUninitialized: true;
|
|
5119
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5120
|
+
org: string;
|
|
5121
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").RecentlyAccessedMentor[], "mentorApiSlice", any>> & {
|
|
5122
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").RecentlyAccessedMentor[] | undefined;
|
|
5123
|
+
isUninitialized: false;
|
|
5124
|
+
isLoading: false;
|
|
5125
|
+
isFetching: false;
|
|
5126
|
+
isSuccess: false;
|
|
5127
|
+
isError: false;
|
|
5128
|
+
}, {
|
|
5129
|
+
isLoading: true;
|
|
5130
|
+
isFetching: boolean;
|
|
5131
|
+
data: undefined;
|
|
5132
|
+
} | ({
|
|
5133
|
+
isSuccess: true;
|
|
5134
|
+
isFetching: true;
|
|
5135
|
+
error: undefined;
|
|
5136
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5137
|
+
org: string;
|
|
5138
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").RecentlyAccessedMentor[], "mentorApiSlice", any>> & {
|
|
5139
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").RecentlyAccessedMentor[] | undefined;
|
|
5140
|
+
isUninitialized: false;
|
|
5141
|
+
isLoading: false;
|
|
5142
|
+
isFetching: false;
|
|
5143
|
+
isSuccess: false;
|
|
5144
|
+
isError: false;
|
|
5145
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
5146
|
+
isSuccess: true;
|
|
5147
|
+
isFetching: false;
|
|
5148
|
+
error: undefined;
|
|
5149
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5150
|
+
org: string;
|
|
5151
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").RecentlyAccessedMentor[], "mentorApiSlice", any>> & {
|
|
5152
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").RecentlyAccessedMentor[] | undefined;
|
|
5153
|
+
isUninitialized: false;
|
|
5154
|
+
isLoading: false;
|
|
5155
|
+
isFetching: false;
|
|
5156
|
+
isSuccess: false;
|
|
5157
|
+
isError: false;
|
|
5158
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
5159
|
+
isError: true;
|
|
5160
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5161
|
+
org: string;
|
|
5162
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").RecentlyAccessedMentor[], "mentorApiSlice", any>> & {
|
|
5163
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").RecentlyAccessedMentor[] | undefined;
|
|
5164
|
+
isUninitialized: false;
|
|
5165
|
+
isLoading: false;
|
|
5166
|
+
isFetching: false;
|
|
5167
|
+
isSuccess: false;
|
|
5168
|
+
isError: false;
|
|
5169
|
+
}, "error">>)>> & {
|
|
5170
|
+
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
5171
|
+
}) => R) | undefined;
|
|
5172
|
+
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
5173
|
+
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5174
|
+
org: string;
|
|
5175
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").RecentlyAccessedMentor[], "mentorApiSlice", any>>;
|
|
5176
|
+
}, useLazyGetRecentlyAccessedMentorsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
5177
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
5178
|
+
originalArgs?: undefined | undefined;
|
|
5179
|
+
data?: undefined | undefined;
|
|
5180
|
+
error?: undefined | undefined;
|
|
5181
|
+
requestId?: undefined | undefined;
|
|
5182
|
+
endpointName?: string | undefined;
|
|
5183
|
+
startedTimeStamp?: undefined | undefined;
|
|
5184
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
5185
|
+
} & {
|
|
5186
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").RecentlyAccessedMentor[] | undefined;
|
|
5187
|
+
isUninitialized: false;
|
|
5188
|
+
isLoading: false;
|
|
5189
|
+
isFetching: false;
|
|
5190
|
+
isSuccess: false;
|
|
5191
|
+
isError: false;
|
|
5192
|
+
}, "isUninitialized"> & {
|
|
5193
|
+
isUninitialized: true;
|
|
5194
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5195
|
+
org: string;
|
|
5196
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").RecentlyAccessedMentor[], "mentorApiSlice", any>> & {
|
|
5197
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").RecentlyAccessedMentor[] | undefined;
|
|
5198
|
+
isUninitialized: false;
|
|
5199
|
+
isLoading: false;
|
|
5200
|
+
isFetching: false;
|
|
5201
|
+
isSuccess: false;
|
|
5202
|
+
isError: false;
|
|
5203
|
+
}, {
|
|
5204
|
+
isLoading: true;
|
|
5205
|
+
isFetching: boolean;
|
|
5206
|
+
data: undefined;
|
|
5207
|
+
} | ({
|
|
5208
|
+
isSuccess: true;
|
|
5209
|
+
isFetching: true;
|
|
5210
|
+
error: undefined;
|
|
5211
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5212
|
+
org: string;
|
|
5213
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").RecentlyAccessedMentor[], "mentorApiSlice", any>> & {
|
|
5214
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").RecentlyAccessedMentor[] | undefined;
|
|
5215
|
+
isUninitialized: false;
|
|
5216
|
+
isLoading: false;
|
|
5217
|
+
isFetching: false;
|
|
5218
|
+
isSuccess: false;
|
|
5219
|
+
isError: false;
|
|
5220
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
5221
|
+
isSuccess: true;
|
|
5222
|
+
isFetching: false;
|
|
5223
|
+
error: undefined;
|
|
5224
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5225
|
+
org: string;
|
|
5226
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").RecentlyAccessedMentor[], "mentorApiSlice", any>> & {
|
|
5227
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").RecentlyAccessedMentor[] | undefined;
|
|
5228
|
+
isUninitialized: false;
|
|
5229
|
+
isLoading: false;
|
|
5230
|
+
isFetching: false;
|
|
5231
|
+
isSuccess: false;
|
|
5232
|
+
isError: false;
|
|
5233
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
5234
|
+
isError: true;
|
|
5235
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5236
|
+
org: string;
|
|
5237
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").RecentlyAccessedMentor[], "mentorApiSlice", any>> & {
|
|
5238
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").RecentlyAccessedMentor[] | undefined;
|
|
5239
|
+
isUninitialized: false;
|
|
5240
|
+
isLoading: false;
|
|
5241
|
+
isFetching: false;
|
|
5242
|
+
isSuccess: false;
|
|
5243
|
+
isError: false;
|
|
5244
|
+
}, "error">>)>> & {
|
|
5245
|
+
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
5246
|
+
}>(options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & Omit<{
|
|
5247
|
+
skip?: boolean;
|
|
5248
|
+
selectFromResult?: ((state: import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
5249
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
5250
|
+
originalArgs?: undefined | undefined;
|
|
5251
|
+
data?: undefined | undefined;
|
|
5252
|
+
error?: undefined | undefined;
|
|
5253
|
+
requestId?: undefined | undefined;
|
|
5254
|
+
endpointName?: string | undefined;
|
|
5255
|
+
startedTimeStamp?: undefined | undefined;
|
|
5256
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
5257
|
+
} & {
|
|
5258
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").RecentlyAccessedMentor[] | undefined;
|
|
5259
|
+
isUninitialized: false;
|
|
5260
|
+
isLoading: false;
|
|
5261
|
+
isFetching: false;
|
|
5262
|
+
isSuccess: false;
|
|
5263
|
+
isError: false;
|
|
5264
|
+
}, "isUninitialized"> & {
|
|
5265
|
+
isUninitialized: true;
|
|
5266
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5267
|
+
org: string;
|
|
5268
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").RecentlyAccessedMentor[], "mentorApiSlice", any>> & {
|
|
5269
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").RecentlyAccessedMentor[] | undefined;
|
|
5270
|
+
isUninitialized: false;
|
|
5271
|
+
isLoading: false;
|
|
5272
|
+
isFetching: false;
|
|
5273
|
+
isSuccess: false;
|
|
5274
|
+
isError: false;
|
|
5275
|
+
}, {
|
|
5276
|
+
isLoading: true;
|
|
5277
|
+
isFetching: boolean;
|
|
5278
|
+
data: undefined;
|
|
5279
|
+
} | ({
|
|
5280
|
+
isSuccess: true;
|
|
5281
|
+
isFetching: true;
|
|
5282
|
+
error: undefined;
|
|
5283
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5284
|
+
org: string;
|
|
5285
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").RecentlyAccessedMentor[], "mentorApiSlice", any>> & {
|
|
5286
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").RecentlyAccessedMentor[] | undefined;
|
|
5287
|
+
isUninitialized: false;
|
|
5288
|
+
isLoading: false;
|
|
5289
|
+
isFetching: false;
|
|
5290
|
+
isSuccess: false;
|
|
5291
|
+
isError: false;
|
|
5292
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
5293
|
+
isSuccess: true;
|
|
5294
|
+
isFetching: false;
|
|
5295
|
+
error: undefined;
|
|
5296
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5297
|
+
org: string;
|
|
5298
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").RecentlyAccessedMentor[], "mentorApiSlice", any>> & {
|
|
5299
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").RecentlyAccessedMentor[] | undefined;
|
|
5300
|
+
isUninitialized: false;
|
|
5301
|
+
isLoading: false;
|
|
5302
|
+
isFetching: false;
|
|
5303
|
+
isSuccess: false;
|
|
5304
|
+
isError: false;
|
|
5305
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
5306
|
+
isError: true;
|
|
5307
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5308
|
+
org: string;
|
|
5309
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").RecentlyAccessedMentor[], "mentorApiSlice", any>> & {
|
|
5310
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").RecentlyAccessedMentor[] | undefined;
|
|
5311
|
+
isUninitialized: false;
|
|
5312
|
+
isLoading: false;
|
|
5313
|
+
isFetching: false;
|
|
5314
|
+
isSuccess: false;
|
|
5315
|
+
isError: false;
|
|
5316
|
+
}, "error">>)>> & {
|
|
5317
|
+
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
5318
|
+
}) => R) | undefined;
|
|
5319
|
+
}, "skip">) | undefined) => [(arg: {
|
|
5320
|
+
org: string;
|
|
5321
|
+
}, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5322
|
+
org: string;
|
|
5323
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").RecentlyAccessedMentor[], "mentorApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
5324
|
+
reset: () => void;
|
|
5325
|
+
}, {
|
|
5326
|
+
lastArg: {
|
|
5327
|
+
org: string;
|
|
5328
|
+
};
|
|
5329
|
+
}], useGetModerationLogsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
5330
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
5331
|
+
originalArgs?: undefined | undefined;
|
|
5332
|
+
data?: undefined | undefined;
|
|
5333
|
+
error?: undefined | undefined;
|
|
5334
|
+
requestId?: undefined | undefined;
|
|
5335
|
+
endpointName?: string | undefined;
|
|
5336
|
+
startedTimeStamp?: undefined | undefined;
|
|
5337
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
5338
|
+
} & {
|
|
5339
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedModerationLogList | undefined;
|
|
5340
|
+
isUninitialized: false;
|
|
5341
|
+
isLoading: false;
|
|
5342
|
+
isFetching: false;
|
|
5343
|
+
isSuccess: false;
|
|
5344
|
+
isError: false;
|
|
5345
|
+
}, "isUninitialized"> & {
|
|
5346
|
+
isUninitialized: true;
|
|
5347
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5348
|
+
org: string;
|
|
5349
|
+
endTime?: string;
|
|
5350
|
+
mentor?: string;
|
|
5351
|
+
ordering?: string;
|
|
5352
|
+
page?: number;
|
|
5353
|
+
pageSize?: number;
|
|
5354
|
+
platformKey?: string;
|
|
5355
|
+
search?: string;
|
|
5356
|
+
startTime?: string;
|
|
5357
|
+
targetSystem?: "Moderation System" | "Safety System";
|
|
5358
|
+
username?: string;
|
|
5359
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").PaginatedModerationLogList, "mentorApiSlice", any>> & {
|
|
5360
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedModerationLogList | undefined;
|
|
5361
|
+
isUninitialized: false;
|
|
5362
|
+
isLoading: false;
|
|
5363
|
+
isFetching: false;
|
|
5364
|
+
isSuccess: false;
|
|
5365
|
+
isError: false;
|
|
5366
|
+
}, {
|
|
5367
|
+
isLoading: true;
|
|
5368
|
+
isFetching: boolean;
|
|
5369
|
+
data: undefined;
|
|
5370
|
+
} | ({
|
|
5371
|
+
isSuccess: true;
|
|
5372
|
+
isFetching: true;
|
|
5373
|
+
error: undefined;
|
|
5374
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5375
|
+
org: string;
|
|
5376
|
+
endTime?: string;
|
|
5377
|
+
mentor?: string;
|
|
5378
|
+
ordering?: string;
|
|
5379
|
+
page?: number;
|
|
5380
|
+
pageSize?: number;
|
|
5381
|
+
platformKey?: string;
|
|
5382
|
+
search?: string;
|
|
5383
|
+
startTime?: string;
|
|
5384
|
+
targetSystem?: "Moderation System" | "Safety System";
|
|
5385
|
+
username?: string;
|
|
5386
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").PaginatedModerationLogList, "mentorApiSlice", any>> & {
|
|
5387
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedModerationLogList | undefined;
|
|
5388
|
+
isUninitialized: false;
|
|
5389
|
+
isLoading: false;
|
|
5390
|
+
isFetching: false;
|
|
5391
|
+
isSuccess: false;
|
|
5392
|
+
isError: false;
|
|
5393
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
5394
|
+
isSuccess: true;
|
|
5395
|
+
isFetching: false;
|
|
5396
|
+
error: undefined;
|
|
5397
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5398
|
+
org: string;
|
|
5399
|
+
endTime?: string;
|
|
5400
|
+
mentor?: string;
|
|
5401
|
+
ordering?: string;
|
|
5402
|
+
page?: number;
|
|
5403
|
+
pageSize?: number;
|
|
5404
|
+
platformKey?: string;
|
|
5405
|
+
search?: string;
|
|
5406
|
+
startTime?: string;
|
|
5407
|
+
targetSystem?: "Moderation System" | "Safety System";
|
|
5408
|
+
username?: string;
|
|
5409
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").PaginatedModerationLogList, "mentorApiSlice", any>> & {
|
|
5410
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedModerationLogList | undefined;
|
|
5411
|
+
isUninitialized: false;
|
|
5412
|
+
isLoading: false;
|
|
5413
|
+
isFetching: false;
|
|
5414
|
+
isSuccess: false;
|
|
5415
|
+
isError: false;
|
|
5416
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
5417
|
+
isError: true;
|
|
5418
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5419
|
+
org: string;
|
|
5420
|
+
endTime?: string;
|
|
5421
|
+
mentor?: string;
|
|
5422
|
+
ordering?: string;
|
|
5423
|
+
page?: number;
|
|
5424
|
+
pageSize?: number;
|
|
5425
|
+
platformKey?: string;
|
|
5426
|
+
search?: string;
|
|
5427
|
+
startTime?: string;
|
|
5428
|
+
targetSystem?: "Moderation System" | "Safety System";
|
|
5429
|
+
username?: string;
|
|
5430
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").PaginatedModerationLogList, "mentorApiSlice", any>> & {
|
|
5431
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedModerationLogList | undefined;
|
|
5432
|
+
isUninitialized: false;
|
|
5433
|
+
isLoading: false;
|
|
5434
|
+
isFetching: false;
|
|
5435
|
+
isSuccess: false;
|
|
5436
|
+
isError: false;
|
|
5437
|
+
}, "error">>)>> & {
|
|
5438
|
+
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
5439
|
+
}>(arg: {
|
|
5440
|
+
org: string;
|
|
5441
|
+
endTime?: string;
|
|
5442
|
+
mentor?: string;
|
|
5443
|
+
ordering?: string;
|
|
5444
|
+
page?: number;
|
|
5445
|
+
pageSize?: number;
|
|
5446
|
+
platformKey?: string;
|
|
5447
|
+
search?: string;
|
|
5448
|
+
startTime?: string;
|
|
5449
|
+
targetSystem?: "Moderation System" | "Safety System";
|
|
5450
|
+
username?: string;
|
|
5451
|
+
} | typeof import("@reduxjs/toolkit/query").skipToken, options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & {
|
|
5452
|
+
skip?: boolean;
|
|
5453
|
+
refetchOnMountOrArgChange?: boolean | number;
|
|
5454
|
+
} & {
|
|
5455
|
+
skip?: boolean;
|
|
5456
|
+
selectFromResult?: ((state: import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
5457
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
5458
|
+
originalArgs?: undefined | undefined;
|
|
5459
|
+
data?: undefined | undefined;
|
|
5460
|
+
error?: undefined | undefined;
|
|
5461
|
+
requestId?: undefined | undefined;
|
|
5462
|
+
endpointName?: string | undefined;
|
|
5463
|
+
startedTimeStamp?: undefined | undefined;
|
|
5464
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
5465
|
+
} & {
|
|
5466
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedModerationLogList | undefined;
|
|
5467
|
+
isUninitialized: false;
|
|
5468
|
+
isLoading: false;
|
|
5469
|
+
isFetching: false;
|
|
5470
|
+
isSuccess: false;
|
|
5471
|
+
isError: false;
|
|
5472
|
+
}, "isUninitialized"> & {
|
|
5473
|
+
isUninitialized: true;
|
|
5474
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5475
|
+
org: string;
|
|
5476
|
+
endTime?: string;
|
|
5477
|
+
mentor?: string;
|
|
5478
|
+
ordering?: string;
|
|
5479
|
+
page?: number;
|
|
5480
|
+
pageSize?: number;
|
|
5481
|
+
platformKey?: string;
|
|
5482
|
+
search?: string;
|
|
5483
|
+
startTime?: string;
|
|
5484
|
+
targetSystem?: "Moderation System" | "Safety System";
|
|
5485
|
+
username?: string;
|
|
5486
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").PaginatedModerationLogList, "mentorApiSlice", any>> & {
|
|
5487
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedModerationLogList | undefined;
|
|
5488
|
+
isUninitialized: false;
|
|
5489
|
+
isLoading: false;
|
|
5490
|
+
isFetching: false;
|
|
5491
|
+
isSuccess: false;
|
|
5492
|
+
isError: false;
|
|
5493
|
+
}, {
|
|
5494
|
+
isLoading: true;
|
|
5495
|
+
isFetching: boolean;
|
|
5496
|
+
data: undefined;
|
|
5497
|
+
} | ({
|
|
5498
|
+
isSuccess: true;
|
|
5499
|
+
isFetching: true;
|
|
5500
|
+
error: undefined;
|
|
5501
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5502
|
+
org: string;
|
|
5503
|
+
endTime?: string;
|
|
5504
|
+
mentor?: string;
|
|
5505
|
+
ordering?: string;
|
|
5506
|
+
page?: number;
|
|
5507
|
+
pageSize?: number;
|
|
5508
|
+
platformKey?: string;
|
|
5509
|
+
search?: string;
|
|
5510
|
+
startTime?: string;
|
|
5511
|
+
targetSystem?: "Moderation System" | "Safety System";
|
|
5512
|
+
username?: string;
|
|
5513
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").PaginatedModerationLogList, "mentorApiSlice", any>> & {
|
|
5514
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedModerationLogList | undefined;
|
|
5515
|
+
isUninitialized: false;
|
|
5516
|
+
isLoading: false;
|
|
5517
|
+
isFetching: false;
|
|
5518
|
+
isSuccess: false;
|
|
5519
|
+
isError: false;
|
|
5520
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
5521
|
+
isSuccess: true;
|
|
5522
|
+
isFetching: false;
|
|
5523
|
+
error: undefined;
|
|
5524
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5525
|
+
org: string;
|
|
5526
|
+
endTime?: string;
|
|
5527
|
+
mentor?: string;
|
|
5528
|
+
ordering?: string;
|
|
5529
|
+
page?: number;
|
|
5530
|
+
pageSize?: number;
|
|
5531
|
+
platformKey?: string;
|
|
5532
|
+
search?: string;
|
|
5533
|
+
startTime?: string;
|
|
5534
|
+
targetSystem?: "Moderation System" | "Safety System";
|
|
5535
|
+
username?: string;
|
|
5536
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").PaginatedModerationLogList, "mentorApiSlice", any>> & {
|
|
5537
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedModerationLogList | undefined;
|
|
5538
|
+
isUninitialized: false;
|
|
5539
|
+
isLoading: false;
|
|
5540
|
+
isFetching: false;
|
|
5541
|
+
isSuccess: false;
|
|
5542
|
+
isError: false;
|
|
5543
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
5544
|
+
isError: true;
|
|
5545
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5546
|
+
org: string;
|
|
5547
|
+
endTime?: string;
|
|
5548
|
+
mentor?: string;
|
|
5549
|
+
ordering?: string;
|
|
5550
|
+
page?: number;
|
|
5551
|
+
pageSize?: number;
|
|
5552
|
+
platformKey?: string;
|
|
5553
|
+
search?: string;
|
|
5554
|
+
startTime?: string;
|
|
5555
|
+
targetSystem?: "Moderation System" | "Safety System";
|
|
5556
|
+
username?: string;
|
|
5557
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").PaginatedModerationLogList, "mentorApiSlice", any>> & {
|
|
5558
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedModerationLogList | undefined;
|
|
5559
|
+
isUninitialized: false;
|
|
5560
|
+
isLoading: false;
|
|
5561
|
+
isFetching: false;
|
|
5562
|
+
isSuccess: false;
|
|
5563
|
+
isError: false;
|
|
5564
|
+
}, "error">>)>> & {
|
|
5565
|
+
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
5566
|
+
}) => R) | undefined;
|
|
5567
|
+
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
5568
|
+
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5569
|
+
org: string;
|
|
5570
|
+
endTime?: string;
|
|
5571
|
+
mentor?: string;
|
|
5572
|
+
ordering?: string;
|
|
5573
|
+
page?: number;
|
|
5574
|
+
pageSize?: number;
|
|
5575
|
+
platformKey?: string;
|
|
5576
|
+
search?: string;
|
|
5577
|
+
startTime?: string;
|
|
5578
|
+
targetSystem?: "Moderation System" | "Safety System";
|
|
5579
|
+
username?: string;
|
|
5580
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").PaginatedModerationLogList, "mentorApiSlice", any>>;
|
|
5581
|
+
}, useLazyGetModerationLogsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
5582
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
5583
|
+
originalArgs?: undefined | undefined;
|
|
5584
|
+
data?: undefined | undefined;
|
|
5585
|
+
error?: undefined | undefined;
|
|
5586
|
+
requestId?: undefined | undefined;
|
|
5587
|
+
endpointName?: string | undefined;
|
|
5588
|
+
startedTimeStamp?: undefined | undefined;
|
|
5589
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
5590
|
+
} & {
|
|
5591
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedModerationLogList | undefined;
|
|
5592
|
+
isUninitialized: false;
|
|
5593
|
+
isLoading: false;
|
|
5594
|
+
isFetching: false;
|
|
5595
|
+
isSuccess: false;
|
|
5596
|
+
isError: false;
|
|
5597
|
+
}, "isUninitialized"> & {
|
|
5598
|
+
isUninitialized: true;
|
|
5599
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5600
|
+
org: string;
|
|
5601
|
+
endTime?: string;
|
|
5602
|
+
mentor?: string;
|
|
5603
|
+
ordering?: string;
|
|
5604
|
+
page?: number;
|
|
5605
|
+
pageSize?: number;
|
|
5606
|
+
platformKey?: string;
|
|
5607
|
+
search?: string;
|
|
5608
|
+
startTime?: string;
|
|
5609
|
+
targetSystem?: "Moderation System" | "Safety System";
|
|
5610
|
+
username?: string;
|
|
5611
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").PaginatedModerationLogList, "mentorApiSlice", any>> & {
|
|
5612
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedModerationLogList | undefined;
|
|
5613
|
+
isUninitialized: false;
|
|
5614
|
+
isLoading: false;
|
|
5615
|
+
isFetching: false;
|
|
5616
|
+
isSuccess: false;
|
|
5617
|
+
isError: false;
|
|
5618
|
+
}, {
|
|
5619
|
+
isLoading: true;
|
|
5620
|
+
isFetching: boolean;
|
|
5621
|
+
data: undefined;
|
|
5622
|
+
} | ({
|
|
5623
|
+
isSuccess: true;
|
|
5624
|
+
isFetching: true;
|
|
5625
|
+
error: undefined;
|
|
5626
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5627
|
+
org: string;
|
|
5628
|
+
endTime?: string;
|
|
5629
|
+
mentor?: string;
|
|
5630
|
+
ordering?: string;
|
|
5631
|
+
page?: number;
|
|
5632
|
+
pageSize?: number;
|
|
5633
|
+
platformKey?: string;
|
|
5634
|
+
search?: string;
|
|
5635
|
+
startTime?: string;
|
|
5636
|
+
targetSystem?: "Moderation System" | "Safety System";
|
|
5637
|
+
username?: string;
|
|
5638
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").PaginatedModerationLogList, "mentorApiSlice", any>> & {
|
|
5639
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedModerationLogList | undefined;
|
|
5640
|
+
isUninitialized: false;
|
|
5641
|
+
isLoading: false;
|
|
5642
|
+
isFetching: false;
|
|
5643
|
+
isSuccess: false;
|
|
5644
|
+
isError: false;
|
|
5645
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
5646
|
+
isSuccess: true;
|
|
5647
|
+
isFetching: false;
|
|
5648
|
+
error: undefined;
|
|
5649
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5650
|
+
org: string;
|
|
5651
|
+
endTime?: string;
|
|
5652
|
+
mentor?: string;
|
|
5653
|
+
ordering?: string;
|
|
5654
|
+
page?: number;
|
|
5655
|
+
pageSize?: number;
|
|
5656
|
+
platformKey?: string;
|
|
5657
|
+
search?: string;
|
|
5658
|
+
startTime?: string;
|
|
5659
|
+
targetSystem?: "Moderation System" | "Safety System";
|
|
5660
|
+
username?: string;
|
|
5661
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").PaginatedModerationLogList, "mentorApiSlice", any>> & {
|
|
5662
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedModerationLogList | undefined;
|
|
5663
|
+
isUninitialized: false;
|
|
5664
|
+
isLoading: false;
|
|
5665
|
+
isFetching: false;
|
|
5666
|
+
isSuccess: false;
|
|
5667
|
+
isError: false;
|
|
5668
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
5669
|
+
isError: true;
|
|
5670
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5671
|
+
org: string;
|
|
5672
|
+
endTime?: string;
|
|
5673
|
+
mentor?: string;
|
|
5674
|
+
ordering?: string;
|
|
5675
|
+
page?: number;
|
|
5676
|
+
pageSize?: number;
|
|
5677
|
+
platformKey?: string;
|
|
5678
|
+
search?: string;
|
|
5679
|
+
startTime?: string;
|
|
5680
|
+
targetSystem?: "Moderation System" | "Safety System";
|
|
5681
|
+
username?: string;
|
|
5682
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").PaginatedModerationLogList, "mentorApiSlice", any>> & {
|
|
5683
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedModerationLogList | undefined;
|
|
5684
|
+
isUninitialized: false;
|
|
5685
|
+
isLoading: false;
|
|
5686
|
+
isFetching: false;
|
|
5687
|
+
isSuccess: false;
|
|
5688
|
+
isError: false;
|
|
5689
|
+
}, "error">>)>> & {
|
|
5690
|
+
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
5691
|
+
}>(options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & Omit<{
|
|
5692
|
+
skip?: boolean;
|
|
5693
|
+
selectFromResult?: ((state: import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
5694
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
5695
|
+
originalArgs?: undefined | undefined;
|
|
5696
|
+
data?: undefined | undefined;
|
|
5697
|
+
error?: undefined | undefined;
|
|
5698
|
+
requestId?: undefined | undefined;
|
|
5699
|
+
endpointName?: string | undefined;
|
|
5700
|
+
startedTimeStamp?: undefined | undefined;
|
|
5701
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
5702
|
+
} & {
|
|
5703
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedModerationLogList | undefined;
|
|
5704
|
+
isUninitialized: false;
|
|
5705
|
+
isLoading: false;
|
|
5706
|
+
isFetching: false;
|
|
5707
|
+
isSuccess: false;
|
|
5708
|
+
isError: false;
|
|
5709
|
+
}, "isUninitialized"> & {
|
|
5710
|
+
isUninitialized: true;
|
|
5711
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5712
|
+
org: string;
|
|
5713
|
+
endTime?: string;
|
|
5714
|
+
mentor?: string;
|
|
5715
|
+
ordering?: string;
|
|
5716
|
+
page?: number;
|
|
5717
|
+
pageSize?: number;
|
|
5718
|
+
platformKey?: string;
|
|
5719
|
+
search?: string;
|
|
5720
|
+
startTime?: string;
|
|
5721
|
+
targetSystem?: "Moderation System" | "Safety System";
|
|
5722
|
+
username?: string;
|
|
5723
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").PaginatedModerationLogList, "mentorApiSlice", any>> & {
|
|
5724
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedModerationLogList | undefined;
|
|
5725
|
+
isUninitialized: false;
|
|
5726
|
+
isLoading: false;
|
|
5727
|
+
isFetching: false;
|
|
5728
|
+
isSuccess: false;
|
|
5729
|
+
isError: false;
|
|
5730
|
+
}, {
|
|
5731
|
+
isLoading: true;
|
|
5732
|
+
isFetching: boolean;
|
|
5733
|
+
data: undefined;
|
|
5734
|
+
} | ({
|
|
5735
|
+
isSuccess: true;
|
|
5736
|
+
isFetching: true;
|
|
5737
|
+
error: undefined;
|
|
5738
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5739
|
+
org: string;
|
|
5740
|
+
endTime?: string;
|
|
5741
|
+
mentor?: string;
|
|
5742
|
+
ordering?: string;
|
|
5743
|
+
page?: number;
|
|
5744
|
+
pageSize?: number;
|
|
5745
|
+
platformKey?: string;
|
|
5746
|
+
search?: string;
|
|
5747
|
+
startTime?: string;
|
|
5748
|
+
targetSystem?: "Moderation System" | "Safety System";
|
|
5749
|
+
username?: string;
|
|
5750
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").PaginatedModerationLogList, "mentorApiSlice", any>> & {
|
|
5751
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedModerationLogList | undefined;
|
|
5752
|
+
isUninitialized: false;
|
|
5753
|
+
isLoading: false;
|
|
5754
|
+
isFetching: false;
|
|
5755
|
+
isSuccess: false;
|
|
5756
|
+
isError: false;
|
|
5757
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
5758
|
+
isSuccess: true;
|
|
5759
|
+
isFetching: false;
|
|
5760
|
+
error: undefined;
|
|
5761
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5762
|
+
org: string;
|
|
5763
|
+
endTime?: string;
|
|
5764
|
+
mentor?: string;
|
|
5765
|
+
ordering?: string;
|
|
5766
|
+
page?: number;
|
|
5767
|
+
pageSize?: number;
|
|
5768
|
+
platformKey?: string;
|
|
5769
|
+
search?: string;
|
|
5770
|
+
startTime?: string;
|
|
5771
|
+
targetSystem?: "Moderation System" | "Safety System";
|
|
5772
|
+
username?: string;
|
|
5773
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").PaginatedModerationLogList, "mentorApiSlice", any>> & {
|
|
5774
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedModerationLogList | undefined;
|
|
5775
|
+
isUninitialized: false;
|
|
5776
|
+
isLoading: false;
|
|
5777
|
+
isFetching: false;
|
|
5778
|
+
isSuccess: false;
|
|
5779
|
+
isError: false;
|
|
5780
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
5781
|
+
isError: true;
|
|
5782
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5783
|
+
org: string;
|
|
5784
|
+
endTime?: string;
|
|
5785
|
+
mentor?: string;
|
|
5786
|
+
ordering?: string;
|
|
5787
|
+
page?: number;
|
|
5788
|
+
pageSize?: number;
|
|
5789
|
+
platformKey?: string;
|
|
5790
|
+
search?: string;
|
|
5791
|
+
startTime?: string;
|
|
5792
|
+
targetSystem?: "Moderation System" | "Safety System";
|
|
5793
|
+
username?: string;
|
|
5794
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").PaginatedModerationLogList, "mentorApiSlice", any>> & {
|
|
5795
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedModerationLogList | undefined;
|
|
5796
|
+
isUninitialized: false;
|
|
5797
|
+
isLoading: false;
|
|
5798
|
+
isFetching: false;
|
|
5799
|
+
isSuccess: false;
|
|
5800
|
+
isError: false;
|
|
5801
|
+
}, "error">>)>> & {
|
|
5802
|
+
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
5803
|
+
}) => R) | undefined;
|
|
5804
|
+
}, "skip">) | undefined) => [(arg: {
|
|
5805
|
+
org: string;
|
|
5806
|
+
endTime?: string;
|
|
5807
|
+
mentor?: string;
|
|
5808
|
+
ordering?: string;
|
|
5809
|
+
page?: number;
|
|
5810
|
+
pageSize?: number;
|
|
5811
|
+
platformKey?: string;
|
|
5812
|
+
search?: string;
|
|
5813
|
+
startTime?: string;
|
|
5814
|
+
targetSystem?: "Moderation System" | "Safety System";
|
|
5815
|
+
username?: string;
|
|
5816
|
+
}, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5817
|
+
org: string;
|
|
5818
|
+
endTime?: string;
|
|
5819
|
+
mentor?: string;
|
|
5820
|
+
ordering?: string;
|
|
5821
|
+
page?: number;
|
|
5822
|
+
pageSize?: number;
|
|
5823
|
+
platformKey?: string;
|
|
5824
|
+
search?: string;
|
|
5825
|
+
startTime?: string;
|
|
5826
|
+
targetSystem?: "Moderation System" | "Safety System";
|
|
5827
|
+
username?: string;
|
|
5828
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").PaginatedModerationLogList, "mentorApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
5829
|
+
reset: () => void;
|
|
5830
|
+
}, {
|
|
5831
|
+
lastArg: {
|
|
5832
|
+
org: string;
|
|
5833
|
+
endTime?: string;
|
|
5834
|
+
mentor?: string;
|
|
5835
|
+
ordering?: string;
|
|
5836
|
+
page?: number;
|
|
5837
|
+
pageSize?: number;
|
|
5838
|
+
platformKey?: string;
|
|
5839
|
+
search?: string;
|
|
5840
|
+
startTime?: string;
|
|
5841
|
+
targetSystem?: "Moderation System" | "Safety System";
|
|
5842
|
+
username?: string;
|
|
5843
|
+
};
|
|
5004
5844
|
}];
|