@iblai/data-layer 0.2.0 → 0.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (86) hide show
  1. package/dist/index.d.ts +41476 -15632
  2. package/dist/index.esm.js +6764 -1863
  3. package/dist/index.esm.js.map +1 -1
  4. package/dist/index.js +6947 -1859
  5. package/dist/index.js.map +1 -1
  6. package/dist/package.json +19 -17
  7. package/dist/src/__tests__/constants.test.d.ts +1 -0
  8. package/dist/src/core/index.d.ts +2 -1
  9. package/dist/src/features/analytics/api-slice.d.ts +1879 -122
  10. package/dist/src/features/analytics/constants.d.ts +56 -1
  11. package/dist/src/features/analytics/types.d.ts +327 -1
  12. package/dist/src/features/api-keys/api-slice.d.ts +25 -36
  13. package/dist/src/features/apps/api-slice.d.ts +25 -36
  14. package/dist/src/features/auth/api-slice.d.ts +504 -2
  15. package/dist/src/features/auth/constants.d.ts +13 -1
  16. package/dist/src/features/auth/types.d.ts +20 -0
  17. package/dist/src/features/billing/api-slice.d.ts +5 -5
  18. package/dist/src/features/career/api-slice.d.ts +2345 -180
  19. package/dist/src/features/catalog/api-slice.d.ts +2260 -244
  20. package/dist/src/features/chat/api-slice.d.ts +68 -68
  21. package/dist/src/features/chat-files/api-slice.d.ts +185 -0
  22. package/dist/src/features/chat-files/types.d.ts +32 -0
  23. package/dist/src/features/chat-history/api-slice.d.ts +60 -60
  24. package/dist/src/features/core/api-slice.d.ts +3793 -26
  25. package/dist/src/features/core/constants.d.ts +43 -0
  26. package/dist/src/features/core/custom-api-slice.d.ts +1458 -0
  27. package/dist/src/features/core/custom-public-image-asset-api-slice.d.ts +333 -0
  28. package/dist/src/features/core/types.d.ts +60 -0
  29. package/dist/src/features/credentials/api-slice.d.ts +766 -105
  30. package/dist/src/features/custom-domain/api-slice.d.ts +602 -0
  31. package/dist/src/features/custom-domain/constants.d.ts +20 -0
  32. package/dist/src/features/custom-domain/types.d.ts +46 -0
  33. package/dist/src/features/datasets/api-slice.d.ts +22 -22
  34. package/dist/src/features/disclaimers/api-slice.d.ts +912 -0
  35. package/dist/src/features/disclaimers/constants.d.ts +27 -0
  36. package/dist/src/features/disclaimers/index.d.ts +3 -0
  37. package/dist/src/features/disclaimers/types.d.ts +67 -0
  38. package/dist/src/features/edx-proctoring/api-slice.d.ts +590 -0
  39. package/dist/src/features/edx-proctoring/constants.d.ts +15 -0
  40. package/dist/src/features/edx-proctoring/types.d.ts +61 -0
  41. package/dist/src/features/llms/api-slice.d.ts +20 -20
  42. package/dist/src/features/memory/api-slice.d.ts +1437 -530
  43. package/dist/src/features/memory/constants.d.ts +50 -0
  44. package/dist/src/features/memory/index.d.ts +3 -0
  45. package/dist/src/features/memory/types.d.ts +122 -0
  46. package/dist/src/features/mentor/api-slice.d.ts +1738 -240
  47. package/dist/src/features/mentor/constants.d.ts +8 -0
  48. package/dist/src/features/mentor/custom-api-slice.d.ts +529 -1
  49. package/dist/src/features/mentor/types.d.ts +39 -0
  50. package/dist/src/features/mentor-categories/api-slice.d.ts +416 -20
  51. package/dist/src/features/notifications/api-slice.d.ts +696 -42
  52. package/dist/src/features/notifications/constants.d.ts +26 -0
  53. package/dist/src/features/notifications/custom-api-slice.d.ts +996 -0
  54. package/dist/src/features/notifications/types.d.ts +69 -0
  55. package/dist/src/features/per-learner/api-slice.d.ts +58 -58
  56. package/dist/src/features/platform/api-slice.d.ts +321 -167
  57. package/dist/src/features/platform/constants.d.ts +17 -0
  58. package/dist/src/features/platform/custom-api-slice.d.ts +493 -0
  59. package/dist/src/features/platform/types.d.ts +48 -0
  60. package/dist/src/features/projects/api-slice.d.ts +2026 -0
  61. package/dist/src/features/projects/constants.d.ts +51 -0
  62. package/dist/src/features/projects/types.d.ts +79 -0
  63. package/dist/src/features/prompts/api-slice.d.ts +105 -83
  64. package/dist/src/features/reports/api-slice.d.ts +814 -0
  65. package/dist/src/features/search/ai-search-api-slice.d.ts +1015 -0
  66. package/dist/src/features/search/api-slice.d.ts +39 -39
  67. package/dist/src/features/search/constants.d.ts +31 -0
  68. package/dist/src/features/search/types.d.ts +89 -0
  69. package/dist/src/features/sessions/api-slice.d.ts +24 -24
  70. package/dist/src/features/skills/api-slice.d.ts +77 -77
  71. package/dist/src/features/stripe/api-slice.d.ts +201 -40
  72. package/dist/src/features/stripe/constants.d.ts +5 -1
  73. package/dist/src/features/stripe/types.d.ts +10 -0
  74. package/dist/src/features/tenant/api-slice.d.ts +43 -52
  75. package/dist/src/features/tenant/types.d.ts +1 -0
  76. package/dist/src/features/tools/api-slice.d.ts +64 -20
  77. package/dist/src/features/training-documents/api-slice.d.ts +534 -27
  78. package/dist/src/features/user/api-slice.d.ts +124 -124
  79. package/dist/src/features/user/constants.d.ts +3 -1
  80. package/dist/src/features/user-invitations/api-slice.d.ts +22 -22
  81. package/dist/src/features/utils.d.ts +8 -5
  82. package/dist/src/index.d.ts +78 -47
  83. package/dist/src/reducers/skills.d.ts +2 -1128
  84. package/dist/src/services/StorageService.d.ts +1 -1
  85. package/dist/tests/setupTests.d.ts +1 -1
  86. package/package.json +16 -13
@@ -2,7 +2,7 @@ export declare const mentorApiSlice: import("@reduxjs/toolkit/query").Api<import
2
2
  createMentor: import("@reduxjs/toolkit/query").MutationDefinition<{
3
3
  org: string;
4
4
  formData: import("@iblai/iblai-api").MentorFromTemplateWithSettingRequest;
5
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>;
5
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>;
6
6
  getMentors: import("@reduxjs/toolkit/query").QueryDefinition<{
7
7
  org: string;
8
8
  username: string;
@@ -21,79 +21,8 @@ export declare const mentorApiSlice: import("@reduxjs/toolkit/query").Api<import
21
21
  tags?: Array<string>;
22
22
  tenant?: string;
23
23
  uniqueId?: string;
24
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>;
25
- editMentor: import("@reduxjs/toolkit/query").MutationDefinition<{
26
- mentor: string;
27
- org: string;
28
- departmentId?: number;
29
- formData?: import("@iblai/iblai-api").MentorSettingsRequest;
30
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettings, "mentorApiSlice", any>;
31
- seedMentors: import("@reduxjs/toolkit/query").QueryDefinition<{
32
- org: string;
33
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").SeedMentorsView, "mentorApiSlice", any>;
34
- getMentorDetails: import("@reduxjs/toolkit/query").QueryDefinition<{
35
- mentor: string;
36
- org: string;
37
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>;
38
- getMentorSettings: import("@reduxjs/toolkit/query").QueryDefinition<{
39
- mentor: string;
40
- org: string;
41
- departmentId?: number;
42
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>;
43
- getMentorPublicSettings: import("@reduxjs/toolkit/query").QueryDefinition<{
44
- mentor: string;
45
- org: string;
46
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>;
47
- updateMentorVisibilityStatus: import("@reduxjs/toolkit/query").MutationDefinition<{
48
- mentor: string;
49
- org: string;
50
- departmentId?: number;
51
- formData?: import("@iblai/iblai-api").MentorSettingsRequest;
52
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettings, "mentorApiSlice", any>;
53
- getFreeUsageCount: import("@reduxjs/toolkit/query").QueryDefinition<{
54
- org: string;
55
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").FreeUsageCount, "mentorApiSlice", any>;
56
- createShareableLink: import("@reduxjs/toolkit/query").MutationDefinition<{
57
- mentor: string;
58
- org: string;
59
- requestBody?: import("@iblai/iblai-api").ShareableMentorLink;
60
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>;
61
- getShareableLink: import("@reduxjs/toolkit/query").QueryDefinition<{
62
- mentor: string;
63
- org: string;
64
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>;
65
- getShareableLinkPublic: import("@reduxjs/toolkit/query").QueryDefinition<{
66
- mentor: string;
67
- org: string;
68
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>;
69
- revokeShareableLink: import("@reduxjs/toolkit/query").MutationDefinition<{
70
- mentor: string;
71
- org: string;
72
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", void, "mentorApiSlice", any>;
73
- updateShareableLink: import("@reduxjs/toolkit/query").MutationDefinition<{
74
- mentor: string;
75
- org: string;
76
- requestBody?: import("@iblai/iblai-api").ShareableMentorLink;
77
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>;
78
- deleteMentor: import("@reduxjs/toolkit/query").MutationDefinition<{
79
- name: string;
80
- org: string;
81
- departmentId?: number;
82
- filterBy?: string;
83
- metadataKey?: string;
84
- metadataValue?: string;
85
- returnSessionInformation?: boolean;
86
- visibility?: string;
87
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", void, "mentorApiSlice", any>;
88
- }, "mentorApiSlice", "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", typeof import("@reduxjs/toolkit/query").coreModuleName | typeof import("@reduxjs/toolkit/dist/query/react").reactHooksModuleName>;
89
- export declare const mentorApiReducer: import("@reduxjs/toolkit").Reducer<import("@reduxjs/toolkit/query").CombinedState<{
90
- createMentor: import("@reduxjs/toolkit/query").MutationDefinition<{
91
- org: string;
92
- formData: import("@iblai/iblai-api").MentorFromTemplateWithSettingRequest;
93
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>;
94
- getMentors: import("@reduxjs/toolkit/query").QueryDefinition<{
95
- org: string;
96
- username: string;
24
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>;
25
+ getPublicMentors: import("@reduxjs/toolkit/query").QueryDefinition<{
97
26
  audience?: Array<string>;
98
27
  category?: Array<string>;
99
28
  createdBy?: string;
@@ -109,60 +38,60 @@ export declare const mentorApiReducer: import("@reduxjs/toolkit").Reducer<import
109
38
  tags?: Array<string>;
110
39
  tenant?: string;
111
40
  uniqueId?: string;
112
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>;
41
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>;
113
42
  editMentor: import("@reduxjs/toolkit/query").MutationDefinition<{
114
43
  mentor: string;
115
44
  org: string;
116
45
  departmentId?: number;
117
46
  formData?: import("@iblai/iblai-api").MentorSettingsRequest;
118
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettings, "mentorApiSlice", any>;
47
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").MentorSettings, "mentorApiSlice", any>;
119
48
  seedMentors: import("@reduxjs/toolkit/query").QueryDefinition<{
120
49
  org: string;
121
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").SeedMentorsView, "mentorApiSlice", any>;
50
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").SeedMentorsView, "mentorApiSlice", any>;
122
51
  getMentorDetails: import("@reduxjs/toolkit/query").QueryDefinition<{
123
52
  mentor: string;
124
53
  org: string;
125
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>;
54
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>;
126
55
  getMentorSettings: import("@reduxjs/toolkit/query").QueryDefinition<{
127
56
  mentor: string;
128
57
  org: string;
129
58
  departmentId?: number;
130
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>;
59
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>;
131
60
  getMentorPublicSettings: import("@reduxjs/toolkit/query").QueryDefinition<{
132
61
  mentor: string;
133
62
  org: string;
134
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>;
63
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>;
135
64
  updateMentorVisibilityStatus: import("@reduxjs/toolkit/query").MutationDefinition<{
136
65
  mentor: string;
137
66
  org: string;
138
67
  departmentId?: number;
139
68
  formData?: import("@iblai/iblai-api").MentorSettingsRequest;
140
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettings, "mentorApiSlice", any>;
69
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").MentorSettings, "mentorApiSlice", any>;
141
70
  getFreeUsageCount: import("@reduxjs/toolkit/query").QueryDefinition<{
142
71
  org: string;
143
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").FreeUsageCount, "mentorApiSlice", any>;
72
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").FreeUsageCount, "mentorApiSlice", any>;
144
73
  createShareableLink: import("@reduxjs/toolkit/query").MutationDefinition<{
145
74
  mentor: string;
146
75
  org: string;
147
76
  requestBody?: import("@iblai/iblai-api").ShareableMentorLink;
148
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>;
77
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>;
149
78
  getShareableLink: import("@reduxjs/toolkit/query").QueryDefinition<{
150
79
  mentor: string;
151
80
  org: string;
152
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>;
81
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>;
153
82
  getShareableLinkPublic: import("@reduxjs/toolkit/query").QueryDefinition<{
154
83
  mentor: string;
155
84
  org: string;
156
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>;
85
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>;
157
86
  revokeShareableLink: import("@reduxjs/toolkit/query").MutationDefinition<{
158
87
  mentor: string;
159
88
  org: string;
160
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", void, "mentorApiSlice", any>;
89
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", void, "mentorApiSlice", any>;
161
90
  updateShareableLink: import("@reduxjs/toolkit/query").MutationDefinition<{
162
91
  mentor: string;
163
92
  org: string;
164
93
  requestBody?: import("@iblai/iblai-api").ShareableMentorLink;
165
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>;
94
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>;
166
95
  deleteMentor: import("@reduxjs/toolkit/query").MutationDefinition<{
167
96
  name: string;
168
97
  org: string;
@@ -172,8 +101,28 @@ export declare const mentorApiReducer: import("@reduxjs/toolkit").Reducer<import
172
101
  metadataValue?: string;
173
102
  returnSessionInformation?: boolean;
174
103
  visibility?: string;
175
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", void, "mentorApiSlice", any>;
176
- }, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", "mentorApiSlice">, import("@reduxjs/toolkit").UnknownAction>;
104
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", void, "mentorApiSlice", any>;
105
+ forkMentor: import("@reduxjs/toolkit/query").MutationDefinition<{
106
+ mentor: string;
107
+ org: string;
108
+ requestBody: import("@iblai/iblai-api").MentorFork;
109
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>;
110
+ getRecentlyAccessedMentors: import("@reduxjs/toolkit/query").QueryDefinition<{
111
+ org: string;
112
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").RecentlyAccessedMentor[], "mentorApiSlice", any>;
113
+ getModerationLogs: import("@reduxjs/toolkit/query").QueryDefinition<{
114
+ org: string;
115
+ mentor?: number;
116
+ ordering?: string;
117
+ page?: number;
118
+ pageSize?: number;
119
+ platformKey?: string;
120
+ search?: string;
121
+ targetSystem?: "Moderation System" | "Safety System";
122
+ username?: string;
123
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").PaginatedModerationLogList, "mentorApiSlice", any>;
124
+ }, "mentorApiSlice", "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", typeof import("@reduxjs/toolkit/query").coreModuleName | typeof import("@reduxjs/toolkit/dist/query/react").reactHooksModuleName>;
125
+ export declare const mentorApiReducer: typeof mentorApiSlice.reducer;
177
126
  export declare const useCreateMentorMutation: <R extends Record<string, any> = ({
178
127
  requestId?: undefined;
179
128
  status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
@@ -337,7 +286,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
337
286
  }) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
338
287
  org: string;
339
288
  formData: import("@iblai/iblai-api").MentorFromTemplateWithSettingRequest;
340
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
289
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
341
290
  originalArgs?: {
342
291
  org: string;
343
292
  formData: import("@iblai/iblai-api").MentorFromTemplateWithSettingRequest;
@@ -379,7 +328,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
379
328
  tags?: Array<string>;
380
329
  tenant?: string;
381
330
  uniqueId?: string;
382
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
331
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
383
332
  currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
384
333
  isUninitialized: false;
385
334
  isLoading: false;
@@ -412,7 +361,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
412
361
  tags?: Array<string>;
413
362
  tenant?: string;
414
363
  uniqueId?: string;
415
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
364
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
416
365
  currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
417
366
  isUninitialized: false;
418
367
  isLoading: false;
@@ -441,7 +390,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
441
390
  tags?: Array<string>;
442
391
  tenant?: string;
443
392
  uniqueId?: string;
444
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
393
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
445
394
  currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
446
395
  isUninitialized: false;
447
396
  isLoading: false;
@@ -468,7 +417,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
468
417
  tags?: Array<string>;
469
418
  tenant?: string;
470
419
  uniqueId?: string;
471
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
420
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
472
421
  currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
473
422
  isUninitialized: false;
474
423
  isLoading: false;
@@ -536,7 +485,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
536
485
  tags?: Array<string>;
537
486
  tenant?: string;
538
487
  uniqueId?: string;
539
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
488
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
540
489
  currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
541
490
  isUninitialized: false;
542
491
  isLoading: false;
@@ -569,7 +518,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
569
518
  tags?: Array<string>;
570
519
  tenant?: string;
571
520
  uniqueId?: string;
572
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
521
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
573
522
  currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
574
523
  isUninitialized: false;
575
524
  isLoading: false;
@@ -598,7 +547,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
598
547
  tags?: Array<string>;
599
548
  tenant?: string;
600
549
  uniqueId?: string;
601
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
550
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
602
551
  currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
603
552
  isUninitialized: false;
604
553
  isLoading: false;
@@ -625,7 +574,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
625
574
  tags?: Array<string>;
626
575
  tenant?: string;
627
576
  uniqueId?: string;
628
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
577
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
629
578
  currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
630
579
  isUninitialized: false;
631
580
  isLoading: false;
@@ -654,7 +603,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
654
603
  tags?: Array<string>;
655
604
  tenant?: string;
656
605
  uniqueId?: string;
657
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>>;
606
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>>;
658
607
  }, useLazyGetMentorsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
659
608
  status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
660
609
  originalArgs?: undefined | undefined;
@@ -691,7 +640,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
691
640
  tags?: Array<string>;
692
641
  tenant?: string;
693
642
  uniqueId?: string;
694
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
643
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
695
644
  currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
696
645
  isUninitialized: false;
697
646
  isLoading: false;
@@ -724,7 +673,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
724
673
  tags?: Array<string>;
725
674
  tenant?: string;
726
675
  uniqueId?: string;
727
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
676
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
728
677
  currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
729
678
  isUninitialized: false;
730
679
  isLoading: false;
@@ -753,7 +702,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
753
702
  tags?: Array<string>;
754
703
  tenant?: string;
755
704
  uniqueId?: string;
756
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
705
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
757
706
  currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
758
707
  isUninitialized: false;
759
708
  isLoading: false;
@@ -780,7 +729,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
780
729
  tags?: Array<string>;
781
730
  tenant?: string;
782
731
  uniqueId?: string;
783
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
732
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
784
733
  currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
785
734
  isUninitialized: false;
786
735
  isLoading: false;
@@ -827,7 +776,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
827
776
  tags?: Array<string>;
828
777
  tenant?: string;
829
778
  uniqueId?: string;
830
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
779
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
831
780
  currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
832
781
  isUninitialized: false;
833
782
  isLoading: false;
@@ -860,7 +809,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
860
809
  tags?: Array<string>;
861
810
  tenant?: string;
862
811
  uniqueId?: string;
863
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
812
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
864
813
  currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
865
814
  isUninitialized: false;
866
815
  isLoading: false;
@@ -889,7 +838,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
889
838
  tags?: Array<string>;
890
839
  tenant?: string;
891
840
  uniqueId?: string;
892
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
841
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
893
842
  currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
894
843
  isUninitialized: false;
895
844
  isLoading: false;
@@ -916,7 +865,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
916
865
  tags?: Array<string>;
917
866
  tenant?: string;
918
867
  uniqueId?: string;
919
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
868
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
920
869
  currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
921
870
  isUninitialized: false;
922
871
  isLoading: false;
@@ -962,7 +911,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
962
911
  tags?: Array<string>;
963
912
  tenant?: string;
964
913
  uniqueId?: string;
965
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>>, [R][R extends any ? 0 : never] & {
914
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>>, [R][R extends any ? 0 : never] & {
966
915
  reset: () => void;
967
916
  }, {
968
917
  lastArg: {
@@ -1151,7 +1100,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1151
1100
  org: string;
1152
1101
  departmentId?: number;
1153
1102
  formData?: import("@iblai/iblai-api").MentorSettingsRequest;
1154
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettings, "mentorApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
1103
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").MentorSettings, "mentorApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
1155
1104
  originalArgs?: {
1156
1105
  mentor: string;
1157
1106
  org: string;
@@ -1179,7 +1128,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1179
1128
  isUninitialized: true;
1180
1129
  }) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
1181
1130
  org: string;
1182
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").SeedMentorsView, "mentorApiSlice", any>> & {
1131
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").SeedMentorsView, "mentorApiSlice", any>> & {
1183
1132
  currentData?: import("@iblai/iblai-api").SeedMentorsView | undefined;
1184
1133
  isUninitialized: false;
1185
1134
  isLoading: false;
@@ -1196,7 +1145,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1196
1145
  error: undefined;
1197
1146
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
1198
1147
  org: string;
1199
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").SeedMentorsView, "mentorApiSlice", any>> & {
1148
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").SeedMentorsView, "mentorApiSlice", any>> & {
1200
1149
  currentData?: import("@iblai/iblai-api").SeedMentorsView | undefined;
1201
1150
  isUninitialized: false;
1202
1151
  isLoading: false;
@@ -1209,7 +1158,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1209
1158
  error: undefined;
1210
1159
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
1211
1160
  org: string;
1212
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").SeedMentorsView, "mentorApiSlice", any>> & {
1161
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").SeedMentorsView, "mentorApiSlice", any>> & {
1213
1162
  currentData?: import("@iblai/iblai-api").SeedMentorsView | undefined;
1214
1163
  isUninitialized: false;
1215
1164
  isLoading: false;
@@ -1220,7 +1169,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1220
1169
  isError: true;
1221
1170
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
1222
1171
  org: string;
1223
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").SeedMentorsView, "mentorApiSlice", any>> & {
1172
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").SeedMentorsView, "mentorApiSlice", any>> & {
1224
1173
  currentData?: import("@iblai/iblai-api").SeedMentorsView | undefined;
1225
1174
  isUninitialized: false;
1226
1175
  isLoading: false;
@@ -1256,7 +1205,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1256
1205
  isUninitialized: true;
1257
1206
  }) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
1258
1207
  org: string;
1259
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").SeedMentorsView, "mentorApiSlice", any>> & {
1208
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").SeedMentorsView, "mentorApiSlice", any>> & {
1260
1209
  currentData?: import("@iblai/iblai-api").SeedMentorsView | undefined;
1261
1210
  isUninitialized: false;
1262
1211
  isLoading: false;
@@ -1273,7 +1222,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1273
1222
  error: undefined;
1274
1223
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
1275
1224
  org: string;
1276
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").SeedMentorsView, "mentorApiSlice", any>> & {
1225
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").SeedMentorsView, "mentorApiSlice", any>> & {
1277
1226
  currentData?: import("@iblai/iblai-api").SeedMentorsView | undefined;
1278
1227
  isUninitialized: false;
1279
1228
  isLoading: false;
@@ -1286,7 +1235,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1286
1235
  error: undefined;
1287
1236
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
1288
1237
  org: string;
1289
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").SeedMentorsView, "mentorApiSlice", any>> & {
1238
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").SeedMentorsView, "mentorApiSlice", any>> & {
1290
1239
  currentData?: import("@iblai/iblai-api").SeedMentorsView | undefined;
1291
1240
  isUninitialized: false;
1292
1241
  isLoading: false;
@@ -1297,7 +1246,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1297
1246
  isError: true;
1298
1247
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
1299
1248
  org: string;
1300
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").SeedMentorsView, "mentorApiSlice", any>> & {
1249
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").SeedMentorsView, "mentorApiSlice", any>> & {
1301
1250
  currentData?: import("@iblai/iblai-api").SeedMentorsView | undefined;
1302
1251
  isUninitialized: false;
1303
1252
  isLoading: false;
@@ -1310,7 +1259,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1310
1259
  }) | undefined) => [R][R extends any ? 0 : never] & {
1311
1260
  refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
1312
1261
  org: string;
1313
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").SeedMentorsView, "mentorApiSlice", any>>;
1262
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").SeedMentorsView, "mentorApiSlice", any>>;
1314
1263
  }, useLazySeedMentorsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
1315
1264
  status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
1316
1265
  originalArgs?: undefined | undefined;
@@ -1331,7 +1280,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1331
1280
  isUninitialized: true;
1332
1281
  }) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
1333
1282
  org: string;
1334
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").SeedMentorsView, "mentorApiSlice", any>> & {
1283
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").SeedMentorsView, "mentorApiSlice", any>> & {
1335
1284
  currentData?: import("@iblai/iblai-api").SeedMentorsView | undefined;
1336
1285
  isUninitialized: false;
1337
1286
  isLoading: false;
@@ -1348,7 +1297,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1348
1297
  error: undefined;
1349
1298
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
1350
1299
  org: string;
1351
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").SeedMentorsView, "mentorApiSlice", any>> & {
1300
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").SeedMentorsView, "mentorApiSlice", any>> & {
1352
1301
  currentData?: import("@iblai/iblai-api").SeedMentorsView | undefined;
1353
1302
  isUninitialized: false;
1354
1303
  isLoading: false;
@@ -1361,7 +1310,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1361
1310
  error: undefined;
1362
1311
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
1363
1312
  org: string;
1364
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").SeedMentorsView, "mentorApiSlice", any>> & {
1313
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").SeedMentorsView, "mentorApiSlice", any>> & {
1365
1314
  currentData?: import("@iblai/iblai-api").SeedMentorsView | undefined;
1366
1315
  isUninitialized: false;
1367
1316
  isLoading: false;
@@ -1372,7 +1321,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1372
1321
  isError: true;
1373
1322
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
1374
1323
  org: string;
1375
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").SeedMentorsView, "mentorApiSlice", any>> & {
1324
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").SeedMentorsView, "mentorApiSlice", any>> & {
1376
1325
  currentData?: import("@iblai/iblai-api").SeedMentorsView | undefined;
1377
1326
  isUninitialized: false;
1378
1327
  isLoading: false;
@@ -1403,7 +1352,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1403
1352
  isUninitialized: true;
1404
1353
  }) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
1405
1354
  org: string;
1406
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").SeedMentorsView, "mentorApiSlice", any>> & {
1355
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").SeedMentorsView, "mentorApiSlice", any>> & {
1407
1356
  currentData?: import("@iblai/iblai-api").SeedMentorsView | undefined;
1408
1357
  isUninitialized: false;
1409
1358
  isLoading: false;
@@ -1420,7 +1369,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1420
1369
  error: undefined;
1421
1370
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
1422
1371
  org: string;
1423
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").SeedMentorsView, "mentorApiSlice", any>> & {
1372
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").SeedMentorsView, "mentorApiSlice", any>> & {
1424
1373
  currentData?: import("@iblai/iblai-api").SeedMentorsView | undefined;
1425
1374
  isUninitialized: false;
1426
1375
  isLoading: false;
@@ -1433,7 +1382,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1433
1382
  error: undefined;
1434
1383
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
1435
1384
  org: string;
1436
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").SeedMentorsView, "mentorApiSlice", any>> & {
1385
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").SeedMentorsView, "mentorApiSlice", any>> & {
1437
1386
  currentData?: import("@iblai/iblai-api").SeedMentorsView | undefined;
1438
1387
  isUninitialized: false;
1439
1388
  isLoading: false;
@@ -1444,7 +1393,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1444
1393
  isError: true;
1445
1394
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
1446
1395
  org: string;
1447
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").SeedMentorsView, "mentorApiSlice", any>> & {
1396
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").SeedMentorsView, "mentorApiSlice", any>> & {
1448
1397
  currentData?: import("@iblai/iblai-api").SeedMentorsView | undefined;
1449
1398
  isUninitialized: false;
1450
1399
  isLoading: false;
@@ -1458,7 +1407,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1458
1407
  org: string;
1459
1408
  }, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
1460
1409
  org: string;
1461
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").SeedMentorsView, "mentorApiSlice", any>>, [R][R extends any ? 0 : never] & {
1410
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").SeedMentorsView, "mentorApiSlice", any>>, [R][R extends any ? 0 : never] & {
1462
1411
  reset: () => void;
1463
1412
  }, {
1464
1413
  lastArg: {
@@ -1485,7 +1434,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1485
1434
  }) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
1486
1435
  mentor: string;
1487
1436
  org: string;
1488
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>> & {
1437
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>> & {
1489
1438
  currentData?: import("@iblai/iblai-api").Mentor | undefined;
1490
1439
  isUninitialized: false;
1491
1440
  isLoading: false;
@@ -1503,7 +1452,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1503
1452
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
1504
1453
  mentor: string;
1505
1454
  org: string;
1506
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>> & {
1455
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>> & {
1507
1456
  currentData?: import("@iblai/iblai-api").Mentor | undefined;
1508
1457
  isUninitialized: false;
1509
1458
  isLoading: false;
@@ -1517,7 +1466,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1517
1466
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
1518
1467
  mentor: string;
1519
1468
  org: string;
1520
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>> & {
1469
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>> & {
1521
1470
  currentData?: import("@iblai/iblai-api").Mentor | undefined;
1522
1471
  isUninitialized: false;
1523
1472
  isLoading: false;
@@ -1529,7 +1478,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1529
1478
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
1530
1479
  mentor: string;
1531
1480
  org: string;
1532
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>> & {
1481
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>> & {
1533
1482
  currentData?: import("@iblai/iblai-api").Mentor | undefined;
1534
1483
  isUninitialized: false;
1535
1484
  isLoading: false;
@@ -1567,7 +1516,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1567
1516
  }) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
1568
1517
  mentor: string;
1569
1518
  org: string;
1570
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>> & {
1519
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>> & {
1571
1520
  currentData?: import("@iblai/iblai-api").Mentor | undefined;
1572
1521
  isUninitialized: false;
1573
1522
  isLoading: false;
@@ -1585,7 +1534,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1585
1534
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
1586
1535
  mentor: string;
1587
1536
  org: string;
1588
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>> & {
1537
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>> & {
1589
1538
  currentData?: import("@iblai/iblai-api").Mentor | undefined;
1590
1539
  isUninitialized: false;
1591
1540
  isLoading: false;
@@ -1599,7 +1548,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1599
1548
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
1600
1549
  mentor: string;
1601
1550
  org: string;
1602
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>> & {
1551
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>> & {
1603
1552
  currentData?: import("@iblai/iblai-api").Mentor | undefined;
1604
1553
  isUninitialized: false;
1605
1554
  isLoading: false;
@@ -1611,7 +1560,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1611
1560
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
1612
1561
  mentor: string;
1613
1562
  org: string;
1614
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>> & {
1563
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>> & {
1615
1564
  currentData?: import("@iblai/iblai-api").Mentor | undefined;
1616
1565
  isUninitialized: false;
1617
1566
  isLoading: false;
@@ -1625,7 +1574,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1625
1574
  refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
1626
1575
  mentor: string;
1627
1576
  org: string;
1628
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>>;
1577
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>>;
1629
1578
  }, useLazyGetMentorDetailsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
1630
1579
  status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
1631
1580
  originalArgs?: undefined | undefined;
@@ -1647,7 +1596,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1647
1596
  }) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
1648
1597
  mentor: string;
1649
1598
  org: string;
1650
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>> & {
1599
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>> & {
1651
1600
  currentData?: import("@iblai/iblai-api").Mentor | undefined;
1652
1601
  isUninitialized: false;
1653
1602
  isLoading: false;
@@ -1665,7 +1614,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1665
1614
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
1666
1615
  mentor: string;
1667
1616
  org: string;
1668
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>> & {
1617
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>> & {
1669
1618
  currentData?: import("@iblai/iblai-api").Mentor | undefined;
1670
1619
  isUninitialized: false;
1671
1620
  isLoading: false;
@@ -1679,7 +1628,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1679
1628
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
1680
1629
  mentor: string;
1681
1630
  org: string;
1682
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>> & {
1631
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>> & {
1683
1632
  currentData?: import("@iblai/iblai-api").Mentor | undefined;
1684
1633
  isUninitialized: false;
1685
1634
  isLoading: false;
@@ -1691,7 +1640,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1691
1640
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
1692
1641
  mentor: string;
1693
1642
  org: string;
1694
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>> & {
1643
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>> & {
1695
1644
  currentData?: import("@iblai/iblai-api").Mentor | undefined;
1696
1645
  isUninitialized: false;
1697
1646
  isLoading: false;
@@ -1723,7 +1672,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1723
1672
  }) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
1724
1673
  mentor: string;
1725
1674
  org: string;
1726
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>> & {
1675
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>> & {
1727
1676
  currentData?: import("@iblai/iblai-api").Mentor | undefined;
1728
1677
  isUninitialized: false;
1729
1678
  isLoading: false;
@@ -1741,7 +1690,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1741
1690
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
1742
1691
  mentor: string;
1743
1692
  org: string;
1744
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>> & {
1693
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>> & {
1745
1694
  currentData?: import("@iblai/iblai-api").Mentor | undefined;
1746
1695
  isUninitialized: false;
1747
1696
  isLoading: false;
@@ -1755,7 +1704,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1755
1704
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
1756
1705
  mentor: string;
1757
1706
  org: string;
1758
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>> & {
1707
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>> & {
1759
1708
  currentData?: import("@iblai/iblai-api").Mentor | undefined;
1760
1709
  isUninitialized: false;
1761
1710
  isLoading: false;
@@ -1767,7 +1716,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1767
1716
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
1768
1717
  mentor: string;
1769
1718
  org: string;
1770
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>> & {
1719
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>> & {
1771
1720
  currentData?: import("@iblai/iblai-api").Mentor | undefined;
1772
1721
  isUninitialized: false;
1773
1722
  isLoading: false;
@@ -1783,7 +1732,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1783
1732
  }, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
1784
1733
  mentor: string;
1785
1734
  org: string;
1786
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>>, [R][R extends any ? 0 : never] & {
1735
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>>, [R][R extends any ? 0 : never] & {
1787
1736
  reset: () => void;
1788
1737
  }, {
1789
1738
  lastArg: {
@@ -1812,7 +1761,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1812
1761
  mentor: string;
1813
1762
  org: string;
1814
1763
  departmentId?: number;
1815
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
1764
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
1816
1765
  currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
1817
1766
  isUninitialized: false;
1818
1767
  isLoading: false;
@@ -1831,7 +1780,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1831
1780
  mentor: string;
1832
1781
  org: string;
1833
1782
  departmentId?: number;
1834
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
1783
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
1835
1784
  currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
1836
1785
  isUninitialized: false;
1837
1786
  isLoading: false;
@@ -1846,7 +1795,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1846
1795
  mentor: string;
1847
1796
  org: string;
1848
1797
  departmentId?: number;
1849
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
1798
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
1850
1799
  currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
1851
1800
  isUninitialized: false;
1852
1801
  isLoading: false;
@@ -1859,7 +1808,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1859
1808
  mentor: string;
1860
1809
  org: string;
1861
1810
  departmentId?: number;
1862
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
1811
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
1863
1812
  currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
1864
1813
  isUninitialized: false;
1865
1814
  isLoading: false;
@@ -1899,7 +1848,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1899
1848
  mentor: string;
1900
1849
  org: string;
1901
1850
  departmentId?: number;
1902
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
1851
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
1903
1852
  currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
1904
1853
  isUninitialized: false;
1905
1854
  isLoading: false;
@@ -1918,7 +1867,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1918
1867
  mentor: string;
1919
1868
  org: string;
1920
1869
  departmentId?: number;
1921
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
1870
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
1922
1871
  currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
1923
1872
  isUninitialized: false;
1924
1873
  isLoading: false;
@@ -1933,7 +1882,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1933
1882
  mentor: string;
1934
1883
  org: string;
1935
1884
  departmentId?: number;
1936
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
1885
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
1937
1886
  currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
1938
1887
  isUninitialized: false;
1939
1888
  isLoading: false;
@@ -1946,7 +1895,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1946
1895
  mentor: string;
1947
1896
  org: string;
1948
1897
  departmentId?: number;
1949
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
1898
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
1950
1899
  currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
1951
1900
  isUninitialized: false;
1952
1901
  isLoading: false;
@@ -1961,7 +1910,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1961
1910
  mentor: string;
1962
1911
  org: string;
1963
1912
  departmentId?: number;
1964
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>>;
1913
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>>;
1965
1914
  }, useLazyGetMentorSettingsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
1966
1915
  status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
1967
1916
  originalArgs?: undefined | undefined;
@@ -1984,7 +1933,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1984
1933
  mentor: string;
1985
1934
  org: string;
1986
1935
  departmentId?: number;
1987
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
1936
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
1988
1937
  currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
1989
1938
  isUninitialized: false;
1990
1939
  isLoading: false;
@@ -2003,7 +1952,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2003
1952
  mentor: string;
2004
1953
  org: string;
2005
1954
  departmentId?: number;
2006
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
1955
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
2007
1956
  currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
2008
1957
  isUninitialized: false;
2009
1958
  isLoading: false;
@@ -2018,7 +1967,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2018
1967
  mentor: string;
2019
1968
  org: string;
2020
1969
  departmentId?: number;
2021
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
1970
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
2022
1971
  currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
2023
1972
  isUninitialized: false;
2024
1973
  isLoading: false;
@@ -2031,7 +1980,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2031
1980
  mentor: string;
2032
1981
  org: string;
2033
1982
  departmentId?: number;
2034
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
1983
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
2035
1984
  currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
2036
1985
  isUninitialized: false;
2037
1986
  isLoading: false;
@@ -2064,7 +2013,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2064
2013
  mentor: string;
2065
2014
  org: string;
2066
2015
  departmentId?: number;
2067
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
2016
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
2068
2017
  currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
2069
2018
  isUninitialized: false;
2070
2019
  isLoading: false;
@@ -2083,7 +2032,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2083
2032
  mentor: string;
2084
2033
  org: string;
2085
2034
  departmentId?: number;
2086
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
2035
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
2087
2036
  currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
2088
2037
  isUninitialized: false;
2089
2038
  isLoading: false;
@@ -2098,7 +2047,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2098
2047
  mentor: string;
2099
2048
  org: string;
2100
2049
  departmentId?: number;
2101
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
2050
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
2102
2051
  currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
2103
2052
  isUninitialized: false;
2104
2053
  isLoading: false;
@@ -2111,7 +2060,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2111
2060
  mentor: string;
2112
2061
  org: string;
2113
2062
  departmentId?: number;
2114
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
2063
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
2115
2064
  currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
2116
2065
  isUninitialized: false;
2117
2066
  isLoading: false;
@@ -2129,7 +2078,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2129
2078
  mentor: string;
2130
2079
  org: string;
2131
2080
  departmentId?: number;
2132
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>>, [R][R extends any ? 0 : never] & {
2081
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>>, [R][R extends any ? 0 : never] & {
2133
2082
  reset: () => void;
2134
2083
  }, {
2135
2084
  lastArg: {
@@ -2158,7 +2107,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2158
2107
  }) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
2159
2108
  mentor: string;
2160
2109
  org: string;
2161
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
2110
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
2162
2111
  currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
2163
2112
  isUninitialized: false;
2164
2113
  isLoading: false;
@@ -2176,7 +2125,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2176
2125
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
2177
2126
  mentor: string;
2178
2127
  org: string;
2179
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
2128
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
2180
2129
  currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
2181
2130
  isUninitialized: false;
2182
2131
  isLoading: false;
@@ -2190,7 +2139,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2190
2139
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
2191
2140
  mentor: string;
2192
2141
  org: string;
2193
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
2142
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
2194
2143
  currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
2195
2144
  isUninitialized: false;
2196
2145
  isLoading: false;
@@ -2202,7 +2151,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2202
2151
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
2203
2152
  mentor: string;
2204
2153
  org: string;
2205
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
2154
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
2206
2155
  currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
2207
2156
  isUninitialized: false;
2208
2157
  isLoading: false;
@@ -2240,7 +2189,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2240
2189
  }) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
2241
2190
  mentor: string;
2242
2191
  org: string;
2243
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
2192
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
2244
2193
  currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
2245
2194
  isUninitialized: false;
2246
2195
  isLoading: false;
@@ -2258,7 +2207,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2258
2207
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
2259
2208
  mentor: string;
2260
2209
  org: string;
2261
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
2210
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
2262
2211
  currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
2263
2212
  isUninitialized: false;
2264
2213
  isLoading: false;
@@ -2272,7 +2221,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2272
2221
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
2273
2222
  mentor: string;
2274
2223
  org: string;
2275
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
2224
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
2276
2225
  currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
2277
2226
  isUninitialized: false;
2278
2227
  isLoading: false;
@@ -2284,7 +2233,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2284
2233
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
2285
2234
  mentor: string;
2286
2235
  org: string;
2287
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
2236
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
2288
2237
  currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
2289
2238
  isUninitialized: false;
2290
2239
  isLoading: false;
@@ -2298,7 +2247,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2298
2247
  refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
2299
2248
  mentor: string;
2300
2249
  org: string;
2301
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>>;
2250
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>>;
2302
2251
  }, useLazyGetMentorPublicSettingsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
2303
2252
  status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
2304
2253
  originalArgs?: undefined | undefined;
@@ -2320,7 +2269,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2320
2269
  }) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
2321
2270
  mentor: string;
2322
2271
  org: string;
2323
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
2272
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
2324
2273
  currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
2325
2274
  isUninitialized: false;
2326
2275
  isLoading: false;
@@ -2338,7 +2287,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2338
2287
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
2339
2288
  mentor: string;
2340
2289
  org: string;
2341
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
2290
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
2342
2291
  currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
2343
2292
  isUninitialized: false;
2344
2293
  isLoading: false;
@@ -2352,7 +2301,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2352
2301
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
2353
2302
  mentor: string;
2354
2303
  org: string;
2355
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
2304
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
2356
2305
  currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
2357
2306
  isUninitialized: false;
2358
2307
  isLoading: false;
@@ -2364,7 +2313,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2364
2313
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
2365
2314
  mentor: string;
2366
2315
  org: string;
2367
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
2316
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
2368
2317
  currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
2369
2318
  isUninitialized: false;
2370
2319
  isLoading: false;
@@ -2396,7 +2345,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2396
2345
  }) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
2397
2346
  mentor: string;
2398
2347
  org: string;
2399
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
2348
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
2400
2349
  currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
2401
2350
  isUninitialized: false;
2402
2351
  isLoading: false;
@@ -2414,7 +2363,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2414
2363
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
2415
2364
  mentor: string;
2416
2365
  org: string;
2417
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
2366
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
2418
2367
  currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
2419
2368
  isUninitialized: false;
2420
2369
  isLoading: false;
@@ -2428,7 +2377,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2428
2377
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
2429
2378
  mentor: string;
2430
2379
  org: string;
2431
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
2380
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
2432
2381
  currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
2433
2382
  isUninitialized: false;
2434
2383
  isLoading: false;
@@ -2440,7 +2389,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2440
2389
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
2441
2390
  mentor: string;
2442
2391
  org: string;
2443
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
2392
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
2444
2393
  currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
2445
2394
  isUninitialized: false;
2446
2395
  isLoading: false;
@@ -2456,7 +2405,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2456
2405
  }, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
2457
2406
  mentor: string;
2458
2407
  org: string;
2459
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>>, [R][R extends any ? 0 : never] & {
2408
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>>, [R][R extends any ? 0 : never] & {
2460
2409
  reset: () => void;
2461
2410
  }, {
2462
2411
  lastArg: {
@@ -2630,7 +2579,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2630
2579
  org: string;
2631
2580
  departmentId?: number;
2632
2581
  formData?: import("@iblai/iblai-api").MentorSettingsRequest;
2633
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettings, "mentorApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
2582
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").MentorSettings, "mentorApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
2634
2583
  originalArgs?: {
2635
2584
  mentor: string;
2636
2585
  org: string;
@@ -2658,7 +2607,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2658
2607
  isUninitialized: true;
2659
2608
  }) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
2660
2609
  org: string;
2661
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").FreeUsageCount, "mentorApiSlice", any>> & {
2610
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").FreeUsageCount, "mentorApiSlice", any>> & {
2662
2611
  currentData?: import("@iblai/iblai-api").FreeUsageCount | undefined;
2663
2612
  isUninitialized: false;
2664
2613
  isLoading: false;
@@ -2675,7 +2624,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2675
2624
  error: undefined;
2676
2625
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
2677
2626
  org: string;
2678
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").FreeUsageCount, "mentorApiSlice", any>> & {
2627
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").FreeUsageCount, "mentorApiSlice", any>> & {
2679
2628
  currentData?: import("@iblai/iblai-api").FreeUsageCount | undefined;
2680
2629
  isUninitialized: false;
2681
2630
  isLoading: false;
@@ -2688,7 +2637,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2688
2637
  error: undefined;
2689
2638
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
2690
2639
  org: string;
2691
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").FreeUsageCount, "mentorApiSlice", any>> & {
2640
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").FreeUsageCount, "mentorApiSlice", any>> & {
2692
2641
  currentData?: import("@iblai/iblai-api").FreeUsageCount | undefined;
2693
2642
  isUninitialized: false;
2694
2643
  isLoading: false;
@@ -2699,7 +2648,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2699
2648
  isError: true;
2700
2649
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
2701
2650
  org: string;
2702
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").FreeUsageCount, "mentorApiSlice", any>> & {
2651
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").FreeUsageCount, "mentorApiSlice", any>> & {
2703
2652
  currentData?: import("@iblai/iblai-api").FreeUsageCount | undefined;
2704
2653
  isUninitialized: false;
2705
2654
  isLoading: false;
@@ -2735,7 +2684,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2735
2684
  isUninitialized: true;
2736
2685
  }) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
2737
2686
  org: string;
2738
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").FreeUsageCount, "mentorApiSlice", any>> & {
2687
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").FreeUsageCount, "mentorApiSlice", any>> & {
2739
2688
  currentData?: import("@iblai/iblai-api").FreeUsageCount | undefined;
2740
2689
  isUninitialized: false;
2741
2690
  isLoading: false;
@@ -2752,7 +2701,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2752
2701
  error: undefined;
2753
2702
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
2754
2703
  org: string;
2755
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").FreeUsageCount, "mentorApiSlice", any>> & {
2704
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").FreeUsageCount, "mentorApiSlice", any>> & {
2756
2705
  currentData?: import("@iblai/iblai-api").FreeUsageCount | undefined;
2757
2706
  isUninitialized: false;
2758
2707
  isLoading: false;
@@ -2765,7 +2714,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2765
2714
  error: undefined;
2766
2715
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
2767
2716
  org: string;
2768
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").FreeUsageCount, "mentorApiSlice", any>> & {
2717
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").FreeUsageCount, "mentorApiSlice", any>> & {
2769
2718
  currentData?: import("@iblai/iblai-api").FreeUsageCount | undefined;
2770
2719
  isUninitialized: false;
2771
2720
  isLoading: false;
@@ -2776,7 +2725,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2776
2725
  isError: true;
2777
2726
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
2778
2727
  org: string;
2779
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").FreeUsageCount, "mentorApiSlice", any>> & {
2728
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").FreeUsageCount, "mentorApiSlice", any>> & {
2780
2729
  currentData?: import("@iblai/iblai-api").FreeUsageCount | undefined;
2781
2730
  isUninitialized: false;
2782
2731
  isLoading: false;
@@ -2789,7 +2738,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2789
2738
  }) | undefined) => [R][R extends any ? 0 : never] & {
2790
2739
  refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
2791
2740
  org: string;
2792
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").FreeUsageCount, "mentorApiSlice", any>>;
2741
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").FreeUsageCount, "mentorApiSlice", any>>;
2793
2742
  }, useLazyGetFreeUsageCountQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
2794
2743
  status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
2795
2744
  originalArgs?: undefined | undefined;
@@ -2810,7 +2759,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2810
2759
  isUninitialized: true;
2811
2760
  }) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
2812
2761
  org: string;
2813
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").FreeUsageCount, "mentorApiSlice", any>> & {
2762
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").FreeUsageCount, "mentorApiSlice", any>> & {
2814
2763
  currentData?: import("@iblai/iblai-api").FreeUsageCount | undefined;
2815
2764
  isUninitialized: false;
2816
2765
  isLoading: false;
@@ -2827,7 +2776,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2827
2776
  error: undefined;
2828
2777
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
2829
2778
  org: string;
2830
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").FreeUsageCount, "mentorApiSlice", any>> & {
2779
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").FreeUsageCount, "mentorApiSlice", any>> & {
2831
2780
  currentData?: import("@iblai/iblai-api").FreeUsageCount | undefined;
2832
2781
  isUninitialized: false;
2833
2782
  isLoading: false;
@@ -2840,7 +2789,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2840
2789
  error: undefined;
2841
2790
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
2842
2791
  org: string;
2843
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").FreeUsageCount, "mentorApiSlice", any>> & {
2792
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").FreeUsageCount, "mentorApiSlice", any>> & {
2844
2793
  currentData?: import("@iblai/iblai-api").FreeUsageCount | undefined;
2845
2794
  isUninitialized: false;
2846
2795
  isLoading: false;
@@ -2851,7 +2800,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2851
2800
  isError: true;
2852
2801
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
2853
2802
  org: string;
2854
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").FreeUsageCount, "mentorApiSlice", any>> & {
2803
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").FreeUsageCount, "mentorApiSlice", any>> & {
2855
2804
  currentData?: import("@iblai/iblai-api").FreeUsageCount | undefined;
2856
2805
  isUninitialized: false;
2857
2806
  isLoading: false;
@@ -2882,7 +2831,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2882
2831
  isUninitialized: true;
2883
2832
  }) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
2884
2833
  org: string;
2885
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").FreeUsageCount, "mentorApiSlice", any>> & {
2834
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").FreeUsageCount, "mentorApiSlice", any>> & {
2886
2835
  currentData?: import("@iblai/iblai-api").FreeUsageCount | undefined;
2887
2836
  isUninitialized: false;
2888
2837
  isLoading: false;
@@ -2899,7 +2848,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2899
2848
  error: undefined;
2900
2849
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
2901
2850
  org: string;
2902
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").FreeUsageCount, "mentorApiSlice", any>> & {
2851
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").FreeUsageCount, "mentorApiSlice", any>> & {
2903
2852
  currentData?: import("@iblai/iblai-api").FreeUsageCount | undefined;
2904
2853
  isUninitialized: false;
2905
2854
  isLoading: false;
@@ -2912,7 +2861,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2912
2861
  error: undefined;
2913
2862
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
2914
2863
  org: string;
2915
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").FreeUsageCount, "mentorApiSlice", any>> & {
2864
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").FreeUsageCount, "mentorApiSlice", any>> & {
2916
2865
  currentData?: import("@iblai/iblai-api").FreeUsageCount | undefined;
2917
2866
  isUninitialized: false;
2918
2867
  isLoading: false;
@@ -2923,7 +2872,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2923
2872
  isError: true;
2924
2873
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
2925
2874
  org: string;
2926
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").FreeUsageCount, "mentorApiSlice", any>> & {
2875
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").FreeUsageCount, "mentorApiSlice", any>> & {
2927
2876
  currentData?: import("@iblai/iblai-api").FreeUsageCount | undefined;
2928
2877
  isUninitialized: false;
2929
2878
  isLoading: false;
@@ -2937,7 +2886,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2937
2886
  org: string;
2938
2887
  }, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
2939
2888
  org: string;
2940
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").FreeUsageCount, "mentorApiSlice", any>>, [R][R extends any ? 0 : never] & {
2889
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").FreeUsageCount, "mentorApiSlice", any>>, [R][R extends any ? 0 : never] & {
2941
2890
  reset: () => void;
2942
2891
  }, {
2943
2892
  lastArg: {
@@ -3108,7 +3057,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
3108
3057
  mentor: string;
3109
3058
  org: string;
3110
3059
  requestBody?: import("@iblai/iblai-api").ShareableMentorLink;
3111
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
3060
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
3112
3061
  originalArgs?: {
3113
3062
  mentor: string;
3114
3063
  org: string;
@@ -3136,7 +3085,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
3136
3085
  }) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
3137
3086
  mentor: string;
3138
3087
  org: string;
3139
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3088
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3140
3089
  currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
3141
3090
  isUninitialized: false;
3142
3091
  isLoading: false;
@@ -3154,7 +3103,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
3154
3103
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
3155
3104
  mentor: string;
3156
3105
  org: string;
3157
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3106
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3158
3107
  currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
3159
3108
  isUninitialized: false;
3160
3109
  isLoading: false;
@@ -3168,7 +3117,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
3168
3117
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
3169
3118
  mentor: string;
3170
3119
  org: string;
3171
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3120
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3172
3121
  currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
3173
3122
  isUninitialized: false;
3174
3123
  isLoading: false;
@@ -3180,7 +3129,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
3180
3129
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
3181
3130
  mentor: string;
3182
3131
  org: string;
3183
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3132
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3184
3133
  currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
3185
3134
  isUninitialized: false;
3186
3135
  isLoading: false;
@@ -3218,7 +3167,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
3218
3167
  }) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
3219
3168
  mentor: string;
3220
3169
  org: string;
3221
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3170
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3222
3171
  currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
3223
3172
  isUninitialized: false;
3224
3173
  isLoading: false;
@@ -3236,7 +3185,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
3236
3185
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
3237
3186
  mentor: string;
3238
3187
  org: string;
3239
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3188
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3240
3189
  currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
3241
3190
  isUninitialized: false;
3242
3191
  isLoading: false;
@@ -3250,7 +3199,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
3250
3199
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
3251
3200
  mentor: string;
3252
3201
  org: string;
3253
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3202
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3254
3203
  currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
3255
3204
  isUninitialized: false;
3256
3205
  isLoading: false;
@@ -3262,7 +3211,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
3262
3211
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
3263
3212
  mentor: string;
3264
3213
  org: string;
3265
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3214
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3266
3215
  currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
3267
3216
  isUninitialized: false;
3268
3217
  isLoading: false;
@@ -3276,7 +3225,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
3276
3225
  refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
3277
3226
  mentor: string;
3278
3227
  org: string;
3279
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>>;
3228
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>>;
3280
3229
  }, useLazyGetShareableLinkQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
3281
3230
  status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
3282
3231
  originalArgs?: undefined | undefined;
@@ -3298,7 +3247,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
3298
3247
  }) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
3299
3248
  mentor: string;
3300
3249
  org: string;
3301
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3250
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3302
3251
  currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
3303
3252
  isUninitialized: false;
3304
3253
  isLoading: false;
@@ -3316,7 +3265,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
3316
3265
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
3317
3266
  mentor: string;
3318
3267
  org: string;
3319
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3268
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3320
3269
  currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
3321
3270
  isUninitialized: false;
3322
3271
  isLoading: false;
@@ -3330,7 +3279,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
3330
3279
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
3331
3280
  mentor: string;
3332
3281
  org: string;
3333
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3282
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3334
3283
  currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
3335
3284
  isUninitialized: false;
3336
3285
  isLoading: false;
@@ -3342,7 +3291,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
3342
3291
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
3343
3292
  mentor: string;
3344
3293
  org: string;
3345
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3294
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3346
3295
  currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
3347
3296
  isUninitialized: false;
3348
3297
  isLoading: false;
@@ -3374,7 +3323,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
3374
3323
  }) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
3375
3324
  mentor: string;
3376
3325
  org: string;
3377
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3326
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3378
3327
  currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
3379
3328
  isUninitialized: false;
3380
3329
  isLoading: false;
@@ -3392,7 +3341,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
3392
3341
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
3393
3342
  mentor: string;
3394
3343
  org: string;
3395
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3344
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3396
3345
  currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
3397
3346
  isUninitialized: false;
3398
3347
  isLoading: false;
@@ -3406,7 +3355,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
3406
3355
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
3407
3356
  mentor: string;
3408
3357
  org: string;
3409
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3358
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3410
3359
  currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
3411
3360
  isUninitialized: false;
3412
3361
  isLoading: false;
@@ -3418,7 +3367,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
3418
3367
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
3419
3368
  mentor: string;
3420
3369
  org: string;
3421
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3370
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3422
3371
  currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
3423
3372
  isUninitialized: false;
3424
3373
  isLoading: false;
@@ -3434,7 +3383,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
3434
3383
  }, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
3435
3384
  mentor: string;
3436
3385
  org: string;
3437
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>>, [R][R extends any ? 0 : never] & {
3386
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>>, [R][R extends any ? 0 : never] & {
3438
3387
  reset: () => void;
3439
3388
  }, {
3440
3389
  lastArg: {
@@ -3462,7 +3411,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
3462
3411
  }) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
3463
3412
  mentor: string;
3464
3413
  org: string;
3465
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3414
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3466
3415
  currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
3467
3416
  isUninitialized: false;
3468
3417
  isLoading: false;
@@ -3480,7 +3429,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
3480
3429
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
3481
3430
  mentor: string;
3482
3431
  org: string;
3483
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3432
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3484
3433
  currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
3485
3434
  isUninitialized: false;
3486
3435
  isLoading: false;
@@ -3494,7 +3443,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
3494
3443
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
3495
3444
  mentor: string;
3496
3445
  org: string;
3497
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3446
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3498
3447
  currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
3499
3448
  isUninitialized: false;
3500
3449
  isLoading: false;
@@ -3506,7 +3455,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
3506
3455
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
3507
3456
  mentor: string;
3508
3457
  org: string;
3509
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3458
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3510
3459
  currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
3511
3460
  isUninitialized: false;
3512
3461
  isLoading: false;
@@ -3544,7 +3493,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
3544
3493
  }) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
3545
3494
  mentor: string;
3546
3495
  org: string;
3547
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3496
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3548
3497
  currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
3549
3498
  isUninitialized: false;
3550
3499
  isLoading: false;
@@ -3562,7 +3511,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
3562
3511
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
3563
3512
  mentor: string;
3564
3513
  org: string;
3565
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3514
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3566
3515
  currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
3567
3516
  isUninitialized: false;
3568
3517
  isLoading: false;
@@ -3576,7 +3525,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
3576
3525
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
3577
3526
  mentor: string;
3578
3527
  org: string;
3579
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3528
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3580
3529
  currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
3581
3530
  isUninitialized: false;
3582
3531
  isLoading: false;
@@ -3588,7 +3537,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
3588
3537
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
3589
3538
  mentor: string;
3590
3539
  org: string;
3591
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3540
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3592
3541
  currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
3593
3542
  isUninitialized: false;
3594
3543
  isLoading: false;
@@ -3602,7 +3551,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
3602
3551
  refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
3603
3552
  mentor: string;
3604
3553
  org: string;
3605
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>>;
3554
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>>;
3606
3555
  }, useLazyGetShareableLinkPublicQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
3607
3556
  status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
3608
3557
  originalArgs?: undefined | undefined;
@@ -3624,7 +3573,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
3624
3573
  }) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
3625
3574
  mentor: string;
3626
3575
  org: string;
3627
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3576
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3628
3577
  currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
3629
3578
  isUninitialized: false;
3630
3579
  isLoading: false;
@@ -3642,7 +3591,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
3642
3591
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
3643
3592
  mentor: string;
3644
3593
  org: string;
3645
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3594
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3646
3595
  currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
3647
3596
  isUninitialized: false;
3648
3597
  isLoading: false;
@@ -3656,7 +3605,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
3656
3605
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
3657
3606
  mentor: string;
3658
3607
  org: string;
3659
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3608
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3660
3609
  currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
3661
3610
  isUninitialized: false;
3662
3611
  isLoading: false;
@@ -3668,7 +3617,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
3668
3617
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
3669
3618
  mentor: string;
3670
3619
  org: string;
3671
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3620
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3672
3621
  currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
3673
3622
  isUninitialized: false;
3674
3623
  isLoading: false;
@@ -3700,7 +3649,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
3700
3649
  }) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
3701
3650
  mentor: string;
3702
3651
  org: string;
3703
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3652
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3704
3653
  currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
3705
3654
  isUninitialized: false;
3706
3655
  isLoading: false;
@@ -3718,7 +3667,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
3718
3667
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
3719
3668
  mentor: string;
3720
3669
  org: string;
3721
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3670
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3722
3671
  currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
3723
3672
  isUninitialized: false;
3724
3673
  isLoading: false;
@@ -3732,7 +3681,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
3732
3681
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
3733
3682
  mentor: string;
3734
3683
  org: string;
3735
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3684
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3736
3685
  currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
3737
3686
  isUninitialized: false;
3738
3687
  isLoading: false;
@@ -3744,7 +3693,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
3744
3693
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
3745
3694
  mentor: string;
3746
3695
  org: string;
3747
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3696
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3748
3697
  currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
3749
3698
  isUninitialized: false;
3750
3699
  isLoading: false;
@@ -3760,7 +3709,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
3760
3709
  }, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
3761
3710
  mentor: string;
3762
3711
  org: string;
3763
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>>, [R][R extends any ? 0 : never] & {
3712
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>>, [R][R extends any ? 0 : never] & {
3764
3713
  reset: () => void;
3765
3714
  }, {
3766
3715
  lastArg: {
@@ -3930,7 +3879,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
3930
3879
  }) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
3931
3880
  mentor: string;
3932
3881
  org: string;
3933
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", void, "mentorApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
3882
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", void, "mentorApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
3934
3883
  originalArgs?: {
3935
3884
  mentor: string;
3936
3885
  org: string;
@@ -4101,7 +4050,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
4101
4050
  mentor: string;
4102
4051
  org: string;
4103
4052
  requestBody?: import("@iblai/iblai-api").ShareableMentorLink;
4104
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
4053
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
4105
4054
  originalArgs?: {
4106
4055
  mentor: string;
4107
4056
  org: string;
@@ -4283,7 +4232,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
4283
4232
  metadataValue?: string;
4284
4233
  returnSessionInformation?: boolean;
4285
4234
  visibility?: string;
4286
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", void, "mentorApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
4235
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", void, "mentorApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
4287
4236
  originalArgs?: {
4288
4237
  name: string;
4289
4238
  org: string;
@@ -4295,4 +4244,1553 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
4295
4244
  visibility?: string;
4296
4245
  } | undefined;
4297
4246
  reset: () => void;
4247
+ }], useForkMentorMutation: <R extends Record<string, any> = ({
4248
+ requestId?: undefined;
4249
+ status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
4250
+ data?: undefined;
4251
+ error?: undefined;
4252
+ endpointName?: string;
4253
+ startedTimeStamp?: undefined;
4254
+ fulfilledTimeStamp?: undefined;
4255
+ } & {
4256
+ status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
4257
+ isUninitialized: true;
4258
+ isLoading: false;
4259
+ isSuccess: false;
4260
+ isError: false;
4261
+ }) | ({
4262
+ status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
4263
+ } & Omit<{
4264
+ requestId: string;
4265
+ data?: import("@iblai/iblai-api").Mentor | undefined;
4266
+ error?: unknown;
4267
+ endpointName: string;
4268
+ startedTimeStamp: number;
4269
+ fulfilledTimeStamp?: number;
4270
+ }, "data" | "fulfilledTimeStamp"> & Required<Pick<{
4271
+ requestId: string;
4272
+ data?: import("@iblai/iblai-api").Mentor | undefined;
4273
+ error?: unknown;
4274
+ endpointName: string;
4275
+ startedTimeStamp: number;
4276
+ fulfilledTimeStamp?: number;
4277
+ }, "data" | "fulfilledTimeStamp">> & {
4278
+ error: undefined;
4279
+ } & {
4280
+ status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
4281
+ isUninitialized: false;
4282
+ isLoading: false;
4283
+ isSuccess: true;
4284
+ isError: false;
4285
+ }) | ({
4286
+ status: import("@reduxjs/toolkit/query").QueryStatus.pending;
4287
+ } & {
4288
+ requestId: string;
4289
+ data?: import("@iblai/iblai-api").Mentor | undefined;
4290
+ error?: unknown;
4291
+ endpointName: string;
4292
+ startedTimeStamp: number;
4293
+ fulfilledTimeStamp?: number;
4294
+ } & {
4295
+ data?: undefined;
4296
+ } & {
4297
+ status: import("@reduxjs/toolkit/query").QueryStatus.pending;
4298
+ isUninitialized: false;
4299
+ isLoading: true;
4300
+ isSuccess: false;
4301
+ isError: false;
4302
+ }) | ({
4303
+ status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
4304
+ } & Omit<{
4305
+ requestId: string;
4306
+ data?: import("@iblai/iblai-api").Mentor | undefined;
4307
+ error?: unknown;
4308
+ endpointName: string;
4309
+ startedTimeStamp: number;
4310
+ fulfilledTimeStamp?: number;
4311
+ }, "error"> & Required<Pick<{
4312
+ requestId: string;
4313
+ data?: import("@iblai/iblai-api").Mentor | undefined;
4314
+ error?: unknown;
4315
+ endpointName: string;
4316
+ startedTimeStamp: number;
4317
+ fulfilledTimeStamp?: number;
4318
+ }, "error">> & {
4319
+ status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
4320
+ isUninitialized: false;
4321
+ isLoading: false;
4322
+ isSuccess: false;
4323
+ isError: true;
4324
+ })>(options?: {
4325
+ selectFromResult?: ((state: ({
4326
+ requestId?: undefined;
4327
+ status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
4328
+ data?: undefined;
4329
+ error?: undefined;
4330
+ endpointName?: string;
4331
+ startedTimeStamp?: undefined;
4332
+ fulfilledTimeStamp?: undefined;
4333
+ } & {
4334
+ status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
4335
+ isUninitialized: true;
4336
+ isLoading: false;
4337
+ isSuccess: false;
4338
+ isError: false;
4339
+ }) | ({
4340
+ status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
4341
+ } & Omit<{
4342
+ requestId: string;
4343
+ data?: import("@iblai/iblai-api").Mentor | undefined;
4344
+ error?: unknown;
4345
+ endpointName: string;
4346
+ startedTimeStamp: number;
4347
+ fulfilledTimeStamp?: number;
4348
+ }, "data" | "fulfilledTimeStamp"> & Required<Pick<{
4349
+ requestId: string;
4350
+ data?: import("@iblai/iblai-api").Mentor | undefined;
4351
+ error?: unknown;
4352
+ endpointName: string;
4353
+ startedTimeStamp: number;
4354
+ fulfilledTimeStamp?: number;
4355
+ }, "data" | "fulfilledTimeStamp">> & {
4356
+ error: undefined;
4357
+ } & {
4358
+ status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
4359
+ isUninitialized: false;
4360
+ isLoading: false;
4361
+ isSuccess: true;
4362
+ isError: false;
4363
+ }) | ({
4364
+ status: import("@reduxjs/toolkit/query").QueryStatus.pending;
4365
+ } & {
4366
+ requestId: string;
4367
+ data?: import("@iblai/iblai-api").Mentor | undefined;
4368
+ error?: unknown;
4369
+ endpointName: string;
4370
+ startedTimeStamp: number;
4371
+ fulfilledTimeStamp?: number;
4372
+ } & {
4373
+ data?: undefined;
4374
+ } & {
4375
+ status: import("@reduxjs/toolkit/query").QueryStatus.pending;
4376
+ isUninitialized: false;
4377
+ isLoading: true;
4378
+ isSuccess: false;
4379
+ isError: false;
4380
+ }) | ({
4381
+ status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
4382
+ } & Omit<{
4383
+ requestId: string;
4384
+ data?: import("@iblai/iblai-api").Mentor | undefined;
4385
+ error?: unknown;
4386
+ endpointName: string;
4387
+ startedTimeStamp: number;
4388
+ fulfilledTimeStamp?: number;
4389
+ }, "error"> & Required<Pick<{
4390
+ requestId: string;
4391
+ data?: import("@iblai/iblai-api").Mentor | undefined;
4392
+ error?: unknown;
4393
+ endpointName: string;
4394
+ startedTimeStamp: number;
4395
+ fulfilledTimeStamp?: number;
4396
+ }, "error">> & {
4397
+ status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
4398
+ isUninitialized: false;
4399
+ isLoading: false;
4400
+ isSuccess: false;
4401
+ isError: true;
4402
+ })) => R) | undefined;
4403
+ fixedCacheKey?: string;
4404
+ } | undefined) => readonly [(arg: {
4405
+ mentor: string;
4406
+ org: string;
4407
+ requestBody: import("@iblai/iblai-api").MentorFork;
4408
+ }) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
4409
+ mentor: string;
4410
+ org: string;
4411
+ requestBody: import("@iblai/iblai-api").MentorFork;
4412
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
4413
+ originalArgs?: {
4414
+ mentor: string;
4415
+ org: string;
4416
+ requestBody: import("@iblai/iblai-api").MentorFork;
4417
+ } | undefined;
4418
+ reset: () => void;
4419
+ }], useGetPublicMentorsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
4420
+ status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
4421
+ originalArgs?: undefined | undefined;
4422
+ data?: undefined | undefined;
4423
+ error?: undefined | undefined;
4424
+ requestId?: undefined | undefined;
4425
+ endpointName?: string | undefined;
4426
+ startedTimeStamp?: undefined | undefined;
4427
+ fulfilledTimeStamp?: undefined | undefined;
4428
+ } & {
4429
+ currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
4430
+ isUninitialized: false;
4431
+ isLoading: false;
4432
+ isFetching: false;
4433
+ isSuccess: false;
4434
+ isError: false;
4435
+ }, "isUninitialized"> & {
4436
+ isUninitialized: true;
4437
+ }) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
4438
+ audience?: Array<string>;
4439
+ category?: Array<string>;
4440
+ createdBy?: string;
4441
+ featured?: boolean;
4442
+ id?: number;
4443
+ includeMainPublicMentors?: boolean;
4444
+ limit?: number;
4445
+ llm?: Array<string>;
4446
+ offset?: number;
4447
+ orderBy?: string;
4448
+ orderDirection?: string;
4449
+ query?: string;
4450
+ tags?: Array<string>;
4451
+ tenant?: string;
4452
+ uniqueId?: string;
4453
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
4454
+ currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
4455
+ isUninitialized: false;
4456
+ isLoading: false;
4457
+ isFetching: false;
4458
+ isSuccess: false;
4459
+ isError: false;
4460
+ }, {
4461
+ isLoading: true;
4462
+ isFetching: boolean;
4463
+ data: undefined;
4464
+ } | ({
4465
+ isSuccess: true;
4466
+ isFetching: true;
4467
+ error: undefined;
4468
+ } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
4469
+ audience?: Array<string>;
4470
+ category?: Array<string>;
4471
+ createdBy?: string;
4472
+ featured?: boolean;
4473
+ id?: number;
4474
+ includeMainPublicMentors?: boolean;
4475
+ limit?: number;
4476
+ llm?: Array<string>;
4477
+ offset?: number;
4478
+ orderBy?: string;
4479
+ orderDirection?: string;
4480
+ query?: string;
4481
+ tags?: Array<string>;
4482
+ tenant?: string;
4483
+ uniqueId?: string;
4484
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
4485
+ currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
4486
+ isUninitialized: false;
4487
+ isLoading: false;
4488
+ isFetching: false;
4489
+ isSuccess: false;
4490
+ isError: false;
4491
+ }, "data" | "fulfilledTimeStamp">>) | ({
4492
+ isSuccess: true;
4493
+ isFetching: false;
4494
+ error: undefined;
4495
+ } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
4496
+ audience?: Array<string>;
4497
+ category?: Array<string>;
4498
+ createdBy?: string;
4499
+ featured?: boolean;
4500
+ id?: number;
4501
+ includeMainPublicMentors?: boolean;
4502
+ limit?: number;
4503
+ llm?: Array<string>;
4504
+ offset?: number;
4505
+ orderBy?: string;
4506
+ orderDirection?: string;
4507
+ query?: string;
4508
+ tags?: Array<string>;
4509
+ tenant?: string;
4510
+ uniqueId?: string;
4511
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
4512
+ currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
4513
+ isUninitialized: false;
4514
+ isLoading: false;
4515
+ isFetching: false;
4516
+ isSuccess: false;
4517
+ isError: false;
4518
+ }, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
4519
+ isError: true;
4520
+ } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
4521
+ audience?: Array<string>;
4522
+ category?: Array<string>;
4523
+ createdBy?: string;
4524
+ featured?: boolean;
4525
+ id?: number;
4526
+ includeMainPublicMentors?: boolean;
4527
+ limit?: number;
4528
+ llm?: Array<string>;
4529
+ offset?: number;
4530
+ orderBy?: string;
4531
+ orderDirection?: string;
4532
+ query?: string;
4533
+ tags?: Array<string>;
4534
+ tenant?: string;
4535
+ uniqueId?: string;
4536
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
4537
+ currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
4538
+ isUninitialized: false;
4539
+ isLoading: false;
4540
+ isFetching: false;
4541
+ isSuccess: false;
4542
+ isError: false;
4543
+ }, "error">>)>> & {
4544
+ status: import("@reduxjs/toolkit/query").QueryStatus;
4545
+ }>(arg: {
4546
+ audience?: Array<string>;
4547
+ category?: Array<string>;
4548
+ createdBy?: string;
4549
+ featured?: boolean;
4550
+ id?: number;
4551
+ includeMainPublicMentors?: boolean;
4552
+ limit?: number;
4553
+ llm?: Array<string>;
4554
+ offset?: number;
4555
+ orderBy?: string;
4556
+ orderDirection?: string;
4557
+ query?: string;
4558
+ tags?: Array<string>;
4559
+ tenant?: string;
4560
+ uniqueId?: string;
4561
+ } | typeof import("@reduxjs/toolkit/query").skipToken, options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & {
4562
+ skip?: boolean;
4563
+ refetchOnMountOrArgChange?: boolean | number;
4564
+ } & {
4565
+ skip?: boolean;
4566
+ selectFromResult?: ((state: import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
4567
+ status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
4568
+ originalArgs?: undefined | undefined;
4569
+ data?: undefined | undefined;
4570
+ error?: undefined | undefined;
4571
+ requestId?: undefined | undefined;
4572
+ endpointName?: string | undefined;
4573
+ startedTimeStamp?: undefined | undefined;
4574
+ fulfilledTimeStamp?: undefined | undefined;
4575
+ } & {
4576
+ currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
4577
+ isUninitialized: false;
4578
+ isLoading: false;
4579
+ isFetching: false;
4580
+ isSuccess: false;
4581
+ isError: false;
4582
+ }, "isUninitialized"> & {
4583
+ isUninitialized: true;
4584
+ }) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
4585
+ audience?: Array<string>;
4586
+ category?: Array<string>;
4587
+ createdBy?: string;
4588
+ featured?: boolean;
4589
+ id?: number;
4590
+ includeMainPublicMentors?: boolean;
4591
+ limit?: number;
4592
+ llm?: Array<string>;
4593
+ offset?: number;
4594
+ orderBy?: string;
4595
+ orderDirection?: string;
4596
+ query?: string;
4597
+ tags?: Array<string>;
4598
+ tenant?: string;
4599
+ uniqueId?: string;
4600
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
4601
+ currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
4602
+ isUninitialized: false;
4603
+ isLoading: false;
4604
+ isFetching: false;
4605
+ isSuccess: false;
4606
+ isError: false;
4607
+ }, {
4608
+ isLoading: true;
4609
+ isFetching: boolean;
4610
+ data: undefined;
4611
+ } | ({
4612
+ isSuccess: true;
4613
+ isFetching: true;
4614
+ error: undefined;
4615
+ } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
4616
+ audience?: Array<string>;
4617
+ category?: Array<string>;
4618
+ createdBy?: string;
4619
+ featured?: boolean;
4620
+ id?: number;
4621
+ includeMainPublicMentors?: boolean;
4622
+ limit?: number;
4623
+ llm?: Array<string>;
4624
+ offset?: number;
4625
+ orderBy?: string;
4626
+ orderDirection?: string;
4627
+ query?: string;
4628
+ tags?: Array<string>;
4629
+ tenant?: string;
4630
+ uniqueId?: string;
4631
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
4632
+ currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
4633
+ isUninitialized: false;
4634
+ isLoading: false;
4635
+ isFetching: false;
4636
+ isSuccess: false;
4637
+ isError: false;
4638
+ }, "data" | "fulfilledTimeStamp">>) | ({
4639
+ isSuccess: true;
4640
+ isFetching: false;
4641
+ error: undefined;
4642
+ } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
4643
+ audience?: Array<string>;
4644
+ category?: Array<string>;
4645
+ createdBy?: string;
4646
+ featured?: boolean;
4647
+ id?: number;
4648
+ includeMainPublicMentors?: boolean;
4649
+ limit?: number;
4650
+ llm?: Array<string>;
4651
+ offset?: number;
4652
+ orderBy?: string;
4653
+ orderDirection?: string;
4654
+ query?: string;
4655
+ tags?: Array<string>;
4656
+ tenant?: string;
4657
+ uniqueId?: string;
4658
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
4659
+ currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
4660
+ isUninitialized: false;
4661
+ isLoading: false;
4662
+ isFetching: false;
4663
+ isSuccess: false;
4664
+ isError: false;
4665
+ }, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
4666
+ isError: true;
4667
+ } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
4668
+ audience?: Array<string>;
4669
+ category?: Array<string>;
4670
+ createdBy?: string;
4671
+ featured?: boolean;
4672
+ id?: number;
4673
+ includeMainPublicMentors?: boolean;
4674
+ limit?: number;
4675
+ llm?: Array<string>;
4676
+ offset?: number;
4677
+ orderBy?: string;
4678
+ orderDirection?: string;
4679
+ query?: string;
4680
+ tags?: Array<string>;
4681
+ tenant?: string;
4682
+ uniqueId?: string;
4683
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
4684
+ currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
4685
+ isUninitialized: false;
4686
+ isLoading: false;
4687
+ isFetching: false;
4688
+ isSuccess: false;
4689
+ isError: false;
4690
+ }, "error">>)>> & {
4691
+ status: import("@reduxjs/toolkit/query").QueryStatus;
4692
+ }) => R) | undefined;
4693
+ }) | undefined) => [R][R extends any ? 0 : never] & {
4694
+ refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
4695
+ audience?: Array<string>;
4696
+ category?: Array<string>;
4697
+ createdBy?: string;
4698
+ featured?: boolean;
4699
+ id?: number;
4700
+ includeMainPublicMentors?: boolean;
4701
+ limit?: number;
4702
+ llm?: Array<string>;
4703
+ offset?: number;
4704
+ orderBy?: string;
4705
+ orderDirection?: string;
4706
+ query?: string;
4707
+ tags?: Array<string>;
4708
+ tenant?: string;
4709
+ uniqueId?: string;
4710
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>>;
4711
+ }, useLazyGetPublicMentorsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
4712
+ status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
4713
+ originalArgs?: undefined | undefined;
4714
+ data?: undefined | undefined;
4715
+ error?: undefined | undefined;
4716
+ requestId?: undefined | undefined;
4717
+ endpointName?: string | undefined;
4718
+ startedTimeStamp?: undefined | undefined;
4719
+ fulfilledTimeStamp?: undefined | undefined;
4720
+ } & {
4721
+ currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
4722
+ isUninitialized: false;
4723
+ isLoading: false;
4724
+ isFetching: false;
4725
+ isSuccess: false;
4726
+ isError: false;
4727
+ }, "isUninitialized"> & {
4728
+ isUninitialized: true;
4729
+ }) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
4730
+ audience?: Array<string>;
4731
+ category?: Array<string>;
4732
+ createdBy?: string;
4733
+ featured?: boolean;
4734
+ id?: number;
4735
+ includeMainPublicMentors?: boolean;
4736
+ limit?: number;
4737
+ llm?: Array<string>;
4738
+ offset?: number;
4739
+ orderBy?: string;
4740
+ orderDirection?: string;
4741
+ query?: string;
4742
+ tags?: Array<string>;
4743
+ tenant?: string;
4744
+ uniqueId?: string;
4745
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
4746
+ currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
4747
+ isUninitialized: false;
4748
+ isLoading: false;
4749
+ isFetching: false;
4750
+ isSuccess: false;
4751
+ isError: false;
4752
+ }, {
4753
+ isLoading: true;
4754
+ isFetching: boolean;
4755
+ data: undefined;
4756
+ } | ({
4757
+ isSuccess: true;
4758
+ isFetching: true;
4759
+ error: undefined;
4760
+ } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
4761
+ audience?: Array<string>;
4762
+ category?: Array<string>;
4763
+ createdBy?: string;
4764
+ featured?: boolean;
4765
+ id?: number;
4766
+ includeMainPublicMentors?: boolean;
4767
+ limit?: number;
4768
+ llm?: Array<string>;
4769
+ offset?: number;
4770
+ orderBy?: string;
4771
+ orderDirection?: string;
4772
+ query?: string;
4773
+ tags?: Array<string>;
4774
+ tenant?: string;
4775
+ uniqueId?: string;
4776
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
4777
+ currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
4778
+ isUninitialized: false;
4779
+ isLoading: false;
4780
+ isFetching: false;
4781
+ isSuccess: false;
4782
+ isError: false;
4783
+ }, "data" | "fulfilledTimeStamp">>) | ({
4784
+ isSuccess: true;
4785
+ isFetching: false;
4786
+ error: undefined;
4787
+ } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
4788
+ audience?: Array<string>;
4789
+ category?: Array<string>;
4790
+ createdBy?: string;
4791
+ featured?: boolean;
4792
+ id?: number;
4793
+ includeMainPublicMentors?: boolean;
4794
+ limit?: number;
4795
+ llm?: Array<string>;
4796
+ offset?: number;
4797
+ orderBy?: string;
4798
+ orderDirection?: string;
4799
+ query?: string;
4800
+ tags?: Array<string>;
4801
+ tenant?: string;
4802
+ uniqueId?: string;
4803
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
4804
+ currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
4805
+ isUninitialized: false;
4806
+ isLoading: false;
4807
+ isFetching: false;
4808
+ isSuccess: false;
4809
+ isError: false;
4810
+ }, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
4811
+ isError: true;
4812
+ } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
4813
+ audience?: Array<string>;
4814
+ category?: Array<string>;
4815
+ createdBy?: string;
4816
+ featured?: boolean;
4817
+ id?: number;
4818
+ includeMainPublicMentors?: boolean;
4819
+ limit?: number;
4820
+ llm?: Array<string>;
4821
+ offset?: number;
4822
+ orderBy?: string;
4823
+ orderDirection?: string;
4824
+ query?: string;
4825
+ tags?: Array<string>;
4826
+ tenant?: string;
4827
+ uniqueId?: string;
4828
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
4829
+ currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
4830
+ isUninitialized: false;
4831
+ isLoading: false;
4832
+ isFetching: false;
4833
+ isSuccess: false;
4834
+ isError: false;
4835
+ }, "error">>)>> & {
4836
+ status: import("@reduxjs/toolkit/query").QueryStatus;
4837
+ }>(options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & Omit<{
4838
+ skip?: boolean;
4839
+ selectFromResult?: ((state: import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
4840
+ status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
4841
+ originalArgs?: undefined | undefined;
4842
+ data?: undefined | undefined;
4843
+ error?: undefined | undefined;
4844
+ requestId?: undefined | undefined;
4845
+ endpointName?: string | undefined;
4846
+ startedTimeStamp?: undefined | undefined;
4847
+ fulfilledTimeStamp?: undefined | undefined;
4848
+ } & {
4849
+ currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
4850
+ isUninitialized: false;
4851
+ isLoading: false;
4852
+ isFetching: false;
4853
+ isSuccess: false;
4854
+ isError: false;
4855
+ }, "isUninitialized"> & {
4856
+ isUninitialized: true;
4857
+ }) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
4858
+ audience?: Array<string>;
4859
+ category?: Array<string>;
4860
+ createdBy?: string;
4861
+ featured?: boolean;
4862
+ id?: number;
4863
+ includeMainPublicMentors?: boolean;
4864
+ limit?: number;
4865
+ llm?: Array<string>;
4866
+ offset?: number;
4867
+ orderBy?: string;
4868
+ orderDirection?: string;
4869
+ query?: string;
4870
+ tags?: Array<string>;
4871
+ tenant?: string;
4872
+ uniqueId?: string;
4873
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
4874
+ currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
4875
+ isUninitialized: false;
4876
+ isLoading: false;
4877
+ isFetching: false;
4878
+ isSuccess: false;
4879
+ isError: false;
4880
+ }, {
4881
+ isLoading: true;
4882
+ isFetching: boolean;
4883
+ data: undefined;
4884
+ } | ({
4885
+ isSuccess: true;
4886
+ isFetching: true;
4887
+ error: undefined;
4888
+ } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
4889
+ audience?: Array<string>;
4890
+ category?: Array<string>;
4891
+ createdBy?: string;
4892
+ featured?: boolean;
4893
+ id?: number;
4894
+ includeMainPublicMentors?: boolean;
4895
+ limit?: number;
4896
+ llm?: Array<string>;
4897
+ offset?: number;
4898
+ orderBy?: string;
4899
+ orderDirection?: string;
4900
+ query?: string;
4901
+ tags?: Array<string>;
4902
+ tenant?: string;
4903
+ uniqueId?: string;
4904
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
4905
+ currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
4906
+ isUninitialized: false;
4907
+ isLoading: false;
4908
+ isFetching: false;
4909
+ isSuccess: false;
4910
+ isError: false;
4911
+ }, "data" | "fulfilledTimeStamp">>) | ({
4912
+ isSuccess: true;
4913
+ isFetching: false;
4914
+ error: undefined;
4915
+ } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
4916
+ audience?: Array<string>;
4917
+ category?: Array<string>;
4918
+ createdBy?: string;
4919
+ featured?: boolean;
4920
+ id?: number;
4921
+ includeMainPublicMentors?: boolean;
4922
+ limit?: number;
4923
+ llm?: Array<string>;
4924
+ offset?: number;
4925
+ orderBy?: string;
4926
+ orderDirection?: string;
4927
+ query?: string;
4928
+ tags?: Array<string>;
4929
+ tenant?: string;
4930
+ uniqueId?: string;
4931
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
4932
+ currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
4933
+ isUninitialized: false;
4934
+ isLoading: false;
4935
+ isFetching: false;
4936
+ isSuccess: false;
4937
+ isError: false;
4938
+ }, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
4939
+ isError: true;
4940
+ } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
4941
+ audience?: Array<string>;
4942
+ category?: Array<string>;
4943
+ createdBy?: string;
4944
+ featured?: boolean;
4945
+ id?: number;
4946
+ includeMainPublicMentors?: boolean;
4947
+ limit?: number;
4948
+ llm?: Array<string>;
4949
+ offset?: number;
4950
+ orderBy?: string;
4951
+ orderDirection?: string;
4952
+ query?: string;
4953
+ tags?: Array<string>;
4954
+ tenant?: string;
4955
+ uniqueId?: string;
4956
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
4957
+ currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
4958
+ isUninitialized: false;
4959
+ isLoading: false;
4960
+ isFetching: false;
4961
+ isSuccess: false;
4962
+ isError: false;
4963
+ }, "error">>)>> & {
4964
+ status: import("@reduxjs/toolkit/query").QueryStatus;
4965
+ }) => R) | undefined;
4966
+ }, "skip">) | undefined) => [(arg: {
4967
+ audience?: Array<string>;
4968
+ category?: Array<string>;
4969
+ createdBy?: string;
4970
+ featured?: boolean;
4971
+ id?: number;
4972
+ includeMainPublicMentors?: boolean;
4973
+ limit?: number;
4974
+ llm?: Array<string>;
4975
+ offset?: number;
4976
+ orderBy?: string;
4977
+ orderDirection?: string;
4978
+ query?: string;
4979
+ tags?: Array<string>;
4980
+ tenant?: string;
4981
+ uniqueId?: string;
4982
+ }, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
4983
+ audience?: Array<string>;
4984
+ category?: Array<string>;
4985
+ createdBy?: string;
4986
+ featured?: boolean;
4987
+ id?: number;
4988
+ includeMainPublicMentors?: boolean;
4989
+ limit?: number;
4990
+ llm?: Array<string>;
4991
+ offset?: number;
4992
+ orderBy?: string;
4993
+ orderDirection?: string;
4994
+ query?: string;
4995
+ tags?: Array<string>;
4996
+ tenant?: string;
4997
+ uniqueId?: string;
4998
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>>, [R][R extends any ? 0 : never] & {
4999
+ reset: () => void;
5000
+ }, {
5001
+ lastArg: {
5002
+ audience?: Array<string>;
5003
+ category?: Array<string>;
5004
+ createdBy?: string;
5005
+ featured?: boolean;
5006
+ id?: number;
5007
+ includeMainPublicMentors?: boolean;
5008
+ limit?: number;
5009
+ llm?: Array<string>;
5010
+ offset?: number;
5011
+ orderBy?: string;
5012
+ orderDirection?: string;
5013
+ query?: string;
5014
+ tags?: Array<string>;
5015
+ tenant?: string;
5016
+ uniqueId?: string;
5017
+ };
5018
+ }], useGetRecentlyAccessedMentorsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
5019
+ status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
5020
+ originalArgs?: undefined | undefined;
5021
+ data?: undefined | undefined;
5022
+ error?: undefined | undefined;
5023
+ requestId?: undefined | undefined;
5024
+ endpointName?: string | undefined;
5025
+ startedTimeStamp?: undefined | undefined;
5026
+ fulfilledTimeStamp?: undefined | undefined;
5027
+ } & {
5028
+ currentData?: import("@iblai/iblai-api").RecentlyAccessedMentor[] | undefined;
5029
+ isUninitialized: false;
5030
+ isLoading: false;
5031
+ isFetching: false;
5032
+ isSuccess: false;
5033
+ isError: false;
5034
+ }, "isUninitialized"> & {
5035
+ isUninitialized: true;
5036
+ }) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
5037
+ org: string;
5038
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").RecentlyAccessedMentor[], "mentorApiSlice", any>> & {
5039
+ currentData?: import("@iblai/iblai-api").RecentlyAccessedMentor[] | undefined;
5040
+ isUninitialized: false;
5041
+ isLoading: false;
5042
+ isFetching: false;
5043
+ isSuccess: false;
5044
+ isError: false;
5045
+ }, {
5046
+ isLoading: true;
5047
+ isFetching: boolean;
5048
+ data: undefined;
5049
+ } | ({
5050
+ isSuccess: true;
5051
+ isFetching: true;
5052
+ error: undefined;
5053
+ } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
5054
+ org: string;
5055
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").RecentlyAccessedMentor[], "mentorApiSlice", any>> & {
5056
+ currentData?: import("@iblai/iblai-api").RecentlyAccessedMentor[] | undefined;
5057
+ isUninitialized: false;
5058
+ isLoading: false;
5059
+ isFetching: false;
5060
+ isSuccess: false;
5061
+ isError: false;
5062
+ }, "data" | "fulfilledTimeStamp">>) | ({
5063
+ isSuccess: true;
5064
+ isFetching: false;
5065
+ error: undefined;
5066
+ } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
5067
+ org: string;
5068
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").RecentlyAccessedMentor[], "mentorApiSlice", any>> & {
5069
+ currentData?: import("@iblai/iblai-api").RecentlyAccessedMentor[] | undefined;
5070
+ isUninitialized: false;
5071
+ isLoading: false;
5072
+ isFetching: false;
5073
+ isSuccess: false;
5074
+ isError: false;
5075
+ }, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
5076
+ isError: true;
5077
+ } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
5078
+ org: string;
5079
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").RecentlyAccessedMentor[], "mentorApiSlice", any>> & {
5080
+ currentData?: import("@iblai/iblai-api").RecentlyAccessedMentor[] | undefined;
5081
+ isUninitialized: false;
5082
+ isLoading: false;
5083
+ isFetching: false;
5084
+ isSuccess: false;
5085
+ isError: false;
5086
+ }, "error">>)>> & {
5087
+ status: import("@reduxjs/toolkit/query").QueryStatus;
5088
+ }>(arg: {
5089
+ org: string;
5090
+ } | typeof import("@reduxjs/toolkit/query").skipToken, options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & {
5091
+ skip?: boolean;
5092
+ refetchOnMountOrArgChange?: boolean | number;
5093
+ } & {
5094
+ skip?: boolean;
5095
+ selectFromResult?: ((state: import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
5096
+ status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
5097
+ originalArgs?: undefined | undefined;
5098
+ data?: undefined | undefined;
5099
+ error?: undefined | undefined;
5100
+ requestId?: undefined | undefined;
5101
+ endpointName?: string | undefined;
5102
+ startedTimeStamp?: undefined | undefined;
5103
+ fulfilledTimeStamp?: undefined | undefined;
5104
+ } & {
5105
+ currentData?: import("@iblai/iblai-api").RecentlyAccessedMentor[] | undefined;
5106
+ isUninitialized: false;
5107
+ isLoading: false;
5108
+ isFetching: false;
5109
+ isSuccess: false;
5110
+ isError: false;
5111
+ }, "isUninitialized"> & {
5112
+ isUninitialized: true;
5113
+ }) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
5114
+ org: string;
5115
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").RecentlyAccessedMentor[], "mentorApiSlice", any>> & {
5116
+ currentData?: import("@iblai/iblai-api").RecentlyAccessedMentor[] | undefined;
5117
+ isUninitialized: false;
5118
+ isLoading: false;
5119
+ isFetching: false;
5120
+ isSuccess: false;
5121
+ isError: false;
5122
+ }, {
5123
+ isLoading: true;
5124
+ isFetching: boolean;
5125
+ data: undefined;
5126
+ } | ({
5127
+ isSuccess: true;
5128
+ isFetching: true;
5129
+ error: undefined;
5130
+ } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
5131
+ org: string;
5132
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").RecentlyAccessedMentor[], "mentorApiSlice", any>> & {
5133
+ currentData?: import("@iblai/iblai-api").RecentlyAccessedMentor[] | undefined;
5134
+ isUninitialized: false;
5135
+ isLoading: false;
5136
+ isFetching: false;
5137
+ isSuccess: false;
5138
+ isError: false;
5139
+ }, "data" | "fulfilledTimeStamp">>) | ({
5140
+ isSuccess: true;
5141
+ isFetching: false;
5142
+ error: undefined;
5143
+ } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
5144
+ org: string;
5145
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").RecentlyAccessedMentor[], "mentorApiSlice", any>> & {
5146
+ currentData?: import("@iblai/iblai-api").RecentlyAccessedMentor[] | undefined;
5147
+ isUninitialized: false;
5148
+ isLoading: false;
5149
+ isFetching: false;
5150
+ isSuccess: false;
5151
+ isError: false;
5152
+ }, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
5153
+ isError: true;
5154
+ } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
5155
+ org: string;
5156
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").RecentlyAccessedMentor[], "mentorApiSlice", any>> & {
5157
+ currentData?: import("@iblai/iblai-api").RecentlyAccessedMentor[] | undefined;
5158
+ isUninitialized: false;
5159
+ isLoading: false;
5160
+ isFetching: false;
5161
+ isSuccess: false;
5162
+ isError: false;
5163
+ }, "error">>)>> & {
5164
+ status: import("@reduxjs/toolkit/query").QueryStatus;
5165
+ }) => R) | undefined;
5166
+ }) | undefined) => [R][R extends any ? 0 : never] & {
5167
+ refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
5168
+ org: string;
5169
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").RecentlyAccessedMentor[], "mentorApiSlice", any>>;
5170
+ }, useLazyGetRecentlyAccessedMentorsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
5171
+ status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
5172
+ originalArgs?: undefined | undefined;
5173
+ data?: undefined | undefined;
5174
+ error?: undefined | undefined;
5175
+ requestId?: undefined | undefined;
5176
+ endpointName?: string | undefined;
5177
+ startedTimeStamp?: undefined | undefined;
5178
+ fulfilledTimeStamp?: undefined | undefined;
5179
+ } & {
5180
+ currentData?: import("@iblai/iblai-api").RecentlyAccessedMentor[] | undefined;
5181
+ isUninitialized: false;
5182
+ isLoading: false;
5183
+ isFetching: false;
5184
+ isSuccess: false;
5185
+ isError: false;
5186
+ }, "isUninitialized"> & {
5187
+ isUninitialized: true;
5188
+ }) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
5189
+ org: string;
5190
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").RecentlyAccessedMentor[], "mentorApiSlice", any>> & {
5191
+ currentData?: import("@iblai/iblai-api").RecentlyAccessedMentor[] | undefined;
5192
+ isUninitialized: false;
5193
+ isLoading: false;
5194
+ isFetching: false;
5195
+ isSuccess: false;
5196
+ isError: false;
5197
+ }, {
5198
+ isLoading: true;
5199
+ isFetching: boolean;
5200
+ data: undefined;
5201
+ } | ({
5202
+ isSuccess: true;
5203
+ isFetching: true;
5204
+ error: undefined;
5205
+ } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
5206
+ org: string;
5207
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").RecentlyAccessedMentor[], "mentorApiSlice", any>> & {
5208
+ currentData?: import("@iblai/iblai-api").RecentlyAccessedMentor[] | undefined;
5209
+ isUninitialized: false;
5210
+ isLoading: false;
5211
+ isFetching: false;
5212
+ isSuccess: false;
5213
+ isError: false;
5214
+ }, "data" | "fulfilledTimeStamp">>) | ({
5215
+ isSuccess: true;
5216
+ isFetching: false;
5217
+ error: undefined;
5218
+ } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
5219
+ org: string;
5220
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").RecentlyAccessedMentor[], "mentorApiSlice", any>> & {
5221
+ currentData?: import("@iblai/iblai-api").RecentlyAccessedMentor[] | undefined;
5222
+ isUninitialized: false;
5223
+ isLoading: false;
5224
+ isFetching: false;
5225
+ isSuccess: false;
5226
+ isError: false;
5227
+ }, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
5228
+ isError: true;
5229
+ } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
5230
+ org: string;
5231
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").RecentlyAccessedMentor[], "mentorApiSlice", any>> & {
5232
+ currentData?: import("@iblai/iblai-api").RecentlyAccessedMentor[] | undefined;
5233
+ isUninitialized: false;
5234
+ isLoading: false;
5235
+ isFetching: false;
5236
+ isSuccess: false;
5237
+ isError: false;
5238
+ }, "error">>)>> & {
5239
+ status: import("@reduxjs/toolkit/query").QueryStatus;
5240
+ }>(options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & Omit<{
5241
+ skip?: boolean;
5242
+ selectFromResult?: ((state: import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
5243
+ status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
5244
+ originalArgs?: undefined | undefined;
5245
+ data?: undefined | undefined;
5246
+ error?: undefined | undefined;
5247
+ requestId?: undefined | undefined;
5248
+ endpointName?: string | undefined;
5249
+ startedTimeStamp?: undefined | undefined;
5250
+ fulfilledTimeStamp?: undefined | undefined;
5251
+ } & {
5252
+ currentData?: import("@iblai/iblai-api").RecentlyAccessedMentor[] | undefined;
5253
+ isUninitialized: false;
5254
+ isLoading: false;
5255
+ isFetching: false;
5256
+ isSuccess: false;
5257
+ isError: false;
5258
+ }, "isUninitialized"> & {
5259
+ isUninitialized: true;
5260
+ }) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
5261
+ org: string;
5262
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").RecentlyAccessedMentor[], "mentorApiSlice", any>> & {
5263
+ currentData?: import("@iblai/iblai-api").RecentlyAccessedMentor[] | undefined;
5264
+ isUninitialized: false;
5265
+ isLoading: false;
5266
+ isFetching: false;
5267
+ isSuccess: false;
5268
+ isError: false;
5269
+ }, {
5270
+ isLoading: true;
5271
+ isFetching: boolean;
5272
+ data: undefined;
5273
+ } | ({
5274
+ isSuccess: true;
5275
+ isFetching: true;
5276
+ error: undefined;
5277
+ } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
5278
+ org: string;
5279
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").RecentlyAccessedMentor[], "mentorApiSlice", any>> & {
5280
+ currentData?: import("@iblai/iblai-api").RecentlyAccessedMentor[] | undefined;
5281
+ isUninitialized: false;
5282
+ isLoading: false;
5283
+ isFetching: false;
5284
+ isSuccess: false;
5285
+ isError: false;
5286
+ }, "data" | "fulfilledTimeStamp">>) | ({
5287
+ isSuccess: true;
5288
+ isFetching: false;
5289
+ error: undefined;
5290
+ } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
5291
+ org: string;
5292
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").RecentlyAccessedMentor[], "mentorApiSlice", any>> & {
5293
+ currentData?: import("@iblai/iblai-api").RecentlyAccessedMentor[] | undefined;
5294
+ isUninitialized: false;
5295
+ isLoading: false;
5296
+ isFetching: false;
5297
+ isSuccess: false;
5298
+ isError: false;
5299
+ }, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
5300
+ isError: true;
5301
+ } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
5302
+ org: string;
5303
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").RecentlyAccessedMentor[], "mentorApiSlice", any>> & {
5304
+ currentData?: import("@iblai/iblai-api").RecentlyAccessedMentor[] | undefined;
5305
+ isUninitialized: false;
5306
+ isLoading: false;
5307
+ isFetching: false;
5308
+ isSuccess: false;
5309
+ isError: false;
5310
+ }, "error">>)>> & {
5311
+ status: import("@reduxjs/toolkit/query").QueryStatus;
5312
+ }) => R) | undefined;
5313
+ }, "skip">) | undefined) => [(arg: {
5314
+ org: string;
5315
+ }, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
5316
+ org: string;
5317
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").RecentlyAccessedMentor[], "mentorApiSlice", any>>, [R][R extends any ? 0 : never] & {
5318
+ reset: () => void;
5319
+ }, {
5320
+ lastArg: {
5321
+ org: string;
5322
+ };
5323
+ }], useGetModerationLogsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
5324
+ status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
5325
+ originalArgs?: undefined | undefined;
5326
+ data?: undefined | undefined;
5327
+ error?: undefined | undefined;
5328
+ requestId?: undefined | undefined;
5329
+ endpointName?: string | undefined;
5330
+ startedTimeStamp?: undefined | undefined;
5331
+ fulfilledTimeStamp?: undefined | undefined;
5332
+ } & {
5333
+ currentData?: import("@iblai/iblai-api").PaginatedModerationLogList | undefined;
5334
+ isUninitialized: false;
5335
+ isLoading: false;
5336
+ isFetching: false;
5337
+ isSuccess: false;
5338
+ isError: false;
5339
+ }, "isUninitialized"> & {
5340
+ isUninitialized: true;
5341
+ }) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
5342
+ org: string;
5343
+ mentor?: number;
5344
+ ordering?: string;
5345
+ page?: number;
5346
+ pageSize?: number;
5347
+ platformKey?: string;
5348
+ search?: string;
5349
+ targetSystem?: "Moderation System" | "Safety System";
5350
+ username?: string;
5351
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").PaginatedModerationLogList, "mentorApiSlice", any>> & {
5352
+ currentData?: import("@iblai/iblai-api").PaginatedModerationLogList | undefined;
5353
+ isUninitialized: false;
5354
+ isLoading: false;
5355
+ isFetching: false;
5356
+ isSuccess: false;
5357
+ isError: false;
5358
+ }, {
5359
+ isLoading: true;
5360
+ isFetching: boolean;
5361
+ data: undefined;
5362
+ } | ({
5363
+ isSuccess: true;
5364
+ isFetching: true;
5365
+ error: undefined;
5366
+ } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
5367
+ org: string;
5368
+ mentor?: number;
5369
+ ordering?: string;
5370
+ page?: number;
5371
+ pageSize?: number;
5372
+ platformKey?: string;
5373
+ search?: string;
5374
+ targetSystem?: "Moderation System" | "Safety System";
5375
+ username?: string;
5376
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").PaginatedModerationLogList, "mentorApiSlice", any>> & {
5377
+ currentData?: import("@iblai/iblai-api").PaginatedModerationLogList | undefined;
5378
+ isUninitialized: false;
5379
+ isLoading: false;
5380
+ isFetching: false;
5381
+ isSuccess: false;
5382
+ isError: false;
5383
+ }, "data" | "fulfilledTimeStamp">>) | ({
5384
+ isSuccess: true;
5385
+ isFetching: false;
5386
+ error: undefined;
5387
+ } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
5388
+ org: string;
5389
+ mentor?: number;
5390
+ ordering?: string;
5391
+ page?: number;
5392
+ pageSize?: number;
5393
+ platformKey?: string;
5394
+ search?: string;
5395
+ targetSystem?: "Moderation System" | "Safety System";
5396
+ username?: string;
5397
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").PaginatedModerationLogList, "mentorApiSlice", any>> & {
5398
+ currentData?: import("@iblai/iblai-api").PaginatedModerationLogList | undefined;
5399
+ isUninitialized: false;
5400
+ isLoading: false;
5401
+ isFetching: false;
5402
+ isSuccess: false;
5403
+ isError: false;
5404
+ }, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
5405
+ isError: true;
5406
+ } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
5407
+ org: string;
5408
+ mentor?: number;
5409
+ ordering?: string;
5410
+ page?: number;
5411
+ pageSize?: number;
5412
+ platformKey?: string;
5413
+ search?: string;
5414
+ targetSystem?: "Moderation System" | "Safety System";
5415
+ username?: string;
5416
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").PaginatedModerationLogList, "mentorApiSlice", any>> & {
5417
+ currentData?: import("@iblai/iblai-api").PaginatedModerationLogList | undefined;
5418
+ isUninitialized: false;
5419
+ isLoading: false;
5420
+ isFetching: false;
5421
+ isSuccess: false;
5422
+ isError: false;
5423
+ }, "error">>)>> & {
5424
+ status: import("@reduxjs/toolkit/query").QueryStatus;
5425
+ }>(arg: {
5426
+ org: string;
5427
+ mentor?: number;
5428
+ ordering?: string;
5429
+ page?: number;
5430
+ pageSize?: number;
5431
+ platformKey?: string;
5432
+ search?: string;
5433
+ targetSystem?: "Moderation System" | "Safety System";
5434
+ username?: string;
5435
+ } | typeof import("@reduxjs/toolkit/query").skipToken, options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & {
5436
+ skip?: boolean;
5437
+ refetchOnMountOrArgChange?: boolean | number;
5438
+ } & {
5439
+ skip?: boolean;
5440
+ selectFromResult?: ((state: import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
5441
+ status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
5442
+ originalArgs?: undefined | undefined;
5443
+ data?: undefined | undefined;
5444
+ error?: undefined | undefined;
5445
+ requestId?: undefined | undefined;
5446
+ endpointName?: string | undefined;
5447
+ startedTimeStamp?: undefined | undefined;
5448
+ fulfilledTimeStamp?: undefined | undefined;
5449
+ } & {
5450
+ currentData?: import("@iblai/iblai-api").PaginatedModerationLogList | undefined;
5451
+ isUninitialized: false;
5452
+ isLoading: false;
5453
+ isFetching: false;
5454
+ isSuccess: false;
5455
+ isError: false;
5456
+ }, "isUninitialized"> & {
5457
+ isUninitialized: true;
5458
+ }) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
5459
+ org: string;
5460
+ mentor?: number;
5461
+ ordering?: string;
5462
+ page?: number;
5463
+ pageSize?: number;
5464
+ platformKey?: string;
5465
+ search?: string;
5466
+ targetSystem?: "Moderation System" | "Safety System";
5467
+ username?: string;
5468
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").PaginatedModerationLogList, "mentorApiSlice", any>> & {
5469
+ currentData?: import("@iblai/iblai-api").PaginatedModerationLogList | undefined;
5470
+ isUninitialized: false;
5471
+ isLoading: false;
5472
+ isFetching: false;
5473
+ isSuccess: false;
5474
+ isError: false;
5475
+ }, {
5476
+ isLoading: true;
5477
+ isFetching: boolean;
5478
+ data: undefined;
5479
+ } | ({
5480
+ isSuccess: true;
5481
+ isFetching: true;
5482
+ error: undefined;
5483
+ } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
5484
+ org: string;
5485
+ mentor?: number;
5486
+ ordering?: string;
5487
+ page?: number;
5488
+ pageSize?: number;
5489
+ platformKey?: string;
5490
+ search?: string;
5491
+ targetSystem?: "Moderation System" | "Safety System";
5492
+ username?: string;
5493
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").PaginatedModerationLogList, "mentorApiSlice", any>> & {
5494
+ currentData?: import("@iblai/iblai-api").PaginatedModerationLogList | undefined;
5495
+ isUninitialized: false;
5496
+ isLoading: false;
5497
+ isFetching: false;
5498
+ isSuccess: false;
5499
+ isError: false;
5500
+ }, "data" | "fulfilledTimeStamp">>) | ({
5501
+ isSuccess: true;
5502
+ isFetching: false;
5503
+ error: undefined;
5504
+ } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
5505
+ org: string;
5506
+ mentor?: number;
5507
+ ordering?: string;
5508
+ page?: number;
5509
+ pageSize?: number;
5510
+ platformKey?: string;
5511
+ search?: string;
5512
+ targetSystem?: "Moderation System" | "Safety System";
5513
+ username?: string;
5514
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").PaginatedModerationLogList, "mentorApiSlice", any>> & {
5515
+ currentData?: import("@iblai/iblai-api").PaginatedModerationLogList | undefined;
5516
+ isUninitialized: false;
5517
+ isLoading: false;
5518
+ isFetching: false;
5519
+ isSuccess: false;
5520
+ isError: false;
5521
+ }, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
5522
+ isError: true;
5523
+ } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
5524
+ org: string;
5525
+ mentor?: number;
5526
+ ordering?: string;
5527
+ page?: number;
5528
+ pageSize?: number;
5529
+ platformKey?: string;
5530
+ search?: string;
5531
+ targetSystem?: "Moderation System" | "Safety System";
5532
+ username?: string;
5533
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").PaginatedModerationLogList, "mentorApiSlice", any>> & {
5534
+ currentData?: import("@iblai/iblai-api").PaginatedModerationLogList | undefined;
5535
+ isUninitialized: false;
5536
+ isLoading: false;
5537
+ isFetching: false;
5538
+ isSuccess: false;
5539
+ isError: false;
5540
+ }, "error">>)>> & {
5541
+ status: import("@reduxjs/toolkit/query").QueryStatus;
5542
+ }) => R) | undefined;
5543
+ }) | undefined) => [R][R extends any ? 0 : never] & {
5544
+ refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
5545
+ org: string;
5546
+ mentor?: number;
5547
+ ordering?: string;
5548
+ page?: number;
5549
+ pageSize?: number;
5550
+ platformKey?: string;
5551
+ search?: string;
5552
+ targetSystem?: "Moderation System" | "Safety System";
5553
+ username?: string;
5554
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").PaginatedModerationLogList, "mentorApiSlice", any>>;
5555
+ }, useLazyGetModerationLogsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
5556
+ status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
5557
+ originalArgs?: undefined | undefined;
5558
+ data?: undefined | undefined;
5559
+ error?: undefined | undefined;
5560
+ requestId?: undefined | undefined;
5561
+ endpointName?: string | undefined;
5562
+ startedTimeStamp?: undefined | undefined;
5563
+ fulfilledTimeStamp?: undefined | undefined;
5564
+ } & {
5565
+ currentData?: import("@iblai/iblai-api").PaginatedModerationLogList | undefined;
5566
+ isUninitialized: false;
5567
+ isLoading: false;
5568
+ isFetching: false;
5569
+ isSuccess: false;
5570
+ isError: false;
5571
+ }, "isUninitialized"> & {
5572
+ isUninitialized: true;
5573
+ }) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
5574
+ org: string;
5575
+ mentor?: number;
5576
+ ordering?: string;
5577
+ page?: number;
5578
+ pageSize?: number;
5579
+ platformKey?: string;
5580
+ search?: string;
5581
+ targetSystem?: "Moderation System" | "Safety System";
5582
+ username?: string;
5583
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").PaginatedModerationLogList, "mentorApiSlice", any>> & {
5584
+ currentData?: import("@iblai/iblai-api").PaginatedModerationLogList | undefined;
5585
+ isUninitialized: false;
5586
+ isLoading: false;
5587
+ isFetching: false;
5588
+ isSuccess: false;
5589
+ isError: false;
5590
+ }, {
5591
+ isLoading: true;
5592
+ isFetching: boolean;
5593
+ data: undefined;
5594
+ } | ({
5595
+ isSuccess: true;
5596
+ isFetching: true;
5597
+ error: undefined;
5598
+ } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
5599
+ org: string;
5600
+ mentor?: number;
5601
+ ordering?: string;
5602
+ page?: number;
5603
+ pageSize?: number;
5604
+ platformKey?: string;
5605
+ search?: string;
5606
+ targetSystem?: "Moderation System" | "Safety System";
5607
+ username?: string;
5608
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").PaginatedModerationLogList, "mentorApiSlice", any>> & {
5609
+ currentData?: import("@iblai/iblai-api").PaginatedModerationLogList | undefined;
5610
+ isUninitialized: false;
5611
+ isLoading: false;
5612
+ isFetching: false;
5613
+ isSuccess: false;
5614
+ isError: false;
5615
+ }, "data" | "fulfilledTimeStamp">>) | ({
5616
+ isSuccess: true;
5617
+ isFetching: false;
5618
+ error: undefined;
5619
+ } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
5620
+ org: string;
5621
+ mentor?: number;
5622
+ ordering?: string;
5623
+ page?: number;
5624
+ pageSize?: number;
5625
+ platformKey?: string;
5626
+ search?: string;
5627
+ targetSystem?: "Moderation System" | "Safety System";
5628
+ username?: string;
5629
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").PaginatedModerationLogList, "mentorApiSlice", any>> & {
5630
+ currentData?: import("@iblai/iblai-api").PaginatedModerationLogList | undefined;
5631
+ isUninitialized: false;
5632
+ isLoading: false;
5633
+ isFetching: false;
5634
+ isSuccess: false;
5635
+ isError: false;
5636
+ }, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
5637
+ isError: true;
5638
+ } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
5639
+ org: string;
5640
+ mentor?: number;
5641
+ ordering?: string;
5642
+ page?: number;
5643
+ pageSize?: number;
5644
+ platformKey?: string;
5645
+ search?: string;
5646
+ targetSystem?: "Moderation System" | "Safety System";
5647
+ username?: string;
5648
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").PaginatedModerationLogList, "mentorApiSlice", any>> & {
5649
+ currentData?: import("@iblai/iblai-api").PaginatedModerationLogList | undefined;
5650
+ isUninitialized: false;
5651
+ isLoading: false;
5652
+ isFetching: false;
5653
+ isSuccess: false;
5654
+ isError: false;
5655
+ }, "error">>)>> & {
5656
+ status: import("@reduxjs/toolkit/query").QueryStatus;
5657
+ }>(options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & Omit<{
5658
+ skip?: boolean;
5659
+ selectFromResult?: ((state: import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
5660
+ status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
5661
+ originalArgs?: undefined | undefined;
5662
+ data?: undefined | undefined;
5663
+ error?: undefined | undefined;
5664
+ requestId?: undefined | undefined;
5665
+ endpointName?: string | undefined;
5666
+ startedTimeStamp?: undefined | undefined;
5667
+ fulfilledTimeStamp?: undefined | undefined;
5668
+ } & {
5669
+ currentData?: import("@iblai/iblai-api").PaginatedModerationLogList | undefined;
5670
+ isUninitialized: false;
5671
+ isLoading: false;
5672
+ isFetching: false;
5673
+ isSuccess: false;
5674
+ isError: false;
5675
+ }, "isUninitialized"> & {
5676
+ isUninitialized: true;
5677
+ }) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
5678
+ org: string;
5679
+ mentor?: number;
5680
+ ordering?: string;
5681
+ page?: number;
5682
+ pageSize?: number;
5683
+ platformKey?: string;
5684
+ search?: string;
5685
+ targetSystem?: "Moderation System" | "Safety System";
5686
+ username?: string;
5687
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").PaginatedModerationLogList, "mentorApiSlice", any>> & {
5688
+ currentData?: import("@iblai/iblai-api").PaginatedModerationLogList | undefined;
5689
+ isUninitialized: false;
5690
+ isLoading: false;
5691
+ isFetching: false;
5692
+ isSuccess: false;
5693
+ isError: false;
5694
+ }, {
5695
+ isLoading: true;
5696
+ isFetching: boolean;
5697
+ data: undefined;
5698
+ } | ({
5699
+ isSuccess: true;
5700
+ isFetching: true;
5701
+ error: undefined;
5702
+ } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
5703
+ org: string;
5704
+ mentor?: number;
5705
+ ordering?: string;
5706
+ page?: number;
5707
+ pageSize?: number;
5708
+ platformKey?: string;
5709
+ search?: string;
5710
+ targetSystem?: "Moderation System" | "Safety System";
5711
+ username?: string;
5712
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").PaginatedModerationLogList, "mentorApiSlice", any>> & {
5713
+ currentData?: import("@iblai/iblai-api").PaginatedModerationLogList | undefined;
5714
+ isUninitialized: false;
5715
+ isLoading: false;
5716
+ isFetching: false;
5717
+ isSuccess: false;
5718
+ isError: false;
5719
+ }, "data" | "fulfilledTimeStamp">>) | ({
5720
+ isSuccess: true;
5721
+ isFetching: false;
5722
+ error: undefined;
5723
+ } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
5724
+ org: string;
5725
+ mentor?: number;
5726
+ ordering?: string;
5727
+ page?: number;
5728
+ pageSize?: number;
5729
+ platformKey?: string;
5730
+ search?: string;
5731
+ targetSystem?: "Moderation System" | "Safety System";
5732
+ username?: string;
5733
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").PaginatedModerationLogList, "mentorApiSlice", any>> & {
5734
+ currentData?: import("@iblai/iblai-api").PaginatedModerationLogList | undefined;
5735
+ isUninitialized: false;
5736
+ isLoading: false;
5737
+ isFetching: false;
5738
+ isSuccess: false;
5739
+ isError: false;
5740
+ }, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
5741
+ isError: true;
5742
+ } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
5743
+ org: string;
5744
+ mentor?: number;
5745
+ ordering?: string;
5746
+ page?: number;
5747
+ pageSize?: number;
5748
+ platformKey?: string;
5749
+ search?: string;
5750
+ targetSystem?: "Moderation System" | "Safety System";
5751
+ username?: string;
5752
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").PaginatedModerationLogList, "mentorApiSlice", any>> & {
5753
+ currentData?: import("@iblai/iblai-api").PaginatedModerationLogList | undefined;
5754
+ isUninitialized: false;
5755
+ isLoading: false;
5756
+ isFetching: false;
5757
+ isSuccess: false;
5758
+ isError: false;
5759
+ }, "error">>)>> & {
5760
+ status: import("@reduxjs/toolkit/query").QueryStatus;
5761
+ }) => R) | undefined;
5762
+ }, "skip">) | undefined) => [(arg: {
5763
+ org: string;
5764
+ mentor?: number;
5765
+ ordering?: string;
5766
+ page?: number;
5767
+ pageSize?: number;
5768
+ platformKey?: string;
5769
+ search?: string;
5770
+ targetSystem?: "Moderation System" | "Safety System";
5771
+ username?: string;
5772
+ }, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
5773
+ org: string;
5774
+ mentor?: number;
5775
+ ordering?: string;
5776
+ page?: number;
5777
+ pageSize?: number;
5778
+ platformKey?: string;
5779
+ search?: string;
5780
+ targetSystem?: "Moderation System" | "Safety System";
5781
+ username?: string;
5782
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors" | "moderationLogs", import("@iblai/iblai-api").PaginatedModerationLogList, "mentorApiSlice", any>>, [R][R extends any ? 0 : never] & {
5783
+ reset: () => void;
5784
+ }, {
5785
+ lastArg: {
5786
+ org: string;
5787
+ mentor?: number;
5788
+ ordering?: string;
5789
+ page?: number;
5790
+ pageSize?: number;
5791
+ platformKey?: string;
5792
+ search?: string;
5793
+ targetSystem?: "Moderation System" | "Safety System";
5794
+ username?: string;
5795
+ };
4298
5796
  }];