@iblai/data-layer 0.0.5 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +39165 -23
- package/dist/index.esm.js +23976 -16565
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +24135 -16565
- package/dist/index.js.map +1 -1
- package/dist/package.json +82 -0
- package/dist/src/config.d.ts +2 -0
- package/dist/src/constants.d.ts +2 -3
- package/dist/src/features/analytics/api-slice.d.ts +1600 -0
- package/dist/src/features/analytics/constants.d.ts +66 -0
- package/dist/src/features/analytics/types.d.ts +100 -0
- package/dist/src/features/api-keys/api-slice.d.ts +104 -33
- package/dist/src/features/apps/api-slice.d.ts +683 -0
- package/dist/src/features/auth/api-slice.d.ts +137 -0
- package/dist/src/features/auth/constants.d.ts +8 -0
- package/dist/src/features/auth/types.d.ts +13 -0
- package/dist/src/features/billing/api-slice.d.ts +349 -0
- package/dist/{features/api-keys → src/features/career}/api-slice.d.ts +392 -299
- package/dist/src/features/catalog/api-slice.d.ts +6602 -1
- package/dist/src/features/chat/api-slice.d.ts +1566 -31
- package/dist/src/features/chat/chat-slice.d.ts +4 -7
- package/dist/src/features/chat-history/api-slice.d.ts +517 -243
- package/dist/src/features/core/api-slice.d.ts +493 -4
- package/dist/src/features/core/constants.d.ts +4 -0
- package/dist/src/features/credentials/api-slice.d.ts +1661 -63
- package/dist/src/features/credentials/constants.d.ts +28 -0
- package/dist/src/features/credentials/custom-api-slice.d.ts +1284 -0
- package/dist/src/features/credentials/types.d.ts +16 -0
- package/dist/src/features/datasets/api-slice.d.ts +351 -42
- package/dist/src/features/llms/api-slice.d.ts +88 -22
- package/dist/src/features/memory/api-slice.d.ts +1222 -0
- package/dist/src/features/mentor/api-slice.d.ts +2628 -146
- package/dist/src/features/mentor/constants.d.ts +31 -0
- package/dist/src/features/mentor/custom-api-slice.d.ts +268 -0
- package/dist/src/features/mentor/types.d.ts +38 -0
- package/dist/src/features/mentor-categories/api-slice.d.ts +66 -22
- package/dist/src/features/notifications/api-slice.d.ts +946 -0
- package/dist/src/features/per-learner/api-slice.d.ts +1213 -0
- package/dist/src/features/platform/api-slice.d.ts +769 -49
- package/dist/src/features/prompts/api-slice.d.ts +1334 -72
- package/dist/src/features/search/api-slice.d.ts +1939 -0
- package/dist/src/features/sessions/api-slice.d.ts +705 -0
- package/dist/src/features/skills/api-slice.d.ts +504 -64
- package/dist/src/features/stripe/api-slice.d.ts +620 -0
- package/dist/src/features/stripe/constants.d.ts +15 -0
- package/dist/src/features/stripe/types.d.ts +9 -0
- package/dist/src/features/tenant/api-slice.d.ts +268 -45
- package/dist/src/features/tenant/constants.d.ts +1 -1
- package/dist/src/features/tenant-logo/api-slice.d.ts +349 -0
- package/dist/src/features/tenant-logo/constants.d.ts +24 -0
- package/dist/src/features/tools/api-slice.d.ts +88 -22
- package/dist/src/features/training-documents/api-slice.d.ts +223 -51
- package/dist/src/features/user/api-slice.d.ts +1457 -22
- package/dist/src/features/user/constants.d.ts +30 -1
- package/dist/src/features/user/types.d.ts +65 -2
- package/dist/src/features/user-invitations/api-slice.d.ts +345 -55
- package/dist/src/features/utils.d.ts +25 -5
- package/dist/src/index.d.ts +24 -0
- package/dist/src/reducers/index.d.ts +1 -0
- package/dist/src/reducers/mentor.d.ts +2 -120
- package/dist/src/reducers/skills.d.ts +1128 -0
- package/dist/src/utils/index.d.ts +2 -2
- package/dist/tests/features/analytics/constants.test.d.ts +1 -0
- package/dist/tests/features/user/api-slice.test.d.ts +1 -0
- package/dist/tests/features/user/constants.test.d.ts +1 -0
- package/dist/tests/setupTests.d.ts +1 -0
- package/package.json +31 -25
- package/dist/config.d.ts +0 -5
- package/dist/constants.d.ts +0 -31
- package/dist/core/index.d.ts +0 -4
- package/dist/features/chat/api-slice.d.ts +0 -1278
- package/dist/features/chat/chat-slice.d.ts +0 -15
- package/dist/features/chat-history/api-slice.d.ts +0 -956
- package/dist/features/chat-history/constants.d.ts +0 -3
- package/dist/features/core/api-slice.d.ts +0 -164
- package/dist/features/credentials/api-slice.d.ts +0 -531
- package/dist/features/datasets/api-slice.d.ts +0 -267
- package/dist/features/index.d.ts +0 -1
- package/dist/features/llms/api-slice.d.ts +0 -267
- package/dist/features/mentor/api-slice.d.ts +0 -1816
- package/dist/features/mentor-categories/api-slice.d.ts +0 -267
- package/dist/features/platform/api-slice.d.ts +0 -735
- package/dist/features/prompts/api-slice.d.ts +0 -1014
- package/dist/features/skills/api-slice.d.ts +0 -795
- package/dist/features/tenant/api-slice.d.ts +0 -536
- package/dist/features/tenant/constants.d.ts +0 -11
- package/dist/features/tenant/types.d.ts +0 -18
- package/dist/features/tools/api-slice.d.ts +0 -267
- package/dist/features/training-documents/api-slice.d.ts +0 -750
- package/dist/features/user/api-slice.d.ts +0 -751
- package/dist/features/user/constants.d.ts +0 -19
- package/dist/features/user/types.d.ts +0 -64
- package/dist/features/user-invitations/api-slice.d.ts +0 -428
- package/dist/features/utils.d.ts +0 -46
- package/dist/node_modules/@iblai/iblai-api/src/core/ApiError.d.ts +0 -10
- package/dist/node_modules/@iblai/iblai-api/src/core/ApiRequestOptions.d.ts +0 -13
- package/dist/node_modules/@iblai/iblai-api/src/core/ApiResult.d.ts +0 -7
- package/dist/node_modules/@iblai/iblai-api/src/core/CancelablePromise.d.ts +0 -20
- package/dist/node_modules/@iblai/iblai-api/src/core/OpenAPI.d.ts +0 -16
- package/dist/node_modules/@iblai/iblai-api/src/core/request.d.ts +0 -30
- package/dist/reducers/index.d.ts +0 -1
- package/dist/reducers/mentor.d.ts +0 -135
- package/dist/services/StorageService.d.ts +0 -5
- package/dist/src/features/chat-history/constants.d.ts +0 -8
- package/dist/utils/index.d.ts +0 -2
- /package/dist/{features → src/features}/constants.d.ts +0 -0
- /package/dist/{features/catalog/api-slice.d.ts → tests/features/analytics/api-slice.test.d.ts} +0 -0
|
@@ -1,23 +1,179 @@
|
|
|
1
1
|
export declare const mentorApiSlice: import("@reduxjs/toolkit/query").Api<import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, {
|
|
2
|
-
createMentor: import("@reduxjs/toolkit/query").MutationDefinition<
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
2
|
+
createMentor: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
3
|
+
org: string;
|
|
4
|
+
formData: import("@iblai/iblai-api").MentorFromTemplateWithSettingRequest;
|
|
5
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>;
|
|
6
|
+
getMentors: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
7
|
+
org: string;
|
|
8
|
+
username: string;
|
|
9
|
+
audience?: Array<string>;
|
|
10
|
+
category?: Array<string>;
|
|
11
|
+
createdBy?: string;
|
|
12
|
+
featured?: boolean;
|
|
13
|
+
id?: number;
|
|
14
|
+
includeMainPublicMentors?: boolean;
|
|
15
|
+
limit?: number;
|
|
16
|
+
llm?: Array<string>;
|
|
17
|
+
offset?: number;
|
|
18
|
+
orderBy?: string;
|
|
19
|
+
orderDirection?: string;
|
|
20
|
+
query?: string;
|
|
21
|
+
tags?: Array<string>;
|
|
22
|
+
tenant?: string;
|
|
23
|
+
uniqueId?: string;
|
|
24
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>;
|
|
25
|
+
editMentor: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
26
|
+
mentor: string;
|
|
27
|
+
org: string;
|
|
28
|
+
departmentId?: number;
|
|
29
|
+
formData?: import("@iblai/iblai-api").MentorSettingsRequest;
|
|
30
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettings, "mentorApiSlice", any>;
|
|
31
|
+
seedMentors: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
32
|
+
org: string;
|
|
33
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").SeedMentorsView, "mentorApiSlice", any>;
|
|
34
|
+
getMentorDetails: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
35
|
+
mentor: string;
|
|
36
|
+
org: string;
|
|
37
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>;
|
|
38
|
+
getMentorSettings: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
39
|
+
mentor: string;
|
|
40
|
+
org: string;
|
|
41
|
+
departmentId?: number;
|
|
42
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>;
|
|
43
|
+
getMentorPublicSettings: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
44
|
+
mentor: string;
|
|
45
|
+
org: string;
|
|
46
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>;
|
|
47
|
+
updateMentorVisibilityStatus: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
48
|
+
mentor: string;
|
|
49
|
+
org: string;
|
|
50
|
+
departmentId?: number;
|
|
51
|
+
formData?: import("@iblai/iblai-api").MentorSettingsRequest;
|
|
52
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettings, "mentorApiSlice", any>;
|
|
53
|
+
getFreeUsageCount: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
54
|
+
org: string;
|
|
55
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").FreeUsageCount, "mentorApiSlice", any>;
|
|
56
|
+
createShareableLink: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
57
|
+
mentor: string;
|
|
58
|
+
org: string;
|
|
59
|
+
requestBody?: import("@iblai/iblai-api").ShareableMentorLink;
|
|
60
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>;
|
|
61
|
+
getShareableLink: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
62
|
+
mentor: string;
|
|
63
|
+
org: string;
|
|
64
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>;
|
|
65
|
+
getShareableLinkPublic: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
66
|
+
mentor: string;
|
|
67
|
+
org: string;
|
|
68
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>;
|
|
69
|
+
revokeShareableLink: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
70
|
+
mentor: string;
|
|
71
|
+
org: string;
|
|
72
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", void, "mentorApiSlice", any>;
|
|
73
|
+
updateShareableLink: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
74
|
+
mentor: string;
|
|
75
|
+
org: string;
|
|
76
|
+
requestBody?: import("@iblai/iblai-api").ShareableMentorLink;
|
|
77
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>;
|
|
78
|
+
deleteMentor: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
79
|
+
name: string;
|
|
80
|
+
org: string;
|
|
81
|
+
departmentId?: number;
|
|
82
|
+
filterBy?: string;
|
|
83
|
+
metadataKey?: string;
|
|
84
|
+
metadataValue?: string;
|
|
85
|
+
returnSessionInformation?: boolean;
|
|
86
|
+
visibility?: string;
|
|
87
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", void, "mentorApiSlice", any>;
|
|
88
|
+
}, "mentorApiSlice", "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", typeof import("@reduxjs/toolkit/query").coreModuleName | typeof import("@reduxjs/toolkit/dist/query/react").reactHooksModuleName>;
|
|
89
|
+
export declare const mentorApiReducer: import("@reduxjs/toolkit").Reducer<import("@reduxjs/toolkit/query").CombinedState<{
|
|
90
|
+
createMentor: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
91
|
+
org: string;
|
|
92
|
+
formData: import("@iblai/iblai-api").MentorFromTemplateWithSettingRequest;
|
|
93
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>;
|
|
94
|
+
getMentors: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
95
|
+
org: string;
|
|
96
|
+
username: string;
|
|
97
|
+
audience?: Array<string>;
|
|
98
|
+
category?: Array<string>;
|
|
99
|
+
createdBy?: string;
|
|
100
|
+
featured?: boolean;
|
|
101
|
+
id?: number;
|
|
102
|
+
includeMainPublicMentors?: boolean;
|
|
103
|
+
limit?: number;
|
|
104
|
+
llm?: Array<string>;
|
|
105
|
+
offset?: number;
|
|
106
|
+
orderBy?: string;
|
|
107
|
+
orderDirection?: string;
|
|
108
|
+
query?: string;
|
|
109
|
+
tags?: Array<string>;
|
|
110
|
+
tenant?: string;
|
|
111
|
+
uniqueId?: string;
|
|
112
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>;
|
|
113
|
+
editMentor: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
114
|
+
mentor: string;
|
|
115
|
+
org: string;
|
|
116
|
+
departmentId?: number;
|
|
117
|
+
formData?: import("@iblai/iblai-api").MentorSettingsRequest;
|
|
118
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettings, "mentorApiSlice", any>;
|
|
119
|
+
seedMentors: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
120
|
+
org: string;
|
|
121
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").SeedMentorsView, "mentorApiSlice", any>;
|
|
122
|
+
getMentorDetails: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
123
|
+
mentor: string;
|
|
124
|
+
org: string;
|
|
125
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>;
|
|
126
|
+
getMentorSettings: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
127
|
+
mentor: string;
|
|
128
|
+
org: string;
|
|
129
|
+
departmentId?: number;
|
|
130
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>;
|
|
131
|
+
getMentorPublicSettings: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
132
|
+
mentor: string;
|
|
133
|
+
org: string;
|
|
134
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>;
|
|
135
|
+
updateMentorVisibilityStatus: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
136
|
+
mentor: string;
|
|
137
|
+
org: string;
|
|
138
|
+
departmentId?: number;
|
|
139
|
+
formData?: import("@iblai/iblai-api").MentorSettingsRequest;
|
|
140
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettings, "mentorApiSlice", any>;
|
|
141
|
+
getFreeUsageCount: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
142
|
+
org: string;
|
|
143
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").FreeUsageCount, "mentorApiSlice", any>;
|
|
144
|
+
createShareableLink: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
145
|
+
mentor: string;
|
|
146
|
+
org: string;
|
|
147
|
+
requestBody?: import("@iblai/iblai-api").ShareableMentorLink;
|
|
148
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>;
|
|
149
|
+
getShareableLink: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
150
|
+
mentor: string;
|
|
151
|
+
org: string;
|
|
152
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>;
|
|
153
|
+
getShareableLinkPublic: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
154
|
+
mentor: string;
|
|
155
|
+
org: string;
|
|
156
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>;
|
|
157
|
+
revokeShareableLink: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
158
|
+
mentor: string;
|
|
159
|
+
org: string;
|
|
160
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", void, "mentorApiSlice", any>;
|
|
161
|
+
updateShareableLink: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
162
|
+
mentor: string;
|
|
163
|
+
org: string;
|
|
164
|
+
requestBody?: import("@iblai/iblai-api").ShareableMentorLink;
|
|
165
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>;
|
|
166
|
+
deleteMentor: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
167
|
+
name: string;
|
|
168
|
+
org: string;
|
|
169
|
+
departmentId?: number;
|
|
170
|
+
filterBy?: string;
|
|
171
|
+
metadataKey?: string;
|
|
172
|
+
metadataValue?: string;
|
|
173
|
+
returnSessionInformation?: boolean;
|
|
174
|
+
visibility?: string;
|
|
175
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", void, "mentorApiSlice", any>;
|
|
176
|
+
}, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", "mentorApiSlice">, import("@reduxjs/toolkit").UnknownAction>;
|
|
21
177
|
export declare const useCreateMentorMutation: <R extends Record<string, any> = ({
|
|
22
178
|
requestId?: undefined;
|
|
23
179
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
@@ -175,8 +331,17 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
175
331
|
isError: true;
|
|
176
332
|
})) => R) | undefined;
|
|
177
333
|
fixedCacheKey?: string;
|
|
178
|
-
} | undefined) => readonly [(arg:
|
|
179
|
-
|
|
334
|
+
} | undefined) => readonly [(arg: {
|
|
335
|
+
org: string;
|
|
336
|
+
formData: import("@iblai/iblai-api").MentorFromTemplateWithSettingRequest;
|
|
337
|
+
}) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
338
|
+
org: string;
|
|
339
|
+
formData: import("@iblai/iblai-api").MentorFromTemplateWithSettingRequest;
|
|
340
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
341
|
+
originalArgs?: {
|
|
342
|
+
org: string;
|
|
343
|
+
formData: import("@iblai/iblai-api").MentorFromTemplateWithSettingRequest;
|
|
344
|
+
} | undefined;
|
|
180
345
|
reset: () => void;
|
|
181
346
|
}], useGetMentorsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
182
347
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
@@ -188,7 +353,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
188
353
|
startedTimeStamp?: undefined | undefined;
|
|
189
354
|
fulfilledTimeStamp?: undefined | undefined;
|
|
190
355
|
} & {
|
|
191
|
-
currentData?:
|
|
356
|
+
currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
|
|
192
357
|
isUninitialized: false;
|
|
193
358
|
isLoading: false;
|
|
194
359
|
isFetching: false;
|
|
@@ -196,8 +361,26 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
196
361
|
isError: false;
|
|
197
362
|
}, "isUninitialized"> & {
|
|
198
363
|
isUninitialized: true;
|
|
199
|
-
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
200
|
-
|
|
364
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
365
|
+
org: string;
|
|
366
|
+
username: string;
|
|
367
|
+
audience?: Array<string>;
|
|
368
|
+
category?: Array<string>;
|
|
369
|
+
createdBy?: string;
|
|
370
|
+
featured?: boolean;
|
|
371
|
+
id?: number;
|
|
372
|
+
includeMainPublicMentors?: boolean;
|
|
373
|
+
limit?: number;
|
|
374
|
+
llm?: Array<string>;
|
|
375
|
+
offset?: number;
|
|
376
|
+
orderBy?: string;
|
|
377
|
+
orderDirection?: string;
|
|
378
|
+
query?: string;
|
|
379
|
+
tags?: Array<string>;
|
|
380
|
+
tenant?: string;
|
|
381
|
+
uniqueId?: string;
|
|
382
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
383
|
+
currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
|
|
201
384
|
isUninitialized: false;
|
|
202
385
|
isLoading: false;
|
|
203
386
|
isFetching: false;
|
|
@@ -211,8 +394,26 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
211
394
|
isSuccess: true;
|
|
212
395
|
isFetching: true;
|
|
213
396
|
error: undefined;
|
|
214
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
215
|
-
|
|
397
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
398
|
+
org: string;
|
|
399
|
+
username: string;
|
|
400
|
+
audience?: Array<string>;
|
|
401
|
+
category?: Array<string>;
|
|
402
|
+
createdBy?: string;
|
|
403
|
+
featured?: boolean;
|
|
404
|
+
id?: number;
|
|
405
|
+
includeMainPublicMentors?: boolean;
|
|
406
|
+
limit?: number;
|
|
407
|
+
llm?: Array<string>;
|
|
408
|
+
offset?: number;
|
|
409
|
+
orderBy?: string;
|
|
410
|
+
orderDirection?: string;
|
|
411
|
+
query?: string;
|
|
412
|
+
tags?: Array<string>;
|
|
413
|
+
tenant?: string;
|
|
414
|
+
uniqueId?: string;
|
|
415
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
416
|
+
currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
|
|
216
417
|
isUninitialized: false;
|
|
217
418
|
isLoading: false;
|
|
218
419
|
isFetching: false;
|
|
@@ -222,8 +423,26 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
222
423
|
isSuccess: true;
|
|
223
424
|
isFetching: false;
|
|
224
425
|
error: undefined;
|
|
225
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
226
|
-
|
|
426
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
427
|
+
org: string;
|
|
428
|
+
username: string;
|
|
429
|
+
audience?: Array<string>;
|
|
430
|
+
category?: Array<string>;
|
|
431
|
+
createdBy?: string;
|
|
432
|
+
featured?: boolean;
|
|
433
|
+
id?: number;
|
|
434
|
+
includeMainPublicMentors?: boolean;
|
|
435
|
+
limit?: number;
|
|
436
|
+
llm?: Array<string>;
|
|
437
|
+
offset?: number;
|
|
438
|
+
orderBy?: string;
|
|
439
|
+
orderDirection?: string;
|
|
440
|
+
query?: string;
|
|
441
|
+
tags?: Array<string>;
|
|
442
|
+
tenant?: string;
|
|
443
|
+
uniqueId?: string;
|
|
444
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
445
|
+
currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
|
|
227
446
|
isUninitialized: false;
|
|
228
447
|
isLoading: false;
|
|
229
448
|
isFetching: false;
|
|
@@ -231,8 +450,26 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
231
450
|
isError: false;
|
|
232
451
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
233
452
|
isError: true;
|
|
234
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
235
|
-
|
|
453
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
454
|
+
org: string;
|
|
455
|
+
username: string;
|
|
456
|
+
audience?: Array<string>;
|
|
457
|
+
category?: Array<string>;
|
|
458
|
+
createdBy?: string;
|
|
459
|
+
featured?: boolean;
|
|
460
|
+
id?: number;
|
|
461
|
+
includeMainPublicMentors?: boolean;
|
|
462
|
+
limit?: number;
|
|
463
|
+
llm?: Array<string>;
|
|
464
|
+
offset?: number;
|
|
465
|
+
orderBy?: string;
|
|
466
|
+
orderDirection?: string;
|
|
467
|
+
query?: string;
|
|
468
|
+
tags?: Array<string>;
|
|
469
|
+
tenant?: string;
|
|
470
|
+
uniqueId?: string;
|
|
471
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
472
|
+
currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
|
|
236
473
|
isUninitialized: false;
|
|
237
474
|
isLoading: false;
|
|
238
475
|
isFetching: false;
|
|
@@ -240,7 +477,25 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
240
477
|
isError: false;
|
|
241
478
|
}, "error">>)>> & {
|
|
242
479
|
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
243
|
-
}>(arg:
|
|
480
|
+
}>(arg: {
|
|
481
|
+
org: string;
|
|
482
|
+
username: string;
|
|
483
|
+
audience?: Array<string>;
|
|
484
|
+
category?: Array<string>;
|
|
485
|
+
createdBy?: string;
|
|
486
|
+
featured?: boolean;
|
|
487
|
+
id?: number;
|
|
488
|
+
includeMainPublicMentors?: boolean;
|
|
489
|
+
limit?: number;
|
|
490
|
+
llm?: Array<string>;
|
|
491
|
+
offset?: number;
|
|
492
|
+
orderBy?: string;
|
|
493
|
+
orderDirection?: string;
|
|
494
|
+
query?: string;
|
|
495
|
+
tags?: Array<string>;
|
|
496
|
+
tenant?: string;
|
|
497
|
+
uniqueId?: string;
|
|
498
|
+
} | typeof import("@reduxjs/toolkit/query").skipToken, options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & {
|
|
244
499
|
skip?: boolean;
|
|
245
500
|
refetchOnMountOrArgChange?: boolean | number;
|
|
246
501
|
} & {
|
|
@@ -255,7 +510,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
255
510
|
startedTimeStamp?: undefined | undefined;
|
|
256
511
|
fulfilledTimeStamp?: undefined | undefined;
|
|
257
512
|
} & {
|
|
258
|
-
currentData?:
|
|
513
|
+
currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
|
|
259
514
|
isUninitialized: false;
|
|
260
515
|
isLoading: false;
|
|
261
516
|
isFetching: false;
|
|
@@ -263,8 +518,26 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
263
518
|
isError: false;
|
|
264
519
|
}, "isUninitialized"> & {
|
|
265
520
|
isUninitialized: true;
|
|
266
|
-
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
267
|
-
|
|
521
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
522
|
+
org: string;
|
|
523
|
+
username: string;
|
|
524
|
+
audience?: Array<string>;
|
|
525
|
+
category?: Array<string>;
|
|
526
|
+
createdBy?: string;
|
|
527
|
+
featured?: boolean;
|
|
528
|
+
id?: number;
|
|
529
|
+
includeMainPublicMentors?: boolean;
|
|
530
|
+
limit?: number;
|
|
531
|
+
llm?: Array<string>;
|
|
532
|
+
offset?: number;
|
|
533
|
+
orderBy?: string;
|
|
534
|
+
orderDirection?: string;
|
|
535
|
+
query?: string;
|
|
536
|
+
tags?: Array<string>;
|
|
537
|
+
tenant?: string;
|
|
538
|
+
uniqueId?: string;
|
|
539
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
540
|
+
currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
|
|
268
541
|
isUninitialized: false;
|
|
269
542
|
isLoading: false;
|
|
270
543
|
isFetching: false;
|
|
@@ -278,8 +551,26 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
278
551
|
isSuccess: true;
|
|
279
552
|
isFetching: true;
|
|
280
553
|
error: undefined;
|
|
281
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
282
|
-
|
|
554
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
555
|
+
org: string;
|
|
556
|
+
username: string;
|
|
557
|
+
audience?: Array<string>;
|
|
558
|
+
category?: Array<string>;
|
|
559
|
+
createdBy?: string;
|
|
560
|
+
featured?: boolean;
|
|
561
|
+
id?: number;
|
|
562
|
+
includeMainPublicMentors?: boolean;
|
|
563
|
+
limit?: number;
|
|
564
|
+
llm?: Array<string>;
|
|
565
|
+
offset?: number;
|
|
566
|
+
orderBy?: string;
|
|
567
|
+
orderDirection?: string;
|
|
568
|
+
query?: string;
|
|
569
|
+
tags?: Array<string>;
|
|
570
|
+
tenant?: string;
|
|
571
|
+
uniqueId?: string;
|
|
572
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
573
|
+
currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
|
|
283
574
|
isUninitialized: false;
|
|
284
575
|
isLoading: false;
|
|
285
576
|
isFetching: false;
|
|
@@ -289,8 +580,26 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
289
580
|
isSuccess: true;
|
|
290
581
|
isFetching: false;
|
|
291
582
|
error: undefined;
|
|
292
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
293
|
-
|
|
583
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
584
|
+
org: string;
|
|
585
|
+
username: string;
|
|
586
|
+
audience?: Array<string>;
|
|
587
|
+
category?: Array<string>;
|
|
588
|
+
createdBy?: string;
|
|
589
|
+
featured?: boolean;
|
|
590
|
+
id?: number;
|
|
591
|
+
includeMainPublicMentors?: boolean;
|
|
592
|
+
limit?: number;
|
|
593
|
+
llm?: Array<string>;
|
|
594
|
+
offset?: number;
|
|
595
|
+
orderBy?: string;
|
|
596
|
+
orderDirection?: string;
|
|
597
|
+
query?: string;
|
|
598
|
+
tags?: Array<string>;
|
|
599
|
+
tenant?: string;
|
|
600
|
+
uniqueId?: string;
|
|
601
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
602
|
+
currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
|
|
294
603
|
isUninitialized: false;
|
|
295
604
|
isLoading: false;
|
|
296
605
|
isFetching: false;
|
|
@@ -298,8 +607,26 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
298
607
|
isError: false;
|
|
299
608
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
300
609
|
isError: true;
|
|
301
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
302
|
-
|
|
610
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
611
|
+
org: string;
|
|
612
|
+
username: string;
|
|
613
|
+
audience?: Array<string>;
|
|
614
|
+
category?: Array<string>;
|
|
615
|
+
createdBy?: string;
|
|
616
|
+
featured?: boolean;
|
|
617
|
+
id?: number;
|
|
618
|
+
includeMainPublicMentors?: boolean;
|
|
619
|
+
limit?: number;
|
|
620
|
+
llm?: Array<string>;
|
|
621
|
+
offset?: number;
|
|
622
|
+
orderBy?: string;
|
|
623
|
+
orderDirection?: string;
|
|
624
|
+
query?: string;
|
|
625
|
+
tags?: Array<string>;
|
|
626
|
+
tenant?: string;
|
|
627
|
+
uniqueId?: string;
|
|
628
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
629
|
+
currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
|
|
303
630
|
isUninitialized: false;
|
|
304
631
|
isLoading: false;
|
|
305
632
|
isFetching: false;
|
|
@@ -309,7 +636,25 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
309
636
|
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
310
637
|
}) => R) | undefined;
|
|
311
638
|
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
312
|
-
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
639
|
+
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
640
|
+
org: string;
|
|
641
|
+
username: string;
|
|
642
|
+
audience?: Array<string>;
|
|
643
|
+
category?: Array<string>;
|
|
644
|
+
createdBy?: string;
|
|
645
|
+
featured?: boolean;
|
|
646
|
+
id?: number;
|
|
647
|
+
includeMainPublicMentors?: boolean;
|
|
648
|
+
limit?: number;
|
|
649
|
+
llm?: Array<string>;
|
|
650
|
+
offset?: number;
|
|
651
|
+
orderBy?: string;
|
|
652
|
+
orderDirection?: string;
|
|
653
|
+
query?: string;
|
|
654
|
+
tags?: Array<string>;
|
|
655
|
+
tenant?: string;
|
|
656
|
+
uniqueId?: string;
|
|
657
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>>;
|
|
313
658
|
}, useLazyGetMentorsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
314
659
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
315
660
|
originalArgs?: undefined | undefined;
|
|
@@ -320,7 +665,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
320
665
|
startedTimeStamp?: undefined | undefined;
|
|
321
666
|
fulfilledTimeStamp?: undefined | undefined;
|
|
322
667
|
} & {
|
|
323
|
-
currentData?:
|
|
668
|
+
currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
|
|
324
669
|
isUninitialized: false;
|
|
325
670
|
isLoading: false;
|
|
326
671
|
isFetching: false;
|
|
@@ -328,8 +673,26 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
328
673
|
isError: false;
|
|
329
674
|
}, "isUninitialized"> & {
|
|
330
675
|
isUninitialized: true;
|
|
331
|
-
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
332
|
-
|
|
676
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
677
|
+
org: string;
|
|
678
|
+
username: string;
|
|
679
|
+
audience?: Array<string>;
|
|
680
|
+
category?: Array<string>;
|
|
681
|
+
createdBy?: string;
|
|
682
|
+
featured?: boolean;
|
|
683
|
+
id?: number;
|
|
684
|
+
includeMainPublicMentors?: boolean;
|
|
685
|
+
limit?: number;
|
|
686
|
+
llm?: Array<string>;
|
|
687
|
+
offset?: number;
|
|
688
|
+
orderBy?: string;
|
|
689
|
+
orderDirection?: string;
|
|
690
|
+
query?: string;
|
|
691
|
+
tags?: Array<string>;
|
|
692
|
+
tenant?: string;
|
|
693
|
+
uniqueId?: string;
|
|
694
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
695
|
+
currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
|
|
333
696
|
isUninitialized: false;
|
|
334
697
|
isLoading: false;
|
|
335
698
|
isFetching: false;
|
|
@@ -343,8 +706,26 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
343
706
|
isSuccess: true;
|
|
344
707
|
isFetching: true;
|
|
345
708
|
error: undefined;
|
|
346
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
347
|
-
|
|
709
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
710
|
+
org: string;
|
|
711
|
+
username: string;
|
|
712
|
+
audience?: Array<string>;
|
|
713
|
+
category?: Array<string>;
|
|
714
|
+
createdBy?: string;
|
|
715
|
+
featured?: boolean;
|
|
716
|
+
id?: number;
|
|
717
|
+
includeMainPublicMentors?: boolean;
|
|
718
|
+
limit?: number;
|
|
719
|
+
llm?: Array<string>;
|
|
720
|
+
offset?: number;
|
|
721
|
+
orderBy?: string;
|
|
722
|
+
orderDirection?: string;
|
|
723
|
+
query?: string;
|
|
724
|
+
tags?: Array<string>;
|
|
725
|
+
tenant?: string;
|
|
726
|
+
uniqueId?: string;
|
|
727
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
728
|
+
currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
|
|
348
729
|
isUninitialized: false;
|
|
349
730
|
isLoading: false;
|
|
350
731
|
isFetching: false;
|
|
@@ -354,8 +735,26 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
354
735
|
isSuccess: true;
|
|
355
736
|
isFetching: false;
|
|
356
737
|
error: undefined;
|
|
357
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
358
|
-
|
|
738
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
739
|
+
org: string;
|
|
740
|
+
username: string;
|
|
741
|
+
audience?: Array<string>;
|
|
742
|
+
category?: Array<string>;
|
|
743
|
+
createdBy?: string;
|
|
744
|
+
featured?: boolean;
|
|
745
|
+
id?: number;
|
|
746
|
+
includeMainPublicMentors?: boolean;
|
|
747
|
+
limit?: number;
|
|
748
|
+
llm?: Array<string>;
|
|
749
|
+
offset?: number;
|
|
750
|
+
orderBy?: string;
|
|
751
|
+
orderDirection?: string;
|
|
752
|
+
query?: string;
|
|
753
|
+
tags?: Array<string>;
|
|
754
|
+
tenant?: string;
|
|
755
|
+
uniqueId?: string;
|
|
756
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
757
|
+
currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
|
|
359
758
|
isUninitialized: false;
|
|
360
759
|
isLoading: false;
|
|
361
760
|
isFetching: false;
|
|
@@ -363,8 +762,26 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
363
762
|
isError: false;
|
|
364
763
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
365
764
|
isError: true;
|
|
366
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
367
|
-
|
|
765
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
766
|
+
org: string;
|
|
767
|
+
username: string;
|
|
768
|
+
audience?: Array<string>;
|
|
769
|
+
category?: Array<string>;
|
|
770
|
+
createdBy?: string;
|
|
771
|
+
featured?: boolean;
|
|
772
|
+
id?: number;
|
|
773
|
+
includeMainPublicMentors?: boolean;
|
|
774
|
+
limit?: number;
|
|
775
|
+
llm?: Array<string>;
|
|
776
|
+
offset?: number;
|
|
777
|
+
orderBy?: string;
|
|
778
|
+
orderDirection?: string;
|
|
779
|
+
query?: string;
|
|
780
|
+
tags?: Array<string>;
|
|
781
|
+
tenant?: string;
|
|
782
|
+
uniqueId?: string;
|
|
783
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
784
|
+
currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
|
|
368
785
|
isUninitialized: false;
|
|
369
786
|
isLoading: false;
|
|
370
787
|
isFetching: false;
|
|
@@ -384,7 +801,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
384
801
|
startedTimeStamp?: undefined | undefined;
|
|
385
802
|
fulfilledTimeStamp?: undefined | undefined;
|
|
386
803
|
} & {
|
|
387
|
-
currentData?:
|
|
804
|
+
currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
|
|
388
805
|
isUninitialized: false;
|
|
389
806
|
isLoading: false;
|
|
390
807
|
isFetching: false;
|
|
@@ -392,8 +809,26 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
392
809
|
isError: false;
|
|
393
810
|
}, "isUninitialized"> & {
|
|
394
811
|
isUninitialized: true;
|
|
395
|
-
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
396
|
-
|
|
812
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
813
|
+
org: string;
|
|
814
|
+
username: string;
|
|
815
|
+
audience?: Array<string>;
|
|
816
|
+
category?: Array<string>;
|
|
817
|
+
createdBy?: string;
|
|
818
|
+
featured?: boolean;
|
|
819
|
+
id?: number;
|
|
820
|
+
includeMainPublicMentors?: boolean;
|
|
821
|
+
limit?: number;
|
|
822
|
+
llm?: Array<string>;
|
|
823
|
+
offset?: number;
|
|
824
|
+
orderBy?: string;
|
|
825
|
+
orderDirection?: string;
|
|
826
|
+
query?: string;
|
|
827
|
+
tags?: Array<string>;
|
|
828
|
+
tenant?: string;
|
|
829
|
+
uniqueId?: string;
|
|
830
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
831
|
+
currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
|
|
397
832
|
isUninitialized: false;
|
|
398
833
|
isLoading: false;
|
|
399
834
|
isFetching: false;
|
|
@@ -407,8 +842,26 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
407
842
|
isSuccess: true;
|
|
408
843
|
isFetching: true;
|
|
409
844
|
error: undefined;
|
|
410
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
411
|
-
|
|
845
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
846
|
+
org: string;
|
|
847
|
+
username: string;
|
|
848
|
+
audience?: Array<string>;
|
|
849
|
+
category?: Array<string>;
|
|
850
|
+
createdBy?: string;
|
|
851
|
+
featured?: boolean;
|
|
852
|
+
id?: number;
|
|
853
|
+
includeMainPublicMentors?: boolean;
|
|
854
|
+
limit?: number;
|
|
855
|
+
llm?: Array<string>;
|
|
856
|
+
offset?: number;
|
|
857
|
+
orderBy?: string;
|
|
858
|
+
orderDirection?: string;
|
|
859
|
+
query?: string;
|
|
860
|
+
tags?: Array<string>;
|
|
861
|
+
tenant?: string;
|
|
862
|
+
uniqueId?: string;
|
|
863
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
864
|
+
currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
|
|
412
865
|
isUninitialized: false;
|
|
413
866
|
isLoading: false;
|
|
414
867
|
isFetching: false;
|
|
@@ -418,8 +871,26 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
418
871
|
isSuccess: true;
|
|
419
872
|
isFetching: false;
|
|
420
873
|
error: undefined;
|
|
421
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
422
|
-
|
|
874
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
875
|
+
org: string;
|
|
876
|
+
username: string;
|
|
877
|
+
audience?: Array<string>;
|
|
878
|
+
category?: Array<string>;
|
|
879
|
+
createdBy?: string;
|
|
880
|
+
featured?: boolean;
|
|
881
|
+
id?: number;
|
|
882
|
+
includeMainPublicMentors?: boolean;
|
|
883
|
+
limit?: number;
|
|
884
|
+
llm?: Array<string>;
|
|
885
|
+
offset?: number;
|
|
886
|
+
orderBy?: string;
|
|
887
|
+
orderDirection?: string;
|
|
888
|
+
query?: string;
|
|
889
|
+
tags?: Array<string>;
|
|
890
|
+
tenant?: string;
|
|
891
|
+
uniqueId?: string;
|
|
892
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
893
|
+
currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
|
|
423
894
|
isUninitialized: false;
|
|
424
895
|
isLoading: false;
|
|
425
896
|
isFetching: false;
|
|
@@ -427,8 +898,26 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
427
898
|
isError: false;
|
|
428
899
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
429
900
|
isError: true;
|
|
430
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
431
|
-
|
|
901
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
902
|
+
org: string;
|
|
903
|
+
username: string;
|
|
904
|
+
audience?: Array<string>;
|
|
905
|
+
category?: Array<string>;
|
|
906
|
+
createdBy?: string;
|
|
907
|
+
featured?: boolean;
|
|
908
|
+
id?: number;
|
|
909
|
+
includeMainPublicMentors?: boolean;
|
|
910
|
+
limit?: number;
|
|
911
|
+
llm?: Array<string>;
|
|
912
|
+
offset?: number;
|
|
913
|
+
orderBy?: string;
|
|
914
|
+
orderDirection?: string;
|
|
915
|
+
query?: string;
|
|
916
|
+
tags?: Array<string>;
|
|
917
|
+
tenant?: string;
|
|
918
|
+
uniqueId?: string;
|
|
919
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
920
|
+
currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
|
|
432
921
|
isUninitialized: false;
|
|
433
922
|
isLoading: false;
|
|
434
923
|
isFetching: false;
|
|
@@ -437,10 +926,64 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
437
926
|
}, "error">>)>> & {
|
|
438
927
|
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
439
928
|
}) => R) | undefined;
|
|
440
|
-
}, "skip">) | undefined) => [(arg:
|
|
929
|
+
}, "skip">) | undefined) => [(arg: {
|
|
930
|
+
org: string;
|
|
931
|
+
username: string;
|
|
932
|
+
audience?: Array<string>;
|
|
933
|
+
category?: Array<string>;
|
|
934
|
+
createdBy?: string;
|
|
935
|
+
featured?: boolean;
|
|
936
|
+
id?: number;
|
|
937
|
+
includeMainPublicMentors?: boolean;
|
|
938
|
+
limit?: number;
|
|
939
|
+
llm?: Array<string>;
|
|
940
|
+
offset?: number;
|
|
941
|
+
orderBy?: string;
|
|
942
|
+
orderDirection?: string;
|
|
943
|
+
query?: string;
|
|
944
|
+
tags?: Array<string>;
|
|
945
|
+
tenant?: string;
|
|
946
|
+
uniqueId?: string;
|
|
947
|
+
}, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
948
|
+
org: string;
|
|
949
|
+
username: string;
|
|
950
|
+
audience?: Array<string>;
|
|
951
|
+
category?: Array<string>;
|
|
952
|
+
createdBy?: string;
|
|
953
|
+
featured?: boolean;
|
|
954
|
+
id?: number;
|
|
955
|
+
includeMainPublicMentors?: boolean;
|
|
956
|
+
limit?: number;
|
|
957
|
+
llm?: Array<string>;
|
|
958
|
+
offset?: number;
|
|
959
|
+
orderBy?: string;
|
|
960
|
+
orderDirection?: string;
|
|
961
|
+
query?: string;
|
|
962
|
+
tags?: Array<string>;
|
|
963
|
+
tenant?: string;
|
|
964
|
+
uniqueId?: string;
|
|
965
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
441
966
|
reset: () => void;
|
|
442
967
|
}, {
|
|
443
|
-
lastArg:
|
|
968
|
+
lastArg: {
|
|
969
|
+
org: string;
|
|
970
|
+
username: string;
|
|
971
|
+
audience?: Array<string>;
|
|
972
|
+
category?: Array<string>;
|
|
973
|
+
createdBy?: string;
|
|
974
|
+
featured?: boolean;
|
|
975
|
+
id?: number;
|
|
976
|
+
includeMainPublicMentors?: boolean;
|
|
977
|
+
limit?: number;
|
|
978
|
+
llm?: Array<string>;
|
|
979
|
+
offset?: number;
|
|
980
|
+
orderBy?: string;
|
|
981
|
+
orderDirection?: string;
|
|
982
|
+
query?: string;
|
|
983
|
+
tags?: Array<string>;
|
|
984
|
+
tenant?: string;
|
|
985
|
+
uniqueId?: string;
|
|
986
|
+
};
|
|
444
987
|
}], useEditMentorMutation: <R extends Record<string, any> = ({
|
|
445
988
|
requestId?: undefined;
|
|
446
989
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
@@ -598,8 +1141,23 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
598
1141
|
isError: true;
|
|
599
1142
|
})) => R) | undefined;
|
|
600
1143
|
fixedCacheKey?: string;
|
|
601
|
-
} | undefined) => readonly [(arg:
|
|
602
|
-
|
|
1144
|
+
} | undefined) => readonly [(arg: {
|
|
1145
|
+
mentor: string;
|
|
1146
|
+
org: string;
|
|
1147
|
+
departmentId?: number;
|
|
1148
|
+
formData?: import("@iblai/iblai-api").MentorSettingsRequest;
|
|
1149
|
+
}) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
1150
|
+
mentor: string;
|
|
1151
|
+
org: string;
|
|
1152
|
+
departmentId?: number;
|
|
1153
|
+
formData?: import("@iblai/iblai-api").MentorSettingsRequest;
|
|
1154
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettings, "mentorApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
1155
|
+
originalArgs?: {
|
|
1156
|
+
mentor: string;
|
|
1157
|
+
org: string;
|
|
1158
|
+
departmentId?: number;
|
|
1159
|
+
formData?: import("@iblai/iblai-api").MentorSettingsRequest;
|
|
1160
|
+
} | undefined;
|
|
603
1161
|
reset: () => void;
|
|
604
1162
|
}], useSeedMentorsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
605
1163
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
@@ -619,7 +1177,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
619
1177
|
isError: false;
|
|
620
1178
|
}, "isUninitialized"> & {
|
|
621
1179
|
isUninitialized: true;
|
|
622
|
-
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
1180
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1181
|
+
org: string;
|
|
1182
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").SeedMentorsView, "mentorApiSlice", any>> & {
|
|
623
1183
|
currentData?: import("@iblai/iblai-api").SeedMentorsView | undefined;
|
|
624
1184
|
isUninitialized: false;
|
|
625
1185
|
isLoading: false;
|
|
@@ -634,7 +1194,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
634
1194
|
isSuccess: true;
|
|
635
1195
|
isFetching: true;
|
|
636
1196
|
error: undefined;
|
|
637
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
1197
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1198
|
+
org: string;
|
|
1199
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").SeedMentorsView, "mentorApiSlice", any>> & {
|
|
638
1200
|
currentData?: import("@iblai/iblai-api").SeedMentorsView | undefined;
|
|
639
1201
|
isUninitialized: false;
|
|
640
1202
|
isLoading: false;
|
|
@@ -645,7 +1207,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
645
1207
|
isSuccess: true;
|
|
646
1208
|
isFetching: false;
|
|
647
1209
|
error: undefined;
|
|
648
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
1210
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1211
|
+
org: string;
|
|
1212
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").SeedMentorsView, "mentorApiSlice", any>> & {
|
|
649
1213
|
currentData?: import("@iblai/iblai-api").SeedMentorsView | undefined;
|
|
650
1214
|
isUninitialized: false;
|
|
651
1215
|
isLoading: false;
|
|
@@ -654,7 +1218,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
654
1218
|
isError: false;
|
|
655
1219
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
656
1220
|
isError: true;
|
|
657
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
1221
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1222
|
+
org: string;
|
|
1223
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").SeedMentorsView, "mentorApiSlice", any>> & {
|
|
658
1224
|
currentData?: import("@iblai/iblai-api").SeedMentorsView | undefined;
|
|
659
1225
|
isUninitialized: false;
|
|
660
1226
|
isLoading: false;
|
|
@@ -663,7 +1229,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
663
1229
|
isError: false;
|
|
664
1230
|
}, "error">>)>> & {
|
|
665
1231
|
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
666
|
-
}>(arg:
|
|
1232
|
+
}>(arg: {
|
|
1233
|
+
org: string;
|
|
1234
|
+
} | typeof import("@reduxjs/toolkit/query").skipToken, options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & {
|
|
667
1235
|
skip?: boolean;
|
|
668
1236
|
refetchOnMountOrArgChange?: boolean | number;
|
|
669
1237
|
} & {
|
|
@@ -686,7 +1254,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
686
1254
|
isError: false;
|
|
687
1255
|
}, "isUninitialized"> & {
|
|
688
1256
|
isUninitialized: true;
|
|
689
|
-
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
1257
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1258
|
+
org: string;
|
|
1259
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").SeedMentorsView, "mentorApiSlice", any>> & {
|
|
690
1260
|
currentData?: import("@iblai/iblai-api").SeedMentorsView | undefined;
|
|
691
1261
|
isUninitialized: false;
|
|
692
1262
|
isLoading: false;
|
|
@@ -701,7 +1271,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
701
1271
|
isSuccess: true;
|
|
702
1272
|
isFetching: true;
|
|
703
1273
|
error: undefined;
|
|
704
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
1274
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1275
|
+
org: string;
|
|
1276
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").SeedMentorsView, "mentorApiSlice", any>> & {
|
|
705
1277
|
currentData?: import("@iblai/iblai-api").SeedMentorsView | undefined;
|
|
706
1278
|
isUninitialized: false;
|
|
707
1279
|
isLoading: false;
|
|
@@ -712,7 +1284,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
712
1284
|
isSuccess: true;
|
|
713
1285
|
isFetching: false;
|
|
714
1286
|
error: undefined;
|
|
715
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
1287
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1288
|
+
org: string;
|
|
1289
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").SeedMentorsView, "mentorApiSlice", any>> & {
|
|
716
1290
|
currentData?: import("@iblai/iblai-api").SeedMentorsView | undefined;
|
|
717
1291
|
isUninitialized: false;
|
|
718
1292
|
isLoading: false;
|
|
@@ -721,7 +1295,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
721
1295
|
isError: false;
|
|
722
1296
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
723
1297
|
isError: true;
|
|
724
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
1298
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1299
|
+
org: string;
|
|
1300
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").SeedMentorsView, "mentorApiSlice", any>> & {
|
|
725
1301
|
currentData?: import("@iblai/iblai-api").SeedMentorsView | undefined;
|
|
726
1302
|
isUninitialized: false;
|
|
727
1303
|
isLoading: false;
|
|
@@ -732,7 +1308,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
732
1308
|
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
733
1309
|
}) => R) | undefined;
|
|
734
1310
|
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
735
|
-
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
1311
|
+
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1312
|
+
org: string;
|
|
1313
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").SeedMentorsView, "mentorApiSlice", any>>;
|
|
736
1314
|
}, useLazySeedMentorsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
737
1315
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
738
1316
|
originalArgs?: undefined | undefined;
|
|
@@ -751,7 +1329,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
751
1329
|
isError: false;
|
|
752
1330
|
}, "isUninitialized"> & {
|
|
753
1331
|
isUninitialized: true;
|
|
754
|
-
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
1332
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1333
|
+
org: string;
|
|
1334
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").SeedMentorsView, "mentorApiSlice", any>> & {
|
|
755
1335
|
currentData?: import("@iblai/iblai-api").SeedMentorsView | undefined;
|
|
756
1336
|
isUninitialized: false;
|
|
757
1337
|
isLoading: false;
|
|
@@ -766,7 +1346,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
766
1346
|
isSuccess: true;
|
|
767
1347
|
isFetching: true;
|
|
768
1348
|
error: undefined;
|
|
769
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
1349
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1350
|
+
org: string;
|
|
1351
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").SeedMentorsView, "mentorApiSlice", any>> & {
|
|
770
1352
|
currentData?: import("@iblai/iblai-api").SeedMentorsView | undefined;
|
|
771
1353
|
isUninitialized: false;
|
|
772
1354
|
isLoading: false;
|
|
@@ -777,7 +1359,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
777
1359
|
isSuccess: true;
|
|
778
1360
|
isFetching: false;
|
|
779
1361
|
error: undefined;
|
|
780
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
1362
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1363
|
+
org: string;
|
|
1364
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").SeedMentorsView, "mentorApiSlice", any>> & {
|
|
781
1365
|
currentData?: import("@iblai/iblai-api").SeedMentorsView | undefined;
|
|
782
1366
|
isUninitialized: false;
|
|
783
1367
|
isLoading: false;
|
|
@@ -786,7 +1370,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
786
1370
|
isError: false;
|
|
787
1371
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
788
1372
|
isError: true;
|
|
789
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
1373
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1374
|
+
org: string;
|
|
1375
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").SeedMentorsView, "mentorApiSlice", any>> & {
|
|
790
1376
|
currentData?: import("@iblai/iblai-api").SeedMentorsView | undefined;
|
|
791
1377
|
isUninitialized: false;
|
|
792
1378
|
isLoading: false;
|
|
@@ -815,7 +1401,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
815
1401
|
isError: false;
|
|
816
1402
|
}, "isUninitialized"> & {
|
|
817
1403
|
isUninitialized: true;
|
|
818
|
-
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
1404
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1405
|
+
org: string;
|
|
1406
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").SeedMentorsView, "mentorApiSlice", any>> & {
|
|
819
1407
|
currentData?: import("@iblai/iblai-api").SeedMentorsView | undefined;
|
|
820
1408
|
isUninitialized: false;
|
|
821
1409
|
isLoading: false;
|
|
@@ -830,7 +1418,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
830
1418
|
isSuccess: true;
|
|
831
1419
|
isFetching: true;
|
|
832
1420
|
error: undefined;
|
|
833
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
1421
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1422
|
+
org: string;
|
|
1423
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").SeedMentorsView, "mentorApiSlice", any>> & {
|
|
834
1424
|
currentData?: import("@iblai/iblai-api").SeedMentorsView | undefined;
|
|
835
1425
|
isUninitialized: false;
|
|
836
1426
|
isLoading: false;
|
|
@@ -841,7 +1431,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
841
1431
|
isSuccess: true;
|
|
842
1432
|
isFetching: false;
|
|
843
1433
|
error: undefined;
|
|
844
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
1434
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1435
|
+
org: string;
|
|
1436
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").SeedMentorsView, "mentorApiSlice", any>> & {
|
|
845
1437
|
currentData?: import("@iblai/iblai-api").SeedMentorsView | undefined;
|
|
846
1438
|
isUninitialized: false;
|
|
847
1439
|
isLoading: false;
|
|
@@ -850,7 +1442,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
850
1442
|
isError: false;
|
|
851
1443
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
852
1444
|
isError: true;
|
|
853
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
1445
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1446
|
+
org: string;
|
|
1447
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").SeedMentorsView, "mentorApiSlice", any>> & {
|
|
854
1448
|
currentData?: import("@iblai/iblai-api").SeedMentorsView | undefined;
|
|
855
1449
|
isUninitialized: false;
|
|
856
1450
|
isLoading: false;
|
|
@@ -860,10 +1454,16 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
860
1454
|
}, "error">>)>> & {
|
|
861
1455
|
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
862
1456
|
}) => R) | undefined;
|
|
863
|
-
}, "skip">) | undefined) => [(arg:
|
|
1457
|
+
}, "skip">) | undefined) => [(arg: {
|
|
1458
|
+
org: string;
|
|
1459
|
+
}, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1460
|
+
org: string;
|
|
1461
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").SeedMentorsView, "mentorApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
864
1462
|
reset: () => void;
|
|
865
1463
|
}, {
|
|
866
|
-
lastArg:
|
|
1464
|
+
lastArg: {
|
|
1465
|
+
org: string;
|
|
1466
|
+
};
|
|
867
1467
|
}], useGetMentorDetailsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
868
1468
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
869
1469
|
originalArgs?: undefined | undefined;
|
|
@@ -882,7 +1482,10 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
882
1482
|
isError: false;
|
|
883
1483
|
}, "isUninitialized"> & {
|
|
884
1484
|
isUninitialized: true;
|
|
885
|
-
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
1485
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1486
|
+
mentor: string;
|
|
1487
|
+
org: string;
|
|
1488
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>> & {
|
|
886
1489
|
currentData?: import("@iblai/iblai-api").Mentor | undefined;
|
|
887
1490
|
isUninitialized: false;
|
|
888
1491
|
isLoading: false;
|
|
@@ -897,7 +1500,10 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
897
1500
|
isSuccess: true;
|
|
898
1501
|
isFetching: true;
|
|
899
1502
|
error: undefined;
|
|
900
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
1503
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1504
|
+
mentor: string;
|
|
1505
|
+
org: string;
|
|
1506
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>> & {
|
|
901
1507
|
currentData?: import("@iblai/iblai-api").Mentor | undefined;
|
|
902
1508
|
isUninitialized: false;
|
|
903
1509
|
isLoading: false;
|
|
@@ -908,7 +1514,10 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
908
1514
|
isSuccess: true;
|
|
909
1515
|
isFetching: false;
|
|
910
1516
|
error: undefined;
|
|
911
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
1517
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1518
|
+
mentor: string;
|
|
1519
|
+
org: string;
|
|
1520
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>> & {
|
|
912
1521
|
currentData?: import("@iblai/iblai-api").Mentor | undefined;
|
|
913
1522
|
isUninitialized: false;
|
|
914
1523
|
isLoading: false;
|
|
@@ -917,7 +1526,10 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
917
1526
|
isError: false;
|
|
918
1527
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
919
1528
|
isError: true;
|
|
920
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
1529
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1530
|
+
mentor: string;
|
|
1531
|
+
org: string;
|
|
1532
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>> & {
|
|
921
1533
|
currentData?: import("@iblai/iblai-api").Mentor | undefined;
|
|
922
1534
|
isUninitialized: false;
|
|
923
1535
|
isLoading: false;
|
|
@@ -926,7 +1538,10 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
926
1538
|
isError: false;
|
|
927
1539
|
}, "error">>)>> & {
|
|
928
1540
|
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
929
|
-
}>(arg:
|
|
1541
|
+
}>(arg: {
|
|
1542
|
+
mentor: string;
|
|
1543
|
+
org: string;
|
|
1544
|
+
} | typeof import("@reduxjs/toolkit/query").skipToken, options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & {
|
|
930
1545
|
skip?: boolean;
|
|
931
1546
|
refetchOnMountOrArgChange?: boolean | number;
|
|
932
1547
|
} & {
|
|
@@ -949,7 +1564,10 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
949
1564
|
isError: false;
|
|
950
1565
|
}, "isUninitialized"> & {
|
|
951
1566
|
isUninitialized: true;
|
|
952
|
-
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
1567
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1568
|
+
mentor: string;
|
|
1569
|
+
org: string;
|
|
1570
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>> & {
|
|
953
1571
|
currentData?: import("@iblai/iblai-api").Mentor | undefined;
|
|
954
1572
|
isUninitialized: false;
|
|
955
1573
|
isLoading: false;
|
|
@@ -964,7 +1582,10 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
964
1582
|
isSuccess: true;
|
|
965
1583
|
isFetching: true;
|
|
966
1584
|
error: undefined;
|
|
967
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
1585
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1586
|
+
mentor: string;
|
|
1587
|
+
org: string;
|
|
1588
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>> & {
|
|
968
1589
|
currentData?: import("@iblai/iblai-api").Mentor | undefined;
|
|
969
1590
|
isUninitialized: false;
|
|
970
1591
|
isLoading: false;
|
|
@@ -975,7 +1596,10 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
975
1596
|
isSuccess: true;
|
|
976
1597
|
isFetching: false;
|
|
977
1598
|
error: undefined;
|
|
978
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
1599
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1600
|
+
mentor: string;
|
|
1601
|
+
org: string;
|
|
1602
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>> & {
|
|
979
1603
|
currentData?: import("@iblai/iblai-api").Mentor | undefined;
|
|
980
1604
|
isUninitialized: false;
|
|
981
1605
|
isLoading: false;
|
|
@@ -984,7 +1608,10 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
984
1608
|
isError: false;
|
|
985
1609
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
986
1610
|
isError: true;
|
|
987
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
1611
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1612
|
+
mentor: string;
|
|
1613
|
+
org: string;
|
|
1614
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>> & {
|
|
988
1615
|
currentData?: import("@iblai/iblai-api").Mentor | undefined;
|
|
989
1616
|
isUninitialized: false;
|
|
990
1617
|
isLoading: false;
|
|
@@ -995,7 +1622,10 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
995
1622
|
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
996
1623
|
}) => R) | undefined;
|
|
997
1624
|
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
998
|
-
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
1625
|
+
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1626
|
+
mentor: string;
|
|
1627
|
+
org: string;
|
|
1628
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>>;
|
|
999
1629
|
}, useLazyGetMentorDetailsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
1000
1630
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1001
1631
|
originalArgs?: undefined | undefined;
|
|
@@ -1014,7 +1644,10 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1014
1644
|
isError: false;
|
|
1015
1645
|
}, "isUninitialized"> & {
|
|
1016
1646
|
isUninitialized: true;
|
|
1017
|
-
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
1647
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1648
|
+
mentor: string;
|
|
1649
|
+
org: string;
|
|
1650
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>> & {
|
|
1018
1651
|
currentData?: import("@iblai/iblai-api").Mentor | undefined;
|
|
1019
1652
|
isUninitialized: false;
|
|
1020
1653
|
isLoading: false;
|
|
@@ -1029,7 +1662,10 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1029
1662
|
isSuccess: true;
|
|
1030
1663
|
isFetching: true;
|
|
1031
1664
|
error: undefined;
|
|
1032
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
1665
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1666
|
+
mentor: string;
|
|
1667
|
+
org: string;
|
|
1668
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>> & {
|
|
1033
1669
|
currentData?: import("@iblai/iblai-api").Mentor | undefined;
|
|
1034
1670
|
isUninitialized: false;
|
|
1035
1671
|
isLoading: false;
|
|
@@ -1040,7 +1676,10 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1040
1676
|
isSuccess: true;
|
|
1041
1677
|
isFetching: false;
|
|
1042
1678
|
error: undefined;
|
|
1043
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
1679
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1680
|
+
mentor: string;
|
|
1681
|
+
org: string;
|
|
1682
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>> & {
|
|
1044
1683
|
currentData?: import("@iblai/iblai-api").Mentor | undefined;
|
|
1045
1684
|
isUninitialized: false;
|
|
1046
1685
|
isLoading: false;
|
|
@@ -1049,7 +1688,10 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1049
1688
|
isError: false;
|
|
1050
1689
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
1051
1690
|
isError: true;
|
|
1052
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
1691
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1692
|
+
mentor: string;
|
|
1693
|
+
org: string;
|
|
1694
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>> & {
|
|
1053
1695
|
currentData?: import("@iblai/iblai-api").Mentor | undefined;
|
|
1054
1696
|
isUninitialized: false;
|
|
1055
1697
|
isLoading: false;
|
|
@@ -1078,7 +1720,10 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1078
1720
|
isError: false;
|
|
1079
1721
|
}, "isUninitialized"> & {
|
|
1080
1722
|
isUninitialized: true;
|
|
1081
|
-
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
1723
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1724
|
+
mentor: string;
|
|
1725
|
+
org: string;
|
|
1726
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>> & {
|
|
1082
1727
|
currentData?: import("@iblai/iblai-api").Mentor | undefined;
|
|
1083
1728
|
isUninitialized: false;
|
|
1084
1729
|
isLoading: false;
|
|
@@ -1093,7 +1738,10 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1093
1738
|
isSuccess: true;
|
|
1094
1739
|
isFetching: true;
|
|
1095
1740
|
error: undefined;
|
|
1096
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
1741
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1742
|
+
mentor: string;
|
|
1743
|
+
org: string;
|
|
1744
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>> & {
|
|
1097
1745
|
currentData?: import("@iblai/iblai-api").Mentor | undefined;
|
|
1098
1746
|
isUninitialized: false;
|
|
1099
1747
|
isLoading: false;
|
|
@@ -1104,7 +1752,10 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1104
1752
|
isSuccess: true;
|
|
1105
1753
|
isFetching: false;
|
|
1106
1754
|
error: undefined;
|
|
1107
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
1755
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1756
|
+
mentor: string;
|
|
1757
|
+
org: string;
|
|
1758
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>> & {
|
|
1108
1759
|
currentData?: import("@iblai/iblai-api").Mentor | undefined;
|
|
1109
1760
|
isUninitialized: false;
|
|
1110
1761
|
isLoading: false;
|
|
@@ -1113,7 +1764,10 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1113
1764
|
isError: false;
|
|
1114
1765
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
1115
1766
|
isError: true;
|
|
1116
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
1767
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1768
|
+
mentor: string;
|
|
1769
|
+
org: string;
|
|
1770
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>> & {
|
|
1117
1771
|
currentData?: import("@iblai/iblai-api").Mentor | undefined;
|
|
1118
1772
|
isUninitialized: false;
|
|
1119
1773
|
isLoading: false;
|
|
@@ -1123,10 +1777,19 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1123
1777
|
}, "error">>)>> & {
|
|
1124
1778
|
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
1125
1779
|
}) => R) | undefined;
|
|
1126
|
-
}, "skip">) | undefined) => [(arg:
|
|
1780
|
+
}, "skip">) | undefined) => [(arg: {
|
|
1781
|
+
mentor: string;
|
|
1782
|
+
org: string;
|
|
1783
|
+
}, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1784
|
+
mentor: string;
|
|
1785
|
+
org: string;
|
|
1786
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
1127
1787
|
reset: () => void;
|
|
1128
1788
|
}, {
|
|
1129
|
-
lastArg:
|
|
1789
|
+
lastArg: {
|
|
1790
|
+
mentor: string;
|
|
1791
|
+
org: string;
|
|
1792
|
+
};
|
|
1130
1793
|
}], useGetMentorSettingsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
1131
1794
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1132
1795
|
originalArgs?: undefined | undefined;
|
|
@@ -1145,7 +1808,11 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1145
1808
|
isError: false;
|
|
1146
1809
|
}, "isUninitialized"> & {
|
|
1147
1810
|
isUninitialized: true;
|
|
1148
|
-
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
1811
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1812
|
+
mentor: string;
|
|
1813
|
+
org: string;
|
|
1814
|
+
departmentId?: number;
|
|
1815
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
1149
1816
|
currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
|
|
1150
1817
|
isUninitialized: false;
|
|
1151
1818
|
isLoading: false;
|
|
@@ -1160,7 +1827,11 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1160
1827
|
isSuccess: true;
|
|
1161
1828
|
isFetching: true;
|
|
1162
1829
|
error: undefined;
|
|
1163
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
1830
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1831
|
+
mentor: string;
|
|
1832
|
+
org: string;
|
|
1833
|
+
departmentId?: number;
|
|
1834
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
1164
1835
|
currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
|
|
1165
1836
|
isUninitialized: false;
|
|
1166
1837
|
isLoading: false;
|
|
@@ -1171,7 +1842,11 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1171
1842
|
isSuccess: true;
|
|
1172
1843
|
isFetching: false;
|
|
1173
1844
|
error: undefined;
|
|
1174
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
1845
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1846
|
+
mentor: string;
|
|
1847
|
+
org: string;
|
|
1848
|
+
departmentId?: number;
|
|
1849
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
1175
1850
|
currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
|
|
1176
1851
|
isUninitialized: false;
|
|
1177
1852
|
isLoading: false;
|
|
@@ -1180,7 +1855,11 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1180
1855
|
isError: false;
|
|
1181
1856
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
1182
1857
|
isError: true;
|
|
1183
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
1858
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1859
|
+
mentor: string;
|
|
1860
|
+
org: string;
|
|
1861
|
+
departmentId?: number;
|
|
1862
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
1184
1863
|
currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
|
|
1185
1864
|
isUninitialized: false;
|
|
1186
1865
|
isLoading: false;
|
|
@@ -1189,7 +1868,11 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1189
1868
|
isError: false;
|
|
1190
1869
|
}, "error">>)>> & {
|
|
1191
1870
|
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
1192
|
-
}>(arg:
|
|
1871
|
+
}>(arg: {
|
|
1872
|
+
mentor: string;
|
|
1873
|
+
org: string;
|
|
1874
|
+
departmentId?: number;
|
|
1875
|
+
} | typeof import("@reduxjs/toolkit/query").skipToken, options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & {
|
|
1193
1876
|
skip?: boolean;
|
|
1194
1877
|
refetchOnMountOrArgChange?: boolean | number;
|
|
1195
1878
|
} & {
|
|
@@ -1212,7 +1895,11 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1212
1895
|
isError: false;
|
|
1213
1896
|
}, "isUninitialized"> & {
|
|
1214
1897
|
isUninitialized: true;
|
|
1215
|
-
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
1898
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1899
|
+
mentor: string;
|
|
1900
|
+
org: string;
|
|
1901
|
+
departmentId?: number;
|
|
1902
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
1216
1903
|
currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
|
|
1217
1904
|
isUninitialized: false;
|
|
1218
1905
|
isLoading: false;
|
|
@@ -1227,7 +1914,11 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1227
1914
|
isSuccess: true;
|
|
1228
1915
|
isFetching: true;
|
|
1229
1916
|
error: undefined;
|
|
1230
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
1917
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1918
|
+
mentor: string;
|
|
1919
|
+
org: string;
|
|
1920
|
+
departmentId?: number;
|
|
1921
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
1231
1922
|
currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
|
|
1232
1923
|
isUninitialized: false;
|
|
1233
1924
|
isLoading: false;
|
|
@@ -1238,7 +1929,11 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1238
1929
|
isSuccess: true;
|
|
1239
1930
|
isFetching: false;
|
|
1240
1931
|
error: undefined;
|
|
1241
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
1932
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1933
|
+
mentor: string;
|
|
1934
|
+
org: string;
|
|
1935
|
+
departmentId?: number;
|
|
1936
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
1242
1937
|
currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
|
|
1243
1938
|
isUninitialized: false;
|
|
1244
1939
|
isLoading: false;
|
|
@@ -1247,7 +1942,11 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1247
1942
|
isError: false;
|
|
1248
1943
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
1249
1944
|
isError: true;
|
|
1250
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
1945
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1946
|
+
mentor: string;
|
|
1947
|
+
org: string;
|
|
1948
|
+
departmentId?: number;
|
|
1949
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
1251
1950
|
currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
|
|
1252
1951
|
isUninitialized: false;
|
|
1253
1952
|
isLoading: false;
|
|
@@ -1258,7 +1957,11 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1258
1957
|
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
1259
1958
|
}) => R) | undefined;
|
|
1260
1959
|
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
1261
|
-
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
1960
|
+
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1961
|
+
mentor: string;
|
|
1962
|
+
org: string;
|
|
1963
|
+
departmentId?: number;
|
|
1964
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>>;
|
|
1262
1965
|
}, useLazyGetMentorSettingsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
1263
1966
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1264
1967
|
originalArgs?: undefined | undefined;
|
|
@@ -1277,7 +1980,11 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1277
1980
|
isError: false;
|
|
1278
1981
|
}, "isUninitialized"> & {
|
|
1279
1982
|
isUninitialized: true;
|
|
1280
|
-
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
1983
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1984
|
+
mentor: string;
|
|
1985
|
+
org: string;
|
|
1986
|
+
departmentId?: number;
|
|
1987
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
1281
1988
|
currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
|
|
1282
1989
|
isUninitialized: false;
|
|
1283
1990
|
isLoading: false;
|
|
@@ -1292,7 +1999,11 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1292
1999
|
isSuccess: true;
|
|
1293
2000
|
isFetching: true;
|
|
1294
2001
|
error: undefined;
|
|
1295
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
2002
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2003
|
+
mentor: string;
|
|
2004
|
+
org: string;
|
|
2005
|
+
departmentId?: number;
|
|
2006
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
1296
2007
|
currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
|
|
1297
2008
|
isUninitialized: false;
|
|
1298
2009
|
isLoading: false;
|
|
@@ -1303,7 +2014,11 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1303
2014
|
isSuccess: true;
|
|
1304
2015
|
isFetching: false;
|
|
1305
2016
|
error: undefined;
|
|
1306
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
2017
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2018
|
+
mentor: string;
|
|
2019
|
+
org: string;
|
|
2020
|
+
departmentId?: number;
|
|
2021
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
1307
2022
|
currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
|
|
1308
2023
|
isUninitialized: false;
|
|
1309
2024
|
isLoading: false;
|
|
@@ -1312,7 +2027,11 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1312
2027
|
isError: false;
|
|
1313
2028
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
1314
2029
|
isError: true;
|
|
1315
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
2030
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2031
|
+
mentor: string;
|
|
2032
|
+
org: string;
|
|
2033
|
+
departmentId?: number;
|
|
2034
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
1316
2035
|
currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
|
|
1317
2036
|
isUninitialized: false;
|
|
1318
2037
|
isLoading: false;
|
|
@@ -1341,7 +2060,11 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1341
2060
|
isError: false;
|
|
1342
2061
|
}, "isUninitialized"> & {
|
|
1343
2062
|
isUninitialized: true;
|
|
1344
|
-
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
2063
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2064
|
+
mentor: string;
|
|
2065
|
+
org: string;
|
|
2066
|
+
departmentId?: number;
|
|
2067
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
1345
2068
|
currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
|
|
1346
2069
|
isUninitialized: false;
|
|
1347
2070
|
isLoading: false;
|
|
@@ -1356,7 +2079,11 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1356
2079
|
isSuccess: true;
|
|
1357
2080
|
isFetching: true;
|
|
1358
2081
|
error: undefined;
|
|
1359
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
2082
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2083
|
+
mentor: string;
|
|
2084
|
+
org: string;
|
|
2085
|
+
departmentId?: number;
|
|
2086
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
1360
2087
|
currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
|
|
1361
2088
|
isUninitialized: false;
|
|
1362
2089
|
isLoading: false;
|
|
@@ -1367,7 +2094,11 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1367
2094
|
isSuccess: true;
|
|
1368
2095
|
isFetching: false;
|
|
1369
2096
|
error: undefined;
|
|
1370
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
2097
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2098
|
+
mentor: string;
|
|
2099
|
+
org: string;
|
|
2100
|
+
departmentId?: number;
|
|
2101
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
1371
2102
|
currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
|
|
1372
2103
|
isUninitialized: false;
|
|
1373
2104
|
isLoading: false;
|
|
@@ -1376,7 +2107,11 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1376
2107
|
isError: false;
|
|
1377
2108
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
1378
2109
|
isError: true;
|
|
1379
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
2110
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2111
|
+
mentor: string;
|
|
2112
|
+
org: string;
|
|
2113
|
+
departmentId?: number;
|
|
2114
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
1380
2115
|
currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
|
|
1381
2116
|
isUninitialized: false;
|
|
1382
2117
|
isLoading: false;
|
|
@@ -1386,10 +2121,22 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1386
2121
|
}, "error">>)>> & {
|
|
1387
2122
|
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
1388
2123
|
}) => R) | undefined;
|
|
1389
|
-
}, "skip">) | undefined) => [(arg:
|
|
2124
|
+
}, "skip">) | undefined) => [(arg: {
|
|
2125
|
+
mentor: string;
|
|
2126
|
+
org: string;
|
|
2127
|
+
departmentId?: number;
|
|
2128
|
+
}, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2129
|
+
mentor: string;
|
|
2130
|
+
org: string;
|
|
2131
|
+
departmentId?: number;
|
|
2132
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
1390
2133
|
reset: () => void;
|
|
1391
2134
|
}, {
|
|
1392
|
-
lastArg:
|
|
2135
|
+
lastArg: {
|
|
2136
|
+
mentor: string;
|
|
2137
|
+
org: string;
|
|
2138
|
+
departmentId?: number;
|
|
2139
|
+
};
|
|
1393
2140
|
}], useGetMentorPublicSettingsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
1394
2141
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1395
2142
|
originalArgs?: undefined | undefined;
|
|
@@ -1408,7 +2155,10 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1408
2155
|
isError: false;
|
|
1409
2156
|
}, "isUninitialized"> & {
|
|
1410
2157
|
isUninitialized: true;
|
|
1411
|
-
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
2158
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2159
|
+
mentor: string;
|
|
2160
|
+
org: string;
|
|
2161
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
1412
2162
|
currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
|
|
1413
2163
|
isUninitialized: false;
|
|
1414
2164
|
isLoading: false;
|
|
@@ -1423,7 +2173,10 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1423
2173
|
isSuccess: true;
|
|
1424
2174
|
isFetching: true;
|
|
1425
2175
|
error: undefined;
|
|
1426
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
2176
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2177
|
+
mentor: string;
|
|
2178
|
+
org: string;
|
|
2179
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
1427
2180
|
currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
|
|
1428
2181
|
isUninitialized: false;
|
|
1429
2182
|
isLoading: false;
|
|
@@ -1434,7 +2187,10 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1434
2187
|
isSuccess: true;
|
|
1435
2188
|
isFetching: false;
|
|
1436
2189
|
error: undefined;
|
|
1437
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
2190
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2191
|
+
mentor: string;
|
|
2192
|
+
org: string;
|
|
2193
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
1438
2194
|
currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
|
|
1439
2195
|
isUninitialized: false;
|
|
1440
2196
|
isLoading: false;
|
|
@@ -1443,7 +2199,10 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1443
2199
|
isError: false;
|
|
1444
2200
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
1445
2201
|
isError: true;
|
|
1446
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
2202
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2203
|
+
mentor: string;
|
|
2204
|
+
org: string;
|
|
2205
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
1447
2206
|
currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
|
|
1448
2207
|
isUninitialized: false;
|
|
1449
2208
|
isLoading: false;
|
|
@@ -1452,7 +2211,10 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1452
2211
|
isError: false;
|
|
1453
2212
|
}, "error">>)>> & {
|
|
1454
2213
|
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
1455
|
-
}>(arg:
|
|
2214
|
+
}>(arg: {
|
|
2215
|
+
mentor: string;
|
|
2216
|
+
org: string;
|
|
2217
|
+
} | typeof import("@reduxjs/toolkit/query").skipToken, options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & {
|
|
1456
2218
|
skip?: boolean;
|
|
1457
2219
|
refetchOnMountOrArgChange?: boolean | number;
|
|
1458
2220
|
} & {
|
|
@@ -1475,7 +2237,10 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1475
2237
|
isError: false;
|
|
1476
2238
|
}, "isUninitialized"> & {
|
|
1477
2239
|
isUninitialized: true;
|
|
1478
|
-
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
2240
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2241
|
+
mentor: string;
|
|
2242
|
+
org: string;
|
|
2243
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
1479
2244
|
currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
|
|
1480
2245
|
isUninitialized: false;
|
|
1481
2246
|
isLoading: false;
|
|
@@ -1490,7 +2255,10 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1490
2255
|
isSuccess: true;
|
|
1491
2256
|
isFetching: true;
|
|
1492
2257
|
error: undefined;
|
|
1493
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
2258
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2259
|
+
mentor: string;
|
|
2260
|
+
org: string;
|
|
2261
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
1494
2262
|
currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
|
|
1495
2263
|
isUninitialized: false;
|
|
1496
2264
|
isLoading: false;
|
|
@@ -1501,7 +2269,10 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1501
2269
|
isSuccess: true;
|
|
1502
2270
|
isFetching: false;
|
|
1503
2271
|
error: undefined;
|
|
1504
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
2272
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2273
|
+
mentor: string;
|
|
2274
|
+
org: string;
|
|
2275
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
1505
2276
|
currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
|
|
1506
2277
|
isUninitialized: false;
|
|
1507
2278
|
isLoading: false;
|
|
@@ -1510,7 +2281,10 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1510
2281
|
isError: false;
|
|
1511
2282
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
1512
2283
|
isError: true;
|
|
1513
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
2284
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2285
|
+
mentor: string;
|
|
2286
|
+
org: string;
|
|
2287
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
1514
2288
|
currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
|
|
1515
2289
|
isUninitialized: false;
|
|
1516
2290
|
isLoading: false;
|
|
@@ -1521,7 +2295,10 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1521
2295
|
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
1522
2296
|
}) => R) | undefined;
|
|
1523
2297
|
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
1524
|
-
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
2298
|
+
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2299
|
+
mentor: string;
|
|
2300
|
+
org: string;
|
|
2301
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>>;
|
|
1525
2302
|
}, useLazyGetMentorPublicSettingsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
1526
2303
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1527
2304
|
originalArgs?: undefined | undefined;
|
|
@@ -1540,7 +2317,10 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1540
2317
|
isError: false;
|
|
1541
2318
|
}, "isUninitialized"> & {
|
|
1542
2319
|
isUninitialized: true;
|
|
1543
|
-
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
2320
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2321
|
+
mentor: string;
|
|
2322
|
+
org: string;
|
|
2323
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
1544
2324
|
currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
|
|
1545
2325
|
isUninitialized: false;
|
|
1546
2326
|
isLoading: false;
|
|
@@ -1555,7 +2335,10 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1555
2335
|
isSuccess: true;
|
|
1556
2336
|
isFetching: true;
|
|
1557
2337
|
error: undefined;
|
|
1558
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
2338
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2339
|
+
mentor: string;
|
|
2340
|
+
org: string;
|
|
2341
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
1559
2342
|
currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
|
|
1560
2343
|
isUninitialized: false;
|
|
1561
2344
|
isLoading: false;
|
|
@@ -1566,7 +2349,10 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1566
2349
|
isSuccess: true;
|
|
1567
2350
|
isFetching: false;
|
|
1568
2351
|
error: undefined;
|
|
1569
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
2352
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2353
|
+
mentor: string;
|
|
2354
|
+
org: string;
|
|
2355
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
1570
2356
|
currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
|
|
1571
2357
|
isUninitialized: false;
|
|
1572
2358
|
isLoading: false;
|
|
@@ -1575,7 +2361,10 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1575
2361
|
isError: false;
|
|
1576
2362
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
1577
2363
|
isError: true;
|
|
1578
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
2364
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2365
|
+
mentor: string;
|
|
2366
|
+
org: string;
|
|
2367
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
1579
2368
|
currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
|
|
1580
2369
|
isUninitialized: false;
|
|
1581
2370
|
isLoading: false;
|
|
@@ -1604,7 +2393,10 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1604
2393
|
isError: false;
|
|
1605
2394
|
}, "isUninitialized"> & {
|
|
1606
2395
|
isUninitialized: true;
|
|
1607
|
-
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
2396
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2397
|
+
mentor: string;
|
|
2398
|
+
org: string;
|
|
2399
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
1608
2400
|
currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
|
|
1609
2401
|
isUninitialized: false;
|
|
1610
2402
|
isLoading: false;
|
|
@@ -1619,7 +2411,10 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1619
2411
|
isSuccess: true;
|
|
1620
2412
|
isFetching: true;
|
|
1621
2413
|
error: undefined;
|
|
1622
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
2414
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2415
|
+
mentor: string;
|
|
2416
|
+
org: string;
|
|
2417
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
1623
2418
|
currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
|
|
1624
2419
|
isUninitialized: false;
|
|
1625
2420
|
isLoading: false;
|
|
@@ -1630,7 +2425,10 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1630
2425
|
isSuccess: true;
|
|
1631
2426
|
isFetching: false;
|
|
1632
2427
|
error: undefined;
|
|
1633
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
2428
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2429
|
+
mentor: string;
|
|
2430
|
+
org: string;
|
|
2431
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
1634
2432
|
currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
|
|
1635
2433
|
isUninitialized: false;
|
|
1636
2434
|
isLoading: false;
|
|
@@ -1639,7 +2437,10 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1639
2437
|
isError: false;
|
|
1640
2438
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
1641
2439
|
isError: true;
|
|
1642
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
2440
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2441
|
+
mentor: string;
|
|
2442
|
+
org: string;
|
|
2443
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
1643
2444
|
currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
|
|
1644
2445
|
isUninitialized: false;
|
|
1645
2446
|
isLoading: false;
|
|
@@ -1649,11 +2450,20 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1649
2450
|
}, "error">>)>> & {
|
|
1650
2451
|
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
1651
2452
|
}) => R) | undefined;
|
|
1652
|
-
}, "skip">) | undefined) => [(arg:
|
|
2453
|
+
}, "skip">) | undefined) => [(arg: {
|
|
2454
|
+
mentor: string;
|
|
2455
|
+
org: string;
|
|
2456
|
+
}, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2457
|
+
mentor: string;
|
|
2458
|
+
org: string;
|
|
2459
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
1653
2460
|
reset: () => void;
|
|
1654
2461
|
}, {
|
|
1655
|
-
lastArg:
|
|
1656
|
-
|
|
2462
|
+
lastArg: {
|
|
2463
|
+
mentor: string;
|
|
2464
|
+
org: string;
|
|
2465
|
+
};
|
|
2466
|
+
}], useUpdateMentorVisibilityStatusMutation: <R extends Record<string, any> = ({
|
|
1657
2467
|
requestId?: undefined;
|
|
1658
2468
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1659
2469
|
data?: undefined;
|
|
@@ -1810,7 +2620,1679 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1810
2620
|
isError: true;
|
|
1811
2621
|
})) => R) | undefined;
|
|
1812
2622
|
fixedCacheKey?: string;
|
|
1813
|
-
} | undefined) => readonly [(arg:
|
|
1814
|
-
|
|
2623
|
+
} | undefined) => readonly [(arg: {
|
|
2624
|
+
mentor: string;
|
|
2625
|
+
org: string;
|
|
2626
|
+
departmentId?: number;
|
|
2627
|
+
formData?: import("@iblai/iblai-api").MentorSettingsRequest;
|
|
2628
|
+
}) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
2629
|
+
mentor: string;
|
|
2630
|
+
org: string;
|
|
2631
|
+
departmentId?: number;
|
|
2632
|
+
formData?: import("@iblai/iblai-api").MentorSettingsRequest;
|
|
2633
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettings, "mentorApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
2634
|
+
originalArgs?: {
|
|
2635
|
+
mentor: string;
|
|
2636
|
+
org: string;
|
|
2637
|
+
departmentId?: number;
|
|
2638
|
+
formData?: import("@iblai/iblai-api").MentorSettingsRequest;
|
|
2639
|
+
} | undefined;
|
|
2640
|
+
reset: () => void;
|
|
2641
|
+
}], useGetFreeUsageCountQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
2642
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
2643
|
+
originalArgs?: undefined | undefined;
|
|
2644
|
+
data?: undefined | undefined;
|
|
2645
|
+
error?: undefined | undefined;
|
|
2646
|
+
requestId?: undefined | undefined;
|
|
2647
|
+
endpointName?: string | undefined;
|
|
2648
|
+
startedTimeStamp?: undefined | undefined;
|
|
2649
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
2650
|
+
} & {
|
|
2651
|
+
currentData?: import("@iblai/iblai-api").FreeUsageCount | undefined;
|
|
2652
|
+
isUninitialized: false;
|
|
2653
|
+
isLoading: false;
|
|
2654
|
+
isFetching: false;
|
|
2655
|
+
isSuccess: false;
|
|
2656
|
+
isError: false;
|
|
2657
|
+
}, "isUninitialized"> & {
|
|
2658
|
+
isUninitialized: true;
|
|
2659
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2660
|
+
org: string;
|
|
2661
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").FreeUsageCount, "mentorApiSlice", any>> & {
|
|
2662
|
+
currentData?: import("@iblai/iblai-api").FreeUsageCount | undefined;
|
|
2663
|
+
isUninitialized: false;
|
|
2664
|
+
isLoading: false;
|
|
2665
|
+
isFetching: false;
|
|
2666
|
+
isSuccess: false;
|
|
2667
|
+
isError: false;
|
|
2668
|
+
}, {
|
|
2669
|
+
isLoading: true;
|
|
2670
|
+
isFetching: boolean;
|
|
2671
|
+
data: undefined;
|
|
2672
|
+
} | ({
|
|
2673
|
+
isSuccess: true;
|
|
2674
|
+
isFetching: true;
|
|
2675
|
+
error: undefined;
|
|
2676
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2677
|
+
org: string;
|
|
2678
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").FreeUsageCount, "mentorApiSlice", any>> & {
|
|
2679
|
+
currentData?: import("@iblai/iblai-api").FreeUsageCount | undefined;
|
|
2680
|
+
isUninitialized: false;
|
|
2681
|
+
isLoading: false;
|
|
2682
|
+
isFetching: false;
|
|
2683
|
+
isSuccess: false;
|
|
2684
|
+
isError: false;
|
|
2685
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
2686
|
+
isSuccess: true;
|
|
2687
|
+
isFetching: false;
|
|
2688
|
+
error: undefined;
|
|
2689
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2690
|
+
org: string;
|
|
2691
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").FreeUsageCount, "mentorApiSlice", any>> & {
|
|
2692
|
+
currentData?: import("@iblai/iblai-api").FreeUsageCount | undefined;
|
|
2693
|
+
isUninitialized: false;
|
|
2694
|
+
isLoading: false;
|
|
2695
|
+
isFetching: false;
|
|
2696
|
+
isSuccess: false;
|
|
2697
|
+
isError: false;
|
|
2698
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
2699
|
+
isError: true;
|
|
2700
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2701
|
+
org: string;
|
|
2702
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").FreeUsageCount, "mentorApiSlice", any>> & {
|
|
2703
|
+
currentData?: import("@iblai/iblai-api").FreeUsageCount | undefined;
|
|
2704
|
+
isUninitialized: false;
|
|
2705
|
+
isLoading: false;
|
|
2706
|
+
isFetching: false;
|
|
2707
|
+
isSuccess: false;
|
|
2708
|
+
isError: false;
|
|
2709
|
+
}, "error">>)>> & {
|
|
2710
|
+
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
2711
|
+
}>(arg: {
|
|
2712
|
+
org: string;
|
|
2713
|
+
} | typeof import("@reduxjs/toolkit/query").skipToken, options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & {
|
|
2714
|
+
skip?: boolean;
|
|
2715
|
+
refetchOnMountOrArgChange?: boolean | number;
|
|
2716
|
+
} & {
|
|
2717
|
+
skip?: boolean;
|
|
2718
|
+
selectFromResult?: ((state: import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
2719
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
2720
|
+
originalArgs?: undefined | undefined;
|
|
2721
|
+
data?: undefined | undefined;
|
|
2722
|
+
error?: undefined | undefined;
|
|
2723
|
+
requestId?: undefined | undefined;
|
|
2724
|
+
endpointName?: string | undefined;
|
|
2725
|
+
startedTimeStamp?: undefined | undefined;
|
|
2726
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
2727
|
+
} & {
|
|
2728
|
+
currentData?: import("@iblai/iblai-api").FreeUsageCount | undefined;
|
|
2729
|
+
isUninitialized: false;
|
|
2730
|
+
isLoading: false;
|
|
2731
|
+
isFetching: false;
|
|
2732
|
+
isSuccess: false;
|
|
2733
|
+
isError: false;
|
|
2734
|
+
}, "isUninitialized"> & {
|
|
2735
|
+
isUninitialized: true;
|
|
2736
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2737
|
+
org: string;
|
|
2738
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").FreeUsageCount, "mentorApiSlice", any>> & {
|
|
2739
|
+
currentData?: import("@iblai/iblai-api").FreeUsageCount | undefined;
|
|
2740
|
+
isUninitialized: false;
|
|
2741
|
+
isLoading: false;
|
|
2742
|
+
isFetching: false;
|
|
2743
|
+
isSuccess: false;
|
|
2744
|
+
isError: false;
|
|
2745
|
+
}, {
|
|
2746
|
+
isLoading: true;
|
|
2747
|
+
isFetching: boolean;
|
|
2748
|
+
data: undefined;
|
|
2749
|
+
} | ({
|
|
2750
|
+
isSuccess: true;
|
|
2751
|
+
isFetching: true;
|
|
2752
|
+
error: undefined;
|
|
2753
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2754
|
+
org: string;
|
|
2755
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").FreeUsageCount, "mentorApiSlice", any>> & {
|
|
2756
|
+
currentData?: import("@iblai/iblai-api").FreeUsageCount | undefined;
|
|
2757
|
+
isUninitialized: false;
|
|
2758
|
+
isLoading: false;
|
|
2759
|
+
isFetching: false;
|
|
2760
|
+
isSuccess: false;
|
|
2761
|
+
isError: false;
|
|
2762
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
2763
|
+
isSuccess: true;
|
|
2764
|
+
isFetching: false;
|
|
2765
|
+
error: undefined;
|
|
2766
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2767
|
+
org: string;
|
|
2768
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").FreeUsageCount, "mentorApiSlice", any>> & {
|
|
2769
|
+
currentData?: import("@iblai/iblai-api").FreeUsageCount | undefined;
|
|
2770
|
+
isUninitialized: false;
|
|
2771
|
+
isLoading: false;
|
|
2772
|
+
isFetching: false;
|
|
2773
|
+
isSuccess: false;
|
|
2774
|
+
isError: false;
|
|
2775
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
2776
|
+
isError: true;
|
|
2777
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2778
|
+
org: string;
|
|
2779
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").FreeUsageCount, "mentorApiSlice", any>> & {
|
|
2780
|
+
currentData?: import("@iblai/iblai-api").FreeUsageCount | undefined;
|
|
2781
|
+
isUninitialized: false;
|
|
2782
|
+
isLoading: false;
|
|
2783
|
+
isFetching: false;
|
|
2784
|
+
isSuccess: false;
|
|
2785
|
+
isError: false;
|
|
2786
|
+
}, "error">>)>> & {
|
|
2787
|
+
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
2788
|
+
}) => R) | undefined;
|
|
2789
|
+
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
2790
|
+
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2791
|
+
org: string;
|
|
2792
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").FreeUsageCount, "mentorApiSlice", any>>;
|
|
2793
|
+
}, useLazyGetFreeUsageCountQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
2794
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
2795
|
+
originalArgs?: undefined | undefined;
|
|
2796
|
+
data?: undefined | undefined;
|
|
2797
|
+
error?: undefined | undefined;
|
|
2798
|
+
requestId?: undefined | undefined;
|
|
2799
|
+
endpointName?: string | undefined;
|
|
2800
|
+
startedTimeStamp?: undefined | undefined;
|
|
2801
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
2802
|
+
} & {
|
|
2803
|
+
currentData?: import("@iblai/iblai-api").FreeUsageCount | undefined;
|
|
2804
|
+
isUninitialized: false;
|
|
2805
|
+
isLoading: false;
|
|
2806
|
+
isFetching: false;
|
|
2807
|
+
isSuccess: false;
|
|
2808
|
+
isError: false;
|
|
2809
|
+
}, "isUninitialized"> & {
|
|
2810
|
+
isUninitialized: true;
|
|
2811
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2812
|
+
org: string;
|
|
2813
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").FreeUsageCount, "mentorApiSlice", any>> & {
|
|
2814
|
+
currentData?: import("@iblai/iblai-api").FreeUsageCount | undefined;
|
|
2815
|
+
isUninitialized: false;
|
|
2816
|
+
isLoading: false;
|
|
2817
|
+
isFetching: false;
|
|
2818
|
+
isSuccess: false;
|
|
2819
|
+
isError: false;
|
|
2820
|
+
}, {
|
|
2821
|
+
isLoading: true;
|
|
2822
|
+
isFetching: boolean;
|
|
2823
|
+
data: undefined;
|
|
2824
|
+
} | ({
|
|
2825
|
+
isSuccess: true;
|
|
2826
|
+
isFetching: true;
|
|
2827
|
+
error: undefined;
|
|
2828
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2829
|
+
org: string;
|
|
2830
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").FreeUsageCount, "mentorApiSlice", any>> & {
|
|
2831
|
+
currentData?: import("@iblai/iblai-api").FreeUsageCount | undefined;
|
|
2832
|
+
isUninitialized: false;
|
|
2833
|
+
isLoading: false;
|
|
2834
|
+
isFetching: false;
|
|
2835
|
+
isSuccess: false;
|
|
2836
|
+
isError: false;
|
|
2837
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
2838
|
+
isSuccess: true;
|
|
2839
|
+
isFetching: false;
|
|
2840
|
+
error: undefined;
|
|
2841
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2842
|
+
org: string;
|
|
2843
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").FreeUsageCount, "mentorApiSlice", any>> & {
|
|
2844
|
+
currentData?: import("@iblai/iblai-api").FreeUsageCount | undefined;
|
|
2845
|
+
isUninitialized: false;
|
|
2846
|
+
isLoading: false;
|
|
2847
|
+
isFetching: false;
|
|
2848
|
+
isSuccess: false;
|
|
2849
|
+
isError: false;
|
|
2850
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
2851
|
+
isError: true;
|
|
2852
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2853
|
+
org: string;
|
|
2854
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").FreeUsageCount, "mentorApiSlice", any>> & {
|
|
2855
|
+
currentData?: import("@iblai/iblai-api").FreeUsageCount | undefined;
|
|
2856
|
+
isUninitialized: false;
|
|
2857
|
+
isLoading: false;
|
|
2858
|
+
isFetching: false;
|
|
2859
|
+
isSuccess: false;
|
|
2860
|
+
isError: false;
|
|
2861
|
+
}, "error">>)>> & {
|
|
2862
|
+
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
2863
|
+
}>(options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & Omit<{
|
|
2864
|
+
skip?: boolean;
|
|
2865
|
+
selectFromResult?: ((state: import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
2866
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
2867
|
+
originalArgs?: undefined | undefined;
|
|
2868
|
+
data?: undefined | undefined;
|
|
2869
|
+
error?: undefined | undefined;
|
|
2870
|
+
requestId?: undefined | undefined;
|
|
2871
|
+
endpointName?: string | undefined;
|
|
2872
|
+
startedTimeStamp?: undefined | undefined;
|
|
2873
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
2874
|
+
} & {
|
|
2875
|
+
currentData?: import("@iblai/iblai-api").FreeUsageCount | undefined;
|
|
2876
|
+
isUninitialized: false;
|
|
2877
|
+
isLoading: false;
|
|
2878
|
+
isFetching: false;
|
|
2879
|
+
isSuccess: false;
|
|
2880
|
+
isError: false;
|
|
2881
|
+
}, "isUninitialized"> & {
|
|
2882
|
+
isUninitialized: true;
|
|
2883
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2884
|
+
org: string;
|
|
2885
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").FreeUsageCount, "mentorApiSlice", any>> & {
|
|
2886
|
+
currentData?: import("@iblai/iblai-api").FreeUsageCount | undefined;
|
|
2887
|
+
isUninitialized: false;
|
|
2888
|
+
isLoading: false;
|
|
2889
|
+
isFetching: false;
|
|
2890
|
+
isSuccess: false;
|
|
2891
|
+
isError: false;
|
|
2892
|
+
}, {
|
|
2893
|
+
isLoading: true;
|
|
2894
|
+
isFetching: boolean;
|
|
2895
|
+
data: undefined;
|
|
2896
|
+
} | ({
|
|
2897
|
+
isSuccess: true;
|
|
2898
|
+
isFetching: true;
|
|
2899
|
+
error: undefined;
|
|
2900
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2901
|
+
org: string;
|
|
2902
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").FreeUsageCount, "mentorApiSlice", any>> & {
|
|
2903
|
+
currentData?: import("@iblai/iblai-api").FreeUsageCount | undefined;
|
|
2904
|
+
isUninitialized: false;
|
|
2905
|
+
isLoading: false;
|
|
2906
|
+
isFetching: false;
|
|
2907
|
+
isSuccess: false;
|
|
2908
|
+
isError: false;
|
|
2909
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
2910
|
+
isSuccess: true;
|
|
2911
|
+
isFetching: false;
|
|
2912
|
+
error: undefined;
|
|
2913
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2914
|
+
org: string;
|
|
2915
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").FreeUsageCount, "mentorApiSlice", any>> & {
|
|
2916
|
+
currentData?: import("@iblai/iblai-api").FreeUsageCount | undefined;
|
|
2917
|
+
isUninitialized: false;
|
|
2918
|
+
isLoading: false;
|
|
2919
|
+
isFetching: false;
|
|
2920
|
+
isSuccess: false;
|
|
2921
|
+
isError: false;
|
|
2922
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
2923
|
+
isError: true;
|
|
2924
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2925
|
+
org: string;
|
|
2926
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").FreeUsageCount, "mentorApiSlice", any>> & {
|
|
2927
|
+
currentData?: import("@iblai/iblai-api").FreeUsageCount | undefined;
|
|
2928
|
+
isUninitialized: false;
|
|
2929
|
+
isLoading: false;
|
|
2930
|
+
isFetching: false;
|
|
2931
|
+
isSuccess: false;
|
|
2932
|
+
isError: false;
|
|
2933
|
+
}, "error">>)>> & {
|
|
2934
|
+
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
2935
|
+
}) => R) | undefined;
|
|
2936
|
+
}, "skip">) | undefined) => [(arg: {
|
|
2937
|
+
org: string;
|
|
2938
|
+
}, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2939
|
+
org: string;
|
|
2940
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").FreeUsageCount, "mentorApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
2941
|
+
reset: () => void;
|
|
2942
|
+
}, {
|
|
2943
|
+
lastArg: {
|
|
2944
|
+
org: string;
|
|
2945
|
+
};
|
|
2946
|
+
}], useCreateShareableLinkMutation: <R extends Record<string, any> = ({
|
|
2947
|
+
requestId?: undefined;
|
|
2948
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
2949
|
+
data?: undefined;
|
|
2950
|
+
error?: undefined;
|
|
2951
|
+
endpointName?: string;
|
|
2952
|
+
startedTimeStamp?: undefined;
|
|
2953
|
+
fulfilledTimeStamp?: undefined;
|
|
2954
|
+
} & {
|
|
2955
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
2956
|
+
isUninitialized: true;
|
|
2957
|
+
isLoading: false;
|
|
2958
|
+
isSuccess: false;
|
|
2959
|
+
isError: false;
|
|
2960
|
+
}) | ({
|
|
2961
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
2962
|
+
} & Omit<{
|
|
2963
|
+
requestId: string;
|
|
2964
|
+
data?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
|
|
2965
|
+
error?: unknown;
|
|
2966
|
+
endpointName: string;
|
|
2967
|
+
startedTimeStamp: number;
|
|
2968
|
+
fulfilledTimeStamp?: number;
|
|
2969
|
+
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
2970
|
+
requestId: string;
|
|
2971
|
+
data?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
|
|
2972
|
+
error?: unknown;
|
|
2973
|
+
endpointName: string;
|
|
2974
|
+
startedTimeStamp: number;
|
|
2975
|
+
fulfilledTimeStamp?: number;
|
|
2976
|
+
}, "data" | "fulfilledTimeStamp">> & {
|
|
2977
|
+
error: undefined;
|
|
2978
|
+
} & {
|
|
2979
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
2980
|
+
isUninitialized: false;
|
|
2981
|
+
isLoading: false;
|
|
2982
|
+
isSuccess: true;
|
|
2983
|
+
isError: false;
|
|
2984
|
+
}) | ({
|
|
2985
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
2986
|
+
} & {
|
|
2987
|
+
requestId: string;
|
|
2988
|
+
data?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
|
|
2989
|
+
error?: unknown;
|
|
2990
|
+
endpointName: string;
|
|
2991
|
+
startedTimeStamp: number;
|
|
2992
|
+
fulfilledTimeStamp?: number;
|
|
2993
|
+
} & {
|
|
2994
|
+
data?: undefined;
|
|
2995
|
+
} & {
|
|
2996
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
2997
|
+
isUninitialized: false;
|
|
2998
|
+
isLoading: true;
|
|
2999
|
+
isSuccess: false;
|
|
3000
|
+
isError: false;
|
|
3001
|
+
}) | ({
|
|
3002
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
3003
|
+
} & Omit<{
|
|
3004
|
+
requestId: string;
|
|
3005
|
+
data?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
|
|
3006
|
+
error?: unknown;
|
|
3007
|
+
endpointName: string;
|
|
3008
|
+
startedTimeStamp: number;
|
|
3009
|
+
fulfilledTimeStamp?: number;
|
|
3010
|
+
}, "error"> & Required<Pick<{
|
|
3011
|
+
requestId: string;
|
|
3012
|
+
data?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
|
|
3013
|
+
error?: unknown;
|
|
3014
|
+
endpointName: string;
|
|
3015
|
+
startedTimeStamp: number;
|
|
3016
|
+
fulfilledTimeStamp?: number;
|
|
3017
|
+
}, "error">> & {
|
|
3018
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
3019
|
+
isUninitialized: false;
|
|
3020
|
+
isLoading: false;
|
|
3021
|
+
isSuccess: false;
|
|
3022
|
+
isError: true;
|
|
3023
|
+
})>(options?: {
|
|
3024
|
+
selectFromResult?: ((state: ({
|
|
3025
|
+
requestId?: undefined;
|
|
3026
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
3027
|
+
data?: undefined;
|
|
3028
|
+
error?: undefined;
|
|
3029
|
+
endpointName?: string;
|
|
3030
|
+
startedTimeStamp?: undefined;
|
|
3031
|
+
fulfilledTimeStamp?: undefined;
|
|
3032
|
+
} & {
|
|
3033
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
3034
|
+
isUninitialized: true;
|
|
3035
|
+
isLoading: false;
|
|
3036
|
+
isSuccess: false;
|
|
3037
|
+
isError: false;
|
|
3038
|
+
}) | ({
|
|
3039
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
3040
|
+
} & Omit<{
|
|
3041
|
+
requestId: string;
|
|
3042
|
+
data?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
|
|
3043
|
+
error?: unknown;
|
|
3044
|
+
endpointName: string;
|
|
3045
|
+
startedTimeStamp: number;
|
|
3046
|
+
fulfilledTimeStamp?: number;
|
|
3047
|
+
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
3048
|
+
requestId: string;
|
|
3049
|
+
data?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
|
|
3050
|
+
error?: unknown;
|
|
3051
|
+
endpointName: string;
|
|
3052
|
+
startedTimeStamp: number;
|
|
3053
|
+
fulfilledTimeStamp?: number;
|
|
3054
|
+
}, "data" | "fulfilledTimeStamp">> & {
|
|
3055
|
+
error: undefined;
|
|
3056
|
+
} & {
|
|
3057
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
3058
|
+
isUninitialized: false;
|
|
3059
|
+
isLoading: false;
|
|
3060
|
+
isSuccess: true;
|
|
3061
|
+
isError: false;
|
|
3062
|
+
}) | ({
|
|
3063
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
3064
|
+
} & {
|
|
3065
|
+
requestId: string;
|
|
3066
|
+
data?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
|
|
3067
|
+
error?: unknown;
|
|
3068
|
+
endpointName: string;
|
|
3069
|
+
startedTimeStamp: number;
|
|
3070
|
+
fulfilledTimeStamp?: number;
|
|
3071
|
+
} & {
|
|
3072
|
+
data?: undefined;
|
|
3073
|
+
} & {
|
|
3074
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
3075
|
+
isUninitialized: false;
|
|
3076
|
+
isLoading: true;
|
|
3077
|
+
isSuccess: false;
|
|
3078
|
+
isError: false;
|
|
3079
|
+
}) | ({
|
|
3080
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
3081
|
+
} & Omit<{
|
|
3082
|
+
requestId: string;
|
|
3083
|
+
data?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
|
|
3084
|
+
error?: unknown;
|
|
3085
|
+
endpointName: string;
|
|
3086
|
+
startedTimeStamp: number;
|
|
3087
|
+
fulfilledTimeStamp?: number;
|
|
3088
|
+
}, "error"> & Required<Pick<{
|
|
3089
|
+
requestId: string;
|
|
3090
|
+
data?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
|
|
3091
|
+
error?: unknown;
|
|
3092
|
+
endpointName: string;
|
|
3093
|
+
startedTimeStamp: number;
|
|
3094
|
+
fulfilledTimeStamp?: number;
|
|
3095
|
+
}, "error">> & {
|
|
3096
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
3097
|
+
isUninitialized: false;
|
|
3098
|
+
isLoading: false;
|
|
3099
|
+
isSuccess: false;
|
|
3100
|
+
isError: true;
|
|
3101
|
+
})) => R) | undefined;
|
|
3102
|
+
fixedCacheKey?: string;
|
|
3103
|
+
} | undefined) => readonly [(arg: {
|
|
3104
|
+
mentor: string;
|
|
3105
|
+
org: string;
|
|
3106
|
+
requestBody?: import("@iblai/iblai-api").ShareableMentorLink;
|
|
3107
|
+
}) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
3108
|
+
mentor: string;
|
|
3109
|
+
org: string;
|
|
3110
|
+
requestBody?: import("@iblai/iblai-api").ShareableMentorLink;
|
|
3111
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
3112
|
+
originalArgs?: {
|
|
3113
|
+
mentor: string;
|
|
3114
|
+
org: string;
|
|
3115
|
+
requestBody?: import("@iblai/iblai-api").ShareableMentorLink;
|
|
3116
|
+
} | undefined;
|
|
3117
|
+
reset: () => void;
|
|
3118
|
+
}], useGetShareableLinkQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
3119
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
3120
|
+
originalArgs?: undefined | undefined;
|
|
3121
|
+
data?: undefined | undefined;
|
|
3122
|
+
error?: undefined | undefined;
|
|
3123
|
+
requestId?: undefined | undefined;
|
|
3124
|
+
endpointName?: string | undefined;
|
|
3125
|
+
startedTimeStamp?: undefined | undefined;
|
|
3126
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
3127
|
+
} & {
|
|
3128
|
+
currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
|
|
3129
|
+
isUninitialized: false;
|
|
3130
|
+
isLoading: false;
|
|
3131
|
+
isFetching: false;
|
|
3132
|
+
isSuccess: false;
|
|
3133
|
+
isError: false;
|
|
3134
|
+
}, "isUninitialized"> & {
|
|
3135
|
+
isUninitialized: true;
|
|
3136
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3137
|
+
mentor: string;
|
|
3138
|
+
org: string;
|
|
3139
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3140
|
+
currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
|
|
3141
|
+
isUninitialized: false;
|
|
3142
|
+
isLoading: false;
|
|
3143
|
+
isFetching: false;
|
|
3144
|
+
isSuccess: false;
|
|
3145
|
+
isError: false;
|
|
3146
|
+
}, {
|
|
3147
|
+
isLoading: true;
|
|
3148
|
+
isFetching: boolean;
|
|
3149
|
+
data: undefined;
|
|
3150
|
+
} | ({
|
|
3151
|
+
isSuccess: true;
|
|
3152
|
+
isFetching: true;
|
|
3153
|
+
error: undefined;
|
|
3154
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3155
|
+
mentor: string;
|
|
3156
|
+
org: string;
|
|
3157
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3158
|
+
currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
|
|
3159
|
+
isUninitialized: false;
|
|
3160
|
+
isLoading: false;
|
|
3161
|
+
isFetching: false;
|
|
3162
|
+
isSuccess: false;
|
|
3163
|
+
isError: false;
|
|
3164
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
3165
|
+
isSuccess: true;
|
|
3166
|
+
isFetching: false;
|
|
3167
|
+
error: undefined;
|
|
3168
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3169
|
+
mentor: string;
|
|
3170
|
+
org: string;
|
|
3171
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3172
|
+
currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
|
|
3173
|
+
isUninitialized: false;
|
|
3174
|
+
isLoading: false;
|
|
3175
|
+
isFetching: false;
|
|
3176
|
+
isSuccess: false;
|
|
3177
|
+
isError: false;
|
|
3178
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
3179
|
+
isError: true;
|
|
3180
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3181
|
+
mentor: string;
|
|
3182
|
+
org: string;
|
|
3183
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3184
|
+
currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
|
|
3185
|
+
isUninitialized: false;
|
|
3186
|
+
isLoading: false;
|
|
3187
|
+
isFetching: false;
|
|
3188
|
+
isSuccess: false;
|
|
3189
|
+
isError: false;
|
|
3190
|
+
}, "error">>)>> & {
|
|
3191
|
+
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
3192
|
+
}>(arg: {
|
|
3193
|
+
mentor: string;
|
|
3194
|
+
org: string;
|
|
3195
|
+
} | typeof import("@reduxjs/toolkit/query").skipToken, options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & {
|
|
3196
|
+
skip?: boolean;
|
|
3197
|
+
refetchOnMountOrArgChange?: boolean | number;
|
|
3198
|
+
} & {
|
|
3199
|
+
skip?: boolean;
|
|
3200
|
+
selectFromResult?: ((state: import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
3201
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
3202
|
+
originalArgs?: undefined | undefined;
|
|
3203
|
+
data?: undefined | undefined;
|
|
3204
|
+
error?: undefined | undefined;
|
|
3205
|
+
requestId?: undefined | undefined;
|
|
3206
|
+
endpointName?: string | undefined;
|
|
3207
|
+
startedTimeStamp?: undefined | undefined;
|
|
3208
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
3209
|
+
} & {
|
|
3210
|
+
currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
|
|
3211
|
+
isUninitialized: false;
|
|
3212
|
+
isLoading: false;
|
|
3213
|
+
isFetching: false;
|
|
3214
|
+
isSuccess: false;
|
|
3215
|
+
isError: false;
|
|
3216
|
+
}, "isUninitialized"> & {
|
|
3217
|
+
isUninitialized: true;
|
|
3218
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3219
|
+
mentor: string;
|
|
3220
|
+
org: string;
|
|
3221
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3222
|
+
currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
|
|
3223
|
+
isUninitialized: false;
|
|
3224
|
+
isLoading: false;
|
|
3225
|
+
isFetching: false;
|
|
3226
|
+
isSuccess: false;
|
|
3227
|
+
isError: false;
|
|
3228
|
+
}, {
|
|
3229
|
+
isLoading: true;
|
|
3230
|
+
isFetching: boolean;
|
|
3231
|
+
data: undefined;
|
|
3232
|
+
} | ({
|
|
3233
|
+
isSuccess: true;
|
|
3234
|
+
isFetching: true;
|
|
3235
|
+
error: undefined;
|
|
3236
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3237
|
+
mentor: string;
|
|
3238
|
+
org: string;
|
|
3239
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3240
|
+
currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
|
|
3241
|
+
isUninitialized: false;
|
|
3242
|
+
isLoading: false;
|
|
3243
|
+
isFetching: false;
|
|
3244
|
+
isSuccess: false;
|
|
3245
|
+
isError: false;
|
|
3246
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
3247
|
+
isSuccess: true;
|
|
3248
|
+
isFetching: false;
|
|
3249
|
+
error: undefined;
|
|
3250
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3251
|
+
mentor: string;
|
|
3252
|
+
org: string;
|
|
3253
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3254
|
+
currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
|
|
3255
|
+
isUninitialized: false;
|
|
3256
|
+
isLoading: false;
|
|
3257
|
+
isFetching: false;
|
|
3258
|
+
isSuccess: false;
|
|
3259
|
+
isError: false;
|
|
3260
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
3261
|
+
isError: true;
|
|
3262
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3263
|
+
mentor: string;
|
|
3264
|
+
org: string;
|
|
3265
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3266
|
+
currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
|
|
3267
|
+
isUninitialized: false;
|
|
3268
|
+
isLoading: false;
|
|
3269
|
+
isFetching: false;
|
|
3270
|
+
isSuccess: false;
|
|
3271
|
+
isError: false;
|
|
3272
|
+
}, "error">>)>> & {
|
|
3273
|
+
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
3274
|
+
}) => R) | undefined;
|
|
3275
|
+
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
3276
|
+
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3277
|
+
mentor: string;
|
|
3278
|
+
org: string;
|
|
3279
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>>;
|
|
3280
|
+
}, useLazyGetShareableLinkQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
3281
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
3282
|
+
originalArgs?: undefined | undefined;
|
|
3283
|
+
data?: undefined | undefined;
|
|
3284
|
+
error?: undefined | undefined;
|
|
3285
|
+
requestId?: undefined | undefined;
|
|
3286
|
+
endpointName?: string | undefined;
|
|
3287
|
+
startedTimeStamp?: undefined | undefined;
|
|
3288
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
3289
|
+
} & {
|
|
3290
|
+
currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
|
|
3291
|
+
isUninitialized: false;
|
|
3292
|
+
isLoading: false;
|
|
3293
|
+
isFetching: false;
|
|
3294
|
+
isSuccess: false;
|
|
3295
|
+
isError: false;
|
|
3296
|
+
}, "isUninitialized"> & {
|
|
3297
|
+
isUninitialized: true;
|
|
3298
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3299
|
+
mentor: string;
|
|
3300
|
+
org: string;
|
|
3301
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3302
|
+
currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
|
|
3303
|
+
isUninitialized: false;
|
|
3304
|
+
isLoading: false;
|
|
3305
|
+
isFetching: false;
|
|
3306
|
+
isSuccess: false;
|
|
3307
|
+
isError: false;
|
|
3308
|
+
}, {
|
|
3309
|
+
isLoading: true;
|
|
3310
|
+
isFetching: boolean;
|
|
3311
|
+
data: undefined;
|
|
3312
|
+
} | ({
|
|
3313
|
+
isSuccess: true;
|
|
3314
|
+
isFetching: true;
|
|
3315
|
+
error: undefined;
|
|
3316
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3317
|
+
mentor: string;
|
|
3318
|
+
org: string;
|
|
3319
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3320
|
+
currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
|
|
3321
|
+
isUninitialized: false;
|
|
3322
|
+
isLoading: false;
|
|
3323
|
+
isFetching: false;
|
|
3324
|
+
isSuccess: false;
|
|
3325
|
+
isError: false;
|
|
3326
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
3327
|
+
isSuccess: true;
|
|
3328
|
+
isFetching: false;
|
|
3329
|
+
error: undefined;
|
|
3330
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3331
|
+
mentor: string;
|
|
3332
|
+
org: string;
|
|
3333
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3334
|
+
currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
|
|
3335
|
+
isUninitialized: false;
|
|
3336
|
+
isLoading: false;
|
|
3337
|
+
isFetching: false;
|
|
3338
|
+
isSuccess: false;
|
|
3339
|
+
isError: false;
|
|
3340
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
3341
|
+
isError: true;
|
|
3342
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3343
|
+
mentor: string;
|
|
3344
|
+
org: string;
|
|
3345
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3346
|
+
currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
|
|
3347
|
+
isUninitialized: false;
|
|
3348
|
+
isLoading: false;
|
|
3349
|
+
isFetching: false;
|
|
3350
|
+
isSuccess: false;
|
|
3351
|
+
isError: false;
|
|
3352
|
+
}, "error">>)>> & {
|
|
3353
|
+
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
3354
|
+
}>(options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & Omit<{
|
|
3355
|
+
skip?: boolean;
|
|
3356
|
+
selectFromResult?: ((state: import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
3357
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
3358
|
+
originalArgs?: undefined | undefined;
|
|
3359
|
+
data?: undefined | undefined;
|
|
3360
|
+
error?: undefined | undefined;
|
|
3361
|
+
requestId?: undefined | undefined;
|
|
3362
|
+
endpointName?: string | undefined;
|
|
3363
|
+
startedTimeStamp?: undefined | undefined;
|
|
3364
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
3365
|
+
} & {
|
|
3366
|
+
currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
|
|
3367
|
+
isUninitialized: false;
|
|
3368
|
+
isLoading: false;
|
|
3369
|
+
isFetching: false;
|
|
3370
|
+
isSuccess: false;
|
|
3371
|
+
isError: false;
|
|
3372
|
+
}, "isUninitialized"> & {
|
|
3373
|
+
isUninitialized: true;
|
|
3374
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3375
|
+
mentor: string;
|
|
3376
|
+
org: string;
|
|
3377
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3378
|
+
currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
|
|
3379
|
+
isUninitialized: false;
|
|
3380
|
+
isLoading: false;
|
|
3381
|
+
isFetching: false;
|
|
3382
|
+
isSuccess: false;
|
|
3383
|
+
isError: false;
|
|
3384
|
+
}, {
|
|
3385
|
+
isLoading: true;
|
|
3386
|
+
isFetching: boolean;
|
|
3387
|
+
data: undefined;
|
|
3388
|
+
} | ({
|
|
3389
|
+
isSuccess: true;
|
|
3390
|
+
isFetching: true;
|
|
3391
|
+
error: undefined;
|
|
3392
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3393
|
+
mentor: string;
|
|
3394
|
+
org: string;
|
|
3395
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3396
|
+
currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
|
|
3397
|
+
isUninitialized: false;
|
|
3398
|
+
isLoading: false;
|
|
3399
|
+
isFetching: false;
|
|
3400
|
+
isSuccess: false;
|
|
3401
|
+
isError: false;
|
|
3402
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
3403
|
+
isSuccess: true;
|
|
3404
|
+
isFetching: false;
|
|
3405
|
+
error: undefined;
|
|
3406
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3407
|
+
mentor: string;
|
|
3408
|
+
org: string;
|
|
3409
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3410
|
+
currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
|
|
3411
|
+
isUninitialized: false;
|
|
3412
|
+
isLoading: false;
|
|
3413
|
+
isFetching: false;
|
|
3414
|
+
isSuccess: false;
|
|
3415
|
+
isError: false;
|
|
3416
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
3417
|
+
isError: true;
|
|
3418
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3419
|
+
mentor: string;
|
|
3420
|
+
org: string;
|
|
3421
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3422
|
+
currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
|
|
3423
|
+
isUninitialized: false;
|
|
3424
|
+
isLoading: false;
|
|
3425
|
+
isFetching: false;
|
|
3426
|
+
isSuccess: false;
|
|
3427
|
+
isError: false;
|
|
3428
|
+
}, "error">>)>> & {
|
|
3429
|
+
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
3430
|
+
}) => R) | undefined;
|
|
3431
|
+
}, "skip">) | undefined) => [(arg: {
|
|
3432
|
+
mentor: string;
|
|
3433
|
+
org: string;
|
|
3434
|
+
}, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3435
|
+
mentor: string;
|
|
3436
|
+
org: string;
|
|
3437
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
3438
|
+
reset: () => void;
|
|
3439
|
+
}, {
|
|
3440
|
+
lastArg: {
|
|
3441
|
+
mentor: string;
|
|
3442
|
+
org: string;
|
|
3443
|
+
};
|
|
3444
|
+
}], useGetShareableLinkPublicQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
3445
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
3446
|
+
originalArgs?: undefined | undefined;
|
|
3447
|
+
data?: undefined | undefined;
|
|
3448
|
+
error?: undefined | undefined;
|
|
3449
|
+
requestId?: undefined | undefined;
|
|
3450
|
+
endpointName?: string | undefined;
|
|
3451
|
+
startedTimeStamp?: undefined | undefined;
|
|
3452
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
3453
|
+
} & {
|
|
3454
|
+
currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
|
|
3455
|
+
isUninitialized: false;
|
|
3456
|
+
isLoading: false;
|
|
3457
|
+
isFetching: false;
|
|
3458
|
+
isSuccess: false;
|
|
3459
|
+
isError: false;
|
|
3460
|
+
}, "isUninitialized"> & {
|
|
3461
|
+
isUninitialized: true;
|
|
3462
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3463
|
+
mentor: string;
|
|
3464
|
+
org: string;
|
|
3465
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3466
|
+
currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
|
|
3467
|
+
isUninitialized: false;
|
|
3468
|
+
isLoading: false;
|
|
3469
|
+
isFetching: false;
|
|
3470
|
+
isSuccess: false;
|
|
3471
|
+
isError: false;
|
|
3472
|
+
}, {
|
|
3473
|
+
isLoading: true;
|
|
3474
|
+
isFetching: boolean;
|
|
3475
|
+
data: undefined;
|
|
3476
|
+
} | ({
|
|
3477
|
+
isSuccess: true;
|
|
3478
|
+
isFetching: true;
|
|
3479
|
+
error: undefined;
|
|
3480
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3481
|
+
mentor: string;
|
|
3482
|
+
org: string;
|
|
3483
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3484
|
+
currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
|
|
3485
|
+
isUninitialized: false;
|
|
3486
|
+
isLoading: false;
|
|
3487
|
+
isFetching: false;
|
|
3488
|
+
isSuccess: false;
|
|
3489
|
+
isError: false;
|
|
3490
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
3491
|
+
isSuccess: true;
|
|
3492
|
+
isFetching: false;
|
|
3493
|
+
error: undefined;
|
|
3494
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3495
|
+
mentor: string;
|
|
3496
|
+
org: string;
|
|
3497
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3498
|
+
currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
|
|
3499
|
+
isUninitialized: false;
|
|
3500
|
+
isLoading: false;
|
|
3501
|
+
isFetching: false;
|
|
3502
|
+
isSuccess: false;
|
|
3503
|
+
isError: false;
|
|
3504
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
3505
|
+
isError: true;
|
|
3506
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3507
|
+
mentor: string;
|
|
3508
|
+
org: string;
|
|
3509
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3510
|
+
currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
|
|
3511
|
+
isUninitialized: false;
|
|
3512
|
+
isLoading: false;
|
|
3513
|
+
isFetching: false;
|
|
3514
|
+
isSuccess: false;
|
|
3515
|
+
isError: false;
|
|
3516
|
+
}, "error">>)>> & {
|
|
3517
|
+
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
3518
|
+
}>(arg: {
|
|
3519
|
+
mentor: string;
|
|
3520
|
+
org: string;
|
|
3521
|
+
} | typeof import("@reduxjs/toolkit/query").skipToken, options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & {
|
|
3522
|
+
skip?: boolean;
|
|
3523
|
+
refetchOnMountOrArgChange?: boolean | number;
|
|
3524
|
+
} & {
|
|
3525
|
+
skip?: boolean;
|
|
3526
|
+
selectFromResult?: ((state: import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
3527
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
3528
|
+
originalArgs?: undefined | undefined;
|
|
3529
|
+
data?: undefined | undefined;
|
|
3530
|
+
error?: undefined | undefined;
|
|
3531
|
+
requestId?: undefined | undefined;
|
|
3532
|
+
endpointName?: string | undefined;
|
|
3533
|
+
startedTimeStamp?: undefined | undefined;
|
|
3534
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
3535
|
+
} & {
|
|
3536
|
+
currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
|
|
3537
|
+
isUninitialized: false;
|
|
3538
|
+
isLoading: false;
|
|
3539
|
+
isFetching: false;
|
|
3540
|
+
isSuccess: false;
|
|
3541
|
+
isError: false;
|
|
3542
|
+
}, "isUninitialized"> & {
|
|
3543
|
+
isUninitialized: true;
|
|
3544
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3545
|
+
mentor: string;
|
|
3546
|
+
org: string;
|
|
3547
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3548
|
+
currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
|
|
3549
|
+
isUninitialized: false;
|
|
3550
|
+
isLoading: false;
|
|
3551
|
+
isFetching: false;
|
|
3552
|
+
isSuccess: false;
|
|
3553
|
+
isError: false;
|
|
3554
|
+
}, {
|
|
3555
|
+
isLoading: true;
|
|
3556
|
+
isFetching: boolean;
|
|
3557
|
+
data: undefined;
|
|
3558
|
+
} | ({
|
|
3559
|
+
isSuccess: true;
|
|
3560
|
+
isFetching: true;
|
|
3561
|
+
error: undefined;
|
|
3562
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3563
|
+
mentor: string;
|
|
3564
|
+
org: string;
|
|
3565
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3566
|
+
currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
|
|
3567
|
+
isUninitialized: false;
|
|
3568
|
+
isLoading: false;
|
|
3569
|
+
isFetching: false;
|
|
3570
|
+
isSuccess: false;
|
|
3571
|
+
isError: false;
|
|
3572
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
3573
|
+
isSuccess: true;
|
|
3574
|
+
isFetching: false;
|
|
3575
|
+
error: undefined;
|
|
3576
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3577
|
+
mentor: string;
|
|
3578
|
+
org: string;
|
|
3579
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3580
|
+
currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
|
|
3581
|
+
isUninitialized: false;
|
|
3582
|
+
isLoading: false;
|
|
3583
|
+
isFetching: false;
|
|
3584
|
+
isSuccess: false;
|
|
3585
|
+
isError: false;
|
|
3586
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
3587
|
+
isError: true;
|
|
3588
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3589
|
+
mentor: string;
|
|
3590
|
+
org: string;
|
|
3591
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3592
|
+
currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
|
|
3593
|
+
isUninitialized: false;
|
|
3594
|
+
isLoading: false;
|
|
3595
|
+
isFetching: false;
|
|
3596
|
+
isSuccess: false;
|
|
3597
|
+
isError: false;
|
|
3598
|
+
}, "error">>)>> & {
|
|
3599
|
+
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
3600
|
+
}) => R) | undefined;
|
|
3601
|
+
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
3602
|
+
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3603
|
+
mentor: string;
|
|
3604
|
+
org: string;
|
|
3605
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>>;
|
|
3606
|
+
}, useLazyGetShareableLinkPublicQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
3607
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
3608
|
+
originalArgs?: undefined | undefined;
|
|
3609
|
+
data?: undefined | undefined;
|
|
3610
|
+
error?: undefined | undefined;
|
|
3611
|
+
requestId?: undefined | undefined;
|
|
3612
|
+
endpointName?: string | undefined;
|
|
3613
|
+
startedTimeStamp?: undefined | undefined;
|
|
3614
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
3615
|
+
} & {
|
|
3616
|
+
currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
|
|
3617
|
+
isUninitialized: false;
|
|
3618
|
+
isLoading: false;
|
|
3619
|
+
isFetching: false;
|
|
3620
|
+
isSuccess: false;
|
|
3621
|
+
isError: false;
|
|
3622
|
+
}, "isUninitialized"> & {
|
|
3623
|
+
isUninitialized: true;
|
|
3624
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3625
|
+
mentor: string;
|
|
3626
|
+
org: string;
|
|
3627
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3628
|
+
currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
|
|
3629
|
+
isUninitialized: false;
|
|
3630
|
+
isLoading: false;
|
|
3631
|
+
isFetching: false;
|
|
3632
|
+
isSuccess: false;
|
|
3633
|
+
isError: false;
|
|
3634
|
+
}, {
|
|
3635
|
+
isLoading: true;
|
|
3636
|
+
isFetching: boolean;
|
|
3637
|
+
data: undefined;
|
|
3638
|
+
} | ({
|
|
3639
|
+
isSuccess: true;
|
|
3640
|
+
isFetching: true;
|
|
3641
|
+
error: undefined;
|
|
3642
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3643
|
+
mentor: string;
|
|
3644
|
+
org: string;
|
|
3645
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3646
|
+
currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
|
|
3647
|
+
isUninitialized: false;
|
|
3648
|
+
isLoading: false;
|
|
3649
|
+
isFetching: false;
|
|
3650
|
+
isSuccess: false;
|
|
3651
|
+
isError: false;
|
|
3652
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
3653
|
+
isSuccess: true;
|
|
3654
|
+
isFetching: false;
|
|
3655
|
+
error: undefined;
|
|
3656
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3657
|
+
mentor: string;
|
|
3658
|
+
org: string;
|
|
3659
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3660
|
+
currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
|
|
3661
|
+
isUninitialized: false;
|
|
3662
|
+
isLoading: false;
|
|
3663
|
+
isFetching: false;
|
|
3664
|
+
isSuccess: false;
|
|
3665
|
+
isError: false;
|
|
3666
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
3667
|
+
isError: true;
|
|
3668
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3669
|
+
mentor: string;
|
|
3670
|
+
org: string;
|
|
3671
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3672
|
+
currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
|
|
3673
|
+
isUninitialized: false;
|
|
3674
|
+
isLoading: false;
|
|
3675
|
+
isFetching: false;
|
|
3676
|
+
isSuccess: false;
|
|
3677
|
+
isError: false;
|
|
3678
|
+
}, "error">>)>> & {
|
|
3679
|
+
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
3680
|
+
}>(options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & Omit<{
|
|
3681
|
+
skip?: boolean;
|
|
3682
|
+
selectFromResult?: ((state: import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
3683
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
3684
|
+
originalArgs?: undefined | undefined;
|
|
3685
|
+
data?: undefined | undefined;
|
|
3686
|
+
error?: undefined | undefined;
|
|
3687
|
+
requestId?: undefined | undefined;
|
|
3688
|
+
endpointName?: string | undefined;
|
|
3689
|
+
startedTimeStamp?: undefined | undefined;
|
|
3690
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
3691
|
+
} & {
|
|
3692
|
+
currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
|
|
3693
|
+
isUninitialized: false;
|
|
3694
|
+
isLoading: false;
|
|
3695
|
+
isFetching: false;
|
|
3696
|
+
isSuccess: false;
|
|
3697
|
+
isError: false;
|
|
3698
|
+
}, "isUninitialized"> & {
|
|
3699
|
+
isUninitialized: true;
|
|
3700
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3701
|
+
mentor: string;
|
|
3702
|
+
org: string;
|
|
3703
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3704
|
+
currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
|
|
3705
|
+
isUninitialized: false;
|
|
3706
|
+
isLoading: false;
|
|
3707
|
+
isFetching: false;
|
|
3708
|
+
isSuccess: false;
|
|
3709
|
+
isError: false;
|
|
3710
|
+
}, {
|
|
3711
|
+
isLoading: true;
|
|
3712
|
+
isFetching: boolean;
|
|
3713
|
+
data: undefined;
|
|
3714
|
+
} | ({
|
|
3715
|
+
isSuccess: true;
|
|
3716
|
+
isFetching: true;
|
|
3717
|
+
error: undefined;
|
|
3718
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3719
|
+
mentor: string;
|
|
3720
|
+
org: string;
|
|
3721
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3722
|
+
currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
|
|
3723
|
+
isUninitialized: false;
|
|
3724
|
+
isLoading: false;
|
|
3725
|
+
isFetching: false;
|
|
3726
|
+
isSuccess: false;
|
|
3727
|
+
isError: false;
|
|
3728
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
3729
|
+
isSuccess: true;
|
|
3730
|
+
isFetching: false;
|
|
3731
|
+
error: undefined;
|
|
3732
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3733
|
+
mentor: string;
|
|
3734
|
+
org: string;
|
|
3735
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3736
|
+
currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
|
|
3737
|
+
isUninitialized: false;
|
|
3738
|
+
isLoading: false;
|
|
3739
|
+
isFetching: false;
|
|
3740
|
+
isSuccess: false;
|
|
3741
|
+
isError: false;
|
|
3742
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
3743
|
+
isError: true;
|
|
3744
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3745
|
+
mentor: string;
|
|
3746
|
+
org: string;
|
|
3747
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3748
|
+
currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
|
|
3749
|
+
isUninitialized: false;
|
|
3750
|
+
isLoading: false;
|
|
3751
|
+
isFetching: false;
|
|
3752
|
+
isSuccess: false;
|
|
3753
|
+
isError: false;
|
|
3754
|
+
}, "error">>)>> & {
|
|
3755
|
+
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
3756
|
+
}) => R) | undefined;
|
|
3757
|
+
}, "skip">) | undefined) => [(arg: {
|
|
3758
|
+
mentor: string;
|
|
3759
|
+
org: string;
|
|
3760
|
+
}, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3761
|
+
mentor: string;
|
|
3762
|
+
org: string;
|
|
3763
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
3764
|
+
reset: () => void;
|
|
3765
|
+
}, {
|
|
3766
|
+
lastArg: {
|
|
3767
|
+
mentor: string;
|
|
3768
|
+
org: string;
|
|
3769
|
+
};
|
|
3770
|
+
}], useRevokeShareableLinkMutation: <R extends Record<string, any> = ({
|
|
3771
|
+
requestId?: undefined;
|
|
3772
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
3773
|
+
data?: undefined;
|
|
3774
|
+
error?: undefined;
|
|
3775
|
+
endpointName?: string;
|
|
3776
|
+
startedTimeStamp?: undefined;
|
|
3777
|
+
fulfilledTimeStamp?: undefined;
|
|
3778
|
+
} & {
|
|
3779
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
3780
|
+
isUninitialized: true;
|
|
3781
|
+
isLoading: false;
|
|
3782
|
+
isSuccess: false;
|
|
3783
|
+
isError: false;
|
|
3784
|
+
}) | ({
|
|
3785
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
3786
|
+
} & Omit<{
|
|
3787
|
+
requestId: string;
|
|
3788
|
+
data?: void | undefined;
|
|
3789
|
+
error?: unknown;
|
|
3790
|
+
endpointName: string;
|
|
3791
|
+
startedTimeStamp: number;
|
|
3792
|
+
fulfilledTimeStamp?: number;
|
|
3793
|
+
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
3794
|
+
requestId: string;
|
|
3795
|
+
data?: void | undefined;
|
|
3796
|
+
error?: unknown;
|
|
3797
|
+
endpointName: string;
|
|
3798
|
+
startedTimeStamp: number;
|
|
3799
|
+
fulfilledTimeStamp?: number;
|
|
3800
|
+
}, "data" | "fulfilledTimeStamp">> & {
|
|
3801
|
+
error: undefined;
|
|
3802
|
+
} & {
|
|
3803
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
3804
|
+
isUninitialized: false;
|
|
3805
|
+
isLoading: false;
|
|
3806
|
+
isSuccess: true;
|
|
3807
|
+
isError: false;
|
|
3808
|
+
}) | ({
|
|
3809
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
3810
|
+
} & {
|
|
3811
|
+
requestId: string;
|
|
3812
|
+
data?: void | undefined;
|
|
3813
|
+
error?: unknown;
|
|
3814
|
+
endpointName: string;
|
|
3815
|
+
startedTimeStamp: number;
|
|
3816
|
+
fulfilledTimeStamp?: number;
|
|
3817
|
+
} & {
|
|
3818
|
+
data?: undefined;
|
|
3819
|
+
} & {
|
|
3820
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
3821
|
+
isUninitialized: false;
|
|
3822
|
+
isLoading: true;
|
|
3823
|
+
isSuccess: false;
|
|
3824
|
+
isError: false;
|
|
3825
|
+
}) | ({
|
|
3826
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
3827
|
+
} & Omit<{
|
|
3828
|
+
requestId: string;
|
|
3829
|
+
data?: void | undefined;
|
|
3830
|
+
error?: unknown;
|
|
3831
|
+
endpointName: string;
|
|
3832
|
+
startedTimeStamp: number;
|
|
3833
|
+
fulfilledTimeStamp?: number;
|
|
3834
|
+
}, "error"> & Required<Pick<{
|
|
3835
|
+
requestId: string;
|
|
3836
|
+
data?: void | undefined;
|
|
3837
|
+
error?: unknown;
|
|
3838
|
+
endpointName: string;
|
|
3839
|
+
startedTimeStamp: number;
|
|
3840
|
+
fulfilledTimeStamp?: number;
|
|
3841
|
+
}, "error">> & {
|
|
3842
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
3843
|
+
isUninitialized: false;
|
|
3844
|
+
isLoading: false;
|
|
3845
|
+
isSuccess: false;
|
|
3846
|
+
isError: true;
|
|
3847
|
+
})>(options?: {
|
|
3848
|
+
selectFromResult?: ((state: ({
|
|
3849
|
+
requestId?: undefined;
|
|
3850
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
3851
|
+
data?: undefined;
|
|
3852
|
+
error?: undefined;
|
|
3853
|
+
endpointName?: string;
|
|
3854
|
+
startedTimeStamp?: undefined;
|
|
3855
|
+
fulfilledTimeStamp?: undefined;
|
|
3856
|
+
} & {
|
|
3857
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
3858
|
+
isUninitialized: true;
|
|
3859
|
+
isLoading: false;
|
|
3860
|
+
isSuccess: false;
|
|
3861
|
+
isError: false;
|
|
3862
|
+
}) | ({
|
|
3863
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
3864
|
+
} & Omit<{
|
|
3865
|
+
requestId: string;
|
|
3866
|
+
data?: void | undefined;
|
|
3867
|
+
error?: unknown;
|
|
3868
|
+
endpointName: string;
|
|
3869
|
+
startedTimeStamp: number;
|
|
3870
|
+
fulfilledTimeStamp?: number;
|
|
3871
|
+
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
3872
|
+
requestId: string;
|
|
3873
|
+
data?: void | undefined;
|
|
3874
|
+
error?: unknown;
|
|
3875
|
+
endpointName: string;
|
|
3876
|
+
startedTimeStamp: number;
|
|
3877
|
+
fulfilledTimeStamp?: number;
|
|
3878
|
+
}, "data" | "fulfilledTimeStamp">> & {
|
|
3879
|
+
error: undefined;
|
|
3880
|
+
} & {
|
|
3881
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
3882
|
+
isUninitialized: false;
|
|
3883
|
+
isLoading: false;
|
|
3884
|
+
isSuccess: true;
|
|
3885
|
+
isError: false;
|
|
3886
|
+
}) | ({
|
|
3887
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
3888
|
+
} & {
|
|
3889
|
+
requestId: string;
|
|
3890
|
+
data?: void | undefined;
|
|
3891
|
+
error?: unknown;
|
|
3892
|
+
endpointName: string;
|
|
3893
|
+
startedTimeStamp: number;
|
|
3894
|
+
fulfilledTimeStamp?: number;
|
|
3895
|
+
} & {
|
|
3896
|
+
data?: undefined;
|
|
3897
|
+
} & {
|
|
3898
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
3899
|
+
isUninitialized: false;
|
|
3900
|
+
isLoading: true;
|
|
3901
|
+
isSuccess: false;
|
|
3902
|
+
isError: false;
|
|
3903
|
+
}) | ({
|
|
3904
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
3905
|
+
} & Omit<{
|
|
3906
|
+
requestId: string;
|
|
3907
|
+
data?: void | undefined;
|
|
3908
|
+
error?: unknown;
|
|
3909
|
+
endpointName: string;
|
|
3910
|
+
startedTimeStamp: number;
|
|
3911
|
+
fulfilledTimeStamp?: number;
|
|
3912
|
+
}, "error"> & Required<Pick<{
|
|
3913
|
+
requestId: string;
|
|
3914
|
+
data?: void | undefined;
|
|
3915
|
+
error?: unknown;
|
|
3916
|
+
endpointName: string;
|
|
3917
|
+
startedTimeStamp: number;
|
|
3918
|
+
fulfilledTimeStamp?: number;
|
|
3919
|
+
}, "error">> & {
|
|
3920
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
3921
|
+
isUninitialized: false;
|
|
3922
|
+
isLoading: false;
|
|
3923
|
+
isSuccess: false;
|
|
3924
|
+
isError: true;
|
|
3925
|
+
})) => R) | undefined;
|
|
3926
|
+
fixedCacheKey?: string;
|
|
3927
|
+
} | undefined) => readonly [(arg: {
|
|
3928
|
+
mentor: string;
|
|
3929
|
+
org: string;
|
|
3930
|
+
}) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
3931
|
+
mentor: string;
|
|
3932
|
+
org: string;
|
|
3933
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", void, "mentorApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
3934
|
+
originalArgs?: {
|
|
3935
|
+
mentor: string;
|
|
3936
|
+
org: string;
|
|
3937
|
+
} | undefined;
|
|
3938
|
+
reset: () => void;
|
|
3939
|
+
}], useUpdateShareableLinkMutation: <R extends Record<string, any> = ({
|
|
3940
|
+
requestId?: undefined;
|
|
3941
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
3942
|
+
data?: undefined;
|
|
3943
|
+
error?: undefined;
|
|
3944
|
+
endpointName?: string;
|
|
3945
|
+
startedTimeStamp?: undefined;
|
|
3946
|
+
fulfilledTimeStamp?: undefined;
|
|
3947
|
+
} & {
|
|
3948
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
3949
|
+
isUninitialized: true;
|
|
3950
|
+
isLoading: false;
|
|
3951
|
+
isSuccess: false;
|
|
3952
|
+
isError: false;
|
|
3953
|
+
}) | ({
|
|
3954
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
3955
|
+
} & Omit<{
|
|
3956
|
+
requestId: string;
|
|
3957
|
+
data?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
|
|
3958
|
+
error?: unknown;
|
|
3959
|
+
endpointName: string;
|
|
3960
|
+
startedTimeStamp: number;
|
|
3961
|
+
fulfilledTimeStamp?: number;
|
|
3962
|
+
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
3963
|
+
requestId: string;
|
|
3964
|
+
data?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
|
|
3965
|
+
error?: unknown;
|
|
3966
|
+
endpointName: string;
|
|
3967
|
+
startedTimeStamp: number;
|
|
3968
|
+
fulfilledTimeStamp?: number;
|
|
3969
|
+
}, "data" | "fulfilledTimeStamp">> & {
|
|
3970
|
+
error: undefined;
|
|
3971
|
+
} & {
|
|
3972
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
3973
|
+
isUninitialized: false;
|
|
3974
|
+
isLoading: false;
|
|
3975
|
+
isSuccess: true;
|
|
3976
|
+
isError: false;
|
|
3977
|
+
}) | ({
|
|
3978
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
3979
|
+
} & {
|
|
3980
|
+
requestId: string;
|
|
3981
|
+
data?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
|
|
3982
|
+
error?: unknown;
|
|
3983
|
+
endpointName: string;
|
|
3984
|
+
startedTimeStamp: number;
|
|
3985
|
+
fulfilledTimeStamp?: number;
|
|
3986
|
+
} & {
|
|
3987
|
+
data?: undefined;
|
|
3988
|
+
} & {
|
|
3989
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
3990
|
+
isUninitialized: false;
|
|
3991
|
+
isLoading: true;
|
|
3992
|
+
isSuccess: false;
|
|
3993
|
+
isError: false;
|
|
3994
|
+
}) | ({
|
|
3995
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
3996
|
+
} & Omit<{
|
|
3997
|
+
requestId: string;
|
|
3998
|
+
data?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
|
|
3999
|
+
error?: unknown;
|
|
4000
|
+
endpointName: string;
|
|
4001
|
+
startedTimeStamp: number;
|
|
4002
|
+
fulfilledTimeStamp?: number;
|
|
4003
|
+
}, "error"> & Required<Pick<{
|
|
4004
|
+
requestId: string;
|
|
4005
|
+
data?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
|
|
4006
|
+
error?: unknown;
|
|
4007
|
+
endpointName: string;
|
|
4008
|
+
startedTimeStamp: number;
|
|
4009
|
+
fulfilledTimeStamp?: number;
|
|
4010
|
+
}, "error">> & {
|
|
4011
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
4012
|
+
isUninitialized: false;
|
|
4013
|
+
isLoading: false;
|
|
4014
|
+
isSuccess: false;
|
|
4015
|
+
isError: true;
|
|
4016
|
+
})>(options?: {
|
|
4017
|
+
selectFromResult?: ((state: ({
|
|
4018
|
+
requestId?: undefined;
|
|
4019
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
4020
|
+
data?: undefined;
|
|
4021
|
+
error?: undefined;
|
|
4022
|
+
endpointName?: string;
|
|
4023
|
+
startedTimeStamp?: undefined;
|
|
4024
|
+
fulfilledTimeStamp?: undefined;
|
|
4025
|
+
} & {
|
|
4026
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
4027
|
+
isUninitialized: true;
|
|
4028
|
+
isLoading: false;
|
|
4029
|
+
isSuccess: false;
|
|
4030
|
+
isError: false;
|
|
4031
|
+
}) | ({
|
|
4032
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
4033
|
+
} & Omit<{
|
|
4034
|
+
requestId: string;
|
|
4035
|
+
data?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
|
|
4036
|
+
error?: unknown;
|
|
4037
|
+
endpointName: string;
|
|
4038
|
+
startedTimeStamp: number;
|
|
4039
|
+
fulfilledTimeStamp?: number;
|
|
4040
|
+
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
4041
|
+
requestId: string;
|
|
4042
|
+
data?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
|
|
4043
|
+
error?: unknown;
|
|
4044
|
+
endpointName: string;
|
|
4045
|
+
startedTimeStamp: number;
|
|
4046
|
+
fulfilledTimeStamp?: number;
|
|
4047
|
+
}, "data" | "fulfilledTimeStamp">> & {
|
|
4048
|
+
error: undefined;
|
|
4049
|
+
} & {
|
|
4050
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
4051
|
+
isUninitialized: false;
|
|
4052
|
+
isLoading: false;
|
|
4053
|
+
isSuccess: true;
|
|
4054
|
+
isError: false;
|
|
4055
|
+
}) | ({
|
|
4056
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
4057
|
+
} & {
|
|
4058
|
+
requestId: string;
|
|
4059
|
+
data?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
|
|
4060
|
+
error?: unknown;
|
|
4061
|
+
endpointName: string;
|
|
4062
|
+
startedTimeStamp: number;
|
|
4063
|
+
fulfilledTimeStamp?: number;
|
|
4064
|
+
} & {
|
|
4065
|
+
data?: undefined;
|
|
4066
|
+
} & {
|
|
4067
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
4068
|
+
isUninitialized: false;
|
|
4069
|
+
isLoading: true;
|
|
4070
|
+
isSuccess: false;
|
|
4071
|
+
isError: false;
|
|
4072
|
+
}) | ({
|
|
4073
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
4074
|
+
} & Omit<{
|
|
4075
|
+
requestId: string;
|
|
4076
|
+
data?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
|
|
4077
|
+
error?: unknown;
|
|
4078
|
+
endpointName: string;
|
|
4079
|
+
startedTimeStamp: number;
|
|
4080
|
+
fulfilledTimeStamp?: number;
|
|
4081
|
+
}, "error"> & Required<Pick<{
|
|
4082
|
+
requestId: string;
|
|
4083
|
+
data?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
|
|
4084
|
+
error?: unknown;
|
|
4085
|
+
endpointName: string;
|
|
4086
|
+
startedTimeStamp: number;
|
|
4087
|
+
fulfilledTimeStamp?: number;
|
|
4088
|
+
}, "error">> & {
|
|
4089
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
4090
|
+
isUninitialized: false;
|
|
4091
|
+
isLoading: false;
|
|
4092
|
+
isSuccess: false;
|
|
4093
|
+
isError: true;
|
|
4094
|
+
})) => R) | undefined;
|
|
4095
|
+
fixedCacheKey?: string;
|
|
4096
|
+
} | undefined) => readonly [(arg: {
|
|
4097
|
+
mentor: string;
|
|
4098
|
+
org: string;
|
|
4099
|
+
requestBody?: import("@iblai/iblai-api").ShareableMentorLink;
|
|
4100
|
+
}) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
4101
|
+
mentor: string;
|
|
4102
|
+
org: string;
|
|
4103
|
+
requestBody?: import("@iblai/iblai-api").ShareableMentorLink;
|
|
4104
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
4105
|
+
originalArgs?: {
|
|
4106
|
+
mentor: string;
|
|
4107
|
+
org: string;
|
|
4108
|
+
requestBody?: import("@iblai/iblai-api").ShareableMentorLink;
|
|
4109
|
+
} | undefined;
|
|
4110
|
+
reset: () => void;
|
|
4111
|
+
}], useDeleteMentorMutation: <R extends Record<string, any> = ({
|
|
4112
|
+
requestId?: undefined;
|
|
4113
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
4114
|
+
data?: undefined;
|
|
4115
|
+
error?: undefined;
|
|
4116
|
+
endpointName?: string;
|
|
4117
|
+
startedTimeStamp?: undefined;
|
|
4118
|
+
fulfilledTimeStamp?: undefined;
|
|
4119
|
+
} & {
|
|
4120
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
4121
|
+
isUninitialized: true;
|
|
4122
|
+
isLoading: false;
|
|
4123
|
+
isSuccess: false;
|
|
4124
|
+
isError: false;
|
|
4125
|
+
}) | ({
|
|
4126
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
4127
|
+
} & Omit<{
|
|
4128
|
+
requestId: string;
|
|
4129
|
+
data?: void | undefined;
|
|
4130
|
+
error?: unknown;
|
|
4131
|
+
endpointName: string;
|
|
4132
|
+
startedTimeStamp: number;
|
|
4133
|
+
fulfilledTimeStamp?: number;
|
|
4134
|
+
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
4135
|
+
requestId: string;
|
|
4136
|
+
data?: void | undefined;
|
|
4137
|
+
error?: unknown;
|
|
4138
|
+
endpointName: string;
|
|
4139
|
+
startedTimeStamp: number;
|
|
4140
|
+
fulfilledTimeStamp?: number;
|
|
4141
|
+
}, "data" | "fulfilledTimeStamp">> & {
|
|
4142
|
+
error: undefined;
|
|
4143
|
+
} & {
|
|
4144
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
4145
|
+
isUninitialized: false;
|
|
4146
|
+
isLoading: false;
|
|
4147
|
+
isSuccess: true;
|
|
4148
|
+
isError: false;
|
|
4149
|
+
}) | ({
|
|
4150
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
4151
|
+
} & {
|
|
4152
|
+
requestId: string;
|
|
4153
|
+
data?: void | undefined;
|
|
4154
|
+
error?: unknown;
|
|
4155
|
+
endpointName: string;
|
|
4156
|
+
startedTimeStamp: number;
|
|
4157
|
+
fulfilledTimeStamp?: number;
|
|
4158
|
+
} & {
|
|
4159
|
+
data?: undefined;
|
|
4160
|
+
} & {
|
|
4161
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
4162
|
+
isUninitialized: false;
|
|
4163
|
+
isLoading: true;
|
|
4164
|
+
isSuccess: false;
|
|
4165
|
+
isError: false;
|
|
4166
|
+
}) | ({
|
|
4167
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
4168
|
+
} & Omit<{
|
|
4169
|
+
requestId: string;
|
|
4170
|
+
data?: void | undefined;
|
|
4171
|
+
error?: unknown;
|
|
4172
|
+
endpointName: string;
|
|
4173
|
+
startedTimeStamp: number;
|
|
4174
|
+
fulfilledTimeStamp?: number;
|
|
4175
|
+
}, "error"> & Required<Pick<{
|
|
4176
|
+
requestId: string;
|
|
4177
|
+
data?: void | undefined;
|
|
4178
|
+
error?: unknown;
|
|
4179
|
+
endpointName: string;
|
|
4180
|
+
startedTimeStamp: number;
|
|
4181
|
+
fulfilledTimeStamp?: number;
|
|
4182
|
+
}, "error">> & {
|
|
4183
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
4184
|
+
isUninitialized: false;
|
|
4185
|
+
isLoading: false;
|
|
4186
|
+
isSuccess: false;
|
|
4187
|
+
isError: true;
|
|
4188
|
+
})>(options?: {
|
|
4189
|
+
selectFromResult?: ((state: ({
|
|
4190
|
+
requestId?: undefined;
|
|
4191
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
4192
|
+
data?: undefined;
|
|
4193
|
+
error?: undefined;
|
|
4194
|
+
endpointName?: string;
|
|
4195
|
+
startedTimeStamp?: undefined;
|
|
4196
|
+
fulfilledTimeStamp?: undefined;
|
|
4197
|
+
} & {
|
|
4198
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
4199
|
+
isUninitialized: true;
|
|
4200
|
+
isLoading: false;
|
|
4201
|
+
isSuccess: false;
|
|
4202
|
+
isError: false;
|
|
4203
|
+
}) | ({
|
|
4204
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
4205
|
+
} & Omit<{
|
|
4206
|
+
requestId: string;
|
|
4207
|
+
data?: void | undefined;
|
|
4208
|
+
error?: unknown;
|
|
4209
|
+
endpointName: string;
|
|
4210
|
+
startedTimeStamp: number;
|
|
4211
|
+
fulfilledTimeStamp?: number;
|
|
4212
|
+
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
4213
|
+
requestId: string;
|
|
4214
|
+
data?: void | undefined;
|
|
4215
|
+
error?: unknown;
|
|
4216
|
+
endpointName: string;
|
|
4217
|
+
startedTimeStamp: number;
|
|
4218
|
+
fulfilledTimeStamp?: number;
|
|
4219
|
+
}, "data" | "fulfilledTimeStamp">> & {
|
|
4220
|
+
error: undefined;
|
|
4221
|
+
} & {
|
|
4222
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
4223
|
+
isUninitialized: false;
|
|
4224
|
+
isLoading: false;
|
|
4225
|
+
isSuccess: true;
|
|
4226
|
+
isError: false;
|
|
4227
|
+
}) | ({
|
|
4228
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
4229
|
+
} & {
|
|
4230
|
+
requestId: string;
|
|
4231
|
+
data?: void | undefined;
|
|
4232
|
+
error?: unknown;
|
|
4233
|
+
endpointName: string;
|
|
4234
|
+
startedTimeStamp: number;
|
|
4235
|
+
fulfilledTimeStamp?: number;
|
|
4236
|
+
} & {
|
|
4237
|
+
data?: undefined;
|
|
4238
|
+
} & {
|
|
4239
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
4240
|
+
isUninitialized: false;
|
|
4241
|
+
isLoading: true;
|
|
4242
|
+
isSuccess: false;
|
|
4243
|
+
isError: false;
|
|
4244
|
+
}) | ({
|
|
4245
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
4246
|
+
} & Omit<{
|
|
4247
|
+
requestId: string;
|
|
4248
|
+
data?: void | undefined;
|
|
4249
|
+
error?: unknown;
|
|
4250
|
+
endpointName: string;
|
|
4251
|
+
startedTimeStamp: number;
|
|
4252
|
+
fulfilledTimeStamp?: number;
|
|
4253
|
+
}, "error"> & Required<Pick<{
|
|
4254
|
+
requestId: string;
|
|
4255
|
+
data?: void | undefined;
|
|
4256
|
+
error?: unknown;
|
|
4257
|
+
endpointName: string;
|
|
4258
|
+
startedTimeStamp: number;
|
|
4259
|
+
fulfilledTimeStamp?: number;
|
|
4260
|
+
}, "error">> & {
|
|
4261
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
4262
|
+
isUninitialized: false;
|
|
4263
|
+
isLoading: false;
|
|
4264
|
+
isSuccess: false;
|
|
4265
|
+
isError: true;
|
|
4266
|
+
})) => R) | undefined;
|
|
4267
|
+
fixedCacheKey?: string;
|
|
4268
|
+
} | undefined) => readonly [(arg: {
|
|
4269
|
+
name: string;
|
|
4270
|
+
org: string;
|
|
4271
|
+
departmentId?: number;
|
|
4272
|
+
filterBy?: string;
|
|
4273
|
+
metadataKey?: string;
|
|
4274
|
+
metadataValue?: string;
|
|
4275
|
+
returnSessionInformation?: boolean;
|
|
4276
|
+
visibility?: string;
|
|
4277
|
+
}) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
4278
|
+
name: string;
|
|
4279
|
+
org: string;
|
|
4280
|
+
departmentId?: number;
|
|
4281
|
+
filterBy?: string;
|
|
4282
|
+
metadataKey?: string;
|
|
4283
|
+
metadataValue?: string;
|
|
4284
|
+
returnSessionInformation?: boolean;
|
|
4285
|
+
visibility?: string;
|
|
4286
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", void, "mentorApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
4287
|
+
originalArgs?: {
|
|
4288
|
+
name: string;
|
|
4289
|
+
org: string;
|
|
4290
|
+
departmentId?: number;
|
|
4291
|
+
filterBy?: string;
|
|
4292
|
+
metadataKey?: string;
|
|
4293
|
+
metadataValue?: string;
|
|
4294
|
+
returnSessionInformation?: boolean;
|
|
4295
|
+
visibility?: string;
|
|
4296
|
+
} | undefined;
|
|
1815
4297
|
reset: () => void;
|
|
1816
4298
|
}];
|