@iblai/web-utils 0.2.0 → 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (138) hide show
  1. package/dist/data-layer/src/core/index.d.ts +2 -1
  2. package/dist/data-layer/src/features/analytics/api-slice.d.ts +1879 -122
  3. package/dist/data-layer/src/features/analytics/constants.d.ts +56 -1
  4. package/dist/data-layer/src/features/analytics/types.d.ts +327 -1
  5. package/dist/data-layer/src/features/api-keys/api-slice.d.ts +59 -70
  6. package/dist/data-layer/src/features/apps/api-slice.d.ts +73 -84
  7. package/dist/data-layer/src/features/auth/api-slice.d.ts +504 -2
  8. package/dist/data-layer/src/features/auth/constants.d.ts +13 -1
  9. package/dist/data-layer/src/features/auth/types.d.ts +20 -0
  10. package/dist/data-layer/src/features/billing/api-slice.d.ts +33 -33
  11. package/dist/data-layer/src/features/career/api-slice.d.ts +2345 -180
  12. package/dist/data-layer/src/features/catalog/api-slice.d.ts +2578 -562
  13. package/dist/data-layer/src/features/chat/api-slice.d.ts +150 -150
  14. package/dist/data-layer/src/features/chat-history/api-slice.d.ts +134 -134
  15. package/dist/data-layer/src/features/core/api-slice.d.ts +3484 -75
  16. package/dist/data-layer/src/features/core/constants.d.ts +40 -0
  17. package/dist/data-layer/src/features/core/custom-api-slice.d.ts +1458 -0
  18. package/dist/data-layer/src/features/core/types.d.ts +27 -0
  19. package/dist/data-layer/src/features/credentials/api-slice.d.ts +859 -221
  20. package/dist/data-layer/src/features/custom-domain/api-slice.d.ts +602 -0
  21. package/dist/data-layer/src/features/custom-domain/constants.d.ts +20 -0
  22. package/dist/data-layer/src/features/custom-domain/types.d.ts +46 -0
  23. package/dist/data-layer/src/features/datasets/api-slice.d.ts +56 -56
  24. package/dist/data-layer/src/features/disclaimers/api-slice.d.ts +912 -0
  25. package/dist/data-layer/src/features/disclaimers/constants.d.ts +27 -0
  26. package/dist/data-layer/src/features/disclaimers/types.d.ts +67 -0
  27. package/dist/data-layer/src/features/edx-proctoring/api-slice.d.ts +590 -0
  28. package/dist/data-layer/src/features/edx-proctoring/constants.d.ts +15 -0
  29. package/dist/data-layer/src/features/edx-proctoring/types.d.ts +61 -0
  30. package/dist/data-layer/src/features/llms/api-slice.d.ts +40 -40
  31. package/dist/data-layer/src/features/memory/api-slice.d.ts +2129 -0
  32. package/dist/data-layer/src/features/memory/constants.d.ts +50 -0
  33. package/dist/data-layer/src/features/memory/types.d.ts +122 -0
  34. package/dist/data-layer/src/features/mentor/api-slice.d.ts +1176 -470
  35. package/dist/data-layer/src/features/mentor/constants.d.ts +8 -0
  36. package/dist/data-layer/src/features/mentor/custom-api-slice.d.ts +529 -1
  37. package/dist/data-layer/src/features/mentor/types.d.ts +39 -0
  38. package/dist/data-layer/src/features/mentor-categories/api-slice.d.ts +436 -40
  39. package/dist/data-layer/src/features/notifications/api-slice.d.ts +750 -96
  40. package/dist/data-layer/src/features/notifications/constants.d.ts +20 -0
  41. package/dist/data-layer/src/features/notifications/custom-api-slice.d.ts +996 -0
  42. package/dist/data-layer/src/features/notifications/types.d.ts +46 -0
  43. package/dist/data-layer/src/features/per-learner/api-slice.d.ts +118 -118
  44. package/dist/data-layer/src/features/platform/api-slice.d.ts +345 -191
  45. package/dist/data-layer/src/features/platform/constants.d.ts +17 -0
  46. package/dist/data-layer/src/features/platform/custom-api-slice.d.ts +493 -0
  47. package/dist/data-layer/src/features/platform/types.d.ts +48 -0
  48. package/dist/data-layer/src/features/projects/api-slice.d.ts +2026 -0
  49. package/dist/data-layer/src/features/projects/constants.d.ts +51 -0
  50. package/dist/data-layer/src/features/projects/types.d.ts +79 -0
  51. package/dist/data-layer/src/features/prompts/api-slice.d.ts +193 -171
  52. package/dist/data-layer/src/features/reports/api-slice.d.ts +814 -0
  53. package/dist/data-layer/src/features/search/ai-search-api-slice.d.ts +1015 -0
  54. package/dist/data-layer/src/features/search/api-slice.d.ts +59 -59
  55. package/dist/data-layer/src/features/search/constants.d.ts +31 -0
  56. package/dist/data-layer/src/features/search/types.d.ts +89 -0
  57. package/dist/data-layer/src/features/sessions/api-slice.d.ts +72 -72
  58. package/dist/data-layer/src/features/skills/api-slice.d.ts +157 -157
  59. package/dist/data-layer/src/features/stripe/api-slice.d.ts +201 -40
  60. package/dist/data-layer/src/features/stripe/constants.d.ts +5 -1
  61. package/dist/data-layer/src/features/stripe/types.d.ts +10 -0
  62. package/dist/data-layer/src/features/tenant/api-slice.d.ts +77 -86
  63. package/dist/data-layer/src/features/tenant/types.d.ts +1 -0
  64. package/dist/data-layer/src/features/tools/api-slice.d.ts +84 -40
  65. package/dist/data-layer/src/features/training-documents/api-slice.d.ts +582 -75
  66. package/dist/data-layer/src/features/user/api-slice.d.ts +124 -124
  67. package/dist/data-layer/src/features/user/constants.d.ts +3 -1
  68. package/dist/data-layer/src/features/user-invitations/api-slice.d.ts +56 -56
  69. package/dist/data-layer/src/features/utils.d.ts +8 -5
  70. package/dist/data-layer/src/index.d.ts +75 -47
  71. package/dist/data-layer/src/reducers/skills.d.ts +2 -1148
  72. package/dist/data-layer/src/services/StorageService.d.ts +1 -1
  73. package/dist/index.d.ts +1021 -5
  74. package/dist/index.esm.js +3299 -453
  75. package/dist/index.esm.js.map +1 -1
  76. package/dist/index.js +3305 -448
  77. package/dist/index.js.map +1 -1
  78. package/dist/package.json +34 -18
  79. package/dist/web-utils/src/features/chat/slice.d.ts +12 -0
  80. package/dist/web-utils/src/features/index.d.ts +1 -0
  81. package/dist/web-utils/src/features/tracking/__tests__/time-tracker.test.d.ts +1 -0
  82. package/dist/web-utils/src/features/tracking/examples.d.ts +4 -0
  83. package/dist/web-utils/src/features/tracking/index.d.ts +6 -0
  84. package/dist/web-utils/src/features/tracking/time-tracker.d.ts +29 -0
  85. package/dist/web-utils/src/features/tracking/use-time-tracker-native.d.ts +14 -0
  86. package/dist/web-utils/src/features/tracking/use-time-tracker.d.ts +14 -0
  87. package/dist/web-utils/src/hooks/chat/use-advanced-chat.d.ts +2 -2
  88. package/dist/web-utils/src/hooks/chat/use-chat-v2.d.ts +9 -1
  89. package/dist/web-utils/src/hooks/chat/use-get-chat-details.d.ts +2 -1
  90. package/dist/web-utils/src/hooks/chat/use-mentor-tools.d.ts +3 -0
  91. package/dist/web-utils/src/hooks/index.d.ts +1 -0
  92. package/dist/web-utils/src/hooks/subscription/class-subscription-flow.d.ts +6 -6
  93. package/dist/web-utils/src/hooks/subscription-v2/class-subscription-flow.d.ts +9 -8
  94. package/dist/web-utils/src/hooks/subscription-v2/use-external-pricing-plan.d.ts +1 -1
  95. package/dist/web-utils/src/hooks/tenant-metadata/use-tenant-metadata.d.ts +2 -1
  96. package/dist/web-utils/src/hooks/use-mentor-settings.d.ts +1 -0
  97. package/dist/web-utils/src/index.mobile.d.ts +10 -0
  98. package/dist/web-utils/src/index.web.d.ts +12 -0
  99. package/dist/web-utils/src/providers/auth-provider.d.ts +55 -1
  100. package/dist/web-utils/src/providers/mentor-provider.d.ts +3 -1
  101. package/dist/web-utils/src/providers/tenant-provider.d.ts +10 -5
  102. package/dist/web-utils/src/types/index.d.ts +9 -0
  103. package/dist/web-utils/src/utils/constants.d.ts +4 -0
  104. package/dist/web-utils/src/utils/helpers.d.ts +1 -0
  105. package/dist/web-utils/src/utils/platform.d.ts +7 -0
  106. package/dist/web-utils/tests/hooks/subscription/class-subscription-flow.test.d.ts +1 -0
  107. package/dist/web-utils/tests/hooks/subscription/constants.test.d.ts +1 -0
  108. package/dist/web-utils/tests/hooks/subscription/use-subscription-handler.test.d.ts +1 -0
  109. package/dist/web-utils/tests/hooks/use-day-js.test.d.ts +1 -0
  110. package/dist/web-utils/tests/setupTests.d.ts +5 -0
  111. package/dist/web-utils/tsconfig.tsbuildinfo +1 -0
  112. package/package.json +37 -22
  113. package/dist/features/chat/slice.d.ts +0 -59
  114. package/dist/features/index.d.ts +0 -1
  115. package/dist/hooks/chat/use-advanced-chat.d.ts +0 -41
  116. package/dist/hooks/chat/use-chat-v2.d.ts +0 -53
  117. package/dist/hooks/chat/use-chat.d.ts +0 -52
  118. package/dist/hooks/chat/use-get-chat-details.d.ts +0 -13
  119. package/dist/hooks/index.d.ts +0 -10
  120. package/dist/hooks/subscription/class-subscription-flow.d.ts +0 -70
  121. package/dist/hooks/subscription/constants.d.ts +0 -4
  122. package/dist/hooks/subscription/use-subscription-handler.d.ts +0 -11
  123. package/dist/hooks/subscription-v2/class-subscription-flow.d.ts +0 -62
  124. package/dist/hooks/subscription-v2/constants.d.ts +0 -5
  125. package/dist/hooks/subscription-v2/use-external-pricing-plan.d.ts +0 -7
  126. package/dist/hooks/subscription-v2/use-subscription-handler.d.ts +0 -12
  127. package/dist/hooks/use-day-js.d.ts +0 -7
  128. package/dist/providers/auth-provider.d.ts +0 -63
  129. package/dist/providers/index.d.ts +0 -3
  130. package/dist/providers/mentor-provider.d.ts +0 -40
  131. package/dist/providers/tenant-provider.d.ts +0 -60
  132. package/dist/types/chat.d.ts +0 -1
  133. package/dist/types/index.d.ts +0 -55
  134. package/dist/types/subscription.d.ts +0 -18
  135. package/dist/utils/constants.d.ts +0 -13
  136. package/dist/utils/data/advanced-tab.d.ts +0 -62
  137. package/dist/utils/helpers.d.ts +0 -1
  138. package/dist/utils/index.d.ts +0 -3
@@ -1,8 +1,8 @@
1
1
  export declare const mentorApiSlice: import("@reduxjs/toolkit/query").Api<import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, {
2
2
  createMentor: import("@reduxjs/toolkit/query").MutationDefinition<{
3
3
  org: string;
4
- formData: import("@iblai/iblai-api").MentorFromTemplateWithSettingRequest;
5
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>;
4
+ formData: import("node_modules/@iblai/iblai-api/dist/types").MentorFromTemplateWithSettingRequest;
5
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").Mentor, "mentorApiSlice", any>;
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", import("node_modules/@iblai/iblai-api/dist/types").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", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>;
113
42
  editMentor: import("@reduxjs/toolkit/query").MutationDefinition<{
114
43
  mentor: string;
115
44
  org: string;
116
45
  departmentId?: number;
117
- formData?: import("@iblai/iblai-api").MentorSettingsRequest;
118
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettings, "mentorApiSlice", any>;
46
+ formData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsRequest;
47
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettings, "mentorApiSlice", any>;
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", import("node_modules/@iblai/iblai-api/dist/types").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", import("node_modules/@iblai/iblai-api/dist/types").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", import("node_modules/@iblai/iblai-api/dist/types").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", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>;
135
64
  updateMentorVisibilityStatus: import("@reduxjs/toolkit/query").MutationDefinition<{
136
65
  mentor: string;
137
66
  org: string;
138
67
  departmentId?: number;
139
- formData?: import("@iblai/iblai-api").MentorSettingsRequest;
140
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettings, "mentorApiSlice", any>;
68
+ formData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsRequest;
69
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettings, "mentorApiSlice", any>;
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", import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount, "mentorApiSlice", any>;
144
73
  createShareableLink: import("@reduxjs/toolkit/query").MutationDefinition<{
145
74
  mentor: string;
146
75
  org: string;
147
- requestBody?: import("@iblai/iblai-api").ShareableMentorLink;
148
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>;
76
+ requestBody?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink;
77
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>;
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", import("node_modules/@iblai/iblai-api/dist/types").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", import("node_modules/@iblai/iblai-api/dist/types").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", void, "mentorApiSlice", any>;
161
90
  updateShareableLink: import("@reduxjs/toolkit/query").MutationDefinition<{
162
91
  mentor: string;
163
92
  org: string;
164
- requestBody?: import("@iblai/iblai-api").ShareableMentorLink;
165
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>;
93
+ requestBody?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink;
94
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>;
166
95
  deleteMentor: import("@reduxjs/toolkit/query").MutationDefinition<{
167
96
  name: string;
168
97
  org: string;
@@ -172,8 +101,14 @@ 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", void, "mentorApiSlice", any>;
105
+ forkMentor: import("@reduxjs/toolkit/query").MutationDefinition<{
106
+ mentor: string;
107
+ org: string;
108
+ requestBody: import("node_modules/@iblai/iblai-api/dist/types").MentorFork;
109
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").Mentor, "mentorApiSlice", any>;
110
+ }, "mentorApiSlice", "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", typeof import("@reduxjs/toolkit/query").coreModuleName | typeof import("@reduxjs/toolkit/dist/query/react").reactHooksModuleName>;
111
+ export declare const mentorApiReducer: typeof mentorApiSlice.reducer;
177
112
  export declare const useCreateMentorMutation: <R extends Record<string, any> = ({
178
113
  requestId?: undefined;
179
114
  status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
@@ -192,14 +127,14 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
192
127
  status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
193
128
  } & Omit<{
194
129
  requestId: string;
195
- data?: import("@iblai/iblai-api").Mentor | undefined;
130
+ data?: import("node_modules/@iblai/iblai-api/dist/types").Mentor | undefined;
196
131
  error?: unknown;
197
132
  endpointName: string;
198
133
  startedTimeStamp: number;
199
134
  fulfilledTimeStamp?: number;
200
135
  }, "data" | "fulfilledTimeStamp"> & Required<Pick<{
201
136
  requestId: string;
202
- data?: import("@iblai/iblai-api").Mentor | undefined;
137
+ data?: import("node_modules/@iblai/iblai-api/dist/types").Mentor | undefined;
203
138
  error?: unknown;
204
139
  endpointName: string;
205
140
  startedTimeStamp: number;
@@ -216,7 +151,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
216
151
  status: import("@reduxjs/toolkit/query").QueryStatus.pending;
217
152
  } & {
218
153
  requestId: string;
219
- data?: import("@iblai/iblai-api").Mentor | undefined;
154
+ data?: import("node_modules/@iblai/iblai-api/dist/types").Mentor | undefined;
220
155
  error?: unknown;
221
156
  endpointName: string;
222
157
  startedTimeStamp: number;
@@ -233,14 +168,14 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
233
168
  status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
234
169
  } & Omit<{
235
170
  requestId: string;
236
- data?: import("@iblai/iblai-api").Mentor | undefined;
171
+ data?: import("node_modules/@iblai/iblai-api/dist/types").Mentor | undefined;
237
172
  error?: unknown;
238
173
  endpointName: string;
239
174
  startedTimeStamp: number;
240
175
  fulfilledTimeStamp?: number;
241
176
  }, "error"> & Required<Pick<{
242
177
  requestId: string;
243
- data?: import("@iblai/iblai-api").Mentor | undefined;
178
+ data?: import("node_modules/@iblai/iblai-api/dist/types").Mentor | undefined;
244
179
  error?: unknown;
245
180
  endpointName: string;
246
181
  startedTimeStamp: number;
@@ -270,14 +205,14 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
270
205
  status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
271
206
  } & Omit<{
272
207
  requestId: string;
273
- data?: import("@iblai/iblai-api").Mentor | undefined;
208
+ data?: import("node_modules/@iblai/iblai-api/dist/types").Mentor | undefined;
274
209
  error?: unknown;
275
210
  endpointName: string;
276
211
  startedTimeStamp: number;
277
212
  fulfilledTimeStamp?: number;
278
213
  }, "data" | "fulfilledTimeStamp"> & Required<Pick<{
279
214
  requestId: string;
280
- data?: import("@iblai/iblai-api").Mentor | undefined;
215
+ data?: import("node_modules/@iblai/iblai-api/dist/types").Mentor | undefined;
281
216
  error?: unknown;
282
217
  endpointName: string;
283
218
  startedTimeStamp: number;
@@ -294,7 +229,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
294
229
  status: import("@reduxjs/toolkit/query").QueryStatus.pending;
295
230
  } & {
296
231
  requestId: string;
297
- data?: import("@iblai/iblai-api").Mentor | undefined;
232
+ data?: import("node_modules/@iblai/iblai-api/dist/types").Mentor | undefined;
298
233
  error?: unknown;
299
234
  endpointName: string;
300
235
  startedTimeStamp: number;
@@ -311,14 +246,14 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
311
246
  status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
312
247
  } & Omit<{
313
248
  requestId: string;
314
- data?: import("@iblai/iblai-api").Mentor | undefined;
249
+ data?: import("node_modules/@iblai/iblai-api/dist/types").Mentor | undefined;
315
250
  error?: unknown;
316
251
  endpointName: string;
317
252
  startedTimeStamp: number;
318
253
  fulfilledTimeStamp?: number;
319
254
  }, "error"> & Required<Pick<{
320
255
  requestId: string;
321
- data?: import("@iblai/iblai-api").Mentor | undefined;
256
+ data?: import("node_modules/@iblai/iblai-api/dist/types").Mentor | undefined;
322
257
  error?: unknown;
323
258
  endpointName: string;
324
259
  startedTimeStamp: number;
@@ -333,14 +268,14 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
333
268
  fixedCacheKey?: string;
334
269
  } | undefined) => readonly [(arg: {
335
270
  org: string;
336
- formData: import("@iblai/iblai-api").MentorFromTemplateWithSettingRequest;
271
+ formData: import("node_modules/@iblai/iblai-api/dist/types").MentorFromTemplateWithSettingRequest;
337
272
  }) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
338
273
  org: string;
339
- formData: import("@iblai/iblai-api").MentorFromTemplateWithSettingRequest;
340
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
274
+ formData: import("node_modules/@iblai/iblai-api/dist/types").MentorFromTemplateWithSettingRequest;
275
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").Mentor, "mentorApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
341
276
  originalArgs?: {
342
277
  org: string;
343
- formData: import("@iblai/iblai-api").MentorFromTemplateWithSettingRequest;
278
+ formData: import("node_modules/@iblai/iblai-api/dist/types").MentorFromTemplateWithSettingRequest;
344
279
  } | undefined;
345
280
  reset: () => void;
346
281
  }], useGetMentorsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
@@ -353,7 +288,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
353
288
  startedTimeStamp?: undefined | undefined;
354
289
  fulfilledTimeStamp?: undefined | undefined;
355
290
  } & {
356
- currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
291
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
357
292
  isUninitialized: false;
358
293
  isLoading: false;
359
294
  isFetching: false;
@@ -379,8 +314,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
379
314
  tags?: Array<string>;
380
315
  tenant?: string;
381
316
  uniqueId?: string;
382
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
383
- currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
317
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
318
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
384
319
  isUninitialized: false;
385
320
  isLoading: false;
386
321
  isFetching: false;
@@ -412,8 +347,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
412
347
  tags?: Array<string>;
413
348
  tenant?: string;
414
349
  uniqueId?: string;
415
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
416
- currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
350
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
351
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
417
352
  isUninitialized: false;
418
353
  isLoading: false;
419
354
  isFetching: false;
@@ -441,8 +376,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
441
376
  tags?: Array<string>;
442
377
  tenant?: string;
443
378
  uniqueId?: string;
444
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
445
- currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
379
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
380
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
446
381
  isUninitialized: false;
447
382
  isLoading: false;
448
383
  isFetching: false;
@@ -468,8 +403,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
468
403
  tags?: Array<string>;
469
404
  tenant?: string;
470
405
  uniqueId?: string;
471
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
472
- currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
406
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
407
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
473
408
  isUninitialized: false;
474
409
  isLoading: false;
475
410
  isFetching: false;
@@ -510,7 +445,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
510
445
  startedTimeStamp?: undefined | undefined;
511
446
  fulfilledTimeStamp?: undefined | undefined;
512
447
  } & {
513
- currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
448
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
514
449
  isUninitialized: false;
515
450
  isLoading: false;
516
451
  isFetching: false;
@@ -536,8 +471,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
536
471
  tags?: Array<string>;
537
472
  tenant?: string;
538
473
  uniqueId?: string;
539
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
540
- currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
474
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
475
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
541
476
  isUninitialized: false;
542
477
  isLoading: false;
543
478
  isFetching: false;
@@ -569,8 +504,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
569
504
  tags?: Array<string>;
570
505
  tenant?: string;
571
506
  uniqueId?: string;
572
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
573
- currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
507
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
508
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
574
509
  isUninitialized: false;
575
510
  isLoading: false;
576
511
  isFetching: false;
@@ -598,8 +533,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
598
533
  tags?: Array<string>;
599
534
  tenant?: string;
600
535
  uniqueId?: string;
601
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
602
- currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
536
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
537
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
603
538
  isUninitialized: false;
604
539
  isLoading: false;
605
540
  isFetching: false;
@@ -625,8 +560,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
625
560
  tags?: Array<string>;
626
561
  tenant?: string;
627
562
  uniqueId?: string;
628
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
629
- currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
563
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
564
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
630
565
  isUninitialized: false;
631
566
  isLoading: false;
632
567
  isFetching: false;
@@ -654,7 +589,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
654
589
  tags?: Array<string>;
655
590
  tenant?: string;
656
591
  uniqueId?: string;
657
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>>;
592
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>>;
658
593
  }, useLazyGetMentorsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
659
594
  status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
660
595
  originalArgs?: undefined | undefined;
@@ -665,7 +600,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
665
600
  startedTimeStamp?: undefined | undefined;
666
601
  fulfilledTimeStamp?: undefined | undefined;
667
602
  } & {
668
- currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
603
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
669
604
  isUninitialized: false;
670
605
  isLoading: false;
671
606
  isFetching: false;
@@ -691,8 +626,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
691
626
  tags?: Array<string>;
692
627
  tenant?: string;
693
628
  uniqueId?: string;
694
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
695
- currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
629
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
630
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
696
631
  isUninitialized: false;
697
632
  isLoading: false;
698
633
  isFetching: false;
@@ -724,8 +659,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
724
659
  tags?: Array<string>;
725
660
  tenant?: string;
726
661
  uniqueId?: string;
727
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
728
- currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
662
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
663
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
729
664
  isUninitialized: false;
730
665
  isLoading: false;
731
666
  isFetching: false;
@@ -753,8 +688,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
753
688
  tags?: Array<string>;
754
689
  tenant?: string;
755
690
  uniqueId?: string;
756
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
757
- currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
691
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
692
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
758
693
  isUninitialized: false;
759
694
  isLoading: false;
760
695
  isFetching: false;
@@ -780,8 +715,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
780
715
  tags?: Array<string>;
781
716
  tenant?: string;
782
717
  uniqueId?: string;
783
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
784
- currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
718
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
719
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
785
720
  isUninitialized: false;
786
721
  isLoading: false;
787
722
  isFetching: false;
@@ -801,7 +736,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
801
736
  startedTimeStamp?: undefined | undefined;
802
737
  fulfilledTimeStamp?: undefined | undefined;
803
738
  } & {
804
- currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
739
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
805
740
  isUninitialized: false;
806
741
  isLoading: false;
807
742
  isFetching: false;
@@ -827,8 +762,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
827
762
  tags?: Array<string>;
828
763
  tenant?: string;
829
764
  uniqueId?: string;
830
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
831
- currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
765
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
766
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
832
767
  isUninitialized: false;
833
768
  isLoading: false;
834
769
  isFetching: false;
@@ -860,8 +795,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
860
795
  tags?: Array<string>;
861
796
  tenant?: string;
862
797
  uniqueId?: string;
863
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
864
- currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
798
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
799
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
865
800
  isUninitialized: false;
866
801
  isLoading: false;
867
802
  isFetching: false;
@@ -889,8 +824,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
889
824
  tags?: Array<string>;
890
825
  tenant?: string;
891
826
  uniqueId?: string;
892
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
893
- currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
827
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
828
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
894
829
  isUninitialized: false;
895
830
  isLoading: false;
896
831
  isFetching: false;
@@ -916,8 +851,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
916
851
  tags?: Array<string>;
917
852
  tenant?: string;
918
853
  uniqueId?: string;
919
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSearchResponse, "mentorApiSlice", any>> & {
920
- currentData?: import("@iblai/iblai-api").MentorSearchResponse | undefined;
854
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
855
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
921
856
  isUninitialized: false;
922
857
  isLoading: false;
923
858
  isFetching: false;
@@ -962,7 +897,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
962
897
  tags?: Array<string>;
963
898
  tenant?: string;
964
899
  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] & {
900
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>>, [R][R extends any ? 0 : never] & {
966
901
  reset: () => void;
967
902
  }, {
968
903
  lastArg: {
@@ -1002,14 +937,14 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1002
937
  status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
1003
938
  } & Omit<{
1004
939
  requestId: string;
1005
- data?: import("@iblai/iblai-api").MentorSettings | undefined;
940
+ data?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettings | undefined;
1006
941
  error?: unknown;
1007
942
  endpointName: string;
1008
943
  startedTimeStamp: number;
1009
944
  fulfilledTimeStamp?: number;
1010
945
  }, "data" | "fulfilledTimeStamp"> & Required<Pick<{
1011
946
  requestId: string;
1012
- data?: import("@iblai/iblai-api").MentorSettings | undefined;
947
+ data?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettings | undefined;
1013
948
  error?: unknown;
1014
949
  endpointName: string;
1015
950
  startedTimeStamp: number;
@@ -1026,7 +961,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1026
961
  status: import("@reduxjs/toolkit/query").QueryStatus.pending;
1027
962
  } & {
1028
963
  requestId: string;
1029
- data?: import("@iblai/iblai-api").MentorSettings | undefined;
964
+ data?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettings | undefined;
1030
965
  error?: unknown;
1031
966
  endpointName: string;
1032
967
  startedTimeStamp: number;
@@ -1043,14 +978,14 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1043
978
  status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
1044
979
  } & Omit<{
1045
980
  requestId: string;
1046
- data?: import("@iblai/iblai-api").MentorSettings | undefined;
981
+ data?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettings | undefined;
1047
982
  error?: unknown;
1048
983
  endpointName: string;
1049
984
  startedTimeStamp: number;
1050
985
  fulfilledTimeStamp?: number;
1051
986
  }, "error"> & Required<Pick<{
1052
987
  requestId: string;
1053
- data?: import("@iblai/iblai-api").MentorSettings | undefined;
988
+ data?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettings | undefined;
1054
989
  error?: unknown;
1055
990
  endpointName: string;
1056
991
  startedTimeStamp: number;
@@ -1080,14 +1015,14 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1080
1015
  status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
1081
1016
  } & Omit<{
1082
1017
  requestId: string;
1083
- data?: import("@iblai/iblai-api").MentorSettings | undefined;
1018
+ data?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettings | undefined;
1084
1019
  error?: unknown;
1085
1020
  endpointName: string;
1086
1021
  startedTimeStamp: number;
1087
1022
  fulfilledTimeStamp?: number;
1088
1023
  }, "data" | "fulfilledTimeStamp"> & Required<Pick<{
1089
1024
  requestId: string;
1090
- data?: import("@iblai/iblai-api").MentorSettings | undefined;
1025
+ data?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettings | undefined;
1091
1026
  error?: unknown;
1092
1027
  endpointName: string;
1093
1028
  startedTimeStamp: number;
@@ -1104,7 +1039,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1104
1039
  status: import("@reduxjs/toolkit/query").QueryStatus.pending;
1105
1040
  } & {
1106
1041
  requestId: string;
1107
- data?: import("@iblai/iblai-api").MentorSettings | undefined;
1042
+ data?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettings | undefined;
1108
1043
  error?: unknown;
1109
1044
  endpointName: string;
1110
1045
  startedTimeStamp: number;
@@ -1121,14 +1056,14 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1121
1056
  status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
1122
1057
  } & Omit<{
1123
1058
  requestId: string;
1124
- data?: import("@iblai/iblai-api").MentorSettings | undefined;
1059
+ data?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettings | undefined;
1125
1060
  error?: unknown;
1126
1061
  endpointName: string;
1127
1062
  startedTimeStamp: number;
1128
1063
  fulfilledTimeStamp?: number;
1129
1064
  }, "error"> & Required<Pick<{
1130
1065
  requestId: string;
1131
- data?: import("@iblai/iblai-api").MentorSettings | undefined;
1066
+ data?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettings | undefined;
1132
1067
  error?: unknown;
1133
1068
  endpointName: string;
1134
1069
  startedTimeStamp: number;
@@ -1145,18 +1080,18 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1145
1080
  mentor: string;
1146
1081
  org: string;
1147
1082
  departmentId?: number;
1148
- formData?: import("@iblai/iblai-api").MentorSettingsRequest;
1083
+ formData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsRequest;
1149
1084
  }) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
1150
1085
  mentor: string;
1151
1086
  org: string;
1152
1087
  departmentId?: number;
1153
- formData?: import("@iblai/iblai-api").MentorSettingsRequest;
1154
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettings, "mentorApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
1088
+ formData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsRequest;
1089
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettings, "mentorApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
1155
1090
  originalArgs?: {
1156
1091
  mentor: string;
1157
1092
  org: string;
1158
1093
  departmentId?: number;
1159
- formData?: import("@iblai/iblai-api").MentorSettingsRequest;
1094
+ formData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsRequest;
1160
1095
  } | undefined;
1161
1096
  reset: () => void;
1162
1097
  }], useSeedMentorsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
@@ -1169,7 +1104,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1169
1104
  startedTimeStamp?: undefined | undefined;
1170
1105
  fulfilledTimeStamp?: undefined | undefined;
1171
1106
  } & {
1172
- currentData?: import("@iblai/iblai-api").SeedMentorsView | undefined;
1107
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView | undefined;
1173
1108
  isUninitialized: false;
1174
1109
  isLoading: false;
1175
1110
  isFetching: false;
@@ -1179,8 +1114,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1179
1114
  isUninitialized: true;
1180
1115
  }) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
1181
1116
  org: string;
1182
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").SeedMentorsView, "mentorApiSlice", any>> & {
1183
- currentData?: import("@iblai/iblai-api").SeedMentorsView | undefined;
1117
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView, "mentorApiSlice", any>> & {
1118
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView | undefined;
1184
1119
  isUninitialized: false;
1185
1120
  isLoading: false;
1186
1121
  isFetching: false;
@@ -1196,8 +1131,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1196
1131
  error: undefined;
1197
1132
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
1198
1133
  org: string;
1199
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").SeedMentorsView, "mentorApiSlice", any>> & {
1200
- currentData?: import("@iblai/iblai-api").SeedMentorsView | undefined;
1134
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView, "mentorApiSlice", any>> & {
1135
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView | undefined;
1201
1136
  isUninitialized: false;
1202
1137
  isLoading: false;
1203
1138
  isFetching: false;
@@ -1209,8 +1144,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1209
1144
  error: undefined;
1210
1145
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
1211
1146
  org: string;
1212
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").SeedMentorsView, "mentorApiSlice", any>> & {
1213
- currentData?: import("@iblai/iblai-api").SeedMentorsView | undefined;
1147
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView, "mentorApiSlice", any>> & {
1148
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView | undefined;
1214
1149
  isUninitialized: false;
1215
1150
  isLoading: false;
1216
1151
  isFetching: false;
@@ -1220,8 +1155,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1220
1155
  isError: true;
1221
1156
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
1222
1157
  org: string;
1223
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").SeedMentorsView, "mentorApiSlice", any>> & {
1224
- currentData?: import("@iblai/iblai-api").SeedMentorsView | undefined;
1158
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView, "mentorApiSlice", any>> & {
1159
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView | undefined;
1225
1160
  isUninitialized: false;
1226
1161
  isLoading: false;
1227
1162
  isFetching: false;
@@ -1246,7 +1181,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1246
1181
  startedTimeStamp?: undefined | undefined;
1247
1182
  fulfilledTimeStamp?: undefined | undefined;
1248
1183
  } & {
1249
- currentData?: import("@iblai/iblai-api").SeedMentorsView | undefined;
1184
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView | undefined;
1250
1185
  isUninitialized: false;
1251
1186
  isLoading: false;
1252
1187
  isFetching: false;
@@ -1256,8 +1191,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1256
1191
  isUninitialized: true;
1257
1192
  }) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
1258
1193
  org: string;
1259
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").SeedMentorsView, "mentorApiSlice", any>> & {
1260
- currentData?: import("@iblai/iblai-api").SeedMentorsView | undefined;
1194
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView, "mentorApiSlice", any>> & {
1195
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView | undefined;
1261
1196
  isUninitialized: false;
1262
1197
  isLoading: false;
1263
1198
  isFetching: false;
@@ -1273,8 +1208,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1273
1208
  error: undefined;
1274
1209
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
1275
1210
  org: string;
1276
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").SeedMentorsView, "mentorApiSlice", any>> & {
1277
- currentData?: import("@iblai/iblai-api").SeedMentorsView | undefined;
1211
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView, "mentorApiSlice", any>> & {
1212
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView | undefined;
1278
1213
  isUninitialized: false;
1279
1214
  isLoading: false;
1280
1215
  isFetching: false;
@@ -1286,8 +1221,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1286
1221
  error: undefined;
1287
1222
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
1288
1223
  org: string;
1289
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").SeedMentorsView, "mentorApiSlice", any>> & {
1290
- currentData?: import("@iblai/iblai-api").SeedMentorsView | undefined;
1224
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView, "mentorApiSlice", any>> & {
1225
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView | undefined;
1291
1226
  isUninitialized: false;
1292
1227
  isLoading: false;
1293
1228
  isFetching: false;
@@ -1297,8 +1232,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1297
1232
  isError: true;
1298
1233
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
1299
1234
  org: string;
1300
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").SeedMentorsView, "mentorApiSlice", any>> & {
1301
- currentData?: import("@iblai/iblai-api").SeedMentorsView | undefined;
1235
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView, "mentorApiSlice", any>> & {
1236
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView | undefined;
1302
1237
  isUninitialized: false;
1303
1238
  isLoading: false;
1304
1239
  isFetching: false;
@@ -1310,7 +1245,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1310
1245
  }) | undefined) => [R][R extends any ? 0 : never] & {
1311
1246
  refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
1312
1247
  org: string;
1313
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").SeedMentorsView, "mentorApiSlice", any>>;
1248
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView, "mentorApiSlice", any>>;
1314
1249
  }, useLazySeedMentorsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
1315
1250
  status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
1316
1251
  originalArgs?: undefined | undefined;
@@ -1321,7 +1256,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1321
1256
  startedTimeStamp?: undefined | undefined;
1322
1257
  fulfilledTimeStamp?: undefined | undefined;
1323
1258
  } & {
1324
- currentData?: import("@iblai/iblai-api").SeedMentorsView | undefined;
1259
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView | undefined;
1325
1260
  isUninitialized: false;
1326
1261
  isLoading: false;
1327
1262
  isFetching: false;
@@ -1331,8 +1266,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1331
1266
  isUninitialized: true;
1332
1267
  }) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
1333
1268
  org: string;
1334
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").SeedMentorsView, "mentorApiSlice", any>> & {
1335
- currentData?: import("@iblai/iblai-api").SeedMentorsView | undefined;
1269
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView, "mentorApiSlice", any>> & {
1270
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView | undefined;
1336
1271
  isUninitialized: false;
1337
1272
  isLoading: false;
1338
1273
  isFetching: false;
@@ -1348,8 +1283,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1348
1283
  error: undefined;
1349
1284
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
1350
1285
  org: string;
1351
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").SeedMentorsView, "mentorApiSlice", any>> & {
1352
- currentData?: import("@iblai/iblai-api").SeedMentorsView | undefined;
1286
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView, "mentorApiSlice", any>> & {
1287
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView | undefined;
1353
1288
  isUninitialized: false;
1354
1289
  isLoading: false;
1355
1290
  isFetching: false;
@@ -1361,8 +1296,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1361
1296
  error: undefined;
1362
1297
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
1363
1298
  org: string;
1364
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").SeedMentorsView, "mentorApiSlice", any>> & {
1365
- currentData?: import("@iblai/iblai-api").SeedMentorsView | undefined;
1299
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView, "mentorApiSlice", any>> & {
1300
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView | undefined;
1366
1301
  isUninitialized: false;
1367
1302
  isLoading: false;
1368
1303
  isFetching: false;
@@ -1372,8 +1307,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1372
1307
  isError: true;
1373
1308
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
1374
1309
  org: string;
1375
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").SeedMentorsView, "mentorApiSlice", any>> & {
1376
- currentData?: import("@iblai/iblai-api").SeedMentorsView | undefined;
1310
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView, "mentorApiSlice", any>> & {
1311
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView | undefined;
1377
1312
  isUninitialized: false;
1378
1313
  isLoading: false;
1379
1314
  isFetching: false;
@@ -1393,7 +1328,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1393
1328
  startedTimeStamp?: undefined | undefined;
1394
1329
  fulfilledTimeStamp?: undefined | undefined;
1395
1330
  } & {
1396
- currentData?: import("@iblai/iblai-api").SeedMentorsView | undefined;
1331
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView | undefined;
1397
1332
  isUninitialized: false;
1398
1333
  isLoading: false;
1399
1334
  isFetching: false;
@@ -1403,8 +1338,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1403
1338
  isUninitialized: true;
1404
1339
  }) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
1405
1340
  org: string;
1406
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").SeedMentorsView, "mentorApiSlice", any>> & {
1407
- currentData?: import("@iblai/iblai-api").SeedMentorsView | undefined;
1341
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView, "mentorApiSlice", any>> & {
1342
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView | undefined;
1408
1343
  isUninitialized: false;
1409
1344
  isLoading: false;
1410
1345
  isFetching: false;
@@ -1420,8 +1355,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1420
1355
  error: undefined;
1421
1356
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
1422
1357
  org: string;
1423
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").SeedMentorsView, "mentorApiSlice", any>> & {
1424
- currentData?: import("@iblai/iblai-api").SeedMentorsView | undefined;
1358
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView, "mentorApiSlice", any>> & {
1359
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView | undefined;
1425
1360
  isUninitialized: false;
1426
1361
  isLoading: false;
1427
1362
  isFetching: false;
@@ -1433,8 +1368,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1433
1368
  error: undefined;
1434
1369
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
1435
1370
  org: string;
1436
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").SeedMentorsView, "mentorApiSlice", any>> & {
1437
- currentData?: import("@iblai/iblai-api").SeedMentorsView | undefined;
1371
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView, "mentorApiSlice", any>> & {
1372
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView | undefined;
1438
1373
  isUninitialized: false;
1439
1374
  isLoading: false;
1440
1375
  isFetching: false;
@@ -1444,8 +1379,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1444
1379
  isError: true;
1445
1380
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
1446
1381
  org: string;
1447
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").SeedMentorsView, "mentorApiSlice", any>> & {
1448
- currentData?: import("@iblai/iblai-api").SeedMentorsView | undefined;
1382
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView, "mentorApiSlice", any>> & {
1383
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView | undefined;
1449
1384
  isUninitialized: false;
1450
1385
  isLoading: false;
1451
1386
  isFetching: false;
@@ -1458,7 +1393,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1458
1393
  org: string;
1459
1394
  }, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
1460
1395
  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] & {
1396
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").SeedMentorsView, "mentorApiSlice", any>>, [R][R extends any ? 0 : never] & {
1462
1397
  reset: () => void;
1463
1398
  }, {
1464
1399
  lastArg: {
@@ -1474,7 +1409,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1474
1409
  startedTimeStamp?: undefined | undefined;
1475
1410
  fulfilledTimeStamp?: undefined | undefined;
1476
1411
  } & {
1477
- currentData?: import("@iblai/iblai-api").Mentor | undefined;
1412
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").Mentor | undefined;
1478
1413
  isUninitialized: false;
1479
1414
  isLoading: false;
1480
1415
  isFetching: false;
@@ -1485,8 +1420,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1485
1420
  }) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
1486
1421
  mentor: string;
1487
1422
  org: string;
1488
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>> & {
1489
- currentData?: import("@iblai/iblai-api").Mentor | undefined;
1423
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").Mentor, "mentorApiSlice", any>> & {
1424
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").Mentor | undefined;
1490
1425
  isUninitialized: false;
1491
1426
  isLoading: false;
1492
1427
  isFetching: false;
@@ -1503,8 +1438,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1503
1438
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
1504
1439
  mentor: string;
1505
1440
  org: string;
1506
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>> & {
1507
- currentData?: import("@iblai/iblai-api").Mentor | undefined;
1441
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").Mentor, "mentorApiSlice", any>> & {
1442
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").Mentor | undefined;
1508
1443
  isUninitialized: false;
1509
1444
  isLoading: false;
1510
1445
  isFetching: false;
@@ -1517,8 +1452,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1517
1452
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
1518
1453
  mentor: string;
1519
1454
  org: string;
1520
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>> & {
1521
- currentData?: import("@iblai/iblai-api").Mentor | undefined;
1455
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").Mentor, "mentorApiSlice", any>> & {
1456
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").Mentor | undefined;
1522
1457
  isUninitialized: false;
1523
1458
  isLoading: false;
1524
1459
  isFetching: false;
@@ -1529,8 +1464,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1529
1464
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
1530
1465
  mentor: string;
1531
1466
  org: string;
1532
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>> & {
1533
- currentData?: import("@iblai/iblai-api").Mentor | undefined;
1467
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").Mentor, "mentorApiSlice", any>> & {
1468
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").Mentor | undefined;
1534
1469
  isUninitialized: false;
1535
1470
  isLoading: false;
1536
1471
  isFetching: false;
@@ -1556,7 +1491,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1556
1491
  startedTimeStamp?: undefined | undefined;
1557
1492
  fulfilledTimeStamp?: undefined | undefined;
1558
1493
  } & {
1559
- currentData?: import("@iblai/iblai-api").Mentor | undefined;
1494
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").Mentor | undefined;
1560
1495
  isUninitialized: false;
1561
1496
  isLoading: false;
1562
1497
  isFetching: false;
@@ -1567,8 +1502,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1567
1502
  }) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
1568
1503
  mentor: string;
1569
1504
  org: string;
1570
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>> & {
1571
- currentData?: import("@iblai/iblai-api").Mentor | undefined;
1505
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").Mentor, "mentorApiSlice", any>> & {
1506
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").Mentor | undefined;
1572
1507
  isUninitialized: false;
1573
1508
  isLoading: false;
1574
1509
  isFetching: false;
@@ -1585,8 +1520,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1585
1520
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
1586
1521
  mentor: string;
1587
1522
  org: string;
1588
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>> & {
1589
- currentData?: import("@iblai/iblai-api").Mentor | undefined;
1523
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").Mentor, "mentorApiSlice", any>> & {
1524
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").Mentor | undefined;
1590
1525
  isUninitialized: false;
1591
1526
  isLoading: false;
1592
1527
  isFetching: false;
@@ -1599,8 +1534,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1599
1534
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
1600
1535
  mentor: string;
1601
1536
  org: string;
1602
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>> & {
1603
- currentData?: import("@iblai/iblai-api").Mentor | undefined;
1537
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").Mentor, "mentorApiSlice", any>> & {
1538
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").Mentor | undefined;
1604
1539
  isUninitialized: false;
1605
1540
  isLoading: false;
1606
1541
  isFetching: false;
@@ -1611,8 +1546,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1611
1546
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
1612
1547
  mentor: string;
1613
1548
  org: string;
1614
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>> & {
1615
- currentData?: import("@iblai/iblai-api").Mentor | undefined;
1549
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").Mentor, "mentorApiSlice", any>> & {
1550
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").Mentor | undefined;
1616
1551
  isUninitialized: false;
1617
1552
  isLoading: false;
1618
1553
  isFetching: false;
@@ -1625,7 +1560,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1625
1560
  refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
1626
1561
  mentor: string;
1627
1562
  org: string;
1628
- }, 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", import("node_modules/@iblai/iblai-api/dist/types").Mentor, "mentorApiSlice", any>>;
1629
1564
  }, useLazyGetMentorDetailsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
1630
1565
  status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
1631
1566
  originalArgs?: undefined | undefined;
@@ -1636,7 +1571,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1636
1571
  startedTimeStamp?: undefined | undefined;
1637
1572
  fulfilledTimeStamp?: undefined | undefined;
1638
1573
  } & {
1639
- currentData?: import("@iblai/iblai-api").Mentor | undefined;
1574
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").Mentor | undefined;
1640
1575
  isUninitialized: false;
1641
1576
  isLoading: false;
1642
1577
  isFetching: false;
@@ -1647,8 +1582,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1647
1582
  }) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
1648
1583
  mentor: string;
1649
1584
  org: string;
1650
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>> & {
1651
- currentData?: import("@iblai/iblai-api").Mentor | undefined;
1585
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").Mentor, "mentorApiSlice", any>> & {
1586
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").Mentor | undefined;
1652
1587
  isUninitialized: false;
1653
1588
  isLoading: false;
1654
1589
  isFetching: false;
@@ -1665,8 +1600,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1665
1600
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
1666
1601
  mentor: string;
1667
1602
  org: string;
1668
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>> & {
1669
- currentData?: import("@iblai/iblai-api").Mentor | undefined;
1603
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").Mentor, "mentorApiSlice", any>> & {
1604
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").Mentor | undefined;
1670
1605
  isUninitialized: false;
1671
1606
  isLoading: false;
1672
1607
  isFetching: false;
@@ -1679,8 +1614,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1679
1614
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
1680
1615
  mentor: string;
1681
1616
  org: string;
1682
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>> & {
1683
- currentData?: import("@iblai/iblai-api").Mentor | undefined;
1617
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").Mentor, "mentorApiSlice", any>> & {
1618
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").Mentor | undefined;
1684
1619
  isUninitialized: false;
1685
1620
  isLoading: false;
1686
1621
  isFetching: false;
@@ -1691,8 +1626,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1691
1626
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
1692
1627
  mentor: string;
1693
1628
  org: string;
1694
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>> & {
1695
- currentData?: import("@iblai/iblai-api").Mentor | undefined;
1629
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").Mentor, "mentorApiSlice", any>> & {
1630
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").Mentor | undefined;
1696
1631
  isUninitialized: false;
1697
1632
  isLoading: false;
1698
1633
  isFetching: false;
@@ -1712,7 +1647,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1712
1647
  startedTimeStamp?: undefined | undefined;
1713
1648
  fulfilledTimeStamp?: undefined | undefined;
1714
1649
  } & {
1715
- currentData?: import("@iblai/iblai-api").Mentor | undefined;
1650
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").Mentor | undefined;
1716
1651
  isUninitialized: false;
1717
1652
  isLoading: false;
1718
1653
  isFetching: false;
@@ -1723,8 +1658,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1723
1658
  }) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
1724
1659
  mentor: string;
1725
1660
  org: string;
1726
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>> & {
1727
- currentData?: import("@iblai/iblai-api").Mentor | undefined;
1661
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").Mentor, "mentorApiSlice", any>> & {
1662
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").Mentor | undefined;
1728
1663
  isUninitialized: false;
1729
1664
  isLoading: false;
1730
1665
  isFetching: false;
@@ -1741,8 +1676,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1741
1676
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
1742
1677
  mentor: string;
1743
1678
  org: string;
1744
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>> & {
1745
- currentData?: import("@iblai/iblai-api").Mentor | undefined;
1679
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").Mentor, "mentorApiSlice", any>> & {
1680
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").Mentor | undefined;
1746
1681
  isUninitialized: false;
1747
1682
  isLoading: false;
1748
1683
  isFetching: false;
@@ -1755,8 +1690,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1755
1690
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
1756
1691
  mentor: string;
1757
1692
  org: string;
1758
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>> & {
1759
- currentData?: import("@iblai/iblai-api").Mentor | undefined;
1693
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").Mentor, "mentorApiSlice", any>> & {
1694
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").Mentor | undefined;
1760
1695
  isUninitialized: false;
1761
1696
  isLoading: false;
1762
1697
  isFetching: false;
@@ -1767,8 +1702,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1767
1702
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
1768
1703
  mentor: string;
1769
1704
  org: string;
1770
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").Mentor, "mentorApiSlice", any>> & {
1771
- currentData?: import("@iblai/iblai-api").Mentor | undefined;
1705
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").Mentor, "mentorApiSlice", any>> & {
1706
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").Mentor | undefined;
1772
1707
  isUninitialized: false;
1773
1708
  isLoading: false;
1774
1709
  isFetching: false;
@@ -1783,7 +1718,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1783
1718
  }, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
1784
1719
  mentor: string;
1785
1720
  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] & {
1721
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").Mentor, "mentorApiSlice", any>>, [R][R extends any ? 0 : never] & {
1787
1722
  reset: () => void;
1788
1723
  }, {
1789
1724
  lastArg: {
@@ -1800,7 +1735,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1800
1735
  startedTimeStamp?: undefined | undefined;
1801
1736
  fulfilledTimeStamp?: undefined | undefined;
1802
1737
  } & {
1803
- currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
1738
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
1804
1739
  isUninitialized: false;
1805
1740
  isLoading: false;
1806
1741
  isFetching: false;
@@ -1812,8 +1747,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1812
1747
  mentor: string;
1813
1748
  org: string;
1814
1749
  departmentId?: number;
1815
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
1816
- currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
1750
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
1751
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
1817
1752
  isUninitialized: false;
1818
1753
  isLoading: false;
1819
1754
  isFetching: false;
@@ -1831,8 +1766,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1831
1766
  mentor: string;
1832
1767
  org: string;
1833
1768
  departmentId?: number;
1834
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
1835
- currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
1769
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
1770
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
1836
1771
  isUninitialized: false;
1837
1772
  isLoading: false;
1838
1773
  isFetching: false;
@@ -1846,8 +1781,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1846
1781
  mentor: string;
1847
1782
  org: string;
1848
1783
  departmentId?: number;
1849
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
1850
- currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
1784
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
1785
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
1851
1786
  isUninitialized: false;
1852
1787
  isLoading: false;
1853
1788
  isFetching: false;
@@ -1859,8 +1794,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1859
1794
  mentor: string;
1860
1795
  org: string;
1861
1796
  departmentId?: number;
1862
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
1863
- currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
1797
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
1798
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
1864
1799
  isUninitialized: false;
1865
1800
  isLoading: false;
1866
1801
  isFetching: false;
@@ -1887,7 +1822,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1887
1822
  startedTimeStamp?: undefined | undefined;
1888
1823
  fulfilledTimeStamp?: undefined | undefined;
1889
1824
  } & {
1890
- currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
1825
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
1891
1826
  isUninitialized: false;
1892
1827
  isLoading: false;
1893
1828
  isFetching: false;
@@ -1899,8 +1834,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1899
1834
  mentor: string;
1900
1835
  org: string;
1901
1836
  departmentId?: number;
1902
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
1903
- currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
1837
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
1838
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
1904
1839
  isUninitialized: false;
1905
1840
  isLoading: false;
1906
1841
  isFetching: false;
@@ -1918,8 +1853,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1918
1853
  mentor: string;
1919
1854
  org: string;
1920
1855
  departmentId?: number;
1921
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
1922
- currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
1856
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
1857
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
1923
1858
  isUninitialized: false;
1924
1859
  isLoading: false;
1925
1860
  isFetching: false;
@@ -1933,8 +1868,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1933
1868
  mentor: string;
1934
1869
  org: string;
1935
1870
  departmentId?: number;
1936
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
1937
- currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
1871
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
1872
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
1938
1873
  isUninitialized: false;
1939
1874
  isLoading: false;
1940
1875
  isFetching: false;
@@ -1946,8 +1881,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1946
1881
  mentor: string;
1947
1882
  org: string;
1948
1883
  departmentId?: number;
1949
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
1950
- currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
1884
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
1885
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
1951
1886
  isUninitialized: false;
1952
1887
  isLoading: false;
1953
1888
  isFetching: false;
@@ -1961,7 +1896,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1961
1896
  mentor: string;
1962
1897
  org: string;
1963
1898
  departmentId?: number;
1964
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>>;
1899
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>>;
1965
1900
  }, useLazyGetMentorSettingsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
1966
1901
  status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
1967
1902
  originalArgs?: undefined | undefined;
@@ -1972,7 +1907,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1972
1907
  startedTimeStamp?: undefined | undefined;
1973
1908
  fulfilledTimeStamp?: undefined | undefined;
1974
1909
  } & {
1975
- currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
1910
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
1976
1911
  isUninitialized: false;
1977
1912
  isLoading: false;
1978
1913
  isFetching: false;
@@ -1984,8 +1919,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
1984
1919
  mentor: string;
1985
1920
  org: string;
1986
1921
  departmentId?: number;
1987
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
1988
- currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
1922
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
1923
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
1989
1924
  isUninitialized: false;
1990
1925
  isLoading: false;
1991
1926
  isFetching: false;
@@ -2003,8 +1938,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2003
1938
  mentor: string;
2004
1939
  org: string;
2005
1940
  departmentId?: number;
2006
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
2007
- currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
1941
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
1942
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
2008
1943
  isUninitialized: false;
2009
1944
  isLoading: false;
2010
1945
  isFetching: false;
@@ -2018,8 +1953,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2018
1953
  mentor: string;
2019
1954
  org: string;
2020
1955
  departmentId?: number;
2021
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
2022
- currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
1956
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
1957
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
2023
1958
  isUninitialized: false;
2024
1959
  isLoading: false;
2025
1960
  isFetching: false;
@@ -2031,8 +1966,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2031
1966
  mentor: string;
2032
1967
  org: string;
2033
1968
  departmentId?: number;
2034
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
2035
- currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
1969
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
1970
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
2036
1971
  isUninitialized: false;
2037
1972
  isLoading: false;
2038
1973
  isFetching: false;
@@ -2052,7 +1987,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2052
1987
  startedTimeStamp?: undefined | undefined;
2053
1988
  fulfilledTimeStamp?: undefined | undefined;
2054
1989
  } & {
2055
- currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
1990
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
2056
1991
  isUninitialized: false;
2057
1992
  isLoading: false;
2058
1993
  isFetching: false;
@@ -2064,8 +1999,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2064
1999
  mentor: string;
2065
2000
  org: string;
2066
2001
  departmentId?: number;
2067
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
2068
- currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
2002
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
2003
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
2069
2004
  isUninitialized: false;
2070
2005
  isLoading: false;
2071
2006
  isFetching: false;
@@ -2083,8 +2018,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2083
2018
  mentor: string;
2084
2019
  org: string;
2085
2020
  departmentId?: number;
2086
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
2087
- currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
2021
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
2022
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
2088
2023
  isUninitialized: false;
2089
2024
  isLoading: false;
2090
2025
  isFetching: false;
@@ -2098,8 +2033,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2098
2033
  mentor: string;
2099
2034
  org: string;
2100
2035
  departmentId?: number;
2101
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
2102
- currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
2036
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
2037
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
2103
2038
  isUninitialized: false;
2104
2039
  isLoading: false;
2105
2040
  isFetching: false;
@@ -2111,8 +2046,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2111
2046
  mentor: string;
2112
2047
  org: string;
2113
2048
  departmentId?: number;
2114
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
2115
- currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
2049
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
2050
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
2116
2051
  isUninitialized: false;
2117
2052
  isLoading: false;
2118
2053
  isFetching: false;
@@ -2129,7 +2064,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2129
2064
  mentor: string;
2130
2065
  org: string;
2131
2066
  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] & {
2067
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>>, [R][R extends any ? 0 : never] & {
2133
2068
  reset: () => void;
2134
2069
  }, {
2135
2070
  lastArg: {
@@ -2147,7 +2082,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2147
2082
  startedTimeStamp?: undefined | undefined;
2148
2083
  fulfilledTimeStamp?: undefined | undefined;
2149
2084
  } & {
2150
- currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
2085
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
2151
2086
  isUninitialized: false;
2152
2087
  isLoading: false;
2153
2088
  isFetching: false;
@@ -2158,8 +2093,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2158
2093
  }) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
2159
2094
  mentor: string;
2160
2095
  org: string;
2161
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
2162
- currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
2096
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
2097
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
2163
2098
  isUninitialized: false;
2164
2099
  isLoading: false;
2165
2100
  isFetching: false;
@@ -2176,8 +2111,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2176
2111
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
2177
2112
  mentor: string;
2178
2113
  org: string;
2179
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
2180
- currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
2114
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
2115
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
2181
2116
  isUninitialized: false;
2182
2117
  isLoading: false;
2183
2118
  isFetching: false;
@@ -2190,8 +2125,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2190
2125
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
2191
2126
  mentor: string;
2192
2127
  org: string;
2193
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
2194
- currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
2128
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
2129
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
2195
2130
  isUninitialized: false;
2196
2131
  isLoading: false;
2197
2132
  isFetching: false;
@@ -2202,8 +2137,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2202
2137
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
2203
2138
  mentor: string;
2204
2139
  org: string;
2205
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
2206
- currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
2140
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
2141
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
2207
2142
  isUninitialized: false;
2208
2143
  isLoading: false;
2209
2144
  isFetching: false;
@@ -2229,7 +2164,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2229
2164
  startedTimeStamp?: undefined | undefined;
2230
2165
  fulfilledTimeStamp?: undefined | undefined;
2231
2166
  } & {
2232
- currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
2167
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
2233
2168
  isUninitialized: false;
2234
2169
  isLoading: false;
2235
2170
  isFetching: false;
@@ -2240,8 +2175,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2240
2175
  }) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
2241
2176
  mentor: string;
2242
2177
  org: string;
2243
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
2244
- currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
2178
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
2179
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
2245
2180
  isUninitialized: false;
2246
2181
  isLoading: false;
2247
2182
  isFetching: false;
@@ -2258,8 +2193,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2258
2193
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
2259
2194
  mentor: string;
2260
2195
  org: string;
2261
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
2262
- currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
2196
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
2197
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
2263
2198
  isUninitialized: false;
2264
2199
  isLoading: false;
2265
2200
  isFetching: false;
@@ -2272,8 +2207,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2272
2207
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
2273
2208
  mentor: string;
2274
2209
  org: string;
2275
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
2276
- currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
2210
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
2211
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
2277
2212
  isUninitialized: false;
2278
2213
  isLoading: false;
2279
2214
  isFetching: false;
@@ -2284,8 +2219,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2284
2219
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
2285
2220
  mentor: string;
2286
2221
  org: string;
2287
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
2288
- currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
2222
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
2223
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
2289
2224
  isUninitialized: false;
2290
2225
  isLoading: false;
2291
2226
  isFetching: false;
@@ -2298,7 +2233,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2298
2233
  refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
2299
2234
  mentor: string;
2300
2235
  org: string;
2301
- }, 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", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>>;
2302
2237
  }, useLazyGetMentorPublicSettingsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
2303
2238
  status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
2304
2239
  originalArgs?: undefined | undefined;
@@ -2309,7 +2244,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2309
2244
  startedTimeStamp?: undefined | undefined;
2310
2245
  fulfilledTimeStamp?: undefined | undefined;
2311
2246
  } & {
2312
- currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
2247
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
2313
2248
  isUninitialized: false;
2314
2249
  isLoading: false;
2315
2250
  isFetching: false;
@@ -2320,8 +2255,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2320
2255
  }) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
2321
2256
  mentor: string;
2322
2257
  org: string;
2323
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
2324
- currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
2258
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
2259
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
2325
2260
  isUninitialized: false;
2326
2261
  isLoading: false;
2327
2262
  isFetching: false;
@@ -2338,8 +2273,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2338
2273
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
2339
2274
  mentor: string;
2340
2275
  org: string;
2341
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
2342
- currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
2276
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
2277
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
2343
2278
  isUninitialized: false;
2344
2279
  isLoading: false;
2345
2280
  isFetching: false;
@@ -2352,8 +2287,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2352
2287
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
2353
2288
  mentor: string;
2354
2289
  org: string;
2355
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
2356
- currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
2290
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
2291
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
2357
2292
  isUninitialized: false;
2358
2293
  isLoading: false;
2359
2294
  isFetching: false;
@@ -2364,8 +2299,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2364
2299
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
2365
2300
  mentor: string;
2366
2301
  org: string;
2367
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
2368
- currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
2302
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
2303
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
2369
2304
  isUninitialized: false;
2370
2305
  isLoading: false;
2371
2306
  isFetching: false;
@@ -2385,7 +2320,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2385
2320
  startedTimeStamp?: undefined | undefined;
2386
2321
  fulfilledTimeStamp?: undefined | undefined;
2387
2322
  } & {
2388
- currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
2323
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
2389
2324
  isUninitialized: false;
2390
2325
  isLoading: false;
2391
2326
  isFetching: false;
@@ -2396,8 +2331,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2396
2331
  }) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
2397
2332
  mentor: string;
2398
2333
  org: string;
2399
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
2400
- currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
2334
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
2335
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
2401
2336
  isUninitialized: false;
2402
2337
  isLoading: false;
2403
2338
  isFetching: false;
@@ -2414,8 +2349,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2414
2349
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
2415
2350
  mentor: string;
2416
2351
  org: string;
2417
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
2418
- currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
2352
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
2353
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
2419
2354
  isUninitialized: false;
2420
2355
  isLoading: false;
2421
2356
  isFetching: false;
@@ -2428,8 +2363,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2428
2363
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
2429
2364
  mentor: string;
2430
2365
  org: string;
2431
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
2432
- currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
2366
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
2367
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
2433
2368
  isUninitialized: false;
2434
2369
  isLoading: false;
2435
2370
  isFetching: false;
@@ -2440,8 +2375,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2440
2375
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
2441
2376
  mentor: string;
2442
2377
  org: string;
2443
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettingsPublic, "mentorApiSlice", any>> & {
2444
- currentData?: import("@iblai/iblai-api").MentorSettingsPublic | undefined;
2378
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>> & {
2379
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic | undefined;
2445
2380
  isUninitialized: false;
2446
2381
  isLoading: false;
2447
2382
  isFetching: false;
@@ -2456,7 +2391,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2456
2391
  }, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
2457
2392
  mentor: string;
2458
2393
  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] & {
2394
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsPublic, "mentorApiSlice", any>>, [R][R extends any ? 0 : never] & {
2460
2395
  reset: () => void;
2461
2396
  }, {
2462
2397
  lastArg: {
@@ -2481,14 +2416,14 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2481
2416
  status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
2482
2417
  } & Omit<{
2483
2418
  requestId: string;
2484
- data?: import("@iblai/iblai-api").MentorSettings | undefined;
2419
+ data?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettings | undefined;
2485
2420
  error?: unknown;
2486
2421
  endpointName: string;
2487
2422
  startedTimeStamp: number;
2488
2423
  fulfilledTimeStamp?: number;
2489
2424
  }, "data" | "fulfilledTimeStamp"> & Required<Pick<{
2490
2425
  requestId: string;
2491
- data?: import("@iblai/iblai-api").MentorSettings | undefined;
2426
+ data?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettings | undefined;
2492
2427
  error?: unknown;
2493
2428
  endpointName: string;
2494
2429
  startedTimeStamp: number;
@@ -2505,7 +2440,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2505
2440
  status: import("@reduxjs/toolkit/query").QueryStatus.pending;
2506
2441
  } & {
2507
2442
  requestId: string;
2508
- data?: import("@iblai/iblai-api").MentorSettings | undefined;
2443
+ data?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettings | undefined;
2509
2444
  error?: unknown;
2510
2445
  endpointName: string;
2511
2446
  startedTimeStamp: number;
@@ -2522,14 +2457,14 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2522
2457
  status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
2523
2458
  } & Omit<{
2524
2459
  requestId: string;
2525
- data?: import("@iblai/iblai-api").MentorSettings | undefined;
2460
+ data?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettings | undefined;
2526
2461
  error?: unknown;
2527
2462
  endpointName: string;
2528
2463
  startedTimeStamp: number;
2529
2464
  fulfilledTimeStamp?: number;
2530
2465
  }, "error"> & Required<Pick<{
2531
2466
  requestId: string;
2532
- data?: import("@iblai/iblai-api").MentorSettings | undefined;
2467
+ data?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettings | undefined;
2533
2468
  error?: unknown;
2534
2469
  endpointName: string;
2535
2470
  startedTimeStamp: number;
@@ -2559,14 +2494,14 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2559
2494
  status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
2560
2495
  } & Omit<{
2561
2496
  requestId: string;
2562
- data?: import("@iblai/iblai-api").MentorSettings | undefined;
2497
+ data?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettings | undefined;
2563
2498
  error?: unknown;
2564
2499
  endpointName: string;
2565
2500
  startedTimeStamp: number;
2566
2501
  fulfilledTimeStamp?: number;
2567
2502
  }, "data" | "fulfilledTimeStamp"> & Required<Pick<{
2568
2503
  requestId: string;
2569
- data?: import("@iblai/iblai-api").MentorSettings | undefined;
2504
+ data?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettings | undefined;
2570
2505
  error?: unknown;
2571
2506
  endpointName: string;
2572
2507
  startedTimeStamp: number;
@@ -2583,7 +2518,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2583
2518
  status: import("@reduxjs/toolkit/query").QueryStatus.pending;
2584
2519
  } & {
2585
2520
  requestId: string;
2586
- data?: import("@iblai/iblai-api").MentorSettings | undefined;
2521
+ data?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettings | undefined;
2587
2522
  error?: unknown;
2588
2523
  endpointName: string;
2589
2524
  startedTimeStamp: number;
@@ -2600,14 +2535,14 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2600
2535
  status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
2601
2536
  } & Omit<{
2602
2537
  requestId: string;
2603
- data?: import("@iblai/iblai-api").MentorSettings | undefined;
2538
+ data?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettings | undefined;
2604
2539
  error?: unknown;
2605
2540
  endpointName: string;
2606
2541
  startedTimeStamp: number;
2607
2542
  fulfilledTimeStamp?: number;
2608
2543
  }, "error"> & Required<Pick<{
2609
2544
  requestId: string;
2610
- data?: import("@iblai/iblai-api").MentorSettings | undefined;
2545
+ data?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettings | undefined;
2611
2546
  error?: unknown;
2612
2547
  endpointName: string;
2613
2548
  startedTimeStamp: number;
@@ -2624,18 +2559,18 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2624
2559
  mentor: string;
2625
2560
  org: string;
2626
2561
  departmentId?: number;
2627
- formData?: import("@iblai/iblai-api").MentorSettingsRequest;
2562
+ formData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsRequest;
2628
2563
  }) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
2629
2564
  mentor: string;
2630
2565
  org: string;
2631
2566
  departmentId?: number;
2632
- formData?: import("@iblai/iblai-api").MentorSettingsRequest;
2633
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").MentorSettings, "mentorApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
2567
+ formData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsRequest;
2568
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSettings, "mentorApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
2634
2569
  originalArgs?: {
2635
2570
  mentor: string;
2636
2571
  org: string;
2637
2572
  departmentId?: number;
2638
- formData?: import("@iblai/iblai-api").MentorSettingsRequest;
2573
+ formData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSettingsRequest;
2639
2574
  } | undefined;
2640
2575
  reset: () => void;
2641
2576
  }], useGetFreeUsageCountQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
@@ -2648,7 +2583,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2648
2583
  startedTimeStamp?: undefined | undefined;
2649
2584
  fulfilledTimeStamp?: undefined | undefined;
2650
2585
  } & {
2651
- currentData?: import("@iblai/iblai-api").FreeUsageCount | undefined;
2586
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount | undefined;
2652
2587
  isUninitialized: false;
2653
2588
  isLoading: false;
2654
2589
  isFetching: false;
@@ -2658,8 +2593,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2658
2593
  isUninitialized: true;
2659
2594
  }) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
2660
2595
  org: string;
2661
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").FreeUsageCount, "mentorApiSlice", any>> & {
2662
- currentData?: import("@iblai/iblai-api").FreeUsageCount | undefined;
2596
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount, "mentorApiSlice", any>> & {
2597
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount | undefined;
2663
2598
  isUninitialized: false;
2664
2599
  isLoading: false;
2665
2600
  isFetching: false;
@@ -2675,8 +2610,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2675
2610
  error: undefined;
2676
2611
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
2677
2612
  org: string;
2678
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").FreeUsageCount, "mentorApiSlice", any>> & {
2679
- currentData?: import("@iblai/iblai-api").FreeUsageCount | undefined;
2613
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount, "mentorApiSlice", any>> & {
2614
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount | undefined;
2680
2615
  isUninitialized: false;
2681
2616
  isLoading: false;
2682
2617
  isFetching: false;
@@ -2688,8 +2623,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2688
2623
  error: undefined;
2689
2624
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
2690
2625
  org: string;
2691
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").FreeUsageCount, "mentorApiSlice", any>> & {
2692
- currentData?: import("@iblai/iblai-api").FreeUsageCount | undefined;
2626
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount, "mentorApiSlice", any>> & {
2627
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount | undefined;
2693
2628
  isUninitialized: false;
2694
2629
  isLoading: false;
2695
2630
  isFetching: false;
@@ -2699,8 +2634,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2699
2634
  isError: true;
2700
2635
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
2701
2636
  org: string;
2702
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").FreeUsageCount, "mentorApiSlice", any>> & {
2703
- currentData?: import("@iblai/iblai-api").FreeUsageCount | undefined;
2637
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount, "mentorApiSlice", any>> & {
2638
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount | undefined;
2704
2639
  isUninitialized: false;
2705
2640
  isLoading: false;
2706
2641
  isFetching: false;
@@ -2725,7 +2660,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2725
2660
  startedTimeStamp?: undefined | undefined;
2726
2661
  fulfilledTimeStamp?: undefined | undefined;
2727
2662
  } & {
2728
- currentData?: import("@iblai/iblai-api").FreeUsageCount | undefined;
2663
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount | undefined;
2729
2664
  isUninitialized: false;
2730
2665
  isLoading: false;
2731
2666
  isFetching: false;
@@ -2735,8 +2670,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2735
2670
  isUninitialized: true;
2736
2671
  }) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
2737
2672
  org: string;
2738
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").FreeUsageCount, "mentorApiSlice", any>> & {
2739
- currentData?: import("@iblai/iblai-api").FreeUsageCount | undefined;
2673
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount, "mentorApiSlice", any>> & {
2674
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount | undefined;
2740
2675
  isUninitialized: false;
2741
2676
  isLoading: false;
2742
2677
  isFetching: false;
@@ -2752,8 +2687,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2752
2687
  error: undefined;
2753
2688
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
2754
2689
  org: string;
2755
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").FreeUsageCount, "mentorApiSlice", any>> & {
2756
- currentData?: import("@iblai/iblai-api").FreeUsageCount | undefined;
2690
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount, "mentorApiSlice", any>> & {
2691
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount | undefined;
2757
2692
  isUninitialized: false;
2758
2693
  isLoading: false;
2759
2694
  isFetching: false;
@@ -2765,8 +2700,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2765
2700
  error: undefined;
2766
2701
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
2767
2702
  org: string;
2768
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").FreeUsageCount, "mentorApiSlice", any>> & {
2769
- currentData?: import("@iblai/iblai-api").FreeUsageCount | undefined;
2703
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount, "mentorApiSlice", any>> & {
2704
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount | undefined;
2770
2705
  isUninitialized: false;
2771
2706
  isLoading: false;
2772
2707
  isFetching: false;
@@ -2776,8 +2711,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2776
2711
  isError: true;
2777
2712
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
2778
2713
  org: string;
2779
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").FreeUsageCount, "mentorApiSlice", any>> & {
2780
- currentData?: import("@iblai/iblai-api").FreeUsageCount | undefined;
2714
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount, "mentorApiSlice", any>> & {
2715
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount | undefined;
2781
2716
  isUninitialized: false;
2782
2717
  isLoading: false;
2783
2718
  isFetching: false;
@@ -2789,7 +2724,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2789
2724
  }) | undefined) => [R][R extends any ? 0 : never] & {
2790
2725
  refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
2791
2726
  org: string;
2792
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").FreeUsageCount, "mentorApiSlice", any>>;
2727
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount, "mentorApiSlice", any>>;
2793
2728
  }, useLazyGetFreeUsageCountQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
2794
2729
  status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
2795
2730
  originalArgs?: undefined | undefined;
@@ -2800,7 +2735,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2800
2735
  startedTimeStamp?: undefined | undefined;
2801
2736
  fulfilledTimeStamp?: undefined | undefined;
2802
2737
  } & {
2803
- currentData?: import("@iblai/iblai-api").FreeUsageCount | undefined;
2738
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount | undefined;
2804
2739
  isUninitialized: false;
2805
2740
  isLoading: false;
2806
2741
  isFetching: false;
@@ -2810,8 +2745,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2810
2745
  isUninitialized: true;
2811
2746
  }) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
2812
2747
  org: string;
2813
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").FreeUsageCount, "mentorApiSlice", any>> & {
2814
- currentData?: import("@iblai/iblai-api").FreeUsageCount | undefined;
2748
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount, "mentorApiSlice", any>> & {
2749
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount | undefined;
2815
2750
  isUninitialized: false;
2816
2751
  isLoading: false;
2817
2752
  isFetching: false;
@@ -2827,8 +2762,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2827
2762
  error: undefined;
2828
2763
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
2829
2764
  org: string;
2830
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").FreeUsageCount, "mentorApiSlice", any>> & {
2831
- currentData?: import("@iblai/iblai-api").FreeUsageCount | undefined;
2765
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount, "mentorApiSlice", any>> & {
2766
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount | undefined;
2832
2767
  isUninitialized: false;
2833
2768
  isLoading: false;
2834
2769
  isFetching: false;
@@ -2840,8 +2775,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2840
2775
  error: undefined;
2841
2776
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
2842
2777
  org: string;
2843
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").FreeUsageCount, "mentorApiSlice", any>> & {
2844
- currentData?: import("@iblai/iblai-api").FreeUsageCount | undefined;
2778
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount, "mentorApiSlice", any>> & {
2779
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount | undefined;
2845
2780
  isUninitialized: false;
2846
2781
  isLoading: false;
2847
2782
  isFetching: false;
@@ -2851,8 +2786,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2851
2786
  isError: true;
2852
2787
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
2853
2788
  org: string;
2854
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").FreeUsageCount, "mentorApiSlice", any>> & {
2855
- currentData?: import("@iblai/iblai-api").FreeUsageCount | undefined;
2789
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount, "mentorApiSlice", any>> & {
2790
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount | undefined;
2856
2791
  isUninitialized: false;
2857
2792
  isLoading: false;
2858
2793
  isFetching: false;
@@ -2872,7 +2807,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2872
2807
  startedTimeStamp?: undefined | undefined;
2873
2808
  fulfilledTimeStamp?: undefined | undefined;
2874
2809
  } & {
2875
- currentData?: import("@iblai/iblai-api").FreeUsageCount | undefined;
2810
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount | undefined;
2876
2811
  isUninitialized: false;
2877
2812
  isLoading: false;
2878
2813
  isFetching: false;
@@ -2882,8 +2817,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2882
2817
  isUninitialized: true;
2883
2818
  }) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
2884
2819
  org: string;
2885
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").FreeUsageCount, "mentorApiSlice", any>> & {
2886
- currentData?: import("@iblai/iblai-api").FreeUsageCount | undefined;
2820
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount, "mentorApiSlice", any>> & {
2821
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount | undefined;
2887
2822
  isUninitialized: false;
2888
2823
  isLoading: false;
2889
2824
  isFetching: false;
@@ -2899,8 +2834,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2899
2834
  error: undefined;
2900
2835
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
2901
2836
  org: string;
2902
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").FreeUsageCount, "mentorApiSlice", any>> & {
2903
- currentData?: import("@iblai/iblai-api").FreeUsageCount | undefined;
2837
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount, "mentorApiSlice", any>> & {
2838
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount | undefined;
2904
2839
  isUninitialized: false;
2905
2840
  isLoading: false;
2906
2841
  isFetching: false;
@@ -2912,8 +2847,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2912
2847
  error: undefined;
2913
2848
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
2914
2849
  org: string;
2915
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").FreeUsageCount, "mentorApiSlice", any>> & {
2916
- currentData?: import("@iblai/iblai-api").FreeUsageCount | undefined;
2850
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount, "mentorApiSlice", any>> & {
2851
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount | undefined;
2917
2852
  isUninitialized: false;
2918
2853
  isLoading: false;
2919
2854
  isFetching: false;
@@ -2923,8 +2858,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2923
2858
  isError: true;
2924
2859
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
2925
2860
  org: string;
2926
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").FreeUsageCount, "mentorApiSlice", any>> & {
2927
- currentData?: import("@iblai/iblai-api").FreeUsageCount | undefined;
2861
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount, "mentorApiSlice", any>> & {
2862
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount | undefined;
2928
2863
  isUninitialized: false;
2929
2864
  isLoading: false;
2930
2865
  isFetching: false;
@@ -2937,7 +2872,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2937
2872
  org: string;
2938
2873
  }, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
2939
2874
  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] & {
2875
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").FreeUsageCount, "mentorApiSlice", any>>, [R][R extends any ? 0 : never] & {
2941
2876
  reset: () => void;
2942
2877
  }, {
2943
2878
  lastArg: {
@@ -2961,14 +2896,14 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2961
2896
  status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
2962
2897
  } & Omit<{
2963
2898
  requestId: string;
2964
- data?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
2899
+ data?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
2965
2900
  error?: unknown;
2966
2901
  endpointName: string;
2967
2902
  startedTimeStamp: number;
2968
2903
  fulfilledTimeStamp?: number;
2969
2904
  }, "data" | "fulfilledTimeStamp"> & Required<Pick<{
2970
2905
  requestId: string;
2971
- data?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
2906
+ data?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
2972
2907
  error?: unknown;
2973
2908
  endpointName: string;
2974
2909
  startedTimeStamp: number;
@@ -2985,7 +2920,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
2985
2920
  status: import("@reduxjs/toolkit/query").QueryStatus.pending;
2986
2921
  } & {
2987
2922
  requestId: string;
2988
- data?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
2923
+ data?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
2989
2924
  error?: unknown;
2990
2925
  endpointName: string;
2991
2926
  startedTimeStamp: number;
@@ -3002,14 +2937,14 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
3002
2937
  status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
3003
2938
  } & Omit<{
3004
2939
  requestId: string;
3005
- data?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
2940
+ data?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
3006
2941
  error?: unknown;
3007
2942
  endpointName: string;
3008
2943
  startedTimeStamp: number;
3009
2944
  fulfilledTimeStamp?: number;
3010
2945
  }, "error"> & Required<Pick<{
3011
2946
  requestId: string;
3012
- data?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
2947
+ data?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
3013
2948
  error?: unknown;
3014
2949
  endpointName: string;
3015
2950
  startedTimeStamp: number;
@@ -3039,14 +2974,14 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
3039
2974
  status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
3040
2975
  } & Omit<{
3041
2976
  requestId: string;
3042
- data?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
2977
+ data?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
3043
2978
  error?: unknown;
3044
2979
  endpointName: string;
3045
2980
  startedTimeStamp: number;
3046
2981
  fulfilledTimeStamp?: number;
3047
2982
  }, "data" | "fulfilledTimeStamp"> & Required<Pick<{
3048
2983
  requestId: string;
3049
- data?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
2984
+ data?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
3050
2985
  error?: unknown;
3051
2986
  endpointName: string;
3052
2987
  startedTimeStamp: number;
@@ -3063,7 +2998,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
3063
2998
  status: import("@reduxjs/toolkit/query").QueryStatus.pending;
3064
2999
  } & {
3065
3000
  requestId: string;
3066
- data?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
3001
+ data?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
3067
3002
  error?: unknown;
3068
3003
  endpointName: string;
3069
3004
  startedTimeStamp: number;
@@ -3080,14 +3015,14 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
3080
3015
  status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
3081
3016
  } & Omit<{
3082
3017
  requestId: string;
3083
- data?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
3018
+ data?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
3084
3019
  error?: unknown;
3085
3020
  endpointName: string;
3086
3021
  startedTimeStamp: number;
3087
3022
  fulfilledTimeStamp?: number;
3088
3023
  }, "error"> & Required<Pick<{
3089
3024
  requestId: string;
3090
- data?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
3025
+ data?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
3091
3026
  error?: unknown;
3092
3027
  endpointName: string;
3093
3028
  startedTimeStamp: number;
@@ -3103,16 +3038,16 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
3103
3038
  } | undefined) => readonly [(arg: {
3104
3039
  mentor: string;
3105
3040
  org: string;
3106
- requestBody?: import("@iblai/iblai-api").ShareableMentorLink;
3041
+ requestBody?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink;
3107
3042
  }) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
3108
3043
  mentor: string;
3109
3044
  org: string;
3110
- requestBody?: import("@iblai/iblai-api").ShareableMentorLink;
3111
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
3045
+ requestBody?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink;
3046
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
3112
3047
  originalArgs?: {
3113
3048
  mentor: string;
3114
3049
  org: string;
3115
- requestBody?: import("@iblai/iblai-api").ShareableMentorLink;
3050
+ requestBody?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink;
3116
3051
  } | undefined;
3117
3052
  reset: () => void;
3118
3053
  }], useGetShareableLinkQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
@@ -3125,7 +3060,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
3125
3060
  startedTimeStamp?: undefined | undefined;
3126
3061
  fulfilledTimeStamp?: undefined | undefined;
3127
3062
  } & {
3128
- currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
3063
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
3129
3064
  isUninitialized: false;
3130
3065
  isLoading: false;
3131
3066
  isFetching: false;
@@ -3136,8 +3071,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
3136
3071
  }) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
3137
3072
  mentor: string;
3138
3073
  org: string;
3139
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3140
- currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
3074
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
3075
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
3141
3076
  isUninitialized: false;
3142
3077
  isLoading: false;
3143
3078
  isFetching: false;
@@ -3154,8 +3089,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
3154
3089
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
3155
3090
  mentor: string;
3156
3091
  org: string;
3157
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3158
- currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
3092
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
3093
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
3159
3094
  isUninitialized: false;
3160
3095
  isLoading: false;
3161
3096
  isFetching: false;
@@ -3168,8 +3103,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
3168
3103
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
3169
3104
  mentor: string;
3170
3105
  org: string;
3171
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3172
- currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
3106
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
3107
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
3173
3108
  isUninitialized: false;
3174
3109
  isLoading: false;
3175
3110
  isFetching: false;
@@ -3180,8 +3115,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
3180
3115
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
3181
3116
  mentor: string;
3182
3117
  org: string;
3183
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3184
- currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
3118
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
3119
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
3185
3120
  isUninitialized: false;
3186
3121
  isLoading: false;
3187
3122
  isFetching: false;
@@ -3207,7 +3142,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
3207
3142
  startedTimeStamp?: undefined | undefined;
3208
3143
  fulfilledTimeStamp?: undefined | undefined;
3209
3144
  } & {
3210
- currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
3145
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
3211
3146
  isUninitialized: false;
3212
3147
  isLoading: false;
3213
3148
  isFetching: false;
@@ -3218,8 +3153,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
3218
3153
  }) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
3219
3154
  mentor: string;
3220
3155
  org: string;
3221
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3222
- currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
3156
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
3157
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
3223
3158
  isUninitialized: false;
3224
3159
  isLoading: false;
3225
3160
  isFetching: false;
@@ -3236,8 +3171,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
3236
3171
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
3237
3172
  mentor: string;
3238
3173
  org: string;
3239
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3240
- currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
3174
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
3175
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
3241
3176
  isUninitialized: false;
3242
3177
  isLoading: false;
3243
3178
  isFetching: false;
@@ -3250,8 +3185,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
3250
3185
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
3251
3186
  mentor: string;
3252
3187
  org: string;
3253
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3254
- currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
3188
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
3189
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
3255
3190
  isUninitialized: false;
3256
3191
  isLoading: false;
3257
3192
  isFetching: false;
@@ -3262,8 +3197,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
3262
3197
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
3263
3198
  mentor: string;
3264
3199
  org: string;
3265
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3266
- currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
3200
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
3201
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
3267
3202
  isUninitialized: false;
3268
3203
  isLoading: false;
3269
3204
  isFetching: false;
@@ -3276,7 +3211,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
3276
3211
  refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
3277
3212
  mentor: string;
3278
3213
  org: string;
3279
- }, 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", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>>;
3280
3215
  }, useLazyGetShareableLinkQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
3281
3216
  status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
3282
3217
  originalArgs?: undefined | undefined;
@@ -3287,7 +3222,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
3287
3222
  startedTimeStamp?: undefined | undefined;
3288
3223
  fulfilledTimeStamp?: undefined | undefined;
3289
3224
  } & {
3290
- currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
3225
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
3291
3226
  isUninitialized: false;
3292
3227
  isLoading: false;
3293
3228
  isFetching: false;
@@ -3298,8 +3233,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
3298
3233
  }) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
3299
3234
  mentor: string;
3300
3235
  org: string;
3301
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3302
- currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
3236
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
3237
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
3303
3238
  isUninitialized: false;
3304
3239
  isLoading: false;
3305
3240
  isFetching: false;
@@ -3316,8 +3251,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
3316
3251
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
3317
3252
  mentor: string;
3318
3253
  org: string;
3319
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3320
- currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
3254
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
3255
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
3321
3256
  isUninitialized: false;
3322
3257
  isLoading: false;
3323
3258
  isFetching: false;
@@ -3330,8 +3265,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
3330
3265
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
3331
3266
  mentor: string;
3332
3267
  org: string;
3333
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3334
- currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
3268
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
3269
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
3335
3270
  isUninitialized: false;
3336
3271
  isLoading: false;
3337
3272
  isFetching: false;
@@ -3342,8 +3277,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
3342
3277
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
3343
3278
  mentor: string;
3344
3279
  org: string;
3345
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3346
- currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
3280
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
3281
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
3347
3282
  isUninitialized: false;
3348
3283
  isLoading: false;
3349
3284
  isFetching: false;
@@ -3363,7 +3298,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
3363
3298
  startedTimeStamp?: undefined | undefined;
3364
3299
  fulfilledTimeStamp?: undefined | undefined;
3365
3300
  } & {
3366
- currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
3301
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
3367
3302
  isUninitialized: false;
3368
3303
  isLoading: false;
3369
3304
  isFetching: false;
@@ -3374,8 +3309,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
3374
3309
  }) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
3375
3310
  mentor: string;
3376
3311
  org: string;
3377
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3378
- currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
3312
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
3313
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
3379
3314
  isUninitialized: false;
3380
3315
  isLoading: false;
3381
3316
  isFetching: false;
@@ -3392,8 +3327,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
3392
3327
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
3393
3328
  mentor: string;
3394
3329
  org: string;
3395
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3396
- currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
3330
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
3331
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
3397
3332
  isUninitialized: false;
3398
3333
  isLoading: false;
3399
3334
  isFetching: false;
@@ -3406,8 +3341,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
3406
3341
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
3407
3342
  mentor: string;
3408
3343
  org: string;
3409
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3410
- currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
3344
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
3345
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
3411
3346
  isUninitialized: false;
3412
3347
  isLoading: false;
3413
3348
  isFetching: false;
@@ -3418,8 +3353,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
3418
3353
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
3419
3354
  mentor: string;
3420
3355
  org: string;
3421
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3422
- currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
3356
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
3357
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
3423
3358
  isUninitialized: false;
3424
3359
  isLoading: false;
3425
3360
  isFetching: false;
@@ -3434,7 +3369,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
3434
3369
  }, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
3435
3370
  mentor: string;
3436
3371
  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] & {
3372
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>>, [R][R extends any ? 0 : never] & {
3438
3373
  reset: () => void;
3439
3374
  }, {
3440
3375
  lastArg: {
@@ -3451,7 +3386,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
3451
3386
  startedTimeStamp?: undefined | undefined;
3452
3387
  fulfilledTimeStamp?: undefined | undefined;
3453
3388
  } & {
3454
- currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
3389
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
3455
3390
  isUninitialized: false;
3456
3391
  isLoading: false;
3457
3392
  isFetching: false;
@@ -3462,8 +3397,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
3462
3397
  }) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
3463
3398
  mentor: string;
3464
3399
  org: string;
3465
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3466
- currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
3400
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
3401
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
3467
3402
  isUninitialized: false;
3468
3403
  isLoading: false;
3469
3404
  isFetching: false;
@@ -3480,8 +3415,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
3480
3415
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
3481
3416
  mentor: string;
3482
3417
  org: string;
3483
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3484
- currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
3418
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
3419
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
3485
3420
  isUninitialized: false;
3486
3421
  isLoading: false;
3487
3422
  isFetching: false;
@@ -3494,8 +3429,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
3494
3429
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
3495
3430
  mentor: string;
3496
3431
  org: string;
3497
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3498
- currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
3432
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
3433
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
3499
3434
  isUninitialized: false;
3500
3435
  isLoading: false;
3501
3436
  isFetching: false;
@@ -3506,8 +3441,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
3506
3441
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
3507
3442
  mentor: string;
3508
3443
  org: string;
3509
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3510
- currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
3444
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
3445
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
3511
3446
  isUninitialized: false;
3512
3447
  isLoading: false;
3513
3448
  isFetching: false;
@@ -3533,7 +3468,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
3533
3468
  startedTimeStamp?: undefined | undefined;
3534
3469
  fulfilledTimeStamp?: undefined | undefined;
3535
3470
  } & {
3536
- currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
3471
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
3537
3472
  isUninitialized: false;
3538
3473
  isLoading: false;
3539
3474
  isFetching: false;
@@ -3544,8 +3479,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
3544
3479
  }) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
3545
3480
  mentor: string;
3546
3481
  org: string;
3547
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3548
- currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
3482
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
3483
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
3549
3484
  isUninitialized: false;
3550
3485
  isLoading: false;
3551
3486
  isFetching: false;
@@ -3562,8 +3497,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
3562
3497
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
3563
3498
  mentor: string;
3564
3499
  org: string;
3565
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3566
- currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
3500
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
3501
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
3567
3502
  isUninitialized: false;
3568
3503
  isLoading: false;
3569
3504
  isFetching: false;
@@ -3576,8 +3511,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
3576
3511
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
3577
3512
  mentor: string;
3578
3513
  org: string;
3579
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3580
- currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
3514
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
3515
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
3581
3516
  isUninitialized: false;
3582
3517
  isLoading: false;
3583
3518
  isFetching: false;
@@ -3588,8 +3523,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
3588
3523
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
3589
3524
  mentor: string;
3590
3525
  org: string;
3591
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3592
- currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
3526
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
3527
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
3593
3528
  isUninitialized: false;
3594
3529
  isLoading: false;
3595
3530
  isFetching: false;
@@ -3602,7 +3537,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
3602
3537
  refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
3603
3538
  mentor: string;
3604
3539
  org: string;
3605
- }, 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", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>>;
3606
3541
  }, useLazyGetShareableLinkPublicQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
3607
3542
  status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
3608
3543
  originalArgs?: undefined | undefined;
@@ -3613,7 +3548,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
3613
3548
  startedTimeStamp?: undefined | undefined;
3614
3549
  fulfilledTimeStamp?: undefined | undefined;
3615
3550
  } & {
3616
- currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
3551
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
3617
3552
  isUninitialized: false;
3618
3553
  isLoading: false;
3619
3554
  isFetching: false;
@@ -3624,8 +3559,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
3624
3559
  }) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
3625
3560
  mentor: string;
3626
3561
  org: string;
3627
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3628
- currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
3562
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
3563
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
3629
3564
  isUninitialized: false;
3630
3565
  isLoading: false;
3631
3566
  isFetching: false;
@@ -3642,8 +3577,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
3642
3577
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
3643
3578
  mentor: string;
3644
3579
  org: string;
3645
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3646
- currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
3580
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
3581
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
3647
3582
  isUninitialized: false;
3648
3583
  isLoading: false;
3649
3584
  isFetching: false;
@@ -3656,8 +3591,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
3656
3591
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
3657
3592
  mentor: string;
3658
3593
  org: string;
3659
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3660
- currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
3594
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
3595
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
3661
3596
  isUninitialized: false;
3662
3597
  isLoading: false;
3663
3598
  isFetching: false;
@@ -3668,8 +3603,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
3668
3603
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
3669
3604
  mentor: string;
3670
3605
  org: string;
3671
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3672
- currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
3606
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
3607
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
3673
3608
  isUninitialized: false;
3674
3609
  isLoading: false;
3675
3610
  isFetching: false;
@@ -3689,7 +3624,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
3689
3624
  startedTimeStamp?: undefined | undefined;
3690
3625
  fulfilledTimeStamp?: undefined | undefined;
3691
3626
  } & {
3692
- currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
3627
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
3693
3628
  isUninitialized: false;
3694
3629
  isLoading: false;
3695
3630
  isFetching: false;
@@ -3700,8 +3635,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
3700
3635
  }) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
3701
3636
  mentor: string;
3702
3637
  org: string;
3703
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3704
- currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
3638
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
3639
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
3705
3640
  isUninitialized: false;
3706
3641
  isLoading: false;
3707
3642
  isFetching: false;
@@ -3718,8 +3653,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
3718
3653
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
3719
3654
  mentor: string;
3720
3655
  org: string;
3721
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3722
- currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
3656
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
3657
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
3723
3658
  isUninitialized: false;
3724
3659
  isLoading: false;
3725
3660
  isFetching: false;
@@ -3732,8 +3667,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
3732
3667
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
3733
3668
  mentor: string;
3734
3669
  org: string;
3735
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3736
- currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
3670
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
3671
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
3737
3672
  isUninitialized: false;
3738
3673
  isLoading: false;
3739
3674
  isFetching: false;
@@ -3744,8 +3679,8 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
3744
3679
  } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
3745
3680
  mentor: string;
3746
3681
  org: string;
3747
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>> & {
3748
- currentData?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
3682
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>> & {
3683
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
3749
3684
  isUninitialized: false;
3750
3685
  isLoading: false;
3751
3686
  isFetching: false;
@@ -3760,7 +3695,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
3760
3695
  }, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
3761
3696
  mentor: string;
3762
3697
  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] & {
3698
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>>, [R][R extends any ? 0 : never] & {
3764
3699
  reset: () => void;
3765
3700
  }, {
3766
3701
  lastArg: {
@@ -3930,7 +3865,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
3930
3865
  }) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
3931
3866
  mentor: string;
3932
3867
  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> & {
3868
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", void, "mentorApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
3934
3869
  originalArgs?: {
3935
3870
  mentor: string;
3936
3871
  org: string;
@@ -3954,14 +3889,14 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
3954
3889
  status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
3955
3890
  } & Omit<{
3956
3891
  requestId: string;
3957
- data?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
3892
+ data?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
3958
3893
  error?: unknown;
3959
3894
  endpointName: string;
3960
3895
  startedTimeStamp: number;
3961
3896
  fulfilledTimeStamp?: number;
3962
3897
  }, "data" | "fulfilledTimeStamp"> & Required<Pick<{
3963
3898
  requestId: string;
3964
- data?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
3899
+ data?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
3965
3900
  error?: unknown;
3966
3901
  endpointName: string;
3967
3902
  startedTimeStamp: number;
@@ -3978,7 +3913,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
3978
3913
  status: import("@reduxjs/toolkit/query").QueryStatus.pending;
3979
3914
  } & {
3980
3915
  requestId: string;
3981
- data?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
3916
+ data?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
3982
3917
  error?: unknown;
3983
3918
  endpointName: string;
3984
3919
  startedTimeStamp: number;
@@ -3995,14 +3930,14 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
3995
3930
  status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
3996
3931
  } & Omit<{
3997
3932
  requestId: string;
3998
- data?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
3933
+ data?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
3999
3934
  error?: unknown;
4000
3935
  endpointName: string;
4001
3936
  startedTimeStamp: number;
4002
3937
  fulfilledTimeStamp?: number;
4003
3938
  }, "error"> & Required<Pick<{
4004
3939
  requestId: string;
4005
- data?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
3940
+ data?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
4006
3941
  error?: unknown;
4007
3942
  endpointName: string;
4008
3943
  startedTimeStamp: number;
@@ -4032,14 +3967,14 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
4032
3967
  status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
4033
3968
  } & Omit<{
4034
3969
  requestId: string;
4035
- data?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
3970
+ data?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
4036
3971
  error?: unknown;
4037
3972
  endpointName: string;
4038
3973
  startedTimeStamp: number;
4039
3974
  fulfilledTimeStamp?: number;
4040
3975
  }, "data" | "fulfilledTimeStamp"> & Required<Pick<{
4041
3976
  requestId: string;
4042
- data?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
3977
+ data?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
4043
3978
  error?: unknown;
4044
3979
  endpointName: string;
4045
3980
  startedTimeStamp: number;
@@ -4056,7 +3991,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
4056
3991
  status: import("@reduxjs/toolkit/query").QueryStatus.pending;
4057
3992
  } & {
4058
3993
  requestId: string;
4059
- data?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
3994
+ data?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
4060
3995
  error?: unknown;
4061
3996
  endpointName: string;
4062
3997
  startedTimeStamp: number;
@@ -4073,14 +4008,14 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
4073
4008
  status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
4074
4009
  } & Omit<{
4075
4010
  requestId: string;
4076
- data?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
4011
+ data?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
4077
4012
  error?: unknown;
4078
4013
  endpointName: string;
4079
4014
  startedTimeStamp: number;
4080
4015
  fulfilledTimeStamp?: number;
4081
4016
  }, "error"> & Required<Pick<{
4082
4017
  requestId: string;
4083
- data?: import("@iblai/iblai-api").ShareableMentorLink | undefined;
4018
+ data?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink | undefined;
4084
4019
  error?: unknown;
4085
4020
  endpointName: string;
4086
4021
  startedTimeStamp: number;
@@ -4096,16 +4031,16 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
4096
4031
  } | undefined) => readonly [(arg: {
4097
4032
  mentor: string;
4098
4033
  org: string;
4099
- requestBody?: import("@iblai/iblai-api").ShareableMentorLink;
4034
+ requestBody?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink;
4100
4035
  }) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
4101
4036
  mentor: string;
4102
4037
  org: string;
4103
- requestBody?: import("@iblai/iblai-api").ShareableMentorLink;
4104
- }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks", import("@iblai/iblai-api").ShareableMentorLink, "mentorApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
4038
+ requestBody?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink;
4039
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink, "mentorApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
4105
4040
  originalArgs?: {
4106
4041
  mentor: string;
4107
4042
  org: string;
4108
- requestBody?: import("@iblai/iblai-api").ShareableMentorLink;
4043
+ requestBody?: import("node_modules/@iblai/iblai-api/dist/types").ShareableMentorLink;
4109
4044
  } | undefined;
4110
4045
  reset: () => void;
4111
4046
  }], useDeleteMentorMutation: <R extends Record<string, any> = ({
@@ -4283,7 +4218,7 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
4283
4218
  metadataValue?: string;
4284
4219
  returnSessionInformation?: boolean;
4285
4220
  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> & {
4221
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", void, "mentorApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
4287
4222
  originalArgs?: {
4288
4223
  name: string;
4289
4224
  org: string;
@@ -4295,4 +4230,775 @@ export declare const useCreateMentorMutation: <R extends Record<string, any> = (
4295
4230
  visibility?: string;
4296
4231
  } | undefined;
4297
4232
  reset: () => void;
4233
+ }], useForkMentorMutation: <R extends Record<string, any> = ({
4234
+ requestId?: undefined;
4235
+ status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
4236
+ data?: undefined;
4237
+ error?: undefined;
4238
+ endpointName?: string;
4239
+ startedTimeStamp?: undefined;
4240
+ fulfilledTimeStamp?: undefined;
4241
+ } & {
4242
+ status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
4243
+ isUninitialized: true;
4244
+ isLoading: false;
4245
+ isSuccess: false;
4246
+ isError: false;
4247
+ }) | ({
4248
+ status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
4249
+ } & Omit<{
4250
+ requestId: string;
4251
+ data?: import("node_modules/@iblai/iblai-api/dist/types").Mentor | undefined;
4252
+ error?: unknown;
4253
+ endpointName: string;
4254
+ startedTimeStamp: number;
4255
+ fulfilledTimeStamp?: number;
4256
+ }, "data" | "fulfilledTimeStamp"> & Required<Pick<{
4257
+ requestId: string;
4258
+ data?: import("node_modules/@iblai/iblai-api/dist/types").Mentor | undefined;
4259
+ error?: unknown;
4260
+ endpointName: string;
4261
+ startedTimeStamp: number;
4262
+ fulfilledTimeStamp?: number;
4263
+ }, "data" | "fulfilledTimeStamp">> & {
4264
+ error: undefined;
4265
+ } & {
4266
+ status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
4267
+ isUninitialized: false;
4268
+ isLoading: false;
4269
+ isSuccess: true;
4270
+ isError: false;
4271
+ }) | ({
4272
+ status: import("@reduxjs/toolkit/query").QueryStatus.pending;
4273
+ } & {
4274
+ requestId: string;
4275
+ data?: import("node_modules/@iblai/iblai-api/dist/types").Mentor | undefined;
4276
+ error?: unknown;
4277
+ endpointName: string;
4278
+ startedTimeStamp: number;
4279
+ fulfilledTimeStamp?: number;
4280
+ } & {
4281
+ data?: undefined;
4282
+ } & {
4283
+ status: import("@reduxjs/toolkit/query").QueryStatus.pending;
4284
+ isUninitialized: false;
4285
+ isLoading: true;
4286
+ isSuccess: false;
4287
+ isError: false;
4288
+ }) | ({
4289
+ status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
4290
+ } & Omit<{
4291
+ requestId: string;
4292
+ data?: import("node_modules/@iblai/iblai-api/dist/types").Mentor | undefined;
4293
+ error?: unknown;
4294
+ endpointName: string;
4295
+ startedTimeStamp: number;
4296
+ fulfilledTimeStamp?: number;
4297
+ }, "error"> & Required<Pick<{
4298
+ requestId: string;
4299
+ data?: import("node_modules/@iblai/iblai-api/dist/types").Mentor | undefined;
4300
+ error?: unknown;
4301
+ endpointName: string;
4302
+ startedTimeStamp: number;
4303
+ fulfilledTimeStamp?: number;
4304
+ }, "error">> & {
4305
+ status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
4306
+ isUninitialized: false;
4307
+ isLoading: false;
4308
+ isSuccess: false;
4309
+ isError: true;
4310
+ })>(options?: {
4311
+ selectFromResult?: ((state: ({
4312
+ requestId?: undefined;
4313
+ status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
4314
+ data?: undefined;
4315
+ error?: undefined;
4316
+ endpointName?: string;
4317
+ startedTimeStamp?: undefined;
4318
+ fulfilledTimeStamp?: undefined;
4319
+ } & {
4320
+ status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
4321
+ isUninitialized: true;
4322
+ isLoading: false;
4323
+ isSuccess: false;
4324
+ isError: false;
4325
+ }) | ({
4326
+ status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
4327
+ } & Omit<{
4328
+ requestId: string;
4329
+ data?: import("node_modules/@iblai/iblai-api/dist/types").Mentor | undefined;
4330
+ error?: unknown;
4331
+ endpointName: string;
4332
+ startedTimeStamp: number;
4333
+ fulfilledTimeStamp?: number;
4334
+ }, "data" | "fulfilledTimeStamp"> & Required<Pick<{
4335
+ requestId: string;
4336
+ data?: import("node_modules/@iblai/iblai-api/dist/types").Mentor | undefined;
4337
+ error?: unknown;
4338
+ endpointName: string;
4339
+ startedTimeStamp: number;
4340
+ fulfilledTimeStamp?: number;
4341
+ }, "data" | "fulfilledTimeStamp">> & {
4342
+ error: undefined;
4343
+ } & {
4344
+ status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
4345
+ isUninitialized: false;
4346
+ isLoading: false;
4347
+ isSuccess: true;
4348
+ isError: false;
4349
+ }) | ({
4350
+ status: import("@reduxjs/toolkit/query").QueryStatus.pending;
4351
+ } & {
4352
+ requestId: string;
4353
+ data?: import("node_modules/@iblai/iblai-api/dist/types").Mentor | undefined;
4354
+ error?: unknown;
4355
+ endpointName: string;
4356
+ startedTimeStamp: number;
4357
+ fulfilledTimeStamp?: number;
4358
+ } & {
4359
+ data?: undefined;
4360
+ } & {
4361
+ status: import("@reduxjs/toolkit/query").QueryStatus.pending;
4362
+ isUninitialized: false;
4363
+ isLoading: true;
4364
+ isSuccess: false;
4365
+ isError: false;
4366
+ }) | ({
4367
+ status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
4368
+ } & Omit<{
4369
+ requestId: string;
4370
+ data?: import("node_modules/@iblai/iblai-api/dist/types").Mentor | undefined;
4371
+ error?: unknown;
4372
+ endpointName: string;
4373
+ startedTimeStamp: number;
4374
+ fulfilledTimeStamp?: number;
4375
+ }, "error"> & Required<Pick<{
4376
+ requestId: string;
4377
+ data?: import("node_modules/@iblai/iblai-api/dist/types").Mentor | undefined;
4378
+ error?: unknown;
4379
+ endpointName: string;
4380
+ startedTimeStamp: number;
4381
+ fulfilledTimeStamp?: number;
4382
+ }, "error">> & {
4383
+ status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
4384
+ isUninitialized: false;
4385
+ isLoading: false;
4386
+ isSuccess: false;
4387
+ isError: true;
4388
+ })) => R) | undefined;
4389
+ fixedCacheKey?: string;
4390
+ } | undefined) => readonly [(arg: {
4391
+ mentor: string;
4392
+ org: string;
4393
+ requestBody: import("node_modules/@iblai/iblai-api/dist/types").MentorFork;
4394
+ }) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
4395
+ mentor: string;
4396
+ org: string;
4397
+ requestBody: import("node_modules/@iblai/iblai-api/dist/types").MentorFork;
4398
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").Mentor, "mentorApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
4399
+ originalArgs?: {
4400
+ mentor: string;
4401
+ org: string;
4402
+ requestBody: import("node_modules/@iblai/iblai-api/dist/types").MentorFork;
4403
+ } | undefined;
4404
+ reset: () => void;
4405
+ }], useGetPublicMentorsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
4406
+ status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
4407
+ originalArgs?: undefined | undefined;
4408
+ data?: undefined | undefined;
4409
+ error?: undefined | undefined;
4410
+ requestId?: undefined | undefined;
4411
+ endpointName?: string | undefined;
4412
+ startedTimeStamp?: undefined | undefined;
4413
+ fulfilledTimeStamp?: undefined | undefined;
4414
+ } & {
4415
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
4416
+ isUninitialized: false;
4417
+ isLoading: false;
4418
+ isFetching: false;
4419
+ isSuccess: false;
4420
+ isError: false;
4421
+ }, "isUninitialized"> & {
4422
+ isUninitialized: true;
4423
+ }) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
4424
+ audience?: Array<string>;
4425
+ category?: Array<string>;
4426
+ createdBy?: string;
4427
+ featured?: boolean;
4428
+ id?: number;
4429
+ includeMainPublicMentors?: boolean;
4430
+ limit?: number;
4431
+ llm?: Array<string>;
4432
+ offset?: number;
4433
+ orderBy?: string;
4434
+ orderDirection?: string;
4435
+ query?: string;
4436
+ tags?: Array<string>;
4437
+ tenant?: string;
4438
+ uniqueId?: string;
4439
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
4440
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
4441
+ isUninitialized: false;
4442
+ isLoading: false;
4443
+ isFetching: false;
4444
+ isSuccess: false;
4445
+ isError: false;
4446
+ }, {
4447
+ isLoading: true;
4448
+ isFetching: boolean;
4449
+ data: undefined;
4450
+ } | ({
4451
+ isSuccess: true;
4452
+ isFetching: true;
4453
+ error: undefined;
4454
+ } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
4455
+ audience?: Array<string>;
4456
+ category?: Array<string>;
4457
+ createdBy?: string;
4458
+ featured?: boolean;
4459
+ id?: number;
4460
+ includeMainPublicMentors?: boolean;
4461
+ limit?: number;
4462
+ llm?: Array<string>;
4463
+ offset?: number;
4464
+ orderBy?: string;
4465
+ orderDirection?: string;
4466
+ query?: string;
4467
+ tags?: Array<string>;
4468
+ tenant?: string;
4469
+ uniqueId?: string;
4470
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
4471
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
4472
+ isUninitialized: false;
4473
+ isLoading: false;
4474
+ isFetching: false;
4475
+ isSuccess: false;
4476
+ isError: false;
4477
+ }, "data" | "fulfilledTimeStamp">>) | ({
4478
+ isSuccess: true;
4479
+ isFetching: false;
4480
+ error: undefined;
4481
+ } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
4482
+ audience?: Array<string>;
4483
+ category?: Array<string>;
4484
+ createdBy?: string;
4485
+ featured?: boolean;
4486
+ id?: number;
4487
+ includeMainPublicMentors?: boolean;
4488
+ limit?: number;
4489
+ llm?: Array<string>;
4490
+ offset?: number;
4491
+ orderBy?: string;
4492
+ orderDirection?: string;
4493
+ query?: string;
4494
+ tags?: Array<string>;
4495
+ tenant?: string;
4496
+ uniqueId?: string;
4497
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
4498
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
4499
+ isUninitialized: false;
4500
+ isLoading: false;
4501
+ isFetching: false;
4502
+ isSuccess: false;
4503
+ isError: false;
4504
+ }, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
4505
+ isError: true;
4506
+ } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
4507
+ audience?: Array<string>;
4508
+ category?: Array<string>;
4509
+ createdBy?: string;
4510
+ featured?: boolean;
4511
+ id?: number;
4512
+ includeMainPublicMentors?: boolean;
4513
+ limit?: number;
4514
+ llm?: Array<string>;
4515
+ offset?: number;
4516
+ orderBy?: string;
4517
+ orderDirection?: string;
4518
+ query?: string;
4519
+ tags?: Array<string>;
4520
+ tenant?: string;
4521
+ uniqueId?: string;
4522
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
4523
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
4524
+ isUninitialized: false;
4525
+ isLoading: false;
4526
+ isFetching: false;
4527
+ isSuccess: false;
4528
+ isError: false;
4529
+ }, "error">>)>> & {
4530
+ status: import("@reduxjs/toolkit/query").QueryStatus;
4531
+ }>(arg: {
4532
+ audience?: Array<string>;
4533
+ category?: Array<string>;
4534
+ createdBy?: string;
4535
+ featured?: boolean;
4536
+ id?: number;
4537
+ includeMainPublicMentors?: boolean;
4538
+ limit?: number;
4539
+ llm?: Array<string>;
4540
+ offset?: number;
4541
+ orderBy?: string;
4542
+ orderDirection?: string;
4543
+ query?: string;
4544
+ tags?: Array<string>;
4545
+ tenant?: string;
4546
+ uniqueId?: string;
4547
+ } | typeof import("@reduxjs/toolkit/query").skipToken, options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & {
4548
+ skip?: boolean;
4549
+ refetchOnMountOrArgChange?: boolean | number;
4550
+ } & {
4551
+ skip?: boolean;
4552
+ selectFromResult?: ((state: import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
4553
+ status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
4554
+ originalArgs?: undefined | undefined;
4555
+ data?: undefined | undefined;
4556
+ error?: undefined | undefined;
4557
+ requestId?: undefined | undefined;
4558
+ endpointName?: string | undefined;
4559
+ startedTimeStamp?: undefined | undefined;
4560
+ fulfilledTimeStamp?: undefined | undefined;
4561
+ } & {
4562
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
4563
+ isUninitialized: false;
4564
+ isLoading: false;
4565
+ isFetching: false;
4566
+ isSuccess: false;
4567
+ isError: false;
4568
+ }, "isUninitialized"> & {
4569
+ isUninitialized: true;
4570
+ }) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
4571
+ audience?: Array<string>;
4572
+ category?: Array<string>;
4573
+ createdBy?: string;
4574
+ featured?: boolean;
4575
+ id?: number;
4576
+ includeMainPublicMentors?: boolean;
4577
+ limit?: number;
4578
+ llm?: Array<string>;
4579
+ offset?: number;
4580
+ orderBy?: string;
4581
+ orderDirection?: string;
4582
+ query?: string;
4583
+ tags?: Array<string>;
4584
+ tenant?: string;
4585
+ uniqueId?: string;
4586
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
4587
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
4588
+ isUninitialized: false;
4589
+ isLoading: false;
4590
+ isFetching: false;
4591
+ isSuccess: false;
4592
+ isError: false;
4593
+ }, {
4594
+ isLoading: true;
4595
+ isFetching: boolean;
4596
+ data: undefined;
4597
+ } | ({
4598
+ isSuccess: true;
4599
+ isFetching: true;
4600
+ error: undefined;
4601
+ } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
4602
+ audience?: Array<string>;
4603
+ category?: Array<string>;
4604
+ createdBy?: string;
4605
+ featured?: boolean;
4606
+ id?: number;
4607
+ includeMainPublicMentors?: boolean;
4608
+ limit?: number;
4609
+ llm?: Array<string>;
4610
+ offset?: number;
4611
+ orderBy?: string;
4612
+ orderDirection?: string;
4613
+ query?: string;
4614
+ tags?: Array<string>;
4615
+ tenant?: string;
4616
+ uniqueId?: string;
4617
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
4618
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
4619
+ isUninitialized: false;
4620
+ isLoading: false;
4621
+ isFetching: false;
4622
+ isSuccess: false;
4623
+ isError: false;
4624
+ }, "data" | "fulfilledTimeStamp">>) | ({
4625
+ isSuccess: true;
4626
+ isFetching: false;
4627
+ error: undefined;
4628
+ } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
4629
+ audience?: Array<string>;
4630
+ category?: Array<string>;
4631
+ createdBy?: string;
4632
+ featured?: boolean;
4633
+ id?: number;
4634
+ includeMainPublicMentors?: boolean;
4635
+ limit?: number;
4636
+ llm?: Array<string>;
4637
+ offset?: number;
4638
+ orderBy?: string;
4639
+ orderDirection?: string;
4640
+ query?: string;
4641
+ tags?: Array<string>;
4642
+ tenant?: string;
4643
+ uniqueId?: string;
4644
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
4645
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
4646
+ isUninitialized: false;
4647
+ isLoading: false;
4648
+ isFetching: false;
4649
+ isSuccess: false;
4650
+ isError: false;
4651
+ }, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
4652
+ isError: true;
4653
+ } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
4654
+ audience?: Array<string>;
4655
+ category?: Array<string>;
4656
+ createdBy?: string;
4657
+ featured?: boolean;
4658
+ id?: number;
4659
+ includeMainPublicMentors?: boolean;
4660
+ limit?: number;
4661
+ llm?: Array<string>;
4662
+ offset?: number;
4663
+ orderBy?: string;
4664
+ orderDirection?: string;
4665
+ query?: string;
4666
+ tags?: Array<string>;
4667
+ tenant?: string;
4668
+ uniqueId?: string;
4669
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
4670
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
4671
+ isUninitialized: false;
4672
+ isLoading: false;
4673
+ isFetching: false;
4674
+ isSuccess: false;
4675
+ isError: false;
4676
+ }, "error">>)>> & {
4677
+ status: import("@reduxjs/toolkit/query").QueryStatus;
4678
+ }) => R) | undefined;
4679
+ }) | undefined) => [R][R extends any ? 0 : never] & {
4680
+ refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
4681
+ audience?: Array<string>;
4682
+ category?: Array<string>;
4683
+ createdBy?: string;
4684
+ featured?: boolean;
4685
+ id?: number;
4686
+ includeMainPublicMentors?: boolean;
4687
+ limit?: number;
4688
+ llm?: Array<string>;
4689
+ offset?: number;
4690
+ orderBy?: string;
4691
+ orderDirection?: string;
4692
+ query?: string;
4693
+ tags?: Array<string>;
4694
+ tenant?: string;
4695
+ uniqueId?: string;
4696
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>>;
4697
+ }, useLazyGetPublicMentorsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
4698
+ status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
4699
+ originalArgs?: undefined | undefined;
4700
+ data?: undefined | undefined;
4701
+ error?: undefined | undefined;
4702
+ requestId?: undefined | undefined;
4703
+ endpointName?: string | undefined;
4704
+ startedTimeStamp?: undefined | undefined;
4705
+ fulfilledTimeStamp?: undefined | undefined;
4706
+ } & {
4707
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
4708
+ isUninitialized: false;
4709
+ isLoading: false;
4710
+ isFetching: false;
4711
+ isSuccess: false;
4712
+ isError: false;
4713
+ }, "isUninitialized"> & {
4714
+ isUninitialized: true;
4715
+ }) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
4716
+ audience?: Array<string>;
4717
+ category?: Array<string>;
4718
+ createdBy?: string;
4719
+ featured?: boolean;
4720
+ id?: number;
4721
+ includeMainPublicMentors?: boolean;
4722
+ limit?: number;
4723
+ llm?: Array<string>;
4724
+ offset?: number;
4725
+ orderBy?: string;
4726
+ orderDirection?: string;
4727
+ query?: string;
4728
+ tags?: Array<string>;
4729
+ tenant?: string;
4730
+ uniqueId?: string;
4731
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
4732
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
4733
+ isUninitialized: false;
4734
+ isLoading: false;
4735
+ isFetching: false;
4736
+ isSuccess: false;
4737
+ isError: false;
4738
+ }, {
4739
+ isLoading: true;
4740
+ isFetching: boolean;
4741
+ data: undefined;
4742
+ } | ({
4743
+ isSuccess: true;
4744
+ isFetching: true;
4745
+ error: undefined;
4746
+ } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
4747
+ audience?: Array<string>;
4748
+ category?: Array<string>;
4749
+ createdBy?: string;
4750
+ featured?: boolean;
4751
+ id?: number;
4752
+ includeMainPublicMentors?: boolean;
4753
+ limit?: number;
4754
+ llm?: Array<string>;
4755
+ offset?: number;
4756
+ orderBy?: string;
4757
+ orderDirection?: string;
4758
+ query?: string;
4759
+ tags?: Array<string>;
4760
+ tenant?: string;
4761
+ uniqueId?: string;
4762
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
4763
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
4764
+ isUninitialized: false;
4765
+ isLoading: false;
4766
+ isFetching: false;
4767
+ isSuccess: false;
4768
+ isError: false;
4769
+ }, "data" | "fulfilledTimeStamp">>) | ({
4770
+ isSuccess: true;
4771
+ isFetching: false;
4772
+ error: undefined;
4773
+ } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
4774
+ audience?: Array<string>;
4775
+ category?: Array<string>;
4776
+ createdBy?: string;
4777
+ featured?: boolean;
4778
+ id?: number;
4779
+ includeMainPublicMentors?: boolean;
4780
+ limit?: number;
4781
+ llm?: Array<string>;
4782
+ offset?: number;
4783
+ orderBy?: string;
4784
+ orderDirection?: string;
4785
+ query?: string;
4786
+ tags?: Array<string>;
4787
+ tenant?: string;
4788
+ uniqueId?: string;
4789
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
4790
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
4791
+ isUninitialized: false;
4792
+ isLoading: false;
4793
+ isFetching: false;
4794
+ isSuccess: false;
4795
+ isError: false;
4796
+ }, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
4797
+ isError: true;
4798
+ } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
4799
+ audience?: Array<string>;
4800
+ category?: Array<string>;
4801
+ createdBy?: string;
4802
+ featured?: boolean;
4803
+ id?: number;
4804
+ includeMainPublicMentors?: boolean;
4805
+ limit?: number;
4806
+ llm?: Array<string>;
4807
+ offset?: number;
4808
+ orderBy?: string;
4809
+ orderDirection?: string;
4810
+ query?: string;
4811
+ tags?: Array<string>;
4812
+ tenant?: string;
4813
+ uniqueId?: string;
4814
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
4815
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
4816
+ isUninitialized: false;
4817
+ isLoading: false;
4818
+ isFetching: false;
4819
+ isSuccess: false;
4820
+ isError: false;
4821
+ }, "error">>)>> & {
4822
+ status: import("@reduxjs/toolkit/query").QueryStatus;
4823
+ }>(options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & Omit<{
4824
+ skip?: boolean;
4825
+ selectFromResult?: ((state: import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
4826
+ status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
4827
+ originalArgs?: undefined | undefined;
4828
+ data?: undefined | undefined;
4829
+ error?: undefined | undefined;
4830
+ requestId?: undefined | undefined;
4831
+ endpointName?: string | undefined;
4832
+ startedTimeStamp?: undefined | undefined;
4833
+ fulfilledTimeStamp?: undefined | undefined;
4834
+ } & {
4835
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
4836
+ isUninitialized: false;
4837
+ isLoading: false;
4838
+ isFetching: false;
4839
+ isSuccess: false;
4840
+ isError: false;
4841
+ }, "isUninitialized"> & {
4842
+ isUninitialized: true;
4843
+ }) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
4844
+ audience?: Array<string>;
4845
+ category?: Array<string>;
4846
+ createdBy?: string;
4847
+ featured?: boolean;
4848
+ id?: number;
4849
+ includeMainPublicMentors?: boolean;
4850
+ limit?: number;
4851
+ llm?: Array<string>;
4852
+ offset?: number;
4853
+ orderBy?: string;
4854
+ orderDirection?: string;
4855
+ query?: string;
4856
+ tags?: Array<string>;
4857
+ tenant?: string;
4858
+ uniqueId?: string;
4859
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
4860
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
4861
+ isUninitialized: false;
4862
+ isLoading: false;
4863
+ isFetching: false;
4864
+ isSuccess: false;
4865
+ isError: false;
4866
+ }, {
4867
+ isLoading: true;
4868
+ isFetching: boolean;
4869
+ data: undefined;
4870
+ } | ({
4871
+ isSuccess: true;
4872
+ isFetching: true;
4873
+ error: undefined;
4874
+ } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
4875
+ audience?: Array<string>;
4876
+ category?: Array<string>;
4877
+ createdBy?: string;
4878
+ featured?: boolean;
4879
+ id?: number;
4880
+ includeMainPublicMentors?: boolean;
4881
+ limit?: number;
4882
+ llm?: Array<string>;
4883
+ offset?: number;
4884
+ orderBy?: string;
4885
+ orderDirection?: string;
4886
+ query?: string;
4887
+ tags?: Array<string>;
4888
+ tenant?: string;
4889
+ uniqueId?: string;
4890
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
4891
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
4892
+ isUninitialized: false;
4893
+ isLoading: false;
4894
+ isFetching: false;
4895
+ isSuccess: false;
4896
+ isError: false;
4897
+ }, "data" | "fulfilledTimeStamp">>) | ({
4898
+ isSuccess: true;
4899
+ isFetching: false;
4900
+ error: undefined;
4901
+ } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
4902
+ audience?: Array<string>;
4903
+ category?: Array<string>;
4904
+ createdBy?: string;
4905
+ featured?: boolean;
4906
+ id?: number;
4907
+ includeMainPublicMentors?: boolean;
4908
+ limit?: number;
4909
+ llm?: Array<string>;
4910
+ offset?: number;
4911
+ orderBy?: string;
4912
+ orderDirection?: string;
4913
+ query?: string;
4914
+ tags?: Array<string>;
4915
+ tenant?: string;
4916
+ uniqueId?: string;
4917
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
4918
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
4919
+ isUninitialized: false;
4920
+ isLoading: false;
4921
+ isFetching: false;
4922
+ isSuccess: false;
4923
+ isError: false;
4924
+ }, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
4925
+ isError: true;
4926
+ } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
4927
+ audience?: Array<string>;
4928
+ category?: Array<string>;
4929
+ createdBy?: string;
4930
+ featured?: boolean;
4931
+ id?: number;
4932
+ includeMainPublicMentors?: boolean;
4933
+ limit?: number;
4934
+ llm?: Array<string>;
4935
+ offset?: number;
4936
+ orderBy?: string;
4937
+ orderDirection?: string;
4938
+ query?: string;
4939
+ tags?: Array<string>;
4940
+ tenant?: string;
4941
+ uniqueId?: string;
4942
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>> & {
4943
+ currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse | undefined;
4944
+ isUninitialized: false;
4945
+ isLoading: false;
4946
+ isFetching: false;
4947
+ isSuccess: false;
4948
+ isError: false;
4949
+ }, "error">>)>> & {
4950
+ status: import("@reduxjs/toolkit/query").QueryStatus;
4951
+ }) => R) | undefined;
4952
+ }, "skip">) | undefined) => [(arg: {
4953
+ audience?: Array<string>;
4954
+ category?: Array<string>;
4955
+ createdBy?: string;
4956
+ featured?: boolean;
4957
+ id?: number;
4958
+ includeMainPublicMentors?: boolean;
4959
+ limit?: number;
4960
+ llm?: Array<string>;
4961
+ offset?: number;
4962
+ orderBy?: string;
4963
+ orderDirection?: string;
4964
+ query?: string;
4965
+ tags?: Array<string>;
4966
+ tenant?: string;
4967
+ uniqueId?: string;
4968
+ }, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
4969
+ audience?: Array<string>;
4970
+ category?: Array<string>;
4971
+ createdBy?: string;
4972
+ featured?: boolean;
4973
+ id?: number;
4974
+ includeMainPublicMentors?: boolean;
4975
+ limit?: number;
4976
+ llm?: Array<string>;
4977
+ offset?: number;
4978
+ orderBy?: string;
4979
+ orderDirection?: string;
4980
+ query?: string;
4981
+ tags?: Array<string>;
4982
+ tenant?: string;
4983
+ uniqueId?: string;
4984
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "mentor" | "mentors" | "mentorSettings" | "mentorPublicSettings" | "shareableLinks" | "publicMentors", import("node_modules/@iblai/iblai-api/dist/types").MentorSearchResponse, "mentorApiSlice", any>>, [R][R extends any ? 0 : never] & {
4985
+ reset: () => void;
4986
+ }, {
4987
+ lastArg: {
4988
+ audience?: Array<string>;
4989
+ category?: Array<string>;
4990
+ createdBy?: string;
4991
+ featured?: boolean;
4992
+ id?: number;
4993
+ includeMainPublicMentors?: boolean;
4994
+ limit?: number;
4995
+ llm?: Array<string>;
4996
+ offset?: number;
4997
+ orderBy?: string;
4998
+ orderDirection?: string;
4999
+ query?: string;
5000
+ tags?: Array<string>;
5001
+ tenant?: string;
5002
+ uniqueId?: string;
5003
+ };
4298
5004
  }];