@iblai/data-layer 1.1.1 → 1.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +38680 -21218
- package/dist/index.esm.js +5653 -2107
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +5738 -2105
- package/dist/index.js.map +1 -1
- package/dist/package.json +12 -8
- package/dist/src/core/index.d.ts +7 -1
- package/dist/src/features/analytics/constants.d.ts +6 -6
- package/dist/src/features/analytics/types.d.ts +9 -0
- package/dist/src/features/api-keys/api-slice.d.ts +72 -24
- package/dist/src/features/apps/api-slice.d.ts +72 -24
- package/dist/src/features/artifacts/api-slice.d.ts +1798 -0
- package/dist/src/features/artifacts/constants.d.ts +42 -0
- package/dist/src/features/artifacts/index.d.ts +3 -0
- package/dist/src/features/artifacts/types.d.ts +37 -0
- package/dist/src/features/auth/types.d.ts +1 -1
- package/dist/src/features/billing/api-slice.d.ts +15 -5
- package/dist/src/features/billing/constants.d.ts +16 -0
- package/dist/src/features/billing/custom-api-slice.d.ts +634 -0
- package/dist/src/features/billing/types.d.ts +35 -0
- package/dist/src/features/career/api-slice.d.ts +342 -114
- package/dist/src/features/catalog/api-slice.d.ts +1050 -317
- package/dist/src/features/chat/api-slice.d.ts +204 -68
- package/dist/src/features/chat-history/api-slice.d.ts +202 -60
- package/dist/src/features/core/api-slice.d.ts +1253 -134
- package/dist/src/features/core/custom-public-image-asset-api-slice.d.ts +60 -20
- package/dist/src/features/credentials/__tests__/custom-api-slice.test.d.ts +1 -0
- package/dist/src/features/credentials/api-slice.d.ts +3728 -146
- package/dist/src/features/credentials/constants.d.ts +9 -1
- package/dist/src/features/credentials/custom-api-slice.d.ts +535 -2
- package/dist/src/features/credentials/types.d.ts +14 -0
- package/dist/src/features/datasets/api-slice.d.ts +60 -197
- package/dist/src/features/index.d.ts +2 -1
- package/dist/src/features/llms/api-slice.d.ts +60 -20
- package/dist/src/features/mcp/api-slice.d.ts +2613 -0
- package/dist/src/features/mcp/constants.d.ts +57 -0
- package/dist/src/features/mcp/index.d.ts +3 -0
- package/dist/src/features/mcp/types.d.ts +176 -0
- package/dist/src/features/memory/types.d.ts +1 -0
- package/dist/src/features/mentor/api-slice.d.ts +1793 -429
- package/dist/src/features/mentor/constants.d.ts +7 -1
- package/dist/src/features/mentor/custom-api-slice.d.ts +162 -1
- package/dist/src/features/mentor/types.d.ts +7 -1
- package/dist/src/features/mentor-categories/api-slice.d.ts +117 -39
- package/dist/src/features/moderation-logs/api-slice.d.ts +705 -0
- package/dist/src/features/notifications/api-slice.d.ts +214 -86
- package/dist/src/features/per-learner/api-slice.d.ts +174 -58
- package/dist/src/features/platform/api-slice.d.ts +1568 -293
- package/dist/src/features/platform/types.d.ts +13 -0
- package/dist/src/features/prompts/api-slice.d.ts +249 -83
- package/dist/src/features/reports/api-slice.d.ts +145 -41
- package/dist/src/features/search/ai-search-api-slice.d.ts +399 -1
- package/dist/src/features/search/api-slice.d.ts +117 -39
- package/dist/src/features/search/constants.d.ts +10 -0
- package/dist/src/features/search/types.d.ts +72 -0
- package/dist/src/features/sessions/api-slice.d.ts +440 -46
- package/dist/src/features/skills/api-slice.d.ts +231 -77
- package/dist/src/features/tenant/api-slice.d.ts +123 -41
- package/dist/src/features/tools/api-slice.d.ts +60 -20
- package/dist/src/features/training-documents/api-slice.d.ts +141 -47
- package/dist/src/features/user-invitations/api-slice.d.ts +66 -22
- package/dist/src/index.d.ts +6 -0
- package/dist/tests/features/billing/constants.test.d.ts +1 -0
- package/dist/tests/features/billing/custom-api-slice.test.d.ts +1 -0
- package/dist/tests/features/billing/types.test.d.ts +1 -0
- package/package.json +10 -7
|
@@ -1,8 +1,12 @@
|
|
|
1
|
-
export declare const mentorApiSlice: import("@reduxjs/toolkit/query").Api<import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1
|
+
export declare const mentorApiSlice: import("@reduxjs/toolkit/query").Api<import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2
|
+
attempt?: number;
|
|
3
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, {
|
|
2
4
|
createMentor: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
3
5
|
org: string;
|
|
4
6
|
formData: import("@iblai/iblai-api").MentorFromTemplateWithSettingRequest;
|
|
5
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
7
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
8
|
+
attempt?: number;
|
|
9
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>;
|
|
6
10
|
getMentors: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
7
11
|
org: string;
|
|
8
12
|
username: string;
|
|
@@ -21,7 +25,9 @@ export declare const mentorApiSlice: import("@reduxjs/toolkit/query").Api<import
|
|
|
21
25
|
tags?: Array<string>;
|
|
22
26
|
tenant?: string;
|
|
23
27
|
uniqueId?: string;
|
|
24
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
28
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
29
|
+
attempt?: number;
|
|
30
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>;
|
|
25
31
|
getPublicMentors: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
26
32
|
audience?: Array<string>;
|
|
27
33
|
category?: Array<string>;
|
|
@@ -38,90 +44,149 @@ export declare const mentorApiSlice: import("@reduxjs/toolkit/query").Api<import
|
|
|
38
44
|
tags?: Array<string>;
|
|
39
45
|
tenant?: string;
|
|
40
46
|
uniqueId?: string;
|
|
41
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
47
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
48
|
+
attempt?: number;
|
|
49
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>;
|
|
42
50
|
editMentor: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
43
51
|
mentor: string;
|
|
44
52
|
org: string;
|
|
45
53
|
departmentId?: number;
|
|
46
54
|
formData?: import("@iblai/iblai-api").MentorSettingsRequest;
|
|
47
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
55
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
56
|
+
attempt?: number;
|
|
57
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MentorSettings, "mentorApiSlice", any>;
|
|
48
58
|
seedMentors: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
49
59
|
org: string;
|
|
50
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
60
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
61
|
+
attempt?: number;
|
|
62
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").SeedMentorsView, "mentorApiSlice", any>;
|
|
51
63
|
getMentorDetails: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
52
64
|
mentor: string;
|
|
53
65
|
org: string;
|
|
54
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
66
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
67
|
+
attempt?: number;
|
|
68
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>;
|
|
55
69
|
getMentorSettings: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
56
70
|
mentor: string;
|
|
57
71
|
org: string;
|
|
58
72
|
departmentId?: number;
|
|
59
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
73
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
74
|
+
attempt?: number;
|
|
75
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>;
|
|
60
76
|
getMentorPublicSettings: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
61
77
|
mentor: string;
|
|
62
78
|
org: string;
|
|
63
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
64
|
-
|
|
79
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
80
|
+
attempt?: number;
|
|
81
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>;
|
|
82
|
+
editMentorAndRefreshList: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
65
83
|
mentor: string;
|
|
66
84
|
org: string;
|
|
67
85
|
departmentId?: number;
|
|
68
86
|
formData?: import("@iblai/iblai-api").MentorSettingsRequest;
|
|
69
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
87
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
88
|
+
attempt?: number;
|
|
89
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MentorSettings, "mentorApiSlice", any>;
|
|
70
90
|
getFreeUsageCount: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
71
91
|
org: string;
|
|
72
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
92
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
93
|
+
attempt?: number;
|
|
94
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").FreeUsageCount, "mentorApiSlice", any>;
|
|
73
95
|
createShareableLink: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
74
96
|
mentor: string;
|
|
75
97
|
org: string;
|
|
76
98
|
requestBody?: import("@iblai/iblai-api").ShareableMentorLink;
|
|
77
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
99
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
100
|
+
attempt?: number;
|
|
101
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>;
|
|
78
102
|
getShareableLink: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
79
103
|
mentor: string;
|
|
80
104
|
org: string;
|
|
81
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
105
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
106
|
+
attempt?: number;
|
|
107
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>;
|
|
82
108
|
getShareableLinkPublic: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
83
109
|
mentor: string;
|
|
84
110
|
org: string;
|
|
85
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
111
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
112
|
+
attempt?: number;
|
|
113
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>;
|
|
86
114
|
revokeShareableLink: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
87
115
|
mentor: string;
|
|
88
116
|
org: string;
|
|
89
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
117
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
118
|
+
attempt?: number;
|
|
119
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", void, "mentorApiSlice", any>;
|
|
90
120
|
updateShareableLink: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
91
121
|
mentor: string;
|
|
92
122
|
org: string;
|
|
93
123
|
requestBody?: import("@iblai/iblai-api").ShareableMentorLink;
|
|
94
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
124
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
125
|
+
attempt?: number;
|
|
126
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>;
|
|
95
127
|
deleteMentor: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
96
128
|
name: string;
|
|
97
129
|
org: string;
|
|
98
130
|
departmentId?: number;
|
|
99
131
|
filterBy?: string;
|
|
132
|
+
isFeatured?: boolean;
|
|
100
133
|
metadataKey?: string;
|
|
101
134
|
metadataValue?: string;
|
|
102
135
|
returnSessionInformation?: boolean;
|
|
103
136
|
visibility?: string;
|
|
104
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
137
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
138
|
+
attempt?: number;
|
|
139
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", void, "mentorApiSlice", any>;
|
|
105
140
|
forkMentor: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
106
141
|
mentor: string;
|
|
107
142
|
org: string;
|
|
108
143
|
requestBody: import("@iblai/iblai-api").MentorFork;
|
|
109
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
144
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
145
|
+
attempt?: number;
|
|
146
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>;
|
|
110
147
|
getRecentlyAccessedMentors: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
111
148
|
org: string;
|
|
112
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
},
|
|
149
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
150
|
+
attempt?: number;
|
|
151
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").RecentlyAccessedMentor[], "mentorApiSlice", any>;
|
|
152
|
+
starMentor: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
153
|
+
mentor: string;
|
|
154
|
+
org: string;
|
|
155
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
156
|
+
attempt?: number;
|
|
157
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").StarMentor, "mentorApiSlice", any>;
|
|
158
|
+
unstarMentor: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
159
|
+
mentor: string;
|
|
160
|
+
org: string;
|
|
161
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
162
|
+
attempt?: number;
|
|
163
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").StarMentor, "mentorApiSlice", any>;
|
|
164
|
+
starredMentors: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
165
|
+
org: string;
|
|
166
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
167
|
+
attempt?: number;
|
|
168
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").StarMentor[], "mentorApiSlice", any>;
|
|
169
|
+
updateChatSession: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
170
|
+
org: string;
|
|
171
|
+
sessionId: string;
|
|
172
|
+
requestBody?: import("@iblai/iblai-api").MessageViewRequest;
|
|
173
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
174
|
+
attempt?: number;
|
|
175
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MessageViewUpdatResponse, "mentorApiSlice", any>;
|
|
176
|
+
updateChatSessionShared: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
177
|
+
org: string;
|
|
178
|
+
sessionId: string;
|
|
179
|
+
requestBody: import("@iblai/iblai-api").SharedSessionUpdateRequest;
|
|
180
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
181
|
+
attempt?: number;
|
|
182
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").SharedSessionUpdateResponse, "mentorApiSlice", any>;
|
|
183
|
+
getChatMessagesForSession: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
184
|
+
org: string;
|
|
185
|
+
sessionId: string;
|
|
186
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
187
|
+
attempt?: number;
|
|
188
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MessageView, "mentorApiSlice", any>;
|
|
189
|
+
}, "mentorApiSlice", "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", typeof import("@reduxjs/toolkit/query").coreModuleName | typeof import("@reduxjs/toolkit/dist/query/react").reactHooksModuleName>;
|
|
125
190
|
export declare const mentorApiReducer: typeof mentorApiSlice.reducer;
|
|
126
191
|
export declare const useCreateMentorMutation: <R extends Record<string, any> = ({
|
|
127
192
|
requestId?: undefined;
|
|
@@ -286,7 +351,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
286
351
|
}) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
287
352
|
org: string;
|
|
288
353
|
formData: import("@iblai/iblai-api").MentorFromTemplateWithSettingRequest;
|
|
289
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
354
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
355
|
+
attempt?: number;
|
|
356
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
290
357
|
originalArgs?: {
|
|
291
358
|
org: string;
|
|
292
359
|
formData: import("@iblai/iblai-api").MentorFromTemplateWithSettingRequest;
|
|
@@ -328,7 +395,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
328
395
|
tags?: Array<string>;
|
|
329
396
|
tenant?: string;
|
|
330
397
|
uniqueId?: string;
|
|
331
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
398
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
399
|
+
attempt?: number;
|
|
400
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
332
401
|
currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
|
|
333
402
|
isUninitialized: false;
|
|
334
403
|
isLoading: false;
|
|
@@ -361,7 +430,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
361
430
|
tags?: Array<string>;
|
|
362
431
|
tenant?: string;
|
|
363
432
|
uniqueId?: string;
|
|
364
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
433
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
434
|
+
attempt?: number;
|
|
435
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
365
436
|
currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
|
|
366
437
|
isUninitialized: false;
|
|
367
438
|
isLoading: false;
|
|
@@ -390,7 +461,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
390
461
|
tags?: Array<string>;
|
|
391
462
|
tenant?: string;
|
|
392
463
|
uniqueId?: string;
|
|
393
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
464
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
465
|
+
attempt?: number;
|
|
466
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
394
467
|
currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
|
|
395
468
|
isUninitialized: false;
|
|
396
469
|
isLoading: false;
|
|
@@ -417,7 +490,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
417
490
|
tags?: Array<string>;
|
|
418
491
|
tenant?: string;
|
|
419
492
|
uniqueId?: string;
|
|
420
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
493
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
494
|
+
attempt?: number;
|
|
495
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
421
496
|
currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
|
|
422
497
|
isUninitialized: false;
|
|
423
498
|
isLoading: false;
|
|
@@ -485,7 +560,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
485
560
|
tags?: Array<string>;
|
|
486
561
|
tenant?: string;
|
|
487
562
|
uniqueId?: string;
|
|
488
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
563
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
564
|
+
attempt?: number;
|
|
565
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
489
566
|
currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
|
|
490
567
|
isUninitialized: false;
|
|
491
568
|
isLoading: false;
|
|
@@ -518,7 +595,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
518
595
|
tags?: Array<string>;
|
|
519
596
|
tenant?: string;
|
|
520
597
|
uniqueId?: string;
|
|
521
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
598
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
599
|
+
attempt?: number;
|
|
600
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
522
601
|
currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
|
|
523
602
|
isUninitialized: false;
|
|
524
603
|
isLoading: false;
|
|
@@ -547,7 +626,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
547
626
|
tags?: Array<string>;
|
|
548
627
|
tenant?: string;
|
|
549
628
|
uniqueId?: string;
|
|
550
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
629
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
630
|
+
attempt?: number;
|
|
631
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
551
632
|
currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
|
|
552
633
|
isUninitialized: false;
|
|
553
634
|
isLoading: false;
|
|
@@ -574,7 +655,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
574
655
|
tags?: Array<string>;
|
|
575
656
|
tenant?: string;
|
|
576
657
|
uniqueId?: string;
|
|
577
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
658
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
659
|
+
attempt?: number;
|
|
660
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
578
661
|
currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
|
|
579
662
|
isUninitialized: false;
|
|
580
663
|
isLoading: false;
|
|
@@ -603,7 +686,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
603
686
|
tags?: Array<string>;
|
|
604
687
|
tenant?: string;
|
|
605
688
|
uniqueId?: string;
|
|
606
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
689
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
690
|
+
attempt?: number;
|
|
691
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>>;
|
|
607
692
|
}, useLazyGetMentorsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
608
693
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
609
694
|
originalArgs?: undefined | undefined;
|
|
@@ -640,7 +725,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
640
725
|
tags?: Array<string>;
|
|
641
726
|
tenant?: string;
|
|
642
727
|
uniqueId?: string;
|
|
643
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
728
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
729
|
+
attempt?: number;
|
|
730
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
644
731
|
currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
|
|
645
732
|
isUninitialized: false;
|
|
646
733
|
isLoading: false;
|
|
@@ -673,7 +760,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
673
760
|
tags?: Array<string>;
|
|
674
761
|
tenant?: string;
|
|
675
762
|
uniqueId?: string;
|
|
676
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
763
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
764
|
+
attempt?: number;
|
|
765
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
677
766
|
currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
|
|
678
767
|
isUninitialized: false;
|
|
679
768
|
isLoading: false;
|
|
@@ -702,7 +791,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
702
791
|
tags?: Array<string>;
|
|
703
792
|
tenant?: string;
|
|
704
793
|
uniqueId?: string;
|
|
705
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
794
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
795
|
+
attempt?: number;
|
|
796
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
706
797
|
currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
|
|
707
798
|
isUninitialized: false;
|
|
708
799
|
isLoading: false;
|
|
@@ -729,7 +820,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
729
820
|
tags?: Array<string>;
|
|
730
821
|
tenant?: string;
|
|
731
822
|
uniqueId?: string;
|
|
732
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
823
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
824
|
+
attempt?: number;
|
|
825
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
733
826
|
currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
|
|
734
827
|
isUninitialized: false;
|
|
735
828
|
isLoading: false;
|
|
@@ -776,7 +869,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
776
869
|
tags?: Array<string>;
|
|
777
870
|
tenant?: string;
|
|
778
871
|
uniqueId?: string;
|
|
779
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
872
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
873
|
+
attempt?: number;
|
|
874
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
780
875
|
currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
|
|
781
876
|
isUninitialized: false;
|
|
782
877
|
isLoading: false;
|
|
@@ -809,7 +904,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
809
904
|
tags?: Array<string>;
|
|
810
905
|
tenant?: string;
|
|
811
906
|
uniqueId?: string;
|
|
812
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
907
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
908
|
+
attempt?: number;
|
|
909
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
813
910
|
currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
|
|
814
911
|
isUninitialized: false;
|
|
815
912
|
isLoading: false;
|
|
@@ -838,7 +935,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
838
935
|
tags?: Array<string>;
|
|
839
936
|
tenant?: string;
|
|
840
937
|
uniqueId?: string;
|
|
841
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
938
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
939
|
+
attempt?: number;
|
|
940
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
842
941
|
currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
|
|
843
942
|
isUninitialized: false;
|
|
844
943
|
isLoading: false;
|
|
@@ -865,7 +964,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
865
964
|
tags?: Array<string>;
|
|
866
965
|
tenant?: string;
|
|
867
966
|
uniqueId?: string;
|
|
868
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
967
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
968
|
+
attempt?: number;
|
|
969
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
869
970
|
currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
|
|
870
971
|
isUninitialized: false;
|
|
871
972
|
isLoading: false;
|
|
@@ -911,7 +1012,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
911
1012
|
tags?: Array<string>;
|
|
912
1013
|
tenant?: string;
|
|
913
1014
|
uniqueId?: string;
|
|
914
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1015
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1016
|
+
attempt?: number;
|
|
1017
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
915
1018
|
reset: () => void;
|
|
916
1019
|
}, {
|
|
917
1020
|
lastArg: {
|
|
@@ -1100,7 +1203,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1100
1203
|
org: string;
|
|
1101
1204
|
departmentId?: number;
|
|
1102
1205
|
formData?: import("@iblai/iblai-api").MentorSettingsRequest;
|
|
1103
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1206
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1207
|
+
attempt?: number;
|
|
1208
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MentorSettings, "mentorApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
1104
1209
|
originalArgs?: {
|
|
1105
1210
|
mentor: string;
|
|
1106
1211
|
org: string;
|
|
@@ -1128,7 +1233,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1128
1233
|
isUninitialized: true;
|
|
1129
1234
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1130
1235
|
org: string;
|
|
1131
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1236
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1237
|
+
attempt?: number;
|
|
1238
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").SeedMentorsView, "mentorApiSlice", any>> & {
|
|
1132
1239
|
currentData?: import("@iblai/iblai-api").SeedMentorsView | undefined;
|
|
1133
1240
|
isUninitialized: false;
|
|
1134
1241
|
isLoading: false;
|
|
@@ -1145,7 +1252,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1145
1252
|
error: undefined;
|
|
1146
1253
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1147
1254
|
org: string;
|
|
1148
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1255
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1256
|
+
attempt?: number;
|
|
1257
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").SeedMentorsView, "mentorApiSlice", any>> & {
|
|
1149
1258
|
currentData?: import("@iblai/iblai-api").SeedMentorsView | undefined;
|
|
1150
1259
|
isUninitialized: false;
|
|
1151
1260
|
isLoading: false;
|
|
@@ -1158,7 +1267,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1158
1267
|
error: undefined;
|
|
1159
1268
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1160
1269
|
org: string;
|
|
1161
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1270
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1271
|
+
attempt?: number;
|
|
1272
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").SeedMentorsView, "mentorApiSlice", any>> & {
|
|
1162
1273
|
currentData?: import("@iblai/iblai-api").SeedMentorsView | undefined;
|
|
1163
1274
|
isUninitialized: false;
|
|
1164
1275
|
isLoading: false;
|
|
@@ -1169,7 +1280,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1169
1280
|
isError: true;
|
|
1170
1281
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1171
1282
|
org: string;
|
|
1172
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1283
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1284
|
+
attempt?: number;
|
|
1285
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").SeedMentorsView, "mentorApiSlice", any>> & {
|
|
1173
1286
|
currentData?: import("@iblai/iblai-api").SeedMentorsView | undefined;
|
|
1174
1287
|
isUninitialized: false;
|
|
1175
1288
|
isLoading: false;
|
|
@@ -1205,7 +1318,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1205
1318
|
isUninitialized: true;
|
|
1206
1319
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1207
1320
|
org: string;
|
|
1208
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1321
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1322
|
+
attempt?: number;
|
|
1323
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").SeedMentorsView, "mentorApiSlice", any>> & {
|
|
1209
1324
|
currentData?: import("@iblai/iblai-api").SeedMentorsView | undefined;
|
|
1210
1325
|
isUninitialized: false;
|
|
1211
1326
|
isLoading: false;
|
|
@@ -1222,7 +1337,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1222
1337
|
error: undefined;
|
|
1223
1338
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1224
1339
|
org: string;
|
|
1225
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1340
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1341
|
+
attempt?: number;
|
|
1342
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").SeedMentorsView, "mentorApiSlice", any>> & {
|
|
1226
1343
|
currentData?: import("@iblai/iblai-api").SeedMentorsView | undefined;
|
|
1227
1344
|
isUninitialized: false;
|
|
1228
1345
|
isLoading: false;
|
|
@@ -1235,7 +1352,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1235
1352
|
error: undefined;
|
|
1236
1353
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1237
1354
|
org: string;
|
|
1238
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1355
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1356
|
+
attempt?: number;
|
|
1357
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").SeedMentorsView, "mentorApiSlice", any>> & {
|
|
1239
1358
|
currentData?: import("@iblai/iblai-api").SeedMentorsView | undefined;
|
|
1240
1359
|
isUninitialized: false;
|
|
1241
1360
|
isLoading: false;
|
|
@@ -1246,7 +1365,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1246
1365
|
isError: true;
|
|
1247
1366
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1248
1367
|
org: string;
|
|
1249
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1368
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1369
|
+
attempt?: number;
|
|
1370
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").SeedMentorsView, "mentorApiSlice", any>> & {
|
|
1250
1371
|
currentData?: import("@iblai/iblai-api").SeedMentorsView | undefined;
|
|
1251
1372
|
isUninitialized: false;
|
|
1252
1373
|
isLoading: false;
|
|
@@ -1259,7 +1380,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1259
1380
|
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
1260
1381
|
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1261
1382
|
org: string;
|
|
1262
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1383
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1384
|
+
attempt?: number;
|
|
1385
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").SeedMentorsView, "mentorApiSlice", any>>;
|
|
1263
1386
|
}, useLazySeedMentorsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
1264
1387
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1265
1388
|
originalArgs?: undefined | undefined;
|
|
@@ -1280,7 +1403,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1280
1403
|
isUninitialized: true;
|
|
1281
1404
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1282
1405
|
org: string;
|
|
1283
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1406
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1407
|
+
attempt?: number;
|
|
1408
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").SeedMentorsView, "mentorApiSlice", any>> & {
|
|
1284
1409
|
currentData?: import("@iblai/iblai-api").SeedMentorsView | undefined;
|
|
1285
1410
|
isUninitialized: false;
|
|
1286
1411
|
isLoading: false;
|
|
@@ -1297,7 +1422,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1297
1422
|
error: undefined;
|
|
1298
1423
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1299
1424
|
org: string;
|
|
1300
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1425
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1426
|
+
attempt?: number;
|
|
1427
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").SeedMentorsView, "mentorApiSlice", any>> & {
|
|
1301
1428
|
currentData?: import("@iblai/iblai-api").SeedMentorsView | undefined;
|
|
1302
1429
|
isUninitialized: false;
|
|
1303
1430
|
isLoading: false;
|
|
@@ -1310,7 +1437,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1310
1437
|
error: undefined;
|
|
1311
1438
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1312
1439
|
org: string;
|
|
1313
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1440
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1441
|
+
attempt?: number;
|
|
1442
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").SeedMentorsView, "mentorApiSlice", any>> & {
|
|
1314
1443
|
currentData?: import("@iblai/iblai-api").SeedMentorsView | undefined;
|
|
1315
1444
|
isUninitialized: false;
|
|
1316
1445
|
isLoading: false;
|
|
@@ -1321,7 +1450,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1321
1450
|
isError: true;
|
|
1322
1451
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1323
1452
|
org: string;
|
|
1324
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1453
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1454
|
+
attempt?: number;
|
|
1455
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").SeedMentorsView, "mentorApiSlice", any>> & {
|
|
1325
1456
|
currentData?: import("@iblai/iblai-api").SeedMentorsView | undefined;
|
|
1326
1457
|
isUninitialized: false;
|
|
1327
1458
|
isLoading: false;
|
|
@@ -1352,7 +1483,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1352
1483
|
isUninitialized: true;
|
|
1353
1484
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1354
1485
|
org: string;
|
|
1355
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1486
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1487
|
+
attempt?: number;
|
|
1488
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").SeedMentorsView, "mentorApiSlice", any>> & {
|
|
1356
1489
|
currentData?: import("@iblai/iblai-api").SeedMentorsView | undefined;
|
|
1357
1490
|
isUninitialized: false;
|
|
1358
1491
|
isLoading: false;
|
|
@@ -1369,7 +1502,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1369
1502
|
error: undefined;
|
|
1370
1503
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1371
1504
|
org: string;
|
|
1372
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1505
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1506
|
+
attempt?: number;
|
|
1507
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").SeedMentorsView, "mentorApiSlice", any>> & {
|
|
1373
1508
|
currentData?: import("@iblai/iblai-api").SeedMentorsView | undefined;
|
|
1374
1509
|
isUninitialized: false;
|
|
1375
1510
|
isLoading: false;
|
|
@@ -1382,7 +1517,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1382
1517
|
error: undefined;
|
|
1383
1518
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1384
1519
|
org: string;
|
|
1385
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1520
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1521
|
+
attempt?: number;
|
|
1522
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").SeedMentorsView, "mentorApiSlice", any>> & {
|
|
1386
1523
|
currentData?: import("@iblai/iblai-api").SeedMentorsView | undefined;
|
|
1387
1524
|
isUninitialized: false;
|
|
1388
1525
|
isLoading: false;
|
|
@@ -1393,7 +1530,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1393
1530
|
isError: true;
|
|
1394
1531
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1395
1532
|
org: string;
|
|
1396
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1533
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1534
|
+
attempt?: number;
|
|
1535
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").SeedMentorsView, "mentorApiSlice", any>> & {
|
|
1397
1536
|
currentData?: import("@iblai/iblai-api").SeedMentorsView | undefined;
|
|
1398
1537
|
isUninitialized: false;
|
|
1399
1538
|
isLoading: false;
|
|
@@ -1407,7 +1546,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1407
1546
|
org: string;
|
|
1408
1547
|
}, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1409
1548
|
org: string;
|
|
1410
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1549
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1550
|
+
attempt?: number;
|
|
1551
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").SeedMentorsView, "mentorApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
1411
1552
|
reset: () => void;
|
|
1412
1553
|
}, {
|
|
1413
1554
|
lastArg: {
|
|
@@ -1434,7 +1575,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1434
1575
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1435
1576
|
mentor: string;
|
|
1436
1577
|
org: string;
|
|
1437
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1578
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1579
|
+
attempt?: number;
|
|
1580
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>> & {
|
|
1438
1581
|
currentData?: import("@iblai/iblai-api").Mentor | undefined;
|
|
1439
1582
|
isUninitialized: false;
|
|
1440
1583
|
isLoading: false;
|
|
@@ -1452,7 +1595,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1452
1595
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1453
1596
|
mentor: string;
|
|
1454
1597
|
org: string;
|
|
1455
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1598
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1599
|
+
attempt?: number;
|
|
1600
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>> & {
|
|
1456
1601
|
currentData?: import("@iblai/iblai-api").Mentor | undefined;
|
|
1457
1602
|
isUninitialized: false;
|
|
1458
1603
|
isLoading: false;
|
|
@@ -1466,7 +1611,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1466
1611
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1467
1612
|
mentor: string;
|
|
1468
1613
|
org: string;
|
|
1469
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1614
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1615
|
+
attempt?: number;
|
|
1616
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>> & {
|
|
1470
1617
|
currentData?: import("@iblai/iblai-api").Mentor | undefined;
|
|
1471
1618
|
isUninitialized: false;
|
|
1472
1619
|
isLoading: false;
|
|
@@ -1478,7 +1625,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1478
1625
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1479
1626
|
mentor: string;
|
|
1480
1627
|
org: string;
|
|
1481
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1628
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1629
|
+
attempt?: number;
|
|
1630
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>> & {
|
|
1482
1631
|
currentData?: import("@iblai/iblai-api").Mentor | undefined;
|
|
1483
1632
|
isUninitialized: false;
|
|
1484
1633
|
isLoading: false;
|
|
@@ -1516,7 +1665,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1516
1665
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1517
1666
|
mentor: string;
|
|
1518
1667
|
org: string;
|
|
1519
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1668
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1669
|
+
attempt?: number;
|
|
1670
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>> & {
|
|
1520
1671
|
currentData?: import("@iblai/iblai-api").Mentor | undefined;
|
|
1521
1672
|
isUninitialized: false;
|
|
1522
1673
|
isLoading: false;
|
|
@@ -1534,7 +1685,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1534
1685
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1535
1686
|
mentor: string;
|
|
1536
1687
|
org: string;
|
|
1537
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1688
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1689
|
+
attempt?: number;
|
|
1690
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>> & {
|
|
1538
1691
|
currentData?: import("@iblai/iblai-api").Mentor | undefined;
|
|
1539
1692
|
isUninitialized: false;
|
|
1540
1693
|
isLoading: false;
|
|
@@ -1548,7 +1701,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1548
1701
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1549
1702
|
mentor: string;
|
|
1550
1703
|
org: string;
|
|
1551
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1704
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1705
|
+
attempt?: number;
|
|
1706
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>> & {
|
|
1552
1707
|
currentData?: import("@iblai/iblai-api").Mentor | undefined;
|
|
1553
1708
|
isUninitialized: false;
|
|
1554
1709
|
isLoading: false;
|
|
@@ -1560,7 +1715,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1560
1715
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1561
1716
|
mentor: string;
|
|
1562
1717
|
org: string;
|
|
1563
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1718
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1719
|
+
attempt?: number;
|
|
1720
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>> & {
|
|
1564
1721
|
currentData?: import("@iblai/iblai-api").Mentor | undefined;
|
|
1565
1722
|
isUninitialized: false;
|
|
1566
1723
|
isLoading: false;
|
|
@@ -1574,7 +1731,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1574
1731
|
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1575
1732
|
mentor: string;
|
|
1576
1733
|
org: string;
|
|
1577
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1734
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1735
|
+
attempt?: number;
|
|
1736
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>>;
|
|
1578
1737
|
}, useLazyGetMentorDetailsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
1579
1738
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1580
1739
|
originalArgs?: undefined | undefined;
|
|
@@ -1596,7 +1755,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1596
1755
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1597
1756
|
mentor: string;
|
|
1598
1757
|
org: string;
|
|
1599
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1758
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1759
|
+
attempt?: number;
|
|
1760
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>> & {
|
|
1600
1761
|
currentData?: import("@iblai/iblai-api").Mentor | undefined;
|
|
1601
1762
|
isUninitialized: false;
|
|
1602
1763
|
isLoading: false;
|
|
@@ -1614,7 +1775,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1614
1775
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1615
1776
|
mentor: string;
|
|
1616
1777
|
org: string;
|
|
1617
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1778
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1779
|
+
attempt?: number;
|
|
1780
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>> & {
|
|
1618
1781
|
currentData?: import("@iblai/iblai-api").Mentor | undefined;
|
|
1619
1782
|
isUninitialized: false;
|
|
1620
1783
|
isLoading: false;
|
|
@@ -1628,7 +1791,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1628
1791
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1629
1792
|
mentor: string;
|
|
1630
1793
|
org: string;
|
|
1631
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1794
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1795
|
+
attempt?: number;
|
|
1796
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>> & {
|
|
1632
1797
|
currentData?: import("@iblai/iblai-api").Mentor | undefined;
|
|
1633
1798
|
isUninitialized: false;
|
|
1634
1799
|
isLoading: false;
|
|
@@ -1640,7 +1805,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1640
1805
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1641
1806
|
mentor: string;
|
|
1642
1807
|
org: string;
|
|
1643
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1808
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1809
|
+
attempt?: number;
|
|
1810
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>> & {
|
|
1644
1811
|
currentData?: import("@iblai/iblai-api").Mentor | undefined;
|
|
1645
1812
|
isUninitialized: false;
|
|
1646
1813
|
isLoading: false;
|
|
@@ -1672,7 +1839,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1672
1839
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1673
1840
|
mentor: string;
|
|
1674
1841
|
org: string;
|
|
1675
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1842
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1843
|
+
attempt?: number;
|
|
1844
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>> & {
|
|
1676
1845
|
currentData?: import("@iblai/iblai-api").Mentor | undefined;
|
|
1677
1846
|
isUninitialized: false;
|
|
1678
1847
|
isLoading: false;
|
|
@@ -1690,7 +1859,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1690
1859
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1691
1860
|
mentor: string;
|
|
1692
1861
|
org: string;
|
|
1693
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1862
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1863
|
+
attempt?: number;
|
|
1864
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>> & {
|
|
1694
1865
|
currentData?: import("@iblai/iblai-api").Mentor | undefined;
|
|
1695
1866
|
isUninitialized: false;
|
|
1696
1867
|
isLoading: false;
|
|
@@ -1704,7 +1875,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1704
1875
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1705
1876
|
mentor: string;
|
|
1706
1877
|
org: string;
|
|
1707
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1878
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1879
|
+
attempt?: number;
|
|
1880
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>> & {
|
|
1708
1881
|
currentData?: import("@iblai/iblai-api").Mentor | undefined;
|
|
1709
1882
|
isUninitialized: false;
|
|
1710
1883
|
isLoading: false;
|
|
@@ -1716,7 +1889,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1716
1889
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1717
1890
|
mentor: string;
|
|
1718
1891
|
org: string;
|
|
1719
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1892
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1893
|
+
attempt?: number;
|
|
1894
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>> & {
|
|
1720
1895
|
currentData?: import("@iblai/iblai-api").Mentor | undefined;
|
|
1721
1896
|
isUninitialized: false;
|
|
1722
1897
|
isLoading: false;
|
|
@@ -1732,7 +1907,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1732
1907
|
}, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1733
1908
|
mentor: string;
|
|
1734
1909
|
org: string;
|
|
1735
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1910
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1911
|
+
attempt?: number;
|
|
1912
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
1736
1913
|
reset: () => void;
|
|
1737
1914
|
}, {
|
|
1738
1915
|
lastArg: {
|
|
@@ -1761,7 +1938,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1761
1938
|
mentor: string;
|
|
1762
1939
|
org: string;
|
|
1763
1940
|
departmentId?: number;
|
|
1764
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1941
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1942
|
+
attempt?: number;
|
|
1943
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
1765
1944
|
currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
|
|
1766
1945
|
isUninitialized: false;
|
|
1767
1946
|
isLoading: false;
|
|
@@ -1780,7 +1959,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1780
1959
|
mentor: string;
|
|
1781
1960
|
org: string;
|
|
1782
1961
|
departmentId?: number;
|
|
1783
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1962
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1963
|
+
attempt?: number;
|
|
1964
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
1784
1965
|
currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
|
|
1785
1966
|
isUninitialized: false;
|
|
1786
1967
|
isLoading: false;
|
|
@@ -1795,7 +1976,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1795
1976
|
mentor: string;
|
|
1796
1977
|
org: string;
|
|
1797
1978
|
departmentId?: number;
|
|
1798
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1979
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1980
|
+
attempt?: number;
|
|
1981
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
1799
1982
|
currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
|
|
1800
1983
|
isUninitialized: false;
|
|
1801
1984
|
isLoading: false;
|
|
@@ -1808,7 +1991,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1808
1991
|
mentor: string;
|
|
1809
1992
|
org: string;
|
|
1810
1993
|
departmentId?: number;
|
|
1811
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1994
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1995
|
+
attempt?: number;
|
|
1996
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
1812
1997
|
currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
|
|
1813
1998
|
isUninitialized: false;
|
|
1814
1999
|
isLoading: false;
|
|
@@ -1848,7 +2033,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1848
2033
|
mentor: string;
|
|
1849
2034
|
org: string;
|
|
1850
2035
|
departmentId?: number;
|
|
1851
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2036
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2037
|
+
attempt?: number;
|
|
2038
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
1852
2039
|
currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
|
|
1853
2040
|
isUninitialized: false;
|
|
1854
2041
|
isLoading: false;
|
|
@@ -1867,7 +2054,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1867
2054
|
mentor: string;
|
|
1868
2055
|
org: string;
|
|
1869
2056
|
departmentId?: number;
|
|
1870
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2057
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2058
|
+
attempt?: number;
|
|
2059
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
1871
2060
|
currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
|
|
1872
2061
|
isUninitialized: false;
|
|
1873
2062
|
isLoading: false;
|
|
@@ -1882,7 +2071,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1882
2071
|
mentor: string;
|
|
1883
2072
|
org: string;
|
|
1884
2073
|
departmentId?: number;
|
|
1885
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2074
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2075
|
+
attempt?: number;
|
|
2076
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
1886
2077
|
currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
|
|
1887
2078
|
isUninitialized: false;
|
|
1888
2079
|
isLoading: false;
|
|
@@ -1895,7 +2086,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1895
2086
|
mentor: string;
|
|
1896
2087
|
org: string;
|
|
1897
2088
|
departmentId?: number;
|
|
1898
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2089
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2090
|
+
attempt?: number;
|
|
2091
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
1899
2092
|
currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
|
|
1900
2093
|
isUninitialized: false;
|
|
1901
2094
|
isLoading: false;
|
|
@@ -1910,7 +2103,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1910
2103
|
mentor: string;
|
|
1911
2104
|
org: string;
|
|
1912
2105
|
departmentId?: number;
|
|
1913
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2106
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2107
|
+
attempt?: number;
|
|
2108
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>>;
|
|
1914
2109
|
}, useLazyGetMentorSettingsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
1915
2110
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1916
2111
|
originalArgs?: undefined | undefined;
|
|
@@ -1933,7 +2128,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1933
2128
|
mentor: string;
|
|
1934
2129
|
org: string;
|
|
1935
2130
|
departmentId?: number;
|
|
1936
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2131
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2132
|
+
attempt?: number;
|
|
2133
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
1937
2134
|
currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
|
|
1938
2135
|
isUninitialized: false;
|
|
1939
2136
|
isLoading: false;
|
|
@@ -1952,7 +2149,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1952
2149
|
mentor: string;
|
|
1953
2150
|
org: string;
|
|
1954
2151
|
departmentId?: number;
|
|
1955
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2152
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2153
|
+
attempt?: number;
|
|
2154
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
1956
2155
|
currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
|
|
1957
2156
|
isUninitialized: false;
|
|
1958
2157
|
isLoading: false;
|
|
@@ -1967,7 +2166,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1967
2166
|
mentor: string;
|
|
1968
2167
|
org: string;
|
|
1969
2168
|
departmentId?: number;
|
|
1970
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2169
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2170
|
+
attempt?: number;
|
|
2171
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
1971
2172
|
currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
|
|
1972
2173
|
isUninitialized: false;
|
|
1973
2174
|
isLoading: false;
|
|
@@ -1980,7 +2181,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1980
2181
|
mentor: string;
|
|
1981
2182
|
org: string;
|
|
1982
2183
|
departmentId?: number;
|
|
1983
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2184
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2185
|
+
attempt?: number;
|
|
2186
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
1984
2187
|
currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
|
|
1985
2188
|
isUninitialized: false;
|
|
1986
2189
|
isLoading: false;
|
|
@@ -2013,7 +2216,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2013
2216
|
mentor: string;
|
|
2014
2217
|
org: string;
|
|
2015
2218
|
departmentId?: number;
|
|
2016
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2219
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2220
|
+
attempt?: number;
|
|
2221
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
2017
2222
|
currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
|
|
2018
2223
|
isUninitialized: false;
|
|
2019
2224
|
isLoading: false;
|
|
@@ -2032,7 +2237,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2032
2237
|
mentor: string;
|
|
2033
2238
|
org: string;
|
|
2034
2239
|
departmentId?: number;
|
|
2035
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2240
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2241
|
+
attempt?: number;
|
|
2242
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
2036
2243
|
currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
|
|
2037
2244
|
isUninitialized: false;
|
|
2038
2245
|
isLoading: false;
|
|
@@ -2047,7 +2254,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2047
2254
|
mentor: string;
|
|
2048
2255
|
org: string;
|
|
2049
2256
|
departmentId?: number;
|
|
2050
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2257
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2258
|
+
attempt?: number;
|
|
2259
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
2051
2260
|
currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
|
|
2052
2261
|
isUninitialized: false;
|
|
2053
2262
|
isLoading: false;
|
|
@@ -2060,7 +2269,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2060
2269
|
mentor: string;
|
|
2061
2270
|
org: string;
|
|
2062
2271
|
departmentId?: number;
|
|
2063
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2272
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2273
|
+
attempt?: number;
|
|
2274
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
2064
2275
|
currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
|
|
2065
2276
|
isUninitialized: false;
|
|
2066
2277
|
isLoading: false;
|
|
@@ -2078,7 +2289,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2078
2289
|
mentor: string;
|
|
2079
2290
|
org: string;
|
|
2080
2291
|
departmentId?: number;
|
|
2081
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2292
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2293
|
+
attempt?: number;
|
|
2294
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
2082
2295
|
reset: () => void;
|
|
2083
2296
|
}, {
|
|
2084
2297
|
lastArg: {
|
|
@@ -2107,7 +2320,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2107
2320
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2108
2321
|
mentor: string;
|
|
2109
2322
|
org: string;
|
|
2110
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2323
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2324
|
+
attempt?: number;
|
|
2325
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
2111
2326
|
currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
|
|
2112
2327
|
isUninitialized: false;
|
|
2113
2328
|
isLoading: false;
|
|
@@ -2125,7 +2340,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2125
2340
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2126
2341
|
mentor: string;
|
|
2127
2342
|
org: string;
|
|
2128
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2343
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2344
|
+
attempt?: number;
|
|
2345
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
2129
2346
|
currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
|
|
2130
2347
|
isUninitialized: false;
|
|
2131
2348
|
isLoading: false;
|
|
@@ -2139,7 +2356,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2139
2356
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2140
2357
|
mentor: string;
|
|
2141
2358
|
org: string;
|
|
2142
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2359
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2360
|
+
attempt?: number;
|
|
2361
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
2143
2362
|
currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
|
|
2144
2363
|
isUninitialized: false;
|
|
2145
2364
|
isLoading: false;
|
|
@@ -2151,7 +2370,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2151
2370
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2152
2371
|
mentor: string;
|
|
2153
2372
|
org: string;
|
|
2154
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2373
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2374
|
+
attempt?: number;
|
|
2375
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
2155
2376
|
currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
|
|
2156
2377
|
isUninitialized: false;
|
|
2157
2378
|
isLoading: false;
|
|
@@ -2189,7 +2410,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2189
2410
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2190
2411
|
mentor: string;
|
|
2191
2412
|
org: string;
|
|
2192
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2413
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2414
|
+
attempt?: number;
|
|
2415
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
2193
2416
|
currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
|
|
2194
2417
|
isUninitialized: false;
|
|
2195
2418
|
isLoading: false;
|
|
@@ -2207,7 +2430,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2207
2430
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2208
2431
|
mentor: string;
|
|
2209
2432
|
org: string;
|
|
2210
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2433
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2434
|
+
attempt?: number;
|
|
2435
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
2211
2436
|
currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
|
|
2212
2437
|
isUninitialized: false;
|
|
2213
2438
|
isLoading: false;
|
|
@@ -2221,7 +2446,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2221
2446
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2222
2447
|
mentor: string;
|
|
2223
2448
|
org: string;
|
|
2224
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2449
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2450
|
+
attempt?: number;
|
|
2451
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
2225
2452
|
currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
|
|
2226
2453
|
isUninitialized: false;
|
|
2227
2454
|
isLoading: false;
|
|
@@ -2233,7 +2460,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2233
2460
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2234
2461
|
mentor: string;
|
|
2235
2462
|
org: string;
|
|
2236
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2463
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2464
|
+
attempt?: number;
|
|
2465
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
2237
2466
|
currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
|
|
2238
2467
|
isUninitialized: false;
|
|
2239
2468
|
isLoading: false;
|
|
@@ -2247,7 +2476,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2247
2476
|
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2248
2477
|
mentor: string;
|
|
2249
2478
|
org: string;
|
|
2250
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2479
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2480
|
+
attempt?: number;
|
|
2481
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>>;
|
|
2251
2482
|
}, useLazyGetMentorPublicSettingsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
2252
2483
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
2253
2484
|
originalArgs?: undefined | undefined;
|
|
@@ -2269,7 +2500,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2269
2500
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2270
2501
|
mentor: string;
|
|
2271
2502
|
org: string;
|
|
2272
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2503
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2504
|
+
attempt?: number;
|
|
2505
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
2273
2506
|
currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
|
|
2274
2507
|
isUninitialized: false;
|
|
2275
2508
|
isLoading: false;
|
|
@@ -2287,7 +2520,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2287
2520
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2288
2521
|
mentor: string;
|
|
2289
2522
|
org: string;
|
|
2290
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2523
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2524
|
+
attempt?: number;
|
|
2525
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
2291
2526
|
currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
|
|
2292
2527
|
isUninitialized: false;
|
|
2293
2528
|
isLoading: false;
|
|
@@ -2301,7 +2536,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2301
2536
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2302
2537
|
mentor: string;
|
|
2303
2538
|
org: string;
|
|
2304
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2539
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2540
|
+
attempt?: number;
|
|
2541
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
2305
2542
|
currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
|
|
2306
2543
|
isUninitialized: false;
|
|
2307
2544
|
isLoading: false;
|
|
@@ -2313,7 +2550,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2313
2550
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2314
2551
|
mentor: string;
|
|
2315
2552
|
org: string;
|
|
2316
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2553
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2554
|
+
attempt?: number;
|
|
2555
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
2317
2556
|
currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
|
|
2318
2557
|
isUninitialized: false;
|
|
2319
2558
|
isLoading: false;
|
|
@@ -2345,7 +2584,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2345
2584
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2346
2585
|
mentor: string;
|
|
2347
2586
|
org: string;
|
|
2348
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2587
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2588
|
+
attempt?: number;
|
|
2589
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
2349
2590
|
currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
|
|
2350
2591
|
isUninitialized: false;
|
|
2351
2592
|
isLoading: false;
|
|
@@ -2363,7 +2604,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2363
2604
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2364
2605
|
mentor: string;
|
|
2365
2606
|
org: string;
|
|
2366
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2607
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2608
|
+
attempt?: number;
|
|
2609
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
2367
2610
|
currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
|
|
2368
2611
|
isUninitialized: false;
|
|
2369
2612
|
isLoading: false;
|
|
@@ -2377,7 +2620,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2377
2620
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2378
2621
|
mentor: string;
|
|
2379
2622
|
org: string;
|
|
2380
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2623
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2624
|
+
attempt?: number;
|
|
2625
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
2381
2626
|
currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
|
|
2382
2627
|
isUninitialized: false;
|
|
2383
2628
|
isLoading: false;
|
|
@@ -2389,7 +2634,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2389
2634
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2390
2635
|
mentor: string;
|
|
2391
2636
|
org: string;
|
|
2392
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2637
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2638
|
+
attempt?: number;
|
|
2639
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
2393
2640
|
currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
|
|
2394
2641
|
isUninitialized: false;
|
|
2395
2642
|
isLoading: false;
|
|
@@ -2405,14 +2652,16 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2405
2652
|
}, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2406
2653
|
mentor: string;
|
|
2407
2654
|
org: string;
|
|
2408
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2655
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2656
|
+
attempt?: number;
|
|
2657
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
2409
2658
|
reset: () => void;
|
|
2410
2659
|
}, {
|
|
2411
2660
|
lastArg: {
|
|
2412
2661
|
mentor: string;
|
|
2413
2662
|
org: string;
|
|
2414
2663
|
};
|
|
2415
|
-
}],
|
|
2664
|
+
}], useEditMentorAndRefreshListMutation: <R extends Record<string, any> = ({
|
|
2416
2665
|
requestId?: undefined;
|
|
2417
2666
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
2418
2667
|
data?: undefined;
|
|
@@ -2579,7 +2828,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2579
2828
|
org: string;
|
|
2580
2829
|
departmentId?: number;
|
|
2581
2830
|
formData?: import("@iblai/iblai-api").MentorSettingsRequest;
|
|
2582
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2831
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2832
|
+
attempt?: number;
|
|
2833
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MentorSettings, "mentorApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
2583
2834
|
originalArgs?: {
|
|
2584
2835
|
mentor: string;
|
|
2585
2836
|
org: string;
|
|
@@ -2607,7 +2858,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2607
2858
|
isUninitialized: true;
|
|
2608
2859
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2609
2860
|
org: string;
|
|
2610
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2861
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2862
|
+
attempt?: number;
|
|
2863
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").FreeUsageCount, "mentorApiSlice", any>> & {
|
|
2611
2864
|
currentData?: import("@iblai/iblai-api").FreeUsageCount | undefined;
|
|
2612
2865
|
isUninitialized: false;
|
|
2613
2866
|
isLoading: false;
|
|
@@ -2624,7 +2877,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2624
2877
|
error: undefined;
|
|
2625
2878
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2626
2879
|
org: string;
|
|
2627
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2880
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2881
|
+
attempt?: number;
|
|
2882
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").FreeUsageCount, "mentorApiSlice", any>> & {
|
|
2628
2883
|
currentData?: import("@iblai/iblai-api").FreeUsageCount | undefined;
|
|
2629
2884
|
isUninitialized: false;
|
|
2630
2885
|
isLoading: false;
|
|
@@ -2637,7 +2892,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2637
2892
|
error: undefined;
|
|
2638
2893
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2639
2894
|
org: string;
|
|
2640
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2895
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2896
|
+
attempt?: number;
|
|
2897
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").FreeUsageCount, "mentorApiSlice", any>> & {
|
|
2641
2898
|
currentData?: import("@iblai/iblai-api").FreeUsageCount | undefined;
|
|
2642
2899
|
isUninitialized: false;
|
|
2643
2900
|
isLoading: false;
|
|
@@ -2648,7 +2905,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2648
2905
|
isError: true;
|
|
2649
2906
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2650
2907
|
org: string;
|
|
2651
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2908
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2909
|
+
attempt?: number;
|
|
2910
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").FreeUsageCount, "mentorApiSlice", any>> & {
|
|
2652
2911
|
currentData?: import("@iblai/iblai-api").FreeUsageCount | undefined;
|
|
2653
2912
|
isUninitialized: false;
|
|
2654
2913
|
isLoading: false;
|
|
@@ -2684,7 +2943,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2684
2943
|
isUninitialized: true;
|
|
2685
2944
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2686
2945
|
org: string;
|
|
2687
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2946
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2947
|
+
attempt?: number;
|
|
2948
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").FreeUsageCount, "mentorApiSlice", any>> & {
|
|
2688
2949
|
currentData?: import("@iblai/iblai-api").FreeUsageCount | undefined;
|
|
2689
2950
|
isUninitialized: false;
|
|
2690
2951
|
isLoading: false;
|
|
@@ -2701,7 +2962,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2701
2962
|
error: undefined;
|
|
2702
2963
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2703
2964
|
org: string;
|
|
2704
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2965
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2966
|
+
attempt?: number;
|
|
2967
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").FreeUsageCount, "mentorApiSlice", any>> & {
|
|
2705
2968
|
currentData?: import("@iblai/iblai-api").FreeUsageCount | undefined;
|
|
2706
2969
|
isUninitialized: false;
|
|
2707
2970
|
isLoading: false;
|
|
@@ -2714,7 +2977,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2714
2977
|
error: undefined;
|
|
2715
2978
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2716
2979
|
org: string;
|
|
2717
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2980
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2981
|
+
attempt?: number;
|
|
2982
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").FreeUsageCount, "mentorApiSlice", any>> & {
|
|
2718
2983
|
currentData?: import("@iblai/iblai-api").FreeUsageCount | undefined;
|
|
2719
2984
|
isUninitialized: false;
|
|
2720
2985
|
isLoading: false;
|
|
@@ -2725,7 +2990,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2725
2990
|
isError: true;
|
|
2726
2991
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2727
2992
|
org: string;
|
|
2728
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2993
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2994
|
+
attempt?: number;
|
|
2995
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").FreeUsageCount, "mentorApiSlice", any>> & {
|
|
2729
2996
|
currentData?: import("@iblai/iblai-api").FreeUsageCount | undefined;
|
|
2730
2997
|
isUninitialized: false;
|
|
2731
2998
|
isLoading: false;
|
|
@@ -2738,7 +3005,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2738
3005
|
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
2739
3006
|
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2740
3007
|
org: string;
|
|
2741
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
3008
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3009
|
+
attempt?: number;
|
|
3010
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").FreeUsageCount, "mentorApiSlice", any>>;
|
|
2742
3011
|
}, useLazyGetFreeUsageCountQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
2743
3012
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
2744
3013
|
originalArgs?: undefined | undefined;
|
|
@@ -2759,7 +3028,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2759
3028
|
isUninitialized: true;
|
|
2760
3029
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2761
3030
|
org: string;
|
|
2762
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
3031
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3032
|
+
attempt?: number;
|
|
3033
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").FreeUsageCount, "mentorApiSlice", any>> & {
|
|
2763
3034
|
currentData?: import("@iblai/iblai-api").FreeUsageCount | undefined;
|
|
2764
3035
|
isUninitialized: false;
|
|
2765
3036
|
isLoading: false;
|
|
@@ -2776,7 +3047,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2776
3047
|
error: undefined;
|
|
2777
3048
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2778
3049
|
org: string;
|
|
2779
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
3050
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3051
|
+
attempt?: number;
|
|
3052
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").FreeUsageCount, "mentorApiSlice", any>> & {
|
|
2780
3053
|
currentData?: import("@iblai/iblai-api").FreeUsageCount | undefined;
|
|
2781
3054
|
isUninitialized: false;
|
|
2782
3055
|
isLoading: false;
|
|
@@ -2789,7 +3062,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2789
3062
|
error: undefined;
|
|
2790
3063
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2791
3064
|
org: string;
|
|
2792
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
3065
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3066
|
+
attempt?: number;
|
|
3067
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").FreeUsageCount, "mentorApiSlice", any>> & {
|
|
2793
3068
|
currentData?: import("@iblai/iblai-api").FreeUsageCount | undefined;
|
|
2794
3069
|
isUninitialized: false;
|
|
2795
3070
|
isLoading: false;
|
|
@@ -2800,7 +3075,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2800
3075
|
isError: true;
|
|
2801
3076
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2802
3077
|
org: string;
|
|
2803
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
3078
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3079
|
+
attempt?: number;
|
|
3080
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").FreeUsageCount, "mentorApiSlice", any>> & {
|
|
2804
3081
|
currentData?: import("@iblai/iblai-api").FreeUsageCount | undefined;
|
|
2805
3082
|
isUninitialized: false;
|
|
2806
3083
|
isLoading: false;
|
|
@@ -2831,7 +3108,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2831
3108
|
isUninitialized: true;
|
|
2832
3109
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2833
3110
|
org: string;
|
|
2834
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
3111
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3112
|
+
attempt?: number;
|
|
3113
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").FreeUsageCount, "mentorApiSlice", any>> & {
|
|
2835
3114
|
currentData?: import("@iblai/iblai-api").FreeUsageCount | undefined;
|
|
2836
3115
|
isUninitialized: false;
|
|
2837
3116
|
isLoading: false;
|
|
@@ -2848,7 +3127,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2848
3127
|
error: undefined;
|
|
2849
3128
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2850
3129
|
org: string;
|
|
2851
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
3130
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3131
|
+
attempt?: number;
|
|
3132
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").FreeUsageCount, "mentorApiSlice", any>> & {
|
|
2852
3133
|
currentData?: import("@iblai/iblai-api").FreeUsageCount | undefined;
|
|
2853
3134
|
isUninitialized: false;
|
|
2854
3135
|
isLoading: false;
|
|
@@ -2861,7 +3142,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2861
3142
|
error: undefined;
|
|
2862
3143
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2863
3144
|
org: string;
|
|
2864
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
3145
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3146
|
+
attempt?: number;
|
|
3147
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").FreeUsageCount, "mentorApiSlice", any>> & {
|
|
2865
3148
|
currentData?: import("@iblai/iblai-api").FreeUsageCount | undefined;
|
|
2866
3149
|
isUninitialized: false;
|
|
2867
3150
|
isLoading: false;
|
|
@@ -2872,7 +3155,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2872
3155
|
isError: true;
|
|
2873
3156
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2874
3157
|
org: string;
|
|
2875
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
3158
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3159
|
+
attempt?: number;
|
|
3160
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").FreeUsageCount, "mentorApiSlice", any>> & {
|
|
2876
3161
|
currentData?: import("@iblai/iblai-api").FreeUsageCount | undefined;
|
|
2877
3162
|
isUninitialized: false;
|
|
2878
3163
|
isLoading: false;
|
|
@@ -2886,7 +3171,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2886
3171
|
org: string;
|
|
2887
3172
|
}, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2888
3173
|
org: string;
|
|
2889
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
3174
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3175
|
+
attempt?: number;
|
|
3176
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").FreeUsageCount, "mentorApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
2890
3177
|
reset: () => void;
|
|
2891
3178
|
}, {
|
|
2892
3179
|
lastArg: {
|
|
@@ -3057,7 +3344,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3057
3344
|
mentor: string;
|
|
3058
3345
|
org: string;
|
|
3059
3346
|
requestBody?: import("@iblai/iblai-api").ShareableMentorLink;
|
|
3060
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
3347
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3348
|
+
attempt?: number;
|
|
3349
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
3061
3350
|
originalArgs?: {
|
|
3062
3351
|
mentor: string;
|
|
3063
3352
|
org: string;
|
|
@@ -3085,7 +3374,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3085
3374
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3086
3375
|
mentor: string;
|
|
3087
3376
|
org: string;
|
|
3088
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
3377
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3378
|
+
attempt?: number;
|
|
3379
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3089
3380
|
currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
|
|
3090
3381
|
isUninitialized: false;
|
|
3091
3382
|
isLoading: false;
|
|
@@ -3103,7 +3394,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3103
3394
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3104
3395
|
mentor: string;
|
|
3105
3396
|
org: string;
|
|
3106
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
3397
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3398
|
+
attempt?: number;
|
|
3399
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3107
3400
|
currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
|
|
3108
3401
|
isUninitialized: false;
|
|
3109
3402
|
isLoading: false;
|
|
@@ -3117,7 +3410,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3117
3410
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3118
3411
|
mentor: string;
|
|
3119
3412
|
org: string;
|
|
3120
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
3413
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3414
|
+
attempt?: number;
|
|
3415
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3121
3416
|
currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
|
|
3122
3417
|
isUninitialized: false;
|
|
3123
3418
|
isLoading: false;
|
|
@@ -3129,7 +3424,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3129
3424
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3130
3425
|
mentor: string;
|
|
3131
3426
|
org: string;
|
|
3132
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
3427
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3428
|
+
attempt?: number;
|
|
3429
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3133
3430
|
currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
|
|
3134
3431
|
isUninitialized: false;
|
|
3135
3432
|
isLoading: false;
|
|
@@ -3167,7 +3464,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3167
3464
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3168
3465
|
mentor: string;
|
|
3169
3466
|
org: string;
|
|
3170
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
3467
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3468
|
+
attempt?: number;
|
|
3469
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3171
3470
|
currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
|
|
3172
3471
|
isUninitialized: false;
|
|
3173
3472
|
isLoading: false;
|
|
@@ -3185,7 +3484,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3185
3484
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3186
3485
|
mentor: string;
|
|
3187
3486
|
org: string;
|
|
3188
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
3487
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3488
|
+
attempt?: number;
|
|
3489
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3189
3490
|
currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
|
|
3190
3491
|
isUninitialized: false;
|
|
3191
3492
|
isLoading: false;
|
|
@@ -3199,7 +3500,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3199
3500
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3200
3501
|
mentor: string;
|
|
3201
3502
|
org: string;
|
|
3202
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
3503
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3504
|
+
attempt?: number;
|
|
3505
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3203
3506
|
currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
|
|
3204
3507
|
isUninitialized: false;
|
|
3205
3508
|
isLoading: false;
|
|
@@ -3211,7 +3514,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3211
3514
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3212
3515
|
mentor: string;
|
|
3213
3516
|
org: string;
|
|
3214
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
3517
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3518
|
+
attempt?: number;
|
|
3519
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3215
3520
|
currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
|
|
3216
3521
|
isUninitialized: false;
|
|
3217
3522
|
isLoading: false;
|
|
@@ -3225,7 +3530,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3225
3530
|
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3226
3531
|
mentor: string;
|
|
3227
3532
|
org: string;
|
|
3228
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
3533
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3534
|
+
attempt?: number;
|
|
3535
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>>;
|
|
3229
3536
|
}, useLazyGetShareableLinkQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
3230
3537
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
3231
3538
|
originalArgs?: undefined | undefined;
|
|
@@ -3247,7 +3554,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3247
3554
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3248
3555
|
mentor: string;
|
|
3249
3556
|
org: string;
|
|
3250
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
3557
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3558
|
+
attempt?: number;
|
|
3559
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3251
3560
|
currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
|
|
3252
3561
|
isUninitialized: false;
|
|
3253
3562
|
isLoading: false;
|
|
@@ -3265,7 +3574,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3265
3574
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3266
3575
|
mentor: string;
|
|
3267
3576
|
org: string;
|
|
3268
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
3577
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3578
|
+
attempt?: number;
|
|
3579
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3269
3580
|
currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
|
|
3270
3581
|
isUninitialized: false;
|
|
3271
3582
|
isLoading: false;
|
|
@@ -3279,7 +3590,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3279
3590
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3280
3591
|
mentor: string;
|
|
3281
3592
|
org: string;
|
|
3282
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
3593
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3594
|
+
attempt?: number;
|
|
3595
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3283
3596
|
currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
|
|
3284
3597
|
isUninitialized: false;
|
|
3285
3598
|
isLoading: false;
|
|
@@ -3291,7 +3604,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3291
3604
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3292
3605
|
mentor: string;
|
|
3293
3606
|
org: string;
|
|
3294
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
3607
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3608
|
+
attempt?: number;
|
|
3609
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3295
3610
|
currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
|
|
3296
3611
|
isUninitialized: false;
|
|
3297
3612
|
isLoading: false;
|
|
@@ -3323,7 +3638,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3323
3638
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3324
3639
|
mentor: string;
|
|
3325
3640
|
org: string;
|
|
3326
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
3641
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3642
|
+
attempt?: number;
|
|
3643
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3327
3644
|
currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
|
|
3328
3645
|
isUninitialized: false;
|
|
3329
3646
|
isLoading: false;
|
|
@@ -3341,7 +3658,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3341
3658
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3342
3659
|
mentor: string;
|
|
3343
3660
|
org: string;
|
|
3344
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
3661
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3662
|
+
attempt?: number;
|
|
3663
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3345
3664
|
currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
|
|
3346
3665
|
isUninitialized: false;
|
|
3347
3666
|
isLoading: false;
|
|
@@ -3355,7 +3674,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3355
3674
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3356
3675
|
mentor: string;
|
|
3357
3676
|
org: string;
|
|
3358
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
3677
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3678
|
+
attempt?: number;
|
|
3679
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3359
3680
|
currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
|
|
3360
3681
|
isUninitialized: false;
|
|
3361
3682
|
isLoading: false;
|
|
@@ -3367,7 +3688,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3367
3688
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3368
3689
|
mentor: string;
|
|
3369
3690
|
org: string;
|
|
3370
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
3691
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3692
|
+
attempt?: number;
|
|
3693
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3371
3694
|
currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
|
|
3372
3695
|
isUninitialized: false;
|
|
3373
3696
|
isLoading: false;
|
|
@@ -3383,7 +3706,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3383
3706
|
}, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3384
3707
|
mentor: string;
|
|
3385
3708
|
org: string;
|
|
3386
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
3709
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3710
|
+
attempt?: number;
|
|
3711
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
3387
3712
|
reset: () => void;
|
|
3388
3713
|
}, {
|
|
3389
3714
|
lastArg: {
|
|
@@ -3411,7 +3736,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3411
3736
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3412
3737
|
mentor: string;
|
|
3413
3738
|
org: string;
|
|
3414
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
3739
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3740
|
+
attempt?: number;
|
|
3741
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3415
3742
|
currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
|
|
3416
3743
|
isUninitialized: false;
|
|
3417
3744
|
isLoading: false;
|
|
@@ -3429,7 +3756,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3429
3756
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3430
3757
|
mentor: string;
|
|
3431
3758
|
org: string;
|
|
3432
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
3759
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3760
|
+
attempt?: number;
|
|
3761
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3433
3762
|
currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
|
|
3434
3763
|
isUninitialized: false;
|
|
3435
3764
|
isLoading: false;
|
|
@@ -3443,7 +3772,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3443
3772
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3444
3773
|
mentor: string;
|
|
3445
3774
|
org: string;
|
|
3446
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
3775
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3776
|
+
attempt?: number;
|
|
3777
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3447
3778
|
currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
|
|
3448
3779
|
isUninitialized: false;
|
|
3449
3780
|
isLoading: false;
|
|
@@ -3455,7 +3786,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3455
3786
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3456
3787
|
mentor: string;
|
|
3457
3788
|
org: string;
|
|
3458
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
3789
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3790
|
+
attempt?: number;
|
|
3791
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3459
3792
|
currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
|
|
3460
3793
|
isUninitialized: false;
|
|
3461
3794
|
isLoading: false;
|
|
@@ -3493,7 +3826,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3493
3826
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3494
3827
|
mentor: string;
|
|
3495
3828
|
org: string;
|
|
3496
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
3829
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3830
|
+
attempt?: number;
|
|
3831
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3497
3832
|
currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
|
|
3498
3833
|
isUninitialized: false;
|
|
3499
3834
|
isLoading: false;
|
|
@@ -3511,7 +3846,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3511
3846
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3512
3847
|
mentor: string;
|
|
3513
3848
|
org: string;
|
|
3514
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
3849
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3850
|
+
attempt?: number;
|
|
3851
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3515
3852
|
currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
|
|
3516
3853
|
isUninitialized: false;
|
|
3517
3854
|
isLoading: false;
|
|
@@ -3525,7 +3862,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3525
3862
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3526
3863
|
mentor: string;
|
|
3527
3864
|
org: string;
|
|
3528
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
3865
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3866
|
+
attempt?: number;
|
|
3867
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3529
3868
|
currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
|
|
3530
3869
|
isUninitialized: false;
|
|
3531
3870
|
isLoading: false;
|
|
@@ -3537,7 +3876,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3537
3876
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3538
3877
|
mentor: string;
|
|
3539
3878
|
org: string;
|
|
3540
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
3879
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3880
|
+
attempt?: number;
|
|
3881
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3541
3882
|
currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
|
|
3542
3883
|
isUninitialized: false;
|
|
3543
3884
|
isLoading: false;
|
|
@@ -3551,7 +3892,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3551
3892
|
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3552
3893
|
mentor: string;
|
|
3553
3894
|
org: string;
|
|
3554
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
3895
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3896
|
+
attempt?: number;
|
|
3897
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>>;
|
|
3555
3898
|
}, useLazyGetShareableLinkPublicQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
3556
3899
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
3557
3900
|
originalArgs?: undefined | undefined;
|
|
@@ -3573,7 +3916,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3573
3916
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3574
3917
|
mentor: string;
|
|
3575
3918
|
org: string;
|
|
3576
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
3919
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3920
|
+
attempt?: number;
|
|
3921
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3577
3922
|
currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
|
|
3578
3923
|
isUninitialized: false;
|
|
3579
3924
|
isLoading: false;
|
|
@@ -3591,7 +3936,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3591
3936
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3592
3937
|
mentor: string;
|
|
3593
3938
|
org: string;
|
|
3594
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
3939
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3940
|
+
attempt?: number;
|
|
3941
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3595
3942
|
currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
|
|
3596
3943
|
isUninitialized: false;
|
|
3597
3944
|
isLoading: false;
|
|
@@ -3605,7 +3952,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3605
3952
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3606
3953
|
mentor: string;
|
|
3607
3954
|
org: string;
|
|
3608
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
3955
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3956
|
+
attempt?: number;
|
|
3957
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3609
3958
|
currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
|
|
3610
3959
|
isUninitialized: false;
|
|
3611
3960
|
isLoading: false;
|
|
@@ -3617,7 +3966,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3617
3966
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3618
3967
|
mentor: string;
|
|
3619
3968
|
org: string;
|
|
3620
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
3969
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3970
|
+
attempt?: number;
|
|
3971
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3621
3972
|
currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
|
|
3622
3973
|
isUninitialized: false;
|
|
3623
3974
|
isLoading: false;
|
|
@@ -3649,7 +4000,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3649
4000
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3650
4001
|
mentor: string;
|
|
3651
4002
|
org: string;
|
|
3652
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
4003
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
4004
|
+
attempt?: number;
|
|
4005
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3653
4006
|
currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
|
|
3654
4007
|
isUninitialized: false;
|
|
3655
4008
|
isLoading: false;
|
|
@@ -3667,7 +4020,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3667
4020
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3668
4021
|
mentor: string;
|
|
3669
4022
|
org: string;
|
|
3670
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
4023
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
4024
|
+
attempt?: number;
|
|
4025
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3671
4026
|
currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
|
|
3672
4027
|
isUninitialized: false;
|
|
3673
4028
|
isLoading: false;
|
|
@@ -3681,7 +4036,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3681
4036
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3682
4037
|
mentor: string;
|
|
3683
4038
|
org: string;
|
|
3684
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
4039
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
4040
|
+
attempt?: number;
|
|
4041
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3685
4042
|
currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
|
|
3686
4043
|
isUninitialized: false;
|
|
3687
4044
|
isLoading: false;
|
|
@@ -3693,7 +4050,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3693
4050
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3694
4051
|
mentor: string;
|
|
3695
4052
|
org: string;
|
|
3696
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
4053
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
4054
|
+
attempt?: number;
|
|
4055
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3697
4056
|
currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
|
|
3698
4057
|
isUninitialized: false;
|
|
3699
4058
|
isLoading: false;
|
|
@@ -3709,7 +4068,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3709
4068
|
}, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3710
4069
|
mentor: string;
|
|
3711
4070
|
org: string;
|
|
3712
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
4071
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
4072
|
+
attempt?: number;
|
|
4073
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
3713
4074
|
reset: () => void;
|
|
3714
4075
|
}, {
|
|
3715
4076
|
lastArg: {
|
|
@@ -3879,7 +4240,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3879
4240
|
}) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
3880
4241
|
mentor: string;
|
|
3881
4242
|
org: string;
|
|
3882
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
4243
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
4244
|
+
attempt?: number;
|
|
4245
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", void, "mentorApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
3883
4246
|
originalArgs?: {
|
|
3884
4247
|
mentor: string;
|
|
3885
4248
|
org: string;
|
|
@@ -4050,13 +4413,189 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
4050
4413
|
mentor: string;
|
|
4051
4414
|
org: string;
|
|
4052
4415
|
requestBody?: import("@iblai/iblai-api").ShareableMentorLink;
|
|
4053
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
4416
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
4417
|
+
attempt?: number;
|
|
4418
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
4054
4419
|
originalArgs?: {
|
|
4055
4420
|
mentor: string;
|
|
4056
4421
|
org: string;
|
|
4057
4422
|
requestBody?: import("@iblai/iblai-api").ShareableMentorLink;
|
|
4058
4423
|
} | undefined;
|
|
4059
4424
|
reset: () => void;
|
|
4425
|
+
}], useUpdateChatSessionSharedMutation: <R extends Record<string, any> = ({
|
|
4426
|
+
requestId?: undefined;
|
|
4427
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
4428
|
+
data?: undefined;
|
|
4429
|
+
error?: undefined;
|
|
4430
|
+
endpointName?: string;
|
|
4431
|
+
startedTimeStamp?: undefined;
|
|
4432
|
+
fulfilledTimeStamp?: undefined;
|
|
4433
|
+
} & {
|
|
4434
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
4435
|
+
isUninitialized: true;
|
|
4436
|
+
isLoading: false;
|
|
4437
|
+
isSuccess: false;
|
|
4438
|
+
isError: false;
|
|
4439
|
+
}) | ({
|
|
4440
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
4441
|
+
} & Omit<{
|
|
4442
|
+
requestId: string;
|
|
4443
|
+
data?: import("@iblai/iblai-api").SharedSessionUpdateResponse | undefined;
|
|
4444
|
+
error?: unknown;
|
|
4445
|
+
endpointName: string;
|
|
4446
|
+
startedTimeStamp: number;
|
|
4447
|
+
fulfilledTimeStamp?: number;
|
|
4448
|
+
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
4449
|
+
requestId: string;
|
|
4450
|
+
data?: import("@iblai/iblai-api").SharedSessionUpdateResponse | undefined;
|
|
4451
|
+
error?: unknown;
|
|
4452
|
+
endpointName: string;
|
|
4453
|
+
startedTimeStamp: number;
|
|
4454
|
+
fulfilledTimeStamp?: number;
|
|
4455
|
+
}, "data" | "fulfilledTimeStamp">> & {
|
|
4456
|
+
error: undefined;
|
|
4457
|
+
} & {
|
|
4458
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
4459
|
+
isUninitialized: false;
|
|
4460
|
+
isLoading: false;
|
|
4461
|
+
isSuccess: true;
|
|
4462
|
+
isError: false;
|
|
4463
|
+
}) | ({
|
|
4464
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
4465
|
+
} & {
|
|
4466
|
+
requestId: string;
|
|
4467
|
+
data?: import("@iblai/iblai-api").SharedSessionUpdateResponse | undefined;
|
|
4468
|
+
error?: unknown;
|
|
4469
|
+
endpointName: string;
|
|
4470
|
+
startedTimeStamp: number;
|
|
4471
|
+
fulfilledTimeStamp?: number;
|
|
4472
|
+
} & {
|
|
4473
|
+
data?: undefined;
|
|
4474
|
+
} & {
|
|
4475
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
4476
|
+
isUninitialized: false;
|
|
4477
|
+
isLoading: true;
|
|
4478
|
+
isSuccess: false;
|
|
4479
|
+
isError: false;
|
|
4480
|
+
}) | ({
|
|
4481
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
4482
|
+
} & Omit<{
|
|
4483
|
+
requestId: string;
|
|
4484
|
+
data?: import("@iblai/iblai-api").SharedSessionUpdateResponse | undefined;
|
|
4485
|
+
error?: unknown;
|
|
4486
|
+
endpointName: string;
|
|
4487
|
+
startedTimeStamp: number;
|
|
4488
|
+
fulfilledTimeStamp?: number;
|
|
4489
|
+
}, "error"> & Required<Pick<{
|
|
4490
|
+
requestId: string;
|
|
4491
|
+
data?: import("@iblai/iblai-api").SharedSessionUpdateResponse | undefined;
|
|
4492
|
+
error?: unknown;
|
|
4493
|
+
endpointName: string;
|
|
4494
|
+
startedTimeStamp: number;
|
|
4495
|
+
fulfilledTimeStamp?: number;
|
|
4496
|
+
}, "error">> & {
|
|
4497
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
4498
|
+
isUninitialized: false;
|
|
4499
|
+
isLoading: false;
|
|
4500
|
+
isSuccess: false;
|
|
4501
|
+
isError: true;
|
|
4502
|
+
})>(options?: {
|
|
4503
|
+
selectFromResult?: ((state: ({
|
|
4504
|
+
requestId?: undefined;
|
|
4505
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
4506
|
+
data?: undefined;
|
|
4507
|
+
error?: undefined;
|
|
4508
|
+
endpointName?: string;
|
|
4509
|
+
startedTimeStamp?: undefined;
|
|
4510
|
+
fulfilledTimeStamp?: undefined;
|
|
4511
|
+
} & {
|
|
4512
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
4513
|
+
isUninitialized: true;
|
|
4514
|
+
isLoading: false;
|
|
4515
|
+
isSuccess: false;
|
|
4516
|
+
isError: false;
|
|
4517
|
+
}) | ({
|
|
4518
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
4519
|
+
} & Omit<{
|
|
4520
|
+
requestId: string;
|
|
4521
|
+
data?: import("@iblai/iblai-api").SharedSessionUpdateResponse | undefined;
|
|
4522
|
+
error?: unknown;
|
|
4523
|
+
endpointName: string;
|
|
4524
|
+
startedTimeStamp: number;
|
|
4525
|
+
fulfilledTimeStamp?: number;
|
|
4526
|
+
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
4527
|
+
requestId: string;
|
|
4528
|
+
data?: import("@iblai/iblai-api").SharedSessionUpdateResponse | undefined;
|
|
4529
|
+
error?: unknown;
|
|
4530
|
+
endpointName: string;
|
|
4531
|
+
startedTimeStamp: number;
|
|
4532
|
+
fulfilledTimeStamp?: number;
|
|
4533
|
+
}, "data" | "fulfilledTimeStamp">> & {
|
|
4534
|
+
error: undefined;
|
|
4535
|
+
} & {
|
|
4536
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
4537
|
+
isUninitialized: false;
|
|
4538
|
+
isLoading: false;
|
|
4539
|
+
isSuccess: true;
|
|
4540
|
+
isError: false;
|
|
4541
|
+
}) | ({
|
|
4542
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
4543
|
+
} & {
|
|
4544
|
+
requestId: string;
|
|
4545
|
+
data?: import("@iblai/iblai-api").SharedSessionUpdateResponse | undefined;
|
|
4546
|
+
error?: unknown;
|
|
4547
|
+
endpointName: string;
|
|
4548
|
+
startedTimeStamp: number;
|
|
4549
|
+
fulfilledTimeStamp?: number;
|
|
4550
|
+
} & {
|
|
4551
|
+
data?: undefined;
|
|
4552
|
+
} & {
|
|
4553
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
4554
|
+
isUninitialized: false;
|
|
4555
|
+
isLoading: true;
|
|
4556
|
+
isSuccess: false;
|
|
4557
|
+
isError: false;
|
|
4558
|
+
}) | ({
|
|
4559
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
4560
|
+
} & Omit<{
|
|
4561
|
+
requestId: string;
|
|
4562
|
+
data?: import("@iblai/iblai-api").SharedSessionUpdateResponse | undefined;
|
|
4563
|
+
error?: unknown;
|
|
4564
|
+
endpointName: string;
|
|
4565
|
+
startedTimeStamp: number;
|
|
4566
|
+
fulfilledTimeStamp?: number;
|
|
4567
|
+
}, "error"> & Required<Pick<{
|
|
4568
|
+
requestId: string;
|
|
4569
|
+
data?: import("@iblai/iblai-api").SharedSessionUpdateResponse | undefined;
|
|
4570
|
+
error?: unknown;
|
|
4571
|
+
endpointName: string;
|
|
4572
|
+
startedTimeStamp: number;
|
|
4573
|
+
fulfilledTimeStamp?: number;
|
|
4574
|
+
}, "error">> & {
|
|
4575
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
4576
|
+
isUninitialized: false;
|
|
4577
|
+
isLoading: false;
|
|
4578
|
+
isSuccess: false;
|
|
4579
|
+
isError: true;
|
|
4580
|
+
})) => R) | undefined;
|
|
4581
|
+
fixedCacheKey?: string;
|
|
4582
|
+
} | undefined) => readonly [(arg: {
|
|
4583
|
+
org: string;
|
|
4584
|
+
sessionId: string;
|
|
4585
|
+
requestBody: import("@iblai/iblai-api").SharedSessionUpdateRequest;
|
|
4586
|
+
}) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
4587
|
+
org: string;
|
|
4588
|
+
sessionId: string;
|
|
4589
|
+
requestBody: import("@iblai/iblai-api").SharedSessionUpdateRequest;
|
|
4590
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
4591
|
+
attempt?: number;
|
|
4592
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").SharedSessionUpdateResponse, "mentorApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
4593
|
+
originalArgs?: {
|
|
4594
|
+
org: string;
|
|
4595
|
+
sessionId: string;
|
|
4596
|
+
requestBody: import("@iblai/iblai-api").SharedSessionUpdateRequest;
|
|
4597
|
+
} | undefined;
|
|
4598
|
+
reset: () => void;
|
|
4060
4599
|
}], useDeleteMentorMutation: <R extends Record<string, any> = ({
|
|
4061
4600
|
requestId?: undefined;
|
|
4062
4601
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
@@ -4219,6 +4758,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
4219
4758
|
org: string;
|
|
4220
4759
|
departmentId?: number;
|
|
4221
4760
|
filterBy?: string;
|
|
4761
|
+
isFeatured?: boolean;
|
|
4222
4762
|
metadataKey?: string;
|
|
4223
4763
|
metadataValue?: string;
|
|
4224
4764
|
returnSessionInformation?: boolean;
|
|
@@ -4228,16 +4768,20 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
4228
4768
|
org: string;
|
|
4229
4769
|
departmentId?: number;
|
|
4230
4770
|
filterBy?: string;
|
|
4771
|
+
isFeatured?: boolean;
|
|
4231
4772
|
metadataKey?: string;
|
|
4232
4773
|
metadataValue?: string;
|
|
4233
4774
|
returnSessionInformation?: boolean;
|
|
4234
4775
|
visibility?: string;
|
|
4235
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
4776
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
4777
|
+
attempt?: number;
|
|
4778
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", void, "mentorApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
4236
4779
|
originalArgs?: {
|
|
4237
4780
|
name: string;
|
|
4238
4781
|
org: string;
|
|
4239
4782
|
departmentId?: number;
|
|
4240
4783
|
filterBy?: string;
|
|
4784
|
+
isFeatured?: boolean;
|
|
4241
4785
|
metadataKey?: string;
|
|
4242
4786
|
metadataValue?: string;
|
|
4243
4787
|
returnSessionInformation?: boolean;
|
|
@@ -4409,7 +4953,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
4409
4953
|
mentor: string;
|
|
4410
4954
|
org: string;
|
|
4411
4955
|
requestBody: import("@iblai/iblai-api").MentorFork;
|
|
4412
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
4956
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
4957
|
+
attempt?: number;
|
|
4958
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
4413
4959
|
originalArgs?: {
|
|
4414
4960
|
mentor: string;
|
|
4415
4961
|
org: string;
|
|
@@ -4450,7 +4996,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
4450
4996
|
tags?: Array<string>;
|
|
4451
4997
|
tenant?: string;
|
|
4452
4998
|
uniqueId?: string;
|
|
4453
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
4999
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
5000
|
+
attempt?: number;
|
|
5001
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
4454
5002
|
currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
|
|
4455
5003
|
isUninitialized: false;
|
|
4456
5004
|
isLoading: false;
|
|
@@ -4481,7 +5029,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
4481
5029
|
tags?: Array<string>;
|
|
4482
5030
|
tenant?: string;
|
|
4483
5031
|
uniqueId?: string;
|
|
4484
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
5032
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
5033
|
+
attempt?: number;
|
|
5034
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
4485
5035
|
currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
|
|
4486
5036
|
isUninitialized: false;
|
|
4487
5037
|
isLoading: false;
|
|
@@ -4508,7 +5058,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
4508
5058
|
tags?: Array<string>;
|
|
4509
5059
|
tenant?: string;
|
|
4510
5060
|
uniqueId?: string;
|
|
4511
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
5061
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
5062
|
+
attempt?: number;
|
|
5063
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
4512
5064
|
currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
|
|
4513
5065
|
isUninitialized: false;
|
|
4514
5066
|
isLoading: false;
|
|
@@ -4533,7 +5085,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
4533
5085
|
tags?: Array<string>;
|
|
4534
5086
|
tenant?: string;
|
|
4535
5087
|
uniqueId?: string;
|
|
4536
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
5088
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
5089
|
+
attempt?: number;
|
|
5090
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
4537
5091
|
currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
|
|
4538
5092
|
isUninitialized: false;
|
|
4539
5093
|
isLoading: false;
|
|
@@ -4597,7 +5151,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
4597
5151
|
tags?: Array<string>;
|
|
4598
5152
|
tenant?: string;
|
|
4599
5153
|
uniqueId?: string;
|
|
4600
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
5154
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
5155
|
+
attempt?: number;
|
|
5156
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
4601
5157
|
currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
|
|
4602
5158
|
isUninitialized: false;
|
|
4603
5159
|
isLoading: false;
|
|
@@ -4628,7 +5184,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
4628
5184
|
tags?: Array<string>;
|
|
4629
5185
|
tenant?: string;
|
|
4630
5186
|
uniqueId?: string;
|
|
4631
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
5187
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
5188
|
+
attempt?: number;
|
|
5189
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
4632
5190
|
currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
|
|
4633
5191
|
isUninitialized: false;
|
|
4634
5192
|
isLoading: false;
|
|
@@ -4655,7 +5213,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
4655
5213
|
tags?: Array<string>;
|
|
4656
5214
|
tenant?: string;
|
|
4657
5215
|
uniqueId?: string;
|
|
4658
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
5216
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
5217
|
+
attempt?: number;
|
|
5218
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
4659
5219
|
currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
|
|
4660
5220
|
isUninitialized: false;
|
|
4661
5221
|
isLoading: false;
|
|
@@ -4680,7 +5240,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
4680
5240
|
tags?: Array<string>;
|
|
4681
5241
|
tenant?: string;
|
|
4682
5242
|
uniqueId?: string;
|
|
4683
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
5243
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
5244
|
+
attempt?: number;
|
|
5245
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
4684
5246
|
currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
|
|
4685
5247
|
isUninitialized: false;
|
|
4686
5248
|
isLoading: false;
|
|
@@ -4707,7 +5269,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
4707
5269
|
tags?: Array<string>;
|
|
4708
5270
|
tenant?: string;
|
|
4709
5271
|
uniqueId?: string;
|
|
4710
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
5272
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
5273
|
+
attempt?: number;
|
|
5274
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>>;
|
|
4711
5275
|
}, useLazyGetPublicMentorsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
4712
5276
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
4713
5277
|
originalArgs?: undefined | undefined;
|
|
@@ -4742,7 +5306,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
4742
5306
|
tags?: Array<string>;
|
|
4743
5307
|
tenant?: string;
|
|
4744
5308
|
uniqueId?: string;
|
|
4745
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
5309
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
5310
|
+
attempt?: number;
|
|
5311
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
4746
5312
|
currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
|
|
4747
5313
|
isUninitialized: false;
|
|
4748
5314
|
isLoading: false;
|
|
@@ -4773,7 +5339,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
4773
5339
|
tags?: Array<string>;
|
|
4774
5340
|
tenant?: string;
|
|
4775
5341
|
uniqueId?: string;
|
|
4776
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
5342
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
5343
|
+
attempt?: number;
|
|
5344
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
4777
5345
|
currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
|
|
4778
5346
|
isUninitialized: false;
|
|
4779
5347
|
isLoading: false;
|
|
@@ -4800,7 +5368,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
4800
5368
|
tags?: Array<string>;
|
|
4801
5369
|
tenant?: string;
|
|
4802
5370
|
uniqueId?: string;
|
|
4803
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
5371
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
5372
|
+
attempt?: number;
|
|
5373
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
4804
5374
|
currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
|
|
4805
5375
|
isUninitialized: false;
|
|
4806
5376
|
isLoading: false;
|
|
@@ -4825,7 +5395,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
4825
5395
|
tags?: Array<string>;
|
|
4826
5396
|
tenant?: string;
|
|
4827
5397
|
uniqueId?: string;
|
|
4828
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
5398
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
5399
|
+
attempt?: number;
|
|
5400
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
4829
5401
|
currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
|
|
4830
5402
|
isUninitialized: false;
|
|
4831
5403
|
isLoading: false;
|
|
@@ -4870,7 +5442,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
4870
5442
|
tags?: Array<string>;
|
|
4871
5443
|
tenant?: string;
|
|
4872
5444
|
uniqueId?: string;
|
|
4873
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
5445
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
5446
|
+
attempt?: number;
|
|
5447
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
4874
5448
|
currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
|
|
4875
5449
|
isUninitialized: false;
|
|
4876
5450
|
isLoading: false;
|
|
@@ -4901,7 +5475,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
4901
5475
|
tags?: Array<string>;
|
|
4902
5476
|
tenant?: string;
|
|
4903
5477
|
uniqueId?: string;
|
|
4904
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
5478
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
5479
|
+
attempt?: number;
|
|
5480
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
4905
5481
|
currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
|
|
4906
5482
|
isUninitialized: false;
|
|
4907
5483
|
isLoading: false;
|
|
@@ -4928,7 +5504,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
4928
5504
|
tags?: Array<string>;
|
|
4929
5505
|
tenant?: string;
|
|
4930
5506
|
uniqueId?: string;
|
|
4931
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
5507
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
5508
|
+
attempt?: number;
|
|
5509
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
4932
5510
|
currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
|
|
4933
5511
|
isUninitialized: false;
|
|
4934
5512
|
isLoading: false;
|
|
@@ -4953,7 +5531,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
4953
5531
|
tags?: Array<string>;
|
|
4954
5532
|
tenant?: string;
|
|
4955
5533
|
uniqueId?: string;
|
|
4956
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
5534
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
5535
|
+
attempt?: number;
|
|
5536
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
4957
5537
|
currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
|
|
4958
5538
|
isUninitialized: false;
|
|
4959
5539
|
isLoading: false;
|
|
@@ -4995,7 +5575,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
4995
5575
|
tags?: Array<string>;
|
|
4996
5576
|
tenant?: string;
|
|
4997
5577
|
uniqueId?: string;
|
|
4998
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
5578
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
5579
|
+
attempt?: number;
|
|
5580
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
4999
5581
|
reset: () => void;
|
|
5000
5582
|
}, {
|
|
5001
5583
|
lastArg: {
|
|
@@ -5035,7 +5617,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
5035
5617
|
isUninitialized: true;
|
|
5036
5618
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5037
5619
|
org: string;
|
|
5038
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
5620
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
5621
|
+
attempt?: number;
|
|
5622
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").RecentlyAccessedMentor[], "mentorApiSlice", any>> & {
|
|
5039
5623
|
currentData?: import("@iblai/iblai-api").RecentlyAccessedMentor[] | undefined;
|
|
5040
5624
|
isUninitialized: false;
|
|
5041
5625
|
isLoading: false;
|
|
@@ -5052,7 +5636,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
5052
5636
|
error: undefined;
|
|
5053
5637
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5054
5638
|
org: string;
|
|
5055
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
5639
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
5640
|
+
attempt?: number;
|
|
5641
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").RecentlyAccessedMentor[], "mentorApiSlice", any>> & {
|
|
5056
5642
|
currentData?: import("@iblai/iblai-api").RecentlyAccessedMentor[] | undefined;
|
|
5057
5643
|
isUninitialized: false;
|
|
5058
5644
|
isLoading: false;
|
|
@@ -5065,7 +5651,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
5065
5651
|
error: undefined;
|
|
5066
5652
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5067
5653
|
org: string;
|
|
5068
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
5654
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
5655
|
+
attempt?: number;
|
|
5656
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").RecentlyAccessedMentor[], "mentorApiSlice", any>> & {
|
|
5069
5657
|
currentData?: import("@iblai/iblai-api").RecentlyAccessedMentor[] | undefined;
|
|
5070
5658
|
isUninitialized: false;
|
|
5071
5659
|
isLoading: false;
|
|
@@ -5076,7 +5664,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
5076
5664
|
isError: true;
|
|
5077
5665
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5078
5666
|
org: string;
|
|
5079
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
5667
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
5668
|
+
attempt?: number;
|
|
5669
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").RecentlyAccessedMentor[], "mentorApiSlice", any>> & {
|
|
5080
5670
|
currentData?: import("@iblai/iblai-api").RecentlyAccessedMentor[] | undefined;
|
|
5081
5671
|
isUninitialized: false;
|
|
5082
5672
|
isLoading: false;
|
|
@@ -5112,7 +5702,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
5112
5702
|
isUninitialized: true;
|
|
5113
5703
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5114
5704
|
org: string;
|
|
5115
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
5705
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
5706
|
+
attempt?: number;
|
|
5707
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").RecentlyAccessedMentor[], "mentorApiSlice", any>> & {
|
|
5116
5708
|
currentData?: import("@iblai/iblai-api").RecentlyAccessedMentor[] | undefined;
|
|
5117
5709
|
isUninitialized: false;
|
|
5118
5710
|
isLoading: false;
|
|
@@ -5129,7 +5721,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
5129
5721
|
error: undefined;
|
|
5130
5722
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5131
5723
|
org: string;
|
|
5132
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
5724
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
5725
|
+
attempt?: number;
|
|
5726
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").RecentlyAccessedMentor[], "mentorApiSlice", any>> & {
|
|
5133
5727
|
currentData?: import("@iblai/iblai-api").RecentlyAccessedMentor[] | undefined;
|
|
5134
5728
|
isUninitialized: false;
|
|
5135
5729
|
isLoading: false;
|
|
@@ -5142,7 +5736,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
5142
5736
|
error: undefined;
|
|
5143
5737
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5144
5738
|
org: string;
|
|
5145
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
5739
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
5740
|
+
attempt?: number;
|
|
5741
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").RecentlyAccessedMentor[], "mentorApiSlice", any>> & {
|
|
5146
5742
|
currentData?: import("@iblai/iblai-api").RecentlyAccessedMentor[] | undefined;
|
|
5147
5743
|
isUninitialized: false;
|
|
5148
5744
|
isLoading: false;
|
|
@@ -5153,7 +5749,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
5153
5749
|
isError: true;
|
|
5154
5750
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5155
5751
|
org: string;
|
|
5156
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
5752
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
5753
|
+
attempt?: number;
|
|
5754
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").RecentlyAccessedMentor[], "mentorApiSlice", any>> & {
|
|
5157
5755
|
currentData?: import("@iblai/iblai-api").RecentlyAccessedMentor[] | undefined;
|
|
5158
5756
|
isUninitialized: false;
|
|
5159
5757
|
isLoading: false;
|
|
@@ -5166,7 +5764,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
5166
5764
|
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
5167
5765
|
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5168
5766
|
org: string;
|
|
5169
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
5767
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
5768
|
+
attempt?: number;
|
|
5769
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").RecentlyAccessedMentor[], "mentorApiSlice", any>>;
|
|
5170
5770
|
}, useLazyGetRecentlyAccessedMentorsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
5171
5771
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
5172
5772
|
originalArgs?: undefined | undefined;
|
|
@@ -5187,7 +5787,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
5187
5787
|
isUninitialized: true;
|
|
5188
5788
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5189
5789
|
org: string;
|
|
5190
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
5790
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
5791
|
+
attempt?: number;
|
|
5792
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").RecentlyAccessedMentor[], "mentorApiSlice", any>> & {
|
|
5191
5793
|
currentData?: import("@iblai/iblai-api").RecentlyAccessedMentor[] | undefined;
|
|
5192
5794
|
isUninitialized: false;
|
|
5193
5795
|
isLoading: false;
|
|
@@ -5204,7 +5806,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
5204
5806
|
error: undefined;
|
|
5205
5807
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5206
5808
|
org: string;
|
|
5207
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
5809
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
5810
|
+
attempt?: number;
|
|
5811
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").RecentlyAccessedMentor[], "mentorApiSlice", any>> & {
|
|
5208
5812
|
currentData?: import("@iblai/iblai-api").RecentlyAccessedMentor[] | undefined;
|
|
5209
5813
|
isUninitialized: false;
|
|
5210
5814
|
isLoading: false;
|
|
@@ -5217,7 +5821,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
5217
5821
|
error: undefined;
|
|
5218
5822
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5219
5823
|
org: string;
|
|
5220
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
5824
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
5825
|
+
attempt?: number;
|
|
5826
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").RecentlyAccessedMentor[], "mentorApiSlice", any>> & {
|
|
5221
5827
|
currentData?: import("@iblai/iblai-api").RecentlyAccessedMentor[] | undefined;
|
|
5222
5828
|
isUninitialized: false;
|
|
5223
5829
|
isLoading: false;
|
|
@@ -5228,7 +5834,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
5228
5834
|
isError: true;
|
|
5229
5835
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5230
5836
|
org: string;
|
|
5231
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
5837
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
5838
|
+
attempt?: number;
|
|
5839
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").RecentlyAccessedMentor[], "mentorApiSlice", any>> & {
|
|
5232
5840
|
currentData?: import("@iblai/iblai-api").RecentlyAccessedMentor[] | undefined;
|
|
5233
5841
|
isUninitialized: false;
|
|
5234
5842
|
isLoading: false;
|
|
@@ -5259,7 +5867,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
5259
5867
|
isUninitialized: true;
|
|
5260
5868
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5261
5869
|
org: string;
|
|
5262
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
5870
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
5871
|
+
attempt?: number;
|
|
5872
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").RecentlyAccessedMentor[], "mentorApiSlice", any>> & {
|
|
5263
5873
|
currentData?: import("@iblai/iblai-api").RecentlyAccessedMentor[] | undefined;
|
|
5264
5874
|
isUninitialized: false;
|
|
5265
5875
|
isLoading: false;
|
|
@@ -5276,7 +5886,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
5276
5886
|
error: undefined;
|
|
5277
5887
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5278
5888
|
org: string;
|
|
5279
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
5889
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
5890
|
+
attempt?: number;
|
|
5891
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").RecentlyAccessedMentor[], "mentorApiSlice", any>> & {
|
|
5280
5892
|
currentData?: import("@iblai/iblai-api").RecentlyAccessedMentor[] | undefined;
|
|
5281
5893
|
isUninitialized: false;
|
|
5282
5894
|
isLoading: false;
|
|
@@ -5289,7 +5901,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
5289
5901
|
error: undefined;
|
|
5290
5902
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5291
5903
|
org: string;
|
|
5292
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
5904
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
5905
|
+
attempt?: number;
|
|
5906
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").RecentlyAccessedMentor[], "mentorApiSlice", any>> & {
|
|
5293
5907
|
currentData?: import("@iblai/iblai-api").RecentlyAccessedMentor[] | undefined;
|
|
5294
5908
|
isUninitialized: false;
|
|
5295
5909
|
isLoading: false;
|
|
@@ -5300,7 +5914,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
5300
5914
|
isError: true;
|
|
5301
5915
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5302
5916
|
org: string;
|
|
5303
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
5917
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
5918
|
+
attempt?: number;
|
|
5919
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").RecentlyAccessedMentor[], "mentorApiSlice", any>> & {
|
|
5304
5920
|
currentData?: import("@iblai/iblai-api").RecentlyAccessedMentor[] | undefined;
|
|
5305
5921
|
isUninitialized: false;
|
|
5306
5922
|
isLoading: false;
|
|
@@ -5314,13 +5930,872 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
5314
5930
|
org: string;
|
|
5315
5931
|
}, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5316
5932
|
org: string;
|
|
5317
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
5933
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
5934
|
+
attempt?: number;
|
|
5935
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").RecentlyAccessedMentor[], "mentorApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
5318
5936
|
reset: () => void;
|
|
5319
5937
|
}, {
|
|
5320
5938
|
lastArg: {
|
|
5321
5939
|
org: string;
|
|
5322
5940
|
};
|
|
5323
|
-
}],
|
|
5941
|
+
}], useStarMentorMutation: <R extends Record<string, any> = ({
|
|
5942
|
+
requestId?: undefined;
|
|
5943
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
5944
|
+
data?: undefined;
|
|
5945
|
+
error?: undefined;
|
|
5946
|
+
endpointName?: string;
|
|
5947
|
+
startedTimeStamp?: undefined;
|
|
5948
|
+
fulfilledTimeStamp?: undefined;
|
|
5949
|
+
} & {
|
|
5950
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
5951
|
+
isUninitialized: true;
|
|
5952
|
+
isLoading: false;
|
|
5953
|
+
isSuccess: false;
|
|
5954
|
+
isError: false;
|
|
5955
|
+
}) | ({
|
|
5956
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
5957
|
+
} & Omit<{
|
|
5958
|
+
requestId: string;
|
|
5959
|
+
data?: import("@iblai/iblai-api").StarMentor | undefined;
|
|
5960
|
+
error?: unknown;
|
|
5961
|
+
endpointName: string;
|
|
5962
|
+
startedTimeStamp: number;
|
|
5963
|
+
fulfilledTimeStamp?: number;
|
|
5964
|
+
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
5965
|
+
requestId: string;
|
|
5966
|
+
data?: import("@iblai/iblai-api").StarMentor | undefined;
|
|
5967
|
+
error?: unknown;
|
|
5968
|
+
endpointName: string;
|
|
5969
|
+
startedTimeStamp: number;
|
|
5970
|
+
fulfilledTimeStamp?: number;
|
|
5971
|
+
}, "data" | "fulfilledTimeStamp">> & {
|
|
5972
|
+
error: undefined;
|
|
5973
|
+
} & {
|
|
5974
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
5975
|
+
isUninitialized: false;
|
|
5976
|
+
isLoading: false;
|
|
5977
|
+
isSuccess: true;
|
|
5978
|
+
isError: false;
|
|
5979
|
+
}) | ({
|
|
5980
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
5981
|
+
} & {
|
|
5982
|
+
requestId: string;
|
|
5983
|
+
data?: import("@iblai/iblai-api").StarMentor | undefined;
|
|
5984
|
+
error?: unknown;
|
|
5985
|
+
endpointName: string;
|
|
5986
|
+
startedTimeStamp: number;
|
|
5987
|
+
fulfilledTimeStamp?: number;
|
|
5988
|
+
} & {
|
|
5989
|
+
data?: undefined;
|
|
5990
|
+
} & {
|
|
5991
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
5992
|
+
isUninitialized: false;
|
|
5993
|
+
isLoading: true;
|
|
5994
|
+
isSuccess: false;
|
|
5995
|
+
isError: false;
|
|
5996
|
+
}) | ({
|
|
5997
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
5998
|
+
} & Omit<{
|
|
5999
|
+
requestId: string;
|
|
6000
|
+
data?: import("@iblai/iblai-api").StarMentor | undefined;
|
|
6001
|
+
error?: unknown;
|
|
6002
|
+
endpointName: string;
|
|
6003
|
+
startedTimeStamp: number;
|
|
6004
|
+
fulfilledTimeStamp?: number;
|
|
6005
|
+
}, "error"> & Required<Pick<{
|
|
6006
|
+
requestId: string;
|
|
6007
|
+
data?: import("@iblai/iblai-api").StarMentor | undefined;
|
|
6008
|
+
error?: unknown;
|
|
6009
|
+
endpointName: string;
|
|
6010
|
+
startedTimeStamp: number;
|
|
6011
|
+
fulfilledTimeStamp?: number;
|
|
6012
|
+
}, "error">> & {
|
|
6013
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
6014
|
+
isUninitialized: false;
|
|
6015
|
+
isLoading: false;
|
|
6016
|
+
isSuccess: false;
|
|
6017
|
+
isError: true;
|
|
6018
|
+
})>(options?: {
|
|
6019
|
+
selectFromResult?: ((state: ({
|
|
6020
|
+
requestId?: undefined;
|
|
6021
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
6022
|
+
data?: undefined;
|
|
6023
|
+
error?: undefined;
|
|
6024
|
+
endpointName?: string;
|
|
6025
|
+
startedTimeStamp?: undefined;
|
|
6026
|
+
fulfilledTimeStamp?: undefined;
|
|
6027
|
+
} & {
|
|
6028
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
6029
|
+
isUninitialized: true;
|
|
6030
|
+
isLoading: false;
|
|
6031
|
+
isSuccess: false;
|
|
6032
|
+
isError: false;
|
|
6033
|
+
}) | ({
|
|
6034
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
6035
|
+
} & Omit<{
|
|
6036
|
+
requestId: string;
|
|
6037
|
+
data?: import("@iblai/iblai-api").StarMentor | undefined;
|
|
6038
|
+
error?: unknown;
|
|
6039
|
+
endpointName: string;
|
|
6040
|
+
startedTimeStamp: number;
|
|
6041
|
+
fulfilledTimeStamp?: number;
|
|
6042
|
+
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
6043
|
+
requestId: string;
|
|
6044
|
+
data?: import("@iblai/iblai-api").StarMentor | undefined;
|
|
6045
|
+
error?: unknown;
|
|
6046
|
+
endpointName: string;
|
|
6047
|
+
startedTimeStamp: number;
|
|
6048
|
+
fulfilledTimeStamp?: number;
|
|
6049
|
+
}, "data" | "fulfilledTimeStamp">> & {
|
|
6050
|
+
error: undefined;
|
|
6051
|
+
} & {
|
|
6052
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
6053
|
+
isUninitialized: false;
|
|
6054
|
+
isLoading: false;
|
|
6055
|
+
isSuccess: true;
|
|
6056
|
+
isError: false;
|
|
6057
|
+
}) | ({
|
|
6058
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
6059
|
+
} & {
|
|
6060
|
+
requestId: string;
|
|
6061
|
+
data?: import("@iblai/iblai-api").StarMentor | undefined;
|
|
6062
|
+
error?: unknown;
|
|
6063
|
+
endpointName: string;
|
|
6064
|
+
startedTimeStamp: number;
|
|
6065
|
+
fulfilledTimeStamp?: number;
|
|
6066
|
+
} & {
|
|
6067
|
+
data?: undefined;
|
|
6068
|
+
} & {
|
|
6069
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
6070
|
+
isUninitialized: false;
|
|
6071
|
+
isLoading: true;
|
|
6072
|
+
isSuccess: false;
|
|
6073
|
+
isError: false;
|
|
6074
|
+
}) | ({
|
|
6075
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
6076
|
+
} & Omit<{
|
|
6077
|
+
requestId: string;
|
|
6078
|
+
data?: import("@iblai/iblai-api").StarMentor | undefined;
|
|
6079
|
+
error?: unknown;
|
|
6080
|
+
endpointName: string;
|
|
6081
|
+
startedTimeStamp: number;
|
|
6082
|
+
fulfilledTimeStamp?: number;
|
|
6083
|
+
}, "error"> & Required<Pick<{
|
|
6084
|
+
requestId: string;
|
|
6085
|
+
data?: import("@iblai/iblai-api").StarMentor | undefined;
|
|
6086
|
+
error?: unknown;
|
|
6087
|
+
endpointName: string;
|
|
6088
|
+
startedTimeStamp: number;
|
|
6089
|
+
fulfilledTimeStamp?: number;
|
|
6090
|
+
}, "error">> & {
|
|
6091
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
6092
|
+
isUninitialized: false;
|
|
6093
|
+
isLoading: false;
|
|
6094
|
+
isSuccess: false;
|
|
6095
|
+
isError: true;
|
|
6096
|
+
})) => R) | undefined;
|
|
6097
|
+
fixedCacheKey?: string;
|
|
6098
|
+
} | undefined) => readonly [(arg: {
|
|
6099
|
+
mentor: string;
|
|
6100
|
+
org: string;
|
|
6101
|
+
}) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
6102
|
+
mentor: string;
|
|
6103
|
+
org: string;
|
|
6104
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
6105
|
+
attempt?: number;
|
|
6106
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").StarMentor, "mentorApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
6107
|
+
originalArgs?: {
|
|
6108
|
+
mentor: string;
|
|
6109
|
+
org: string;
|
|
6110
|
+
} | undefined;
|
|
6111
|
+
reset: () => void;
|
|
6112
|
+
}], useUnstarMentorMutation: <R extends Record<string, any> = ({
|
|
6113
|
+
requestId?: undefined;
|
|
6114
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
6115
|
+
data?: undefined;
|
|
6116
|
+
error?: undefined;
|
|
6117
|
+
endpointName?: string;
|
|
6118
|
+
startedTimeStamp?: undefined;
|
|
6119
|
+
fulfilledTimeStamp?: undefined;
|
|
6120
|
+
} & {
|
|
6121
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
6122
|
+
isUninitialized: true;
|
|
6123
|
+
isLoading: false;
|
|
6124
|
+
isSuccess: false;
|
|
6125
|
+
isError: false;
|
|
6126
|
+
}) | ({
|
|
6127
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
6128
|
+
} & Omit<{
|
|
6129
|
+
requestId: string;
|
|
6130
|
+
data?: import("@iblai/iblai-api").StarMentor | undefined;
|
|
6131
|
+
error?: unknown;
|
|
6132
|
+
endpointName: string;
|
|
6133
|
+
startedTimeStamp: number;
|
|
6134
|
+
fulfilledTimeStamp?: number;
|
|
6135
|
+
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
6136
|
+
requestId: string;
|
|
6137
|
+
data?: import("@iblai/iblai-api").StarMentor | undefined;
|
|
6138
|
+
error?: unknown;
|
|
6139
|
+
endpointName: string;
|
|
6140
|
+
startedTimeStamp: number;
|
|
6141
|
+
fulfilledTimeStamp?: number;
|
|
6142
|
+
}, "data" | "fulfilledTimeStamp">> & {
|
|
6143
|
+
error: undefined;
|
|
6144
|
+
} & {
|
|
6145
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
6146
|
+
isUninitialized: false;
|
|
6147
|
+
isLoading: false;
|
|
6148
|
+
isSuccess: true;
|
|
6149
|
+
isError: false;
|
|
6150
|
+
}) | ({
|
|
6151
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
6152
|
+
} & {
|
|
6153
|
+
requestId: string;
|
|
6154
|
+
data?: import("@iblai/iblai-api").StarMentor | undefined;
|
|
6155
|
+
error?: unknown;
|
|
6156
|
+
endpointName: string;
|
|
6157
|
+
startedTimeStamp: number;
|
|
6158
|
+
fulfilledTimeStamp?: number;
|
|
6159
|
+
} & {
|
|
6160
|
+
data?: undefined;
|
|
6161
|
+
} & {
|
|
6162
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
6163
|
+
isUninitialized: false;
|
|
6164
|
+
isLoading: true;
|
|
6165
|
+
isSuccess: false;
|
|
6166
|
+
isError: false;
|
|
6167
|
+
}) | ({
|
|
6168
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
6169
|
+
} & Omit<{
|
|
6170
|
+
requestId: string;
|
|
6171
|
+
data?: import("@iblai/iblai-api").StarMentor | undefined;
|
|
6172
|
+
error?: unknown;
|
|
6173
|
+
endpointName: string;
|
|
6174
|
+
startedTimeStamp: number;
|
|
6175
|
+
fulfilledTimeStamp?: number;
|
|
6176
|
+
}, "error"> & Required<Pick<{
|
|
6177
|
+
requestId: string;
|
|
6178
|
+
data?: import("@iblai/iblai-api").StarMentor | undefined;
|
|
6179
|
+
error?: unknown;
|
|
6180
|
+
endpointName: string;
|
|
6181
|
+
startedTimeStamp: number;
|
|
6182
|
+
fulfilledTimeStamp?: number;
|
|
6183
|
+
}, "error">> & {
|
|
6184
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
6185
|
+
isUninitialized: false;
|
|
6186
|
+
isLoading: false;
|
|
6187
|
+
isSuccess: false;
|
|
6188
|
+
isError: true;
|
|
6189
|
+
})>(options?: {
|
|
6190
|
+
selectFromResult?: ((state: ({
|
|
6191
|
+
requestId?: undefined;
|
|
6192
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
6193
|
+
data?: undefined;
|
|
6194
|
+
error?: undefined;
|
|
6195
|
+
endpointName?: string;
|
|
6196
|
+
startedTimeStamp?: undefined;
|
|
6197
|
+
fulfilledTimeStamp?: undefined;
|
|
6198
|
+
} & {
|
|
6199
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
6200
|
+
isUninitialized: true;
|
|
6201
|
+
isLoading: false;
|
|
6202
|
+
isSuccess: false;
|
|
6203
|
+
isError: false;
|
|
6204
|
+
}) | ({
|
|
6205
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
6206
|
+
} & Omit<{
|
|
6207
|
+
requestId: string;
|
|
6208
|
+
data?: import("@iblai/iblai-api").StarMentor | undefined;
|
|
6209
|
+
error?: unknown;
|
|
6210
|
+
endpointName: string;
|
|
6211
|
+
startedTimeStamp: number;
|
|
6212
|
+
fulfilledTimeStamp?: number;
|
|
6213
|
+
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
6214
|
+
requestId: string;
|
|
6215
|
+
data?: import("@iblai/iblai-api").StarMentor | undefined;
|
|
6216
|
+
error?: unknown;
|
|
6217
|
+
endpointName: string;
|
|
6218
|
+
startedTimeStamp: number;
|
|
6219
|
+
fulfilledTimeStamp?: number;
|
|
6220
|
+
}, "data" | "fulfilledTimeStamp">> & {
|
|
6221
|
+
error: undefined;
|
|
6222
|
+
} & {
|
|
6223
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
6224
|
+
isUninitialized: false;
|
|
6225
|
+
isLoading: false;
|
|
6226
|
+
isSuccess: true;
|
|
6227
|
+
isError: false;
|
|
6228
|
+
}) | ({
|
|
6229
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
6230
|
+
} & {
|
|
6231
|
+
requestId: string;
|
|
6232
|
+
data?: import("@iblai/iblai-api").StarMentor | undefined;
|
|
6233
|
+
error?: unknown;
|
|
6234
|
+
endpointName: string;
|
|
6235
|
+
startedTimeStamp: number;
|
|
6236
|
+
fulfilledTimeStamp?: number;
|
|
6237
|
+
} & {
|
|
6238
|
+
data?: undefined;
|
|
6239
|
+
} & {
|
|
6240
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
6241
|
+
isUninitialized: false;
|
|
6242
|
+
isLoading: true;
|
|
6243
|
+
isSuccess: false;
|
|
6244
|
+
isError: false;
|
|
6245
|
+
}) | ({
|
|
6246
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
6247
|
+
} & Omit<{
|
|
6248
|
+
requestId: string;
|
|
6249
|
+
data?: import("@iblai/iblai-api").StarMentor | undefined;
|
|
6250
|
+
error?: unknown;
|
|
6251
|
+
endpointName: string;
|
|
6252
|
+
startedTimeStamp: number;
|
|
6253
|
+
fulfilledTimeStamp?: number;
|
|
6254
|
+
}, "error"> & Required<Pick<{
|
|
6255
|
+
requestId: string;
|
|
6256
|
+
data?: import("@iblai/iblai-api").StarMentor | undefined;
|
|
6257
|
+
error?: unknown;
|
|
6258
|
+
endpointName: string;
|
|
6259
|
+
startedTimeStamp: number;
|
|
6260
|
+
fulfilledTimeStamp?: number;
|
|
6261
|
+
}, "error">> & {
|
|
6262
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
6263
|
+
isUninitialized: false;
|
|
6264
|
+
isLoading: false;
|
|
6265
|
+
isSuccess: false;
|
|
6266
|
+
isError: true;
|
|
6267
|
+
})) => R) | undefined;
|
|
6268
|
+
fixedCacheKey?: string;
|
|
6269
|
+
} | undefined) => readonly [(arg: {
|
|
6270
|
+
mentor: string;
|
|
6271
|
+
org: string;
|
|
6272
|
+
}) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
6273
|
+
mentor: string;
|
|
6274
|
+
org: string;
|
|
6275
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
6276
|
+
attempt?: number;
|
|
6277
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").StarMentor, "mentorApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
6278
|
+
originalArgs?: {
|
|
6279
|
+
mentor: string;
|
|
6280
|
+
org: string;
|
|
6281
|
+
} | undefined;
|
|
6282
|
+
reset: () => void;
|
|
6283
|
+
}], useStarredMentorsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
6284
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
6285
|
+
originalArgs?: undefined | undefined;
|
|
6286
|
+
data?: undefined | undefined;
|
|
6287
|
+
error?: undefined | undefined;
|
|
6288
|
+
requestId?: undefined | undefined;
|
|
6289
|
+
endpointName?: string | undefined;
|
|
6290
|
+
startedTimeStamp?: undefined | undefined;
|
|
6291
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
6292
|
+
} & {
|
|
6293
|
+
currentData?: import("@iblai/iblai-api").StarMentor[] | undefined;
|
|
6294
|
+
isUninitialized: false;
|
|
6295
|
+
isLoading: false;
|
|
6296
|
+
isFetching: false;
|
|
6297
|
+
isSuccess: false;
|
|
6298
|
+
isError: false;
|
|
6299
|
+
}, "isUninitialized"> & {
|
|
6300
|
+
isUninitialized: true;
|
|
6301
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
6302
|
+
org: string;
|
|
6303
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
6304
|
+
attempt?: number;
|
|
6305
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").StarMentor[], "mentorApiSlice", any>> & {
|
|
6306
|
+
currentData?: import("@iblai/iblai-api").StarMentor[] | undefined;
|
|
6307
|
+
isUninitialized: false;
|
|
6308
|
+
isLoading: false;
|
|
6309
|
+
isFetching: false;
|
|
6310
|
+
isSuccess: false;
|
|
6311
|
+
isError: false;
|
|
6312
|
+
}, {
|
|
6313
|
+
isLoading: true;
|
|
6314
|
+
isFetching: boolean;
|
|
6315
|
+
data: undefined;
|
|
6316
|
+
} | ({
|
|
6317
|
+
isSuccess: true;
|
|
6318
|
+
isFetching: true;
|
|
6319
|
+
error: undefined;
|
|
6320
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
6321
|
+
org: string;
|
|
6322
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
6323
|
+
attempt?: number;
|
|
6324
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").StarMentor[], "mentorApiSlice", any>> & {
|
|
6325
|
+
currentData?: import("@iblai/iblai-api").StarMentor[] | undefined;
|
|
6326
|
+
isUninitialized: false;
|
|
6327
|
+
isLoading: false;
|
|
6328
|
+
isFetching: false;
|
|
6329
|
+
isSuccess: false;
|
|
6330
|
+
isError: false;
|
|
6331
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
6332
|
+
isSuccess: true;
|
|
6333
|
+
isFetching: false;
|
|
6334
|
+
error: undefined;
|
|
6335
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
6336
|
+
org: string;
|
|
6337
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
6338
|
+
attempt?: number;
|
|
6339
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").StarMentor[], "mentorApiSlice", any>> & {
|
|
6340
|
+
currentData?: import("@iblai/iblai-api").StarMentor[] | undefined;
|
|
6341
|
+
isUninitialized: false;
|
|
6342
|
+
isLoading: false;
|
|
6343
|
+
isFetching: false;
|
|
6344
|
+
isSuccess: false;
|
|
6345
|
+
isError: false;
|
|
6346
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
6347
|
+
isError: true;
|
|
6348
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
6349
|
+
org: string;
|
|
6350
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
6351
|
+
attempt?: number;
|
|
6352
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").StarMentor[], "mentorApiSlice", any>> & {
|
|
6353
|
+
currentData?: import("@iblai/iblai-api").StarMentor[] | undefined;
|
|
6354
|
+
isUninitialized: false;
|
|
6355
|
+
isLoading: false;
|
|
6356
|
+
isFetching: false;
|
|
6357
|
+
isSuccess: false;
|
|
6358
|
+
isError: false;
|
|
6359
|
+
}, "error">>)>> & {
|
|
6360
|
+
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
6361
|
+
}>(arg: {
|
|
6362
|
+
org: string;
|
|
6363
|
+
} | typeof import("@reduxjs/toolkit/query").skipToken, options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & {
|
|
6364
|
+
skip?: boolean;
|
|
6365
|
+
refetchOnMountOrArgChange?: boolean | number;
|
|
6366
|
+
} & {
|
|
6367
|
+
skip?: boolean;
|
|
6368
|
+
selectFromResult?: ((state: import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
6369
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
6370
|
+
originalArgs?: undefined | undefined;
|
|
6371
|
+
data?: undefined | undefined;
|
|
6372
|
+
error?: undefined | undefined;
|
|
6373
|
+
requestId?: undefined | undefined;
|
|
6374
|
+
endpointName?: string | undefined;
|
|
6375
|
+
startedTimeStamp?: undefined | undefined;
|
|
6376
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
6377
|
+
} & {
|
|
6378
|
+
currentData?: import("@iblai/iblai-api").StarMentor[] | undefined;
|
|
6379
|
+
isUninitialized: false;
|
|
6380
|
+
isLoading: false;
|
|
6381
|
+
isFetching: false;
|
|
6382
|
+
isSuccess: false;
|
|
6383
|
+
isError: false;
|
|
6384
|
+
}, "isUninitialized"> & {
|
|
6385
|
+
isUninitialized: true;
|
|
6386
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
6387
|
+
org: string;
|
|
6388
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
6389
|
+
attempt?: number;
|
|
6390
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").StarMentor[], "mentorApiSlice", any>> & {
|
|
6391
|
+
currentData?: import("@iblai/iblai-api").StarMentor[] | undefined;
|
|
6392
|
+
isUninitialized: false;
|
|
6393
|
+
isLoading: false;
|
|
6394
|
+
isFetching: false;
|
|
6395
|
+
isSuccess: false;
|
|
6396
|
+
isError: false;
|
|
6397
|
+
}, {
|
|
6398
|
+
isLoading: true;
|
|
6399
|
+
isFetching: boolean;
|
|
6400
|
+
data: undefined;
|
|
6401
|
+
} | ({
|
|
6402
|
+
isSuccess: true;
|
|
6403
|
+
isFetching: true;
|
|
6404
|
+
error: undefined;
|
|
6405
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
6406
|
+
org: string;
|
|
6407
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
6408
|
+
attempt?: number;
|
|
6409
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").StarMentor[], "mentorApiSlice", any>> & {
|
|
6410
|
+
currentData?: import("@iblai/iblai-api").StarMentor[] | undefined;
|
|
6411
|
+
isUninitialized: false;
|
|
6412
|
+
isLoading: false;
|
|
6413
|
+
isFetching: false;
|
|
6414
|
+
isSuccess: false;
|
|
6415
|
+
isError: false;
|
|
6416
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
6417
|
+
isSuccess: true;
|
|
6418
|
+
isFetching: false;
|
|
6419
|
+
error: undefined;
|
|
6420
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
6421
|
+
org: string;
|
|
6422
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
6423
|
+
attempt?: number;
|
|
6424
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").StarMentor[], "mentorApiSlice", any>> & {
|
|
6425
|
+
currentData?: import("@iblai/iblai-api").StarMentor[] | undefined;
|
|
6426
|
+
isUninitialized: false;
|
|
6427
|
+
isLoading: false;
|
|
6428
|
+
isFetching: false;
|
|
6429
|
+
isSuccess: false;
|
|
6430
|
+
isError: false;
|
|
6431
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
6432
|
+
isError: true;
|
|
6433
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
6434
|
+
org: string;
|
|
6435
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
6436
|
+
attempt?: number;
|
|
6437
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").StarMentor[], "mentorApiSlice", any>> & {
|
|
6438
|
+
currentData?: import("@iblai/iblai-api").StarMentor[] | undefined;
|
|
6439
|
+
isUninitialized: false;
|
|
6440
|
+
isLoading: false;
|
|
6441
|
+
isFetching: false;
|
|
6442
|
+
isSuccess: false;
|
|
6443
|
+
isError: false;
|
|
6444
|
+
}, "error">>)>> & {
|
|
6445
|
+
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
6446
|
+
}) => R) | undefined;
|
|
6447
|
+
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
6448
|
+
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
6449
|
+
org: string;
|
|
6450
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
6451
|
+
attempt?: number;
|
|
6452
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").StarMentor[], "mentorApiSlice", any>>;
|
|
6453
|
+
}, useLazyStarredMentorsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
6454
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
6455
|
+
originalArgs?: undefined | undefined;
|
|
6456
|
+
data?: undefined | undefined;
|
|
6457
|
+
error?: undefined | undefined;
|
|
6458
|
+
requestId?: undefined | undefined;
|
|
6459
|
+
endpointName?: string | undefined;
|
|
6460
|
+
startedTimeStamp?: undefined | undefined;
|
|
6461
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
6462
|
+
} & {
|
|
6463
|
+
currentData?: import("@iblai/iblai-api").StarMentor[] | undefined;
|
|
6464
|
+
isUninitialized: false;
|
|
6465
|
+
isLoading: false;
|
|
6466
|
+
isFetching: false;
|
|
6467
|
+
isSuccess: false;
|
|
6468
|
+
isError: false;
|
|
6469
|
+
}, "isUninitialized"> & {
|
|
6470
|
+
isUninitialized: true;
|
|
6471
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
6472
|
+
org: string;
|
|
6473
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
6474
|
+
attempt?: number;
|
|
6475
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").StarMentor[], "mentorApiSlice", any>> & {
|
|
6476
|
+
currentData?: import("@iblai/iblai-api").StarMentor[] | undefined;
|
|
6477
|
+
isUninitialized: false;
|
|
6478
|
+
isLoading: false;
|
|
6479
|
+
isFetching: false;
|
|
6480
|
+
isSuccess: false;
|
|
6481
|
+
isError: false;
|
|
6482
|
+
}, {
|
|
6483
|
+
isLoading: true;
|
|
6484
|
+
isFetching: boolean;
|
|
6485
|
+
data: undefined;
|
|
6486
|
+
} | ({
|
|
6487
|
+
isSuccess: true;
|
|
6488
|
+
isFetching: true;
|
|
6489
|
+
error: undefined;
|
|
6490
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
6491
|
+
org: string;
|
|
6492
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
6493
|
+
attempt?: number;
|
|
6494
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").StarMentor[], "mentorApiSlice", any>> & {
|
|
6495
|
+
currentData?: import("@iblai/iblai-api").StarMentor[] | undefined;
|
|
6496
|
+
isUninitialized: false;
|
|
6497
|
+
isLoading: false;
|
|
6498
|
+
isFetching: false;
|
|
6499
|
+
isSuccess: false;
|
|
6500
|
+
isError: false;
|
|
6501
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
6502
|
+
isSuccess: true;
|
|
6503
|
+
isFetching: false;
|
|
6504
|
+
error: undefined;
|
|
6505
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
6506
|
+
org: string;
|
|
6507
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
6508
|
+
attempt?: number;
|
|
6509
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").StarMentor[], "mentorApiSlice", any>> & {
|
|
6510
|
+
currentData?: import("@iblai/iblai-api").StarMentor[] | undefined;
|
|
6511
|
+
isUninitialized: false;
|
|
6512
|
+
isLoading: false;
|
|
6513
|
+
isFetching: false;
|
|
6514
|
+
isSuccess: false;
|
|
6515
|
+
isError: false;
|
|
6516
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
6517
|
+
isError: true;
|
|
6518
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
6519
|
+
org: string;
|
|
6520
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
6521
|
+
attempt?: number;
|
|
6522
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").StarMentor[], "mentorApiSlice", any>> & {
|
|
6523
|
+
currentData?: import("@iblai/iblai-api").StarMentor[] | undefined;
|
|
6524
|
+
isUninitialized: false;
|
|
6525
|
+
isLoading: false;
|
|
6526
|
+
isFetching: false;
|
|
6527
|
+
isSuccess: false;
|
|
6528
|
+
isError: false;
|
|
6529
|
+
}, "error">>)>> & {
|
|
6530
|
+
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
6531
|
+
}>(options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & Omit<{
|
|
6532
|
+
skip?: boolean;
|
|
6533
|
+
selectFromResult?: ((state: import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
6534
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
6535
|
+
originalArgs?: undefined | undefined;
|
|
6536
|
+
data?: undefined | undefined;
|
|
6537
|
+
error?: undefined | undefined;
|
|
6538
|
+
requestId?: undefined | undefined;
|
|
6539
|
+
endpointName?: string | undefined;
|
|
6540
|
+
startedTimeStamp?: undefined | undefined;
|
|
6541
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
6542
|
+
} & {
|
|
6543
|
+
currentData?: import("@iblai/iblai-api").StarMentor[] | undefined;
|
|
6544
|
+
isUninitialized: false;
|
|
6545
|
+
isLoading: false;
|
|
6546
|
+
isFetching: false;
|
|
6547
|
+
isSuccess: false;
|
|
6548
|
+
isError: false;
|
|
6549
|
+
}, "isUninitialized"> & {
|
|
6550
|
+
isUninitialized: true;
|
|
6551
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
6552
|
+
org: string;
|
|
6553
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
6554
|
+
attempt?: number;
|
|
6555
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").StarMentor[], "mentorApiSlice", any>> & {
|
|
6556
|
+
currentData?: import("@iblai/iblai-api").StarMentor[] | undefined;
|
|
6557
|
+
isUninitialized: false;
|
|
6558
|
+
isLoading: false;
|
|
6559
|
+
isFetching: false;
|
|
6560
|
+
isSuccess: false;
|
|
6561
|
+
isError: false;
|
|
6562
|
+
}, {
|
|
6563
|
+
isLoading: true;
|
|
6564
|
+
isFetching: boolean;
|
|
6565
|
+
data: undefined;
|
|
6566
|
+
} | ({
|
|
6567
|
+
isSuccess: true;
|
|
6568
|
+
isFetching: true;
|
|
6569
|
+
error: undefined;
|
|
6570
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
6571
|
+
org: string;
|
|
6572
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
6573
|
+
attempt?: number;
|
|
6574
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").StarMentor[], "mentorApiSlice", any>> & {
|
|
6575
|
+
currentData?: import("@iblai/iblai-api").StarMentor[] | undefined;
|
|
6576
|
+
isUninitialized: false;
|
|
6577
|
+
isLoading: false;
|
|
6578
|
+
isFetching: false;
|
|
6579
|
+
isSuccess: false;
|
|
6580
|
+
isError: false;
|
|
6581
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
6582
|
+
isSuccess: true;
|
|
6583
|
+
isFetching: false;
|
|
6584
|
+
error: undefined;
|
|
6585
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
6586
|
+
org: string;
|
|
6587
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
6588
|
+
attempt?: number;
|
|
6589
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").StarMentor[], "mentorApiSlice", any>> & {
|
|
6590
|
+
currentData?: import("@iblai/iblai-api").StarMentor[] | undefined;
|
|
6591
|
+
isUninitialized: false;
|
|
6592
|
+
isLoading: false;
|
|
6593
|
+
isFetching: false;
|
|
6594
|
+
isSuccess: false;
|
|
6595
|
+
isError: false;
|
|
6596
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
6597
|
+
isError: true;
|
|
6598
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
6599
|
+
org: string;
|
|
6600
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
6601
|
+
attempt?: number;
|
|
6602
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").StarMentor[], "mentorApiSlice", any>> & {
|
|
6603
|
+
currentData?: import("@iblai/iblai-api").StarMentor[] | undefined;
|
|
6604
|
+
isUninitialized: false;
|
|
6605
|
+
isLoading: false;
|
|
6606
|
+
isFetching: false;
|
|
6607
|
+
isSuccess: false;
|
|
6608
|
+
isError: false;
|
|
6609
|
+
}, "error">>)>> & {
|
|
6610
|
+
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
6611
|
+
}) => R) | undefined;
|
|
6612
|
+
}, "skip">) | undefined) => [(arg: {
|
|
6613
|
+
org: string;
|
|
6614
|
+
}, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
6615
|
+
org: string;
|
|
6616
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
6617
|
+
attempt?: number;
|
|
6618
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").StarMentor[], "mentorApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
6619
|
+
reset: () => void;
|
|
6620
|
+
}, {
|
|
6621
|
+
lastArg: {
|
|
6622
|
+
org: string;
|
|
6623
|
+
};
|
|
6624
|
+
}], useUpdateChatSessionMutation: <R extends Record<string, any> = ({
|
|
6625
|
+
requestId?: undefined;
|
|
6626
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
6627
|
+
data?: undefined;
|
|
6628
|
+
error?: undefined;
|
|
6629
|
+
endpointName?: string;
|
|
6630
|
+
startedTimeStamp?: undefined;
|
|
6631
|
+
fulfilledTimeStamp?: undefined;
|
|
6632
|
+
} & {
|
|
6633
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
6634
|
+
isUninitialized: true;
|
|
6635
|
+
isLoading: false;
|
|
6636
|
+
isSuccess: false;
|
|
6637
|
+
isError: false;
|
|
6638
|
+
}) | ({
|
|
6639
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
6640
|
+
} & Omit<{
|
|
6641
|
+
requestId: string;
|
|
6642
|
+
data?: import("@iblai/iblai-api").MessageViewUpdatResponse | undefined;
|
|
6643
|
+
error?: unknown;
|
|
6644
|
+
endpointName: string;
|
|
6645
|
+
startedTimeStamp: number;
|
|
6646
|
+
fulfilledTimeStamp?: number;
|
|
6647
|
+
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
6648
|
+
requestId: string;
|
|
6649
|
+
data?: import("@iblai/iblai-api").MessageViewUpdatResponse | undefined;
|
|
6650
|
+
error?: unknown;
|
|
6651
|
+
endpointName: string;
|
|
6652
|
+
startedTimeStamp: number;
|
|
6653
|
+
fulfilledTimeStamp?: number;
|
|
6654
|
+
}, "data" | "fulfilledTimeStamp">> & {
|
|
6655
|
+
error: undefined;
|
|
6656
|
+
} & {
|
|
6657
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
6658
|
+
isUninitialized: false;
|
|
6659
|
+
isLoading: false;
|
|
6660
|
+
isSuccess: true;
|
|
6661
|
+
isError: false;
|
|
6662
|
+
}) | ({
|
|
6663
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
6664
|
+
} & {
|
|
6665
|
+
requestId: string;
|
|
6666
|
+
data?: import("@iblai/iblai-api").MessageViewUpdatResponse | undefined;
|
|
6667
|
+
error?: unknown;
|
|
6668
|
+
endpointName: string;
|
|
6669
|
+
startedTimeStamp: number;
|
|
6670
|
+
fulfilledTimeStamp?: number;
|
|
6671
|
+
} & {
|
|
6672
|
+
data?: undefined;
|
|
6673
|
+
} & {
|
|
6674
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
6675
|
+
isUninitialized: false;
|
|
6676
|
+
isLoading: true;
|
|
6677
|
+
isSuccess: false;
|
|
6678
|
+
isError: false;
|
|
6679
|
+
}) | ({
|
|
6680
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
6681
|
+
} & Omit<{
|
|
6682
|
+
requestId: string;
|
|
6683
|
+
data?: import("@iblai/iblai-api").MessageViewUpdatResponse | undefined;
|
|
6684
|
+
error?: unknown;
|
|
6685
|
+
endpointName: string;
|
|
6686
|
+
startedTimeStamp: number;
|
|
6687
|
+
fulfilledTimeStamp?: number;
|
|
6688
|
+
}, "error"> & Required<Pick<{
|
|
6689
|
+
requestId: string;
|
|
6690
|
+
data?: import("@iblai/iblai-api").MessageViewUpdatResponse | undefined;
|
|
6691
|
+
error?: unknown;
|
|
6692
|
+
endpointName: string;
|
|
6693
|
+
startedTimeStamp: number;
|
|
6694
|
+
fulfilledTimeStamp?: number;
|
|
6695
|
+
}, "error">> & {
|
|
6696
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
6697
|
+
isUninitialized: false;
|
|
6698
|
+
isLoading: false;
|
|
6699
|
+
isSuccess: false;
|
|
6700
|
+
isError: true;
|
|
6701
|
+
})>(options?: {
|
|
6702
|
+
selectFromResult?: ((state: ({
|
|
6703
|
+
requestId?: undefined;
|
|
6704
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
6705
|
+
data?: undefined;
|
|
6706
|
+
error?: undefined;
|
|
6707
|
+
endpointName?: string;
|
|
6708
|
+
startedTimeStamp?: undefined;
|
|
6709
|
+
fulfilledTimeStamp?: undefined;
|
|
6710
|
+
} & {
|
|
6711
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
6712
|
+
isUninitialized: true;
|
|
6713
|
+
isLoading: false;
|
|
6714
|
+
isSuccess: false;
|
|
6715
|
+
isError: false;
|
|
6716
|
+
}) | ({
|
|
6717
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
6718
|
+
} & Omit<{
|
|
6719
|
+
requestId: string;
|
|
6720
|
+
data?: import("@iblai/iblai-api").MessageViewUpdatResponse | undefined;
|
|
6721
|
+
error?: unknown;
|
|
6722
|
+
endpointName: string;
|
|
6723
|
+
startedTimeStamp: number;
|
|
6724
|
+
fulfilledTimeStamp?: number;
|
|
6725
|
+
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
6726
|
+
requestId: string;
|
|
6727
|
+
data?: import("@iblai/iblai-api").MessageViewUpdatResponse | undefined;
|
|
6728
|
+
error?: unknown;
|
|
6729
|
+
endpointName: string;
|
|
6730
|
+
startedTimeStamp: number;
|
|
6731
|
+
fulfilledTimeStamp?: number;
|
|
6732
|
+
}, "data" | "fulfilledTimeStamp">> & {
|
|
6733
|
+
error: undefined;
|
|
6734
|
+
} & {
|
|
6735
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
6736
|
+
isUninitialized: false;
|
|
6737
|
+
isLoading: false;
|
|
6738
|
+
isSuccess: true;
|
|
6739
|
+
isError: false;
|
|
6740
|
+
}) | ({
|
|
6741
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
6742
|
+
} & {
|
|
6743
|
+
requestId: string;
|
|
6744
|
+
data?: import("@iblai/iblai-api").MessageViewUpdatResponse | undefined;
|
|
6745
|
+
error?: unknown;
|
|
6746
|
+
endpointName: string;
|
|
6747
|
+
startedTimeStamp: number;
|
|
6748
|
+
fulfilledTimeStamp?: number;
|
|
6749
|
+
} & {
|
|
6750
|
+
data?: undefined;
|
|
6751
|
+
} & {
|
|
6752
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
6753
|
+
isUninitialized: false;
|
|
6754
|
+
isLoading: true;
|
|
6755
|
+
isSuccess: false;
|
|
6756
|
+
isError: false;
|
|
6757
|
+
}) | ({
|
|
6758
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
6759
|
+
} & Omit<{
|
|
6760
|
+
requestId: string;
|
|
6761
|
+
data?: import("@iblai/iblai-api").MessageViewUpdatResponse | undefined;
|
|
6762
|
+
error?: unknown;
|
|
6763
|
+
endpointName: string;
|
|
6764
|
+
startedTimeStamp: number;
|
|
6765
|
+
fulfilledTimeStamp?: number;
|
|
6766
|
+
}, "error"> & Required<Pick<{
|
|
6767
|
+
requestId: string;
|
|
6768
|
+
data?: import("@iblai/iblai-api").MessageViewUpdatResponse | undefined;
|
|
6769
|
+
error?: unknown;
|
|
6770
|
+
endpointName: string;
|
|
6771
|
+
startedTimeStamp: number;
|
|
6772
|
+
fulfilledTimeStamp?: number;
|
|
6773
|
+
}, "error">> & {
|
|
6774
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
6775
|
+
isUninitialized: false;
|
|
6776
|
+
isLoading: false;
|
|
6777
|
+
isSuccess: false;
|
|
6778
|
+
isError: true;
|
|
6779
|
+
})) => R) | undefined;
|
|
6780
|
+
fixedCacheKey?: string;
|
|
6781
|
+
} | undefined) => readonly [(arg: {
|
|
6782
|
+
org: string;
|
|
6783
|
+
sessionId: string;
|
|
6784
|
+
requestBody?: import("@iblai/iblai-api").MessageViewRequest;
|
|
6785
|
+
}) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
6786
|
+
org: string;
|
|
6787
|
+
sessionId: string;
|
|
6788
|
+
requestBody?: import("@iblai/iblai-api").MessageViewRequest;
|
|
6789
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
6790
|
+
attempt?: number;
|
|
6791
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MessageViewUpdatResponse, "mentorApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
6792
|
+
originalArgs?: {
|
|
6793
|
+
org: string;
|
|
6794
|
+
sessionId: string;
|
|
6795
|
+
requestBody?: import("@iblai/iblai-api").MessageViewRequest;
|
|
6796
|
+
} | undefined;
|
|
6797
|
+
reset: () => void;
|
|
6798
|
+
}], useGetChatMessagesForSessionQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
5324
6799
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
5325
6800
|
originalArgs?: undefined | undefined;
|
|
5326
6801
|
data?: undefined | undefined;
|
|
@@ -5330,7 +6805,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
5330
6805
|
startedTimeStamp?: undefined | undefined;
|
|
5331
6806
|
fulfilledTimeStamp?: undefined | undefined;
|
|
5332
6807
|
} & {
|
|
5333
|
-
currentData?: import("@iblai/iblai-api").
|
|
6808
|
+
currentData?: import("@iblai/iblai-api").MessageView | undefined;
|
|
5334
6809
|
isUninitialized: false;
|
|
5335
6810
|
isLoading: false;
|
|
5336
6811
|
isFetching: false;
|
|
@@ -5340,16 +6815,11 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
5340
6815
|
isUninitialized: true;
|
|
5341
6816
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5342
6817
|
org: string;
|
|
5343
|
-
|
|
5344
|
-
|
|
5345
|
-
|
|
5346
|
-
|
|
5347
|
-
|
|
5348
|
-
search?: string;
|
|
5349
|
-
targetSystem?: "Moderation System" | "Safety System";
|
|
5350
|
-
username?: string;
|
|
5351
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").PaginatedModerationLogList, "mentorApiSlice", any>> & {
|
|
5352
|
-
currentData?: import("@iblai/iblai-api").PaginatedModerationLogList | undefined;
|
|
6818
|
+
sessionId: string;
|
|
6819
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
6820
|
+
attempt?: number;
|
|
6821
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MessageView, "mentorApiSlice", any>> & {
|
|
6822
|
+
currentData?: import("@iblai/iblai-api").MessageView | undefined;
|
|
5353
6823
|
isUninitialized: false;
|
|
5354
6824
|
isLoading: false;
|
|
5355
6825
|
isFetching: false;
|
|
@@ -5365,16 +6835,11 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
5365
6835
|
error: undefined;
|
|
5366
6836
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5367
6837
|
org: string;
|
|
5368
|
-
|
|
5369
|
-
|
|
5370
|
-
|
|
5371
|
-
|
|
5372
|
-
|
|
5373
|
-
search?: string;
|
|
5374
|
-
targetSystem?: "Moderation System" | "Safety System";
|
|
5375
|
-
username?: string;
|
|
5376
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").PaginatedModerationLogList, "mentorApiSlice", any>> & {
|
|
5377
|
-
currentData?: import("@iblai/iblai-api").PaginatedModerationLogList | undefined;
|
|
6838
|
+
sessionId: string;
|
|
6839
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
6840
|
+
attempt?: number;
|
|
6841
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MessageView, "mentorApiSlice", any>> & {
|
|
6842
|
+
currentData?: import("@iblai/iblai-api").MessageView | undefined;
|
|
5378
6843
|
isUninitialized: false;
|
|
5379
6844
|
isLoading: false;
|
|
5380
6845
|
isFetching: false;
|
|
@@ -5386,16 +6851,11 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
5386
6851
|
error: undefined;
|
|
5387
6852
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5388
6853
|
org: string;
|
|
5389
|
-
|
|
5390
|
-
|
|
5391
|
-
|
|
5392
|
-
|
|
5393
|
-
|
|
5394
|
-
search?: string;
|
|
5395
|
-
targetSystem?: "Moderation System" | "Safety System";
|
|
5396
|
-
username?: string;
|
|
5397
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").PaginatedModerationLogList, "mentorApiSlice", any>> & {
|
|
5398
|
-
currentData?: import("@iblai/iblai-api").PaginatedModerationLogList | undefined;
|
|
6854
|
+
sessionId: string;
|
|
6855
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
6856
|
+
attempt?: number;
|
|
6857
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MessageView, "mentorApiSlice", any>> & {
|
|
6858
|
+
currentData?: import("@iblai/iblai-api").MessageView | undefined;
|
|
5399
6859
|
isUninitialized: false;
|
|
5400
6860
|
isLoading: false;
|
|
5401
6861
|
isFetching: false;
|
|
@@ -5405,16 +6865,11 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
5405
6865
|
isError: true;
|
|
5406
6866
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5407
6867
|
org: string;
|
|
5408
|
-
|
|
5409
|
-
|
|
5410
|
-
|
|
5411
|
-
|
|
5412
|
-
|
|
5413
|
-
search?: string;
|
|
5414
|
-
targetSystem?: "Moderation System" | "Safety System";
|
|
5415
|
-
username?: string;
|
|
5416
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").PaginatedModerationLogList, "mentorApiSlice", any>> & {
|
|
5417
|
-
currentData?: import("@iblai/iblai-api").PaginatedModerationLogList | undefined;
|
|
6868
|
+
sessionId: string;
|
|
6869
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
6870
|
+
attempt?: number;
|
|
6871
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MessageView, "mentorApiSlice", any>> & {
|
|
6872
|
+
currentData?: import("@iblai/iblai-api").MessageView | undefined;
|
|
5418
6873
|
isUninitialized: false;
|
|
5419
6874
|
isLoading: false;
|
|
5420
6875
|
isFetching: false;
|
|
@@ -5424,14 +6879,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
5424
6879
|
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
5425
6880
|
}>(arg: {
|
|
5426
6881
|
org: string;
|
|
5427
|
-
|
|
5428
|
-
ordering?: string;
|
|
5429
|
-
page?: number;
|
|
5430
|
-
pageSize?: number;
|
|
5431
|
-
platformKey?: string;
|
|
5432
|
-
search?: string;
|
|
5433
|
-
targetSystem?: "Moderation System" | "Safety System";
|
|
5434
|
-
username?: string;
|
|
6882
|
+
sessionId: string;
|
|
5435
6883
|
} | typeof import("@reduxjs/toolkit/query").skipToken, options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & {
|
|
5436
6884
|
skip?: boolean;
|
|
5437
6885
|
refetchOnMountOrArgChange?: boolean | number;
|
|
@@ -5447,7 +6895,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
5447
6895
|
startedTimeStamp?: undefined | undefined;
|
|
5448
6896
|
fulfilledTimeStamp?: undefined | undefined;
|
|
5449
6897
|
} & {
|
|
5450
|
-
currentData?: import("@iblai/iblai-api").
|
|
6898
|
+
currentData?: import("@iblai/iblai-api").MessageView | undefined;
|
|
5451
6899
|
isUninitialized: false;
|
|
5452
6900
|
isLoading: false;
|
|
5453
6901
|
isFetching: false;
|
|
@@ -5457,16 +6905,11 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
5457
6905
|
isUninitialized: true;
|
|
5458
6906
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5459
6907
|
org: string;
|
|
5460
|
-
|
|
5461
|
-
|
|
5462
|
-
|
|
5463
|
-
|
|
5464
|
-
|
|
5465
|
-
search?: string;
|
|
5466
|
-
targetSystem?: "Moderation System" | "Safety System";
|
|
5467
|
-
username?: string;
|
|
5468
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").PaginatedModerationLogList, "mentorApiSlice", any>> & {
|
|
5469
|
-
currentData?: import("@iblai/iblai-api").PaginatedModerationLogList | undefined;
|
|
6908
|
+
sessionId: string;
|
|
6909
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
6910
|
+
attempt?: number;
|
|
6911
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MessageView, "mentorApiSlice", any>> & {
|
|
6912
|
+
currentData?: import("@iblai/iblai-api").MessageView | undefined;
|
|
5470
6913
|
isUninitialized: false;
|
|
5471
6914
|
isLoading: false;
|
|
5472
6915
|
isFetching: false;
|
|
@@ -5482,16 +6925,11 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
5482
6925
|
error: undefined;
|
|
5483
6926
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5484
6927
|
org: string;
|
|
5485
|
-
|
|
5486
|
-
|
|
5487
|
-
|
|
5488
|
-
|
|
5489
|
-
|
|
5490
|
-
search?: string;
|
|
5491
|
-
targetSystem?: "Moderation System" | "Safety System";
|
|
5492
|
-
username?: string;
|
|
5493
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").PaginatedModerationLogList, "mentorApiSlice", any>> & {
|
|
5494
|
-
currentData?: import("@iblai/iblai-api").PaginatedModerationLogList | undefined;
|
|
6928
|
+
sessionId: string;
|
|
6929
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
6930
|
+
attempt?: number;
|
|
6931
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MessageView, "mentorApiSlice", any>> & {
|
|
6932
|
+
currentData?: import("@iblai/iblai-api").MessageView | undefined;
|
|
5495
6933
|
isUninitialized: false;
|
|
5496
6934
|
isLoading: false;
|
|
5497
6935
|
isFetching: false;
|
|
@@ -5503,16 +6941,11 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
5503
6941
|
error: undefined;
|
|
5504
6942
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5505
6943
|
org: string;
|
|
5506
|
-
|
|
5507
|
-
|
|
5508
|
-
|
|
5509
|
-
|
|
5510
|
-
|
|
5511
|
-
search?: string;
|
|
5512
|
-
targetSystem?: "Moderation System" | "Safety System";
|
|
5513
|
-
username?: string;
|
|
5514
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").PaginatedModerationLogList, "mentorApiSlice", any>> & {
|
|
5515
|
-
currentData?: import("@iblai/iblai-api").PaginatedModerationLogList | undefined;
|
|
6944
|
+
sessionId: string;
|
|
6945
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
6946
|
+
attempt?: number;
|
|
6947
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MessageView, "mentorApiSlice", any>> & {
|
|
6948
|
+
currentData?: import("@iblai/iblai-api").MessageView | undefined;
|
|
5516
6949
|
isUninitialized: false;
|
|
5517
6950
|
isLoading: false;
|
|
5518
6951
|
isFetching: false;
|
|
@@ -5522,16 +6955,11 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
5522
6955
|
isError: true;
|
|
5523
6956
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5524
6957
|
org: string;
|
|
5525
|
-
|
|
5526
|
-
|
|
5527
|
-
|
|
5528
|
-
|
|
5529
|
-
|
|
5530
|
-
search?: string;
|
|
5531
|
-
targetSystem?: "Moderation System" | "Safety System";
|
|
5532
|
-
username?: string;
|
|
5533
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").PaginatedModerationLogList, "mentorApiSlice", any>> & {
|
|
5534
|
-
currentData?: import("@iblai/iblai-api").PaginatedModerationLogList | undefined;
|
|
6958
|
+
sessionId: string;
|
|
6959
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
6960
|
+
attempt?: number;
|
|
6961
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MessageView, "mentorApiSlice", any>> & {
|
|
6962
|
+
currentData?: import("@iblai/iblai-api").MessageView | undefined;
|
|
5535
6963
|
isUninitialized: false;
|
|
5536
6964
|
isLoading: false;
|
|
5537
6965
|
isFetching: false;
|
|
@@ -5543,16 +6971,11 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
5543
6971
|
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
5544
6972
|
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5545
6973
|
org: string;
|
|
5546
|
-
|
|
5547
|
-
|
|
5548
|
-
|
|
5549
|
-
|
|
5550
|
-
|
|
5551
|
-
search?: string;
|
|
5552
|
-
targetSystem?: "Moderation System" | "Safety System";
|
|
5553
|
-
username?: string;
|
|
5554
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").PaginatedModerationLogList, "mentorApiSlice", any>>;
|
|
5555
|
-
}, useLazyGetModerationLogsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
6974
|
+
sessionId: string;
|
|
6975
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
6976
|
+
attempt?: number;
|
|
6977
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MessageView, "mentorApiSlice", any>>;
|
|
6978
|
+
}, useLazyGetChatMessagesForSessionQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
5556
6979
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
5557
6980
|
originalArgs?: undefined | undefined;
|
|
5558
6981
|
data?: undefined | undefined;
|
|
@@ -5562,7 +6985,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
5562
6985
|
startedTimeStamp?: undefined | undefined;
|
|
5563
6986
|
fulfilledTimeStamp?: undefined | undefined;
|
|
5564
6987
|
} & {
|
|
5565
|
-
currentData?: import("@iblai/iblai-api").
|
|
6988
|
+
currentData?: import("@iblai/iblai-api").MessageView | undefined;
|
|
5566
6989
|
isUninitialized: false;
|
|
5567
6990
|
isLoading: false;
|
|
5568
6991
|
isFetching: false;
|
|
@@ -5572,16 +6995,11 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
5572
6995
|
isUninitialized: true;
|
|
5573
6996
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5574
6997
|
org: string;
|
|
5575
|
-
|
|
5576
|
-
|
|
5577
|
-
|
|
5578
|
-
|
|
5579
|
-
|
|
5580
|
-
search?: string;
|
|
5581
|
-
targetSystem?: "Moderation System" | "Safety System";
|
|
5582
|
-
username?: string;
|
|
5583
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").PaginatedModerationLogList, "mentorApiSlice", any>> & {
|
|
5584
|
-
currentData?: import("@iblai/iblai-api").PaginatedModerationLogList | undefined;
|
|
6998
|
+
sessionId: string;
|
|
6999
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
7000
|
+
attempt?: number;
|
|
7001
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MessageView, "mentorApiSlice", any>> & {
|
|
7002
|
+
currentData?: import("@iblai/iblai-api").MessageView | undefined;
|
|
5585
7003
|
isUninitialized: false;
|
|
5586
7004
|
isLoading: false;
|
|
5587
7005
|
isFetching: false;
|
|
@@ -5597,16 +7015,11 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
5597
7015
|
error: undefined;
|
|
5598
7016
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5599
7017
|
org: string;
|
|
5600
|
-
|
|
5601
|
-
|
|
5602
|
-
|
|
5603
|
-
|
|
5604
|
-
|
|
5605
|
-
search?: string;
|
|
5606
|
-
targetSystem?: "Moderation System" | "Safety System";
|
|
5607
|
-
username?: string;
|
|
5608
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").PaginatedModerationLogList, "mentorApiSlice", any>> & {
|
|
5609
|
-
currentData?: import("@iblai/iblai-api").PaginatedModerationLogList | undefined;
|
|
7018
|
+
sessionId: string;
|
|
7019
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
7020
|
+
attempt?: number;
|
|
7021
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MessageView, "mentorApiSlice", any>> & {
|
|
7022
|
+
currentData?: import("@iblai/iblai-api").MessageView | undefined;
|
|
5610
7023
|
isUninitialized: false;
|
|
5611
7024
|
isLoading: false;
|
|
5612
7025
|
isFetching: false;
|
|
@@ -5618,16 +7031,11 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
5618
7031
|
error: undefined;
|
|
5619
7032
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5620
7033
|
org: string;
|
|
5621
|
-
|
|
5622
|
-
|
|
5623
|
-
|
|
5624
|
-
|
|
5625
|
-
|
|
5626
|
-
search?: string;
|
|
5627
|
-
targetSystem?: "Moderation System" | "Safety System";
|
|
5628
|
-
username?: string;
|
|
5629
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").PaginatedModerationLogList, "mentorApiSlice", any>> & {
|
|
5630
|
-
currentData?: import("@iblai/iblai-api").PaginatedModerationLogList | undefined;
|
|
7034
|
+
sessionId: string;
|
|
7035
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
7036
|
+
attempt?: number;
|
|
7037
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MessageView, "mentorApiSlice", any>> & {
|
|
7038
|
+
currentData?: import("@iblai/iblai-api").MessageView | undefined;
|
|
5631
7039
|
isUninitialized: false;
|
|
5632
7040
|
isLoading: false;
|
|
5633
7041
|
isFetching: false;
|
|
@@ -5637,16 +7045,11 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
5637
7045
|
isError: true;
|
|
5638
7046
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5639
7047
|
org: string;
|
|
5640
|
-
|
|
5641
|
-
|
|
5642
|
-
|
|
5643
|
-
|
|
5644
|
-
|
|
5645
|
-
search?: string;
|
|
5646
|
-
targetSystem?: "Moderation System" | "Safety System";
|
|
5647
|
-
username?: string;
|
|
5648
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").PaginatedModerationLogList, "mentorApiSlice", any>> & {
|
|
5649
|
-
currentData?: import("@iblai/iblai-api").PaginatedModerationLogList | undefined;
|
|
7048
|
+
sessionId: string;
|
|
7049
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
7050
|
+
attempt?: number;
|
|
7051
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MessageView, "mentorApiSlice", any>> & {
|
|
7052
|
+
currentData?: import("@iblai/iblai-api").MessageView | undefined;
|
|
5650
7053
|
isUninitialized: false;
|
|
5651
7054
|
isLoading: false;
|
|
5652
7055
|
isFetching: false;
|
|
@@ -5666,7 +7069,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
5666
7069
|
startedTimeStamp?: undefined | undefined;
|
|
5667
7070
|
fulfilledTimeStamp?: undefined | undefined;
|
|
5668
7071
|
} & {
|
|
5669
|
-
currentData?: import("@iblai/iblai-api").
|
|
7072
|
+
currentData?: import("@iblai/iblai-api").MessageView | undefined;
|
|
5670
7073
|
isUninitialized: false;
|
|
5671
7074
|
isLoading: false;
|
|
5672
7075
|
isFetching: false;
|
|
@@ -5676,16 +7079,11 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
5676
7079
|
isUninitialized: true;
|
|
5677
7080
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5678
7081
|
org: string;
|
|
5679
|
-
|
|
5680
|
-
|
|
5681
|
-
|
|
5682
|
-
|
|
5683
|
-
|
|
5684
|
-
search?: string;
|
|
5685
|
-
targetSystem?: "Moderation System" | "Safety System";
|
|
5686
|
-
username?: string;
|
|
5687
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").PaginatedModerationLogList, "mentorApiSlice", any>> & {
|
|
5688
|
-
currentData?: import("@iblai/iblai-api").PaginatedModerationLogList | undefined;
|
|
7082
|
+
sessionId: string;
|
|
7083
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
7084
|
+
attempt?: number;
|
|
7085
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MessageView, "mentorApiSlice", any>> & {
|
|
7086
|
+
currentData?: import("@iblai/iblai-api").MessageView | undefined;
|
|
5689
7087
|
isUninitialized: false;
|
|
5690
7088
|
isLoading: false;
|
|
5691
7089
|
isFetching: false;
|
|
@@ -5701,16 +7099,11 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
5701
7099
|
error: undefined;
|
|
5702
7100
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5703
7101
|
org: string;
|
|
5704
|
-
|
|
5705
|
-
|
|
5706
|
-
|
|
5707
|
-
|
|
5708
|
-
|
|
5709
|
-
search?: string;
|
|
5710
|
-
targetSystem?: "Moderation System" | "Safety System";
|
|
5711
|
-
username?: string;
|
|
5712
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").PaginatedModerationLogList, "mentorApiSlice", any>> & {
|
|
5713
|
-
currentData?: import("@iblai/iblai-api").PaginatedModerationLogList | undefined;
|
|
7102
|
+
sessionId: string;
|
|
7103
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
7104
|
+
attempt?: number;
|
|
7105
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MessageView, "mentorApiSlice", any>> & {
|
|
7106
|
+
currentData?: import("@iblai/iblai-api").MessageView | undefined;
|
|
5714
7107
|
isUninitialized: false;
|
|
5715
7108
|
isLoading: false;
|
|
5716
7109
|
isFetching: false;
|
|
@@ -5722,16 +7115,11 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
5722
7115
|
error: undefined;
|
|
5723
7116
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5724
7117
|
org: string;
|
|
5725
|
-
|
|
5726
|
-
|
|
5727
|
-
|
|
5728
|
-
|
|
5729
|
-
|
|
5730
|
-
search?: string;
|
|
5731
|
-
targetSystem?: "Moderation System" | "Safety System";
|
|
5732
|
-
username?: string;
|
|
5733
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").PaginatedModerationLogList, "mentorApiSlice", any>> & {
|
|
5734
|
-
currentData?: import("@iblai/iblai-api").PaginatedModerationLogList | undefined;
|
|
7118
|
+
sessionId: string;
|
|
7119
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
7120
|
+
attempt?: number;
|
|
7121
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MessageView, "mentorApiSlice", any>> & {
|
|
7122
|
+
currentData?: import("@iblai/iblai-api").MessageView | undefined;
|
|
5735
7123
|
isUninitialized: false;
|
|
5736
7124
|
isLoading: false;
|
|
5737
7125
|
isFetching: false;
|
|
@@ -5741,16 +7129,11 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
5741
7129
|
isError: true;
|
|
5742
7130
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5743
7131
|
org: string;
|
|
5744
|
-
|
|
5745
|
-
|
|
5746
|
-
|
|
5747
|
-
|
|
5748
|
-
|
|
5749
|
-
search?: string;
|
|
5750
|
-
targetSystem?: "Moderation System" | "Safety System";
|
|
5751
|
-
username?: string;
|
|
5752
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").PaginatedModerationLogList, "mentorApiSlice", any>> & {
|
|
5753
|
-
currentData?: import("@iblai/iblai-api").PaginatedModerationLogList | undefined;
|
|
7132
|
+
sessionId: string;
|
|
7133
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
7134
|
+
attempt?: number;
|
|
7135
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MessageView, "mentorApiSlice", any>> & {
|
|
7136
|
+
currentData?: import("@iblai/iblai-api").MessageView | undefined;
|
|
5754
7137
|
isUninitialized: false;
|
|
5755
7138
|
isLoading: false;
|
|
5756
7139
|
isFetching: false;
|
|
@@ -5761,36 +7144,17 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
5761
7144
|
}) => R) | undefined;
|
|
5762
7145
|
}, "skip">) | undefined) => [(arg: {
|
|
5763
7146
|
org: string;
|
|
5764
|
-
|
|
5765
|
-
ordering?: string;
|
|
5766
|
-
page?: number;
|
|
5767
|
-
pageSize?: number;
|
|
5768
|
-
platformKey?: string;
|
|
5769
|
-
search?: string;
|
|
5770
|
-
targetSystem?: "Moderation System" | "Safety System";
|
|
5771
|
-
username?: string;
|
|
7147
|
+
sessionId: string;
|
|
5772
7148
|
}, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5773
7149
|
org: string;
|
|
5774
|
-
|
|
5775
|
-
|
|
5776
|
-
|
|
5777
|
-
|
|
5778
|
-
platformKey?: string;
|
|
5779
|
-
search?: string;
|
|
5780
|
-
targetSystem?: "Moderation System" | "Safety System";
|
|
5781
|
-
username?: string;
|
|
5782
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").PaginatedModerationLogList, "mentorApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
7150
|
+
sessionId: string;
|
|
7151
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
7152
|
+
attempt?: number;
|
|
7153
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("@iblai/iblai-api").MessageView, "mentorApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
5783
7154
|
reset: () => void;
|
|
5784
7155
|
}, {
|
|
5785
7156
|
lastArg: {
|
|
5786
7157
|
org: string;
|
|
5787
|
-
|
|
5788
|
-
ordering?: string;
|
|
5789
|
-
page?: number;
|
|
5790
|
-
pageSize?: number;
|
|
5791
|
-
platformKey?: string;
|
|
5792
|
-
search?: string;
|
|
5793
|
-
targetSystem?: "Moderation System" | "Safety System";
|
|
5794
|
-
username?: string;
|
|
7158
|
+
sessionId: string;
|
|
5795
7159
|
};
|
|
5796
7160
|
}];
|