@iblai/web-utils 1.1.2 → 1.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/data-layer/src/core/index.d.ts +7 -1
- package/dist/data-layer/src/features/analytics/constants.d.ts +6 -6
- package/dist/data-layer/src/features/analytics/types.d.ts +9 -0
- package/dist/data-layer/src/features/api-keys/api-slice.d.ts +72 -24
- package/dist/data-layer/src/features/apps/api-slice.d.ts +72 -24
- package/dist/data-layer/src/features/artifacts/api-slice.d.ts +1798 -0
- package/dist/data-layer/src/features/artifacts/constants.d.ts +42 -0
- package/dist/data-layer/src/features/artifacts/types.d.ts +37 -0
- package/dist/data-layer/src/features/auth/types.d.ts +1 -1
- package/dist/data-layer/src/features/billing/api-slice.d.ts +15 -5
- package/dist/data-layer/src/features/billing/constants.d.ts +16 -0
- package/dist/data-layer/src/features/billing/custom-api-slice.d.ts +634 -0
- package/dist/data-layer/src/features/billing/types.d.ts +35 -0
- package/dist/data-layer/src/features/career/api-slice.d.ts +342 -114
- package/dist/data-layer/src/features/catalog/api-slice.d.ts +1050 -317
- package/dist/data-layer/src/features/chat/api-slice.d.ts +204 -68
- package/dist/data-layer/src/features/chat-history/api-slice.d.ts +202 -60
- package/dist/data-layer/src/features/core/api-slice.d.ts +1143 -134
- package/dist/data-layer/src/features/core/custom-public-image-asset-api-slice.d.ts +60 -20
- package/dist/data-layer/src/features/credentials/api-slice.d.ts +3706 -146
- package/dist/data-layer/src/features/credentials/constants.d.ts +9 -1
- package/dist/data-layer/src/features/credentials/custom-api-slice.d.ts +535 -2
- package/dist/data-layer/src/features/credentials/types.d.ts +14 -0
- package/dist/data-layer/src/features/datasets/api-slice.d.ts +60 -197
- package/dist/data-layer/src/features/llms/api-slice.d.ts +60 -20
- package/dist/data-layer/src/features/mcp/api-slice.d.ts +2613 -0
- package/dist/data-layer/src/features/mcp/constants.d.ts +57 -0
- package/dist/data-layer/src/features/mcp/types.d.ts +176 -0
- package/dist/data-layer/src/features/memory/types.d.ts +1 -0
- package/dist/data-layer/src/features/mentor/api-slice.d.ts +1789 -473
- package/dist/data-layer/src/features/mentor/constants.d.ts +7 -1
- package/dist/data-layer/src/features/mentor/custom-api-slice.d.ts +162 -1
- package/dist/data-layer/src/features/mentor/types.d.ts +7 -1
- package/dist/data-layer/src/features/mentor-categories/api-slice.d.ts +117 -39
- package/dist/data-layer/src/features/moderation-logs/api-slice.d.ts +705 -0
- package/dist/data-layer/src/features/notifications/api-slice.d.ts +214 -86
- package/dist/data-layer/src/features/per-learner/api-slice.d.ts +174 -58
- package/dist/data-layer/src/features/platform/api-slice.d.ts +1568 -293
- package/dist/data-layer/src/features/platform/types.d.ts +13 -0
- package/dist/data-layer/src/features/prompts/api-slice.d.ts +249 -83
- package/dist/data-layer/src/features/reports/api-slice.d.ts +145 -41
- package/dist/data-layer/src/features/search/ai-search-api-slice.d.ts +399 -1
- package/dist/data-layer/src/features/search/api-slice.d.ts +117 -39
- package/dist/data-layer/src/features/search/constants.d.ts +10 -0
- package/dist/data-layer/src/features/search/types.d.ts +72 -0
- package/dist/data-layer/src/features/sessions/api-slice.d.ts +440 -46
- package/dist/data-layer/src/features/skills/api-slice.d.ts +231 -77
- package/dist/data-layer/src/features/tenant/api-slice.d.ts +123 -41
- package/dist/data-layer/src/features/tools/api-slice.d.ts +60 -20
- package/dist/data-layer/src/features/training-documents/api-slice.d.ts +141 -47
- package/dist/data-layer/src/features/user-invitations/api-slice.d.ts +66 -22
- package/dist/data-layer/src/index.d.ts +6 -0
- package/dist/index.d.ts +367 -33
- package/dist/index.esm.js +7619 -3934
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +7644 -3931
- package/dist/index.js.map +1 -1
- package/dist/package.json +22 -12
- package/dist/web-utils/src/__tests__/index.mobile.test.d.ts +7 -0
- package/dist/web-utils/src/__tests__/index.web.test.d.ts +8 -0
- package/dist/web-utils/src/constants/__tests__/chat.test.d.ts +1 -0
- package/dist/web-utils/src/constants/chat.d.ts +1 -1
- package/dist/web-utils/src/features/chat/__tests__/slice.test.d.ts +1 -0
- package/dist/web-utils/src/features/chat/slice.d.ts +37 -2
- package/dist/web-utils/src/features/csv/combine-csv.d.ts +35 -0
- package/dist/web-utils/src/features/csv/index.d.ts +1 -0
- package/dist/web-utils/src/features/files/__tests__/filesSlice.test.d.ts +1 -0
- package/dist/web-utils/src/features/index.d.ts +1 -0
- package/dist/web-utils/src/hoc/index.d.ts +2 -0
- package/dist/web-utils/src/hoc/with-permissions.d.ts +44 -0
- package/dist/web-utils/src/hooks/__tests__/use-mentor-settings.test.d.ts +1 -0
- package/dist/web-utils/src/hooks/chat/ollama-client.d.ts +57 -0
- package/dist/web-utils/src/hooks/chat/use-advanced-chat.d.ts +10 -4
- package/dist/web-utils/src/hooks/chat/use-advanced-chat.test.d.ts +1 -0
- package/dist/web-utils/src/hooks/chat/use-chat-v2.d.ts +59 -2
- package/dist/web-utils/src/hooks/chat/use-chat-v2.test.d.ts +1 -0
- package/dist/web-utils/src/hooks/chat/use-chat.d.ts +1 -0
- package/dist/web-utils/src/hooks/chat/use-get-chat-details.test.d.ts +1 -0
- package/dist/web-utils/src/hooks/chat/use-mentor-tools.d.ts +2 -0
- package/dist/web-utils/src/hooks/chat/use-mentor-tools.test.d.ts +1 -0
- package/dist/web-utils/src/hooks/index.d.ts +1 -0
- package/dist/web-utils/src/hooks/subscription-v2/constants.d.ts +5 -0
- package/dist/web-utils/src/hooks/subscription-v2/use-subscription-handler.d.ts +56 -1
- package/dist/web-utils/src/hooks/tenant-metadata/__tests__/config-loader.test.d.ts +10 -0
- package/dist/web-utils/src/hooks/tenant-metadata/__tests__/use-tenant-metadata.test.d.ts +1 -0
- package/dist/web-utils/src/hooks/tenant-metadata/use-tenant-metadata.d.ts +2 -1
- package/dist/web-utils/src/index.d.ts +1 -0
- package/dist/web-utils/src/index.mobile.d.ts +130 -10
- package/dist/web-utils/src/index.web.d.ts +174 -12
- package/dist/web-utils/src/providers/__tests__/mentor-provider.test.d.ts +1 -0
- package/dist/web-utils/src/providers/__tests__/tenant-provider.test.d.ts +1 -0
- package/dist/web-utils/src/providers/auth-provider.d.ts +5 -2
- package/dist/web-utils/src/providers/mentor-provider.d.ts +2 -1
- package/dist/web-utils/src/providers/tenant-provider.d.ts +7 -2
- package/dist/web-utils/src/types/index.d.ts +1 -0
- package/dist/web-utils/src/types/subscription.d.ts +21 -0
- package/dist/web-utils/src/utils/__tests__/auth.test.d.ts +1 -0
- package/dist/web-utils/src/utils/__tests__/constants.test.d.ts +1 -0
- package/dist/web-utils/src/utils/__tests__/helpers.test.d.ts +1 -0
- package/dist/web-utils/src/utils/__tests__/platform.test.d.ts +1 -0
- package/dist/web-utils/src/utils/constants.d.ts +1 -0
- package/dist/web-utils/src/utils/data/__tests__/advanced-tab.test.d.ts +1 -0
- package/dist/web-utils/src/utils/helpers.d.ts +6 -0
- package/dist/web-utils/src/utils/index.d.ts +1 -0
- package/dist/web-utils/src/utils/platform.d.ts +1 -0
- package/dist/web-utils/tests/hooks/chat/use-mentor-tools.test.d.ts +1 -0
- package/dist/web-utils/tests/hooks/subscription-v2/use-subscription-handler.test.d.ts +1 -0
- package/dist/web-utils/tests/hooks/use-mentor-settings.test.d.ts +1 -0
- package/dist/web-utils/tests/providers/mentor-provider.test.d.ts +1 -0
- package/dist/web-utils/tests/providers/tenant-provider.test.d.ts +1 -0
- package/dist/web-utils/tests/utils/helpers.test.d.ts +1 -0
- package/dist/web-utils/tsconfig.tsbuildinfo +1 -1
- package/package.json +22 -12
|
@@ -1,8 +1,12 @@
|
|
|
1
|
-
export declare const mentorApiSlice: import("@reduxjs/toolkit/query").Api<import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1
|
+
export declare const mentorApiSlice: import("@reduxjs/toolkit/query").Api<import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2
|
+
attempt?: number;
|
|
3
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, {
|
|
2
4
|
createMentor: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
3
5
|
org: string;
|
|
4
6
|
formData: import("node_modules/@iblai/iblai-api/dist/types").MentorFromTemplateWithSettingRequest;
|
|
5
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
7
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
8
|
+
attempt?: number;
|
|
9
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").Mentor, "mentorApiSlice", any>;
|
|
6
10
|
getMentors: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
7
11
|
org: string;
|
|
8
12
|
username: string;
|
|
@@ -21,7 +25,9 @@ export declare const mentorApiSlice: import("@reduxjs/toolkit/query").Api<import
|
|
|
21
25
|
tags?: Array<string>;
|
|
22
26
|
tenant?: string;
|
|
23
27
|
uniqueId?: string;
|
|
24
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
28
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
29
|
+
attempt?: number;
|
|
30
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>;
|
|
25
31
|
getPublicMentors: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
26
32
|
audience?: Array<string>;
|
|
27
33
|
category?: Array<string>;
|
|
@@ -38,60 +44,86 @@ export declare const mentorApiSlice: import("@reduxjs/toolkit/query").Api<import
|
|
|
38
44
|
tags?: Array<string>;
|
|
39
45
|
tenant?: string;
|
|
40
46
|
uniqueId?: string;
|
|
41
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
47
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
48
|
+
attempt?: number;
|
|
49
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>;
|
|
42
50
|
editMentor: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
43
51
|
mentor: string;
|
|
44
52
|
org: string;
|
|
45
53
|
departmentId?: number;
|
|
46
54
|
formData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsRequest;
|
|
47
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
55
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
56
|
+
attempt?: number;
|
|
57
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettings, "mentorApiSlice", any>;
|
|
48
58
|
seedMentors: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
49
59
|
org: string;
|
|
50
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
60
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
61
|
+
attempt?: number;
|
|
62
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView, "mentorApiSlice", any>;
|
|
51
63
|
getMentorDetails: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
52
64
|
mentor: string;
|
|
53
65
|
org: string;
|
|
54
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
66
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
67
|
+
attempt?: number;
|
|
68
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").Mentor, "mentorApiSlice", any>;
|
|
55
69
|
getMentorSettings: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
56
70
|
mentor: string;
|
|
57
71
|
org: string;
|
|
58
72
|
departmentId?: number;
|
|
59
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
73
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
74
|
+
attempt?: number;
|
|
75
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>;
|
|
60
76
|
getMentorPublicSettings: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
61
77
|
mentor: string;
|
|
62
78
|
org: string;
|
|
63
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
64
|
-
|
|
79
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
80
|
+
attempt?: number;
|
|
81
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>;
|
|
82
|
+
editMentorAndRefreshList: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
65
83
|
mentor: string;
|
|
66
84
|
org: string;
|
|
67
85
|
departmentId?: number;
|
|
68
86
|
formData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsRequest;
|
|
69
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
87
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
88
|
+
attempt?: number;
|
|
89
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettings, "mentorApiSlice", any>;
|
|
70
90
|
getFreeUsageCount: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
71
91
|
org: string;
|
|
72
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
92
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
93
|
+
attempt?: number;
|
|
94
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount, "mentorApiSlice", any>;
|
|
73
95
|
createShareableLink: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
74
96
|
mentor: string;
|
|
75
97
|
org: string;
|
|
76
98
|
requestBody?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink;
|
|
77
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
99
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
100
|
+
attempt?: number;
|
|
101
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>;
|
|
78
102
|
getShareableLink: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
79
103
|
mentor: string;
|
|
80
104
|
org: string;
|
|
81
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
105
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
106
|
+
attempt?: number;
|
|
107
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>;
|
|
82
108
|
getShareableLinkPublic: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
83
109
|
mentor: string;
|
|
84
110
|
org: string;
|
|
85
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
111
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
112
|
+
attempt?: number;
|
|
113
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>;
|
|
86
114
|
revokeShareableLink: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
87
115
|
mentor: string;
|
|
88
116
|
org: string;
|
|
89
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
117
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
118
|
+
attempt?: number;
|
|
119
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", void, "mentorApiSlice", any>;
|
|
90
120
|
updateShareableLink: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
91
121
|
mentor: string;
|
|
92
122
|
org: string;
|
|
93
123
|
requestBody?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink;
|
|
94
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
124
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
125
|
+
attempt?: number;
|
|
126
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>;
|
|
95
127
|
deleteMentor: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
96
128
|
name: string;
|
|
97
129
|
org: string;
|
|
@@ -102,29 +134,59 @@ export declare const mentorApiSlice: import("@reduxjs/toolkit/query").Api<import
|
|
|
102
134
|
metadataValue?: string;
|
|
103
135
|
returnSessionInformation?: boolean;
|
|
104
136
|
visibility?: string;
|
|
105
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
137
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
138
|
+
attempt?: number;
|
|
139
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", void, "mentorApiSlice", any>;
|
|
106
140
|
forkMentor: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
107
141
|
mentor: string;
|
|
108
142
|
org: string;
|
|
109
143
|
requestBody: import("node_modules/@iblai/iblai-api/dist/types").MentorFork;
|
|
110
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
144
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
145
|
+
attempt?: number;
|
|
146
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").Mentor, "mentorApiSlice", any>;
|
|
111
147
|
getRecentlyAccessedMentors: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
112
148
|
org: string;
|
|
113
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
mentor
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
}
|
|
149
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
150
|
+
attempt?: number;
|
|
151
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").RecentlyAccessedMentor[], "mentorApiSlice", any>;
|
|
152
|
+
starMentor: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
153
|
+
mentor: string;
|
|
154
|
+
org: string;
|
|
155
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
156
|
+
attempt?: number;
|
|
157
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").StarMentor, "mentorApiSlice", any>;
|
|
158
|
+
unstarMentor: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
159
|
+
mentor: string;
|
|
160
|
+
org: string;
|
|
161
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
162
|
+
attempt?: number;
|
|
163
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").StarMentor, "mentorApiSlice", any>;
|
|
164
|
+
starredMentors: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
165
|
+
org: string;
|
|
166
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
167
|
+
attempt?: number;
|
|
168
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").StarMentor[], "mentorApiSlice", any>;
|
|
169
|
+
updateChatSession: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
170
|
+
org: string;
|
|
171
|
+
sessionId: string;
|
|
172
|
+
requestBody?: import("node_modules/@iblai/iblai-api/dist/types").MessageViewRequest;
|
|
173
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
174
|
+
attempt?: number;
|
|
175
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MessageViewUpdatResponse, "mentorApiSlice", any>;
|
|
176
|
+
updateChatSessionShared: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
177
|
+
org: string;
|
|
178
|
+
sessionId: string;
|
|
179
|
+
requestBody: import("node_modules/@iblai/iblai-api/dist/types").SharedSessionUpdateRequest;
|
|
180
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
181
|
+
attempt?: number;
|
|
182
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").SharedSessionUpdateResponse, "mentorApiSlice", any>;
|
|
183
|
+
getChatMessagesForSession: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
184
|
+
org: string;
|
|
185
|
+
sessionId: string;
|
|
186
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
187
|
+
attempt?: number;
|
|
188
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MessageView, "mentorApiSlice", any>;
|
|
189
|
+
}, "mentorApiSlice", "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", typeof import("@reduxjs/toolkit/query").coreModuleName | typeof import("@reduxjs/toolkit/dist/query/react").reactHooksModuleName>;
|
|
128
190
|
export declare const mentorApiReducer: typeof mentorApiSlice.reducer;
|
|
129
191
|
export declare const useCreateMentorMutation: <R extends Record<string, any> = ({
|
|
130
192
|
requestId?: undefined;
|
|
@@ -289,7 +351,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
289
351
|
}) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
290
352
|
org: string;
|
|
291
353
|
formData: import("node_modules/@iblai/iblai-api/dist/types").MentorFromTemplateWithSettingRequest;
|
|
292
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
354
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
355
|
+
attempt?: number;
|
|
356
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").Mentor, "mentorApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
293
357
|
originalArgs?: {
|
|
294
358
|
org: string;
|
|
295
359
|
formData: import("node_modules/@iblai/iblai-api/dist/types").MentorFromTemplateWithSettingRequest;
|
|
@@ -331,7 +395,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
331
395
|
tags?: Array<string>;
|
|
332
396
|
tenant?: string;
|
|
333
397
|
uniqueId?: string;
|
|
334
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
398
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
399
|
+
attempt?: number;
|
|
400
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
335
401
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
|
|
336
402
|
isUninitialized: false;
|
|
337
403
|
isLoading: false;
|
|
@@ -364,7 +430,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
364
430
|
tags?: Array<string>;
|
|
365
431
|
tenant?: string;
|
|
366
432
|
uniqueId?: string;
|
|
367
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
433
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
434
|
+
attempt?: number;
|
|
435
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
368
436
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
|
|
369
437
|
isUninitialized: false;
|
|
370
438
|
isLoading: false;
|
|
@@ -393,7 +461,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
393
461
|
tags?: Array<string>;
|
|
394
462
|
tenant?: string;
|
|
395
463
|
uniqueId?: string;
|
|
396
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
464
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
465
|
+
attempt?: number;
|
|
466
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
397
467
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
|
|
398
468
|
isUninitialized: false;
|
|
399
469
|
isLoading: false;
|
|
@@ -420,7 +490,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
420
490
|
tags?: Array<string>;
|
|
421
491
|
tenant?: string;
|
|
422
492
|
uniqueId?: string;
|
|
423
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
493
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
494
|
+
attempt?: number;
|
|
495
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
424
496
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
|
|
425
497
|
isUninitialized: false;
|
|
426
498
|
isLoading: false;
|
|
@@ -488,7 +560,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
488
560
|
tags?: Array<string>;
|
|
489
561
|
tenant?: string;
|
|
490
562
|
uniqueId?: string;
|
|
491
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
563
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
564
|
+
attempt?: number;
|
|
565
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
492
566
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
|
|
493
567
|
isUninitialized: false;
|
|
494
568
|
isLoading: false;
|
|
@@ -521,7 +595,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
521
595
|
tags?: Array<string>;
|
|
522
596
|
tenant?: string;
|
|
523
597
|
uniqueId?: string;
|
|
524
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
598
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
599
|
+
attempt?: number;
|
|
600
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
525
601
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
|
|
526
602
|
isUninitialized: false;
|
|
527
603
|
isLoading: false;
|
|
@@ -550,7 +626,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
550
626
|
tags?: Array<string>;
|
|
551
627
|
tenant?: string;
|
|
552
628
|
uniqueId?: string;
|
|
553
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
629
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
630
|
+
attempt?: number;
|
|
631
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
554
632
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
|
|
555
633
|
isUninitialized: false;
|
|
556
634
|
isLoading: false;
|
|
@@ -577,7 +655,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
577
655
|
tags?: Array<string>;
|
|
578
656
|
tenant?: string;
|
|
579
657
|
uniqueId?: string;
|
|
580
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
658
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
659
|
+
attempt?: number;
|
|
660
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
581
661
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
|
|
582
662
|
isUninitialized: false;
|
|
583
663
|
isLoading: false;
|
|
@@ -606,7 +686,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
606
686
|
tags?: Array<string>;
|
|
607
687
|
tenant?: string;
|
|
608
688
|
uniqueId?: string;
|
|
609
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
689
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
690
|
+
attempt?: number;
|
|
691
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>>;
|
|
610
692
|
}, useLazyGetMentorsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
611
693
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
612
694
|
originalArgs?: undefined | undefined;
|
|
@@ -643,7 +725,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
643
725
|
tags?: Array<string>;
|
|
644
726
|
tenant?: string;
|
|
645
727
|
uniqueId?: string;
|
|
646
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
728
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
729
|
+
attempt?: number;
|
|
730
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
647
731
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
|
|
648
732
|
isUninitialized: false;
|
|
649
733
|
isLoading: false;
|
|
@@ -676,7 +760,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
676
760
|
tags?: Array<string>;
|
|
677
761
|
tenant?: string;
|
|
678
762
|
uniqueId?: string;
|
|
679
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
763
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
764
|
+
attempt?: number;
|
|
765
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
680
766
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
|
|
681
767
|
isUninitialized: false;
|
|
682
768
|
isLoading: false;
|
|
@@ -705,7 +791,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
705
791
|
tags?: Array<string>;
|
|
706
792
|
tenant?: string;
|
|
707
793
|
uniqueId?: string;
|
|
708
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
794
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
795
|
+
attempt?: number;
|
|
796
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
709
797
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
|
|
710
798
|
isUninitialized: false;
|
|
711
799
|
isLoading: false;
|
|
@@ -732,7 +820,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
732
820
|
tags?: Array<string>;
|
|
733
821
|
tenant?: string;
|
|
734
822
|
uniqueId?: string;
|
|
735
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
823
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
824
|
+
attempt?: number;
|
|
825
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
736
826
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
|
|
737
827
|
isUninitialized: false;
|
|
738
828
|
isLoading: false;
|
|
@@ -779,7 +869,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
779
869
|
tags?: Array<string>;
|
|
780
870
|
tenant?: string;
|
|
781
871
|
uniqueId?: string;
|
|
782
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
872
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
873
|
+
attempt?: number;
|
|
874
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
783
875
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
|
|
784
876
|
isUninitialized: false;
|
|
785
877
|
isLoading: false;
|
|
@@ -812,7 +904,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
812
904
|
tags?: Array<string>;
|
|
813
905
|
tenant?: string;
|
|
814
906
|
uniqueId?: string;
|
|
815
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
907
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
908
|
+
attempt?: number;
|
|
909
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
816
910
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
|
|
817
911
|
isUninitialized: false;
|
|
818
912
|
isLoading: false;
|
|
@@ -841,7 +935,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
841
935
|
tags?: Array<string>;
|
|
842
936
|
tenant?: string;
|
|
843
937
|
uniqueId?: string;
|
|
844
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
938
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
939
|
+
attempt?: number;
|
|
940
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
845
941
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
|
|
846
942
|
isUninitialized: false;
|
|
847
943
|
isLoading: false;
|
|
@@ -868,7 +964,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
868
964
|
tags?: Array<string>;
|
|
869
965
|
tenant?: string;
|
|
870
966
|
uniqueId?: string;
|
|
871
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
967
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
968
|
+
attempt?: number;
|
|
969
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
872
970
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
|
|
873
971
|
isUninitialized: false;
|
|
874
972
|
isLoading: false;
|
|
@@ -914,7 +1012,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
914
1012
|
tags?: Array<string>;
|
|
915
1013
|
tenant?: string;
|
|
916
1014
|
uniqueId?: string;
|
|
917
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1015
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1016
|
+
attempt?: number;
|
|
1017
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
918
1018
|
reset: () => void;
|
|
919
1019
|
}, {
|
|
920
1020
|
lastArg: {
|
|
@@ -1103,7 +1203,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1103
1203
|
org: string;
|
|
1104
1204
|
departmentId?: number;
|
|
1105
1205
|
formData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsRequest;
|
|
1106
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1206
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1207
|
+
attempt?: number;
|
|
1208
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettings, "mentorApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
1107
1209
|
originalArgs?: {
|
|
1108
1210
|
mentor: string;
|
|
1109
1211
|
org: string;
|
|
@@ -1131,7 +1233,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1131
1233
|
isUninitialized: true;
|
|
1132
1234
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1133
1235
|
org: string;
|
|
1134
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1236
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1237
|
+
attempt?: number;
|
|
1238
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView, "mentorApiSlice", any>> & {
|
|
1135
1239
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView | undefined;
|
|
1136
1240
|
isUninitialized: false;
|
|
1137
1241
|
isLoading: false;
|
|
@@ -1148,7 +1252,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1148
1252
|
error: undefined;
|
|
1149
1253
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1150
1254
|
org: string;
|
|
1151
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1255
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1256
|
+
attempt?: number;
|
|
1257
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView, "mentorApiSlice", any>> & {
|
|
1152
1258
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView | undefined;
|
|
1153
1259
|
isUninitialized: false;
|
|
1154
1260
|
isLoading: false;
|
|
@@ -1161,7 +1267,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1161
1267
|
error: undefined;
|
|
1162
1268
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1163
1269
|
org: string;
|
|
1164
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1270
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1271
|
+
attempt?: number;
|
|
1272
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView, "mentorApiSlice", any>> & {
|
|
1165
1273
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView | undefined;
|
|
1166
1274
|
isUninitialized: false;
|
|
1167
1275
|
isLoading: false;
|
|
@@ -1172,7 +1280,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1172
1280
|
isError: true;
|
|
1173
1281
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1174
1282
|
org: string;
|
|
1175
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1283
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1284
|
+
attempt?: number;
|
|
1285
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView, "mentorApiSlice", any>> & {
|
|
1176
1286
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView | undefined;
|
|
1177
1287
|
isUninitialized: false;
|
|
1178
1288
|
isLoading: false;
|
|
@@ -1208,7 +1318,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1208
1318
|
isUninitialized: true;
|
|
1209
1319
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1210
1320
|
org: string;
|
|
1211
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1321
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1322
|
+
attempt?: number;
|
|
1323
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView, "mentorApiSlice", any>> & {
|
|
1212
1324
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView | undefined;
|
|
1213
1325
|
isUninitialized: false;
|
|
1214
1326
|
isLoading: false;
|
|
@@ -1225,7 +1337,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1225
1337
|
error: undefined;
|
|
1226
1338
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1227
1339
|
org: string;
|
|
1228
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1340
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1341
|
+
attempt?: number;
|
|
1342
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView, "mentorApiSlice", any>> & {
|
|
1229
1343
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView | undefined;
|
|
1230
1344
|
isUninitialized: false;
|
|
1231
1345
|
isLoading: false;
|
|
@@ -1238,7 +1352,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1238
1352
|
error: undefined;
|
|
1239
1353
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1240
1354
|
org: string;
|
|
1241
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1355
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1356
|
+
attempt?: number;
|
|
1357
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView, "mentorApiSlice", any>> & {
|
|
1242
1358
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView | undefined;
|
|
1243
1359
|
isUninitialized: false;
|
|
1244
1360
|
isLoading: false;
|
|
@@ -1249,7 +1365,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1249
1365
|
isError: true;
|
|
1250
1366
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1251
1367
|
org: string;
|
|
1252
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1368
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1369
|
+
attempt?: number;
|
|
1370
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView, "mentorApiSlice", any>> & {
|
|
1253
1371
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView | undefined;
|
|
1254
1372
|
isUninitialized: false;
|
|
1255
1373
|
isLoading: false;
|
|
@@ -1262,7 +1380,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1262
1380
|
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
1263
1381
|
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1264
1382
|
org: string;
|
|
1265
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1383
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1384
|
+
attempt?: number;
|
|
1385
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView, "mentorApiSlice", any>>;
|
|
1266
1386
|
}, useLazySeedMentorsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
1267
1387
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1268
1388
|
originalArgs?: undefined | undefined;
|
|
@@ -1283,7 +1403,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1283
1403
|
isUninitialized: true;
|
|
1284
1404
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1285
1405
|
org: string;
|
|
1286
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1406
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1407
|
+
attempt?: number;
|
|
1408
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView, "mentorApiSlice", any>> & {
|
|
1287
1409
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView | undefined;
|
|
1288
1410
|
isUninitialized: false;
|
|
1289
1411
|
isLoading: false;
|
|
@@ -1300,7 +1422,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1300
1422
|
error: undefined;
|
|
1301
1423
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1302
1424
|
org: string;
|
|
1303
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1425
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1426
|
+
attempt?: number;
|
|
1427
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView, "mentorApiSlice", any>> & {
|
|
1304
1428
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView | undefined;
|
|
1305
1429
|
isUninitialized: false;
|
|
1306
1430
|
isLoading: false;
|
|
@@ -1313,7 +1437,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1313
1437
|
error: undefined;
|
|
1314
1438
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1315
1439
|
org: string;
|
|
1316
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1440
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1441
|
+
attempt?: number;
|
|
1442
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView, "mentorApiSlice", any>> & {
|
|
1317
1443
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView | undefined;
|
|
1318
1444
|
isUninitialized: false;
|
|
1319
1445
|
isLoading: false;
|
|
@@ -1324,7 +1450,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1324
1450
|
isError: true;
|
|
1325
1451
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1326
1452
|
org: string;
|
|
1327
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1453
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1454
|
+
attempt?: number;
|
|
1455
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView, "mentorApiSlice", any>> & {
|
|
1328
1456
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView | undefined;
|
|
1329
1457
|
isUninitialized: false;
|
|
1330
1458
|
isLoading: false;
|
|
@@ -1355,7 +1483,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1355
1483
|
isUninitialized: true;
|
|
1356
1484
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1357
1485
|
org: string;
|
|
1358
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1486
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1487
|
+
attempt?: number;
|
|
1488
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView, "mentorApiSlice", any>> & {
|
|
1359
1489
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView | undefined;
|
|
1360
1490
|
isUninitialized: false;
|
|
1361
1491
|
isLoading: false;
|
|
@@ -1372,7 +1502,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1372
1502
|
error: undefined;
|
|
1373
1503
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1374
1504
|
org: string;
|
|
1375
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1505
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1506
|
+
attempt?: number;
|
|
1507
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView, "mentorApiSlice", any>> & {
|
|
1376
1508
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView | undefined;
|
|
1377
1509
|
isUninitialized: false;
|
|
1378
1510
|
isLoading: false;
|
|
@@ -1385,7 +1517,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1385
1517
|
error: undefined;
|
|
1386
1518
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1387
1519
|
org: string;
|
|
1388
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1520
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1521
|
+
attempt?: number;
|
|
1522
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView, "mentorApiSlice", any>> & {
|
|
1389
1523
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView | undefined;
|
|
1390
1524
|
isUninitialized: false;
|
|
1391
1525
|
isLoading: false;
|
|
@@ -1396,7 +1530,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1396
1530
|
isError: true;
|
|
1397
1531
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1398
1532
|
org: string;
|
|
1399
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1533
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1534
|
+
attempt?: number;
|
|
1535
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView, "mentorApiSlice", any>> & {
|
|
1400
1536
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView | undefined;
|
|
1401
1537
|
isUninitialized: false;
|
|
1402
1538
|
isLoading: false;
|
|
@@ -1410,7 +1546,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1410
1546
|
org: string;
|
|
1411
1547
|
}, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1412
1548
|
org: string;
|
|
1413
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1549
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1550
|
+
attempt?: number;
|
|
1551
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView, "mentorApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
1414
1552
|
reset: () => void;
|
|
1415
1553
|
}, {
|
|
1416
1554
|
lastArg: {
|
|
@@ -1437,7 +1575,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1437
1575
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1438
1576
|
mentor: string;
|
|
1439
1577
|
org: string;
|
|
1440
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1578
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1579
|
+
attempt?: number;
|
|
1580
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").Mentor, "mentorApiSlice", any>> & {
|
|
1441
1581
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").Mentor | undefined;
|
|
1442
1582
|
isUninitialized: false;
|
|
1443
1583
|
isLoading: false;
|
|
@@ -1455,7 +1595,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1455
1595
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1456
1596
|
mentor: string;
|
|
1457
1597
|
org: string;
|
|
1458
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1598
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1599
|
+
attempt?: number;
|
|
1600
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").Mentor, "mentorApiSlice", any>> & {
|
|
1459
1601
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").Mentor | undefined;
|
|
1460
1602
|
isUninitialized: false;
|
|
1461
1603
|
isLoading: false;
|
|
@@ -1469,7 +1611,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1469
1611
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1470
1612
|
mentor: string;
|
|
1471
1613
|
org: string;
|
|
1472
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1614
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1615
|
+
attempt?: number;
|
|
1616
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").Mentor, "mentorApiSlice", any>> & {
|
|
1473
1617
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").Mentor | undefined;
|
|
1474
1618
|
isUninitialized: false;
|
|
1475
1619
|
isLoading: false;
|
|
@@ -1481,7 +1625,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1481
1625
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1482
1626
|
mentor: string;
|
|
1483
1627
|
org: string;
|
|
1484
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1628
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1629
|
+
attempt?: number;
|
|
1630
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").Mentor, "mentorApiSlice", any>> & {
|
|
1485
1631
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").Mentor | undefined;
|
|
1486
1632
|
isUninitialized: false;
|
|
1487
1633
|
isLoading: false;
|
|
@@ -1519,7 +1665,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1519
1665
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1520
1666
|
mentor: string;
|
|
1521
1667
|
org: string;
|
|
1522
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1668
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1669
|
+
attempt?: number;
|
|
1670
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").Mentor, "mentorApiSlice", any>> & {
|
|
1523
1671
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").Mentor | undefined;
|
|
1524
1672
|
isUninitialized: false;
|
|
1525
1673
|
isLoading: false;
|
|
@@ -1537,7 +1685,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1537
1685
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1538
1686
|
mentor: string;
|
|
1539
1687
|
org: string;
|
|
1540
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1688
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1689
|
+
attempt?: number;
|
|
1690
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").Mentor, "mentorApiSlice", any>> & {
|
|
1541
1691
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").Mentor | undefined;
|
|
1542
1692
|
isUninitialized: false;
|
|
1543
1693
|
isLoading: false;
|
|
@@ -1551,7 +1701,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1551
1701
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1552
1702
|
mentor: string;
|
|
1553
1703
|
org: string;
|
|
1554
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1704
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1705
|
+
attempt?: number;
|
|
1706
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").Mentor, "mentorApiSlice", any>> & {
|
|
1555
1707
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").Mentor | undefined;
|
|
1556
1708
|
isUninitialized: false;
|
|
1557
1709
|
isLoading: false;
|
|
@@ -1563,7 +1715,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1563
1715
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1564
1716
|
mentor: string;
|
|
1565
1717
|
org: string;
|
|
1566
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1718
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1719
|
+
attempt?: number;
|
|
1720
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").Mentor, "mentorApiSlice", any>> & {
|
|
1567
1721
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").Mentor | undefined;
|
|
1568
1722
|
isUninitialized: false;
|
|
1569
1723
|
isLoading: false;
|
|
@@ -1577,7 +1731,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1577
1731
|
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1578
1732
|
mentor: string;
|
|
1579
1733
|
org: string;
|
|
1580
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1734
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1735
|
+
attempt?: number;
|
|
1736
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").Mentor, "mentorApiSlice", any>>;
|
|
1581
1737
|
}, useLazyGetMentorDetailsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
1582
1738
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1583
1739
|
originalArgs?: undefined | undefined;
|
|
@@ -1599,7 +1755,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1599
1755
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1600
1756
|
mentor: string;
|
|
1601
1757
|
org: string;
|
|
1602
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1758
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1759
|
+
attempt?: number;
|
|
1760
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").Mentor, "mentorApiSlice", any>> & {
|
|
1603
1761
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").Mentor | undefined;
|
|
1604
1762
|
isUninitialized: false;
|
|
1605
1763
|
isLoading: false;
|
|
@@ -1617,7 +1775,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1617
1775
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1618
1776
|
mentor: string;
|
|
1619
1777
|
org: string;
|
|
1620
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1778
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1779
|
+
attempt?: number;
|
|
1780
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").Mentor, "mentorApiSlice", any>> & {
|
|
1621
1781
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").Mentor | undefined;
|
|
1622
1782
|
isUninitialized: false;
|
|
1623
1783
|
isLoading: false;
|
|
@@ -1631,7 +1791,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1631
1791
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1632
1792
|
mentor: string;
|
|
1633
1793
|
org: string;
|
|
1634
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1794
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1795
|
+
attempt?: number;
|
|
1796
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").Mentor, "mentorApiSlice", any>> & {
|
|
1635
1797
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").Mentor | undefined;
|
|
1636
1798
|
isUninitialized: false;
|
|
1637
1799
|
isLoading: false;
|
|
@@ -1643,7 +1805,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1643
1805
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1644
1806
|
mentor: string;
|
|
1645
1807
|
org: string;
|
|
1646
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1808
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1809
|
+
attempt?: number;
|
|
1810
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").Mentor, "mentorApiSlice", any>> & {
|
|
1647
1811
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").Mentor | undefined;
|
|
1648
1812
|
isUninitialized: false;
|
|
1649
1813
|
isLoading: false;
|
|
@@ -1675,7 +1839,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1675
1839
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1676
1840
|
mentor: string;
|
|
1677
1841
|
org: string;
|
|
1678
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1842
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1843
|
+
attempt?: number;
|
|
1844
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").Mentor, "mentorApiSlice", any>> & {
|
|
1679
1845
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").Mentor | undefined;
|
|
1680
1846
|
isUninitialized: false;
|
|
1681
1847
|
isLoading: false;
|
|
@@ -1693,7 +1859,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1693
1859
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1694
1860
|
mentor: string;
|
|
1695
1861
|
org: string;
|
|
1696
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1862
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1863
|
+
attempt?: number;
|
|
1864
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").Mentor, "mentorApiSlice", any>> & {
|
|
1697
1865
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").Mentor | undefined;
|
|
1698
1866
|
isUninitialized: false;
|
|
1699
1867
|
isLoading: false;
|
|
@@ -1707,7 +1875,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1707
1875
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1708
1876
|
mentor: string;
|
|
1709
1877
|
org: string;
|
|
1710
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1878
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1879
|
+
attempt?: number;
|
|
1880
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").Mentor, "mentorApiSlice", any>> & {
|
|
1711
1881
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").Mentor | undefined;
|
|
1712
1882
|
isUninitialized: false;
|
|
1713
1883
|
isLoading: false;
|
|
@@ -1719,7 +1889,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1719
1889
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1720
1890
|
mentor: string;
|
|
1721
1891
|
org: string;
|
|
1722
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1892
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1893
|
+
attempt?: number;
|
|
1894
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").Mentor, "mentorApiSlice", any>> & {
|
|
1723
1895
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").Mentor | undefined;
|
|
1724
1896
|
isUninitialized: false;
|
|
1725
1897
|
isLoading: false;
|
|
@@ -1735,7 +1907,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1735
1907
|
}, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
1736
1908
|
mentor: string;
|
|
1737
1909
|
org: string;
|
|
1738
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1910
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1911
|
+
attempt?: number;
|
|
1912
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").Mentor, "mentorApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
1739
1913
|
reset: () => void;
|
|
1740
1914
|
}, {
|
|
1741
1915
|
lastArg: {
|
|
@@ -1764,7 +1938,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1764
1938
|
mentor: string;
|
|
1765
1939
|
org: string;
|
|
1766
1940
|
departmentId?: number;
|
|
1767
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1941
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1942
|
+
attempt?: number;
|
|
1943
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
1768
1944
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
|
|
1769
1945
|
isUninitialized: false;
|
|
1770
1946
|
isLoading: false;
|
|
@@ -1783,7 +1959,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1783
1959
|
mentor: string;
|
|
1784
1960
|
org: string;
|
|
1785
1961
|
departmentId?: number;
|
|
1786
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1962
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1963
|
+
attempt?: number;
|
|
1964
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
1787
1965
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
|
|
1788
1966
|
isUninitialized: false;
|
|
1789
1967
|
isLoading: false;
|
|
@@ -1798,7 +1976,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1798
1976
|
mentor: string;
|
|
1799
1977
|
org: string;
|
|
1800
1978
|
departmentId?: number;
|
|
1801
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1979
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1980
|
+
attempt?: number;
|
|
1981
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
1802
1982
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
|
|
1803
1983
|
isUninitialized: false;
|
|
1804
1984
|
isLoading: false;
|
|
@@ -1811,7 +1991,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1811
1991
|
mentor: string;
|
|
1812
1992
|
org: string;
|
|
1813
1993
|
departmentId?: number;
|
|
1814
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1994
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
1995
|
+
attempt?: number;
|
|
1996
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
1815
1997
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
|
|
1816
1998
|
isUninitialized: false;
|
|
1817
1999
|
isLoading: false;
|
|
@@ -1851,7 +2033,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1851
2033
|
mentor: string;
|
|
1852
2034
|
org: string;
|
|
1853
2035
|
departmentId?: number;
|
|
1854
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2036
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2037
|
+
attempt?: number;
|
|
2038
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
1855
2039
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
|
|
1856
2040
|
isUninitialized: false;
|
|
1857
2041
|
isLoading: false;
|
|
@@ -1870,7 +2054,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1870
2054
|
mentor: string;
|
|
1871
2055
|
org: string;
|
|
1872
2056
|
departmentId?: number;
|
|
1873
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2057
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2058
|
+
attempt?: number;
|
|
2059
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
1874
2060
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
|
|
1875
2061
|
isUninitialized: false;
|
|
1876
2062
|
isLoading: false;
|
|
@@ -1885,7 +2071,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1885
2071
|
mentor: string;
|
|
1886
2072
|
org: string;
|
|
1887
2073
|
departmentId?: number;
|
|
1888
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2074
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2075
|
+
attempt?: number;
|
|
2076
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
1889
2077
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
|
|
1890
2078
|
isUninitialized: false;
|
|
1891
2079
|
isLoading: false;
|
|
@@ -1898,7 +2086,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1898
2086
|
mentor: string;
|
|
1899
2087
|
org: string;
|
|
1900
2088
|
departmentId?: number;
|
|
1901
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2089
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2090
|
+
attempt?: number;
|
|
2091
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
1902
2092
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
|
|
1903
2093
|
isUninitialized: false;
|
|
1904
2094
|
isLoading: false;
|
|
@@ -1913,7 +2103,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1913
2103
|
mentor: string;
|
|
1914
2104
|
org: string;
|
|
1915
2105
|
departmentId?: number;
|
|
1916
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2106
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2107
|
+
attempt?: number;
|
|
2108
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>>;
|
|
1917
2109
|
}, useLazyGetMentorSettingsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
1918
2110
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1919
2111
|
originalArgs?: undefined | undefined;
|
|
@@ -1936,7 +2128,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1936
2128
|
mentor: string;
|
|
1937
2129
|
org: string;
|
|
1938
2130
|
departmentId?: number;
|
|
1939
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2131
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2132
|
+
attempt?: number;
|
|
2133
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
1940
2134
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
|
|
1941
2135
|
isUninitialized: false;
|
|
1942
2136
|
isLoading: false;
|
|
@@ -1955,7 +2149,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1955
2149
|
mentor: string;
|
|
1956
2150
|
org: string;
|
|
1957
2151
|
departmentId?: number;
|
|
1958
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2152
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2153
|
+
attempt?: number;
|
|
2154
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
1959
2155
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
|
|
1960
2156
|
isUninitialized: false;
|
|
1961
2157
|
isLoading: false;
|
|
@@ -1970,7 +2166,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1970
2166
|
mentor: string;
|
|
1971
2167
|
org: string;
|
|
1972
2168
|
departmentId?: number;
|
|
1973
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2169
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2170
|
+
attempt?: number;
|
|
2171
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
1974
2172
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
|
|
1975
2173
|
isUninitialized: false;
|
|
1976
2174
|
isLoading: false;
|
|
@@ -1983,7 +2181,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
1983
2181
|
mentor: string;
|
|
1984
2182
|
org: string;
|
|
1985
2183
|
departmentId?: number;
|
|
1986
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2184
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2185
|
+
attempt?: number;
|
|
2186
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
1987
2187
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
|
|
1988
2188
|
isUninitialized: false;
|
|
1989
2189
|
isLoading: false;
|
|
@@ -2016,7 +2216,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2016
2216
|
mentor: string;
|
|
2017
2217
|
org: string;
|
|
2018
2218
|
departmentId?: number;
|
|
2019
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2219
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2220
|
+
attempt?: number;
|
|
2221
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
2020
2222
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
|
|
2021
2223
|
isUninitialized: false;
|
|
2022
2224
|
isLoading: false;
|
|
@@ -2035,7 +2237,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2035
2237
|
mentor: string;
|
|
2036
2238
|
org: string;
|
|
2037
2239
|
departmentId?: number;
|
|
2038
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2240
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2241
|
+
attempt?: number;
|
|
2242
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
2039
2243
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
|
|
2040
2244
|
isUninitialized: false;
|
|
2041
2245
|
isLoading: false;
|
|
@@ -2050,7 +2254,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2050
2254
|
mentor: string;
|
|
2051
2255
|
org: string;
|
|
2052
2256
|
departmentId?: number;
|
|
2053
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2257
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2258
|
+
attempt?: number;
|
|
2259
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
2054
2260
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
|
|
2055
2261
|
isUninitialized: false;
|
|
2056
2262
|
isLoading: false;
|
|
@@ -2063,7 +2269,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2063
2269
|
mentor: string;
|
|
2064
2270
|
org: string;
|
|
2065
2271
|
departmentId?: number;
|
|
2066
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2272
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2273
|
+
attempt?: number;
|
|
2274
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
2067
2275
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
|
|
2068
2276
|
isUninitialized: false;
|
|
2069
2277
|
isLoading: false;
|
|
@@ -2081,7 +2289,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2081
2289
|
mentor: string;
|
|
2082
2290
|
org: string;
|
|
2083
2291
|
departmentId?: number;
|
|
2084
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2292
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2293
|
+
attempt?: number;
|
|
2294
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
2085
2295
|
reset: () => void;
|
|
2086
2296
|
}, {
|
|
2087
2297
|
lastArg: {
|
|
@@ -2110,7 +2320,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2110
2320
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2111
2321
|
mentor: string;
|
|
2112
2322
|
org: string;
|
|
2113
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2323
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2324
|
+
attempt?: number;
|
|
2325
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
2114
2326
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
|
|
2115
2327
|
isUninitialized: false;
|
|
2116
2328
|
isLoading: false;
|
|
@@ -2128,7 +2340,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2128
2340
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2129
2341
|
mentor: string;
|
|
2130
2342
|
org: string;
|
|
2131
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2343
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2344
|
+
attempt?: number;
|
|
2345
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
2132
2346
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
|
|
2133
2347
|
isUninitialized: false;
|
|
2134
2348
|
isLoading: false;
|
|
@@ -2142,7 +2356,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2142
2356
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2143
2357
|
mentor: string;
|
|
2144
2358
|
org: string;
|
|
2145
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2359
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2360
|
+
attempt?: number;
|
|
2361
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
2146
2362
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
|
|
2147
2363
|
isUninitialized: false;
|
|
2148
2364
|
isLoading: false;
|
|
@@ -2154,7 +2370,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2154
2370
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2155
2371
|
mentor: string;
|
|
2156
2372
|
org: string;
|
|
2157
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2373
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2374
|
+
attempt?: number;
|
|
2375
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
2158
2376
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
|
|
2159
2377
|
isUninitialized: false;
|
|
2160
2378
|
isLoading: false;
|
|
@@ -2192,7 +2410,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2192
2410
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2193
2411
|
mentor: string;
|
|
2194
2412
|
org: string;
|
|
2195
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2413
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2414
|
+
attempt?: number;
|
|
2415
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
2196
2416
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
|
|
2197
2417
|
isUninitialized: false;
|
|
2198
2418
|
isLoading: false;
|
|
@@ -2210,7 +2430,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2210
2430
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2211
2431
|
mentor: string;
|
|
2212
2432
|
org: string;
|
|
2213
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2433
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2434
|
+
attempt?: number;
|
|
2435
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
2214
2436
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
|
|
2215
2437
|
isUninitialized: false;
|
|
2216
2438
|
isLoading: false;
|
|
@@ -2224,7 +2446,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2224
2446
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2225
2447
|
mentor: string;
|
|
2226
2448
|
org: string;
|
|
2227
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2449
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2450
|
+
attempt?: number;
|
|
2451
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
2228
2452
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
|
|
2229
2453
|
isUninitialized: false;
|
|
2230
2454
|
isLoading: false;
|
|
@@ -2236,7 +2460,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2236
2460
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2237
2461
|
mentor: string;
|
|
2238
2462
|
org: string;
|
|
2239
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2463
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2464
|
+
attempt?: number;
|
|
2465
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
2240
2466
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
|
|
2241
2467
|
isUninitialized: false;
|
|
2242
2468
|
isLoading: false;
|
|
@@ -2250,7 +2476,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2250
2476
|
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2251
2477
|
mentor: string;
|
|
2252
2478
|
org: string;
|
|
2253
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2479
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2480
|
+
attempt?: number;
|
|
2481
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>>;
|
|
2254
2482
|
}, useLazyGetMentorPublicSettingsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
2255
2483
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
2256
2484
|
originalArgs?: undefined | undefined;
|
|
@@ -2272,7 +2500,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2272
2500
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2273
2501
|
mentor: string;
|
|
2274
2502
|
org: string;
|
|
2275
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2503
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2504
|
+
attempt?: number;
|
|
2505
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
2276
2506
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
|
|
2277
2507
|
isUninitialized: false;
|
|
2278
2508
|
isLoading: false;
|
|
@@ -2290,7 +2520,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2290
2520
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2291
2521
|
mentor: string;
|
|
2292
2522
|
org: string;
|
|
2293
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2523
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2524
|
+
attempt?: number;
|
|
2525
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
2294
2526
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
|
|
2295
2527
|
isUninitialized: false;
|
|
2296
2528
|
isLoading: false;
|
|
@@ -2304,7 +2536,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2304
2536
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2305
2537
|
mentor: string;
|
|
2306
2538
|
org: string;
|
|
2307
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2539
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2540
|
+
attempt?: number;
|
|
2541
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
2308
2542
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
|
|
2309
2543
|
isUninitialized: false;
|
|
2310
2544
|
isLoading: false;
|
|
@@ -2316,7 +2550,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2316
2550
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2317
2551
|
mentor: string;
|
|
2318
2552
|
org: string;
|
|
2319
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2553
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2554
|
+
attempt?: number;
|
|
2555
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
2320
2556
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
|
|
2321
2557
|
isUninitialized: false;
|
|
2322
2558
|
isLoading: false;
|
|
@@ -2348,7 +2584,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2348
2584
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2349
2585
|
mentor: string;
|
|
2350
2586
|
org: string;
|
|
2351
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2587
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2588
|
+
attempt?: number;
|
|
2589
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
2352
2590
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
|
|
2353
2591
|
isUninitialized: false;
|
|
2354
2592
|
isLoading: false;
|
|
@@ -2366,7 +2604,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2366
2604
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2367
2605
|
mentor: string;
|
|
2368
2606
|
org: string;
|
|
2369
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2607
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2608
|
+
attempt?: number;
|
|
2609
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
2370
2610
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
|
|
2371
2611
|
isUninitialized: false;
|
|
2372
2612
|
isLoading: false;
|
|
@@ -2380,7 +2620,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2380
2620
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2381
2621
|
mentor: string;
|
|
2382
2622
|
org: string;
|
|
2383
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2623
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2624
|
+
attempt?: number;
|
|
2625
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
2384
2626
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
|
|
2385
2627
|
isUninitialized: false;
|
|
2386
2628
|
isLoading: false;
|
|
@@ -2392,7 +2634,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2392
2634
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2393
2635
|
mentor: string;
|
|
2394
2636
|
org: string;
|
|
2395
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2637
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2638
|
+
attempt?: number;
|
|
2639
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
|
|
2396
2640
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
|
|
2397
2641
|
isUninitialized: false;
|
|
2398
2642
|
isLoading: false;
|
|
@@ -2408,14 +2652,16 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2408
2652
|
}, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2409
2653
|
mentor: string;
|
|
2410
2654
|
org: string;
|
|
2411
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2655
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2656
|
+
attempt?: number;
|
|
2657
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
2412
2658
|
reset: () => void;
|
|
2413
2659
|
}, {
|
|
2414
2660
|
lastArg: {
|
|
2415
2661
|
mentor: string;
|
|
2416
2662
|
org: string;
|
|
2417
2663
|
};
|
|
2418
|
-
}],
|
|
2664
|
+
}], useEditMentorAndRefreshListMutation: <R extends Record<string, any> = ({
|
|
2419
2665
|
requestId?: undefined;
|
|
2420
2666
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
2421
2667
|
data?: undefined;
|
|
@@ -2582,7 +2828,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2582
2828
|
org: string;
|
|
2583
2829
|
departmentId?: number;
|
|
2584
2830
|
formData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsRequest;
|
|
2585
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2831
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2832
|
+
attempt?: number;
|
|
2833
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettings, "mentorApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
2586
2834
|
originalArgs?: {
|
|
2587
2835
|
mentor: string;
|
|
2588
2836
|
org: string;
|
|
@@ -2610,7 +2858,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2610
2858
|
isUninitialized: true;
|
|
2611
2859
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2612
2860
|
org: string;
|
|
2613
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2861
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2862
|
+
attempt?: number;
|
|
2863
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount, "mentorApiSlice", any>> & {
|
|
2614
2864
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount | undefined;
|
|
2615
2865
|
isUninitialized: false;
|
|
2616
2866
|
isLoading: false;
|
|
@@ -2627,7 +2877,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2627
2877
|
error: undefined;
|
|
2628
2878
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2629
2879
|
org: string;
|
|
2630
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2880
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2881
|
+
attempt?: number;
|
|
2882
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount, "mentorApiSlice", any>> & {
|
|
2631
2883
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount | undefined;
|
|
2632
2884
|
isUninitialized: false;
|
|
2633
2885
|
isLoading: false;
|
|
@@ -2640,7 +2892,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2640
2892
|
error: undefined;
|
|
2641
2893
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2642
2894
|
org: string;
|
|
2643
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2895
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2896
|
+
attempt?: number;
|
|
2897
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount, "mentorApiSlice", any>> & {
|
|
2644
2898
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount | undefined;
|
|
2645
2899
|
isUninitialized: false;
|
|
2646
2900
|
isLoading: false;
|
|
@@ -2651,7 +2905,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2651
2905
|
isError: true;
|
|
2652
2906
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2653
2907
|
org: string;
|
|
2654
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2908
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2909
|
+
attempt?: number;
|
|
2910
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount, "mentorApiSlice", any>> & {
|
|
2655
2911
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount | undefined;
|
|
2656
2912
|
isUninitialized: false;
|
|
2657
2913
|
isLoading: false;
|
|
@@ -2687,7 +2943,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2687
2943
|
isUninitialized: true;
|
|
2688
2944
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2689
2945
|
org: string;
|
|
2690
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2946
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2947
|
+
attempt?: number;
|
|
2948
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount, "mentorApiSlice", any>> & {
|
|
2691
2949
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount | undefined;
|
|
2692
2950
|
isUninitialized: false;
|
|
2693
2951
|
isLoading: false;
|
|
@@ -2704,7 +2962,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2704
2962
|
error: undefined;
|
|
2705
2963
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2706
2964
|
org: string;
|
|
2707
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2965
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2966
|
+
attempt?: number;
|
|
2967
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount, "mentorApiSlice", any>> & {
|
|
2708
2968
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount | undefined;
|
|
2709
2969
|
isUninitialized: false;
|
|
2710
2970
|
isLoading: false;
|
|
@@ -2717,7 +2977,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2717
2977
|
error: undefined;
|
|
2718
2978
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2719
2979
|
org: string;
|
|
2720
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2980
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2981
|
+
attempt?: number;
|
|
2982
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount, "mentorApiSlice", any>> & {
|
|
2721
2983
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount | undefined;
|
|
2722
2984
|
isUninitialized: false;
|
|
2723
2985
|
isLoading: false;
|
|
@@ -2728,7 +2990,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2728
2990
|
isError: true;
|
|
2729
2991
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2730
2992
|
org: string;
|
|
2731
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2993
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
2994
|
+
attempt?: number;
|
|
2995
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount, "mentorApiSlice", any>> & {
|
|
2732
2996
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount | undefined;
|
|
2733
2997
|
isUninitialized: false;
|
|
2734
2998
|
isLoading: false;
|
|
@@ -2741,7 +3005,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2741
3005
|
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
2742
3006
|
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2743
3007
|
org: string;
|
|
2744
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
3008
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3009
|
+
attempt?: number;
|
|
3010
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount, "mentorApiSlice", any>>;
|
|
2745
3011
|
}, useLazyGetFreeUsageCountQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
2746
3012
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
2747
3013
|
originalArgs?: undefined | undefined;
|
|
@@ -2762,7 +3028,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2762
3028
|
isUninitialized: true;
|
|
2763
3029
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2764
3030
|
org: string;
|
|
2765
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
3031
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3032
|
+
attempt?: number;
|
|
3033
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount, "mentorApiSlice", any>> & {
|
|
2766
3034
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount | undefined;
|
|
2767
3035
|
isUninitialized: false;
|
|
2768
3036
|
isLoading: false;
|
|
@@ -2779,7 +3047,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2779
3047
|
error: undefined;
|
|
2780
3048
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2781
3049
|
org: string;
|
|
2782
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
3050
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3051
|
+
attempt?: number;
|
|
3052
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount, "mentorApiSlice", any>> & {
|
|
2783
3053
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount | undefined;
|
|
2784
3054
|
isUninitialized: false;
|
|
2785
3055
|
isLoading: false;
|
|
@@ -2792,7 +3062,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2792
3062
|
error: undefined;
|
|
2793
3063
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2794
3064
|
org: string;
|
|
2795
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
3065
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3066
|
+
attempt?: number;
|
|
3067
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount, "mentorApiSlice", any>> & {
|
|
2796
3068
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount | undefined;
|
|
2797
3069
|
isUninitialized: false;
|
|
2798
3070
|
isLoading: false;
|
|
@@ -2803,7 +3075,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2803
3075
|
isError: true;
|
|
2804
3076
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2805
3077
|
org: string;
|
|
2806
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
3078
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3079
|
+
attempt?: number;
|
|
3080
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount, "mentorApiSlice", any>> & {
|
|
2807
3081
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount | undefined;
|
|
2808
3082
|
isUninitialized: false;
|
|
2809
3083
|
isLoading: false;
|
|
@@ -2834,7 +3108,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2834
3108
|
isUninitialized: true;
|
|
2835
3109
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2836
3110
|
org: string;
|
|
2837
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
3111
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3112
|
+
attempt?: number;
|
|
3113
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount, "mentorApiSlice", any>> & {
|
|
2838
3114
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount | undefined;
|
|
2839
3115
|
isUninitialized: false;
|
|
2840
3116
|
isLoading: false;
|
|
@@ -2851,7 +3127,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2851
3127
|
error: undefined;
|
|
2852
3128
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2853
3129
|
org: string;
|
|
2854
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
3130
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3131
|
+
attempt?: number;
|
|
3132
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount, "mentorApiSlice", any>> & {
|
|
2855
3133
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount | undefined;
|
|
2856
3134
|
isUninitialized: false;
|
|
2857
3135
|
isLoading: false;
|
|
@@ -2864,7 +3142,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2864
3142
|
error: undefined;
|
|
2865
3143
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2866
3144
|
org: string;
|
|
2867
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
3145
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3146
|
+
attempt?: number;
|
|
3147
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount, "mentorApiSlice", any>> & {
|
|
2868
3148
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount | undefined;
|
|
2869
3149
|
isUninitialized: false;
|
|
2870
3150
|
isLoading: false;
|
|
@@ -2875,7 +3155,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2875
3155
|
isError: true;
|
|
2876
3156
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2877
3157
|
org: string;
|
|
2878
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
3158
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3159
|
+
attempt?: number;
|
|
3160
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount, "mentorApiSlice", any>> & {
|
|
2879
3161
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount | undefined;
|
|
2880
3162
|
isUninitialized: false;
|
|
2881
3163
|
isLoading: false;
|
|
@@ -2889,7 +3171,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
2889
3171
|
org: string;
|
|
2890
3172
|
}, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
2891
3173
|
org: string;
|
|
2892
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
3174
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3175
|
+
attempt?: number;
|
|
3176
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount, "mentorApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
2893
3177
|
reset: () => void;
|
|
2894
3178
|
}, {
|
|
2895
3179
|
lastArg: {
|
|
@@ -3060,7 +3344,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3060
3344
|
mentor: string;
|
|
3061
3345
|
org: string;
|
|
3062
3346
|
requestBody?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink;
|
|
3063
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
3347
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3348
|
+
attempt?: number;
|
|
3349
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
3064
3350
|
originalArgs?: {
|
|
3065
3351
|
mentor: string;
|
|
3066
3352
|
org: string;
|
|
@@ -3088,7 +3374,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3088
3374
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3089
3375
|
mentor: string;
|
|
3090
3376
|
org: string;
|
|
3091
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
3377
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3378
|
+
attempt?: number;
|
|
3379
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3092
3380
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
|
|
3093
3381
|
isUninitialized: false;
|
|
3094
3382
|
isLoading: false;
|
|
@@ -3106,7 +3394,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3106
3394
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3107
3395
|
mentor: string;
|
|
3108
3396
|
org: string;
|
|
3109
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
3397
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3398
|
+
attempt?: number;
|
|
3399
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3110
3400
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
|
|
3111
3401
|
isUninitialized: false;
|
|
3112
3402
|
isLoading: false;
|
|
@@ -3120,7 +3410,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3120
3410
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3121
3411
|
mentor: string;
|
|
3122
3412
|
org: string;
|
|
3123
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
3413
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3414
|
+
attempt?: number;
|
|
3415
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3124
3416
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
|
|
3125
3417
|
isUninitialized: false;
|
|
3126
3418
|
isLoading: false;
|
|
@@ -3132,7 +3424,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3132
3424
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3133
3425
|
mentor: string;
|
|
3134
3426
|
org: string;
|
|
3135
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
3427
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3428
|
+
attempt?: number;
|
|
3429
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3136
3430
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
|
|
3137
3431
|
isUninitialized: false;
|
|
3138
3432
|
isLoading: false;
|
|
@@ -3170,7 +3464,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3170
3464
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3171
3465
|
mentor: string;
|
|
3172
3466
|
org: string;
|
|
3173
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
3467
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3468
|
+
attempt?: number;
|
|
3469
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3174
3470
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
|
|
3175
3471
|
isUninitialized: false;
|
|
3176
3472
|
isLoading: false;
|
|
@@ -3188,7 +3484,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3188
3484
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3189
3485
|
mentor: string;
|
|
3190
3486
|
org: string;
|
|
3191
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
3487
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3488
|
+
attempt?: number;
|
|
3489
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3192
3490
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
|
|
3193
3491
|
isUninitialized: false;
|
|
3194
3492
|
isLoading: false;
|
|
@@ -3202,7 +3500,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3202
3500
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3203
3501
|
mentor: string;
|
|
3204
3502
|
org: string;
|
|
3205
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
3503
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3504
|
+
attempt?: number;
|
|
3505
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3206
3506
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
|
|
3207
3507
|
isUninitialized: false;
|
|
3208
3508
|
isLoading: false;
|
|
@@ -3214,7 +3514,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3214
3514
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3215
3515
|
mentor: string;
|
|
3216
3516
|
org: string;
|
|
3217
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
3517
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3518
|
+
attempt?: number;
|
|
3519
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3218
3520
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
|
|
3219
3521
|
isUninitialized: false;
|
|
3220
3522
|
isLoading: false;
|
|
@@ -3228,7 +3530,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3228
3530
|
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3229
3531
|
mentor: string;
|
|
3230
3532
|
org: string;
|
|
3231
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
3533
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3534
|
+
attempt?: number;
|
|
3535
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>>;
|
|
3232
3536
|
}, useLazyGetShareableLinkQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
3233
3537
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
3234
3538
|
originalArgs?: undefined | undefined;
|
|
@@ -3250,7 +3554,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3250
3554
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3251
3555
|
mentor: string;
|
|
3252
3556
|
org: string;
|
|
3253
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
3557
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3558
|
+
attempt?: number;
|
|
3559
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3254
3560
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
|
|
3255
3561
|
isUninitialized: false;
|
|
3256
3562
|
isLoading: false;
|
|
@@ -3268,7 +3574,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3268
3574
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3269
3575
|
mentor: string;
|
|
3270
3576
|
org: string;
|
|
3271
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
3577
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3578
|
+
attempt?: number;
|
|
3579
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3272
3580
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
|
|
3273
3581
|
isUninitialized: false;
|
|
3274
3582
|
isLoading: false;
|
|
@@ -3282,7 +3590,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3282
3590
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3283
3591
|
mentor: string;
|
|
3284
3592
|
org: string;
|
|
3285
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
3593
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3594
|
+
attempt?: number;
|
|
3595
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3286
3596
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
|
|
3287
3597
|
isUninitialized: false;
|
|
3288
3598
|
isLoading: false;
|
|
@@ -3294,7 +3604,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3294
3604
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3295
3605
|
mentor: string;
|
|
3296
3606
|
org: string;
|
|
3297
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
3607
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3608
|
+
attempt?: number;
|
|
3609
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3298
3610
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
|
|
3299
3611
|
isUninitialized: false;
|
|
3300
3612
|
isLoading: false;
|
|
@@ -3326,7 +3638,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3326
3638
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3327
3639
|
mentor: string;
|
|
3328
3640
|
org: string;
|
|
3329
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
3641
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3642
|
+
attempt?: number;
|
|
3643
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3330
3644
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
|
|
3331
3645
|
isUninitialized: false;
|
|
3332
3646
|
isLoading: false;
|
|
@@ -3344,7 +3658,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3344
3658
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3345
3659
|
mentor: string;
|
|
3346
3660
|
org: string;
|
|
3347
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
3661
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3662
|
+
attempt?: number;
|
|
3663
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3348
3664
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
|
|
3349
3665
|
isUninitialized: false;
|
|
3350
3666
|
isLoading: false;
|
|
@@ -3358,7 +3674,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3358
3674
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3359
3675
|
mentor: string;
|
|
3360
3676
|
org: string;
|
|
3361
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
3677
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3678
|
+
attempt?: number;
|
|
3679
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3362
3680
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
|
|
3363
3681
|
isUninitialized: false;
|
|
3364
3682
|
isLoading: false;
|
|
@@ -3370,7 +3688,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3370
3688
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3371
3689
|
mentor: string;
|
|
3372
3690
|
org: string;
|
|
3373
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
3691
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3692
|
+
attempt?: number;
|
|
3693
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3374
3694
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
|
|
3375
3695
|
isUninitialized: false;
|
|
3376
3696
|
isLoading: false;
|
|
@@ -3386,7 +3706,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3386
3706
|
}, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3387
3707
|
mentor: string;
|
|
3388
3708
|
org: string;
|
|
3389
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
3709
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3710
|
+
attempt?: number;
|
|
3711
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
3390
3712
|
reset: () => void;
|
|
3391
3713
|
}, {
|
|
3392
3714
|
lastArg: {
|
|
@@ -3414,7 +3736,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3414
3736
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3415
3737
|
mentor: string;
|
|
3416
3738
|
org: string;
|
|
3417
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
3739
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3740
|
+
attempt?: number;
|
|
3741
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3418
3742
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
|
|
3419
3743
|
isUninitialized: false;
|
|
3420
3744
|
isLoading: false;
|
|
@@ -3432,7 +3756,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3432
3756
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3433
3757
|
mentor: string;
|
|
3434
3758
|
org: string;
|
|
3435
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
3759
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3760
|
+
attempt?: number;
|
|
3761
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3436
3762
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
|
|
3437
3763
|
isUninitialized: false;
|
|
3438
3764
|
isLoading: false;
|
|
@@ -3446,7 +3772,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3446
3772
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3447
3773
|
mentor: string;
|
|
3448
3774
|
org: string;
|
|
3449
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
3775
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3776
|
+
attempt?: number;
|
|
3777
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3450
3778
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
|
|
3451
3779
|
isUninitialized: false;
|
|
3452
3780
|
isLoading: false;
|
|
@@ -3458,7 +3786,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3458
3786
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3459
3787
|
mentor: string;
|
|
3460
3788
|
org: string;
|
|
3461
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
3789
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3790
|
+
attempt?: number;
|
|
3791
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3462
3792
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
|
|
3463
3793
|
isUninitialized: false;
|
|
3464
3794
|
isLoading: false;
|
|
@@ -3496,7 +3826,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3496
3826
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3497
3827
|
mentor: string;
|
|
3498
3828
|
org: string;
|
|
3499
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
3829
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3830
|
+
attempt?: number;
|
|
3831
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3500
3832
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
|
|
3501
3833
|
isUninitialized: false;
|
|
3502
3834
|
isLoading: false;
|
|
@@ -3514,7 +3846,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3514
3846
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3515
3847
|
mentor: string;
|
|
3516
3848
|
org: string;
|
|
3517
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
3849
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3850
|
+
attempt?: number;
|
|
3851
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3518
3852
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
|
|
3519
3853
|
isUninitialized: false;
|
|
3520
3854
|
isLoading: false;
|
|
@@ -3528,7 +3862,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3528
3862
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3529
3863
|
mentor: string;
|
|
3530
3864
|
org: string;
|
|
3531
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
3865
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3866
|
+
attempt?: number;
|
|
3867
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3532
3868
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
|
|
3533
3869
|
isUninitialized: false;
|
|
3534
3870
|
isLoading: false;
|
|
@@ -3540,7 +3876,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3540
3876
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3541
3877
|
mentor: string;
|
|
3542
3878
|
org: string;
|
|
3543
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
3879
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3880
|
+
attempt?: number;
|
|
3881
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3544
3882
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
|
|
3545
3883
|
isUninitialized: false;
|
|
3546
3884
|
isLoading: false;
|
|
@@ -3554,7 +3892,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3554
3892
|
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3555
3893
|
mentor: string;
|
|
3556
3894
|
org: string;
|
|
3557
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
3895
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3896
|
+
attempt?: number;
|
|
3897
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>>;
|
|
3558
3898
|
}, useLazyGetShareableLinkPublicQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
3559
3899
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
3560
3900
|
originalArgs?: undefined | undefined;
|
|
@@ -3576,7 +3916,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3576
3916
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3577
3917
|
mentor: string;
|
|
3578
3918
|
org: string;
|
|
3579
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
3919
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3920
|
+
attempt?: number;
|
|
3921
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3580
3922
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
|
|
3581
3923
|
isUninitialized: false;
|
|
3582
3924
|
isLoading: false;
|
|
@@ -3594,7 +3936,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3594
3936
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3595
3937
|
mentor: string;
|
|
3596
3938
|
org: string;
|
|
3597
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
3939
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3940
|
+
attempt?: number;
|
|
3941
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3598
3942
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
|
|
3599
3943
|
isUninitialized: false;
|
|
3600
3944
|
isLoading: false;
|
|
@@ -3608,7 +3952,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3608
3952
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3609
3953
|
mentor: string;
|
|
3610
3954
|
org: string;
|
|
3611
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
3955
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3956
|
+
attempt?: number;
|
|
3957
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3612
3958
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
|
|
3613
3959
|
isUninitialized: false;
|
|
3614
3960
|
isLoading: false;
|
|
@@ -3620,7 +3966,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3620
3966
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3621
3967
|
mentor: string;
|
|
3622
3968
|
org: string;
|
|
3623
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
3969
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
3970
|
+
attempt?: number;
|
|
3971
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3624
3972
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
|
|
3625
3973
|
isUninitialized: false;
|
|
3626
3974
|
isLoading: false;
|
|
@@ -3652,7 +4000,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3652
4000
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3653
4001
|
mentor: string;
|
|
3654
4002
|
org: string;
|
|
3655
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
4003
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
4004
|
+
attempt?: number;
|
|
4005
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3656
4006
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
|
|
3657
4007
|
isUninitialized: false;
|
|
3658
4008
|
isLoading: false;
|
|
@@ -3670,7 +4020,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3670
4020
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3671
4021
|
mentor: string;
|
|
3672
4022
|
org: string;
|
|
3673
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
4023
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
4024
|
+
attempt?: number;
|
|
4025
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3674
4026
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
|
|
3675
4027
|
isUninitialized: false;
|
|
3676
4028
|
isLoading: false;
|
|
@@ -3684,7 +4036,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3684
4036
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3685
4037
|
mentor: string;
|
|
3686
4038
|
org: string;
|
|
3687
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
4039
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
4040
|
+
attempt?: number;
|
|
4041
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3688
4042
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
|
|
3689
4043
|
isUninitialized: false;
|
|
3690
4044
|
isLoading: false;
|
|
@@ -3696,7 +4050,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3696
4050
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3697
4051
|
mentor: string;
|
|
3698
4052
|
org: string;
|
|
3699
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
4053
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
4054
|
+
attempt?: number;
|
|
4055
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
|
|
3700
4056
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
|
|
3701
4057
|
isUninitialized: false;
|
|
3702
4058
|
isLoading: false;
|
|
@@ -3712,7 +4068,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3712
4068
|
}, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3713
4069
|
mentor: string;
|
|
3714
4070
|
org: string;
|
|
3715
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
4071
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
4072
|
+
attempt?: number;
|
|
4073
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
3716
4074
|
reset: () => void;
|
|
3717
4075
|
}, {
|
|
3718
4076
|
lastArg: {
|
|
@@ -3882,7 +4240,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
3882
4240
|
}) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
3883
4241
|
mentor: string;
|
|
3884
4242
|
org: string;
|
|
3885
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
4243
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
4244
|
+
attempt?: number;
|
|
4245
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", void, "mentorApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
3886
4246
|
originalArgs?: {
|
|
3887
4247
|
mentor: string;
|
|
3888
4248
|
org: string;
|
|
@@ -4053,13 +4413,189 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
4053
4413
|
mentor: string;
|
|
4054
4414
|
org: string;
|
|
4055
4415
|
requestBody?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink;
|
|
4056
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
4416
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
4417
|
+
attempt?: number;
|
|
4418
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
4057
4419
|
originalArgs?: {
|
|
4058
4420
|
mentor: string;
|
|
4059
4421
|
org: string;
|
|
4060
4422
|
requestBody?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink;
|
|
4061
4423
|
} | undefined;
|
|
4062
4424
|
reset: () => void;
|
|
4425
|
+
}], useUpdateChatSessionSharedMutation: <R extends Record<string, any> = ({
|
|
4426
|
+
requestId?: undefined;
|
|
4427
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
4428
|
+
data?: undefined;
|
|
4429
|
+
error?: undefined;
|
|
4430
|
+
endpointName?: string;
|
|
4431
|
+
startedTimeStamp?: undefined;
|
|
4432
|
+
fulfilledTimeStamp?: undefined;
|
|
4433
|
+
} & {
|
|
4434
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
4435
|
+
isUninitialized: true;
|
|
4436
|
+
isLoading: false;
|
|
4437
|
+
isSuccess: false;
|
|
4438
|
+
isError: false;
|
|
4439
|
+
}) | ({
|
|
4440
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
4441
|
+
} & Omit<{
|
|
4442
|
+
requestId: string;
|
|
4443
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").SharedSessionUpdateResponse | undefined;
|
|
4444
|
+
error?: unknown;
|
|
4445
|
+
endpointName: string;
|
|
4446
|
+
startedTimeStamp: number;
|
|
4447
|
+
fulfilledTimeStamp?: number;
|
|
4448
|
+
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
4449
|
+
requestId: string;
|
|
4450
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").SharedSessionUpdateResponse | undefined;
|
|
4451
|
+
error?: unknown;
|
|
4452
|
+
endpointName: string;
|
|
4453
|
+
startedTimeStamp: number;
|
|
4454
|
+
fulfilledTimeStamp?: number;
|
|
4455
|
+
}, "data" | "fulfilledTimeStamp">> & {
|
|
4456
|
+
error: undefined;
|
|
4457
|
+
} & {
|
|
4458
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
4459
|
+
isUninitialized: false;
|
|
4460
|
+
isLoading: false;
|
|
4461
|
+
isSuccess: true;
|
|
4462
|
+
isError: false;
|
|
4463
|
+
}) | ({
|
|
4464
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
4465
|
+
} & {
|
|
4466
|
+
requestId: string;
|
|
4467
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").SharedSessionUpdateResponse | undefined;
|
|
4468
|
+
error?: unknown;
|
|
4469
|
+
endpointName: string;
|
|
4470
|
+
startedTimeStamp: number;
|
|
4471
|
+
fulfilledTimeStamp?: number;
|
|
4472
|
+
} & {
|
|
4473
|
+
data?: undefined;
|
|
4474
|
+
} & {
|
|
4475
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
4476
|
+
isUninitialized: false;
|
|
4477
|
+
isLoading: true;
|
|
4478
|
+
isSuccess: false;
|
|
4479
|
+
isError: false;
|
|
4480
|
+
}) | ({
|
|
4481
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
4482
|
+
} & Omit<{
|
|
4483
|
+
requestId: string;
|
|
4484
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").SharedSessionUpdateResponse | undefined;
|
|
4485
|
+
error?: unknown;
|
|
4486
|
+
endpointName: string;
|
|
4487
|
+
startedTimeStamp: number;
|
|
4488
|
+
fulfilledTimeStamp?: number;
|
|
4489
|
+
}, "error"> & Required<Pick<{
|
|
4490
|
+
requestId: string;
|
|
4491
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").SharedSessionUpdateResponse | undefined;
|
|
4492
|
+
error?: unknown;
|
|
4493
|
+
endpointName: string;
|
|
4494
|
+
startedTimeStamp: number;
|
|
4495
|
+
fulfilledTimeStamp?: number;
|
|
4496
|
+
}, "error">> & {
|
|
4497
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
4498
|
+
isUninitialized: false;
|
|
4499
|
+
isLoading: false;
|
|
4500
|
+
isSuccess: false;
|
|
4501
|
+
isError: true;
|
|
4502
|
+
})>(options?: {
|
|
4503
|
+
selectFromResult?: ((state: ({
|
|
4504
|
+
requestId?: undefined;
|
|
4505
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
4506
|
+
data?: undefined;
|
|
4507
|
+
error?: undefined;
|
|
4508
|
+
endpointName?: string;
|
|
4509
|
+
startedTimeStamp?: undefined;
|
|
4510
|
+
fulfilledTimeStamp?: undefined;
|
|
4511
|
+
} & {
|
|
4512
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
4513
|
+
isUninitialized: true;
|
|
4514
|
+
isLoading: false;
|
|
4515
|
+
isSuccess: false;
|
|
4516
|
+
isError: false;
|
|
4517
|
+
}) | ({
|
|
4518
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
4519
|
+
} & Omit<{
|
|
4520
|
+
requestId: string;
|
|
4521
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").SharedSessionUpdateResponse | undefined;
|
|
4522
|
+
error?: unknown;
|
|
4523
|
+
endpointName: string;
|
|
4524
|
+
startedTimeStamp: number;
|
|
4525
|
+
fulfilledTimeStamp?: number;
|
|
4526
|
+
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
4527
|
+
requestId: string;
|
|
4528
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").SharedSessionUpdateResponse | undefined;
|
|
4529
|
+
error?: unknown;
|
|
4530
|
+
endpointName: string;
|
|
4531
|
+
startedTimeStamp: number;
|
|
4532
|
+
fulfilledTimeStamp?: number;
|
|
4533
|
+
}, "data" | "fulfilledTimeStamp">> & {
|
|
4534
|
+
error: undefined;
|
|
4535
|
+
} & {
|
|
4536
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
4537
|
+
isUninitialized: false;
|
|
4538
|
+
isLoading: false;
|
|
4539
|
+
isSuccess: true;
|
|
4540
|
+
isError: false;
|
|
4541
|
+
}) | ({
|
|
4542
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
4543
|
+
} & {
|
|
4544
|
+
requestId: string;
|
|
4545
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").SharedSessionUpdateResponse | undefined;
|
|
4546
|
+
error?: unknown;
|
|
4547
|
+
endpointName: string;
|
|
4548
|
+
startedTimeStamp: number;
|
|
4549
|
+
fulfilledTimeStamp?: number;
|
|
4550
|
+
} & {
|
|
4551
|
+
data?: undefined;
|
|
4552
|
+
} & {
|
|
4553
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
4554
|
+
isUninitialized: false;
|
|
4555
|
+
isLoading: true;
|
|
4556
|
+
isSuccess: false;
|
|
4557
|
+
isError: false;
|
|
4558
|
+
}) | ({
|
|
4559
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
4560
|
+
} & Omit<{
|
|
4561
|
+
requestId: string;
|
|
4562
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").SharedSessionUpdateResponse | undefined;
|
|
4563
|
+
error?: unknown;
|
|
4564
|
+
endpointName: string;
|
|
4565
|
+
startedTimeStamp: number;
|
|
4566
|
+
fulfilledTimeStamp?: number;
|
|
4567
|
+
}, "error"> & Required<Pick<{
|
|
4568
|
+
requestId: string;
|
|
4569
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").SharedSessionUpdateResponse | undefined;
|
|
4570
|
+
error?: unknown;
|
|
4571
|
+
endpointName: string;
|
|
4572
|
+
startedTimeStamp: number;
|
|
4573
|
+
fulfilledTimeStamp?: number;
|
|
4574
|
+
}, "error">> & {
|
|
4575
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
4576
|
+
isUninitialized: false;
|
|
4577
|
+
isLoading: false;
|
|
4578
|
+
isSuccess: false;
|
|
4579
|
+
isError: true;
|
|
4580
|
+
})) => R) | undefined;
|
|
4581
|
+
fixedCacheKey?: string;
|
|
4582
|
+
} | undefined) => readonly [(arg: {
|
|
4583
|
+
org: string;
|
|
4584
|
+
sessionId: string;
|
|
4585
|
+
requestBody: import("node_modules/@iblai/iblai-api/dist/types").SharedSessionUpdateRequest;
|
|
4586
|
+
}) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
4587
|
+
org: string;
|
|
4588
|
+
sessionId: string;
|
|
4589
|
+
requestBody: import("node_modules/@iblai/iblai-api/dist/types").SharedSessionUpdateRequest;
|
|
4590
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
4591
|
+
attempt?: number;
|
|
4592
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").SharedSessionUpdateResponse, "mentorApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
4593
|
+
originalArgs?: {
|
|
4594
|
+
org: string;
|
|
4595
|
+
sessionId: string;
|
|
4596
|
+
requestBody: import("node_modules/@iblai/iblai-api/dist/types").SharedSessionUpdateRequest;
|
|
4597
|
+
} | undefined;
|
|
4598
|
+
reset: () => void;
|
|
4063
4599
|
}], useDeleteMentorMutation: <R extends Record<string, any> = ({
|
|
4064
4600
|
requestId?: undefined;
|
|
4065
4601
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
@@ -4237,7 +4773,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
4237
4773
|
metadataValue?: string;
|
|
4238
4774
|
returnSessionInformation?: boolean;
|
|
4239
4775
|
visibility?: string;
|
|
4240
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
4776
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
4777
|
+
attempt?: number;
|
|
4778
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", void, "mentorApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
4241
4779
|
originalArgs?: {
|
|
4242
4780
|
name: string;
|
|
4243
4781
|
org: string;
|
|
@@ -4415,7 +4953,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
4415
4953
|
mentor: string;
|
|
4416
4954
|
org: string;
|
|
4417
4955
|
requestBody: import("node_modules/@iblai/iblai-api/dist/types").MentorFork;
|
|
4418
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
4956
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
4957
|
+
attempt?: number;
|
|
4958
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").Mentor, "mentorApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
4419
4959
|
originalArgs?: {
|
|
4420
4960
|
mentor: string;
|
|
4421
4961
|
org: string;
|
|
@@ -4456,7 +4996,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
4456
4996
|
tags?: Array<string>;
|
|
4457
4997
|
tenant?: string;
|
|
4458
4998
|
uniqueId?: string;
|
|
4459
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
4999
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
5000
|
+
attempt?: number;
|
|
5001
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
4460
5002
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
|
|
4461
5003
|
isUninitialized: false;
|
|
4462
5004
|
isLoading: false;
|
|
@@ -4487,7 +5029,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
4487
5029
|
tags?: Array<string>;
|
|
4488
5030
|
tenant?: string;
|
|
4489
5031
|
uniqueId?: string;
|
|
4490
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
5032
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
5033
|
+
attempt?: number;
|
|
5034
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
4491
5035
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
|
|
4492
5036
|
isUninitialized: false;
|
|
4493
5037
|
isLoading: false;
|
|
@@ -4514,7 +5058,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
4514
5058
|
tags?: Array<string>;
|
|
4515
5059
|
tenant?: string;
|
|
4516
5060
|
uniqueId?: string;
|
|
4517
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
5061
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
5062
|
+
attempt?: number;
|
|
5063
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
4518
5064
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
|
|
4519
5065
|
isUninitialized: false;
|
|
4520
5066
|
isLoading: false;
|
|
@@ -4539,7 +5085,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
4539
5085
|
tags?: Array<string>;
|
|
4540
5086
|
tenant?: string;
|
|
4541
5087
|
uniqueId?: string;
|
|
4542
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
5088
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
5089
|
+
attempt?: number;
|
|
5090
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
4543
5091
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
|
|
4544
5092
|
isUninitialized: false;
|
|
4545
5093
|
isLoading: false;
|
|
@@ -4603,7 +5151,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
4603
5151
|
tags?: Array<string>;
|
|
4604
5152
|
tenant?: string;
|
|
4605
5153
|
uniqueId?: string;
|
|
4606
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
5154
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
5155
|
+
attempt?: number;
|
|
5156
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
4607
5157
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
|
|
4608
5158
|
isUninitialized: false;
|
|
4609
5159
|
isLoading: false;
|
|
@@ -4634,7 +5184,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
4634
5184
|
tags?: Array<string>;
|
|
4635
5185
|
tenant?: string;
|
|
4636
5186
|
uniqueId?: string;
|
|
4637
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
5187
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
5188
|
+
attempt?: number;
|
|
5189
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
4638
5190
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
|
|
4639
5191
|
isUninitialized: false;
|
|
4640
5192
|
isLoading: false;
|
|
@@ -4661,7 +5213,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
4661
5213
|
tags?: Array<string>;
|
|
4662
5214
|
tenant?: string;
|
|
4663
5215
|
uniqueId?: string;
|
|
4664
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
5216
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
5217
|
+
attempt?: number;
|
|
5218
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
4665
5219
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
|
|
4666
5220
|
isUninitialized: false;
|
|
4667
5221
|
isLoading: false;
|
|
@@ -4686,7 +5240,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
4686
5240
|
tags?: Array<string>;
|
|
4687
5241
|
tenant?: string;
|
|
4688
5242
|
uniqueId?: string;
|
|
4689
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
5243
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
5244
|
+
attempt?: number;
|
|
5245
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
4690
5246
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
|
|
4691
5247
|
isUninitialized: false;
|
|
4692
5248
|
isLoading: false;
|
|
@@ -4713,7 +5269,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
4713
5269
|
tags?: Array<string>;
|
|
4714
5270
|
tenant?: string;
|
|
4715
5271
|
uniqueId?: string;
|
|
4716
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
5272
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
5273
|
+
attempt?: number;
|
|
5274
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>>;
|
|
4717
5275
|
}, useLazyGetPublicMentorsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
4718
5276
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
4719
5277
|
originalArgs?: undefined | undefined;
|
|
@@ -4748,7 +5306,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
4748
5306
|
tags?: Array<string>;
|
|
4749
5307
|
tenant?: string;
|
|
4750
5308
|
uniqueId?: string;
|
|
4751
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
5309
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
5310
|
+
attempt?: number;
|
|
5311
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
4752
5312
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
|
|
4753
5313
|
isUninitialized: false;
|
|
4754
5314
|
isLoading: false;
|
|
@@ -4779,7 +5339,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
4779
5339
|
tags?: Array<string>;
|
|
4780
5340
|
tenant?: string;
|
|
4781
5341
|
uniqueId?: string;
|
|
4782
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
5342
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
5343
|
+
attempt?: number;
|
|
5344
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
4783
5345
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
|
|
4784
5346
|
isUninitialized: false;
|
|
4785
5347
|
isLoading: false;
|
|
@@ -4806,7 +5368,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
4806
5368
|
tags?: Array<string>;
|
|
4807
5369
|
tenant?: string;
|
|
4808
5370
|
uniqueId?: string;
|
|
4809
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
5371
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
5372
|
+
attempt?: number;
|
|
5373
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
4810
5374
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
|
|
4811
5375
|
isUninitialized: false;
|
|
4812
5376
|
isLoading: false;
|
|
@@ -4831,7 +5395,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
4831
5395
|
tags?: Array<string>;
|
|
4832
5396
|
tenant?: string;
|
|
4833
5397
|
uniqueId?: string;
|
|
4834
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
5398
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
5399
|
+
attempt?: number;
|
|
5400
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
4835
5401
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
|
|
4836
5402
|
isUninitialized: false;
|
|
4837
5403
|
isLoading: false;
|
|
@@ -4876,7 +5442,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
4876
5442
|
tags?: Array<string>;
|
|
4877
5443
|
tenant?: string;
|
|
4878
5444
|
uniqueId?: string;
|
|
4879
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
5445
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
5446
|
+
attempt?: number;
|
|
5447
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
4880
5448
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
|
|
4881
5449
|
isUninitialized: false;
|
|
4882
5450
|
isLoading: false;
|
|
@@ -4907,7 +5475,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
4907
5475
|
tags?: Array<string>;
|
|
4908
5476
|
tenant?: string;
|
|
4909
5477
|
uniqueId?: string;
|
|
4910
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
5478
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
5479
|
+
attempt?: number;
|
|
5480
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
4911
5481
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
|
|
4912
5482
|
isUninitialized: false;
|
|
4913
5483
|
isLoading: false;
|
|
@@ -4934,7 +5504,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
4934
5504
|
tags?: Array<string>;
|
|
4935
5505
|
tenant?: string;
|
|
4936
5506
|
uniqueId?: string;
|
|
4937
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
5507
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
5508
|
+
attempt?: number;
|
|
5509
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
4938
5510
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
|
|
4939
5511
|
isUninitialized: false;
|
|
4940
5512
|
isLoading: false;
|
|
@@ -4959,7 +5531,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
4959
5531
|
tags?: Array<string>;
|
|
4960
5532
|
tenant?: string;
|
|
4961
5533
|
uniqueId?: string;
|
|
4962
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
5534
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
5535
|
+
attempt?: number;
|
|
5536
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
|
|
4963
5537
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
|
|
4964
5538
|
isUninitialized: false;
|
|
4965
5539
|
isLoading: false;
|
|
@@ -5001,7 +5575,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
5001
5575
|
tags?: Array<string>;
|
|
5002
5576
|
tenant?: string;
|
|
5003
5577
|
uniqueId?: string;
|
|
5004
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
5578
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
5579
|
+
attempt?: number;
|
|
5580
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
5005
5581
|
reset: () => void;
|
|
5006
5582
|
}, {
|
|
5007
5583
|
lastArg: {
|
|
@@ -5041,7 +5617,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
5041
5617
|
isUninitialized: true;
|
|
5042
5618
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5043
5619
|
org: string;
|
|
5044
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
5620
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
5621
|
+
attempt?: number;
|
|
5622
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").RecentlyAccessedMentor[], "mentorApiSlice", any>> & {
|
|
5045
5623
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").RecentlyAccessedMentor[] | undefined;
|
|
5046
5624
|
isUninitialized: false;
|
|
5047
5625
|
isLoading: false;
|
|
@@ -5058,7 +5636,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
5058
5636
|
error: undefined;
|
|
5059
5637
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5060
5638
|
org: string;
|
|
5061
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
5639
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
5640
|
+
attempt?: number;
|
|
5641
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").RecentlyAccessedMentor[], "mentorApiSlice", any>> & {
|
|
5062
5642
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").RecentlyAccessedMentor[] | undefined;
|
|
5063
5643
|
isUninitialized: false;
|
|
5064
5644
|
isLoading: false;
|
|
@@ -5071,7 +5651,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
5071
5651
|
error: undefined;
|
|
5072
5652
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5073
5653
|
org: string;
|
|
5074
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
5654
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
5655
|
+
attempt?: number;
|
|
5656
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").RecentlyAccessedMentor[], "mentorApiSlice", any>> & {
|
|
5075
5657
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").RecentlyAccessedMentor[] | undefined;
|
|
5076
5658
|
isUninitialized: false;
|
|
5077
5659
|
isLoading: false;
|
|
@@ -5082,7 +5664,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
5082
5664
|
isError: true;
|
|
5083
5665
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5084
5666
|
org: string;
|
|
5085
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
5667
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
5668
|
+
attempt?: number;
|
|
5669
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").RecentlyAccessedMentor[], "mentorApiSlice", any>> & {
|
|
5086
5670
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").RecentlyAccessedMentor[] | undefined;
|
|
5087
5671
|
isUninitialized: false;
|
|
5088
5672
|
isLoading: false;
|
|
@@ -5118,7 +5702,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
5118
5702
|
isUninitialized: true;
|
|
5119
5703
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5120
5704
|
org: string;
|
|
5121
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
5705
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
5706
|
+
attempt?: number;
|
|
5707
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").RecentlyAccessedMentor[], "mentorApiSlice", any>> & {
|
|
5122
5708
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").RecentlyAccessedMentor[] | undefined;
|
|
5123
5709
|
isUninitialized: false;
|
|
5124
5710
|
isLoading: false;
|
|
@@ -5135,7 +5721,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
5135
5721
|
error: undefined;
|
|
5136
5722
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5137
5723
|
org: string;
|
|
5138
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
5724
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
5725
|
+
attempt?: number;
|
|
5726
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").RecentlyAccessedMentor[], "mentorApiSlice", any>> & {
|
|
5139
5727
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").RecentlyAccessedMentor[] | undefined;
|
|
5140
5728
|
isUninitialized: false;
|
|
5141
5729
|
isLoading: false;
|
|
@@ -5148,7 +5736,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
5148
5736
|
error: undefined;
|
|
5149
5737
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5150
5738
|
org: string;
|
|
5151
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
5739
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
5740
|
+
attempt?: number;
|
|
5741
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").RecentlyAccessedMentor[], "mentorApiSlice", any>> & {
|
|
5152
5742
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").RecentlyAccessedMentor[] | undefined;
|
|
5153
5743
|
isUninitialized: false;
|
|
5154
5744
|
isLoading: false;
|
|
@@ -5159,7 +5749,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
5159
5749
|
isError: true;
|
|
5160
5750
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5161
5751
|
org: string;
|
|
5162
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
5752
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
5753
|
+
attempt?: number;
|
|
5754
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").RecentlyAccessedMentor[], "mentorApiSlice", any>> & {
|
|
5163
5755
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").RecentlyAccessedMentor[] | undefined;
|
|
5164
5756
|
isUninitialized: false;
|
|
5165
5757
|
isLoading: false;
|
|
@@ -5172,7 +5764,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
5172
5764
|
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
5173
5765
|
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5174
5766
|
org: string;
|
|
5175
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
5767
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
5768
|
+
attempt?: number;
|
|
5769
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").RecentlyAccessedMentor[], "mentorApiSlice", any>>;
|
|
5176
5770
|
}, useLazyGetRecentlyAccessedMentorsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
5177
5771
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
5178
5772
|
originalArgs?: undefined | undefined;
|
|
@@ -5193,7 +5787,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
5193
5787
|
isUninitialized: true;
|
|
5194
5788
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5195
5789
|
org: string;
|
|
5196
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
5790
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
5791
|
+
attempt?: number;
|
|
5792
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").RecentlyAccessedMentor[], "mentorApiSlice", any>> & {
|
|
5197
5793
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").RecentlyAccessedMentor[] | undefined;
|
|
5198
5794
|
isUninitialized: false;
|
|
5199
5795
|
isLoading: false;
|
|
@@ -5210,7 +5806,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
5210
5806
|
error: undefined;
|
|
5211
5807
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5212
5808
|
org: string;
|
|
5213
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
5809
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
5810
|
+
attempt?: number;
|
|
5811
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").RecentlyAccessedMentor[], "mentorApiSlice", any>> & {
|
|
5214
5812
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").RecentlyAccessedMentor[] | undefined;
|
|
5215
5813
|
isUninitialized: false;
|
|
5216
5814
|
isLoading: false;
|
|
@@ -5223,7 +5821,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
5223
5821
|
error: undefined;
|
|
5224
5822
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5225
5823
|
org: string;
|
|
5226
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
5824
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
5825
|
+
attempt?: number;
|
|
5826
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").RecentlyAccessedMentor[], "mentorApiSlice", any>> & {
|
|
5227
5827
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").RecentlyAccessedMentor[] | undefined;
|
|
5228
5828
|
isUninitialized: false;
|
|
5229
5829
|
isLoading: false;
|
|
@@ -5234,7 +5834,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
5234
5834
|
isError: true;
|
|
5235
5835
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5236
5836
|
org: string;
|
|
5237
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
5837
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
5838
|
+
attempt?: number;
|
|
5839
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").RecentlyAccessedMentor[], "mentorApiSlice", any>> & {
|
|
5238
5840
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").RecentlyAccessedMentor[] | undefined;
|
|
5239
5841
|
isUninitialized: false;
|
|
5240
5842
|
isLoading: false;
|
|
@@ -5265,7 +5867,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
5265
5867
|
isUninitialized: true;
|
|
5266
5868
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5267
5869
|
org: string;
|
|
5268
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
5870
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
5871
|
+
attempt?: number;
|
|
5872
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").RecentlyAccessedMentor[], "mentorApiSlice", any>> & {
|
|
5269
5873
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").RecentlyAccessedMentor[] | undefined;
|
|
5270
5874
|
isUninitialized: false;
|
|
5271
5875
|
isLoading: false;
|
|
@@ -5282,7 +5886,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
5282
5886
|
error: undefined;
|
|
5283
5887
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5284
5888
|
org: string;
|
|
5285
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
5889
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
5890
|
+
attempt?: number;
|
|
5891
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").RecentlyAccessedMentor[], "mentorApiSlice", any>> & {
|
|
5286
5892
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").RecentlyAccessedMentor[] | undefined;
|
|
5287
5893
|
isUninitialized: false;
|
|
5288
5894
|
isLoading: false;
|
|
@@ -5295,7 +5901,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
5295
5901
|
error: undefined;
|
|
5296
5902
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5297
5903
|
org: string;
|
|
5298
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
5904
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
5905
|
+
attempt?: number;
|
|
5906
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").RecentlyAccessedMentor[], "mentorApiSlice", any>> & {
|
|
5299
5907
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").RecentlyAccessedMentor[] | undefined;
|
|
5300
5908
|
isUninitialized: false;
|
|
5301
5909
|
isLoading: false;
|
|
@@ -5306,7 +5914,9 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
5306
5914
|
isError: true;
|
|
5307
5915
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5308
5916
|
org: string;
|
|
5309
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
5917
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
5918
|
+
attempt?: number;
|
|
5919
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").RecentlyAccessedMentor[], "mentorApiSlice", any>> & {
|
|
5310
5920
|
currentData?: import("node_modules/@iblai/iblai-api/dist/types").RecentlyAccessedMentor[] | undefined;
|
|
5311
5921
|
isUninitialized: false;
|
|
5312
5922
|
isLoading: false;
|
|
@@ -5320,13 +5930,872 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
5320
5930
|
org: string;
|
|
5321
5931
|
}, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5322
5932
|
org: string;
|
|
5323
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
5933
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
5934
|
+
attempt?: number;
|
|
5935
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").RecentlyAccessedMentor[], "mentorApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
5324
5936
|
reset: () => void;
|
|
5325
5937
|
}, {
|
|
5326
5938
|
lastArg: {
|
|
5327
5939
|
org: string;
|
|
5328
5940
|
};
|
|
5329
|
-
}],
|
|
5941
|
+
}], useStarMentorMutation: <R extends Record<string, any> = ({
|
|
5942
|
+
requestId?: undefined;
|
|
5943
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
5944
|
+
data?: undefined;
|
|
5945
|
+
error?: undefined;
|
|
5946
|
+
endpointName?: string;
|
|
5947
|
+
startedTimeStamp?: undefined;
|
|
5948
|
+
fulfilledTimeStamp?: undefined;
|
|
5949
|
+
} & {
|
|
5950
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
5951
|
+
isUninitialized: true;
|
|
5952
|
+
isLoading: false;
|
|
5953
|
+
isSuccess: false;
|
|
5954
|
+
isError: false;
|
|
5955
|
+
}) | ({
|
|
5956
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
5957
|
+
} & Omit<{
|
|
5958
|
+
requestId: string;
|
|
5959
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").StarMentor | undefined;
|
|
5960
|
+
error?: unknown;
|
|
5961
|
+
endpointName: string;
|
|
5962
|
+
startedTimeStamp: number;
|
|
5963
|
+
fulfilledTimeStamp?: number;
|
|
5964
|
+
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
5965
|
+
requestId: string;
|
|
5966
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").StarMentor | undefined;
|
|
5967
|
+
error?: unknown;
|
|
5968
|
+
endpointName: string;
|
|
5969
|
+
startedTimeStamp: number;
|
|
5970
|
+
fulfilledTimeStamp?: number;
|
|
5971
|
+
}, "data" | "fulfilledTimeStamp">> & {
|
|
5972
|
+
error: undefined;
|
|
5973
|
+
} & {
|
|
5974
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
5975
|
+
isUninitialized: false;
|
|
5976
|
+
isLoading: false;
|
|
5977
|
+
isSuccess: true;
|
|
5978
|
+
isError: false;
|
|
5979
|
+
}) | ({
|
|
5980
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
5981
|
+
} & {
|
|
5982
|
+
requestId: string;
|
|
5983
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").StarMentor | undefined;
|
|
5984
|
+
error?: unknown;
|
|
5985
|
+
endpointName: string;
|
|
5986
|
+
startedTimeStamp: number;
|
|
5987
|
+
fulfilledTimeStamp?: number;
|
|
5988
|
+
} & {
|
|
5989
|
+
data?: undefined;
|
|
5990
|
+
} & {
|
|
5991
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
5992
|
+
isUninitialized: false;
|
|
5993
|
+
isLoading: true;
|
|
5994
|
+
isSuccess: false;
|
|
5995
|
+
isError: false;
|
|
5996
|
+
}) | ({
|
|
5997
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
5998
|
+
} & Omit<{
|
|
5999
|
+
requestId: string;
|
|
6000
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").StarMentor | undefined;
|
|
6001
|
+
error?: unknown;
|
|
6002
|
+
endpointName: string;
|
|
6003
|
+
startedTimeStamp: number;
|
|
6004
|
+
fulfilledTimeStamp?: number;
|
|
6005
|
+
}, "error"> & Required<Pick<{
|
|
6006
|
+
requestId: string;
|
|
6007
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").StarMentor | undefined;
|
|
6008
|
+
error?: unknown;
|
|
6009
|
+
endpointName: string;
|
|
6010
|
+
startedTimeStamp: number;
|
|
6011
|
+
fulfilledTimeStamp?: number;
|
|
6012
|
+
}, "error">> & {
|
|
6013
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
6014
|
+
isUninitialized: false;
|
|
6015
|
+
isLoading: false;
|
|
6016
|
+
isSuccess: false;
|
|
6017
|
+
isError: true;
|
|
6018
|
+
})>(options?: {
|
|
6019
|
+
selectFromResult?: ((state: ({
|
|
6020
|
+
requestId?: undefined;
|
|
6021
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
6022
|
+
data?: undefined;
|
|
6023
|
+
error?: undefined;
|
|
6024
|
+
endpointName?: string;
|
|
6025
|
+
startedTimeStamp?: undefined;
|
|
6026
|
+
fulfilledTimeStamp?: undefined;
|
|
6027
|
+
} & {
|
|
6028
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
6029
|
+
isUninitialized: true;
|
|
6030
|
+
isLoading: false;
|
|
6031
|
+
isSuccess: false;
|
|
6032
|
+
isError: false;
|
|
6033
|
+
}) | ({
|
|
6034
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
6035
|
+
} & Omit<{
|
|
6036
|
+
requestId: string;
|
|
6037
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").StarMentor | undefined;
|
|
6038
|
+
error?: unknown;
|
|
6039
|
+
endpointName: string;
|
|
6040
|
+
startedTimeStamp: number;
|
|
6041
|
+
fulfilledTimeStamp?: number;
|
|
6042
|
+
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
6043
|
+
requestId: string;
|
|
6044
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").StarMentor | undefined;
|
|
6045
|
+
error?: unknown;
|
|
6046
|
+
endpointName: string;
|
|
6047
|
+
startedTimeStamp: number;
|
|
6048
|
+
fulfilledTimeStamp?: number;
|
|
6049
|
+
}, "data" | "fulfilledTimeStamp">> & {
|
|
6050
|
+
error: undefined;
|
|
6051
|
+
} & {
|
|
6052
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
6053
|
+
isUninitialized: false;
|
|
6054
|
+
isLoading: false;
|
|
6055
|
+
isSuccess: true;
|
|
6056
|
+
isError: false;
|
|
6057
|
+
}) | ({
|
|
6058
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
6059
|
+
} & {
|
|
6060
|
+
requestId: string;
|
|
6061
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").StarMentor | undefined;
|
|
6062
|
+
error?: unknown;
|
|
6063
|
+
endpointName: string;
|
|
6064
|
+
startedTimeStamp: number;
|
|
6065
|
+
fulfilledTimeStamp?: number;
|
|
6066
|
+
} & {
|
|
6067
|
+
data?: undefined;
|
|
6068
|
+
} & {
|
|
6069
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
6070
|
+
isUninitialized: false;
|
|
6071
|
+
isLoading: true;
|
|
6072
|
+
isSuccess: false;
|
|
6073
|
+
isError: false;
|
|
6074
|
+
}) | ({
|
|
6075
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
6076
|
+
} & Omit<{
|
|
6077
|
+
requestId: string;
|
|
6078
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").StarMentor | undefined;
|
|
6079
|
+
error?: unknown;
|
|
6080
|
+
endpointName: string;
|
|
6081
|
+
startedTimeStamp: number;
|
|
6082
|
+
fulfilledTimeStamp?: number;
|
|
6083
|
+
}, "error"> & Required<Pick<{
|
|
6084
|
+
requestId: string;
|
|
6085
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").StarMentor | undefined;
|
|
6086
|
+
error?: unknown;
|
|
6087
|
+
endpointName: string;
|
|
6088
|
+
startedTimeStamp: number;
|
|
6089
|
+
fulfilledTimeStamp?: number;
|
|
6090
|
+
}, "error">> & {
|
|
6091
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
6092
|
+
isUninitialized: false;
|
|
6093
|
+
isLoading: false;
|
|
6094
|
+
isSuccess: false;
|
|
6095
|
+
isError: true;
|
|
6096
|
+
})) => R) | undefined;
|
|
6097
|
+
fixedCacheKey?: string;
|
|
6098
|
+
} | undefined) => readonly [(arg: {
|
|
6099
|
+
mentor: string;
|
|
6100
|
+
org: string;
|
|
6101
|
+
}) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
6102
|
+
mentor: string;
|
|
6103
|
+
org: string;
|
|
6104
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
6105
|
+
attempt?: number;
|
|
6106
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").StarMentor, "mentorApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
6107
|
+
originalArgs?: {
|
|
6108
|
+
mentor: string;
|
|
6109
|
+
org: string;
|
|
6110
|
+
} | undefined;
|
|
6111
|
+
reset: () => void;
|
|
6112
|
+
}], useUnstarMentorMutation: <R extends Record<string, any> = ({
|
|
6113
|
+
requestId?: undefined;
|
|
6114
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
6115
|
+
data?: undefined;
|
|
6116
|
+
error?: undefined;
|
|
6117
|
+
endpointName?: string;
|
|
6118
|
+
startedTimeStamp?: undefined;
|
|
6119
|
+
fulfilledTimeStamp?: undefined;
|
|
6120
|
+
} & {
|
|
6121
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
6122
|
+
isUninitialized: true;
|
|
6123
|
+
isLoading: false;
|
|
6124
|
+
isSuccess: false;
|
|
6125
|
+
isError: false;
|
|
6126
|
+
}) | ({
|
|
6127
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
6128
|
+
} & Omit<{
|
|
6129
|
+
requestId: string;
|
|
6130
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").StarMentor | undefined;
|
|
6131
|
+
error?: unknown;
|
|
6132
|
+
endpointName: string;
|
|
6133
|
+
startedTimeStamp: number;
|
|
6134
|
+
fulfilledTimeStamp?: number;
|
|
6135
|
+
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
6136
|
+
requestId: string;
|
|
6137
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").StarMentor | undefined;
|
|
6138
|
+
error?: unknown;
|
|
6139
|
+
endpointName: string;
|
|
6140
|
+
startedTimeStamp: number;
|
|
6141
|
+
fulfilledTimeStamp?: number;
|
|
6142
|
+
}, "data" | "fulfilledTimeStamp">> & {
|
|
6143
|
+
error: undefined;
|
|
6144
|
+
} & {
|
|
6145
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
6146
|
+
isUninitialized: false;
|
|
6147
|
+
isLoading: false;
|
|
6148
|
+
isSuccess: true;
|
|
6149
|
+
isError: false;
|
|
6150
|
+
}) | ({
|
|
6151
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
6152
|
+
} & {
|
|
6153
|
+
requestId: string;
|
|
6154
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").StarMentor | undefined;
|
|
6155
|
+
error?: unknown;
|
|
6156
|
+
endpointName: string;
|
|
6157
|
+
startedTimeStamp: number;
|
|
6158
|
+
fulfilledTimeStamp?: number;
|
|
6159
|
+
} & {
|
|
6160
|
+
data?: undefined;
|
|
6161
|
+
} & {
|
|
6162
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
6163
|
+
isUninitialized: false;
|
|
6164
|
+
isLoading: true;
|
|
6165
|
+
isSuccess: false;
|
|
6166
|
+
isError: false;
|
|
6167
|
+
}) | ({
|
|
6168
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
6169
|
+
} & Omit<{
|
|
6170
|
+
requestId: string;
|
|
6171
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").StarMentor | undefined;
|
|
6172
|
+
error?: unknown;
|
|
6173
|
+
endpointName: string;
|
|
6174
|
+
startedTimeStamp: number;
|
|
6175
|
+
fulfilledTimeStamp?: number;
|
|
6176
|
+
}, "error"> & Required<Pick<{
|
|
6177
|
+
requestId: string;
|
|
6178
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").StarMentor | undefined;
|
|
6179
|
+
error?: unknown;
|
|
6180
|
+
endpointName: string;
|
|
6181
|
+
startedTimeStamp: number;
|
|
6182
|
+
fulfilledTimeStamp?: number;
|
|
6183
|
+
}, "error">> & {
|
|
6184
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
6185
|
+
isUninitialized: false;
|
|
6186
|
+
isLoading: false;
|
|
6187
|
+
isSuccess: false;
|
|
6188
|
+
isError: true;
|
|
6189
|
+
})>(options?: {
|
|
6190
|
+
selectFromResult?: ((state: ({
|
|
6191
|
+
requestId?: undefined;
|
|
6192
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
6193
|
+
data?: undefined;
|
|
6194
|
+
error?: undefined;
|
|
6195
|
+
endpointName?: string;
|
|
6196
|
+
startedTimeStamp?: undefined;
|
|
6197
|
+
fulfilledTimeStamp?: undefined;
|
|
6198
|
+
} & {
|
|
6199
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
6200
|
+
isUninitialized: true;
|
|
6201
|
+
isLoading: false;
|
|
6202
|
+
isSuccess: false;
|
|
6203
|
+
isError: false;
|
|
6204
|
+
}) | ({
|
|
6205
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
6206
|
+
} & Omit<{
|
|
6207
|
+
requestId: string;
|
|
6208
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").StarMentor | undefined;
|
|
6209
|
+
error?: unknown;
|
|
6210
|
+
endpointName: string;
|
|
6211
|
+
startedTimeStamp: number;
|
|
6212
|
+
fulfilledTimeStamp?: number;
|
|
6213
|
+
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
6214
|
+
requestId: string;
|
|
6215
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").StarMentor | undefined;
|
|
6216
|
+
error?: unknown;
|
|
6217
|
+
endpointName: string;
|
|
6218
|
+
startedTimeStamp: number;
|
|
6219
|
+
fulfilledTimeStamp?: number;
|
|
6220
|
+
}, "data" | "fulfilledTimeStamp">> & {
|
|
6221
|
+
error: undefined;
|
|
6222
|
+
} & {
|
|
6223
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
6224
|
+
isUninitialized: false;
|
|
6225
|
+
isLoading: false;
|
|
6226
|
+
isSuccess: true;
|
|
6227
|
+
isError: false;
|
|
6228
|
+
}) | ({
|
|
6229
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
6230
|
+
} & {
|
|
6231
|
+
requestId: string;
|
|
6232
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").StarMentor | undefined;
|
|
6233
|
+
error?: unknown;
|
|
6234
|
+
endpointName: string;
|
|
6235
|
+
startedTimeStamp: number;
|
|
6236
|
+
fulfilledTimeStamp?: number;
|
|
6237
|
+
} & {
|
|
6238
|
+
data?: undefined;
|
|
6239
|
+
} & {
|
|
6240
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
6241
|
+
isUninitialized: false;
|
|
6242
|
+
isLoading: true;
|
|
6243
|
+
isSuccess: false;
|
|
6244
|
+
isError: false;
|
|
6245
|
+
}) | ({
|
|
6246
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
6247
|
+
} & Omit<{
|
|
6248
|
+
requestId: string;
|
|
6249
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").StarMentor | undefined;
|
|
6250
|
+
error?: unknown;
|
|
6251
|
+
endpointName: string;
|
|
6252
|
+
startedTimeStamp: number;
|
|
6253
|
+
fulfilledTimeStamp?: number;
|
|
6254
|
+
}, "error"> & Required<Pick<{
|
|
6255
|
+
requestId: string;
|
|
6256
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").StarMentor | undefined;
|
|
6257
|
+
error?: unknown;
|
|
6258
|
+
endpointName: string;
|
|
6259
|
+
startedTimeStamp: number;
|
|
6260
|
+
fulfilledTimeStamp?: number;
|
|
6261
|
+
}, "error">> & {
|
|
6262
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
6263
|
+
isUninitialized: false;
|
|
6264
|
+
isLoading: false;
|
|
6265
|
+
isSuccess: false;
|
|
6266
|
+
isError: true;
|
|
6267
|
+
})) => R) | undefined;
|
|
6268
|
+
fixedCacheKey?: string;
|
|
6269
|
+
} | undefined) => readonly [(arg: {
|
|
6270
|
+
mentor: string;
|
|
6271
|
+
org: string;
|
|
6272
|
+
}) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
6273
|
+
mentor: string;
|
|
6274
|
+
org: string;
|
|
6275
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
6276
|
+
attempt?: number;
|
|
6277
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").StarMentor, "mentorApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
6278
|
+
originalArgs?: {
|
|
6279
|
+
mentor: string;
|
|
6280
|
+
org: string;
|
|
6281
|
+
} | undefined;
|
|
6282
|
+
reset: () => void;
|
|
6283
|
+
}], useStarredMentorsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
6284
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
6285
|
+
originalArgs?: undefined | undefined;
|
|
6286
|
+
data?: undefined | undefined;
|
|
6287
|
+
error?: undefined | undefined;
|
|
6288
|
+
requestId?: undefined | undefined;
|
|
6289
|
+
endpointName?: string | undefined;
|
|
6290
|
+
startedTimeStamp?: undefined | undefined;
|
|
6291
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
6292
|
+
} & {
|
|
6293
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").StarMentor[] | undefined;
|
|
6294
|
+
isUninitialized: false;
|
|
6295
|
+
isLoading: false;
|
|
6296
|
+
isFetching: false;
|
|
6297
|
+
isSuccess: false;
|
|
6298
|
+
isError: false;
|
|
6299
|
+
}, "isUninitialized"> & {
|
|
6300
|
+
isUninitialized: true;
|
|
6301
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
6302
|
+
org: string;
|
|
6303
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
6304
|
+
attempt?: number;
|
|
6305
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").StarMentor[], "mentorApiSlice", any>> & {
|
|
6306
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").StarMentor[] | undefined;
|
|
6307
|
+
isUninitialized: false;
|
|
6308
|
+
isLoading: false;
|
|
6309
|
+
isFetching: false;
|
|
6310
|
+
isSuccess: false;
|
|
6311
|
+
isError: false;
|
|
6312
|
+
}, {
|
|
6313
|
+
isLoading: true;
|
|
6314
|
+
isFetching: boolean;
|
|
6315
|
+
data: undefined;
|
|
6316
|
+
} | ({
|
|
6317
|
+
isSuccess: true;
|
|
6318
|
+
isFetching: true;
|
|
6319
|
+
error: undefined;
|
|
6320
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
6321
|
+
org: string;
|
|
6322
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
6323
|
+
attempt?: number;
|
|
6324
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").StarMentor[], "mentorApiSlice", any>> & {
|
|
6325
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").StarMentor[] | undefined;
|
|
6326
|
+
isUninitialized: false;
|
|
6327
|
+
isLoading: false;
|
|
6328
|
+
isFetching: false;
|
|
6329
|
+
isSuccess: false;
|
|
6330
|
+
isError: false;
|
|
6331
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
6332
|
+
isSuccess: true;
|
|
6333
|
+
isFetching: false;
|
|
6334
|
+
error: undefined;
|
|
6335
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
6336
|
+
org: string;
|
|
6337
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
6338
|
+
attempt?: number;
|
|
6339
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").StarMentor[], "mentorApiSlice", any>> & {
|
|
6340
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").StarMentor[] | undefined;
|
|
6341
|
+
isUninitialized: false;
|
|
6342
|
+
isLoading: false;
|
|
6343
|
+
isFetching: false;
|
|
6344
|
+
isSuccess: false;
|
|
6345
|
+
isError: false;
|
|
6346
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
6347
|
+
isError: true;
|
|
6348
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
6349
|
+
org: string;
|
|
6350
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
6351
|
+
attempt?: number;
|
|
6352
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").StarMentor[], "mentorApiSlice", any>> & {
|
|
6353
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").StarMentor[] | undefined;
|
|
6354
|
+
isUninitialized: false;
|
|
6355
|
+
isLoading: false;
|
|
6356
|
+
isFetching: false;
|
|
6357
|
+
isSuccess: false;
|
|
6358
|
+
isError: false;
|
|
6359
|
+
}, "error">>)>> & {
|
|
6360
|
+
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
6361
|
+
}>(arg: {
|
|
6362
|
+
org: string;
|
|
6363
|
+
} | typeof import("@reduxjs/toolkit/query").skipToken, options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & {
|
|
6364
|
+
skip?: boolean;
|
|
6365
|
+
refetchOnMountOrArgChange?: boolean | number;
|
|
6366
|
+
} & {
|
|
6367
|
+
skip?: boolean;
|
|
6368
|
+
selectFromResult?: ((state: import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
6369
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
6370
|
+
originalArgs?: undefined | undefined;
|
|
6371
|
+
data?: undefined | undefined;
|
|
6372
|
+
error?: undefined | undefined;
|
|
6373
|
+
requestId?: undefined | undefined;
|
|
6374
|
+
endpointName?: string | undefined;
|
|
6375
|
+
startedTimeStamp?: undefined | undefined;
|
|
6376
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
6377
|
+
} & {
|
|
6378
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").StarMentor[] | undefined;
|
|
6379
|
+
isUninitialized: false;
|
|
6380
|
+
isLoading: false;
|
|
6381
|
+
isFetching: false;
|
|
6382
|
+
isSuccess: false;
|
|
6383
|
+
isError: false;
|
|
6384
|
+
}, "isUninitialized"> & {
|
|
6385
|
+
isUninitialized: true;
|
|
6386
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
6387
|
+
org: string;
|
|
6388
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
6389
|
+
attempt?: number;
|
|
6390
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").StarMentor[], "mentorApiSlice", any>> & {
|
|
6391
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").StarMentor[] | undefined;
|
|
6392
|
+
isUninitialized: false;
|
|
6393
|
+
isLoading: false;
|
|
6394
|
+
isFetching: false;
|
|
6395
|
+
isSuccess: false;
|
|
6396
|
+
isError: false;
|
|
6397
|
+
}, {
|
|
6398
|
+
isLoading: true;
|
|
6399
|
+
isFetching: boolean;
|
|
6400
|
+
data: undefined;
|
|
6401
|
+
} | ({
|
|
6402
|
+
isSuccess: true;
|
|
6403
|
+
isFetching: true;
|
|
6404
|
+
error: undefined;
|
|
6405
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
6406
|
+
org: string;
|
|
6407
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
6408
|
+
attempt?: number;
|
|
6409
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").StarMentor[], "mentorApiSlice", any>> & {
|
|
6410
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").StarMentor[] | undefined;
|
|
6411
|
+
isUninitialized: false;
|
|
6412
|
+
isLoading: false;
|
|
6413
|
+
isFetching: false;
|
|
6414
|
+
isSuccess: false;
|
|
6415
|
+
isError: false;
|
|
6416
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
6417
|
+
isSuccess: true;
|
|
6418
|
+
isFetching: false;
|
|
6419
|
+
error: undefined;
|
|
6420
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
6421
|
+
org: string;
|
|
6422
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
6423
|
+
attempt?: number;
|
|
6424
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").StarMentor[], "mentorApiSlice", any>> & {
|
|
6425
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").StarMentor[] | undefined;
|
|
6426
|
+
isUninitialized: false;
|
|
6427
|
+
isLoading: false;
|
|
6428
|
+
isFetching: false;
|
|
6429
|
+
isSuccess: false;
|
|
6430
|
+
isError: false;
|
|
6431
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
6432
|
+
isError: true;
|
|
6433
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
6434
|
+
org: string;
|
|
6435
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
6436
|
+
attempt?: number;
|
|
6437
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").StarMentor[], "mentorApiSlice", any>> & {
|
|
6438
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").StarMentor[] | undefined;
|
|
6439
|
+
isUninitialized: false;
|
|
6440
|
+
isLoading: false;
|
|
6441
|
+
isFetching: false;
|
|
6442
|
+
isSuccess: false;
|
|
6443
|
+
isError: false;
|
|
6444
|
+
}, "error">>)>> & {
|
|
6445
|
+
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
6446
|
+
}) => R) | undefined;
|
|
6447
|
+
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
6448
|
+
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
6449
|
+
org: string;
|
|
6450
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
6451
|
+
attempt?: number;
|
|
6452
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").StarMentor[], "mentorApiSlice", any>>;
|
|
6453
|
+
}, useLazyStarredMentorsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
6454
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
6455
|
+
originalArgs?: undefined | undefined;
|
|
6456
|
+
data?: undefined | undefined;
|
|
6457
|
+
error?: undefined | undefined;
|
|
6458
|
+
requestId?: undefined | undefined;
|
|
6459
|
+
endpointName?: string | undefined;
|
|
6460
|
+
startedTimeStamp?: undefined | undefined;
|
|
6461
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
6462
|
+
} & {
|
|
6463
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").StarMentor[] | undefined;
|
|
6464
|
+
isUninitialized: false;
|
|
6465
|
+
isLoading: false;
|
|
6466
|
+
isFetching: false;
|
|
6467
|
+
isSuccess: false;
|
|
6468
|
+
isError: false;
|
|
6469
|
+
}, "isUninitialized"> & {
|
|
6470
|
+
isUninitialized: true;
|
|
6471
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
6472
|
+
org: string;
|
|
6473
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
6474
|
+
attempt?: number;
|
|
6475
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").StarMentor[], "mentorApiSlice", any>> & {
|
|
6476
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").StarMentor[] | undefined;
|
|
6477
|
+
isUninitialized: false;
|
|
6478
|
+
isLoading: false;
|
|
6479
|
+
isFetching: false;
|
|
6480
|
+
isSuccess: false;
|
|
6481
|
+
isError: false;
|
|
6482
|
+
}, {
|
|
6483
|
+
isLoading: true;
|
|
6484
|
+
isFetching: boolean;
|
|
6485
|
+
data: undefined;
|
|
6486
|
+
} | ({
|
|
6487
|
+
isSuccess: true;
|
|
6488
|
+
isFetching: true;
|
|
6489
|
+
error: undefined;
|
|
6490
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
6491
|
+
org: string;
|
|
6492
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
6493
|
+
attempt?: number;
|
|
6494
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").StarMentor[], "mentorApiSlice", any>> & {
|
|
6495
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").StarMentor[] | undefined;
|
|
6496
|
+
isUninitialized: false;
|
|
6497
|
+
isLoading: false;
|
|
6498
|
+
isFetching: false;
|
|
6499
|
+
isSuccess: false;
|
|
6500
|
+
isError: false;
|
|
6501
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
6502
|
+
isSuccess: true;
|
|
6503
|
+
isFetching: false;
|
|
6504
|
+
error: undefined;
|
|
6505
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
6506
|
+
org: string;
|
|
6507
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
6508
|
+
attempt?: number;
|
|
6509
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").StarMentor[], "mentorApiSlice", any>> & {
|
|
6510
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").StarMentor[] | undefined;
|
|
6511
|
+
isUninitialized: false;
|
|
6512
|
+
isLoading: false;
|
|
6513
|
+
isFetching: false;
|
|
6514
|
+
isSuccess: false;
|
|
6515
|
+
isError: false;
|
|
6516
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
6517
|
+
isError: true;
|
|
6518
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
6519
|
+
org: string;
|
|
6520
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
6521
|
+
attempt?: number;
|
|
6522
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").StarMentor[], "mentorApiSlice", any>> & {
|
|
6523
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").StarMentor[] | undefined;
|
|
6524
|
+
isUninitialized: false;
|
|
6525
|
+
isLoading: false;
|
|
6526
|
+
isFetching: false;
|
|
6527
|
+
isSuccess: false;
|
|
6528
|
+
isError: false;
|
|
6529
|
+
}, "error">>)>> & {
|
|
6530
|
+
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
6531
|
+
}>(options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & Omit<{
|
|
6532
|
+
skip?: boolean;
|
|
6533
|
+
selectFromResult?: ((state: import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
6534
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
6535
|
+
originalArgs?: undefined | undefined;
|
|
6536
|
+
data?: undefined | undefined;
|
|
6537
|
+
error?: undefined | undefined;
|
|
6538
|
+
requestId?: undefined | undefined;
|
|
6539
|
+
endpointName?: string | undefined;
|
|
6540
|
+
startedTimeStamp?: undefined | undefined;
|
|
6541
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
6542
|
+
} & {
|
|
6543
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").StarMentor[] | undefined;
|
|
6544
|
+
isUninitialized: false;
|
|
6545
|
+
isLoading: false;
|
|
6546
|
+
isFetching: false;
|
|
6547
|
+
isSuccess: false;
|
|
6548
|
+
isError: false;
|
|
6549
|
+
}, "isUninitialized"> & {
|
|
6550
|
+
isUninitialized: true;
|
|
6551
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
6552
|
+
org: string;
|
|
6553
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
6554
|
+
attempt?: number;
|
|
6555
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").StarMentor[], "mentorApiSlice", any>> & {
|
|
6556
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").StarMentor[] | undefined;
|
|
6557
|
+
isUninitialized: false;
|
|
6558
|
+
isLoading: false;
|
|
6559
|
+
isFetching: false;
|
|
6560
|
+
isSuccess: false;
|
|
6561
|
+
isError: false;
|
|
6562
|
+
}, {
|
|
6563
|
+
isLoading: true;
|
|
6564
|
+
isFetching: boolean;
|
|
6565
|
+
data: undefined;
|
|
6566
|
+
} | ({
|
|
6567
|
+
isSuccess: true;
|
|
6568
|
+
isFetching: true;
|
|
6569
|
+
error: undefined;
|
|
6570
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
6571
|
+
org: string;
|
|
6572
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
6573
|
+
attempt?: number;
|
|
6574
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").StarMentor[], "mentorApiSlice", any>> & {
|
|
6575
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").StarMentor[] | undefined;
|
|
6576
|
+
isUninitialized: false;
|
|
6577
|
+
isLoading: false;
|
|
6578
|
+
isFetching: false;
|
|
6579
|
+
isSuccess: false;
|
|
6580
|
+
isError: false;
|
|
6581
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
6582
|
+
isSuccess: true;
|
|
6583
|
+
isFetching: false;
|
|
6584
|
+
error: undefined;
|
|
6585
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
6586
|
+
org: string;
|
|
6587
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
6588
|
+
attempt?: number;
|
|
6589
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").StarMentor[], "mentorApiSlice", any>> & {
|
|
6590
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").StarMentor[] | undefined;
|
|
6591
|
+
isUninitialized: false;
|
|
6592
|
+
isLoading: false;
|
|
6593
|
+
isFetching: false;
|
|
6594
|
+
isSuccess: false;
|
|
6595
|
+
isError: false;
|
|
6596
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
6597
|
+
isError: true;
|
|
6598
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
6599
|
+
org: string;
|
|
6600
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
6601
|
+
attempt?: number;
|
|
6602
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").StarMentor[], "mentorApiSlice", any>> & {
|
|
6603
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").StarMentor[] | undefined;
|
|
6604
|
+
isUninitialized: false;
|
|
6605
|
+
isLoading: false;
|
|
6606
|
+
isFetching: false;
|
|
6607
|
+
isSuccess: false;
|
|
6608
|
+
isError: false;
|
|
6609
|
+
}, "error">>)>> & {
|
|
6610
|
+
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
6611
|
+
}) => R) | undefined;
|
|
6612
|
+
}, "skip">) | undefined) => [(arg: {
|
|
6613
|
+
org: string;
|
|
6614
|
+
}, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
6615
|
+
org: string;
|
|
6616
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
6617
|
+
attempt?: number;
|
|
6618
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").StarMentor[], "mentorApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
6619
|
+
reset: () => void;
|
|
6620
|
+
}, {
|
|
6621
|
+
lastArg: {
|
|
6622
|
+
org: string;
|
|
6623
|
+
};
|
|
6624
|
+
}], useUpdateChatSessionMutation: <R extends Record<string, any> = ({
|
|
6625
|
+
requestId?: undefined;
|
|
6626
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
6627
|
+
data?: undefined;
|
|
6628
|
+
error?: undefined;
|
|
6629
|
+
endpointName?: string;
|
|
6630
|
+
startedTimeStamp?: undefined;
|
|
6631
|
+
fulfilledTimeStamp?: undefined;
|
|
6632
|
+
} & {
|
|
6633
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
6634
|
+
isUninitialized: true;
|
|
6635
|
+
isLoading: false;
|
|
6636
|
+
isSuccess: false;
|
|
6637
|
+
isError: false;
|
|
6638
|
+
}) | ({
|
|
6639
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
6640
|
+
} & Omit<{
|
|
6641
|
+
requestId: string;
|
|
6642
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").MessageViewUpdatResponse | undefined;
|
|
6643
|
+
error?: unknown;
|
|
6644
|
+
endpointName: string;
|
|
6645
|
+
startedTimeStamp: number;
|
|
6646
|
+
fulfilledTimeStamp?: number;
|
|
6647
|
+
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
6648
|
+
requestId: string;
|
|
6649
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").MessageViewUpdatResponse | undefined;
|
|
6650
|
+
error?: unknown;
|
|
6651
|
+
endpointName: string;
|
|
6652
|
+
startedTimeStamp: number;
|
|
6653
|
+
fulfilledTimeStamp?: number;
|
|
6654
|
+
}, "data" | "fulfilledTimeStamp">> & {
|
|
6655
|
+
error: undefined;
|
|
6656
|
+
} & {
|
|
6657
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
6658
|
+
isUninitialized: false;
|
|
6659
|
+
isLoading: false;
|
|
6660
|
+
isSuccess: true;
|
|
6661
|
+
isError: false;
|
|
6662
|
+
}) | ({
|
|
6663
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
6664
|
+
} & {
|
|
6665
|
+
requestId: string;
|
|
6666
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").MessageViewUpdatResponse | undefined;
|
|
6667
|
+
error?: unknown;
|
|
6668
|
+
endpointName: string;
|
|
6669
|
+
startedTimeStamp: number;
|
|
6670
|
+
fulfilledTimeStamp?: number;
|
|
6671
|
+
} & {
|
|
6672
|
+
data?: undefined;
|
|
6673
|
+
} & {
|
|
6674
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
6675
|
+
isUninitialized: false;
|
|
6676
|
+
isLoading: true;
|
|
6677
|
+
isSuccess: false;
|
|
6678
|
+
isError: false;
|
|
6679
|
+
}) | ({
|
|
6680
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
6681
|
+
} & Omit<{
|
|
6682
|
+
requestId: string;
|
|
6683
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").MessageViewUpdatResponse | undefined;
|
|
6684
|
+
error?: unknown;
|
|
6685
|
+
endpointName: string;
|
|
6686
|
+
startedTimeStamp: number;
|
|
6687
|
+
fulfilledTimeStamp?: number;
|
|
6688
|
+
}, "error"> & Required<Pick<{
|
|
6689
|
+
requestId: string;
|
|
6690
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").MessageViewUpdatResponse | undefined;
|
|
6691
|
+
error?: unknown;
|
|
6692
|
+
endpointName: string;
|
|
6693
|
+
startedTimeStamp: number;
|
|
6694
|
+
fulfilledTimeStamp?: number;
|
|
6695
|
+
}, "error">> & {
|
|
6696
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
6697
|
+
isUninitialized: false;
|
|
6698
|
+
isLoading: false;
|
|
6699
|
+
isSuccess: false;
|
|
6700
|
+
isError: true;
|
|
6701
|
+
})>(options?: {
|
|
6702
|
+
selectFromResult?: ((state: ({
|
|
6703
|
+
requestId?: undefined;
|
|
6704
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
6705
|
+
data?: undefined;
|
|
6706
|
+
error?: undefined;
|
|
6707
|
+
endpointName?: string;
|
|
6708
|
+
startedTimeStamp?: undefined;
|
|
6709
|
+
fulfilledTimeStamp?: undefined;
|
|
6710
|
+
} & {
|
|
6711
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
6712
|
+
isUninitialized: true;
|
|
6713
|
+
isLoading: false;
|
|
6714
|
+
isSuccess: false;
|
|
6715
|
+
isError: false;
|
|
6716
|
+
}) | ({
|
|
6717
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
6718
|
+
} & Omit<{
|
|
6719
|
+
requestId: string;
|
|
6720
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").MessageViewUpdatResponse | undefined;
|
|
6721
|
+
error?: unknown;
|
|
6722
|
+
endpointName: string;
|
|
6723
|
+
startedTimeStamp: number;
|
|
6724
|
+
fulfilledTimeStamp?: number;
|
|
6725
|
+
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
6726
|
+
requestId: string;
|
|
6727
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").MessageViewUpdatResponse | undefined;
|
|
6728
|
+
error?: unknown;
|
|
6729
|
+
endpointName: string;
|
|
6730
|
+
startedTimeStamp: number;
|
|
6731
|
+
fulfilledTimeStamp?: number;
|
|
6732
|
+
}, "data" | "fulfilledTimeStamp">> & {
|
|
6733
|
+
error: undefined;
|
|
6734
|
+
} & {
|
|
6735
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
6736
|
+
isUninitialized: false;
|
|
6737
|
+
isLoading: false;
|
|
6738
|
+
isSuccess: true;
|
|
6739
|
+
isError: false;
|
|
6740
|
+
}) | ({
|
|
6741
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
6742
|
+
} & {
|
|
6743
|
+
requestId: string;
|
|
6744
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").MessageViewUpdatResponse | undefined;
|
|
6745
|
+
error?: unknown;
|
|
6746
|
+
endpointName: string;
|
|
6747
|
+
startedTimeStamp: number;
|
|
6748
|
+
fulfilledTimeStamp?: number;
|
|
6749
|
+
} & {
|
|
6750
|
+
data?: undefined;
|
|
6751
|
+
} & {
|
|
6752
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
6753
|
+
isUninitialized: false;
|
|
6754
|
+
isLoading: true;
|
|
6755
|
+
isSuccess: false;
|
|
6756
|
+
isError: false;
|
|
6757
|
+
}) | ({
|
|
6758
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
6759
|
+
} & Omit<{
|
|
6760
|
+
requestId: string;
|
|
6761
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").MessageViewUpdatResponse | undefined;
|
|
6762
|
+
error?: unknown;
|
|
6763
|
+
endpointName: string;
|
|
6764
|
+
startedTimeStamp: number;
|
|
6765
|
+
fulfilledTimeStamp?: number;
|
|
6766
|
+
}, "error"> & Required<Pick<{
|
|
6767
|
+
requestId: string;
|
|
6768
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").MessageViewUpdatResponse | undefined;
|
|
6769
|
+
error?: unknown;
|
|
6770
|
+
endpointName: string;
|
|
6771
|
+
startedTimeStamp: number;
|
|
6772
|
+
fulfilledTimeStamp?: number;
|
|
6773
|
+
}, "error">> & {
|
|
6774
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
6775
|
+
isUninitialized: false;
|
|
6776
|
+
isLoading: false;
|
|
6777
|
+
isSuccess: false;
|
|
6778
|
+
isError: true;
|
|
6779
|
+
})) => R) | undefined;
|
|
6780
|
+
fixedCacheKey?: string;
|
|
6781
|
+
} | undefined) => readonly [(arg: {
|
|
6782
|
+
org: string;
|
|
6783
|
+
sessionId: string;
|
|
6784
|
+
requestBody?: import("node_modules/@iblai/iblai-api/dist/types").MessageViewRequest;
|
|
6785
|
+
}) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
6786
|
+
org: string;
|
|
6787
|
+
sessionId: string;
|
|
6788
|
+
requestBody?: import("node_modules/@iblai/iblai-api/dist/types").MessageViewRequest;
|
|
6789
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
6790
|
+
attempt?: number;
|
|
6791
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MessageViewUpdatResponse, "mentorApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
6792
|
+
originalArgs?: {
|
|
6793
|
+
org: string;
|
|
6794
|
+
sessionId: string;
|
|
6795
|
+
requestBody?: import("node_modules/@iblai/iblai-api/dist/types").MessageViewRequest;
|
|
6796
|
+
} | undefined;
|
|
6797
|
+
reset: () => void;
|
|
6798
|
+
}], useGetChatMessagesForSessionQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
5330
6799
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
5331
6800
|
originalArgs?: undefined | undefined;
|
|
5332
6801
|
data?: undefined | undefined;
|
|
@@ -5336,7 +6805,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
5336
6805
|
startedTimeStamp?: undefined | undefined;
|
|
5337
6806
|
fulfilledTimeStamp?: undefined | undefined;
|
|
5338
6807
|
} & {
|
|
5339
|
-
currentData?: import("node_modules/@iblai/iblai-api/dist/types").
|
|
6808
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MessageView | undefined;
|
|
5340
6809
|
isUninitialized: false;
|
|
5341
6810
|
isLoading: false;
|
|
5342
6811
|
isFetching: false;
|
|
@@ -5346,18 +6815,11 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
5346
6815
|
isUninitialized: true;
|
|
5347
6816
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5348
6817
|
org: string;
|
|
5349
|
-
|
|
5350
|
-
|
|
5351
|
-
|
|
5352
|
-
|
|
5353
|
-
|
|
5354
|
-
platformKey?: string;
|
|
5355
|
-
search?: string;
|
|
5356
|
-
startTime?: string;
|
|
5357
|
-
targetSystem?: "Moderation System" | "Safety System";
|
|
5358
|
-
username?: string;
|
|
5359
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").PaginatedModerationLogList, "mentorApiSlice", any>> & {
|
|
5360
|
-
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedModerationLogList | undefined;
|
|
6818
|
+
sessionId: string;
|
|
6819
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
6820
|
+
attempt?: number;
|
|
6821
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MessageView, "mentorApiSlice", any>> & {
|
|
6822
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MessageView | undefined;
|
|
5361
6823
|
isUninitialized: false;
|
|
5362
6824
|
isLoading: false;
|
|
5363
6825
|
isFetching: false;
|
|
@@ -5373,18 +6835,11 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
5373
6835
|
error: undefined;
|
|
5374
6836
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5375
6837
|
org: string;
|
|
5376
|
-
|
|
5377
|
-
|
|
5378
|
-
|
|
5379
|
-
|
|
5380
|
-
|
|
5381
|
-
platformKey?: string;
|
|
5382
|
-
search?: string;
|
|
5383
|
-
startTime?: string;
|
|
5384
|
-
targetSystem?: "Moderation System" | "Safety System";
|
|
5385
|
-
username?: string;
|
|
5386
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").PaginatedModerationLogList, "mentorApiSlice", any>> & {
|
|
5387
|
-
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedModerationLogList | undefined;
|
|
6838
|
+
sessionId: string;
|
|
6839
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
6840
|
+
attempt?: number;
|
|
6841
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MessageView, "mentorApiSlice", any>> & {
|
|
6842
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MessageView | undefined;
|
|
5388
6843
|
isUninitialized: false;
|
|
5389
6844
|
isLoading: false;
|
|
5390
6845
|
isFetching: false;
|
|
@@ -5396,18 +6851,11 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
5396
6851
|
error: undefined;
|
|
5397
6852
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5398
6853
|
org: string;
|
|
5399
|
-
|
|
5400
|
-
|
|
5401
|
-
|
|
5402
|
-
|
|
5403
|
-
|
|
5404
|
-
platformKey?: string;
|
|
5405
|
-
search?: string;
|
|
5406
|
-
startTime?: string;
|
|
5407
|
-
targetSystem?: "Moderation System" | "Safety System";
|
|
5408
|
-
username?: string;
|
|
5409
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").PaginatedModerationLogList, "mentorApiSlice", any>> & {
|
|
5410
|
-
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedModerationLogList | undefined;
|
|
6854
|
+
sessionId: string;
|
|
6855
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
6856
|
+
attempt?: number;
|
|
6857
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MessageView, "mentorApiSlice", any>> & {
|
|
6858
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MessageView | undefined;
|
|
5411
6859
|
isUninitialized: false;
|
|
5412
6860
|
isLoading: false;
|
|
5413
6861
|
isFetching: false;
|
|
@@ -5417,18 +6865,11 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
5417
6865
|
isError: true;
|
|
5418
6866
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5419
6867
|
org: string;
|
|
5420
|
-
|
|
5421
|
-
|
|
5422
|
-
|
|
5423
|
-
|
|
5424
|
-
|
|
5425
|
-
platformKey?: string;
|
|
5426
|
-
search?: string;
|
|
5427
|
-
startTime?: string;
|
|
5428
|
-
targetSystem?: "Moderation System" | "Safety System";
|
|
5429
|
-
username?: string;
|
|
5430
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").PaginatedModerationLogList, "mentorApiSlice", any>> & {
|
|
5431
|
-
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedModerationLogList | undefined;
|
|
6868
|
+
sessionId: string;
|
|
6869
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
6870
|
+
attempt?: number;
|
|
6871
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MessageView, "mentorApiSlice", any>> & {
|
|
6872
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MessageView | undefined;
|
|
5432
6873
|
isUninitialized: false;
|
|
5433
6874
|
isLoading: false;
|
|
5434
6875
|
isFetching: false;
|
|
@@ -5438,16 +6879,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
5438
6879
|
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
5439
6880
|
}>(arg: {
|
|
5440
6881
|
org: string;
|
|
5441
|
-
|
|
5442
|
-
mentor?: string;
|
|
5443
|
-
ordering?: string;
|
|
5444
|
-
page?: number;
|
|
5445
|
-
pageSize?: number;
|
|
5446
|
-
platformKey?: string;
|
|
5447
|
-
search?: string;
|
|
5448
|
-
startTime?: string;
|
|
5449
|
-
targetSystem?: "Moderation System" | "Safety System";
|
|
5450
|
-
username?: string;
|
|
6882
|
+
sessionId: string;
|
|
5451
6883
|
} | typeof import("@reduxjs/toolkit/query").skipToken, options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & {
|
|
5452
6884
|
skip?: boolean;
|
|
5453
6885
|
refetchOnMountOrArgChange?: boolean | number;
|
|
@@ -5463,7 +6895,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
5463
6895
|
startedTimeStamp?: undefined | undefined;
|
|
5464
6896
|
fulfilledTimeStamp?: undefined | undefined;
|
|
5465
6897
|
} & {
|
|
5466
|
-
currentData?: import("node_modules/@iblai/iblai-api/dist/types").
|
|
6898
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MessageView | undefined;
|
|
5467
6899
|
isUninitialized: false;
|
|
5468
6900
|
isLoading: false;
|
|
5469
6901
|
isFetching: false;
|
|
@@ -5473,18 +6905,11 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
5473
6905
|
isUninitialized: true;
|
|
5474
6906
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5475
6907
|
org: string;
|
|
5476
|
-
|
|
5477
|
-
|
|
5478
|
-
|
|
5479
|
-
|
|
5480
|
-
|
|
5481
|
-
platformKey?: string;
|
|
5482
|
-
search?: string;
|
|
5483
|
-
startTime?: string;
|
|
5484
|
-
targetSystem?: "Moderation System" | "Safety System";
|
|
5485
|
-
username?: string;
|
|
5486
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").PaginatedModerationLogList, "mentorApiSlice", any>> & {
|
|
5487
|
-
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedModerationLogList | undefined;
|
|
6908
|
+
sessionId: string;
|
|
6909
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
6910
|
+
attempt?: number;
|
|
6911
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MessageView, "mentorApiSlice", any>> & {
|
|
6912
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MessageView | undefined;
|
|
5488
6913
|
isUninitialized: false;
|
|
5489
6914
|
isLoading: false;
|
|
5490
6915
|
isFetching: false;
|
|
@@ -5500,18 +6925,11 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
5500
6925
|
error: undefined;
|
|
5501
6926
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5502
6927
|
org: string;
|
|
5503
|
-
|
|
5504
|
-
|
|
5505
|
-
|
|
5506
|
-
|
|
5507
|
-
|
|
5508
|
-
platformKey?: string;
|
|
5509
|
-
search?: string;
|
|
5510
|
-
startTime?: string;
|
|
5511
|
-
targetSystem?: "Moderation System" | "Safety System";
|
|
5512
|
-
username?: string;
|
|
5513
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").PaginatedModerationLogList, "mentorApiSlice", any>> & {
|
|
5514
|
-
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedModerationLogList | undefined;
|
|
6928
|
+
sessionId: string;
|
|
6929
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
6930
|
+
attempt?: number;
|
|
6931
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MessageView, "mentorApiSlice", any>> & {
|
|
6932
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MessageView | undefined;
|
|
5515
6933
|
isUninitialized: false;
|
|
5516
6934
|
isLoading: false;
|
|
5517
6935
|
isFetching: false;
|
|
@@ -5523,18 +6941,11 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
5523
6941
|
error: undefined;
|
|
5524
6942
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5525
6943
|
org: string;
|
|
5526
|
-
|
|
5527
|
-
|
|
5528
|
-
|
|
5529
|
-
|
|
5530
|
-
|
|
5531
|
-
platformKey?: string;
|
|
5532
|
-
search?: string;
|
|
5533
|
-
startTime?: string;
|
|
5534
|
-
targetSystem?: "Moderation System" | "Safety System";
|
|
5535
|
-
username?: string;
|
|
5536
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").PaginatedModerationLogList, "mentorApiSlice", any>> & {
|
|
5537
|
-
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedModerationLogList | undefined;
|
|
6944
|
+
sessionId: string;
|
|
6945
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
6946
|
+
attempt?: number;
|
|
6947
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MessageView, "mentorApiSlice", any>> & {
|
|
6948
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MessageView | undefined;
|
|
5538
6949
|
isUninitialized: false;
|
|
5539
6950
|
isLoading: false;
|
|
5540
6951
|
isFetching: false;
|
|
@@ -5544,18 +6955,11 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
5544
6955
|
isError: true;
|
|
5545
6956
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5546
6957
|
org: string;
|
|
5547
|
-
|
|
5548
|
-
|
|
5549
|
-
|
|
5550
|
-
|
|
5551
|
-
|
|
5552
|
-
platformKey?: string;
|
|
5553
|
-
search?: string;
|
|
5554
|
-
startTime?: string;
|
|
5555
|
-
targetSystem?: "Moderation System" | "Safety System";
|
|
5556
|
-
username?: string;
|
|
5557
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").PaginatedModerationLogList, "mentorApiSlice", any>> & {
|
|
5558
|
-
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedModerationLogList | undefined;
|
|
6958
|
+
sessionId: string;
|
|
6959
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
6960
|
+
attempt?: number;
|
|
6961
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MessageView, "mentorApiSlice", any>> & {
|
|
6962
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MessageView | undefined;
|
|
5559
6963
|
isUninitialized: false;
|
|
5560
6964
|
isLoading: false;
|
|
5561
6965
|
isFetching: false;
|
|
@@ -5567,18 +6971,11 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
5567
6971
|
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
5568
6972
|
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5569
6973
|
org: string;
|
|
5570
|
-
|
|
5571
|
-
|
|
5572
|
-
|
|
5573
|
-
|
|
5574
|
-
|
|
5575
|
-
platformKey?: string;
|
|
5576
|
-
search?: string;
|
|
5577
|
-
startTime?: string;
|
|
5578
|
-
targetSystem?: "Moderation System" | "Safety System";
|
|
5579
|
-
username?: string;
|
|
5580
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").PaginatedModerationLogList, "mentorApiSlice", any>>;
|
|
5581
|
-
}, useLazyGetModerationLogsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
6974
|
+
sessionId: string;
|
|
6975
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
6976
|
+
attempt?: number;
|
|
6977
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MessageView, "mentorApiSlice", any>>;
|
|
6978
|
+
}, useLazyGetChatMessagesForSessionQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
5582
6979
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
5583
6980
|
originalArgs?: undefined | undefined;
|
|
5584
6981
|
data?: undefined | undefined;
|
|
@@ -5588,7 +6985,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
5588
6985
|
startedTimeStamp?: undefined | undefined;
|
|
5589
6986
|
fulfilledTimeStamp?: undefined | undefined;
|
|
5590
6987
|
} & {
|
|
5591
|
-
currentData?: import("node_modules/@iblai/iblai-api/dist/types").
|
|
6988
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MessageView | undefined;
|
|
5592
6989
|
isUninitialized: false;
|
|
5593
6990
|
isLoading: false;
|
|
5594
6991
|
isFetching: false;
|
|
@@ -5598,18 +6995,11 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
5598
6995
|
isUninitialized: true;
|
|
5599
6996
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5600
6997
|
org: string;
|
|
5601
|
-
|
|
5602
|
-
|
|
5603
|
-
|
|
5604
|
-
|
|
5605
|
-
|
|
5606
|
-
platformKey?: string;
|
|
5607
|
-
search?: string;
|
|
5608
|
-
startTime?: string;
|
|
5609
|
-
targetSystem?: "Moderation System" | "Safety System";
|
|
5610
|
-
username?: string;
|
|
5611
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").PaginatedModerationLogList, "mentorApiSlice", any>> & {
|
|
5612
|
-
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedModerationLogList | undefined;
|
|
6998
|
+
sessionId: string;
|
|
6999
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
7000
|
+
attempt?: number;
|
|
7001
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MessageView, "mentorApiSlice", any>> & {
|
|
7002
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MessageView | undefined;
|
|
5613
7003
|
isUninitialized: false;
|
|
5614
7004
|
isLoading: false;
|
|
5615
7005
|
isFetching: false;
|
|
@@ -5625,18 +7015,11 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
5625
7015
|
error: undefined;
|
|
5626
7016
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5627
7017
|
org: string;
|
|
5628
|
-
|
|
5629
|
-
|
|
5630
|
-
|
|
5631
|
-
|
|
5632
|
-
|
|
5633
|
-
platformKey?: string;
|
|
5634
|
-
search?: string;
|
|
5635
|
-
startTime?: string;
|
|
5636
|
-
targetSystem?: "Moderation System" | "Safety System";
|
|
5637
|
-
username?: string;
|
|
5638
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").PaginatedModerationLogList, "mentorApiSlice", any>> & {
|
|
5639
|
-
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedModerationLogList | undefined;
|
|
7018
|
+
sessionId: string;
|
|
7019
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
7020
|
+
attempt?: number;
|
|
7021
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MessageView, "mentorApiSlice", any>> & {
|
|
7022
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MessageView | undefined;
|
|
5640
7023
|
isUninitialized: false;
|
|
5641
7024
|
isLoading: false;
|
|
5642
7025
|
isFetching: false;
|
|
@@ -5648,18 +7031,11 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
5648
7031
|
error: undefined;
|
|
5649
7032
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5650
7033
|
org: string;
|
|
5651
|
-
|
|
5652
|
-
|
|
5653
|
-
|
|
5654
|
-
|
|
5655
|
-
|
|
5656
|
-
platformKey?: string;
|
|
5657
|
-
search?: string;
|
|
5658
|
-
startTime?: string;
|
|
5659
|
-
targetSystem?: "Moderation System" | "Safety System";
|
|
5660
|
-
username?: string;
|
|
5661
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").PaginatedModerationLogList, "mentorApiSlice", any>> & {
|
|
5662
|
-
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedModerationLogList | undefined;
|
|
7034
|
+
sessionId: string;
|
|
7035
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
7036
|
+
attempt?: number;
|
|
7037
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MessageView, "mentorApiSlice", any>> & {
|
|
7038
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MessageView | undefined;
|
|
5663
7039
|
isUninitialized: false;
|
|
5664
7040
|
isLoading: false;
|
|
5665
7041
|
isFetching: false;
|
|
@@ -5669,18 +7045,11 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
5669
7045
|
isError: true;
|
|
5670
7046
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5671
7047
|
org: string;
|
|
5672
|
-
|
|
5673
|
-
|
|
5674
|
-
|
|
5675
|
-
|
|
5676
|
-
|
|
5677
|
-
platformKey?: string;
|
|
5678
|
-
search?: string;
|
|
5679
|
-
startTime?: string;
|
|
5680
|
-
targetSystem?: "Moderation System" | "Safety System";
|
|
5681
|
-
username?: string;
|
|
5682
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").PaginatedModerationLogList, "mentorApiSlice", any>> & {
|
|
5683
|
-
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedModerationLogList | undefined;
|
|
7048
|
+
sessionId: string;
|
|
7049
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
7050
|
+
attempt?: number;
|
|
7051
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MessageView, "mentorApiSlice", any>> & {
|
|
7052
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MessageView | undefined;
|
|
5684
7053
|
isUninitialized: false;
|
|
5685
7054
|
isLoading: false;
|
|
5686
7055
|
isFetching: false;
|
|
@@ -5700,7 +7069,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
5700
7069
|
startedTimeStamp?: undefined | undefined;
|
|
5701
7070
|
fulfilledTimeStamp?: undefined | undefined;
|
|
5702
7071
|
} & {
|
|
5703
|
-
currentData?: import("node_modules/@iblai/iblai-api/dist/types").
|
|
7072
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MessageView | undefined;
|
|
5704
7073
|
isUninitialized: false;
|
|
5705
7074
|
isLoading: false;
|
|
5706
7075
|
isFetching: false;
|
|
@@ -5710,18 +7079,11 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
5710
7079
|
isUninitialized: true;
|
|
5711
7080
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5712
7081
|
org: string;
|
|
5713
|
-
|
|
5714
|
-
|
|
5715
|
-
|
|
5716
|
-
|
|
5717
|
-
|
|
5718
|
-
platformKey?: string;
|
|
5719
|
-
search?: string;
|
|
5720
|
-
startTime?: string;
|
|
5721
|
-
targetSystem?: "Moderation System" | "Safety System";
|
|
5722
|
-
username?: string;
|
|
5723
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").PaginatedModerationLogList, "mentorApiSlice", any>> & {
|
|
5724
|
-
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedModerationLogList | undefined;
|
|
7082
|
+
sessionId: string;
|
|
7083
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
7084
|
+
attempt?: number;
|
|
7085
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MessageView, "mentorApiSlice", any>> & {
|
|
7086
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MessageView | undefined;
|
|
5725
7087
|
isUninitialized: false;
|
|
5726
7088
|
isLoading: false;
|
|
5727
7089
|
isFetching: false;
|
|
@@ -5737,18 +7099,11 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
5737
7099
|
error: undefined;
|
|
5738
7100
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5739
7101
|
org: string;
|
|
5740
|
-
|
|
5741
|
-
|
|
5742
|
-
|
|
5743
|
-
|
|
5744
|
-
|
|
5745
|
-
platformKey?: string;
|
|
5746
|
-
search?: string;
|
|
5747
|
-
startTime?: string;
|
|
5748
|
-
targetSystem?: "Moderation System" | "Safety System";
|
|
5749
|
-
username?: string;
|
|
5750
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").PaginatedModerationLogList, "mentorApiSlice", any>> & {
|
|
5751
|
-
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedModerationLogList | undefined;
|
|
7102
|
+
sessionId: string;
|
|
7103
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
7104
|
+
attempt?: number;
|
|
7105
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MessageView, "mentorApiSlice", any>> & {
|
|
7106
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MessageView | undefined;
|
|
5752
7107
|
isUninitialized: false;
|
|
5753
7108
|
isLoading: false;
|
|
5754
7109
|
isFetching: false;
|
|
@@ -5760,18 +7115,11 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
5760
7115
|
error: undefined;
|
|
5761
7116
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5762
7117
|
org: string;
|
|
5763
|
-
|
|
5764
|
-
|
|
5765
|
-
|
|
5766
|
-
|
|
5767
|
-
|
|
5768
|
-
platformKey?: string;
|
|
5769
|
-
search?: string;
|
|
5770
|
-
startTime?: string;
|
|
5771
|
-
targetSystem?: "Moderation System" | "Safety System";
|
|
5772
|
-
username?: string;
|
|
5773
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").PaginatedModerationLogList, "mentorApiSlice", any>> & {
|
|
5774
|
-
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedModerationLogList | undefined;
|
|
7118
|
+
sessionId: string;
|
|
7119
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
7120
|
+
attempt?: number;
|
|
7121
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MessageView, "mentorApiSlice", any>> & {
|
|
7122
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MessageView | undefined;
|
|
5775
7123
|
isUninitialized: false;
|
|
5776
7124
|
isLoading: false;
|
|
5777
7125
|
isFetching: false;
|
|
@@ -5781,18 +7129,11 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
5781
7129
|
isError: true;
|
|
5782
7130
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5783
7131
|
org: string;
|
|
5784
|
-
|
|
5785
|
-
|
|
5786
|
-
|
|
5787
|
-
|
|
5788
|
-
|
|
5789
|
-
platformKey?: string;
|
|
5790
|
-
search?: string;
|
|
5791
|
-
startTime?: string;
|
|
5792
|
-
targetSystem?: "Moderation System" | "Safety System";
|
|
5793
|
-
username?: string;
|
|
5794
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").PaginatedModerationLogList, "mentorApiSlice", any>> & {
|
|
5795
|
-
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedModerationLogList | undefined;
|
|
7132
|
+
sessionId: string;
|
|
7133
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
7134
|
+
attempt?: number;
|
|
7135
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MessageView, "mentorApiSlice", any>> & {
|
|
7136
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MessageView | undefined;
|
|
5796
7137
|
isUninitialized: false;
|
|
5797
7138
|
isLoading: false;
|
|
5798
7139
|
isFetching: false;
|
|
@@ -5803,42 +7144,17 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
|
|
|
5803
7144
|
}) => R) | undefined;
|
|
5804
7145
|
}, "skip">) | undefined) => [(arg: {
|
|
5805
7146
|
org: string;
|
|
5806
|
-
|
|
5807
|
-
mentor?: string;
|
|
5808
|
-
ordering?: string;
|
|
5809
|
-
page?: number;
|
|
5810
|
-
pageSize?: number;
|
|
5811
|
-
platformKey?: string;
|
|
5812
|
-
search?: string;
|
|
5813
|
-
startTime?: string;
|
|
5814
|
-
targetSystem?: "Moderation System" | "Safety System";
|
|
5815
|
-
username?: string;
|
|
7147
|
+
sessionId: string;
|
|
5816
7148
|
}, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5817
7149
|
org: string;
|
|
5818
|
-
|
|
5819
|
-
|
|
5820
|
-
|
|
5821
|
-
|
|
5822
|
-
pageSize?: number;
|
|
5823
|
-
platformKey?: string;
|
|
5824
|
-
search?: string;
|
|
5825
|
-
startTime?: string;
|
|
5826
|
-
targetSystem?: "Moderation System" | "Safety System";
|
|
5827
|
-
username?: string;
|
|
5828
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("node_modules/@iblai/iblai-api/dist/types").PaginatedModerationLogList, "mentorApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
7150
|
+
sessionId: string;
|
|
7151
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
|
|
7152
|
+
attempt?: number;
|
|
7153
|
+
} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "star-mentors", import("node_modules/@iblai/iblai-api/dist/types").MessageView, "mentorApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
5829
7154
|
reset: () => void;
|
|
5830
7155
|
}, {
|
|
5831
7156
|
lastArg: {
|
|
5832
7157
|
org: string;
|
|
5833
|
-
|
|
5834
|
-
mentor?: string;
|
|
5835
|
-
ordering?: string;
|
|
5836
|
-
page?: number;
|
|
5837
|
-
pageSize?: number;
|
|
5838
|
-
platformKey?: string;
|
|
5839
|
-
search?: string;
|
|
5840
|
-
startTime?: string;
|
|
5841
|
-
targetSystem?: "Moderation System" | "Safety System";
|
|
5842
|
-
username?: string;
|
|
7158
|
+
sessionId: string;
|
|
5843
7159
|
};
|
|
5844
7160
|
}];
|